Repository: GoogleCloudDataproc/spark-bigquery-connector Branch: master Commit: 2da0fc8b64d1 Files: 676 Total size: 20.0 MB Directory structure: gitextract_x5ltg6ft/ ├── .github/ │ └── workflows/ │ ├── codeql-analysis.yml │ ├── cpd.yaml │ └── spotless.yaml ├── .gitignore ├── .mvn/ │ └── wrapper/ │ ├── MavenWrapperDownloader.java │ └── maven-wrapper.properties ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE ├── README-template.md ├── README.md ├── bigquery-connector-common/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── bigquery/ │ │ └── connector/ │ │ └── common/ │ │ ├── AccessToken.java │ │ ├── AccessTokenProvider.java │ │ ├── AccessTokenProviderCredentials.java │ │ ├── ArrowReaderIterator.java │ │ ├── ArrowUtil.java │ │ ├── BigQueryClient.java │ │ ├── BigQueryClientFactory.java │ │ ├── BigQueryClientFactoryConfig.java │ │ ├── BigQueryClientModule.java │ │ ├── BigQueryConfig.java │ │ ├── BigQueryConfigurationUtil.java │ │ ├── BigQueryConnectorException.java │ │ ├── BigQueryCredentialsSupplier.java │ │ ├── BigQueryDirectDataWriterHelper.java │ │ ├── BigQueryErrorCode.java │ │ ├── BigQueryJobCompletionListener.java │ │ ├── BigQueryMetrics.java │ │ ├── BigQueryProxyConfig.java │ │ ├── BigQueryProxyTransporterBuilder.java │ │ ├── BigQueryPushdownException.java │ │ ├── BigQueryPushdownUnsupportedException.java │ │ ├── BigQueryStorageReadRowsTracer.java │ │ ├── BigQueryTracerFactory.java │ │ ├── BigQueryUtil.java │ │ ├── ComparisonResult.java │ │ ├── DecompressReadRowsResponse.java │ │ ├── DurationTimer.java │ │ ├── EnvironmentContext.java │ │ ├── GcpUtil.java │ │ ├── HttpUtil.java │ │ ├── IdentityTokenSupplier.java │ │ ├── IteratorMultiplexer.java │ │ ├── LazyInitializationSupplier.java │ │ ├── LoggingBigQueryStorageReadRowsTracer.java │ │ ├── LoggingBigQueryTracerFactory.java │ │ ├── MaterializationConfiguration.java │ │ ├── NonInterruptibleBlockingBytesChannel.java │ │ ├── ParallelArrowReader.java │ │ ├── ParameterMode.java │ │ ├── QueryParameterHelper.java │ │ ├── ReadRowsHelper.java │ │ ├── ReadRowsResponseInputStreamEnumeration.java │ │ ├── ReadSessionCreator.java │ │ ├── ReadSessionCreatorConfig.java │ │ ├── ReadSessionCreatorConfigBuilder.java │ │ ├── ReadSessionMetrics.java │ │ ├── ReadSessionResponse.java │ │ ├── StreamCombiningIterator.java │ │ ├── UserAgentProvider.java │ │ ├── VersionProvider.java │ │ └── WriteStreamStatistics.java │ └── test/ │ ├── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── bigquery/ │ │ └── connector/ │ │ └── common/ │ │ ├── BigQueryClientFactoryTest.java │ │ ├── BigQueryConfigurationUtilTest.java │ │ ├── BigQueryConnectorExceptionTest.java │ │ ├── BigQueryCredentialsSupplierTest.java │ │ ├── BigQueryUtilTest.java │ │ ├── DurationTimerTest.java │ │ ├── HttpUtilTest.java │ │ ├── IteratorMultiplexerTest.java │ │ ├── LoggingBigQueryStorageReadRowsTracerTest.java │ │ ├── MockResponsesBatch.java │ │ ├── ParallelArrowReaderTest.java │ │ ├── ReadRowsHelperTest.java │ │ ├── ReadSessionCreatorTest.java │ │ └── integration/ │ │ ├── CustomCredentialsIntegrationTest.java │ │ └── DefaultCredentialsDelegateAccessTokenProvider.java │ └── resources/ │ └── external-account-credentials.json ├── cloudbuild/ │ ├── Dockerfile │ ├── cloudbuild.yaml │ ├── gcp-settings.xml │ ├── nightly.sh │ ├── nightly.yaml │ └── presubmit.sh ├── coverage/ │ └── pom.xml ├── examples/ │ ├── notebooks/ │ │ ├── Advanced ML Pipelines.ipynb │ │ ├── Distribute_Generic_Functions.ipynb │ │ ├── Top words in Shakespeare by work.ipynb │ │ └── Transform_with_Python.ipynb │ └── python/ │ ├── query_results.py │ └── shakespeare.py ├── mvnw ├── mvnw.cmd ├── pom.xml ├── scalastyle-config.xml ├── scripts/ │ └── verify-shading.sh ├── spark-bigquery-connector-common/ │ ├── pom.xml │ ├── src/ │ │ ├── build/ │ │ │ └── resources/ │ │ │ └── spark-bigquery-connector.properties │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ ├── com/ │ │ │ │ │ └── google/ │ │ │ │ │ └── cloud/ │ │ │ │ │ └── spark/ │ │ │ │ │ └── bigquery/ │ │ │ │ │ ├── ArrowBinaryIterator.java │ │ │ │ │ ├── AvroBinaryIterator.java │ │ │ │ │ ├── BigQueryConnectorUtils.java │ │ │ │ │ ├── BigQueryRelation.java │ │ │ │ │ ├── BigQueryRelationProviderBase.java │ │ │ │ │ ├── BigQueryStreamWriter.java │ │ │ │ │ ├── BigQueryStreamingSink.java │ │ │ │ │ ├── BigQueryUtilScala.java │ │ │ │ │ ├── DataFrameToRDDConverter.java │ │ │ │ │ ├── DataSourceVersion.java │ │ │ │ │ ├── GuiceInjectorCreator.java │ │ │ │ │ ├── InjectorBuilder.java │ │ │ │ │ ├── InjectorFactory.java │ │ │ │ │ ├── InternalRowIterator.java │ │ │ │ │ ├── PartitionOverwriteMode.java │ │ │ │ │ ├── ProtobufUtils.java │ │ │ │ │ ├── ReadRowsResponseToInternalRowIteratorConverter.java │ │ │ │ │ ├── SchemaConverters.java │ │ │ │ │ ├── SchemaConvertersConfiguration.java │ │ │ │ │ ├── SparkBigQueryConfig.java │ │ │ │ │ ├── SparkBigQueryConnectorModule.java │ │ │ │ │ ├── SparkBigQueryConnectorUserAgentProvider.java │ │ │ │ │ ├── SparkBigQueryConnectorVersionProvider.java │ │ │ │ │ ├── SparkBigQueryLineageProvider.java │ │ │ │ │ ├── SparkBigQueryProxyAndHttpConfig.java │ │ │ │ │ ├── SparkBigQueryUtil.java │ │ │ │ │ ├── SparkFilterUtils.java │ │ │ │ │ ├── SupportedCustomDataType.java │ │ │ │ │ ├── SupportsQueryPushdown.java │ │ │ │ │ ├── TypeConverter.java │ │ │ │ │ ├── direct/ │ │ │ │ │ │ ├── BigQueryPartition.java │ │ │ │ │ │ ├── BigQueryRDDContext.java │ │ │ │ │ │ ├── BigQueryRDDFactory.java │ │ │ │ │ │ ├── DirectBigQueryRelation.java │ │ │ │ │ │ ├── Scala213BigQueryRDD.java │ │ │ │ │ │ └── ScalaIterator.java │ │ │ │ │ ├── events/ │ │ │ │ │ │ ├── BigQueryJobCompletedEvent.java │ │ │ │ │ │ ├── LoadJobCompletedEvent.java │ │ │ │ │ │ └── QueryJobCompletedEvent.java │ │ │ │ │ ├── examples/ │ │ │ │ │ │ └── JavaShakespeare.java │ │ │ │ │ ├── metrics/ │ │ │ │ │ │ ├── DataOrigin.java │ │ │ │ │ │ ├── SparkBigQueryConnectorMetricsUtils.java │ │ │ │ │ │ ├── SparkBigQueryReadSessionMetrics.java │ │ │ │ │ │ └── SparkMetricsSource.java │ │ │ │ │ ├── pushdowns/ │ │ │ │ │ │ └── SparkBigQueryPushdown.java │ │ │ │ │ ├── util/ │ │ │ │ │ │ └── HdfsUtils.java │ │ │ │ │ └── write/ │ │ │ │ │ ├── BigQueryDataSourceWriterInsertableRelation.java │ │ │ │ │ ├── BigQueryDeprecatedIndirectInsertableRelation.java │ │ │ │ │ ├── BigQueryInsertableRelationBase.java │ │ │ │ │ ├── BigQueryWriteHelper.java │ │ │ │ │ ├── CreatableRelationProviderHelper.java │ │ │ │ │ ├── DataSourceWriterContextPartitionHandler.java │ │ │ │ │ ├── IntermediateDataCleaner.java │ │ │ │ │ └── context/ │ │ │ │ │ ├── AvroIntermediateRecordWriter.java │ │ │ │ │ ├── BigQueryDataSourceWriterModule.java │ │ │ │ │ ├── BigQueryDirectDataSourceWriterContext.java │ │ │ │ │ ├── BigQueryDirectDataWriterContext.java │ │ │ │ │ ├── BigQueryDirectDataWriterContextFactory.java │ │ │ │ │ ├── BigQueryDirectWriterCommitMessageContext.java │ │ │ │ │ ├── BigQueryIndirectDataSourceWriterContext.java │ │ │ │ │ ├── BigQueryIndirectDataWriterContext.java │ │ │ │ │ ├── BigQueryIndirectDataWriterContextFactory.java │ │ │ │ │ ├── BigQueryIndirectWriterCommitMessageContext.java │ │ │ │ │ ├── DataSourceWriterContext.java │ │ │ │ │ ├── DataWriterContext.java │ │ │ │ │ ├── DataWriterContextFactory.java │ │ │ │ │ ├── IntermediateRecordWriter.java │ │ │ │ │ ├── NoOpDataWriterContext.java │ │ │ │ │ └── WriterCommitMessageContext.java │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── spark/ │ │ │ │ └── sql/ │ │ │ │ ├── Scala213SparkSqlUtils.java │ │ │ │ └── SparkSqlUtils.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ ├── io.openlineage.spark.extension.OpenLineageExtensionProvider │ │ │ └── org.apache.spark.sql.SparkSqlUtils │ │ └── test/ │ │ ├── java/ │ │ │ ├── com/ │ │ │ │ └── google/ │ │ │ │ └── cloud/ │ │ │ │ └── spark/ │ │ │ │ └── bigquery/ │ │ │ │ ├── AvroSchemaConverterTest.java │ │ │ │ ├── BigQueryRelationProviderTestBase.java │ │ │ │ ├── BigQueryRelationTest.java │ │ │ │ ├── DataSourceOptions.java │ │ │ │ ├── InjectorBuilderTest.java │ │ │ │ ├── MockResponsesBatch.java │ │ │ │ ├── MockSparkBigQueryPushdown.java │ │ │ │ ├── OptimizeLoadUriListTest.java │ │ │ │ ├── ProtobufUtilsTest.java │ │ │ │ ├── SchemaConverterTest.java │ │ │ │ ├── SparkBigQueryConfigTest.java │ │ │ │ ├── SparkBigQueryProxyAndHttpConfigTest.java │ │ │ │ ├── SparkBigQueryUtilTest.java │ │ │ │ ├── SparkFilterUtilsTest.java │ │ │ │ ├── SupportedCustomDataTypeTest.java │ │ │ │ ├── TestConstants.java │ │ │ │ ├── acceptance/ │ │ │ │ │ ├── AcceptanceTestConstants.java │ │ │ │ │ ├── AcceptanceTestContext.java │ │ │ │ │ ├── AcceptanceTestUtils.java │ │ │ │ │ ├── BigNumericDataprocServerlessAcceptanceTestBase.java │ │ │ │ │ ├── DataprocAcceptanceTestBase.java │ │ │ │ │ ├── DataprocServerlessAcceptanceTestBase.java │ │ │ │ │ ├── ReadSheakspeareDataprocServerlessAcceptanceTestBase.java │ │ │ │ │ └── WriteStreamDataprocServerlessAcceptanceTestBase.java │ │ │ │ ├── direct/ │ │ │ │ │ └── Scala213BigQueryRDDTest.java │ │ │ │ ├── integration/ │ │ │ │ │ ├── CatalogIntegrationTestBase.java │ │ │ │ │ ├── IntegrationTestUtils.java │ │ │ │ │ ├── OpenLineageIntegrationTestBase.java │ │ │ │ │ ├── ReadByFormatIntegrationTestBase.java │ │ │ │ │ ├── ReadFromQueryIntegrationTestBase.java │ │ │ │ │ ├── ReadIntegrationTestBase.java │ │ │ │ │ ├── SparkBigQueryIntegrationTestBase.java │ │ │ │ │ ├── TestConstants.java │ │ │ │ │ ├── TestDataset.java │ │ │ │ │ ├── WriteIntegrationTestBase.java │ │ │ │ │ └── model/ │ │ │ │ │ ├── ColumnOrderTestClass.java │ │ │ │ │ ├── Data.java │ │ │ │ │ ├── Friend.java │ │ │ │ │ ├── Link.java │ │ │ │ │ ├── NumStruct.java │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── RangeData.java │ │ │ │ │ └── StringStruct.java │ │ │ │ ├── metrics/ │ │ │ │ │ ├── SparkBigQueryReadSessionMetricsTest.java │ │ │ │ │ └── SparkMetricsSourceTest.java │ │ │ │ ├── util/ │ │ │ │ │ └── HdfsUtilsTest.java │ │ │ │ └── write/ │ │ │ │ ├── DataSourceWriterContextPartitionHandlerTest.java │ │ │ │ └── context/ │ │ │ │ └── BigQueryDirectDataSourceWriterContextTest.java │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── spark/ │ │ │ └── sql/ │ │ │ └── Scala213SparkSqlUtilsTest.java │ │ └── resources/ │ │ ├── META-INF/ │ │ │ └── services/ │ │ │ └── com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown │ │ ├── ToIteratorTest/ │ │ │ ├── file1.txt │ │ │ └── file2.csv │ │ ├── acceptance/ │ │ │ ├── big_numeric.py │ │ │ ├── read_shakespeare.py │ │ │ ├── write_stream.py │ │ │ └── write_stream_data.json │ │ ├── alltypes.arrow │ │ ├── alltypes.arrowschema │ │ ├── alltypes.avro │ │ ├── alltypes.avroschema.json │ │ ├── arrowDateTimeRowsInBytes │ │ ├── arrowDateTimeSchema │ │ ├── integration/ │ │ │ ├── shakespeare.avro │ │ │ ├── shakespeare.csv │ │ │ ├── shakespeare.json │ │ │ └── shakespeare.parquet │ │ ├── log4j.properties │ │ └── spark-bigquery-connector.properties │ └── third_party/ │ └── apache-spark/ │ ├── LICENSE │ ├── NOTICE │ └── src/ │ └── main/ │ └── java/ │ └── com/ │ └── google/ │ └── cloud/ │ └── spark/ │ └── bigquery/ │ ├── ArrowSchemaConverter.java │ └── AvroSchemaConverter.java ├── spark-bigquery-dsv1/ │ ├── pom.xml │ ├── spark-bigquery-dsv1-parent/ │ │ └── pom.xml │ ├── spark-bigquery-dsv1-spark2-support/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── spark2/ │ │ │ └── Spark2DataFrameToRDDConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── com.google.cloud.spark.bigquery.DataFrameToRDDConverter │ ├── spark-bigquery-dsv1-spark3-support/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── spark3/ │ │ │ ├── SerializableAbstractFunction1.java │ │ │ └── Spark3DataFrameToRDDConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── com.google.cloud.spark.bigquery.DataFrameToRDDConverter │ ├── spark-bigquery-with-dependencies-parent/ │ │ └── pom.xml │ ├── spark-bigquery-with-dependencies_2.11/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── javadoc/ │ │ │ └── README.md │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── acceptance/ │ │ ├── Scala211DataprocImage13AcceptanceTest.java │ │ ├── Scala211DataprocImage13DisableConscryptAcceptanceTest.java │ │ ├── Scala211DataprocImage14AcceptanceTest.java │ │ └── Scala211DataprocImage14DisableConscryptAcceptanceTest.java │ ├── spark-bigquery-with-dependencies_2.12/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── javadoc/ │ │ │ └── README.md │ │ ├── test/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── acceptance/ │ │ │ ├── Scala212DataprocImage15AcceptanceTest.java │ │ │ ├── Scala212DataprocImage15DisableConscryptAcceptanceTest.java │ │ │ ├── Scala212DataprocImage20AcceptanceTest.java │ │ │ ├── Scala212DataprocImage20DisableConscryptAcceptanceTest.java │ │ │ ├── Scala212DataprocImage21AcceptanceTest.java │ │ │ ├── Scala212DataprocImage21DisableConscryptAcceptanceTest.java │ │ │ ├── Scala212DataprocImage22AcceptanceTest.java │ │ │ ├── Scala212DataprocImage22DisableConscryptAcceptanceTest.java │ │ │ ├── Scala212Spark32WriteStreamDataprocServerlessAcceptanceTest.java │ │ │ ├── Scala212Spark33BigNumericDataprocServerlessAcceptanceTest.java │ │ │ └── Scala212Spark33ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ └── test_2.12/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── acceptance/ │ │ ├── Scala212BigNumericDataprocServerlessAcceptanceTest.java │ │ ├── Scala212ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ └── Scala212WriteStreamDataprocServerlessAcceptanceTest.java │ ├── spark-bigquery-with-dependencies_2.13/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── test/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── acceptance/ │ │ │ ├── Scala213DataprocImage21AcceptanceTest.java │ │ │ ├── Scala213DataprocImage21DisableConscryptAcceptanceTest.java │ │ │ ├── Scala213Spark33BigNumericDataprocServerlessAcceptanceTest.java │ │ │ ├── Scala213Spark33ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ │ ├── Scala213Spark33WriteStreamDataprocServerlessAcceptanceTest.java │ │ │ ├── Scala213Spark34BigNumericDataprocServerlessAcceptanceTest.java │ │ │ ├── Scala213Spark34ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ │ ├── Scala213Spark35BigNumericDataprocServerlessAcceptanceTest.java │ │ │ └── Scala213Spark35ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ └── test_2.13/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── acceptance/ │ │ ├── Scala213BigNumericDataprocServerlessAcceptanceTest.java │ │ ├── Scala213ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ └── Scala213WriteStreamDataprocServerlessAcceptanceTest.java │ ├── spark-bigquery_2.11/ │ │ └── pom.xml │ ├── spark-bigquery_2.12/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── google/ │ │ │ │ └── cloud/ │ │ │ │ └── spark/ │ │ │ │ └── bigquery/ │ │ │ │ ├── DefaultSource.java │ │ │ │ └── Scala212BigQueryRelationProvider.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── Scala212BigQueryRelationProviderTest.java │ ├── spark-bigquery_2.13/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── google/ │ │ │ │ └── cloud/ │ │ │ │ └── spark/ │ │ │ │ └── bigquery/ │ │ │ │ ├── DefaultSource.java │ │ │ │ └── Scala213BigQueryRelationProvider.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── Scala213BigQueryRelationProviderTest.java │ └── src/ │ ├── build/ │ │ ├── javadoc/ │ │ │ └── README.md │ │ └── resources/ │ │ └── spark-bigquery-connector.properties │ └── test/ │ └── java/ │ └── com/ │ └── google/ │ └── cloud/ │ └── spark/ │ └── bigquery/ │ ├── SchemaConvertersTest.java │ └── integration/ │ ├── DataSourceV1DirectWriteIntegrationTest.java │ ├── DataSourceV1IndirectWriteIntegrationTest.java │ ├── DataSourceV1OpenLineageIntegrationTest.java │ ├── DataSourceV1ReadByFormatIntegrationTest.java │ ├── DataSourceV1ReadFromQueryIntegrationTest.java │ ├── DataSourceV1ReadIntegrationTest.java │ └── DataSourceV1WriteIntegrationTestBase.java ├── spark-bigquery-dsv2/ │ ├── pom.xml │ ├── spark-2.4-bigquery/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── resources/ │ │ │ └── spark-bigquery-connector.properties │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── google/ │ │ │ │ └── cloud/ │ │ │ │ └── spark/ │ │ │ │ └── bigquery/ │ │ │ │ └── v2/ │ │ │ │ ├── BigQueryDataSourceReader.java │ │ │ │ ├── BigQueryDataSourceV2.java │ │ │ │ ├── BigQueryDataSourceWriter.java │ │ │ │ ├── Spark24DataWriter.java │ │ │ │ ├── Spark24DataWriterFactory.java │ │ │ │ ├── Spark24InputPartition.java │ │ │ │ ├── Spark24InputPartitionReader.java │ │ │ │ ├── Spark24Statistics.java │ │ │ │ └── Spark24WriterCommitMessage.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ ├── acceptance/ │ │ │ ├── Spark24DataprocImage14AcceptanceTest.java │ │ │ ├── Spark24DataprocImage14DisableConscryptAcceptanceTest.java │ │ │ ├── Spark24DataprocImage15AcceptanceTest.java │ │ │ └── Spark24DataprocImage15DisableConscryptAcceptanceTest.java │ │ └── integration/ │ │ ├── Spark24DirectWriteIntegrationTest.java │ │ ├── Spark24IndirectWriteIntegrationTest.java │ │ ├── Spark24OpenLineageIntegrationTest.java │ │ ├── Spark24ReadByFormatIntegrationTest.java │ │ ├── Spark24ReadFromQueryIntegrationTest.java │ │ └── Spark24ReadIntegrationTest.java │ ├── spark-3.1-bigquery/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── resources/ │ │ │ └── spark-bigquery-connector.properties │ │ ├── main/ │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ ├── acceptance/ │ │ │ ├── Spark31BigNumericDataprocServerlessAcceptanceTest.java │ │ │ ├── Spark31DataprocImage20AcceptanceTest.java │ │ │ ├── Spark31DataprocImage20DisableConscryptAcceptanceTest.java │ │ │ ├── Spark31ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ │ └── Spark31WriteStreamDataprocServerlessAcceptanceTest.java │ │ └── integration/ │ │ ├── Spark31DirectWriteIntegrationTest.java │ │ ├── Spark31IndirectWriteIntegrationTest.java │ │ ├── Spark31OpenLineageIntegrationTest.java │ │ ├── Spark31ReadByFormatIntegrationTest.java │ │ ├── Spark31ReadFromQueryIntegrationTest.java │ │ └── Spark31ReadIntegrationTest.java │ ├── spark-3.1-bigquery-lib/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── v2/ │ │ │ ├── BigQueryBatchWrite.java │ │ │ ├── BigQueryInputPartition.java │ │ │ ├── BigQueryPartitionReader.java │ │ │ ├── BigQueryPartitionReaderFactory.java │ │ │ ├── BigQueryStreamingDataWriter.java │ │ │ ├── BigQueryStreamingWrite.java │ │ │ ├── BigQueryStreamingWriterFactory.java │ │ │ ├── BigQueryTableCreator.java │ │ │ ├── BigQueryWriteBuilder.java │ │ │ ├── Spark31BigQueryDataWriter.java │ │ │ ├── Spark31BigQueryDataWriterFactory.java │ │ │ ├── Spark31BigQueryScanBuilder.java │ │ │ ├── Spark31BigQueryTable.java │ │ │ ├── Spark31BigQueryTableProvider.java │ │ │ ├── Spark31BigQueryWriterCommitMessage.java │ │ │ ├── Spark3Statistics.java │ │ │ └── Spark3Util.java │ │ └── test/ │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ ├── spark-3.2-bigquery/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── resources/ │ │ │ └── spark-bigquery-connector.properties │ │ ├── main/ │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ ├── acceptance/ │ │ │ ├── Spark32BigNumericDataprocServerlessAcceptanceTest.java │ │ │ ├── Spark32DataprocImage21AcceptanceTest.java │ │ │ ├── Spark32DataprocImage21DisableConscryptAcceptanceTest.java │ │ │ ├── Spark32ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ │ └── Spark32WriteStreamDataprocServerlessAcceptanceTest.java │ │ └── integration/ │ │ ├── Spark32DirectWriteIntegrationTest.java │ │ ├── Spark32IndirectWriteIntegrationTest.java │ │ ├── Spark32OpenLineageIntegrationTest.java │ │ ├── Spark32ReadByFormatIntegrationTest.java │ │ ├── Spark32ReadFromQueryIntegrationTest.java │ │ └── Spark32ReadIntegrationTest.java │ ├── spark-3.2-bigquery-lib/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── v2/ │ │ │ ├── Spark32BigQueryPartitionReader.java │ │ │ ├── Spark32BigQueryPartitionReaderFactory.java │ │ │ ├── Spark32BigQueryScanBuilder.java │ │ │ ├── Spark32BigQueryTable.java │ │ │ └── Spark32BigQueryTableProvider.java │ │ └── test/ │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ ├── spark-3.3-bigquery/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── resources/ │ │ │ └── spark-bigquery-connector.properties │ │ ├── main/ │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ ├── acceptance/ │ │ │ ├── Spark33BigNumericDataprocServerlessAcceptanceTest.java │ │ │ ├── Spark33DataprocImage21AcceptanceTest.java │ │ │ ├── Spark33DataprocImage21DisableConscryptAcceptanceTest.java │ │ │ ├── Spark33ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ │ └── Spark33WriteStreamDataprocServerlessAcceptanceTest.java │ │ └── integration/ │ │ ├── Spark33DirectWriteIntegrationTest.java │ │ ├── Spark33IndirectWriteIntegrationTest.java │ │ ├── Spark33OpenLineageIntegrationTest.java │ │ ├── Spark33ReadByFormatIntegrationTest.java │ │ ├── Spark33ReadFromQueryIntegrationTest.java │ │ └── Spark33ReadIntegrationTest.java │ ├── spark-3.3-bigquery-lib/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── v2/ │ │ │ ├── Spark33BigQueryScanBuilder.java │ │ │ ├── Spark33BigQueryTable.java │ │ │ └── Spark33BigQueryTableProvider.java │ │ └── test/ │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ ├── spark-3.4-bigquery/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── resources/ │ │ │ └── spark-bigquery-connector.properties │ │ ├── main/ │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ ├── acceptance/ │ │ │ ├── Spark34BigNumericDataprocServerlessAcceptanceTest.java │ │ │ ├── Spark34ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ │ └── Spark34WriteStreamDataprocServerlessAcceptanceTest.java │ │ └── integration/ │ │ ├── Spark34DirectWriteIntegrationTest.java │ │ ├── Spark34IndirectWriteIntegrationTest.java │ │ ├── Spark34OpenLineageIntegrationTest.java │ │ ├── Spark34ReadByFormatIntegrationTest.java │ │ ├── Spark34ReadFromQueryIntegrationTest.java │ │ └── Spark34ReadIntegrationTest.java │ ├── spark-3.4-bigquery-lib/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── google/ │ │ │ │ └── cloud/ │ │ │ │ └── spark/ │ │ │ │ └── bigquery/ │ │ │ │ └── v2/ │ │ │ │ ├── Spark34BigQueryTable.java │ │ │ │ ├── Spark34BigQueryTableProvider.java │ │ │ │ └── TimestampNTZTypeConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── com.google.cloud.spark.bigquery.TypeConverter │ │ └── test/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── v2/ │ │ │ └── TimestampNTZTypeConverterTest.java │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ ├── spark-3.5-bigquery/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── resources/ │ │ │ └── spark-bigquery-connector.properties │ │ ├── main/ │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ ├── acceptance/ │ │ │ │ ├── Spark35BigNumericDataprocServerlessAcceptanceTest.java │ │ │ │ ├── Spark35CatalogAcceptanceTest.java │ │ │ │ ├── Spark35DataprocImage22AcceptanceTest.java │ │ │ │ ├── Spark35DataprocImage22DisableConscryptAcceptanceTest.java │ │ │ │ ├── Spark35ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ │ │ └── Spark35WriteStreamDataprocServerlessAcceptanceTest.java │ │ │ └── integration/ │ │ │ ├── Spark35CatalogIntegrationTest.java │ │ │ ├── Spark35DirectWriteIntegrationTest.java │ │ │ ├── Spark35IndirectWriteIntegrationTest.java │ │ │ ├── Spark35OpenLineageIntegrationTest.java │ │ │ ├── Spark35ReadByFormatIntegrationTest.java │ │ │ ├── Spark35ReadFromQueryIntegrationTest.java │ │ │ └── Spark35ReadIntegrationTest.java │ │ └── resources/ │ │ └── acceptance/ │ │ ├── spark-dml-create-table-as-select-in-default-dataset.sql │ │ ├── spark-dml-create-table-in-default-dataset.sql │ │ ├── spark-dml-custom-dataset.sql │ │ └── spark-dml-explicit-table.sql │ ├── spark-3.5-bigquery-lib/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── google/ │ │ │ │ └── cloud/ │ │ │ │ └── spark/ │ │ │ │ └── bigquery/ │ │ │ │ ├── BigQueryCatalog.java │ │ │ │ ├── NoSuchBigQueryTableException.java │ │ │ │ └── v2/ │ │ │ │ ├── BigQueryIdentifier.java │ │ │ │ ├── Spark35BigQueryTable.java │ │ │ │ ├── Spark35BigQueryTableProvider.java │ │ │ │ └── Spark35BigQueryWriteBuilder.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── com.google.cloud.spark.bigquery.TypeConverter │ │ └── test/ │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ ├── spark-4.0-bigquery/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── resources/ │ │ │ └── spark-bigquery-connector.properties │ │ ├── main/ │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ ├── acceptance/ │ │ │ │ ├── Spark40BigNumericDataprocServerlessAcceptanceTest.java │ │ │ │ ├── Spark40CatalogAcceptanceTest.java │ │ │ │ ├── Spark40DataprocImage30AcceptanceTest.java │ │ │ │ ├── Spark40DataprocImage30DisableConscryptAcceptanceTest.java │ │ │ │ ├── Spark40ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ │ │ └── Spark40WriteStreamDataprocServerlessAcceptanceTest.java │ │ │ └── integration/ │ │ │ ├── Spark40CatalogIntegrationTest.java │ │ │ ├── Spark40DirectWriteIntegrationTest.java │ │ │ ├── Spark40IndirectWriteIntegrationTest.java │ │ │ ├── Spark40OpenLineageIntegrationTest.java │ │ │ ├── Spark40ReadByFormatIntegrationTest.java │ │ │ ├── Spark40ReadFromQueryIntegrationTest.java │ │ │ └── Spark40ReadIntegrationTest.java │ │ └── resources/ │ │ └── acceptance/ │ │ ├── spark-dml-create-table-as-select-in-default-dataset.sql │ │ ├── spark-dml-create-table-in-default-dataset.sql │ │ ├── spark-dml-custom-dataset.sql │ │ └── spark-dml-explicit-table.sql │ ├── spark-4.0-bigquery-lib/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── google/ │ │ │ │ └── cloud/ │ │ │ │ └── spark/ │ │ │ │ └── bigquery/ │ │ │ │ └── v2/ │ │ │ │ ├── Spark40BigQueryTable.java │ │ │ │ ├── Spark40BigQueryTableProvider.java │ │ │ │ └── Spark40BigQueryWriteBuilder.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── com.google.cloud.spark.bigquery.TypeConverter │ │ └── test/ │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ ├── spark-4.1-bigquery/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── build/ │ │ │ └── resources/ │ │ │ └── spark-bigquery-connector.properties │ │ ├── main/ │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ │ └── test/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ ├── acceptance/ │ │ │ │ ├── Spark41BigNumericDataprocServerlessAcceptanceTest.java │ │ │ │ ├── Spark41CatalogAcceptanceTest.java │ │ │ │ ├── Spark41DataprocImage30AcceptanceTest.java │ │ │ │ ├── Spark41DataprocImage30DisableConscryptAcceptanceTest.java │ │ │ │ ├── Spark41ReadSheakspeareDataprocServerlessAcceptanceTest.java │ │ │ │ └── Spark41WriteStreamDataprocServerlessAcceptanceTest.java │ │ │ └── integration/ │ │ │ ├── Spark41CatalogIntegrationTest.java │ │ │ ├── Spark41DirectWriteIntegrationTest.java │ │ │ ├── Spark41IndirectWriteIntegrationTest.java │ │ │ ├── Spark41OpenLineageIntegrationTest.java │ │ │ ├── Spark41ReadByFormatIntegrationTest.java │ │ │ ├── Spark41ReadFromQueryIntegrationTest.java │ │ │ └── Spark41ReadIntegrationTest.java │ │ └── resources/ │ │ └── acceptance/ │ │ ├── spark-dml-create-table-as-select-in-default-dataset.sql │ │ ├── spark-dml-create-table-in-default-dataset.sql │ │ ├── spark-dml-custom-dataset.sql │ │ └── spark-dml-explicit-table.sql │ ├── spark-4.1-bigquery-lib/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── google/ │ │ │ │ └── cloud/ │ │ │ │ └── spark/ │ │ │ │ └── bigquery/ │ │ │ │ └── v2/ │ │ │ │ ├── Spark41BigQueryTable.java │ │ │ │ ├── Spark41BigQueryTableProvider.java │ │ │ │ └── Spark41BigQueryWriteBuilder.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── services/ │ │ │ └── com.google.cloud.spark.bigquery.TypeConverter │ │ └── test/ │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── org.apache.spark.sql.sources.DataSourceRegister │ ├── spark-bigquery-dsv2-common/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ └── java/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── v2/ │ │ │ ├── BaseBigQuerySource.java │ │ │ └── context/ │ │ │ ├── ArrowColumnBatchPartitionReaderContext.java │ │ │ ├── ArrowInputPartitionContext.java │ │ │ ├── BigQueryDataSourceReaderContext.java │ │ │ ├── BigQueryDataSourceReaderModule.java │ │ │ ├── BigQueryInputPartitionContext.java │ │ │ ├── BigQueryInputPartitionReaderContext.java │ │ │ ├── EmptyProjectionInputPartitionContext.java │ │ │ ├── EmptyProjectionInputPartitionReaderContext.java │ │ │ ├── InputPartitionContext.java │ │ │ ├── InputPartitionReaderContext.java │ │ │ └── StatisticsContext.java │ │ └── test/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── v2/ │ │ └── context/ │ │ ├── ArrowInputPartitionContextTest.java │ │ └── BigQueryInputPartitionReaderContextTest.java │ ├── spark-bigquery-dsv2-parent/ │ │ └── pom.xml │ └── spark-bigquery-metrics/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ └── java/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── v2/ │ │ └── customMetrics/ │ │ ├── MetricUtils.java │ │ ├── SparkBigQueryBytesReadMetric.java │ │ ├── SparkBigQueryCustomMetricConstants.java │ │ ├── SparkBigQueryNumberOfReadStreamsMetric.java │ │ ├── SparkBigQueryParseTimeMetric.java │ │ ├── SparkBigQueryRowsReadMetric.java │ │ ├── SparkBigQueryScanTimeMetric.java │ │ ├── SparkBigQueryTaskMetric.java │ │ └── SparkBigQueryTimeInSparkMetric.java │ └── test/ │ └── java/ │ └── com/ │ └── google/ │ └── cloud/ │ └── spark/ │ └── bigquery/ │ └── v2/ │ └── customMetrics/ │ ├── SparkBigQueryBytesReadMetricTest.java │ ├── SparkBigQueryNumberOfReadStreamsMetricTest.java │ ├── SparkBigQueryParseTimeMetricTest.java │ ├── SparkBigQueryRowsReadMetricTest.java │ ├── SparkBigQueryScanTimeMetricTest.java │ ├── SparkBigQueryTaskMetricTest.java │ └── SparkBigQueryTimeInSparkMetricTest.java ├── spark-bigquery-parent/ │ └── pom.xml ├── spark-bigquery-pushdown/ │ ├── pom.xml │ ├── pushdown_common_src/ │ │ ├── main/ │ │ │ └── scala/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── pushdowns/ │ │ │ ├── AggregateQuery.scala │ │ │ ├── BaseSparkBigQueryPushdown.scala │ │ │ ├── BigQuerySQLQuery.scala │ │ │ ├── BigQuerySQLStatement.scala │ │ │ ├── BigQueryStrategy.scala │ │ │ ├── BinaryOperationExtractor.scala │ │ │ ├── CastExpressionExtractor.scala │ │ │ ├── FilterQuery.scala │ │ │ ├── JoinExtractor.scala │ │ │ ├── JoinQuery.scala │ │ │ ├── LeftSemiJoinQuery.scala │ │ │ ├── ProjectQuery.scala │ │ │ ├── SortLimitQuery.scala │ │ │ ├── SourceQuery.scala │ │ │ ├── SparkBigQueryPushdownUtil.scala │ │ │ ├── SparkExpressionConverter.scala │ │ │ ├── SparkExpressionFactory.scala │ │ │ ├── SparkPlanFactory.scala │ │ │ ├── UnaryOperationExtractor.scala │ │ │ ├── UnionOperationExtractor.scala │ │ │ ├── UnionQuery.scala │ │ │ └── WindowQuery.scala │ │ └── test/ │ │ └── scala/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── pushdowns/ │ │ ├── AggregateQuerySuite.scala │ │ ├── BigQuerySQLStatementSuite.scala │ │ ├── BigQueryStrategySuite.scala │ │ ├── CastExpressionExtractorSuite.scala │ │ ├── FilterQuerySuite.scala │ │ ├── JoinQuerySuite.scala │ │ ├── ProjectQuerySuite.scala │ │ ├── SortLimitQuerySuite.scala │ │ ├── SourceQuerySuite.scala │ │ ├── SparkBigQueryPushdownUtilSuite.scala │ │ ├── SparkExpressionConverterSuite.scala │ │ ├── TestConstants.scala │ │ ├── UnaryOperationExtractorSuite.scala │ │ ├── UnionOperationExtractorSuite.scala │ │ ├── UnionQuerySuite.scala │ │ └── WindowQuerySuite.scala │ ├── spark-2.4-bigquery-pushdown_2.11/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── resources/ │ │ │ │ └── META-INF/ │ │ │ │ └── services/ │ │ │ │ └── com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown │ │ │ └── scala/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── pushdowns/ │ │ │ ├── Spark24BigQueryPushdown.scala │ │ │ ├── Spark24BigQueryPushdownPlan.scala │ │ │ ├── Spark24BigQueryStrategy.scala │ │ │ ├── Spark24ExpressionConverter.scala │ │ │ ├── Spark24ExpressionFactory.scala │ │ │ └── Spark24PlanFactory.scala │ │ └── test/ │ │ └── scala/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── pushdowns/ │ │ ├── BinaryOperationExtractorSuite.scala │ │ ├── JoinExtractorSuite.scala │ │ ├── Spark24BigQueryStrategySuite.scala │ │ └── Spark24ExpressionConverterSuite.scala │ ├── spark-2.4-bigquery-pushdown_2.12/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── resources/ │ │ │ │ └── META-INF/ │ │ │ │ └── services/ │ │ │ │ └── com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown │ │ │ └── scala/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── pushdowns/ │ │ │ ├── Spark24BigQueryPushdown.scala │ │ │ ├── Spark24BigQueryPushdownPlan.scala │ │ │ ├── Spark24BigQueryStrategy.scala │ │ │ ├── Spark24ExpressionConverter.scala │ │ │ ├── Spark24ExpressionFactory.scala │ │ │ └── Spark24PlanFactory.scala │ │ └── test/ │ │ └── scala/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── pushdowns/ │ │ ├── Spark24BigQueryStrategySuite.scala │ │ └── Spark24ExpressionConverterSuite.scala │ ├── spark-3.1-bigquery-pushdown_2.12/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── resources/ │ │ │ │ └── META-INF/ │ │ │ │ └── services/ │ │ │ │ └── com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown │ │ │ └── scala/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── pushdowns/ │ │ │ ├── Spark31BigQueryPushdown.scala │ │ │ ├── Spark31BigQueryPushdownPlan.scala │ │ │ ├── Spark31BigQueryStrategy.scala │ │ │ ├── Spark31ExpressionConverter.scala │ │ │ ├── Spark31ExpressionFactory.scala │ │ │ └── Spark31PlanFactory.scala │ │ └── test/ │ │ └── scala/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── pushdowns/ │ │ ├── BinaryOperationExtractorSuite.scala │ │ ├── JoinExtractorSuite.scala │ │ ├── Spark31BigQueryStrategySuite.scala │ │ └── Spark31ExpressionConverterSuite.scala │ ├── spark-3.2-bigquery-pushdown_2.12/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── resources/ │ │ │ │ └── META-INF/ │ │ │ │ └── services/ │ │ │ │ └── com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown │ │ │ └── scala/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── pushdowns/ │ │ │ ├── Spark32BigQueryPushdown.scala │ │ │ ├── Spark32BigQueryPushdownPlan.scala │ │ │ ├── Spark32BigQueryStrategy.scala │ │ │ ├── Spark32ExpressionConverter.scala │ │ │ ├── Spark32ExpressionFactory.scala │ │ │ └── Spark32PlanFactory.scala │ │ └── test/ │ │ └── scala/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── pushdowns/ │ │ ├── BinaryOperationExtractorSuite.scala │ │ ├── JoinExtractorSuite.scala │ │ └── Spark32ExpressionConverterSuite.scala │ ├── spark-3.2-bigquery-pushdown_2.13/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── resources/ │ │ │ │ └── META-INF/ │ │ │ │ └── services/ │ │ │ │ └── com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown │ │ │ └── scala/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── pushdowns/ │ │ │ ├── Spark32BigQueryPushdown.scala │ │ │ ├── Spark32BigQueryPushdownPlan.scala │ │ │ ├── Spark32BigQueryStrategy.scala │ │ │ ├── Spark32ExpressionConverter.scala │ │ │ ├── Spark32ExpressionFactory.scala │ │ │ └── Spark32PlanFactory.scala │ │ └── test/ │ │ └── scala/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── pushdowns/ │ │ ├── BinaryOperationExtractorSuite.scala │ │ ├── JoinExtractorSuite.scala │ │ └── Spark32ExpressionConverterSuite.scala │ ├── spark-3.3-bigquery-pushdown_2.12/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── resources/ │ │ │ │ └── META-INF/ │ │ │ │ └── services/ │ │ │ │ └── com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown │ │ │ └── scala/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── pushdowns/ │ │ │ ├── Spark33BigQueryPushdown.scala │ │ │ ├── Spark33BigQueryPushdownPlan.scala │ │ │ ├── Spark33BigQueryStrategy.scala │ │ │ ├── Spark33ExpressionConverter.scala │ │ │ ├── Spark33ExpressionFactory.scala │ │ │ └── Spark33PlanFactory.scala │ │ └── test/ │ │ └── scala/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── pushdowns/ │ │ ├── BinaryOperationExtractorSuite.scala │ │ ├── JoinExtractorSuite.scala │ │ └── Spark33ExpressionConverterSuite.scala │ ├── spark-3.3-bigquery-pushdown_2.13/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── resources/ │ │ │ │ └── META-INF/ │ │ │ │ └── services/ │ │ │ │ └── com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown │ │ │ └── scala/ │ │ │ └── com/ │ │ │ └── google/ │ │ │ └── cloud/ │ │ │ └── spark/ │ │ │ └── bigquery/ │ │ │ └── pushdowns/ │ │ │ ├── Spark33BigQueryPushdown.scala │ │ │ ├── Spark33BigQueryPushdownPlan.scala │ │ │ ├── Spark33BigQueryStrategy.scala │ │ │ ├── Spark33ExpressionConverter.scala │ │ │ ├── Spark33ExpressionFactory.scala │ │ │ └── Spark33PlanFactory.scala │ │ └── test/ │ │ └── scala/ │ │ └── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── pushdowns/ │ │ ├── BinaryOperationExtractorSuite.scala │ │ ├── JoinExtractorSuite.scala │ │ └── Spark33ExpressionConverterSuite.scala │ ├── spark-bigquery-pushdown-common_2.11/ │ │ └── pom.xml │ ├── spark-bigquery-pushdown-common_2.12/ │ │ └── pom.xml │ ├── spark-bigquery-pushdown-common_2.13/ │ │ └── pom.xml │ └── spark-bigquery-pushdown-parent/ │ └── pom.xml ├── spark-bigquery-python-lib/ │ ├── pom.xml │ └── src/ │ ├── assembly/ │ │ └── descriptor.xml │ └── main/ │ └── python/ │ ├── __init__.py │ └── google/ │ ├── __init__.py │ └── cloud/ │ ├── __init__.py │ └── spark/ │ ├── __init__.py │ └── bigquery/ │ ├── __init__.py │ └── big_query_connector_utils.py ├── spark-bigquery-scala-212-support/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── java/ │ │ │ ├── com/ │ │ │ │ └── google/ │ │ │ │ └── cloud/ │ │ │ │ └── spark/ │ │ │ │ └── bigquery/ │ │ │ │ └── direct/ │ │ │ │ └── PreScala213BigQueryRDD.java │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── spark/ │ │ │ └── sql/ │ │ │ └── PreScala213SparkSqlUtils.java │ │ └── resources/ │ │ └── META-INF/ │ │ └── services/ │ │ └── org.apache.spark.sql.SparkSqlUtils │ └── test/ │ └── java/ │ ├── com/ │ │ └── google/ │ │ └── cloud/ │ │ └── spark/ │ │ └── bigquery/ │ │ └── direct/ │ │ └── PreScala213BigQueryRDDTest.java │ └── org/ │ └── apache/ │ └── spark/ │ └── sql/ │ └── PreScala213SparkSqlUtilsTest.java └── spark-bigquery-tests/ └── pom.xml ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/codeql-analysis.yml ================================================ # For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. # # ******** NOTE ******** # We have attempted to detect the languages in your repository. Please check # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # name: "CodeQL" on: push: branches: [ master ] pull_request: # The branches below must be a subset of the branches above branches: [ master ] schedule: - cron: '18 6 * * 4' jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ 'python' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # Learn more about CodeQL language support at https://git.io/codeql-language-support steps: - name: Checkout repository uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. # queries: ./path/to/local/query, your-org/your-repo/queries@main # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild uses: github/codeql-action/autobuild@v3 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines # and modify them (or add more) to build your code if your project # uses a compiled language #- run: | # make bootstrap # make release - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 ================================================ FILE: .github/workflows/cpd.yaml ================================================ name: Duplicate Code Detection on: push: branches: [ master ] pull_request: # The branches below must be a subset of the branches above branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v3 with: distribution: 'temurin' java-version: '8' cache: 'maven' - name: Running Duplicate Code Detection run: ./mvnw pmd:cpd-check -Pall -Daggregate=true ================================================ FILE: .github/workflows/spotless.yaml ================================================ name: Spotless Check on: push: branches: [ master ] pull_request: # The branches below must be a subset of the branches above branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v3 with: distribution: 'temurin' java-version: '8' cache: 'maven' - name: Checkout coding style run: ./mvnw spotless:check -Pall ================================================ FILE: .gitignore ================================================ *.class *.log # sbt/maven specific .cache/ .history/ .lib/ .flattened-pom.xml dist/* target/ lib_managed/ src_managed/ project/boot/ project/plugins/project/ dependency-reduced-pom.xml *.versionsBackup .mvn/wrapper/maven-wrapper.jar # Scala-IDE specific .scala_dependencies .worksheet .idea *.iml # Eclipse IDE Specific files .classpath .project .settings/ # ad-hoc tests, should not be added to git AdAdHocITSuite.scala # Mac .DS_Store # Visual Studio IDE .vscode/ # toolchains file toolchains.xml ================================================ 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 ================================================ distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar ================================================ FILE: CHANGES.md ================================================ # Release Notes ## Next * Issue #1476: Fixed BigQuery MERGE statement ambiguity on overwrite when table columns are named `target` or `source`. ## 0.44.1 - 2026-03-25 * BigQuery API has been upgraded to version 2.60.0 * BigQuery Storage API has been upgraded to version 3.22.1 * GAX has been upgraded to version 2.75.0 * gRPC has been upgraded to version 1.79.0 * Guava has been upgraded to version 33.5.0-jre * Netty has been upgraded to version 4.2.10.Final * Protocol Buffers has been upgraded to version 4.34.0 * google-api-client has been upgraded to version 2.9.0 ## 0.44.0 - 2026-02-11 * Added new connector, `spark-4.1-bigquery` aimed to be used in Spark 4.1. Like Spark 4.1, this connector requires at least Java 17 runtime. It is currently in preview mode. * `spark-4.0-bigquery` is generally available! * PR #1445: Add streaming support for Spark DS v2 indirect write. * PR #1452: Improved the performance of the dynamic partition overwrite for RANGE_BUCKET partitioned tables. * PR #1434: Support per-catalog configuration for project and location for BigQueryCatalog. ## 0.43.1 - 2025-10-22 * Issue #1417: Fixed ClassCastException in AWS federated identity * PR #1432: Fixing packaging issue with the spark-4.0-bigquery connector. ## 0.43.0 - 2025-10-17 * Added new connector, `spark-4.0-bigquery` aimed to be used in Spark 4.0. Like Spark 4.0, this connector requires at least Java 17 runtime. It is currently in preview mode. * PR #1367: Query Pushdown is no longer supported. * PR #1369: Catalog enhancements * PR #1374: Ensure TableId includes project ID if not explicitly set * PR #1376: `materializationDataset` is now optional to read from views or queries. * PR #1380: Fixed ImpersonatedCredentials serialization * PR #1381: Added the option to set custom credentials scopes * PR #1411: Added Support for [SparkSession#executeCommand](https://archive.apache.org/dist/spark/docs/3.0.0/api/java/org/apache/spark/sql/SparkSession.html#executeCommand-java.lang.String-java.lang.String-scala.collection.immutable.Map-) * Issue #1421: Fix ArrowInputPartitionContext serialization issue. Thanks @mrjoe7 ! * BigQuery API has been upgraded to version 2.54.0 * BigQuery Storage API has been upgraded to version 3.16.1 * GAX has been upgraded to version 2.68.2 * gRPC has been upgraded to version 1.74.0 ## 0.42.2 - 2025-05-16 * PR #1347: Get lineage out of query. Thanks @ddebowczyk92 * PR #1349: Add parameterized query support * BigQuery API has been upgraded to version 2.48.1 * BigQuery Storage API has been upgraded to version 3.11.4 * GAX has been upgraded to version 2.63.1 * gRPC has been upgraded to version 1.71.0 ## 0.42.1 - 2025-03-17 * CVE-2025-24970, CVE-2025-25193: Upgrading netty to version 4.1.119.Final * PR #1284: Making BigQueryClientFactory Kryo serializable. Thanks @tom-s-powell ! * PR #1345: `materializationDataset` is no longer needed to read from views or queries. ## 0.42.0 - 2025-02-06 * PR #1333: Initial implementation of a BigQuery backed Spark Catalog * PR #1335: Adding indirect write GCS cleanup logs * BigQuery API has been upgraded to version 2.47.0 * BigQuery Storage API has been upgraded to version 3.11.2 * GAX has been upgraded to version 2.60.0 * Netty has been upgraded to version 4.1.117.Final * Guava has been upgraded to version 33.4.0-jre ## 0.41.1 - 2024-12-20 * Issue #1290: Stopped using metadata for optimized count path * Issue #1317: Improving OpenLineage 1.24.0+ compatibility * PR #1311: Improve read session expired error message * PR #1320: Set the `temporaryGcsBucket` to default to `fs.gs.system.bucket` if exists, negating the need to set it in Dataproc clusters. * BigQuery API has been upgraded to version 2.45.0 * BigQuery Storage API has been upgraded to version 3.11.0 * GAX has been upgraded to version 2.59.0 * Netty has been upgraded to version 4.1.115.Final * Arrow has been upgraded to version 17.0.0 * Avro has been upgraded to version 1.11.4 ## 0.41.0 - 2024-09-05 * PR #1265 : Add additional parentheses for EqualNullSafe filter generation. Thanks @tom-s-powell ! * PR #1267 : Implement OpenLineage spark-extension-interfaces * PR #1281 : Configure alternative BigNumeric precision and scale defaults * Issue #1175: Add details to schema mismatch message * BigQuery API has been upgraded to version 2.42.2 * BigQuery Storage API has been upgraded to version 3.9.0 * GAX has been upgraded to version 2.52.0 * Netty has been upgraded to version 4.1.113.Final ## 0.40.0 - 2024-08-05 * PR #1259 : Encode snapshotTimeMillis in view materialization query. Thanks @tom-s-powell ! * PR #1261 : Adding IdentityToken header in readRows call * Issue #1043 : Fix Indirect write drops policy tags * Issue #1244 : Set schema Field Nullables as per ALLOW_FIELD_RELAXATION * Issue #1254 : fix getting partitioning fields for pseudo columns * Issue #1263 : Support ClusteredFields in Direct Write * BigQuery API has been upgraded to version 2.42.0 * BigQuery Storage API has been upgraded to version 3.8.0 * GAX has been upgraded to version 2.51.0 * gRPC has been upgraded to version 1.65.1 * Netty has been upgraded to version 4.1.112.Final ## 0.39.1 - 2024-06-24 * PR #1236: Fixing unshaded artifacts, added shading verification * PR #1239: Allow GCS bucket to be supplied including a scheme. Thanks @tom-s-powell ! * Issue #1126: Fixing Kryo serialization issues * Issue #1223: Fix gRPC status creates 'object not serializable' errors ## 0.39.0 - 2024-05-21 * PR #1221: Adding support for [table snapshots](https://cloud.google.com/bigquery/docs/table-snapshots-intro). Thanks @tom-s-powell ! * PR #1222: Add option to request lz4 compressed ReadRowsResponse * PR #1225: Fixing multi-release jar shading * PR #1227: Optimizing dynamic partition overwrite for Time partitioned tables * BigQuery API has been upgraded to version 2.40.1 * BigQuery Storage API has been upgraded to version 3.5.1 * GAX has been upgraded to version 2.48.1 * gRPC has been upgraded to version 1.64.0 ## 0.38.0 - 2024-05-01 * PR #1205: Sending Identity token in the read API header * Issue #1195: Support map type with complex value * Issue #1215: Support predicate pushdown for DATETIME * BigQuery API has been upgraded to version 2.39.0 * BigQuery Storage API has been upgraded to version 3.5.0 * GAX has been upgraded to version 2.47.0 * Arrow has been upgraded to version 16.0.0 * gRPC has been upgraded to version 1.63.0 * Netty has been upgraded to version 4.1.109.Final ## 0.37.0 - 2024-03-25 * :warning: Starting version 0.38.0 of the connector, the `spark-2.4-bigquery` version won't be released as Spark 2.4 is well-supported by the `spark-bigquery-with-dependencies` connectors. * PR #1156: Propagate stats for BigLake Managed tables * PR #1181: Add caching during protobuf generation * PR #1190: Enable connection sharing for atLeastOnce writes * Issue #1182: Fix query check logic * BigQuery API has been upgraded to version 2.38.1 * BigQuery Storage API has been upgraded to version 3.3.1 * GAX has been upgraded to version 2.45.0 * Arrow has been upgraded to version 15.0.1 * gRPC has been upgraded to version 1.62.2 * Netty has been upgraded to version 4.1.107.Final * Protocol Buffers has been upgraded to version 3.25.3 ## 0.36.1 - 2024-01-31 * PR #1176: fix timestamp filter translation issue ## 0.36.0 - 2024-01-25 * PR #1155: allow lazy materialization of query on load * PR #1163: Added config to set the BigQuery Job timeout * PR #1166: Fix filters by adding surrounding parenthesis. Thanks @tom-s-powell ! * PR #1171: fix read, write issues with Timestamp * Issue #1116: BigQuery write fails with MessageSize is too large * BigQuery API has been upgraded to version 2.36.0 * GAX has been upgraded to version 2.40.0 * gRPC has been upgraded to version 1.61.0 * Netty has been upgraded to version 4.1.106.Final * Protocol Buffers has been upgraded to version 3.25.2 ## 0.35.1 - 2023-12-28 * PR #1153: allow writing spark string to BQ datetime ## 0.35.0 - 2023-12-19 * PR #1115: Added new connector, `spark-3.5-bigquery` aimed to be used in Spark 3.5. This connector implements new APIs and capabilities provided by the Spark Data Source V2 API. * PR #1117: Make read session caching duration configurable * PR #1118: Improve read session caching key * PR #1122: Set traceId on write * PR #1124: Added `SparkListenerEvent`s for Query and Load jobs running on BigQuery * PR #1127: Fix job labeling for mixed case Dataproc job names * PR #1136: Consider projections for biglake stats * PR #1143: Enable async write for default stream * BigQuery API has been upgraded to version 2.35.0 * BigQuery Storage API has been upgraded to version 2.47.0 * GAX has been upgraded to version 2.38.0 * gRPC has been upgraded to version 1.60.0 * Netty has been upgraded to version 4.1.101.Final * Protocol Buffers has been upgraded to version 3.25.1 ## 0.34.0 - 2023-10-31 * PR #1057: Enable async writes for greater throughput * PR #1094: CVE-2023-5072: Upgrading the org.json:json dependency * PR #1095: CVE-2023-4586: Upgrading the netty dependencies * PR #1104: Fixed nested field predicate pushdown * PR #1109: Enable read session caching by default for faster Spark planning * PR #1111: Enable retry of failed messages * Issue #103: Support for Dynamic partition overwrite for time and range partitioned table * Issue #1099: Fixing the usage of ExternalAccountCredentials * BigQuery API has been upgraded to version 2.33.2 * BigQuery Storage API has been upgraded to version 2.44.0 * GAX has been upgraded to version 2.35.0 * gRPC has been upgraded to version 1.58.0 * Protocol Buffers has been upgraded to version 3.24.4 ## 0.33.0 - 2023-10-17 * Added new connector, `spark-3.4-bigquery` aimed to be used in Spark 3.4 and above. This connector implements new APIs and capabilities provided by the Spark Data Source V2 API. * PR #1008: Adding support to expose BigQuery metrics using Spark custom metrics API. * PR #1038: Logical plan now shows the BigQuery table of DirectBigQueryRelation. Thanks @idc101 ! * PR #1058: View names will appear in query plan instead of the materialized table * PR #1061: Handle NPE case when reading BQ table with NUMERIC fields. Thanks @hayssams ! * PR #1069: Support TimestampNTZ datatype in spark 3.4 * Issue #453: fix comment handling in query * Issue #144: allow writing Spark String to BQ TIME type * Issue #867: Support writing with RangePartitioning * Issue #1046: Add a way to disable map type support * Issue #1062: Adding dataproc job ID and UUID labels to BigQuery jobs ## 0.32.2 - 2023-08-07 * CVE-2023-34462: Upgrading netty to verision 4.1.96.Final ## 0.32.1 - 2023-08-03 * PR #1025: Handle Java 8 types for dates and timestamps when compiling filters. Thanks @tom-s-powell ! * Issue #1026: Fixing Numeric conversion * Issue #1028: Fixing PolicyTags removal on overwrite ## 0.32.0 - 2023-07-17 * Issue #748: `_PARTITIONDATE` pseudo column is provided only for ingestion time **daily** partitioned tables * Issue #990: Fix to support `allowFieldAddition` for columns with nested fields. * Issue #993: Spark ML vector read and write fails * PR #1007: Implement at-least-once option that utilizes default stream ## 0.31.1 - 2023-06-06 * Issue #988: Read statistics are logged at TRACE level. Update the log4j configuration accordingly in order to log them. ## 0.31.0 - 2023-06-01 * :warning: **Breaking Change** BigNumeric conversion has changed, and it is now converted to Spark's Decimal data type. Notice that BigNumeric can have a wider precision than Decimal, so additional setting may be needed. See [here](https://github.com/GoogleCloudDataproc/spark-bigquery-connector#numeric-and-bignumeric-support) for additional details. * Issue #945: Fixing unable to add new column even with option `allowFieldAddition` * PR #965: Fix to reuse the same BigQueryClient for the same BigQueryConfig, rather than creating a new one * PR #950: Added support for service account impersonation * PR #960: Added support for basic configuration of the gRPC channel pool size in the BigQueryReadClient. * PR #973: Added support for writing to [CMEK managed tables](https://cloud.google.com/bigquery/docs/customer-managed-encryption). * PR #971: Fixing wrong results or schema error when Spark nested schema pruning is on for datasource v2 * PR #974: Applying DPP to Hive partitioned BigLake tables (spark-3.2-bigquery and spark-3.3-bigquery only) * PR #986: CVE-2020-8908, CVE-2023-2976: Upgrading Guava to version 32.0-jre * BigQuery API has been upgraded to version 2.26.0 * BigQuery Storage API has been upgraded to version 2.36.1 * GAX has been upgraded to version 2.26.0 * gRPC has been upgraded to version 1.55.1 * Netty has been upgraded to version 4.1.92.Final * Protocol Buffers has been upgraded to version 3.23.0 * PR #957: support direct write with subset field list. ## 0.30.0 - 2023-04-11 * New connectors are out of preview and are now generally available! This includes all the new connectors: spark-2.4-bigquery, spark-3.1-bigquery, spark-3.2-bigquery and spark-3.3-bigquery are GA and ready to be used in all workloads. Please refer to the [compatibility matrix](https://github.com/GoogleCloudDataproc/spark-bigquery-connector#connector-to-spark-compatibility-matrix) when using them. * Direct write method is out of preview and is now generally available! * `spark-bigquery-with-dependencies_2.11` is no longer published. If a recent version of the Scala 2.11 connector is needed, it can be built by checking out the code and running `./mvnw install -Pdsv1_2.11`. * Issue #522: Supporting Spark's Map type. Notice there are few restrictions as this is not a BigQuery native type. * Added support for reading BigQuery table snapshots. * BigQuery API has been upgraded to version 2.24.4 * BigQuery Storage API has been upgraded to version 2.34.2 * GAX has been upgraded to version 2.24.0 * gRPC has been upgraded to version 1.54.0 * Netty has been upgraded to version 4.1.90.Final * PR #944: Added support to set query job priority * Issue #908: Making sure that `preferred_min_stream_count` must be less than or equal to `max_stream_count` ## 0.29.0 - 2023-03-03 * Added two new connectors, `spark-3.2-bigquery` and `spark-3.3-bigquery` aimed to be used in Spark 3.2 and 3.3 respectively. Those connectors implement new APIs and capabilities provided by the Spark Data Source V2 API. Both connectors are in preview mode. * Dynamic partition pruning is supported in preview mode by `spark-3.2-bigquery` and `spark-3.3-bigquery`. * This is the last version of the Spark BigQuery connector for scala 2.11. The code will remain in the repository and can be compiled into a connector if needed. * PR #857: Fixing `autovalue` shaded classes repackaging * BigQuery API has been upgraded to version 2.22.0 * BigQuery Storage API has been upgraded to version 2.31.0 * GAX has been upgraded to version 2.23.0 * gRPC has been upgraded to version 1.53.0 * Netty has been upgraded to version 4.1.89.Final ## 0.28.1 - 2023-02-27 PR #904: Fixing premature client closing in certain cases, which causes RejectedExecutionException to be thrown ## 0.28.0 - 2023-01-09 * Adding support for the [JSON](https://cloud.google.com/bigquery/docs/reference/standard-sql/json-data) data type. Thanks to @abhijeet-lele and @jonathan-ostrander for their contributions! * Issue #821: Fixing direct write of empty DataFrames * PR #832: Fixed client closing * Issue #838: Fixing unshaded artifacts * PR #848: Making schema comparison on write less strict * PR #852: fixed `enableListInference` usage when using the default intermediate format * Jackson has been upgraded to version 2.14.1, addressing CVE-2022-42003 * BigQuery API has been upgraded to version 2.20.0 * BigQuery Storage API has been upgraded to version 2.27.0 * GAX has been upgraded to version 2.20.1 * Guice has been upgraded to version 5.1.0 * gRPC has been upgraded to version 1.51.1 * Netty has been upgraded to version 4.1.86.Final * Protocol Buffers has been upgraded to version 3.21.12 ## 0.27.1 - 2022-10-18 * PR #792: Added ability to set table labels while writing to a BigQuery table * PR #796: Allowing custom BigQuery API endpoints * PR #803: Removed grpc-netty-shaded from the connector jar * Protocol Buffers has been upgraded to version 3.21.7, addressing CVE-2022-3171 * BigQuery API has been upgraded to version 2.16.1 * BigQuery Storage API has been upgraded to version 2.21.0 * gRPC has been upgraded to version 1.49.1 * Netty has been upgraded to version 4.1.82.Final ## 0.27.0 - 2022-09-20 * Added new Scala 2.13 connector, aimed at Spark versions from 3.2 and above * PR #750: Adding support for custom access token creation. See more [here](https://github.com/GoogleCloudDataproc/spark-bigquery-connector#how-do-i-authenticate-outside-gce--dataproc). * PR #745: Supporting load from query in spark-3.1-bigquery. * PR #767: Adding the option createReadSessionTimeoutInSeconds, to override the timeout for CreateReadSession. ## 0.26.0 - 2022-07-18 * All connectors support the DIRECT write method, using the BigQuery Storage Write API, without first writing the data to GCS. **DIRECT write method is in preview mode**. * `spark-3.1-bigquery` has been released in preview mode. This is a Java only library, implementing the Spark 3.1 DataSource v2 APIs. * BigQuery API has been upgraded to version 2.13.8 * BigQuery Storage API has been upgraded to version 2.16.0 * gRPC has been upgraded to version 1.47.0 * Netty has been upgraded to version 4.1.79.Final ## 0.25.2 - 2022-06-22 * PR #673: Added integration tests for BigLake external tables. * PR #674: Increasing default maxParallelism to 10K for BigLake external tables ## 0.25.1 - 2022-06-13 * Issue #651: Fixing the write back to BigQuery. * PR #664: Add support for BigLake external tables. * PR #667: Allowing clustering on unpartitioned tables. * PR #668: Using spark default parallelism as default. ## 0.25.0 - 2022-05-31 * Issue #593: Allow users to disable cache when loading data via SQL query, by setting `cacheExpirationTimeInMinutes=0` * PR #613: Added field level schema checks. This can be disabled by setting `enableModeCheckForSchemaFields=false` * PR #618: Added support for the `enableListInterface` option. This allows to use parquet as an intermediate format also for arrays, without adding the `list` element in the resulting schema as described [here](https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#ParquetOptions) * PR #641: Removed Conscrypt from the shaded artifact in order to improve compatibility with Dataproc Serverless and with clusters where Conscrypt is disabled. * BigQuery API has been upgraded to version 2.10.6 * BigQuery Storage API has been upgraded to version 2.12.0 * gRPC has been upgraded to version 1.46.0 * Netty has been upgraded to version 4.1.75.Final ## 0.24.2 - 2022-04-05 * PR #580: Fixed shaded artifacts version flattening, the version appears correctly in the released POM * PR #583: netty-tcnative is taken from the Netty BOM * PR #584: CVE-2020-36518 - Upgraded jackson ## 0.24.1 - 2022-03-29 * PR #576: Fixed error running on Datapoc clusters where conscrypt is disabled (the property`dataproc.conscrypt.provider.enable` set to `false`) ## 0.24.0 - 2022-03-23 * Issue #530: Treating Field.mode==null as Nullable * PR #518: Cache expiration time can be configured now. * PR #561: Added support for adding trace ID to the BigQuery reads and writes. The trace Id will be of the format `Spark:ApplicateName:JobID`. The application name must be set by the user, job ID is defaults to Dataproc job ID if exists, otherwise it is set to `spark.app.id`. * PR #563: Fixed a bug where using writeMethod=DIRECT and SaveMode=Append the destination table may have been deleted in case `abort()` has been called. * PR #568: Added support for BigQuery jobs labels * BigQuery API has been upgraded to version 2.9.4 * BigQuery Storage API has been upgraded to version 2.11.0 * gRPC has been upgraded to version 1.44.1 * Netty has been upgraded to version 4.1.73.Final ## 0.23.2 - 2022-01-19 * PR #521: Added Arrow compression options to the spark-bigquery-with-dependencies_2.* connectors * PR #526: Added the option to use parent project for the metadata/jobs API as well * BigQuery API has been upgraded to version 2.3.3 * BigQuery Storage API has been upgraded to version 2.4.2 * gRPC has been upgraded to version 1.42.1 * Netty has been upgraded to version 4.1.70.Final ## 0.23.1 - 2021-12-08 * Issue #501: Fixed using avro as an intermediate type for writing. ## 0.23.0 - 2021-12-06 * New connector: A Java only connector implementing the Spark 2.4 APIs * PR #469: Added support for the BigQuery Storage Write API, allowing faster writes (Spark 2.4 connector only) * Issue #481: Added configuration option to use compression from the READ API for Arrow * BigQuery API has been upgraded to version 2.1.8 * BigQuery Storage API has been upgraded to version 2.1.2 * gRPC has been upgraded to version 1.41.0 ## 0.22.2 - 2021-09-22 * Issue #446: BigNumeric values are properly written to BigQuery * Issue #452: Adding the option to clean BigQueryClient.destinationTableCache * BigQuery API has been upgraded to version 2.1.12 * BigQuery Storage API has been upgraded to version 2.3.1 * gRPC has been upgraded to version 1.40.0 ## 0.22.1 - 2021-09-08 * Issue #444: allowing unpartitioned clustered table ## 0.22.0 - 2021-06-22 * PR #404: Added support for BigNumeric * PR #430: Added HTTP and gRPC proxy support * Issue #273: Resolved the streaming write issue for spark 3.x ## 0.21.1 - 2021-06-22 * PR #413: Pushing all filters to BigQuery Storage API * Issue #412: Supporting WITH queries * Issue #409: Allowing all whitespaces after the select * PR #419: Fix a bug where background threads > 2 cases would miss pages (DSv2) * PR #416: Moved zstd-jni library to be provided in order to solve Spark 2.4 compatibility (DSv2) * PR #417: Added back column projection to DSv2 ## 0.21.0 - 2021-06-01 * Issue #354: users can query a view with different columns in select() and filter() * Issue #367: Struct column order is fixed * Issue #383: Fixed table metadata update when writing to a partitioned table * Issue #390: Allowing additional white-space types in the query * Issue #393: replacing avro.shaded dependency with guava * PR #360: Removed redundant `UNNEST` when compiling `IN` condition * BigQuery API has been upgraded to version 1.131.1 * BigQuery Storage API has been upgraded to version 1.22.0 * Guava has been upgraded to version 30.1.1-jre * gRPC has been upgraded to version 1.37.1 * Netty has been upgraded to version 4.1.65.Final ## 0.20.0 - 2021-03-29 * PR #375: Added support for pseudo column support - time partitioned table now supoort the _PARTITIONTIME and _PARTITIONDATE fields * Issue# 190: Writing data to BigQuery properly populate the field description * Issue #265: Fixed nested conjunctions/disjunctions when using the AVRO read format * Issue #326: Fixing netty_tcnative_windows.dll shading * Arrow has been upgraded to version 4.0.0 ## 0.19.1 - 2021-03-01 * PR #324 - Restoring version 0.18.1 dependencies due to networking issues * BigQuery API has been upgraded to version 1.123.2 * BigQuery Storage API has been upgraded to version 1.6.0 * Guava has been upgraded to version 30.0-jre * Netty has been upgraded to version 4.1.51.Final ## 0.19.0 - 2021-02-24 * Issue #247: Allowing to load results of any arbitrary SELECT query from BigQuery. * Issue #310: Allowing to configure the expiration time of materialized data. * PR #283: Implemented Datasource v2 write support. * Improved Spark 3 compatibility. * BigQuery API has been upgraded to version 1.127.4 * BigQuery Storage API has been upgraded to version 1.10.0 * Guava has been upgraded to version 30.1-jre * Netty has been upgraded to version 4.1.52.Final ## 0.18.1 - 2021-01-21 * Issue #248: Reducing the size of the URI list when writing to BigQuery. This allows larger DataFrames (>10,000 partitions) to be safely written. * Issue #296: Removed redundant packaged slf4j-api. * PR #276: Added the option to enable `useAvroLogicalTypes` option When writing data to BigQuery. ## 0.18.0 - 2020-11-12 * Issue #226: Adding support for HOUR, MONTH, DAY TimePartitions * Issue #260: Increasing connection timeout to the BigQuery service, and configuring the request retry settings. * Issue #263: Fixed `select *` error when ColumnarBatch is used (DataSource v2) * Issue #266: Fixed the external configuration not working regression bug (Introduced in version 0.17.2) * PR #262: Filters on BigQuery DATE and TIMESTAMP now use the right type. * BigQuery API has been upgraded to version 1.123.2 * BigQuery Storage API has been upgraded to version 1.6.0 * Guava has been upgraded to version 30.0-jre * Netty has been upgraded to version 4.1.51.Final * netty-tcnative has been upgraded to version 4.1.34.Final ## 0.17.3 - 2020-10-06 * PR #242, #243: Fixed Spark 3 compatibility, added Spark 3 acceptance test * Issue #249: Fixing credentials creation from key ## 0.17.2 - 2020-09-10 * PR #239: Ensuring that the BigQuery client will have the proper project id ## 0.17.1 - 2020-08-06 * Issue #216: removed redundant ALPN dependency * Issue #219: Fixed the LessThanOrEqual filter SQL compilation in the DataSource v2 implmentation * Issue #221: Fixed ProtobufUtilsTest.java with newer BigQuery dependencies * PR #229: Adding support for Spark ML Vector and Matrix data types * BigQuery API has been upgraded to version 1.116.8 * BigQuery Storage API has been upgraded to version 1.3.1 ## 0.17.0 - 2020-07-15 * PR #201: [Structured streaming write](http://spark.apache.org/docs/2.4.5/structured-streaming-programming-guide.html#starting-streaming-queries) is now supported (thanks @varundhussa) * PR #202: Users now has the option to keep the data on GCS after writing to BigQuery (thanks @leoneuwald) * PR #211: Enabling to overwrite data of a single date partition * PR #198: Supporting columnar batch reads from Spark in the DataSource V2 implementation. **It is not ready for production use.** * PR #192: Supporting `MATERIALIZED_VIEW` as table type * Issue #197: Conditions on StructType fields are now handled by Spark and not the connector * BigQuery API has been upgraded to version 1.116.3 * BigQuery Storage API has been upgraded to version 1.0.0 * Netty has been upgraded to version 4.1.48.Final (Fixing issue #200) ## 0.16.1 - 2020-06-11 * PR #186: Fixed SparkBigQueryConnectorUserAgentProvider initialization bug ## 0.16.0 - 2020-06-09 **Please don't use this version, use 0.16.1 instead** * PR #180: Apache Arrow is now the default read format. Based on our benchmarking, Arrow provides read performance faster by 40% then Avro. * PR #163: Apache Avro was added as a write intermediate format. It shows better performance over parquet in large (>50GB) datasets. The spark-avro package must be added in runtime in order to use this format. * PR #176: Usage simplification: Now instead of using the `table` mandatory option, user can use the built in `path` parameter of `load()` and `save()`, so that read becomes `df = spark.read.format("bigquery").load("source_table")` and write becomes `df.write.format("bigquery").save("target_table")` * An experimental implementation of the DataSource v2 API has been added. **It is not ready for production use.** * BigQuery API has been upgraded to version 1.116.1 * BigQuery Storage API has been upgraded to version 0.133.2-beta * gRPC has been upgraded to version 1.29.0 * Guava has been upgraded to version 29.0-jre ## 0.15.1-beta - 2020-04-27 * PR #158: Users can now add the `spark.datasource.bigquery` prefix to the configuration options in order to support Spark's `--conf` command line flag * PR #160: View materialization is performed only on action, fixing a bug where view materialization was done too early ## 0.15.0-beta - 2020-04-20 * PR #150: Reading `DataFrame`s should be quicker, especially in interactive usage such in notebooks * PR #154: Upgraded to the BigQuery Storage v1 API * PR #146: Authentication can be done using [AccessToken](https://cloud.google.com/sdk/gcloud/reference/auth/application-default/print-access-token) on top of Credentials file, Credentials, and the `GOOGLE_APPLICATION_CREDENTIALS` environment variable. ## 0.14.0-beta - 2020-03-31 * Issue #96: Added Arrow as a supported format for reading from BigQuery * Issue #130 Adding the field description to the schema metadata * Issue #124: Fixing null values in ArrayType * Issue #143: Allowing the setting of `SchemaUpdateOption`s When writing to BigQuery * PR #148: Add support for writing clustered tables * Upgrade version of google-cloud-bigquery library to 1.110.0 * Upgrade version of google-cloud-bigquerystorage library to 0.126.0-beta ## 0.13.1-beta - 2020-02-14 * The BigQuery Storage API was reverted to v1beta1. The v1beta2 API has not been fully integrated with custom IAM roles, which can cause issues to customers using those. The v1beta1 doesn't have this problem. Once the integration is complete, the API will be upgraded again. ## 0.13.0-beta - 2020-02-12 **Please don't use this version, use 0.13.1-beta instead** * Moved to use BigQuery Storage API v1beta2 * changed the `parallelism` parameter to `maxParallelism` in order to reflect the Change in the underlining API (the old parameter has been deprecated) * Upgrade version of google-cloud-bigquerystorage library to 0.122.0-beta. * Issue #73: Optimized empty projection used for count() execution. * Issue #121: Added the option to configure CreateDisposition when inserting data to BigQuery. ## 0.12.0-beta - 2020-01-29 * Issue #72: Moved the shaded jar name from classifier to a new artifact name * Issues #73, #87: Added better logging to help understand which columns and filters are asked by spark, and which are passed down to BigQuery * Issue #107: The connector will now alert when is is used with the wrong scala version ## 0.11.0-beta - 2019-12-18 * Upgrade version of google-cloud-bigquery library to 1.102.0 * Upgrade version of google-cloud-bigquerystorage library to 0.120.0-beta * Issue #6: Do not initialize bigquery options by default * Added ReadRows retries on GRPC internal errors * Issue #97: Added support for GEOGRAPHY type ## 0.10.0-beta - 2019-11-14 * Added preliminary support for reading from BigQuery views (Issue #21) * Writing to BigQuery now white-listing the intermediate files instead of black listing the _SUCCESS files (PR #75) * Added count() tip to the README ## 0.9.2-beta - 2019-11-11 * Upgrade version of google-cloud-bigquery library to 1.99.0 * Upgrade version of google-cloud-bigquerystorage library to 0.117.0-beta * Upgrade version of grpc-netty-shaded library to 1.24.1 * Supporting reading large rows (Issue #22, https://issuetracker.google.com/143730055) * Made sure that all filters are pushed down (Issue #74) * Fixing log severity * Added Java Example ## 0.9.1-beta - 2019-10-11 * A NPE in the shutdown hook has occurred in case the delete had succeeded in the first time. This had no impact on the actual logic, just on the log. The method now verifies the path exists before trying to delete it, and hides the redundant exception. * Added support for data.write.bigquery("table") implicit import, fixed regression caused by relying of shaded scalalogging ## 0.9.0-beta - 2019-10-08 * Added write support * Switch requested partitions from SparkContext.defaultParallelism to one partition per 400MB. This should work better with balanced sharding and dynamic allocation. * Cross built for both Scala 2.11 and 2.12 * Upgrade version of google-cloud-bigquery library to 1.96.0 * Upgrade version of google-cloud-bigquerystorage library to 0.114.0-beta * Upgrade version of grpc-netty-shaded library to 1.23.0 ## 0.8.1-beta - 2019-09-12 * Added a shaded version ## 0.8.0-beta - 2019-07-22 * Upgrade version of google-cloud-bigquery library to 1.82.0 * Upgrade version of google-cloud-bigquerystorage library to 0.98.0-beta * Upgrade version of grpc-netty-shaded library to 1.22.1 * Use balanced sharding strategy to assign roughly same number of rows to each read stream. * Update filtering support to reflect full set of filters supported by storage API (multi-clause predicates, pseudo-column variables, additional filter clauses - IsNull, IsNotNull, In, StringStartsWith, StringEndsWith, StringContains etc.) ## 0.7.0-beta - 2019-06-26 * Switch to using the BALANCED sharding strategy, which balances work between streams on the server-side, leading to a more uniform distribution of rows between partitions ## 0.6.0-beta - 2019-06-25 * Support specifying credentials through configurations ## 0.5.1-beta - 2019-04-26 * Support Numeric type * Refactor tests to manage test datasets ## 0.5.0-beta - 2019-03-06 * Initial release ================================================ FILE: CONTRIBUTING.md ================================================ # How to Contribute We'd love to accept your patches and contributions to this project. There are just a few small guidelines you need to follow. ## Contributor License Agreement Contributions to this project must be accompanied by a Contributor License Agreement. You (or your employer) retain the copyright to your contribution; this simply gives us permission to use and redistribute your contributions as part of the project. Head over to to see your current agreements on file or to sign a new one. You generally only need to submit a CLA once, so if you've already submitted one (even if it was for a different project), you probably don't need to do it again. ## Code reviews All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more information on using pull requests. ## Community Guidelines This project follows [Google's Open Source Community Guidelines](https://opensource.google.com/conduct/). ## Building and Testing the Connector The connector is built using the Maven wrapper. The project contains several connectors, sharing some of the code among them. The connectors are: * spark-bigquery_2.11 - a Scala 2.11 based connector, targeting Spark 2.3 and 2.4 using Scala 2.11. * spark-bigquery_2.12 - a Scala 2.12 based connector, targeting Spark 2.4 and 3.x using Scala 2.12. * spark-2.4-bigquery - a Java only connector, targeting Spark 2.4 (of all Scala versions), using the new DataSource APIs. * spark-3.1-bigquery - a Java only connector, targeting Spark 3.1 (of all Scala versions), using the new DataSource APIs. Still under development. The project's artifacts are: * `spark-bigquery-parent` - The parent POM for all artifacts. Common settings and artifact version should be defined here. * `bigquery-connector-common` - Utility classes for working with the BigQuery APIs. This artifact has no dependency on Spark. This artifact can potentially be used by non-spark connectors * `spark-bigquery-connector-common`- Common utilites and logic shared among all connectors (Scala and Java alike). Whenever possible, new code should be in this artifact * `spark-bigquery-dsv1/spark-bigquery-dsv1-parent` - Common settings for the Scala based DataSource V1 implementation. * `spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support` - As some of the APIs used by the connector have changed between Spark 2.x and 3.x, they are wrapped in a neutral interface with wrappers for the two implementations. Unlike the other dsv1 artifacts, this project depends on Spark 3 for this reason. * `spark-bigquery-dsv1/spark-bigquery_2.11` and `spark-bigquery-dsv1/spark-bigquery_2.12` - The implementation of the Scala based connectors. Both connectors share the same code via a symbolic link, so a change in one of them will automatically affect the other. * `spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent` - Common settings for the shaded artifacts. * `spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11` and `spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12` - The shaded distributable of the connector, containing all the dependencies. * `spark-bigquery-dsv2/spark-bigquery-dsv2-parent` - Common settings for the Java only DataSource V2 implementations. * `spark-bigquery-dsv2/spark-2.4-bigquery` - A Java only DataSource V2 connector implementing the Spark 2.4 APIs. * `spark-bigquery-dsv2/spark-3.1-bigquery` - A Java only DataSource V2 connector implementing the Spark 3.1 APIs. Under development. * `spark-bigquery-python-lib` - The python support library, adding BigQuery types not supported by Spark. As building and running all the connectors is a lengthy process, the project is split into several [profiles](https://maven.apache.org/guides/introduction/introduction-to-profiles.html), each building only a subset of the project's artifacts. The profiles are: * `dsv1` - Running both Scala/DSv1 connectors. * `dsv1_2.11` - Running just the Scala 2.11 connector. * `dsv1_2.12` - Running just the Scala 2.12 connector. * `dsv2` - Running both Java/DSv2 connectors. * `dsv2_2.4` - Running just the Java Spark 2.4 connector. * `dsv2_3.1` - Running just the Java Spark 3.1 connector. * `all` - Running all the connectors. Example: In order to compile **just** the Scala 2.12 connector run `./mvnw install -Pdsv1_2.12`. **Note**: Need java 1.8 and make sure **/usr/libexec/java_home** set to java 1.8 before building any module. **Important**: If no profile is selected, then only the common artifacts are run. The integration and acceptance tests are disabled by default. In order to run it please add the following profiles to the run: * Integration tests - `./mvnw failsafe:integration-test -Pdsv1_2.11,integration` * Acceptance tests - `./mvnw verify -Pdsv2_2.4,acceptance` In order to run the integration tests make sure that your GCP user has the proper accounts for creating and deleting datasets and tables in your test project in BigQuery. It will also need the permissions to upload files to the test bucket in GCS as well as delete them. Setting the following environment variables is required to run the integration tests: * `GOOGLE_APPLICATION_CREDENTIALS` - the full path to a credentials JSON, either a service account or the result of a `gcloud auth login` run * `GOOGLE_CLOUD_PROJECT` - The Google cloud platform project used to test the connector * `TEMPORARY_GCS_BUCKET` - The GCS bucked used to test writing to BigQuery during the integration tests * `ACCEPTANCE_TEST_BUCKET` - The GCS bucked used to test writing to BigQuery during the acceptance tests * `SERVERLESS_NETWORK_URI` - The network used by the serverless batches during the acceptance tests * `BIGLAKE_CONNECTION_ID` - The connection ID to create a BigLake table using a Cloud Resource connection ================================================ 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-template.md ================================================ # Apache Spark SQL connector for Google BigQuery The connector supports reading [Google BigQuery](https://cloud.google.com/bigquery/) tables into Spark's DataFrames, and writing DataFrames back into BigQuery. This is done by using the [Spark SQL Data Source API](https://spark.apache.org/docs/latest/sql-programming-guide.html#data-sources) to communicate with BigQuery. ## Unreleased Changes This Readme may include documentation for changes that haven't been released yet. The latest release's documentation and source code are found here. https://github.com/GoogleCloudDataproc/spark-bigquery-connector/blob/master/README.md ## BigQuery Storage API The [Storage API](https://cloud.google.com/bigquery/docs/reference/storage) streams data in parallel directly from BigQuery via gRPC without using Google Cloud Storage as an intermediary. It has a number of advantages over using the previous export-based read flow that should generally lead to better read performance: ### Direct Streaming It does not leave any temporary files in Google Cloud Storage. Rows are read directly from BigQuery servers using the Arrow or Avro wire formats. ### Filtering The new API allows column and predicate filtering to only read the data you are interested in. #### Column Filtering Since BigQuery is [backed by a columnar datastore](https://cloud.google.com/blog/big-data/2016/04/inside-capacitor-bigquerys-next-generation-columnar-storage-format), it can efficiently stream data without reading all columns. #### Predicate Filtering The Storage API supports arbitrary pushdown of predicate filters. Connector version 0.8.0-beta and above support pushdown of arbitrary filters to Bigquery. There is a known issue in Spark that does not allow pushdown of filters on nested fields. For example - filters like `address.city = "Sunnyvale"` will not get pushdown to Bigquery. ### Dynamic Sharding The API rebalances records between readers until they all complete. This means that all Map phases will finish nearly concurrently. See this blog article on [how dynamic sharding is similarly used in Google Cloud Dataflow](https://cloud.google.com/blog/products/gcp/no-shard-left-behind-dynamic-work-rebalancing-in-google-cloud-dataflow). See [Configuring Partitioning](#configuring-partitioning) for more details. ## Requirements ### Enable the BigQuery Storage API Follow [these instructions](https://cloud.google.com/bigquery/docs/reference/storage/#enabling_the_api). ### Create a Google Cloud Dataproc cluster (Optional) If you do not have an Apache Spark environment you can create a Cloud Dataproc cluster with pre-configured auth. The following examples assume you are using Cloud Dataproc, but you can use `spark-submit` on any cluster. Any Dataproc cluster using the API needs the 'bigquery' or 'cloud-platform' scopes. Dataproc clusters have the 'bigquery' scope by default, so most clusters in enabled projects should work by default e.g. ``` MY_CLUSTER=... gcloud dataproc clusters create "$MY_CLUSTER" ``` ## Downloading and Using the Connector The latest version of the connector is publicly available in the following links: | version | Link | |------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | Spark 4.1 | `gs://spark-lib/bigquery/spark-4.1-bigquery-${next-release-tag}-preview.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-4.1-bigquery-${next-release-tag}-preview.jar)) | | Spark 4.0 | `gs://spark-lib/bigquery/spark-4.0-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-4.0-bigquery-${next-release-tag}.jar)) | | Spark 3.5 | `gs://spark-lib/bigquery/spark-3.5-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.5-bigquery-${next-release-tag}.jar)) | | Spark 3.4 | `gs://spark-lib/bigquery/spark-3.4-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.4-bigquery-${next-release-tag}.jar)) | | Spark 3.3 | `gs://spark-lib/bigquery/spark-3.3-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.3-bigquery-${next-release-tag}.jar)) | | Spark 3.2 | `gs://spark-lib/bigquery/spark-3.2-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.2-bigquery-${next-release-tag}.jar)) | | Spark 3.1 | `gs://spark-lib/bigquery/spark-3.1-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.1-bigquery-${next-release-tag}.jar)) | | Spark 2.4 | `gs://spark-lib/bigquery/spark-2.4-bigquery-0.37.0.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-2.4-bigquery-0.37.0.jar)) | | Scala 2.13 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.13-${next-release-tag}.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.13-${next-release-tag}.jar)) | | Scala 2.12 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-${next-release-tag}.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-${next-release-tag}.jar)) | | Scala 2.11 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar)) | The first six versions are Java based connectors targeting Spark 2.4/3.1/3.2/3.3/3.4/3.5 of all Scala versions built on the new Data Source APIs (Data Source API v2) of Spark. The final two connectors are Scala based connectors, please use the jar relevant to your Spark installation as outlined below. ### Connector to Spark Compatibility Matrix | Connector \ Spark | 2.3 | 2.4 | 3.0 | 3.1 | 3.2 | 3.3 |3.4 | 3.5 | |---------------------------------------|---------|---------|---------|---------|---------|---------|---------|---------| | spark-3.5-bigquery | | | | | | | | ✓ | | spark-3.4-bigquery | | | | | | | ✓ | ✓ | | spark-3.3-bigquery | | | | | | ✓ | ✓ | ✓ | | spark-3.2-bigquery | | | | | ✓ | ✓ | ✓ | ✓ | | spark-3.1-bigquery | | | | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-2.4-bigquery | | ✓ | | | | | | | | spark-bigquery-with-dependencies_2.13 | | | | | ✓ | ✓ | ✓ | ✓ | | spark-bigquery-with-dependencies_2.12 | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-bigquery-with-dependencies_2.11 | ✓ | ✓ | | | | | | | ### Connector to Dataproc Image Compatibility Matrix | Connector \ Dataproc Image | 1.3 | 1.4 | 1.5 | 2.0 | 2.1 | 2.2 | Serverless
Image 1.0 | Serverless
Image 2.0 | Serverless
Image 2.1 | Serverless
Image 2.2 | |---------------------------------------|---------|---------|---------|---------|---------|---------|-------------------------|-------------------------|-------------------------|-------------------------| | spark-3.5-bigquery | | | | | | ✓ | | | | ✓ | | spark-3.4-bigquery | | | | | | ✓ | | | ✓ | ✓ | | spark-3.3-bigquery | | | | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-3.2-bigquery | | | | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-3.1-bigquery | | | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-2.4-bigquery | | ✓ | ✓ | | | | | | | | | spark-bigquery-with-dependencies_2.13 | | | | | | | | ✓ | ✓ | ✓ | | spark-bigquery-with-dependencies_2.12 | | | ✓ | ✓ | ✓ | ✓ | ✓ | | | | | spark-bigquery-with-dependencies_2.11 | ✓ | ✓ | | | | | | | | | ### Maven / Ivy Package Usage The connector is also available from the [Maven Central](https://repo1.maven.org/maven2/com/google/cloud/spark/) repository. It can be used using the `--packages` option or the `spark.jars.packages` configuration property. Use the following value | version | Connector Artifact | |------------|------------------------------------------------------------------------------------| | Spark 4.1 | `com.google.cloud.spark:spark-4.1-bigquery:${next-release-tag}-preview` | | Spark 4.0 | `com.google.cloud.spark:spark-4.0-bigquery:${next-release-tag}` | | Spark 3.5 | `com.google.cloud.spark:spark-3.5-bigquery:${next-release-tag}` | | Spark 3.4 | `com.google.cloud.spark:spark-3.4-bigquery:${next-release-tag}` | | Spark 3.3 | `com.google.cloud.spark:spark-3.3-bigquery:${next-release-tag}` | | Spark 3.2 | `com.google.cloud.spark:spark-3.2-bigquery:${next-release-tag}` | | Spark 3.1 | `com.google.cloud.spark:spark-3.1-bigquery:${next-release-tag}` | | Spark 2.4 | `com.google.cloud.spark:spark-2.4-bigquery:0.37.0` | | Scala 2.13 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.13:${next-release-tag}` | | Scala 2.12 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:${next-release-tag}` | | Scala 2.11 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.11:0.29.0` | ### Specifying the Spark BigQuery connector version in a Dataproc cluster Dataproc clusters created using image 2.1 and above, or batches using the Dataproc serverless service come with built-in Spark BigQuery connector. Using the standard `--jars` or `--packages` (or alternatively, the `spark.jars`/`spark.jars.packages` configuration) won't help in this case as the built-in connector takes precedence. To use another version than the built-in one, please do one of the following: * For Dataproc clusters, using image 2.1 and above, add the following flag on cluster creation to upgrade the version `--metadata SPARK_BQ_CONNECTOR_VERSION=${next-release-tag}`, or `--metadata SPARK_BQ_CONNECTOR_URL=gs://spark-lib/bigquery/spark-3.3-bigquery-${next-release-tag}.jar` to create the cluster with a different jar. The URL can point to any valid connector JAR for the cluster's Spark version. * For Dataproc serverless batches, add the following property on batch creation to upgrade the version: `--properties dataproc.sparkBqConnector.version=${next-release-tag}`, or `--properties dataproc.sparkBqConnector.uri=gs://spark-lib/bigquery/spark-3.3-bigquery-${next-release-tag}.jar` to create the batch with a different jar. The URL can point to any valid connector JAR for the runtime's Spark version. ## Hello World Example You can run a simple PySpark wordcount against the API without compilation by running **Dataproc image 1.5 and above** ``` gcloud dataproc jobs submit pyspark --cluster "$MY_CLUSTER" \ --jars gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-${next-release-tag}.jar \ examples/python/shakespeare.py ``` **Dataproc image 1.4 and below** ``` gcloud dataproc jobs submit pyspark --cluster "$MY_CLUSTER" \ --jars gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar \ examples/python/shakespeare.py ``` ## Example Codelab ## https://codelabs.developers.google.com/codelabs/pyspark-bigquery ## Usage The connector uses the cross language [Spark SQL Data Source API](https://spark.apache.org/docs/latest/sql-programming-guide.html#data-sources): ### Reading data from a BigQuery table ``` df = spark.read \ .format("bigquery") \ .load("bigquery-public-data.samples.shakespeare") ``` or the Scala only implicit API: ``` import com.google.cloud.spark.bigquery._ val df = spark.read.bigquery("bigquery-public-data.samples.shakespeare") ``` The connector supports reading from tables that contain spaces in their names. **Note on ambiguous table names**: If a table name contains both spaces and a SQL keyword (e.g., "from", "where", "join"), it may be misinterpreted as a SQL query. To resolve this ambiguity, quote the table identifier with backticks \`. For example: ``` df = spark.read \ .format("bigquery") \ .load("`my_project.my_dataset.orders from 2023`") ``` For more information, see additional code samples in [Python](examples/python/shakespeare.py), [Scala](spark-bigquery-dsv1/src/main/scala/com/google/cloud/spark/bigquery/examples/Shakespeare.scala) and [Java](spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/examples/JavaShakespeare.java). ### Reading data from a BigQuery query The connector allows you to run any [Standard SQL](https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax) SELECT query on BigQuery and fetch its results directly to a Spark Dataframe. This is easily done as described in the following code sample: ``` spark.conf.set("viewsEnabled","true") sql = """ SELECT tag, COUNT(*) c FROM ( SELECT SPLIT(tags, '|') tags FROM `bigquery-public-data.stackoverflow.posts_questions` a WHERE EXTRACT(YEAR FROM creation_date)>=2014 ), UNNEST(tags) tag GROUP BY 1 ORDER BY 2 DESC LIMIT 10 """ df = spark.read.format("bigquery").load(sql) df.show() ``` Which yields the result ``` +----------+-------+ | tag| c| +----------+-------+ |javascript|1643617| | python|1352904| | java|1218220| | android| 913638| | php| 911806| | c#| 905331| | html| 769499| | jquery| 608071| | css| 510343| | c++| 458938| +----------+-------+ ``` A second option is to use the `query` option like this: ``` df = spark.read.format("bigquery").option("query", sql).load() ``` Notice that the execution should be faster as only the result is transmitted over the wire. In a similar fashion the queries can include JOINs more efficiently then running joins on Spark or use other BigQuery features such as [subqueries](https://cloud.google.com/bigquery/docs/reference/standard-sql/subqueries), [BigQuery user defined functions](https://cloud.google.com/bigquery/docs/reference/standard-sql/user-defined-functions), [wildcard tables](https://cloud.google.com/bigquery/docs/reference/standard-sql/wildcard-table-reference), [BigQuery ML](https://cloud.google.com/bigquery-ml/docs) and more. In order to use this feature the `viewsEnabled` configurations MUST be set to `true`. This can also be done globally as shown in the example above. **Important:** This feature is implemented by running the query on BigQuery and saving the result into a temporary table, of which Spark will read the results from. This may add additional costs on your BigQuery account. ### Reading From Parameterized Queries The connector supports executing [BigQuery parameterized queries](https://cloud.google.com/bigquery/docs/parameterized-queries) using the standard `spark.read.format('bigquery')` API. To use parameterized queries: 1. Provide the SQL query containing parameters using the `.option("query", "SQL_STRING")` with named (`@param`) or positional (`?`) parameters. 2. Specify the parameter values using dedicated options: * **Named Parameters:** Use options prefixed with `NamedParameters.`. The parameter name follows the prefix (case-insensitive). * Format: `.option("NamedParameters.", "TYPE:value")` * Example: `.option("NamedParameters.corpus", "STRING:romeoandjuliet")` * **Positional Parameters:** Use options prefixed with `PositionalParameters.`. The 1-based index follows the prefix. * Format: `.option("PositionalParameters.", "TYPE:value")` * Example: `.option("PositionalParameters.1", "STRING:romeoandjuliet")` The `TYPE` in the `TYPE:value` string specifies the BigQuery Standard SQL data type. Supported types currently include: `BOOL`, `INT64`, `FLOAT64`, `NUMERIC`, `STRING`, `DATE`, `DATETIME`, `JSON`, `TIME`, `GEOGRAPHY`, `TIMESTAMP`. `ARRAY` and `STRUCT` types are not supported as parameters at this time. ### Reading From Views The connector has a preliminary support for reading from [BigQuery views](https://cloud.google.com/bigquery/docs/views-intro). Please note there are a few caveats: * BigQuery views are not materialized by default, which means that the connector needs to materialize them before it can read them. This process affects the read performance, even before running any `collect()` or `count()` action. * The materialization process can also incur additional costs to your BigQuery bill. * Reading from views is **disabled** by default. In order to enable it, either set the viewsEnabled option when reading the specific view (`.option("viewsEnabled", "true")`) or set it globally by calling `spark.conf.set("viewsEnabled", "true")`. **Notice:** Before version 0.42.1 of the connector, the following configurations are required: * By default, the materialized views are created in the same project and dataset. Those can be configured by the optional `materializationProject` and `materializationDataset` options, respectively. These options can also be globally set by calling `spark.conf.set(...)` before reading the views. * As mentioned in the [BigQuery documentation](https://cloud.google.com/bigquery/docs/writing-results#temporary_and_permanent_tables), the `materializationDataset` should be in same location as the view. Starting version 0.42.1 those configurations are **redundant** and are ignored. It is highly recommended to upgrade to this version or a later one to enjoy simpler configuration when using views or loading from queries. ### Writing data to BigQuery Writing DataFrames to BigQuery can be done using two methods: Direct and Indirect. #### Direct write using the BigQuery Storage Write API In this method the data is written directly to BigQuery using the [BigQuery Storage Write API](https://cloud.google.com/bigquery/docs/write-api). In order to enable this option, please set the `writeMethod` option to `direct`, as shown below: ``` df.write \ .format("bigquery") \ .option("writeMethod", "direct") \ .option("writeAtLeastOnce", "true") .save("dataset.table") ``` Writing to existing partitioned tables (date partitioned, ingestion time partitioned and range partitioned) in APPEND save mode and OVERWRITE mode (only date and range partitioned) is fully supported by the connector and the BigQuery Storage Write API. The use of `datePartition`, `partitionField`, `partitionType`, `partitionRangeStart`, `partitionRangeEnd`, `partitionRangeInterval` described below is not supported at this moment by the direct write method. **Important:** Please refer to the [data ingestion pricing](https://cloud.google.com/bigquery/pricing#data_ingestion_pricing) page regarding the BigQuery Storage Write API pricing. **Important:** Please use version 0.24.2 and above for direct writes, as previous versions have a bug that may cause a table deletion in certain cases. #### Indirect write In this method the data is written first to GCS, and then it is loaded it to BigQuery. A GCS bucket must be configured to indicate the temporary data location. ``` df.write \ .format("bigquery") \ .option("temporaryGcsBucket","some-bucket") \ .save("dataset.table") ``` The data is temporarily stored using the [Apache Parquet](https://parquet.apache.org/), [Apache ORC](https://orc.apache.org/) or [Apache Avro](https://avro.apache.org/) formats. The GCS bucket and the format can also be set globally using Spark's RuntimeConfig like this: ``` spark.conf.set("temporaryGcsBucket","some-bucket") df.write \ .format("bigquery") \ .save("dataset.table") ``` When streaming a DataFrame to BigQuery, each batch is written in the same manner as a non-streaming DataFrame. Note that a HDFS compatible [checkpoint location](http://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#recovering-from-failures-with-checkpointing) (eg: `path/to/HDFS/dir` or `gs://checkpoint-bucket/checkpointDir`) must be specified. ``` df.writeStream \ .format("bigquery") \ .option("temporaryGcsBucket","some-bucket") \ .option("checkpointLocation", "some-location") \ .option("table", "dataset.table") ``` **Important:** The connector does not configure the GCS connector, in order to avoid conflict with another GCS connector, if exists. In order to use the write capabilities of the connector, please configure the GCS connector on your cluster as explained [here](https://github.com/GoogleCloudPlatform/bigdata-interop/tree/master/gcs). #### Schema Behavior on Overwrite When using `SaveMode.Overwrite` (`.mode("overwrite")`), the connector **preserves the existing table's schema**. The data is truncated, but column types, descriptions, and policy tags are retained. ``` df.write \ .format("bigquery") \ .mode("overwrite") \ .option("temporaryGcsBucket","some-bucket") \ .save("dataset.table") ``` **Important:** If your DataFrame has a different schema than the existing table (e.g., changing a column from `INTEGER` to `DOUBLE`), the write will fail with a type mismatch error. To change the schema, either: - Drop the table before overwriting - Use BigQuery DDL to alter the table schema first For some of the schema difference, the following options can work with overwrite: Programmatic Relaxation: Set `.option("allowFieldRelaxation", "true")` for nullability changes and `.option("allowFieldAddition", "true")` for new columns. This behavior was introduced between version 0.22.0 and 0.41.0 to prevent accidental schema drift. **Note:** This behavior applies to both the `indirect` (default) and `direct` write methods. ### Running SQL on BigQuery The connector supports Spark's [SparkSession#executeCommand](https://archive.apache.org/dist/spark/docs/3.0.0/api/java/org/apache/spark/sql/SparkSession.html#executeCommand-java.lang.String-java.lang.String-scala.collection.immutable.Map-) with the Spark-X.Y-bigquery connectors. It can be used to run any arbitrary DDL/DML StandardSQL statement on BigQuery as a query job. `SELECT` statements are not supported, as those are supported by reading from query as shown above. It can be used as follows: ``` spark.executeCommand("bigquery", sql, options) ``` Notice the following: * Notice that apart from the authentication options no other options are supported by this functionality. * This API is available only in the Scala/Java API. PySpark does not provide it. ### Properties The API Supports a number of options to configure the read
Property Meaning Usage
table The BigQuery table in the format [[project:]dataset.]table. It is recommended to use the path parameter of load()/save() instead. This option has been deprecated and will be removed in a future version.
(Deprecated)
Read/Write
dataset The dataset containing the table. This option should be used with standard table and views, but not when loading query results.
(Optional unless omitted in table)
Read/Write
project The Google Cloud Project ID of the table. This option should be used with standard table and views, but not when loading query results.
(Optional. Defaults to the project of the Service Account being used)
Read/Write
billingProject The Google Cloud Project ID to use for billing (API calls, query execution).
(Optional. Defaults to the project of the Service Account being used)
Read/Write
parentProject (Deprecated) Alias for billingProject.
(Optional. Defaults to the project of the Service Account being used)
Read/Write
location The BigQuery location where the data resides (e.g. US, EU, asia-northeast1).
(Optional. Defaults to BigQuery default)
Read/Write
maxParallelism The maximal number of partitions to split the data into. Actual number may be less if BigQuery deems the data small enough. If there are not enough executors to schedule a reader per partition, some partitions may be empty.
Important: The old parameter (parallelism) is still supported but in deprecated mode. It will ve removed in version 1.0 of the connector.
(Optional. Defaults to the larger of the preferredMinParallelism and 20,000).)
Read
preferredMinParallelism The preferred minimal number of partitions to split the data into. Actual number may be less if BigQuery deems the data small enough. If there are not enough executors to schedule a reader per partition, some partitions may be empty.
(Optional. Defaults to the smallest of 3 times the application's default parallelism and maxParallelism.)
Read
viewsEnabled Enables the connector to read from views and not only tables. Please read the relevant section before activating this option.
(Optional. Defaults to false)
Read
readDataFormat Data Format for reading from BigQuery. Options : ARROW, AVRO
(Optional. Defaults to ARROW)
Read
optimizedEmptyProjection The connector uses an optimized empty projection (select without any columns) logic, used for count() execution. This logic takes the data directly from the table metadata or performs a much efficient `SELECT COUNT(*) WHERE...` in case there is a filter. You can cancel the use of this logic by setting this option to false.
(Optional, defaults to true)
Read
pushAllFilters If set to true, the connector pushes all the filters Spark can delegate to BigQuery Storage API. This reduces amount of data that needs to be sent from BigQuery Storage API servers to Spark clients. This option has been deprecated and will be removed in a future version.
(Optional, defaults to true)
(Deprecated)
Read
bigQueryJobLabel Can be used to add labels to the connector initiated query and load BigQuery jobs. Multiple labels can be set.
(Optional)
Read
bigQueryTableLabel Can be used to add labels to the table while writing to a table. Multiple labels can be set.
(Optional)
Write
traceApplicationName Application name used to trace BigQuery Storage read and write sessions. Setting the application name is required to set the trace ID on the sessions.
(Optional)
Read
traceJobId Job ID used to trace BigQuery Storage read and write sessions.
(Optional, defaults to the Dataproc job ID is exists, otherwise uses the Spark application ID)
Read
createDisposition Specifies whether the job is allowed to create new tables. The permitted values are:
  • CREATE_IF_NEEDED - Configures the job to create the table if it does not exist.
  • CREATE_NEVER - Configures the job to fail if the table does not exist.
This option takes place only in case Spark has decided to write data to the table based on the SaveMode.
(Optional. Default to CREATE_IF_NEEDED).
Write
writeMethod Controls the method in which the data is written to BigQuery. Available values are direct to use the BigQuery Storage Write API and indirect which writes the data first to GCS and then triggers a BigQuery load operation. See more here
(Optional, defaults to indirect)
Write
writeAtLeastOnce Guarantees that data is written to BigQuery at least once. This is a lesser guarantee than exactly once. This is suitable for streaming scenarios in which data is continuously being written in small batches.
(Optional. Defaults to false)
Supported only by the `DIRECT` write method and mode is NOT `Overwrite`.
Write
temporaryGcsBucket The GCS bucket that temporarily holds the data before it is loaded to BigQuery. Required unless set in the Spark configuration (spark.conf.set(...)).
Defaults to the `fs.gs.system.bucket` if exists, for example on Google Cloud Dataproc clusters, starting version 0.42.0.
Supported only by the `INDIRECT` write method.
Write
persistentGcsBucket The GCS bucket that holds the data before it is loaded to BigQuery. If informed, the data won't be deleted after write data into BigQuery.
Supported only by the `INDIRECT` write method.
Write
persistentGcsPath The GCS path that holds the data before it is loaded to BigQuery. Used only with persistentGcsBucket.
Not supported by the `DIRECT` write method.
Write
intermediateFormat The format of the data before it is loaded to BigQuery, values can be either "parquet","orc" or "avro". In order to use the Avro format, the spark-avro package must be added in runtime.
(Optional. Defaults to parquet). On write only. Supported only for the `INDIRECT` write method.
Write
useAvroLogicalTypes When loading from Avro (`.option("intermediateFormat", "avro")`), BigQuery uses the underlying Avro types instead of the logical types [by default](https://cloud.google.com/bigquery/docs/loading-data-cloud-storage-avro#logical_types). Supplying this option converts Avro logical types to their corresponding BigQuery data types.
(Optional. Defaults to false). On write only.
Write
datePartition The date partition the data is going to be written to. Should be a date string given in the format YYYYMMDD. Can be used to overwrite the data of a single partition, like this:
df.write.format("bigquery")
  .option("datePartition", "20220331")
  .mode("overwrite")
  .save("table")

(Optional). On write only.
Can also be used with different partition types like:
HOUR: YYYYMMDDHH
MONTH: YYYYMM
YEAR: YYYY
Not supported by the `DIRECT` write method.
Write
partitionField If this field is specified, the table is partitioned by this field.
For Time partitioning, specify together with the option `partitionType`.
For Integer-range partitioning, specify together with the 3 options: `partitionRangeStart`, `partitionRangeEnd, `partitionRangeInterval`.
The field must be a top-level TIMESTAMP or DATE field for Time partitioning, or INT64 for Integer-range partitioning. Its mode must be NULLABLE or REQUIRED. If the option is not set for a Time partitioned table, then the table will be partitioned by pseudo column, referenced via either'_PARTITIONTIME' as TIMESTAMP type, or '_PARTITIONDATE' as DATE type.
(Optional).
Not supported by the `DIRECT` write method.
Write
partitionExpirationMs Number of milliseconds for which to keep the storage for partitions in the table. The storage in a partition will have an expiration time of its partition time plus this value.
(Optional).
Not supported by the `DIRECT` write method.
Write
partitionType Used to specify Time partitioning.
Supported types are: HOUR, DAY, MONTH, YEAR
This option is mandatory for a target table to be Time partitioned.
(Optional. Defaults to DAY if PartitionField is specified).
Not supported by the `DIRECT` write method.
Write
partitionRangeStart, partitionRangeEnd, partitionRangeInterval Used to specify Integer-range partitioning.
These options are mandatory for a target table to be Integer-range partitioned.
All 3 options must be specified.
Not supported by the `DIRECT` write method.
Write
clusteredFields A string of non-repeated, top level columns seperated by comma.
(Optional).
Write
allowFieldAddition Adds the ALLOW_FIELD_ADDITION SchemaUpdateOption to the BigQuery LoadJob. Allowed values are true and false.
(Optional. Default to false).
Supported only by the `INDIRECT` write method.
Write
allowFieldRelaxation Adds the ALLOW_FIELD_RELAXATION SchemaUpdateOption to the BigQuery LoadJob. Allowed values are true and false.
(Optional. Default to false).
Supported only by the `INDIRECT` write method.
Write
proxyAddress Address of the proxy server. The proxy must be a HTTP proxy and address should be in the `host:port` format. Can be alternatively set in the Spark configuration (spark.conf.set(...)) or in Hadoop Configuration (fs.gs.proxy.address).
(Optional. Required only if connecting to GCP via proxy.)
Read/Write
proxyUsername The userName used to connect to the proxy. Can be alternatively set in the Spark configuration (spark.conf.set(...)) or in Hadoop Configuration (fs.gs.proxy.username).
(Optional. Required only if connecting to GCP via proxy with authentication.)
Read/Write
proxyPassword The password used to connect to the proxy. Can be alternatively set in the Spark configuration (spark.conf.set(...)) or in Hadoop Configuration (fs.gs.proxy.password).
(Optional. Required only if connecting to GCP via proxy with authentication.)
Read/Write
httpMaxRetry The maximum number of retries for the low-level HTTP requests to BigQuery. Can be alternatively set in the Spark configuration (spark.conf.set("httpMaxRetry", ...)) or in Hadoop Configuration (fs.gs.http.max.retry).
(Optional. Default is 10)
Read/Write
httpConnectTimeout The timeout in milliseconds to establish a connection with BigQuery. Can be alternatively set in the Spark configuration (spark.conf.set("httpConnectTimeout", ...)) or in Hadoop Configuration (fs.gs.http.connect-timeout).
(Optional. Default is 60000 ms. 0 for an infinite timeout, a negative number for 20000)
Read/Write
httpReadTimeout The timeout in milliseconds to read data from an established connection. Can be alternatively set in the Spark configuration (spark.conf.set("httpReadTimeout", ...)) or in Hadoop Configuration (fs.gs.http.read-timeout).
(Optional. Default is 60000 ms. 0 for an infinite timeout, a negative number for 20000)
Read
arrowCompressionCodec Compression codec while reading from a BigQuery table when using Arrow format. Options : ZSTD (Zstandard compression), LZ4_FRAME (https://github.com/lz4/lz4/blob/dev/doc/lz4_Frame_format.md), COMPRESSION_UNSPECIFIED. The recommended compression codec is ZSTD while using Java.
(Optional. Defaults to COMPRESSION_UNSPECIFIED which means no compression will be used)
Read
responseCompressionCodec Compression codec used to compress the ReadRowsResponse data. Options: RESPONSE_COMPRESSION_CODEC_UNSPECIFIED, RESPONSE_COMPRESSION_CODEC_LZ4
(Optional. Defaults to RESPONSE_COMPRESSION_CODEC_UNSPECIFIED which means no compression will be used)
Read
cacheExpirationTimeInMinutes The expiration time of the in-memory cache storing query information.
To disable caching, set the value to 0.
(Optional. Defaults to 15 minutes)
Read
enableModeCheckForSchemaFields Checks the mode of every field in destination schema to be equal to the mode in corresponding source field schema, during DIRECT write.
Default value is true i.e., the check is done by default. If set to false the mode check is ignored.
Write
enableListInference Indicates whether to use schema inference specifically when the mode is Parquet (https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#parquetoptions).
Defaults to false.
Write
bqChannelPoolSize The (fixed) size of the gRPC channel pool created by the BigQueryReadClient.
For optimal performance, this should be set to at least the number of cores on the cluster executors.
Read
createReadSessionTimeoutInSeconds The timeout in seconds to create a ReadSession when reading a table.
For Extremely large table this value should be increased.
(Optional. Defaults to 600 seconds)
Read
queryJobPriority Priority levels set for the job while reading data from BigQuery query. The permitted values are:
  • BATCH - Query is queued and started as soon as idle resources are available, usually within a few minutes. If the query hasn't started within 3 hours, its priority is changed to INTERACTIVE.
  • INTERACTIVE - Query is executed as soon as possible and count towards the concurrent rate limit and the daily rate limit.
For WRITE, this option will be effective when DIRECT write is used with OVERWRITE mode, where the connector overwrites the destination table using MERGE statement.
(Optional. Defaults to INTERACTIVE)
Read/Write
destinationTableKmsKeyName Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key. for further Information about using CMEK with BigQuery see [here](https://cloud.google.com/bigquery/docs/customer-managed-encryption#key_resource_id).
Notice: The table will be encrypted by the key only if it created by the connector. A pre-existing unencrypted table won't be encrypted just by setting this option.
(Optional)
Write
allowMapTypeConversion Boolean config to disable conversion from BigQuery records to Spark MapType when the record has two subfields with field names as key and value. Default value is true which allows the conversion.
(Optional)
Read
spark.sql.sources.partitionOverwriteMode Config to specify the overwrite mode on write when the table is range/time partitioned. Currently supportd two modes : STATIC and DYNAMIC. In STATIC mode, the entire table is overwritten. In DYNAMIC mode, the data is overwritten by partitions of the existing table. The default value is STATIC.
(Optional)
Write
enableReadSessionCaching Boolean config to disable read session caching. Caches BigQuery read sessions to allow for faster Spark query planning. Default value is true.
(Optional)
Read
readSessionCacheDurationMins Config to set the read session caching duration in minutes. Only works if enableReadSessionCaching is true (default). Allows specifying the duration to cache read sessions for. Maximum allowed value is 300. Default value is 5.
(Optional)
Read
bigQueryJobTimeoutInMinutes Config to set the BigQuery job timeout in minutes. Default value is 360 minutes.
(Optional)
Read/Write
snapshotTimeMillis A timestamp specified in milliseconds to use to read a table snapshot. By default this is not set and the latest version of a table is read.
(Optional)
Read
bigNumericDefaultPrecision An alternative default precision for BigNumeric fields, as the BigQuery default is too wide for Spark. Values can be between 1 and 38. This default is used only when the field has an unparameterized BigNumeric type. Please note that there might be data loss if the actual data's precision is more than what is specified.
(Optional)
Read/Write
bigNumericDefaultScale An alternative default scale for BigNumeric fields. Values can be between 0 and 38, and less than bigNumericFieldsPrecision. This default is used only when the field has an unparameterized BigNumeric type. Please note that there might be data loss if the actual data's scale is more than what is specified.
(Optional)
Read/Write
credentialsScopes Replaces the scopes of the Google Credentials if the credentials type supports that. If scope replacement is not supported then it does nothing.
The value should be a comma separated list of valid scopes.
(Optional)
Read/Write
Options can also be set outside of the code, using the `--conf` parameter of `spark-submit` or `--properties` parameter of the `gcloud dataproc submit spark`. In order to use this, prepend the prefix `spark.datasource.bigquery.` to any of the options, for example `spark.conf.set("temporaryGcsBucket", "some-bucket")` can also be set as `--conf spark.datasource.bigquery.temporaryGcsBucket=some-bucket`. ### Data types With the exception of `DATETIME` and `TIME` all BigQuery data types directed map into the corresponding Spark SQL data type. Here are all of the mappings:
BigQuery Standard SQL Data Type Spark SQL

Data Type

Notes
BOOL BooleanType
INT64 LongType
FLOAT64 DoubleType
NUMERIC DecimalType Please refer to Numeric and BigNumeric support
BIGNUMERIC DecimalType Please refer to Numeric and BigNumeric support
STRING StringType
BYTES BinaryType
STRUCT StructType
ARRAY ArrayType
TIMESTAMP TimestampType
DATE DateType
DATETIME StringType, TimestampNTZType* Spark has no DATETIME type.

Spark string can be written to an existing BQ DATETIME column provided it is in the format for BQ DATETIME literals.

* For Spark 3.4+, BQ DATETIME is read as Spark's TimestampNTZ type i.e. java LocalDateTime

TIME LongType, StringType* Spark has no TIME type. The generated longs, which indicate microseconds since midnight can be safely cast to TimestampType, but this causes the date to be inferred as the current day. Thus times are left as longs and user can cast if they like.

When casting to Timestamp TIME have the same TimeZone issues as DATETIME

* Spark string can be written to an existing BQ TIME column provided it is in the format for BQ TIME literals.

JSON StringType Spark has no JSON type. The values are read as String. In order to write JSON back to BigQuery, the following conditions are REQUIRED:
  • Use the INDIRECT write method
  • Use the AVRO intermediate format
  • The DataFrame field MUST be of type String and has an entry of sqlType=JSON in its metadata
ARRAY<STRUCT<key,value>> MapType BigQuery has no MAP type, therefore similar to other conversions like Apache Avro and BigQuery Load jobs, the connector converts a Spark Map to a REPEATED STRUCT<key,value>. This means that while writing and reading of maps is available, running a SQL on BigQuery that uses map semantics is not supported. To refer to the map's values using BigQuery SQL, please check the BigQuery documentation. Due to these incompatibilities, a few restrictions apply:
  • Keys can be Strings only
  • Values can be simple types (not structs)
  • For INDIRECT write, use the AVRO intermediate format. DIRECT write is supported as well
#### Spark ML Data Types Support The Spark ML [Vector](https://spark.apache.org/docs/2.4.5/api/python/pyspark.ml.html#pyspark.ml.linalg.Vector) and [Matrix](https://spark.apache.org/docs/2.4.5/api/python/pyspark.ml.html#pyspark.ml.linalg.Matrix) are supported, including their dense and sparse versions. The data is saved as a BigQuery RECORD. Notice that a suffix is added to the field's description which includes the spark type of the field. In order to write those types to BigQuery, use the ORC or Avro intermediate format, and have them as column of the Row (i.e. not a field in a struct). #### Numeric and BigNumeric support BigQuery's BigNumeric has a precision of 76.76 (the 77th digit is partial) and scale of 38. Since this precision and scale is beyond spark's DecimalType (38 scale and 38 precision) support, it means that BigNumeric fields with precision larger than 38 cannot be used. Once this Spark limitation will be updated the connector will be updated accordingly. The Spark Decimal/BigQuery Numeric conversion tries to preserve the parameterization of the type, i.e `NUMERIC(10,2)` will be converted to `Decimal(10,2)` and vice versa. Notice however that there are cases where [the parameters are lost](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#parameterized_data_types). This means that the parameters will be reverted to the defaults - NUMERIC (38,9) and BIGNUMERIC(76,38). This means that at the moment, BigNumeric read is supported only from a standard table, but not from BigQuery view or when [reading data from a BigQuery query](#reading-data-from-a-bigquery-query). ### Filtering The connector automatically computes column and pushdown filters the DataFrame's `SELECT` statement e.g. ``` spark.read.bigquery("bigquery-public-data:samples.shakespeare") .select("word") .where("word = 'Hamlet' or word = 'Claudius'") .collect() ``` filters to the column `word` and pushed down the predicate filter `word = 'hamlet' or word = 'Claudius'`. If you do not wish to make multiple read requests to BigQuery, you can cache the DataFrame before filtering e.g.: ``` val cachedDF = spark.read.bigquery("bigquery-public-data:samples.shakespeare").cache() val rows = cachedDF.select("word") .where("word = 'Hamlet'") .collect() // All of the table was cached and this doesn't require an API call val otherRows = cachedDF.select("word_count") .where("word = 'Romeo'") .collect() ``` You can also manually specify the `filter` option, which will override automatic pushdown and Spark will do the rest of the filtering in the client. ### Partitioned Tables The pseudo columns \_PARTITIONDATE and \_PARTITIONTIME are not part of the table schema. Therefore in order to query by the partitions of [partitioned tables](https://cloud.google.com/bigquery/docs/partitioned-tables) do not use the where() method shown above. Instead, add a filter option in the following manner: ``` val df = spark.read.format("bigquery") .option("filter", "_PARTITIONDATE > '2019-01-01'") ... .load(TABLE) ``` ### Configuring Partitioning By default, the connector calculates the requested `maxParallelism` as the larger of `preferredMinParallelism` (which defaults to 3 times the application's default parallelism) and 20,000. BigQuery may limit the number of partitions based on server constraints. Both [maxParallelism](#properties) and [preferredMinParallelism](#properties) can be configured explicitly to control the number of partitions. ## Tagging BigQuery Resources In order to support tracking the usage of BigQuery resources the connectors offers the following options to tag BigQuery resources: ### Adding BigQuery Jobs Labels The connector can launch BigQuery load and query jobs. Adding labels to the jobs is done in the following manner: ``` spark.conf.set("bigQueryJobLabel.cost_center", "analytics") spark.conf.set("bigQueryJobLabel.usage", "nightly_etl") ``` This will create labels `cost_center`=`analytics` and `usage`=`nightly_etl`. ### Adding BigQuery Storage Trace ID Used to annotate the read and write sessions. The trace ID is of the format `Spark:ApplicationName:JobID`. This is an opt-in option, and to use it the user need to set the `traceApplicationName` property. JobID is auto generated by the Dataproc job ID, with a fallback to the Spark application ID (such as `application_1648082975639_0001`). The Job ID can be overridden by setting the `traceJobId` option. Notice that the total length of the trace ID cannot be over 256 characters. ## Using in Jupyter Notebooks The connector can be used in [Jupyter notebooks](https://jupyter.org/) even if it is not installed on the Spark cluster. It can be added as an external jar in using the following code: **Python:** ```python from pyspark.sql import SparkSession spark = SparkSession.builder \ .config("spark.jars.packages", "com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:${next-release-tag}") \ .getOrCreate() df = spark.read.format("bigquery") \ .load("dataset.table") ``` **Scala:** ```scala val spark = SparkSession.builder .config("spark.jars.packages", "com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:${next-release-tag}") .getOrCreate() val df = spark.read.format("bigquery") .load("dataset.table") ``` In case Spark cluster is using Scala 2.12 (it's optional for Spark 2.4.x, mandatory in 3.0.x), then the relevant package is com.google.cloud.spark:spark-bigquery-with-dependencies_**2.12**:${next-release-tag}. In order to know which Scala version is used, please run the following code: **Python:** ```python spark.sparkContext._jvm.scala.util.Properties.versionString() ``` **Scala:** ```python scala.util.Properties.versionString ``` ## Compiling against the connector Unless you wish to use the implicit Scala API `spark.read.bigquery("TABLE_ID")`, there is no need to compile against the connector. To include the connector in your project: ### Maven ```xml com.google.cloud.spark spark-bigquery-with-dependencies_${scala.version} ${next-release-tag} ``` ### SBT ```sbt libraryDependencies += "com.google.cloud.spark" %% "spark-bigquery-with-dependencies" % "${next-release-tag}" ``` ### Connector metrics and how to view them Spark populates a lot of metrics which can be found by the end user in the spark history page. But all these metrics are spark related which are implicitly collected without any change from the connector. But there are few metrics which are populated from the BigQuery and currently are visible in the application logs which can be read in the driver/executor logs. From Spark 3.2 onwards, spark has provided the API to expose custom metrics in the spark UI page https://spark.apache.org/docs/3.2.0/api/java/org/apache/spark/sql/connector/metric/CustomMetric.html Currently, using this API, connector exposes the following bigquery metrics during read
Metric Name Description
bytes read number of BigQuery bytes read
rows read number of BigQuery rows read
scan time the amount of time spent between read rows response requested to obtained across all the executors, in milliseconds.
parse time the amount of time spent for parsing the rows read across all the executors, in milliseconds.
spark time the amount of time spent in spark to process the queries (i.e., apart from scanning and parsing), across all the executors, in milliseconds.
**Note:** To use the metrics in the Spark UI page, you need to make sure the `spark-bigquery-metrics-${next-release-tag}.jar` is the class path before starting the history-server and the connector version is `spark-3.2` or above. ## FAQ ### What is the Pricing for the Storage API? See the [BigQuery pricing documentation](https://cloud.google.com/bigquery/pricing#storage-api). ### I have very few partitions You can manually set the number of partitions with the `maxParallelism` property. BigQuery may provide fewer partitions than you ask for. See [Configuring Partitioning](#configuring-partitioning). You can also always repartition after reading in Spark. ### I get quota exceeded errors while writing If there are too many partitions the CreateWriteStream or Throughput [quotas](https://cloud.google.com/bigquery/quotas#write-api-limits) may be exceeded. This occurs because while the data within each partition is processed serially, independent partitions may be processed in parallel on different nodes within the spark cluster. Generally, to ensure maximum sustained throughput you should file a quota increase request. However, you can also manually reduce the number of partitions being written by calling coalesce on the DataFrame to mitigate this problem. ``` desiredPartitionCount = 5 dfNew = df.coalesce(desiredPartitionCount) dfNew.write ``` A rule of thumb is to have a single partition handle at least 1GB of data. Also note that a job running with the `writeAtLeastOnce` property turned on will not encounter CreateWriteStream quota errors. ### How do I authenticate outside GCE / Dataproc? The connector needs an instance of a GoogleCredentials in order to connect to the BigQuery APIs. There are multiple options to provide it: * The default is to load the JSON key from the `GOOGLE_APPLICATION_CREDENTIALS` environment variable, as described [here](https://cloud.google.com/docs/authentication/getting-started). * In case the environment variable cannot be changed, the credentials file can be configured as as a spark option. The file should reside on the same path on all the nodes of the cluster. ``` // Globally spark.conf.set("credentialsFile", "") // Per read/Write spark.read.format("bigquery").option("credentialsFile", "") ``` * Credentials can also be provided explicitly, either as a parameter or from Spark runtime configuration. They should be passed in as a base64-encoded string directly. ``` // Globally spark.conf.set("credentials", "") // Per read/Write spark.read.format("bigquery").option("credentials", "") ``` * In cases where the user has an internal service providing the Google AccessToken, a custom implementation can be done, creating only the AccessToken and providing its TTL. Token refresh will re-generate a new token. In order to use this, implement the [com.google.cloud.bigquery.connector.common.AccessTokenProvider](https://github.com/GoogleCloudDataproc/spark-bigquery-connector/tree/master/bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessTokenProvider.java) interface. The fully qualified class name of the implementation should be provided in the `gcpAccessTokenProvider` option. `AccessTokenProvider` must be implemented in Java or other JVM language such as Scala or Kotlin. It must either have a no-arg constructor or a constructor accepting a single `java.util.String` argument. This configuration parameter can be supplied using the `gcpAccessTokenProviderConfig` option. If this is not provided then the no-arg constructor wil be called. The jar containing the implementation should be on the cluster's classpath. ``` // Globally spark.conf.set("gcpAccessTokenProvider", "com.example.ExampleAccessTokenProvider") // Per read/Write spark.read.format("bigquery").option("gcpAccessTokenProvider", "com.example.ExampleAccessTokenProvider") ``` * Service account impersonation can be configured for a specific username and a group name, or for all users by default using below properties: - `gcpImpersonationServiceAccountForUser_` (not set by default) The service account impersonation for a specific user. - `gcpImpersonationServiceAccountForGroup_` (not set by default) The service account impersonation for a specific group. - `gcpImpersonationServiceAccount` (not set by default) Default service account impersonation for all users. If any of the above properties are set then the service account specified will be impersonated by generating a short-lived credentials when accessing BigQuery. If more than one property is set then the service account associated with the username will take precedence over the service account associated with the group name for a matching user and group, which in turn will take precedence over default service account impersonation. * For a simpler application, where access token refresh is not required, another alternative is to pass the access token as the `gcpAccessToken` configuration option. You can get the access token by running `gcloud auth application-default print-access-token`. ``` // Globally spark.conf.set("gcpAccessToken", "") // Per read/Write spark.read.format("bigquery").option("gcpAccessToken", "") ``` **Important:** The `CredentialsProvider` and `AccessTokenProvider` need to be implemented in Java or other JVM language such as Scala or Kotlin. The jar containing the implementation should be on the cluster's classpath. **Notice:** Only one of the above options should be provided. ### How do I connect to GCP/BigQuery via Proxy? To connect to a forward proxy and to authenticate the user credentials, configure the following options. `proxyAddress`: Address of the proxy server. The proxy must be an HTTP proxy and address should be in the `host:port` format. `proxyUsername`: The userName used to connect to the proxy. `proxyPassword`: The password used to connect to the proxy. ``` val df = spark.read.format("bigquery") .option("proxyAddress", "http://my-proxy:1234") .option("proxyUsername", "my-username") .option("proxyPassword", "my-password") .load("some-table") ``` The same proxy parameters can also be set globally using Spark's RuntimeConfig like this: ``` spark.conf.set("proxyAddress", "http://my-proxy:1234") spark.conf.set("proxyUsername", "my-username") spark.conf.set("proxyPassword", "my-password") val df = spark.read.format("bigquery") .load("some-table") ``` You can set the following in the hadoop configuration as well. `fs.gs.proxy.address`(similar to "proxyAddress"), `fs.gs.proxy.username`(similar to "proxyUsername") and `fs.gs.proxy.password`(similar to "proxyPassword"). If the same parameter is set at multiple places the order of priority is as follows: option("key", "value") > spark.conf > hadoop configuration ================================================ FILE: README.md ================================================ # Apache Spark SQL connector for Google BigQuery The connector supports reading [Google BigQuery](https://cloud.google.com/bigquery/) tables into Spark's DataFrames, and writing DataFrames back into BigQuery. This is done by using the [Spark SQL Data Source API](https://spark.apache.org/docs/latest/sql-programming-guide.html#data-sources) to communicate with BigQuery. ## BigQuery Storage API The [Storage API](https://cloud.google.com/bigquery/docs/reference/storage) streams data in parallel directly from BigQuery via gRPC without using Google Cloud Storage as an intermediary. It has a number of advantages over using the previous export-based read flow that should generally lead to better read performance: ### Direct Streaming It does not leave any temporary files in Google Cloud Storage. Rows are read directly from BigQuery servers using the Arrow or Avro wire formats. ### Filtering The new API allows column and predicate filtering to only read the data you are interested in. #### Column Filtering Since BigQuery is [backed by a columnar datastore](https://cloud.google.com/blog/big-data/2016/04/inside-capacitor-bigquerys-next-generation-columnar-storage-format), it can efficiently stream data without reading all columns. #### Predicate Filtering The Storage API supports arbitrary pushdown of predicate filters. Connector version 0.8.0-beta and above support pushdown of arbitrary filters to Bigquery. There is a known issue in Spark that does not allow pushdown of filters on nested fields. For example - filters like `address.city = "Sunnyvale"` will not get pushdown to Bigquery. ### Dynamic Sharding The API rebalances records between readers until they all complete. This means that all Map phases will finish nearly concurrently. See this blog article on [how dynamic sharding is similarly used in Google Cloud Dataflow](https://cloud.google.com/blog/products/gcp/no-shard-left-behind-dynamic-work-rebalancing-in-google-cloud-dataflow). See [Configuring Partitioning](#configuring-partitioning) for more details. ## Requirements ### Enable the BigQuery Storage API Follow [these instructions](https://cloud.google.com/bigquery/docs/reference/storage/#enabling_the_api). ### Create a Google Cloud Dataproc cluster (Optional) If you do not have an Apache Spark environment you can create a Cloud Dataproc cluster with pre-configured auth. The following examples assume you are using Cloud Dataproc, but you can use `spark-submit` on any cluster. Any Dataproc cluster using the API needs the 'bigquery' or 'cloud-platform' scopes. Dataproc clusters have the 'bigquery' scope by default, so most clusters in enabled projects should work by default e.g. ``` MY_CLUSTER=... gcloud dataproc clusters create "$MY_CLUSTER" ``` ## Downloading and Using the Connector The latest version of the connector is publicly available in the following links: | version | Link | |------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | Spark 4.1 | `gs://spark-lib/bigquery/spark-4.1-bigquery-0.44.1-preview.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-4.1-bigquery-0.44.1-preview.jar)) | | Spark 4.0 | `gs://spark-lib/bigquery/spark-4.0-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-4.0-bigquery-0.44.1.jar)) | | Spark 3.5 | `gs://spark-lib/bigquery/spark-3.5-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.5-bigquery-0.44.1.jar)) | | Spark 3.4 | `gs://spark-lib/bigquery/spark-3.4-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.4-bigquery-0.44.1.jar)) | | Spark 3.3 | `gs://spark-lib/bigquery/spark-3.3-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.3-bigquery-0.44.1.jar)) | | Spark 3.2 | `gs://spark-lib/bigquery/spark-3.2-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.2-bigquery-0.44.1.jar)) | | Spark 3.1 | `gs://spark-lib/bigquery/spark-3.1-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.1-bigquery-0.44.1.jar)) | | Spark 2.4 | `gs://spark-lib/bigquery/spark-2.4-bigquery-0.37.0.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-2.4-bigquery-0.37.0.jar)) | | Scala 2.13 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.13-0.44.1.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.13-0.44.1.jar)) | | Scala 2.12 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-0.44.1.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-0.44.1.jar)) | | Scala 2.11 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar)) | The first six versions are Java based connectors targeting Spark 2.4/3.1/3.2/3.3/3.4/3.5 of all Scala versions built on the new Data Source APIs (Data Source API v2) of Spark. The final two connectors are Scala based connectors, please use the jar relevant to your Spark installation as outlined below. ### Connector to Spark Compatibility Matrix | Connector \ Spark | 2.3 | 2.4 | 3.0 | 3.1 | 3.2 | 3.3 |3.4 | 3.5 | |---------------------------------------|---------|---------|---------|---------|---------|---------|---------|---------| | spark-3.5-bigquery | | | | | | | | ✓ | | spark-3.4-bigquery | | | | | | | ✓ | ✓ | | spark-3.3-bigquery | | | | | | ✓ | ✓ | ✓ | | spark-3.2-bigquery | | | | | ✓ | ✓ | ✓ | ✓ | | spark-3.1-bigquery | | | | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-2.4-bigquery | | ✓ | | | | | | | | spark-bigquery-with-dependencies_2.13 | | | | | ✓ | ✓ | ✓ | ✓ | | spark-bigquery-with-dependencies_2.12 | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-bigquery-with-dependencies_2.11 | ✓ | ✓ | | | | | | | ### Connector to Dataproc Image Compatibility Matrix | Connector \ Dataproc Image | 1.3 | 1.4 | 1.5 | 2.0 | 2.1 | 2.2 | Serverless
Image 1.0 | Serverless
Image 2.0 | Serverless
Image 2.1 | Serverless
Image 2.2 | |---------------------------------------|---------|---------|---------|---------|---------|---------|-------------------------|-------------------------|-------------------------|-------------------------| | spark-3.5-bigquery | | | | | | ✓ | | | | ✓ | | spark-3.4-bigquery | | | | | | ✓ | | | ✓ | ✓ | | spark-3.3-bigquery | | | | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-3.2-bigquery | | | | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-3.1-bigquery | | | | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | spark-2.4-bigquery | | ✓ | ✓ | | | | | | | | | spark-bigquery-with-dependencies_2.13 | | | | | | | | ✓ | ✓ | ✓ | | spark-bigquery-with-dependencies_2.12 | | | ✓ | ✓ | ✓ | ✓ | ✓ | | | | | spark-bigquery-with-dependencies_2.11 | ✓ | ✓ | | | | | | | | | ### Maven / Ivy Package Usage The connector is also available from the [Maven Central](https://repo1.maven.org/maven2/com/google/cloud/spark/) repository. It can be used using the `--packages` option or the `spark.jars.packages` configuration property. Use the following value | version | Connector Artifact | |------------|------------------------------------------------------------------------------------| | Spark 4.1 | `com.google.cloud.spark:spark-4.1-bigquery:0.44.1-preview` | | Spark 4.0 | `com.google.cloud.spark:spark-4.0-bigquery:0.44.1` | | Spark 3.5 | `com.google.cloud.spark:spark-3.5-bigquery:0.44.1` | | Spark 3.4 | `com.google.cloud.spark:spark-3.4-bigquery:0.44.1` | | Spark 3.3 | `com.google.cloud.spark:spark-3.3-bigquery:0.44.1` | | Spark 3.2 | `com.google.cloud.spark:spark-3.2-bigquery:0.44.1` | | Spark 3.1 | `com.google.cloud.spark:spark-3.1-bigquery:0.44.1` | | Spark 2.4 | `com.google.cloud.spark:spark-2.4-bigquery:0.37.0` | | Scala 2.13 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.13:0.44.1` | | Scala 2.12 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:0.44.1` | | Scala 2.11 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.11:0.29.0` | ### Specifying the Spark BigQuery connector version in a Dataproc cluster Dataproc clusters created using image 2.1 and above, or batches using the Dataproc serverless service come with built-in Spark BigQuery connector. Using the standard `--jars` or `--packages` (or alternatively, the `spark.jars`/`spark.jars.packages` configuration) won't help in this case as the built-in connector takes precedence. To use another version than the built-in one, please do one of the following: * For Dataproc clusters, using image 2.1 and above, add the following flag on cluster creation to upgrade the version `--metadata SPARK_BQ_CONNECTOR_VERSION=0.44.1`, or `--metadata SPARK_BQ_CONNECTOR_URL=gs://spark-lib/bigquery/spark-3.3-bigquery-0.44.1.jar` to create the cluster with a different jar. The URL can point to any valid connector JAR for the cluster's Spark version. * For Dataproc serverless batches, add the following property on batch creation to upgrade the version: `--properties dataproc.sparkBqConnector.version=0.44.1`, or `--properties dataproc.sparkBqConnector.uri=gs://spark-lib/bigquery/spark-3.3-bigquery-0.44.1.jar` to create the batch with a different jar. The URL can point to any valid connector JAR for the runtime's Spark version. ## Hello World Example You can run a simple PySpark wordcount against the API without compilation by running **Dataproc image 1.5 and above** ``` gcloud dataproc jobs submit pyspark --cluster "$MY_CLUSTER" \ --jars gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-0.44.1.jar \ examples/python/shakespeare.py ``` **Dataproc image 1.4 and below** ``` gcloud dataproc jobs submit pyspark --cluster "$MY_CLUSTER" \ --jars gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar \ examples/python/shakespeare.py ``` ## Example Codelab ## https://codelabs.developers.google.com/codelabs/pyspark-bigquery ## Usage The connector uses the cross language [Spark SQL Data Source API](https://spark.apache.org/docs/latest/sql-programming-guide.html#data-sources): ### Reading data from a BigQuery table ``` df = spark.read \ .format("bigquery") \ .load("bigquery-public-data.samples.shakespeare") ``` or the Scala only implicit API: ``` import com.google.cloud.spark.bigquery._ val df = spark.read.bigquery("bigquery-public-data.samples.shakespeare") ``` The connector supports reading from tables that contain spaces in their names. **Note on ambiguous table names**: If a table name contains both spaces and a SQL keyword (e.g., "from", "where", "join"), it may be misinterpreted as a SQL query. To resolve this ambiguity, quote the table identifier with backticks \`. For example: ``` df = spark.read \ .format("bigquery") \ .load("`my_project.my_dataset.orders from 2023`") ``` For more information, see additional code samples in [Python](examples/python/shakespeare.py), [Scala](spark-bigquery-dsv1/src/main/scala/com/google/cloud/spark/bigquery/examples/Shakespeare.scala) and [Java](spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/examples/JavaShakespeare.java). ### Reading data from a BigQuery query The connector allows you to run any [Standard SQL](https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax) SELECT query on BigQuery and fetch its results directly to a Spark Dataframe. This is easily done as described in the following code sample: ``` spark.conf.set("viewsEnabled","true") sql = """ SELECT tag, COUNT(*) c FROM ( SELECT SPLIT(tags, '|') tags FROM `bigquery-public-data.stackoverflow.posts_questions` a WHERE EXTRACT(YEAR FROM creation_date)>=2014 ), UNNEST(tags) tag GROUP BY 1 ORDER BY 2 DESC LIMIT 10 """ df = spark.read.format("bigquery").load(sql) df.show() ``` Which yields the result ``` +----------+-------+ | tag| c| +----------+-------+ |javascript|1643617| | python|1352904| | java|1218220| | android| 913638| | php| 911806| | c#| 905331| | html| 769499| | jquery| 608071| | css| 510343| | c++| 458938| +----------+-------+ ``` A second option is to use the `query` option like this: ``` df = spark.read.format("bigquery").option("query", sql).load() ``` Notice that the execution should be faster as only the result is transmitted over the wire. In a similar fashion the queries can include JOINs more efficiently then running joins on Spark or use other BigQuery features such as [subqueries](https://cloud.google.com/bigquery/docs/reference/standard-sql/subqueries), [BigQuery user defined functions](https://cloud.google.com/bigquery/docs/reference/standard-sql/user-defined-functions), [wildcard tables](https://cloud.google.com/bigquery/docs/reference/standard-sql/wildcard-table-reference), [BigQuery ML](https://cloud.google.com/bigquery-ml/docs) and more. In order to use this feature the `viewsEnabled` configurations MUST be set to `true`. This can also be done globally as shown in the example above. **Important:** This feature is implemented by running the query on BigQuery and saving the result into a temporary table, of which Spark will read the results from. This may add additional costs on your BigQuery account. ### Reading From Parameterized Queries The connector supports executing [BigQuery parameterized queries](https://cloud.google.com/bigquery/docs/parameterized-queries) using the standard `spark.read.format('bigquery')` API. To use parameterized queries: 1. Provide the SQL query containing parameters using the `.option("query", "SQL_STRING")` with named (`@param`) or positional (`?`) parameters. 2. Specify the parameter values using dedicated options: * **Named Parameters:** Use options prefixed with `NamedParameters.`. The parameter name follows the prefix (case-insensitive). * Format: `.option("NamedParameters.", "TYPE:value")` * Example: `.option("NamedParameters.corpus", "STRING:romeoandjuliet")` * **Positional Parameters:** Use options prefixed with `PositionalParameters.`. The 1-based index follows the prefix. * Format: `.option("PositionalParameters.", "TYPE:value")` * Example: `.option("PositionalParameters.1", "STRING:romeoandjuliet")` The `TYPE` in the `TYPE:value` string specifies the BigQuery Standard SQL data type. Supported types currently include: `BOOL`, `INT64`, `FLOAT64`, `NUMERIC`, `STRING`, `DATE`, `DATETIME`, `JSON`, `TIME`, `GEOGRAPHY`, `TIMESTAMP`. `ARRAY` and `STRUCT` types are not supported as parameters at this time. ### Reading From Views The connector has a preliminary support for reading from [BigQuery views](https://cloud.google.com/bigquery/docs/views-intro). Please note there are a few caveats: * BigQuery views are not materialized by default, which means that the connector needs to materialize them before it can read them. This process affects the read performance, even before running any `collect()` or `count()` action. * The materialization process can also incur additional costs to your BigQuery bill. * Reading from views is **disabled** by default. In order to enable it, either set the viewsEnabled option when reading the specific view (`.option("viewsEnabled", "true")`) or set it globally by calling `spark.conf.set("viewsEnabled", "true")`. **Notice:** Before version 0.42.1 of the connector, the following configurations are required: * By default, the materialized views are created in the same project and dataset. Those can be configured by the optional `materializationProject` and `materializationDataset` options, respectively. These options can also be globally set by calling `spark.conf.set(...)` before reading the views. * As mentioned in the [BigQuery documentation](https://cloud.google.com/bigquery/docs/writing-results#temporary_and_permanent_tables), the `materializationDataset` should be in same location as the view. Starting version 0.42.1 those configurations are **redundant** and are ignored. It is highly recommended to upgrade to this version or a later one to enjoy simpler configuration when using views or loading from queries. ### Writing data to BigQuery Writing DataFrames to BigQuery can be done using two methods: Direct and Indirect. #### Direct write using the BigQuery Storage Write API In this method the data is written directly to BigQuery using the [BigQuery Storage Write API](https://cloud.google.com/bigquery/docs/write-api). In order to enable this option, please set the `writeMethod` option to `direct`, as shown below: ``` df.write \ .format("bigquery") \ .option("writeMethod", "direct") \ .option("writeAtLeastOnce", "true") .save("dataset.table") ``` Writing to existing partitioned tables (date partitioned, ingestion time partitioned and range partitioned) in APPEND save mode and OVERWRITE mode (only date and range partitioned) is fully supported by the connector and the BigQuery Storage Write API. The use of `datePartition`, `partitionField`, `partitionType`, `partitionRangeStart`, `partitionRangeEnd`, `partitionRangeInterval` described below is not supported at this moment by the direct write method. **Important:** Please refer to the [data ingestion pricing](https://cloud.google.com/bigquery/pricing#data_ingestion_pricing) page regarding the BigQuery Storage Write API pricing. **Important:** Please use version 0.24.2 and above for direct writes, as previous versions have a bug that may cause a table deletion in certain cases. #### Indirect write In this method the data is written first to GCS, and then it is loaded it to BigQuery. A GCS bucket must be configured to indicate the temporary data location. ``` df.write \ .format("bigquery") \ .option("temporaryGcsBucket","some-bucket") \ .save("dataset.table") ``` The data is temporarily stored using the [Apache Parquet](https://parquet.apache.org/), [Apache ORC](https://orc.apache.org/) or [Apache Avro](https://avro.apache.org/) formats. The GCS bucket and the format can also be set globally using Spark's RuntimeConfig like this: ``` spark.conf.set("temporaryGcsBucket","some-bucket") df.write \ .format("bigquery") \ .save("dataset.table") ``` When streaming a DataFrame to BigQuery, each batch is written in the same manner as a non-streaming DataFrame. Note that a HDFS compatible [checkpoint location](http://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#recovering-from-failures-with-checkpointing) (eg: `path/to/HDFS/dir` or `gs://checkpoint-bucket/checkpointDir`) must be specified. ``` df.writeStream \ .format("bigquery") \ .option("temporaryGcsBucket","some-bucket") \ .option("checkpointLocation", "some-location") \ .option("table", "dataset.table") ``` **Important:** The connector does not configure the GCS connector, in order to avoid conflict with another GCS connector, if exists. In order to use the write capabilities of the connector, please configure the GCS connector on your cluster as explained [here](https://github.com/GoogleCloudPlatform/bigdata-interop/tree/master/gcs). #### Schema Behavior on Overwrite When using `SaveMode.Overwrite` (`.mode("overwrite")`), the connector **preserves the existing table's schema**. The data is truncated, but column types, descriptions, and policy tags are retained. ``` df.write \ .format("bigquery") \ .mode("overwrite") \ .option("temporaryGcsBucket","some-bucket") \ .save("dataset.table") ``` **Important:** If your DataFrame has a different schema than the existing table (e.g., changing a column from `INTEGER` to `DOUBLE`), the write will fail with a type mismatch error. To change the schema, either: - Drop the table before overwriting - Use BigQuery DDL to alter the table schema first For some of the schema difference, the following options can work with overwrite: Programmatic Relaxation: Set `.option("allowFieldRelaxation", "true")` for nullability changes and `.option("allowFieldAddition", "true")` for new columns. This behavior was introduced between version 0.22.0 and 0.41.0 to prevent accidental schema drift. **Note:** This behavior applies to both the `indirect` (default) and `direct` write methods. ### Running SQL on BigQuery The connector supports Spark's [SparkSession#executeCommand](https://archive.apache.org/dist/spark/docs/3.0.0/api/java/org/apache/spark/sql/SparkSession.html#executeCommand-java.lang.String-java.lang.String-scala.collection.immutable.Map-) with the Spark-X.Y-bigquery connectors. It can be used to run any arbitrary DDL/DML StandardSQL statement on BigQuery as a query job. `SELECT` statements are not supported, as those are supported by reading from query as shown above. It can be used as follows: ``` spark.executeCommand("bigquery", sql, options) ``` Notice the following: * Notice that apart from the authentication options no other options are supported by this functionality. * This API is available only in the Scala/Java API. PySpark does not provide it. ### Properties The API Supports a number of options to configure the read
Property Meaning Usage
table The BigQuery table in the format [[project:]dataset.]table. It is recommended to use the path parameter of load()/save() instead. This option has been deprecated and will be removed in a future version.
(Deprecated)
Read/Write
dataset The dataset containing the table. This option should be used with standard table and views, but not when loading query results.
(Optional unless omitted in table)
Read/Write
project The Google Cloud Project ID of the table. This option should be used with standard table and views, but not when loading query results.
(Optional. Defaults to the project of the Service Account being used)
Read/Write
billingProject The Google Cloud Project ID to use for billing (API calls, query execution).
(Optional. Defaults to the project of the Service Account being used)
Read/Write
parentProject (Deprecated) Alias for billingProject.
(Optional. Defaults to the project of the Service Account being used)
Read/Write
location The BigQuery location where the data resides (e.g. US, EU, asia-northeast1).
(Optional. Defaults to BigQuery default)
Read/Write
maxParallelism The maximal number of partitions to split the data into. Actual number may be less if BigQuery deems the data small enough. If there are not enough executors to schedule a reader per partition, some partitions may be empty.
Important: The old parameter (parallelism) is still supported but in deprecated mode. It will ve removed in version 1.0 of the connector.
(Optional. Defaults to the larger of the preferredMinParallelism and 20,000).)
Read
preferredMinParallelism The preferred minimal number of partitions to split the data into. Actual number may be less if BigQuery deems the data small enough. If there are not enough executors to schedule a reader per partition, some partitions may be empty.
(Optional. Defaults to the smallest of 3 times the application's default parallelism and maxParallelism.)
Read
viewsEnabled Enables the connector to read from views and not only tables. Please read the relevant section before activating this option.
(Optional. Defaults to false)
Read
readDataFormat Data Format for reading from BigQuery. Options : ARROW, AVRO
(Optional. Defaults to ARROW)
Read
optimizedEmptyProjection The connector uses an optimized empty projection (select without any columns) logic, used for count() execution. This logic takes the data directly from the table metadata or performs a much efficient `SELECT COUNT(*) WHERE...` in case there is a filter. You can cancel the use of this logic by setting this option to false.
(Optional, defaults to true)
Read
pushAllFilters If set to true, the connector pushes all the filters Spark can delegate to BigQuery Storage API. This reduces amount of data that needs to be sent from BigQuery Storage API servers to Spark clients. This option has been deprecated and will be removed in a future version.
(Optional, defaults to true)
(Deprecated)
Read
bigQueryJobLabel Can be used to add labels to the connector initiated query and load BigQuery jobs. Multiple labels can be set.
(Optional)
Read
bigQueryTableLabel Can be used to add labels to the table while writing to a table. Multiple labels can be set.
(Optional)
Write
traceApplicationName Application name used to trace BigQuery Storage read and write sessions. Setting the application name is required to set the trace ID on the sessions.
(Optional)
Read
traceJobId Job ID used to trace BigQuery Storage read and write sessions.
(Optional, defaults to the Dataproc job ID is exists, otherwise uses the Spark application ID)
Read
createDisposition Specifies whether the job is allowed to create new tables. The permitted values are:
  • CREATE_IF_NEEDED - Configures the job to create the table if it does not exist.
  • CREATE_NEVER - Configures the job to fail if the table does not exist.
This option takes place only in case Spark has decided to write data to the table based on the SaveMode.
(Optional. Default to CREATE_IF_NEEDED).
Write
writeMethod Controls the method in which the data is written to BigQuery. Available values are direct to use the BigQuery Storage Write API and indirect which writes the data first to GCS and then triggers a BigQuery load operation. See more here
(Optional, defaults to indirect)
Write
writeAtLeastOnce Guarantees that data is written to BigQuery at least once. This is a lesser guarantee than exactly once. This is suitable for streaming scenarios in which data is continuously being written in small batches.
(Optional. Defaults to false)
Supported only by the `DIRECT` write method and mode is NOT `Overwrite`.
Write
temporaryGcsBucket The GCS bucket that temporarily holds the data before it is loaded to BigQuery. Required unless set in the Spark configuration (spark.conf.set(...)).
Defaults to the `fs.gs.system.bucket` if exists, for example on Google Cloud Dataproc clusters, starting version 0.42.0.
Supported only by the `INDIRECT` write method.
Write
persistentGcsBucket The GCS bucket that holds the data before it is loaded to BigQuery. If informed, the data won't be deleted after write data into BigQuery.
Supported only by the `INDIRECT` write method.
Write
persistentGcsPath The GCS path that holds the data before it is loaded to BigQuery. Used only with persistentGcsBucket.
Not supported by the `DIRECT` write method.
Write
intermediateFormat The format of the data before it is loaded to BigQuery, values can be either "parquet","orc" or "avro". In order to use the Avro format, the spark-avro package must be added in runtime.
(Optional. Defaults to parquet). On write only. Supported only for the `INDIRECT` write method.
Write
useAvroLogicalTypes When loading from Avro (`.option("intermediateFormat", "avro")`), BigQuery uses the underlying Avro types instead of the logical types [by default](https://cloud.google.com/bigquery/docs/loading-data-cloud-storage-avro#logical_types). Supplying this option converts Avro logical types to their corresponding BigQuery data types.
(Optional. Defaults to false). On write only.
Write
datePartition The date partition the data is going to be written to. Should be a date string given in the format YYYYMMDD. Can be used to overwrite the data of a single partition, like this:
df.write.format("bigquery")
  .option("datePartition", "20220331")
  .mode("overwrite")
  .save("table")

(Optional). On write only.
Can also be used with different partition types like:
HOUR: YYYYMMDDHH
MONTH: YYYYMM
YEAR: YYYY
Not supported by the `DIRECT` write method.
Write
partitionField If this field is specified, the table is partitioned by this field.
For Time partitioning, specify together with the option `partitionType`.
For Integer-range partitioning, specify together with the 3 options: `partitionRangeStart`, `partitionRangeEnd, `partitionRangeInterval`.
The field must be a top-level TIMESTAMP or DATE field for Time partitioning, or INT64 for Integer-range partitioning. Its mode must be NULLABLE or REQUIRED. If the option is not set for a Time partitioned table, then the table will be partitioned by pseudo column, referenced via either'_PARTITIONTIME' as TIMESTAMP type, or '_PARTITIONDATE' as DATE type.
(Optional).
Not supported by the `DIRECT` write method.
Write
partitionExpirationMs Number of milliseconds for which to keep the storage for partitions in the table. The storage in a partition will have an expiration time of its partition time plus this value.
(Optional).
Not supported by the `DIRECT` write method.
Write
partitionType Used to specify Time partitioning.
Supported types are: HOUR, DAY, MONTH, YEAR
This option is mandatory for a target table to be Time partitioned.
(Optional. Defaults to DAY if PartitionField is specified).
Not supported by the `DIRECT` write method.
Write
partitionRangeStart, partitionRangeEnd, partitionRangeInterval Used to specify Integer-range partitioning.
These options are mandatory for a target table to be Integer-range partitioned.
All 3 options must be specified.
Not supported by the `DIRECT` write method.
Write
clusteredFields A string of non-repeated, top level columns seperated by comma.
(Optional).
Write
allowFieldAddition Adds the ALLOW_FIELD_ADDITION SchemaUpdateOption to the BigQuery LoadJob. Allowed values are true and false.
(Optional. Default to false).
Supported only by the `INDIRECT` write method.
Write
allowFieldRelaxation Adds the ALLOW_FIELD_RELAXATION SchemaUpdateOption to the BigQuery LoadJob. Allowed values are true and false.
(Optional. Default to false).
Supported only by the `INDIRECT` write method.
Write
proxyAddress Address of the proxy server. The proxy must be a HTTP proxy and address should be in the `host:port` format. Can be alternatively set in the Spark configuration (spark.conf.set(...)) or in Hadoop Configuration (fs.gs.proxy.address).
(Optional. Required only if connecting to GCP via proxy.)
Read/Write
proxyUsername The userName used to connect to the proxy. Can be alternatively set in the Spark configuration (spark.conf.set(...)) or in Hadoop Configuration (fs.gs.proxy.username).
(Optional. Required only if connecting to GCP via proxy with authentication.)
Read/Write
proxyPassword The password used to connect to the proxy. Can be alternatively set in the Spark configuration (spark.conf.set(...)) or in Hadoop Configuration (fs.gs.proxy.password).
(Optional. Required only if connecting to GCP via proxy with authentication.)
Read/Write
httpMaxRetry The maximum number of retries for the low-level HTTP requests to BigQuery. Can be alternatively set in the Spark configuration (spark.conf.set("httpMaxRetry", ...)) or in Hadoop Configuration (fs.gs.http.max.retry).
(Optional. Default is 10)
Read/Write
httpConnectTimeout The timeout in milliseconds to establish a connection with BigQuery. Can be alternatively set in the Spark configuration (spark.conf.set("httpConnectTimeout", ...)) or in Hadoop Configuration (fs.gs.http.connect-timeout).
(Optional. Default is 60000 ms. 0 for an infinite timeout, a negative number for 20000)
Read/Write
httpReadTimeout The timeout in milliseconds to read data from an established connection. Can be alternatively set in the Spark configuration (spark.conf.set("httpReadTimeout", ...)) or in Hadoop Configuration (fs.gs.http.read-timeout).
(Optional. Default is 60000 ms. 0 for an infinite timeout, a negative number for 20000)
Read
arrowCompressionCodec Compression codec while reading from a BigQuery table when using Arrow format. Options : ZSTD (Zstandard compression), LZ4_FRAME (https://github.com/lz4/lz4/blob/dev/doc/lz4_Frame_format.md), COMPRESSION_UNSPECIFIED. The recommended compression codec is ZSTD while using Java.
(Optional. Defaults to COMPRESSION_UNSPECIFIED which means no compression will be used)
Read
responseCompressionCodec Compression codec used to compress the ReadRowsResponse data. Options: RESPONSE_COMPRESSION_CODEC_UNSPECIFIED, RESPONSE_COMPRESSION_CODEC_LZ4
(Optional. Defaults to RESPONSE_COMPRESSION_CODEC_UNSPECIFIED which means no compression will be used)
Read
cacheExpirationTimeInMinutes The expiration time of the in-memory cache storing query information.
To disable caching, set the value to 0.
(Optional. Defaults to 15 minutes)
Read
enableModeCheckForSchemaFields Checks the mode of every field in destination schema to be equal to the mode in corresponding source field schema, during DIRECT write.
Default value is true i.e., the check is done by default. If set to false the mode check is ignored.
Write
enableListInference Indicates whether to use schema inference specifically when the mode is Parquet (https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#parquetoptions).
Defaults to false.
Write
bqChannelPoolSize The (fixed) size of the gRPC channel pool created by the BigQueryReadClient.
For optimal performance, this should be set to at least the number of cores on the cluster executors.
Read
createReadSessionTimeoutInSeconds The timeout in seconds to create a ReadSession when reading a table.
For Extremely large table this value should be increased.
(Optional. Defaults to 600 seconds)
Read
queryJobPriority Priority levels set for the job while reading data from BigQuery query. The permitted values are:
  • BATCH - Query is queued and started as soon as idle resources are available, usually within a few minutes. If the query hasn't started within 3 hours, its priority is changed to INTERACTIVE.
  • INTERACTIVE - Query is executed as soon as possible and count towards the concurrent rate limit and the daily rate limit.
For WRITE, this option will be effective when DIRECT write is used with OVERWRITE mode, where the connector overwrites the destination table using MERGE statement.
(Optional. Defaults to INTERACTIVE)
Read/Write
destinationTableKmsKeyName Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key. for further Information about using CMEK with BigQuery see [here](https://cloud.google.com/bigquery/docs/customer-managed-encryption#key_resource_id).
Notice: The table will be encrypted by the key only if it created by the connector. A pre-existing unencrypted table won't be encrypted just by setting this option.
(Optional)
Write
allowMapTypeConversion Boolean config to disable conversion from BigQuery records to Spark MapType when the record has two subfields with field names as key and value. Default value is true which allows the conversion.
(Optional)
Read
spark.sql.sources.partitionOverwriteMode Config to specify the overwrite mode on write when the table is range/time partitioned. Currently supportd two modes : STATIC and DYNAMIC. In STATIC mode, the entire table is overwritten. In DYNAMIC mode, the data is overwritten by partitions of the existing table. The default value is STATIC.
(Optional)
Write
enableReadSessionCaching Boolean config to disable read session caching. Caches BigQuery read sessions to allow for faster Spark query planning. Default value is true.
(Optional)
Read
readSessionCacheDurationMins Config to set the read session caching duration in minutes. Only works if enableReadSessionCaching is true (default). Allows specifying the duration to cache read sessions for. Maximum allowed value is 300. Default value is 5.
(Optional)
Read
bigQueryJobTimeoutInMinutes Config to set the BigQuery job timeout in minutes. Default value is 360 minutes.
(Optional)
Read/Write
snapshotTimeMillis A timestamp specified in milliseconds to use to read a table snapshot. By default this is not set and the latest version of a table is read.
(Optional)
Read
bigNumericDefaultPrecision An alternative default precision for BigNumeric fields, as the BigQuery default is too wide for Spark. Values can be between 1 and 38. This default is used only when the field has an unparameterized BigNumeric type. Please note that there might be data loss if the actual data's precision is more than what is specified.
(Optional)
Read/Write
bigNumericDefaultScale An alternative default scale for BigNumeric fields. Values can be between 0 and 38, and less than bigNumericFieldsPrecision. This default is used only when the field has an unparameterized BigNumeric type. Please note that there might be data loss if the actual data's scale is more than what is specified.
(Optional)
Read/Write
credentialsScopes Replaces the scopes of the Google Credentials if the credentials type supports that. If scope replacement is not supported then it does nothing.
The value should be a comma separated list of valid scopes.
(Optional)
Read/Write
Options can also be set outside of the code, using the `--conf` parameter of `spark-submit` or `--properties` parameter of the `gcloud dataproc submit spark`. In order to use this, prepend the prefix `spark.datasource.bigquery.` to any of the options, for example `spark.conf.set("temporaryGcsBucket", "some-bucket")` can also be set as `--conf spark.datasource.bigquery.temporaryGcsBucket=some-bucket`. ### Data types With the exception of `DATETIME` and `TIME` all BigQuery data types directed map into the corresponding Spark SQL data type. Here are all of the mappings:
BigQuery Standard SQL Data Type Spark SQL

Data Type

Notes
BOOL BooleanType
INT64 LongType
FLOAT64 DoubleType
NUMERIC DecimalType Please refer to Numeric and BigNumeric support
BIGNUMERIC DecimalType Please refer to Numeric and BigNumeric support
STRING StringType
BYTES BinaryType
STRUCT StructType
ARRAY ArrayType
TIMESTAMP TimestampType
DATE DateType
DATETIME StringType, TimestampNTZType* Spark has no DATETIME type.

Spark string can be written to an existing BQ DATETIME column provided it is in the format for BQ DATETIME literals.

* For Spark 3.4+, BQ DATETIME is read as Spark's TimestampNTZ type i.e. java LocalDateTime

TIME LongType, StringType* Spark has no TIME type. The generated longs, which indicate microseconds since midnight can be safely cast to TimestampType, but this causes the date to be inferred as the current day. Thus times are left as longs and user can cast if they like.

When casting to Timestamp TIME have the same TimeZone issues as DATETIME

* Spark string can be written to an existing BQ TIME column provided it is in the format for BQ TIME literals.

JSON StringType Spark has no JSON type. The values are read as String. In order to write JSON back to BigQuery, the following conditions are REQUIRED:
  • Use the INDIRECT write method
  • Use the AVRO intermediate format
  • The DataFrame field MUST be of type String and has an entry of sqlType=JSON in its metadata
ARRAY<STRUCT<key,value>> MapType BigQuery has no MAP type, therefore similar to other conversions like Apache Avro and BigQuery Load jobs, the connector converts a Spark Map to a REPEATED STRUCT<key,value>. This means that while writing and reading of maps is available, running a SQL on BigQuery that uses map semantics is not supported. To refer to the map's values using BigQuery SQL, please check the BigQuery documentation. Due to these incompatibilities, a few restrictions apply:
  • Keys can be Strings only
  • Values can be simple types (not structs)
  • For INDIRECT write, use the AVRO intermediate format. DIRECT write is supported as well
#### Spark ML Data Types Support The Spark ML [Vector](https://spark.apache.org/docs/2.4.5/api/python/pyspark.ml.html#pyspark.ml.linalg.Vector) and [Matrix](https://spark.apache.org/docs/2.4.5/api/python/pyspark.ml.html#pyspark.ml.linalg.Matrix) are supported, including their dense and sparse versions. The data is saved as a BigQuery RECORD. Notice that a suffix is added to the field's description which includes the spark type of the field. In order to write those types to BigQuery, use the ORC or Avro intermediate format, and have them as column of the Row (i.e. not a field in a struct). #### Numeric and BigNumeric support BigQuery's BigNumeric has a precision of 76.76 (the 77th digit is partial) and scale of 38. Since this precision and scale is beyond spark's DecimalType (38 scale and 38 precision) support, it means that BigNumeric fields with precision larger than 38 cannot be used. Once this Spark limitation will be updated the connector will be updated accordingly. The Spark Decimal/BigQuery Numeric conversion tries to preserve the parameterization of the type, i.e `NUMERIC(10,2)` will be converted to `Decimal(10,2)` and vice versa. Notice however that there are cases where [the parameters are lost](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#parameterized_data_types). This means that the parameters will be reverted to the defaults - NUMERIC (38,9) and BIGNUMERIC(76,38). This means that at the moment, BigNumeric read is supported only from a standard table, but not from BigQuery view or when [reading data from a BigQuery query](#reading-data-from-a-bigquery-query). ### Filtering The connector automatically computes column and pushdown filters the DataFrame's `SELECT` statement e.g. ``` spark.read.bigquery("bigquery-public-data:samples.shakespeare") .select("word") .where("word = 'Hamlet' or word = 'Claudius'") .collect() ``` filters to the column `word` and pushed down the predicate filter `word = 'hamlet' or word = 'Claudius'`. If you do not wish to make multiple read requests to BigQuery, you can cache the DataFrame before filtering e.g.: ``` val cachedDF = spark.read.bigquery("bigquery-public-data:samples.shakespeare").cache() val rows = cachedDF.select("word") .where("word = 'Hamlet'") .collect() // All of the table was cached and this doesn't require an API call val otherRows = cachedDF.select("word_count") .where("word = 'Romeo'") .collect() ``` You can also manually specify the `filter` option, which will override automatic pushdown and Spark will do the rest of the filtering in the client. ### Partitioned Tables The pseudo columns \_PARTITIONDATE and \_PARTITIONTIME are not part of the table schema. Therefore in order to query by the partitions of [partitioned tables](https://cloud.google.com/bigquery/docs/partitioned-tables) do not use the where() method shown above. Instead, add a filter option in the following manner: ``` val df = spark.read.format("bigquery") .option("filter", "_PARTITIONDATE > '2019-01-01'") ... .load(TABLE) ``` ### Configuring Partitioning By default, the connector calculates the requested `maxParallelism` as the larger of `preferredMinParallelism` (which defaults to 3 times the application's default parallelism) and 20,000. BigQuery may limit the number of partitions based on server constraints. Both [maxParallelism](#properties) and [preferredMinParallelism](#properties) can be configured explicitly to control the number of partitions. ## Tagging BigQuery Resources In order to support tracking the usage of BigQuery resources the connectors offers the following options to tag BigQuery resources: ### Adding BigQuery Jobs Labels The connector can launch BigQuery load and query jobs. Adding labels to the jobs is done in the following manner: ``` spark.conf.set("bigQueryJobLabel.cost_center", "analytics") spark.conf.set("bigQueryJobLabel.usage", "nightly_etl") ``` This will create labels `cost_center`=`analytics` and `usage`=`nightly_etl`. ### Adding BigQuery Storage Trace ID Used to annotate the read and write sessions. The trace ID is of the format `Spark:ApplicationName:JobID`. This is an opt-in option, and to use it the user need to set the `traceApplicationName` property. JobID is auto generated by the Dataproc job ID, with a fallback to the Spark application ID (such as `application_1648082975639_0001`). The Job ID can be overridden by setting the `traceJobId` option. Notice that the total length of the trace ID cannot be over 256 characters. ## Using in Jupyter Notebooks The connector can be used in [Jupyter notebooks](https://jupyter.org/) even if it is not installed on the Spark cluster. It can be added as an external jar in using the following code: **Python:** ```python from pyspark.sql import SparkSession spark = SparkSession.builder \ .config("spark.jars.packages", "com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:0.44.1") \ .getOrCreate() df = spark.read.format("bigquery") \ .load("dataset.table") ``` **Scala:** ```scala val spark = SparkSession.builder .config("spark.jars.packages", "com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:0.44.1") .getOrCreate() val df = spark.read.format("bigquery") .load("dataset.table") ``` In case Spark cluster is using Scala 2.12 (it's optional for Spark 2.4.x, mandatory in 3.0.x), then the relevant package is com.google.cloud.spark:spark-bigquery-with-dependencies_**2.12**:0.44.1. In order to know which Scala version is used, please run the following code: **Python:** ```python spark.sparkContext._jvm.scala.util.Properties.versionString() ``` **Scala:** ```python scala.util.Properties.versionString ``` ## Compiling against the connector Unless you wish to use the implicit Scala API `spark.read.bigquery("TABLE_ID")`, there is no need to compile against the connector. To include the connector in your project: ### Maven ```xml com.google.cloud.spark spark-bigquery-with-dependencies_${scala.version} 0.44.1 ``` ### SBT ```sbt libraryDependencies += "com.google.cloud.spark" %% "spark-bigquery-with-dependencies" % "0.44.1" ``` ### Connector metrics and how to view them Spark populates a lot of metrics which can be found by the end user in the spark history page. But all these metrics are spark related which are implicitly collected without any change from the connector. But there are few metrics which are populated from the BigQuery and currently are visible in the application logs which can be read in the driver/executor logs. From Spark 3.2 onwards, spark has provided the API to expose custom metrics in the spark UI page https://spark.apache.org/docs/3.2.0/api/java/org/apache/spark/sql/connector/metric/CustomMetric.html Currently, using this API, connector exposes the following bigquery metrics during read
Metric Name Description
bytes read number of BigQuery bytes read
rows read number of BigQuery rows read
scan time the amount of time spent between read rows response requested to obtained across all the executors, in milliseconds.
parse time the amount of time spent for parsing the rows read across all the executors, in milliseconds.
spark time the amount of time spent in spark to process the queries (i.e., apart from scanning and parsing), across all the executors, in milliseconds.
**Note:** To use the metrics in the Spark UI page, you need to make sure the `spark-bigquery-metrics-0.44.1.jar` is the class path before starting the history-server and the connector version is `spark-3.2` or above. ## FAQ ### What is the Pricing for the Storage API? See the [BigQuery pricing documentation](https://cloud.google.com/bigquery/pricing#storage-api). ### I have very few partitions You can manually set the number of partitions with the `maxParallelism` property. BigQuery may provide fewer partitions than you ask for. See [Configuring Partitioning](#configuring-partitioning). You can also always repartition after reading in Spark. ### I get quota exceeded errors while writing If there are too many partitions the CreateWriteStream or Throughput [quotas](https://cloud.google.com/bigquery/quotas#write-api-limits) may be exceeded. This occurs because while the data within each partition is processed serially, independent partitions may be processed in parallel on different nodes within the spark cluster. Generally, to ensure maximum sustained throughput you should file a quota increase request. However, you can also manually reduce the number of partitions being written by calling coalesce on the DataFrame to mitigate this problem. ``` desiredPartitionCount = 5 dfNew = df.coalesce(desiredPartitionCount) dfNew.write ``` A rule of thumb is to have a single partition handle at least 1GB of data. Also note that a job running with the `writeAtLeastOnce` property turned on will not encounter CreateWriteStream quota errors. ### How do I authenticate outside GCE / Dataproc? The connector needs an instance of a GoogleCredentials in order to connect to the BigQuery APIs. There are multiple options to provide it: * The default is to load the JSON key from the `GOOGLE_APPLICATION_CREDENTIALS` environment variable, as described [here](https://cloud.google.com/docs/authentication/getting-started). * In case the environment variable cannot be changed, the credentials file can be configured as as a spark option. The file should reside on the same path on all the nodes of the cluster. ``` // Globally spark.conf.set("credentialsFile", "") // Per read/Write spark.read.format("bigquery").option("credentialsFile", "") ``` * Credentials can also be provided explicitly, either as a parameter or from Spark runtime configuration. They should be passed in as a base64-encoded string directly. ``` // Globally spark.conf.set("credentials", "") // Per read/Write spark.read.format("bigquery").option("credentials", "") ``` * In cases where the user has an internal service providing the Google AccessToken, a custom implementation can be done, creating only the AccessToken and providing its TTL. Token refresh will re-generate a new token. In order to use this, implement the [com.google.cloud.bigquery.connector.common.AccessTokenProvider](https://github.com/GoogleCloudDataproc/spark-bigquery-connector/tree/master/bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessTokenProvider.java) interface. The fully qualified class name of the implementation should be provided in the `gcpAccessTokenProvider` option. `AccessTokenProvider` must be implemented in Java or other JVM language such as Scala or Kotlin. It must either have a no-arg constructor or a constructor accepting a single `java.util.String` argument. This configuration parameter can be supplied using the `gcpAccessTokenProviderConfig` option. If this is not provided then the no-arg constructor wil be called. The jar containing the implementation should be on the cluster's classpath. ``` // Globally spark.conf.set("gcpAccessTokenProvider", "com.example.ExampleAccessTokenProvider") // Per read/Write spark.read.format("bigquery").option("gcpAccessTokenProvider", "com.example.ExampleAccessTokenProvider") ``` * Service account impersonation can be configured for a specific username and a group name, or for all users by default using below properties: - `gcpImpersonationServiceAccountForUser_` (not set by default) The service account impersonation for a specific user. - `gcpImpersonationServiceAccountForGroup_` (not set by default) The service account impersonation for a specific group. - `gcpImpersonationServiceAccount` (not set by default) Default service account impersonation for all users. If any of the above properties are set then the service account specified will be impersonated by generating a short-lived credentials when accessing BigQuery. If more than one property is set then the service account associated with the username will take precedence over the service account associated with the group name for a matching user and group, which in turn will take precedence over default service account impersonation. * For a simpler application, where access token refresh is not required, another alternative is to pass the access token as the `gcpAccessToken` configuration option. You can get the access token by running `gcloud auth application-default print-access-token`. ``` // Globally spark.conf.set("gcpAccessToken", "") // Per read/Write spark.read.format("bigquery").option("gcpAccessToken", "") ``` **Important:** The `CredentialsProvider` and `AccessTokenProvider` need to be implemented in Java or other JVM language such as Scala or Kotlin. The jar containing the implementation should be on the cluster's classpath. **Notice:** Only one of the above options should be provided. ### How do I connect to GCP/BigQuery via Proxy? To connect to a forward proxy and to authenticate the user credentials, configure the following options. `proxyAddress`: Address of the proxy server. The proxy must be an HTTP proxy and address should be in the `host:port` format. `proxyUsername`: The userName used to connect to the proxy. `proxyPassword`: The password used to connect to the proxy. ``` val df = spark.read.format("bigquery") .option("proxyAddress", "http://my-proxy:1234") .option("proxyUsername", "my-username") .option("proxyPassword", "my-password") .load("some-table") ``` The same proxy parameters can also be set globally using Spark's RuntimeConfig like this: ``` spark.conf.set("proxyAddress", "http://my-proxy:1234") spark.conf.set("proxyUsername", "my-username") spark.conf.set("proxyPassword", "my-password") val df = spark.read.format("bigquery") .load("some-table") ``` You can set the following in the hadoop configuration as well. `fs.gs.proxy.address`(similar to "proxyAddress"), `fs.gs.proxy.username`(similar to "proxyUsername") and `fs.gs.proxy.password`(similar to "proxyPassword"). If the same parameter is set at multiple places the order of priority is as follows: option("key", "value") > spark.conf > hadoop configuration ================================================ FILE: bigquery-connector-common/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../spark-bigquery-parent bigquery-connector-common BigQuery Connector Common Library jar Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo com.google.api.grpc grpc-google-cloud-bigquerystorage-v1 com.google.api.grpc proto-google-cloud-bigquerystorage-v1 org.lz4 lz4-java 1.8.0 provided com.google.cloud google-cloud-bigquery com.google.api.grpc grpc-google-cloud-bigquerystorage-v1beta1 com.google.api.grpc grpc-google-cloud-bigquerystorage-v1beta2 com.google.api.grpc proto-google-cloud-bigquerystorage-v1beta1 com.google.api.grpc proto-google-cloud-bigquerystorage-v1beta2 com.google.cloud google-cloud-bigquerystorage io.grpc grpc-netty-shaded com.google.api.grpc grpc-google-cloud-bigquerystorage-v1beta1 com.google.api.grpc grpc-google-cloud-bigquerystorage-v1beta2 com.google.api.grpc proto-google-cloud-bigquerystorage-v1beta1 com.google.api.grpc proto-google-cloud-bigquerystorage-v1beta2 com.google.errorprone error_prone_annotations com.google.inject guice 5.1.0 io.grpc grpc-api io.grpc grpc-netty io.netty netty-tcnative-boringssl-static org.apache.arrow arrow-memory-netty org.apache.arrow arrow-vector org.apache.arrow arrow-memory-core com.google.api gax-grpc ${gax.version} testlib test com.google.cloud google-cloud-bigquerystorage ${google-cloud-bigquerystorage.version} tests test io.grpc grpc-testing test com.google.code.gson gson 2.9.1 org.apache.commons commons-lang3 test org.apache.maven.plugins maven-jar-plugin 3.2.0 default-jar package jar test-jar test-jar ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessToken.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import java.util.Date; /** * As the com.google.auth.oauth2.AccessToken class is shaded in the final jar, this class provides * the same functionality but maintains its package. */ public class AccessToken extends com.google.auth.oauth2.AccessToken { /** * @param tokenValue String representation of the access token. * @param expirationTime Time when access token will expire. */ public AccessToken(String tokenValue, Date expirationTime) { super(tokenValue, expirationTime); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessTokenProvider.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import java.io.IOException; import java.io.Serializable; public interface AccessTokenProvider extends Serializable { AccessToken getAccessToken() throws IOException; } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessTokenProviderCredentials.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.auth.oauth2.AccessToken; import com.google.auth.oauth2.GoogleCredentials; import com.google.common.annotations.VisibleForTesting; import java.io.IOException; public class AccessTokenProviderCredentials extends GoogleCredentials { private final AccessTokenProvider accessTokenProvider; public AccessTokenProviderCredentials(AccessTokenProvider accessTokenProvider) { this.accessTokenProvider = accessTokenProvider; } @Override public AccessToken refreshAccessToken() throws IOException { return accessTokenProvider.getAccessToken(); } @VisibleForTesting public AccessTokenProvider getAccessTokenProvider() { return accessTokenProvider; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ArrowReaderIterator.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import java.io.IOException; import java.io.UncheckedIOException; import java.util.Iterator; import org.apache.arrow.vector.VectorSchemaRoot; import org.apache.arrow.vector.ipc.ArrowReader; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ArrowReaderIterator implements Iterator { private static final Logger log = LoggerFactory.getLogger(ArrowReaderIterator.class); boolean closed = false; VectorSchemaRoot current = null; ArrowReader reader; public ArrowReaderIterator(ArrowReader reader) { this.reader = reader; } @Override public boolean hasNext() { if (current != null) { return true; } if (closed) { return false; } try { boolean res = reader.loadNextBatch(); if (res) { current = reader.getVectorSchemaRoot(); } else { ensureClosed(); } return res; } catch (IOException e) { throw new UncheckedIOException("Failed to load the next arrow batch", e); } } @Override public VectorSchemaRoot next() { VectorSchemaRoot res = current; current = null; return res; } private void ensureClosed() throws IOException { if (!closed) { reader.close(); closed = true; } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ArrowUtil.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import org.apache.arrow.memory.RootAllocator; import org.apache.arrow.memory.netty.NettyAllocationManager; /** Common utility classes for Arrow. */ public class ArrowUtil { private ArrowUtil() {}; /** Returns a new allocator limited to maxAllocation bytes */ public static RootAllocator newRootAllocator(long maxAllocation) { // Arrow has classpath scanning logic based on hard-coding strings to // select the default allocationManagerFactory by selecting one // here it should be properly shaded with the rest of Arrow within // the connector. return new RootAllocator( RootAllocator.configBuilder() .allocationManagerFactory(NettyAllocationManager.FACTORY) .maxAllocation(maxAllocation) .build()); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryClient.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.getPartitionFields; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.getQueryForRangePartitionedTable; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.getQueryForTimePartitionedTable; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.isBigQueryNativeTable; import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport; import com.google.api.client.json.gson.GsonFactory; import com.google.api.services.bigquery.Bigquery; import com.google.auth.http.HttpCredentialsAdapter; import com.google.cloud.BaseServiceException; import com.google.cloud.RetryOption; import com.google.cloud.bigquery.BigQuery; import com.google.cloud.bigquery.BigQueryException; import com.google.cloud.bigquery.Clustering; import com.google.cloud.bigquery.Dataset; import com.google.cloud.bigquery.DatasetId; import com.google.cloud.bigquery.DatasetInfo; import com.google.cloud.bigquery.EncryptionConfiguration; import com.google.cloud.bigquery.FormatOptions; import com.google.cloud.bigquery.Job; import com.google.cloud.bigquery.JobConfiguration; import com.google.cloud.bigquery.JobId; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.JobStatistics; import com.google.cloud.bigquery.LoadJobConfiguration; import com.google.cloud.bigquery.QueryJobConfiguration; import com.google.cloud.bigquery.QueryJobConfiguration.Priority; import com.google.cloud.bigquery.RangePartitioning; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.Table; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.TableResult; import com.google.cloud.bigquery.TimePartitioning; import com.google.cloud.http.BaseHttpServiceException; import com.google.common.base.Preconditions; import com.google.common.cache.Cache; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; import java.io.IOException; import java.io.UncheckedIOException; import java.security.GeneralSecurityException; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Optional; import java.util.OptionalLong; import java.util.Set; import java.util.UUID; import java.util.concurrent.Callable; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors; import java.util.stream.Stream; import java.util.stream.StreamSupport; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.threeten.bp.Duration; // holds caches and mappings // presto converts the dataset and table names to lower case, while BigQuery is case sensitive // the mappings here keep the mappings public class BigQueryClient { private static final Logger log = LoggerFactory.getLogger(BigQueryClient.class); private static final List CLEANUP_JOBS = new ArrayList<>(); private final BigQuery bigQuery; // The rest client is generated directly from the API, and therefore returns more metadata than // the // google-cloud-bigquery client above, private final Bigquery bigqueryRestClient; private final Cache destinationTableCache; private final Optional materializationProject; private final Optional materializationDataset; private final JobConfigurationFactory jobConfigurationFactory; private final Optional jobCompletionListener; private final long bigQueryJobTimeoutInMinutes; public BigQueryClient( BigQuery bigQuery, Optional materializationProject, Optional materializationDataset, Cache destinationTableCache, Map labels, Priority queryJobPriority, Optional jobCompletionListener, long bigQueryJobTimeoutInMinutes) { this.bigQuery = bigQuery; this.bigqueryRestClient = createRestClient(bigQuery); this.materializationProject = materializationProject; this.materializationDataset = materializationDataset; this.destinationTableCache = destinationTableCache; this.jobConfigurationFactory = new JobConfigurationFactory(labels, queryJobPriority); this.jobCompletionListener = jobCompletionListener; this.bigQueryJobTimeoutInMinutes = bigQueryJobTimeoutInMinutes; } static Bigquery createRestClient(BigQuery bigQuery) { try { // Initialize client that will be used to send requests. This client only needs to be created // once, and can be reused for multiple requests HttpCredentialsAdapter httpCredentialsAdapter = new HttpCredentialsAdapter(bigQuery.getOptions().getCredentials()); Bigquery.Builder client = new Bigquery.Builder( GoogleNetHttpTransport.newTrustedTransport(), GsonFactory.getDefaultInstance(), httpRequest -> { httpCredentialsAdapter.initialize(httpRequest); httpRequest.setThrowExceptionOnExecuteError(false); }) .setApplicationName(bigQuery.getOptions().getUserAgent()); return client.build(); } catch (GeneralSecurityException gse) { throw new BigQueryConnectorException( "Failed to create new trusted transport for BigQuery REST client", gse); } catch (IOException ioe) { throw new UncheckedIOException(ioe); } } public static synchronized void runCleanupJobs() { log.info("Running cleanup jobs. Jobs count is " + CLEANUP_JOBS.size()); for (Runnable job : CLEANUP_JOBS) { try { job.run(); } catch (Exception e) { log.warn( "Caught exception while running cleanup job. Continue to run the rest of the jobs", e); } } log.info("Clearing the cleanup jobs list"); CLEANUP_JOBS.clear(); log.info("Finished to run cleanup jobs."); } /** * Waits for a BigQuery Job to complete: this is a blocking function. * * @param job The {@code Job} to keep track of. */ public JobInfo waitForJob(Job job) { try { Job completedJob = job.waitFor( RetryOption.initialRetryDelay(Duration.ofSeconds(1)), RetryOption.totalTimeout(Duration.ofMinutes(bigQueryJobTimeoutInMinutes))); if (completedJob == null || completedJob.getStatus().getError() != null) { throw new UncheckedIOException( new IOException( completedJob != null ? completedJob.getStatus().getError().toString() : null)); } if (!completedJob.isDone()) { completedJob.cancel(); throw new IllegalStateException( String.format("Job aborted due to timeout : %s minutes", bigQueryJobTimeoutInMinutes)); } jobCompletionListener.ifPresent(jcl -> jcl.accept(completedJob)); return completedJob; } catch (InterruptedException e) { throw new RuntimeException( "Could not copy table from temporary sink to destination table.", e); } } // return empty if no filters are used private static Optional createWhereClause(String[] filters) { if (filters.length == 0) { return Optional.empty(); } return Optional.of(Stream.of(filters).collect(Collectors.joining(") AND (", "(", ")"))); } public TableInfo getTable(TableId tableId) { return bigQuery.getTable(tableId); } /** * Checks whether the requested table exists in BigQuery. * * @param tableId The TableId of the requested table in BigQuery * @return True if the requested table exists in BigQuery, false otherwise. */ public boolean tableExists(TableId tableId) { return getTable(tableId) != null; } /** * Creates an empty table in BigQuery. * * @param tableId The TableId of the table to be created. * @param schema The Schema of the table to be created. * @return The {@code Table} object representing the table that was created. *

public TableInfo createTable(TableId tableId, Schema schema) { return * createTable(tableId, schema, Optional.empty()); } */ /** * Creates an empty table in BigQuery. * * @param tableId The TableId of the table to be created. * @param schema The Schema of the table to be created. * @param options Allows configuring the created table * @return The {@code Table} object representing the table that was created. */ public TableInfo createTable(TableId tableId, Schema schema, CreateTableOptions options) { StandardTableDefinition.Builder tableDefinition = StandardTableDefinition.newBuilder().setSchema(schema); options .getClusteredFields() .ifPresent( clusteredFields -> tableDefinition.setClustering( Clustering.newBuilder().setFields(clusteredFields).build())); TableInfo.Builder tableInfo = TableInfo.newBuilder(tableId, tableDefinition.build()); options .getKmsKeyName() .ifPresent( keyName -> tableInfo.setEncryptionConfiguration( EncryptionConfiguration.newBuilder().setKmsKeyName(keyName).build())); if (!options.getBigQueryTableLabels().isEmpty()) { tableInfo.setLabels(options.getBigQueryTableLabels()); } return bigQuery.create(tableInfo.build()); } /** * Creates a temporary table with a job to cleanup after application end, and the same location as * the destination table; the temporary table will have the same name as the destination table, * with the current time in milliseconds appended to it; useful for holding temporary data in * order to overwrite the destination table. * * @param destinationTableId The TableId of the eventual destination for the data going into the * temporary table. * @param schema The Schema of the destination / temporary table. * @return The {@code Table} object representing the created temporary table. */ public TableInfo createTempTable(TableId destinationTableId, Schema schema) { TableId tempTableId = createTempTableId(destinationTableId); TableInfo tableInfo = TableInfo.newBuilder(tempTableId, StandardTableDefinition.of(schema)).build(); TableInfo tempTable = bigQuery.create(tableInfo); CLEANUP_JOBS.add(() -> deleteTable(tempTable.getTableId())); return tempTable; } public TableInfo createTempTableAfterCheckingSchema( TableId destinationTableId, Schema schema, boolean enableModeCheckForSchemaFields) throws IllegalArgumentException { TableInfo destinationTable = getTable(destinationTableId); Schema tableSchema = destinationTable.getDefinition().getSchema(); ComparisonResult schemaWritableResult = BigQueryUtil.schemaWritable( schema, // sourceSchema tableSchema, // destinationSchema false, // regardFieldOrder enableModeCheckForSchemaFields); Preconditions.checkArgument( schemaWritableResult.valuesAreEqual(), new BigQueryConnectorException.InvalidSchemaException( "Destination table's schema is not compatible with dataframe's schema. " + schemaWritableResult.makeMessage())); return createTempTable(destinationTableId, schema); } public TableId createTempTableId(TableId destinationTableId) { String tempProject = materializationProject.orElseGet(destinationTableId::getProject); String tempDataset = materializationDataset.orElseGet(destinationTableId::getDataset); String tableName = destinationTableId.getTable() + System.nanoTime(); TableId tempTableId = tempProject == null ? TableId.of(tempDataset, tableName) : TableId.of(tempProject, tempDataset, tableName); return tempTableId; } /** * Deletes this table in BigQuery. * * @param tableId The TableId of the table to be deleted. * @return True if the operation was successful, false otherwise. */ public boolean deleteTable(TableId tableId) { log.info("Deleting table " + fullTableName(tableId)); return bigQuery.delete(tableId); } private Job copyData( TableId sourceTableId, TableId destinationTableId, JobInfo.WriteDisposition writeDisposition) { String queryFormat = "SELECT * FROM `%s`"; String temporaryTableName = fullTableName(sourceTableId); String sqlQuery = String.format(queryFormat, temporaryTableName); QueryJobConfiguration queryConfig = jobConfigurationFactory .createQueryJobConfigurationBuilder(sqlQuery, Collections.emptyMap()) .setUseLegacySql(false) .setDestinationTable(destinationTableId) .setWriteDisposition(writeDisposition) .build(); return create(JobInfo.newBuilder(queryConfig).build()); } public boolean isTablePartitioned(TableId tableId) { TableInfo table = getTable(tableId); if (table == null) { return false; } TableDefinition tableDefinition = table.getDefinition(); if (tableDefinition instanceof StandardTableDefinition) { StandardTableDefinition sdt = (StandardTableDefinition) tableDefinition; return sdt.getTimePartitioning() != null || sdt.getRangePartitioning() != null; } return false; } /** * Overwrites the partitions of the destination table, using the partitions from the given * temporary table, transactionally. * * @param temporaryTableId The {@code TableId} representing the temporary-table. * @param destinationTableId The {@code TableId} representing the destination table. * @return The {@code Job} object representing this operation (which can be tracked to wait until * it has finished successfully). */ public Job overwriteDestinationWithTemporaryDynamicPartitons( TableId temporaryTableId, TableId destinationTableId) { TableDefinition destinationDefinition = getTable(destinationTableId).getDefinition(); String sqlQuery = null; if (destinationDefinition instanceof StandardTableDefinition) { String destinationTableName = fullTableName(destinationTableId); String temporaryTableName = fullTableName(temporaryTableId); StandardTableDefinition sdt = (StandardTableDefinition) destinationDefinition; TimePartitioning timePartitioning = sdt.getTimePartitioning(); if (timePartitioning != null) { sqlQuery = getQueryForTimePartitionedTable( destinationTableName, temporaryTableName, sdt, timePartitioning); } else { RangePartitioning rangePartitioning = sdt.getRangePartitioning(); if (rangePartitioning != null) { sqlQuery = getQueryForRangePartitionedTable( destinationTableName, temporaryTableName, sdt, rangePartitioning); } } if (sqlQuery != null) { QueryJobConfiguration queryConfig = jobConfigurationFactory .createQueryJobConfigurationBuilder(sqlQuery, Collections.emptyMap()) .setUseLegacySql(false) .build(); return create(JobInfo.newBuilder(queryConfig).build()); } } // no partitioning default to statndard overwrite return overwriteDestinationWithTemporary(temporaryTableId, destinationTableId); } /** * Overwrites the given destination table, with all the data from the given temporary table, * transactionally. * * @param temporaryTableId The {@code TableId} representing the temporary-table. * @param destinationTableId The {@code TableId} representing the destination table. * @return The {@code Job} object representing this operation (which can be tracked to wait until * it has finished successfully). */ public Job overwriteDestinationWithTemporary( TableId temporaryTableId, TableId destinationTableId) { String queryFormat = "MERGE `%s`\n" + "USING (SELECT * FROM `%s`)\n" + "ON FALSE\n" + "WHEN NOT MATCHED THEN INSERT ROW\n" + "WHEN NOT MATCHED BY SOURCE THEN DELETE"; String destinationTableName = fullTableName(destinationTableId); String temporaryTableName = fullTableName(temporaryTableId); String sqlQuery = String.format(queryFormat, destinationTableName, temporaryTableName); QueryJobConfiguration queryConfig = jobConfigurationFactory .createQueryJobConfigurationBuilder(sqlQuery, Collections.emptyMap()) .setUseLegacySql(false) .build(); return create(JobInfo.newBuilder(queryConfig).build()); } /** * Appends all the data from the given temporary table, to the given destination table, * transactionally. * * @param temporaryTableId The {@code TableId} representing the temporary-table. * @param destinationTableId The {@code TableId} representing the destination table. * @return The {@code Job} object representing this operation (which can be tracked to wait until * it has finished successfully). */ public Job appendDestinationWithTemporary(TableId temporaryTableId, TableId destinationTableId) { return copyData(temporaryTableId, destinationTableId, JobInfo.WriteDisposition.WRITE_APPEND); } /** * Creates a String appropriately formatted for BigQuery Storage Write API representing the given * table. * * @param tableId The {@code TableId} representing the given object. * @return The formatted String. */ public String createTablePathForBigQueryStorage(TableId tableId) { Preconditions.checkNotNull(tableId, "tableId cannot be null"); // We need the full path for the createWriteStream method. We used to have it by creating the // table and then taking its full tableId, but that caused an issue with the ErrorIfExists // implementation (now the check, done in another place is positive). To solve it, we do what // the BigQuery client does on Table ID with no project - take the BigQuery client own project // ID. This gives us the same behavior but allows us to defer the table creation to the last // minute. String project = tableId.getProject() != null ? tableId.getProject() : getProjectId(); return String.format( "projects/%s/datasets/%s/tables/%s", project, tableId.getDataset(), tableId.getTable()); } public TableInfo getReadTable(ReadTableOptions options) { Optional query = options.query(); // first, let check if this is a query if (query.isPresent()) { // in this case, let's materialize it and use it as the table validateViewsEnabled(options); String sql = query.get(); return materializeQueryToTable( sql, options.expirationTimeInMinutes(), options.getQueryParameterHelper(), options.getKmsKeyName()); } TableInfo table = getTable(options.tableId()); if (table == null) { return null; } TableDefinition tableDefinition = table.getDefinition(); TableDefinition.Type tableType = tableDefinition.getType(); if (TableDefinition.Type.TABLE == tableType || TableDefinition.Type.EXTERNAL == tableType || TableDefinition.Type.SNAPSHOT == tableType) { return table; } if (TableDefinition.Type.VIEW == tableType || TableDefinition.Type.MATERIALIZED_VIEW == tableType) { validateViewsEnabled(options); // view materialization is done in a lazy manner, so it can occur only when the data is read return table; } // not regular table or a view throw new BigQueryConnectorException( BigQueryErrorCode.UNSUPPORTED, String.format( "Table type '%s' of table '%s.%s' is not supported", tableType, table.getTableId().getDataset(), table.getTableId().getTable())); } /** * Returns the schema of the table/query/view. Uses dryRun to get the query schema instead of * materializing it. * * @param options The {@code ReadTableOptions} options for reading the data source. * @return The schema. */ public Schema getReadTableSchema(ReadTableOptions options) { Optional query = options.query(); // lazy materialization if it's a query if (query.isPresent()) { validateViewsEnabled(options); String sql = query.get(); return getQueryResultSchema( sql, Collections.emptyMap(), options.getQueryParameterHelper(), options.getKmsKeyName()); } TableInfo table = getReadTable(options); return table != null ? table.getDefinition().getSchema() : null; } private void validateViewsEnabled(ReadTableOptions options) { if (!options.viewsEnabled()) { throw new BigQueryConnectorException( BigQueryErrorCode.UNSUPPORTED, String.format( "Views are not enabled. You can enable views by setting '%s' to true. Notice" + " additional cost may occur.", options.viewEnabledParamName())); } } DatasetId toDatasetId(TableId tableId) { return DatasetId.of(tableId.getProject(), tableId.getDataset()); } public String getProjectId() { return bigQuery.getOptions().getProjectId(); } public Iterable listDatasets() { return listDatasetsForProject(getProjectId()); } public Iterable listDatasetsForProject(String projectId) { return bigQuery.listDatasets(projectId).iterateAll(); } public Iterable listTables(DatasetId datasetId, TableDefinition.Type... types) { Set allowedTypes = ImmutableSet.copyOf(types); Iterable
allTables = bigQuery.listTables(datasetId).iterateAll(); return StreamSupport.stream(allTables.spliterator(), false) .filter(table -> allowedTypes.contains(table.getDefinition().getType())) .collect(ImmutableList.toImmutableList()); } public Table update(TableInfo table) { return bigQuery.update(table); } public Job createAndWaitFor(JobConfiguration.Builder jobConfiguration) { return createAndWaitFor(jobConfiguration.build()); } public Job createAndWaitFor(JobConfiguration jobConfiguration) { JobInfo jobInfo = JobInfo.of(jobConfiguration); Job job = bigQuery.create(jobInfo); Job returnedJob = null; log.info("Submitted job {}. jobId: {}", jobConfiguration, job.getJobId()); try { Job completedJob = job.waitFor(); if (completedJob == null) { throw new BigQueryException( BaseHttpServiceException.UNKNOWN_CODE, String.format("Failed to run the job [%s], got null back", job)); } if (completedJob.getStatus().getError() != null) { throw new BigQueryException( BaseHttpServiceException.UNKNOWN_CODE, String.format( "Failed to run the job [%s], due to '%s'", completedJob.getStatus().getError())); } return completedJob; } catch (InterruptedException e) { Thread.currentThread().interrupt(); throw new BigQueryException( BaseHttpServiceException.UNKNOWN_CODE, String.format("Failed to run the job [%s], task was interrupted", job), e); } } Job create(JobInfo jobInfo) { return bigQuery.create(jobInfo); } public TableResult query(String sql) { try { return bigQuery.query( jobConfigurationFactory .createQueryJobConfigurationBuilder(sql, Collections.emptyMap()) .build()); } catch (InterruptedException e) { Thread.currentThread().interrupt(); throw new BigQueryException( BaseHttpServiceException.UNKNOWN_CODE, String.format("Failed to run the query [%s]", sql), e); } } String createSql( TableId table, ImmutableList requiredColumns, String[] filters, OptionalLong snapshotTimeMillis) { String columns = requiredColumns.isEmpty() ? "*" : requiredColumns.stream() .map(column -> String.format("`%s`", column)) .collect(Collectors.joining(",")); return createSql(table, columns, filters, snapshotTimeMillis); } // assuming the SELECT part is properly formatted, can be used to call functions such as COUNT and // SUM String createSql( TableId table, String formattedQuery, String[] filters, OptionalLong snapshotTimeMillis) { String tableName = fullTableName(table); String whereClause = createWhereClause(filters).map(clause -> "WHERE " + clause).orElse(""); String snapshotTimeClause = snapshotTimeMillis.isPresent() ? String.format( "FOR SYSTEM_TIME AS OF TIMESTAMP_MILLIS(%d)", snapshotTimeMillis.getAsLong()) : ""; return String.format( "SELECT %s FROM `%s` %s %s", formattedQuery, tableName, whereClause, snapshotTimeClause); } public static String fullTableName(TableId tableId) { if (tableId.getProject() == null) { return String.format("%s.%s", tableId.getDataset(), tableId.getTable()); } else { return String.format( "%s.%s.%s", tableId.getProject(), tableId.getDataset(), tableId.getTable()); } } public long calculateTableSize(TableId tableId, Optional filter) { return calculateTableSize(getTable(tableId), filter); } public long calculateTableSize(TableInfo tableInfo, Optional filter) { TableDefinition.Type type = tableInfo.getDefinition().getType(); if ((type == TableDefinition.Type.EXTERNAL || type == TableDefinition.Type.TABLE) && !filter.isPresent()) { if (isBigQueryNativeTable(tableInfo) && tableInfo.getRequirePartitionFilter() != null && tableInfo.getRequirePartitionFilter()) { List partitioningFields = getPartitionFields(tableInfo); if (partitioningFields.isEmpty()) { throw new IllegalStateException( "Could not find partitioning columns for table requiring partition filter: " + tableInfo.getTableId()); } String table = fullTableName(tableInfo.getTableId()); return getNumberOfRows( String.format( "SELECT COUNT(*) from `%s` WHERE %s IS NOT NULL", table, partitioningFields.get(0))); } String table = fullTableName(tableInfo.getTableId()); return getNumberOfRows(String.format("SELECT COUNT(*) from `%s`", table)); } else if (type == TableDefinition.Type.VIEW || type == TableDefinition.Type.MATERIALIZED_VIEW || ((type == TableDefinition.Type.TABLE || type == TableDefinition.Type.EXTERNAL) && filter.isPresent())) { // run a query String table = fullTableName(tableInfo.getTableId()); String whereClause = filter.map(f -> "WHERE " + f).orElse(""); return getNumberOfRows(String.format("SELECT COUNT(*) from `%s` %s", table, whereClause)); } else { throw new IllegalArgumentException( String.format( "Unsupported table type %s for table %s", type, fullTableName(tableInfo.getTableId()))); } } private long getNumberOfRows(String sql) { TableResult result = query(sql); long numberOfRows = result.iterateAll().iterator().next().get(0).getLongValue(); return numberOfRows; } /** * Runs the provided query on BigQuery and saves the result in a temporary table. * * @param querySql the query to be run * @param expirationTimeInMinutes the expiration time of the temporary table * @param queryParameterHelper the query parameter helper * @param kmsKeyName optional KMS key name to be used for encrypting the temporary table * @return a reference to the table */ public TableInfo materializeQueryToTable( String querySql, int expirationTimeInMinutes, QueryParameterHelper queryParameterHelper, Optional kmsKeyName) { Optional tableId = materializationDataset.map(ignored -> createDestinationTableWithoutReference()); return materializeTable( querySql, tableId, expirationTimeInMinutes, queryParameterHelper, kmsKeyName); } TableId createDestinationTableWithoutReference() { return createDestinationTable(Optional.empty(), Optional.empty()); } TableId createDestinationTable( Optional referenceProject, Optional referenceDataset) { String project = materializationProject.orElse(referenceProject.orElse(null)); String dataset = materializationDataset.orElse(referenceDataset.orElse(null)); String name = String.format( "_bqc_%s", UUID.randomUUID().toString().toLowerCase(Locale.ENGLISH).replace("-", "")); return project == null ? TableId.of(dataset, name) : TableId.of(project, dataset, name); } /** * Runs the provided query on BigQuery and saves the result in a temporary table. * * @param querySql the query to be run * @param additionalQueryJobLabels the labels to insert on the query job * @return a reference to the table */ public TableInfo materializeQueryToTable( String querySql, int expirationTimeInMinutes, Map additionalQueryJobLabels, QueryParameterHelper queryParameterHelper) { return materializeQueryToTable( querySql, expirationTimeInMinutes, additionalQueryJobLabels, queryParameterHelper, Optional.empty()); } /** * Runs the provided query on BigQuery and saves the result in a temporary table. * * @param querySql the query to be run * @param additionalQueryJobLabels the labels to insert on the query job * @return a reference to the table */ public TableInfo materializeQueryToTable( String querySql, int expirationTimeInMinutes, Map additionalQueryJobLabels, QueryParameterHelper queryParameterHelper, Optional kmsKeyName) { Optional destinationTableId = materializationDataset.map(ignored -> createDestinationTableWithoutReference()); TempTableBuilder tableBuilder = new TempTableBuilder( this, querySql, destinationTableId, expirationTimeInMinutes, jobConfigurationFactory, additionalQueryJobLabels, queryParameterHelper, kmsKeyName); return materializeTable(querySql, tableBuilder); } /** * Runs the provided query on BigQuery and saves the result in a temporary table. This method is * intended to be used to materialize views, so the view location (based on its TableId) is taken * as a location for the temporary table, removing the need to set the materializationProject and * materializationDataset properties * * @param querySql the query to be run * @param viewId the view the query came from * @return a reference to the table */ public TableInfo materializeViewToTable( String querySql, TableId viewId, int expirationTimeInMinutes) { TableId tableId = createDestinationTable( Optional.ofNullable(viewId.getProject()), Optional.ofNullable(viewId.getDataset())); return materializeTable( querySql, Optional.of(tableId), expirationTimeInMinutes, QueryParameterHelper.none(), Optional.empty()); } public Schema getQueryResultSchema( String querySql, Map additionalQueryJobLabels, QueryParameterHelper queryParameterHelper) { return getQueryResultSchema( querySql, additionalQueryJobLabels, queryParameterHelper, Optional.empty()); } public Schema getQueryResultSchema( String querySql, Map additionalQueryJobLabels, QueryParameterHelper queryParameterHelper, Optional kmsKeyName) { QueryJobConfiguration.Builder builder = jobConfigurationFactory .createParameterizedQueryJobConfigurationBuilder( querySql, additionalQueryJobLabels, queryParameterHelper) .setDryRun(true); kmsKeyName.ifPresent( k -> builder.setDestinationEncryptionConfiguration( EncryptionConfiguration.newBuilder().setKmsKeyName(k).build())); JobInfo jobInfo = JobInfo.of(builder.build()); log.info("running query dryRun {}", querySql); JobInfo completedJobInfo = create(jobInfo); if (completedJobInfo.getStatus().getError() != null) { throw BigQueryUtil.convertToBigQueryException(completedJobInfo.getStatus().getError()); } JobStatistics.QueryStatistics queryStatistics = completedJobInfo.getStatistics(); return queryStatistics.getSchema(); } private TableInfo materializeTable( String querySql, Optional destinationTableId, int expirationTimeInMinutes, QueryParameterHelper queryParameterHelper) { return materializeTable( querySql, destinationTableId, expirationTimeInMinutes, queryParameterHelper, Optional.empty()); } private TableInfo materializeTable( String querySql, Optional destinationTableId, int expirationTimeInMinutes, QueryParameterHelper queryParameterHelper, Optional kmsKeyName) { try { return destinationTableCache.get( querySql, new TempTableBuilder( this, querySql, destinationTableId, expirationTimeInMinutes, jobConfigurationFactory, Collections.emptyMap(), queryParameterHelper, kmsKeyName)); } catch (Exception e) { throw new BigQueryConnectorException( BigQueryErrorCode.BIGQUERY_VIEW_DESTINATION_TABLE_CREATION_FAILED, String.format( "Error creating destination table using the following query: [%s]", querySql), e); } } private TableInfo materializeTable(String querySql, TempTableBuilder tmpTableBuilder) { try { return destinationTableCache.get(querySql, tmpTableBuilder); } catch (Exception e) { throw new BigQueryConnectorException( BigQueryErrorCode.BIGQUERY_VIEW_DESTINATION_TABLE_CREATION_FAILED, String.format( "Error creating destination table using the following query: [%s]", querySql), e); } } public JobStatistics.LoadStatistics loadDataIntoTable( LoadDataOptions options, List sourceUris, FormatOptions formatOptions, JobInfo.WriteDisposition writeDisposition, Optional schema, TableId destinationTable) { LoadJobConfiguration.Builder jobConfiguration = jobConfigurationFactory .createLoadJobConfigurationBuilder(destinationTable, sourceUris, formatOptions) .setCreateDisposition(JobInfo.CreateDisposition.CREATE_IF_NEEDED) .setWriteDisposition(writeDisposition); if (schema.isPresent()) { jobConfiguration.setSchema(schema.get()); } else { // no schema, probably table does not exist jobConfiguration.setAutodetect(true); } options.getCreateDisposition().ifPresent(jobConfiguration::setCreateDisposition); if (options.getPartitionField().isPresent() || options.getPartitionType().isPresent()) { TimePartitioning.Builder timePartitionBuilder = TimePartitioning.newBuilder(options.getPartitionTypeOrDefault()); options.getPartitionExpirationMs().ifPresent(timePartitionBuilder::setExpirationMs); options .getPartitionRequireFilter() .ifPresent(timePartitionBuilder::setRequirePartitionFilter); options.getPartitionField().ifPresent(timePartitionBuilder::setField); jobConfiguration.setTimePartitioning(timePartitionBuilder.build()); } if (options.getPartitionField().isPresent() && options.getPartitionRange().isPresent()) { RangePartitioning.Builder rangePartitionBuilder = RangePartitioning.newBuilder(); options.getPartitionField().ifPresent(rangePartitionBuilder::setField); options.getPartitionRange().ifPresent(rangePartitionBuilder::setRange); jobConfiguration.setRangePartitioning(rangePartitionBuilder.build()); } options .getClusteredFields() .ifPresent( clusteredFields -> { Clustering clustering = Clustering.newBuilder().setFields(clusteredFields).build(); jobConfiguration.setClustering(clustering); }); if (options.isUseAvroLogicalTypes()) { jobConfiguration.setUseAvroLogicalTypes(true); } if (!options.getDecimalTargetTypes().isEmpty()) { jobConfiguration.setDecimalTargetTypes(options.getDecimalTargetTypes()); } if (!options.getLoadSchemaUpdateOptions().isEmpty()) { jobConfiguration.setSchemaUpdateOptions(options.getLoadSchemaUpdateOptions()); } options .getKmsKeyName() .ifPresent( destinationTableKmsKeyName -> jobConfiguration.setDestinationEncryptionConfiguration( EncryptionConfiguration.newBuilder() .setKmsKeyName(destinationTableKmsKeyName) .build())); Job finishedJob = null; try { finishedJob = createAndWaitFor(jobConfiguration); if (finishedJob.getStatus().getError() != null) { throw new BigQueryException( BaseHttpServiceException.UNKNOWN_CODE, String.format( "Failed to load to %s in job %s. BigQuery error was '%s'", BigQueryUtil.friendlyTableName(options.getTableId()), finishedJob.getJobId(), finishedJob.getStatus().getError().getMessage()), finishedJob.getStatus().getError()); } else { log.info( "Done loading to {}. jobId: {}", BigQueryUtil.friendlyTableName(options.getTableId()), finishedJob.getJobId()); return finishedJob.getStatistics(); } } catch (Exception e) { if (finishedJob == null) { log.error( "Unable to create the job to load to {}", BigQueryUtil.friendlyTableName(options.getTableId())); throw e; } TimePartitioning.Type partitionType = options.getPartitionTypeOrDefault(); if (e.getMessage() .equals( String.format("Cannot output %s partitioned data in LegacySQL", partitionType)) && formatOptions.equals(FormatOptions.parquet())) { throw new BigQueryException( 0, String.format( "%s time partitioning is not available " + "for load jobs from PARQUET in this project yet. Please replace the intermediate " + "format to AVRO or contact your account manager to enable this.", partitionType), e); } JobId jobId = finishedJob.getJobId(); log.warn( String.format( "Failed to load the data into BigQuery, JobId for debug purposes is [%s:%s.%s]", jobId.getProject(), jobId.getLocation(), jobId.getJob())); throw new BigQueryException(0, "Problem loading data into BigQuery", e); } } /** Creates the table with the given schema, only if it does not exist yet. */ public void createTableIfNeeded( TableId tableId, Schema bigQuerySchema, CreateTableOptions options) { if (!tableExists(tableId)) { createTable(tableId, bigQuerySchema, options); } } /** * Retrieves the table's metadata from the REST client, may contain more information than the * regular one */ public Optional getRestTable(TableId tableId) { try { // tableId.getProject() may be null, so we replacing it with the default project id String project = Optional.ofNullable(tableId.getProject()) .orElseGet(() -> bigQuery.getOptions().getProjectId()); return Optional.ofNullable( bigqueryRestClient .tables() .get(project, tableId.getDataset(), tableId.getTable()) .execute()); } catch (IOException e) { throw new UncheckedIOException(e); } } /** Returns true f the dataset exists, false otherwise. */ public boolean datasetExists(DatasetId datasetId) { return bigQuery.getDataset(datasetId) != null; } public void createDataset(DatasetId datasetId, Map metadata) { DatasetInfo.Builder datasetInfo = DatasetInfo.newBuilder(datasetId); // In a non-catalog scenario, both BigQueryOptions.quotaProjectId and // BigQueryOptions.projectId // will be set to the parent projectId, as before. Optional.ofNullable(bigQuery.getOptions().getLocation()).ifPresent(datasetInfo::setLocation); if (metadata != null && !metadata.isEmpty()) { Optional.ofNullable(metadata.get("bigquery_location")).ifPresent(datasetInfo::setLocation); Optional.ofNullable(metadata.get("comment")).ifPresent(datasetInfo::setDescription); } bigQuery.create(datasetInfo.build()); } public boolean deleteDataset(DatasetId datasetId, boolean cascade) { BigQuery.DatasetDeleteOption[] options = cascade ? new BigQuery.DatasetDeleteOption[] {BigQuery.DatasetDeleteOption.deleteContents()} : new BigQuery.DatasetDeleteOption[] {}; return bigQuery.delete(datasetId, options); } public DatasetInfo getDataset(DatasetId datasetId) { return bigQuery.getDataset(datasetId); } public interface ReadTableOptions { TableId tableId(); Optional query(); boolean viewsEnabled(); String viewEnabledParamName(); int expirationTimeInMinutes(); QueryParameterHelper getQueryParameterHelper(); default Optional getKmsKeyName() { return Optional.empty(); } } public interface LoadDataOptions { TableId getTableId(); Optional getCreateDisposition(); Optional getPartitionField(); Optional getPartitionType(); Optional getPartitionRange(); TimePartitioning.Type getPartitionTypeOrDefault(); OptionalLong getPartitionExpirationMs(); Optional getPartitionRequireFilter(); Optional> getClusteredFields(); boolean isUseAvroLogicalTypes(); List getDecimalTargetTypes(); List getLoadSchemaUpdateOptions(); boolean getEnableModeCheckForSchemaFields(); Optional getKmsKeyName(); } public interface CreateTableOptions { default Optional getKmsKeyName() { return Optional.empty(); } default Map getBigQueryTableLabels() { return Collections.emptyMap(); } default Optional> getClusteredFields() { return Optional.empty(); } static CreateTableOptions of( final Optional kmsKeyName, final Map bigQueryTableLabels, final Optional> clusteredFields) { return new CreateTableOptions() { @Override public Optional getKmsKeyName() { return kmsKeyName; } @Override public Map getBigQueryTableLabels() { return bigQueryTableLabels; } @Override public Optional> getClusteredFields() { return clusteredFields; } }; } } static class TempTableBuilder implements Callable { final BigQueryClient bigQueryClient; final String querySql; final Optional tempTable; final int expirationTimeInMinutes; final JobConfigurationFactory jobConfigurationFactory; final Map additionalQueryJobLabels; final QueryParameterHelper queryParameterHelper; final Optional kmsKeyName; TempTableBuilder( BigQueryClient bigQueryClient, String querySql, Optional tempTable, int expirationTimeInMinutes, JobConfigurationFactory jobConfigurationFactory, Map additionalQueryJobLabels, QueryParameterHelper queryParameterHelper) { this( bigQueryClient, querySql, tempTable, expirationTimeInMinutes, jobConfigurationFactory, additionalQueryJobLabels, queryParameterHelper, Optional.empty()); } TempTableBuilder( BigQueryClient bigQueryClient, String querySql, Optional tempTable, int expirationTimeInMinutes, JobConfigurationFactory jobConfigurationFactory, Map additionalQueryJobLabels, QueryParameterHelper queryParameterHelper, Optional kmsKeyName) { this.bigQueryClient = bigQueryClient; this.querySql = querySql; this.tempTable = tempTable; this.expirationTimeInMinutes = expirationTimeInMinutes; this.jobConfigurationFactory = jobConfigurationFactory; this.additionalQueryJobLabels = additionalQueryJobLabels; this.queryParameterHelper = queryParameterHelper; this.kmsKeyName = kmsKeyName; } @Override public TableInfo call() { return createTableFromQuery(); } TableInfo createTableFromQuery() { if (tempTable.isPresent()) { log.info("DestinationTable is {}", tempTable.get()); } else { log.info("DestinationTable is automatically generated"); } QueryJobConfiguration.Builder queryJobConfigurationBuilder = jobConfigurationFactory.createParameterizedQueryJobConfigurationBuilder( querySql, additionalQueryJobLabels, queryParameterHelper); tempTable.ifPresent(queryJobConfigurationBuilder::setDestinationTable); kmsKeyName.ifPresent( k -> queryJobConfigurationBuilder.setDestinationEncryptionConfiguration( EncryptionConfiguration.newBuilder().setKmsKeyName(k).build())); JobInfo jobInfo = JobInfo.of(queryJobConfigurationBuilder.build()); log.info("running query [{}]", querySql); JobInfo completedJobInfo = bigQueryClient.waitForJob(bigQueryClient.create(jobInfo)); if (completedJobInfo.getStatus().getError() != null) { throw BigQueryUtil.convertToBigQueryException(completedJobInfo.getStatus().getError()); } if (tempTable.isPresent()) { // Registering a cleanup job CLEANUP_JOBS.add(() -> bigQueryClient.deleteTable(tempTable.get())); // add expiration time to the table TableInfo createdTable = bigQueryClient.getTable(tempTable.get()); long expirationTime = createdTable.getCreationTime() + TimeUnit.MINUTES.toMillis(expirationTimeInMinutes); Table updatedTable = bigQueryClient.update( createdTable.toBuilder().setExpirationTime(expirationTime).build()); return updatedTable; } // temp table was auto generated return bigQueryClient.getTable( ((QueryJobConfiguration) completedJobInfo.getConfiguration()).getDestinationTable()); } Job waitForJob(Job job) { try { log.info( "Job submitted : {}, {}, Job type : {}", job.getJobId(), job.getSelfLink(), job.getConfiguration().getType()); Job completedJob = job.waitFor(); log.info( "Job has finished {} creationTime : {}, startTime : {}, endTime : {} ", completedJob.getJobId(), completedJob.getStatistics().getCreationTime(), completedJob.getStatistics().getStartTime(), completedJob.getStatistics().getEndTime()); log.debug("Job has finished. {}", completedJob); return completedJob; } catch (InterruptedException e) { Thread.currentThread().interrupt(); throw new BigQueryException( BaseServiceException.UNKNOWN_CODE, String.format("Job %s has been interrupted", job.getJobId()), e); } } } static class JobConfigurationFactory { private final ImmutableMap labels; private final Priority queryJobPriority; public JobConfigurationFactory(Map labels, Priority queryJobPriority) { this.labels = ImmutableMap.copyOf(labels); this.queryJobPriority = queryJobPriority; } QueryJobConfiguration.Builder createQueryJobConfigurationBuilder( String querySql, Map additionalQueryJobLabels) { return createParameterizedQueryJobConfigurationBuilder( querySql, additionalQueryJobLabels, QueryParameterHelper.none()); } QueryJobConfiguration.Builder createParameterizedQueryJobConfigurationBuilder( String querySql, Map additionalQueryJobLabels, QueryParameterHelper queryParameterHelper) { QueryJobConfiguration.Builder builder = QueryJobConfiguration.newBuilder(querySql).setPriority(queryJobPriority); queryParameterHelper.configureBuilder(builder); Map allLabels = new HashMap<>(additionalQueryJobLabels); if (labels != null && !labels.isEmpty()) { allLabels.putAll(labels); } builder.setLabels(allLabels); return builder; } LoadJobConfiguration.Builder createLoadJobConfigurationBuilder( TableId tableId, List sourceUris, FormatOptions formatOptions) { LoadJobConfiguration.Builder builder = LoadJobConfiguration.newBuilder(tableId, sourceUris, formatOptions); if (labels != null && !labels.isEmpty()) { builder.setLabels(labels); } return builder; } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryClientFactory.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.api.core.ApiFunction; import com.google.api.gax.core.FixedCredentialsProvider; import com.google.api.gax.grpc.ChannelPoolSettings; import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider; import com.google.api.gax.rpc.HeaderProvider; import com.google.api.gax.rpc.UnaryCallSettings; import com.google.auth.Credentials; import com.google.auth.oauth2.ExternalAccountCredentials; import com.google.auth.oauth2.ImpersonatedCredentials; import com.google.cloud.bigquery.storage.v1.BigQueryReadClient; import com.google.cloud.bigquery.storage.v1.BigQueryReadSettings; import com.google.cloud.bigquery.storage.v1.BigQueryWriteClient; import com.google.cloud.bigquery.storage.v1.BigQueryWriteSettings; import com.google.cloud.bigquery.storage.v1.CreateReadSessionRequest; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Objects; import com.google.inject.Inject; import io.grpc.ManagedChannelBuilder; import io.grpc.netty.NettyChannelBuilder; import java.io.IOException; import java.io.Serializable; import java.io.UncheckedIOException; import java.util.Arrays; import java.util.Calendar; import java.util.HashMap; import java.util.Map; import java.util.Optional; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.threeten.bp.Duration; /** * Since Guice recommends to avoid injecting closeable resources (see * https://github.com/google/guice/wiki/Avoid-Injecting-Closable-Resources), this factory creates * and caches clients and also closes them during JVM shutdown. */ public class BigQueryClientFactory implements Serializable { private static final long serialVersionUID = 7960760163401041247L; private static final Logger log = LoggerFactory.getLogger(BigQueryClientFactory.class); private static final Map readClientMap = new HashMap<>(); private static final Map writeClientMap = new HashMap<>(); // using the user agent as HeaderProvider is not serializable private final HeaderProvider headerProvider; private final BigQueryConfig bqConfig; // GoogleCredentials are not compatible with Kryo serialization, so we serialize and deserialize // when needed private final byte[] serializedCredentials; private transient volatile Credentials credentials; private int cachedHashCode = 0; private String universeDomain; @Inject public BigQueryClientFactory( BigQueryCredentialsSupplier bigQueryCredentialsSupplier, HeaderProvider headerProvider, BigQueryConfig bqConfig) { // using Guava's optional as it is serializable this.credentials = bigQueryCredentialsSupplier.getCredentials(); this.universeDomain = bigQueryCredentialsSupplier.getUniverseDomain(); this.serializedCredentials = BigQueryUtil.getCredentialsByteArray(credentials); this.headerProvider = headerProvider; this.bqConfig = bqConfig; } public BigQueryReadClient getBigQueryReadClient() { synchronized (readClientMap) { if (!readClientMap.containsKey(this)) { BigQueryReadClient bigQueryReadClient = createBigQueryReadClient( this.bqConfig.getBigQueryStorageGrpcEndpoint(), this.bqConfig.getChannelPoolSize(), this.bqConfig.getFlowControlWindowBytes()); Runtime.getRuntime() .addShutdownHook(new Thread(() -> shutdownBigQueryReadClient(bigQueryReadClient))); readClientMap.put(this, bigQueryReadClient); } } return readClientMap.get(this); } public BigQueryWriteClient getBigQueryWriteClient() { synchronized (writeClientMap) { if (!writeClientMap.containsKey(this)) { BigQueryWriteClient bigQueryWriteClient = createBigQueryWriteClient(this.bqConfig.getBigQueryStorageGrpcEndpoint()); Runtime.getRuntime() .addShutdownHook(new Thread(() -> shutdownBigQueryWriteClient(bigQueryWriteClient))); writeClientMap.put(this, bigQueryWriteClient); } } return writeClientMap.get(this); } @Override public int hashCode() { // caching the hash code, as we use it 3 times (potentially) get*Client() method if (cachedHashCode == 0) { // Here, credentials is an instance of GoogleCredentials which can be one out of // GoogleCredentials, UserCredentials, ServiceAccountCredentials, ExternalAccountCredentials // or ImpersonatedCredentials (See the class BigQueryCredentialsSupplier which supplies these // Credentials). Subclasses of the abstract class ExternalAccountCredentials do not have the // hashCode method defined on them and hence we get the byte array of the // ExternalAccountCredentials first and then compare their hashCodes. if (getCredentials() instanceof ExternalAccountCredentials) { cachedHashCode = Objects.hashCode( Arrays.hashCode(serializedCredentials), headerProvider, bqConfig.getClientCreationHashCode()); } else { cachedHashCode = Objects.hashCode( getCredentials(), headerProvider, bqConfig.getClientCreationHashCode()); } } return cachedHashCode; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof BigQueryClientFactory)) { return false; } BigQueryClientFactory that = (BigQueryClientFactory) o; if (Objects.equal(headerProvider, that.headerProvider) && bqConfig.areClientCreationConfigsEqual(that.bqConfig)) { // Here, credentials and that.credentials are instances of GoogleCredentials which can be one // of GoogleCredentials, UserCredentials, ServiceAccountCredentials, // ExternalAccountCredentials or ImpersonatedCredentials (See the class // BigQueryCredentialsSupplier which supplies these Credentials). Subclasses of // ExternalAccountCredentials do not have an equals method defined on them and hence we // serialize and compare byte arrays if either of the credentials are instances of // ExternalAccountCredentials return BigQueryUtil.areCredentialsEqual(getCredentials(), that.getCredentials()); } return false; } @VisibleForTesting Credentials getCredentials() { if (credentials == null) { synchronized (this) { if (credentials == null) { credentials = BigQueryUtil.getCredentialsFromByteArray(serializedCredentials); if (credentials instanceof ImpersonatedCredentials) { // ImpersonatedCredentials does not serialize the internal calendar object, so we're // mimicking the builder's behaviour credentials = ((ImpersonatedCredentials) credentials) .createWithCustomCalendar(Calendar.getInstance()); } } } } return credentials; } private BigQueryReadClient createBigQueryReadClient( Optional endpoint, int channelPoolSize, Optional flowControlWindow) { try { InstantiatingGrpcChannelProvider.Builder transportBuilder = createTransportBuilder(endpoint); log.info("Channel pool size set to {}", channelPoolSize); transportBuilder.setChannelPoolSettings(ChannelPoolSettings.staticallySized(channelPoolSize)); if (flowControlWindow.isPresent()) { ApiFunction channelConfigurator = (ManagedChannelBuilder channelBuilder) -> { if (channelBuilder instanceof NettyChannelBuilder) { log.info("Flow control window for netty set to {} bytes", flowControlWindow.get()); return ((NettyChannelBuilder) channelBuilder) .flowControlWindow(flowControlWindow.get()); } else { log.info("Flow control window configured but underlying channel is not Netty"); } return channelBuilder; }; transportBuilder = transportBuilder.setChannelConfigurator(channelConfigurator); } BigQueryReadSettings.Builder clientSettings = BigQueryReadSettings.newBuilder() .setTransportChannelProvider(transportBuilder.build()) .setCredentialsProvider(FixedCredentialsProvider.create(getCredentials())) .setUniverseDomain(universeDomain); bqConfig .getCreateReadSessionTimeoutInSeconds() .ifPresent( timeoutInSeconds -> { // Setting the read session timeout only if the user provided one using options or // using the default timeout UnaryCallSettings.Builder createReadSessionSettings = clientSettings.getStubSettingsBuilder().createReadSessionSettings(); Duration timeout = Duration.ofSeconds(timeoutInSeconds); createReadSessionSettings.setRetrySettings( createReadSessionSettings .getRetrySettings() .toBuilder() .setInitialRpcTimeout(timeout) .setMaxRpcTimeout(timeout) .setTotalTimeout(timeout) .build()); }); return BigQueryReadClient.create(clientSettings.build()); } catch (IOException e) { throw new UncheckedIOException("Error creating BigQueryStorageReadClient", e); } } private BigQueryWriteClient createBigQueryWriteClient(Optional endpoint) { try { InstantiatingGrpcChannelProvider.Builder transportBuilder = createTransportBuilder(endpoint); BigQueryWriteSettings.Builder clientSettings = BigQueryWriteSettings.newBuilder() .setTransportChannelProvider(transportBuilder.build()) .setCredentialsProvider(FixedCredentialsProvider.create(getCredentials())) .setUniverseDomain(universeDomain); return BigQueryWriteClient.create(clientSettings.build()); } catch (IOException e) { throw new BigQueryConnectorException("Error creating BigQueryWriteClient", e); } } private InstantiatingGrpcChannelProvider.Builder createTransportBuilder( Optional endpoint) { InstantiatingGrpcChannelProvider.Builder transportBuilder = BigQueryReadSettings.defaultGrpcTransportProviderBuilder() .setHeaderProvider(headerProvider); setProxyConfig(transportBuilder); endpoint.ifPresent( e -> { log.info("Overriding endpoint to: ", e); transportBuilder.setEndpoint(e); }); return transportBuilder; } private void setProxyConfig(InstantiatingGrpcChannelProvider.Builder transportBuilder) { BigQueryProxyConfig proxyConfig = bqConfig.getBigQueryProxyConfig(); if (proxyConfig.getProxyUri().isPresent()) { transportBuilder.setChannelConfigurator( BigQueryProxyTransporterBuilder.createGrpcChannelConfigurator( proxyConfig.getProxyUri(), proxyConfig.getProxyUsername(), proxyConfig.getProxyPassword())); } } private void shutdownBigQueryReadClient(BigQueryReadClient bigQueryReadClient) { if (bigQueryReadClient != null && !bigQueryReadClient.isShutdown()) { bigQueryReadClient.shutdown(); } } private void shutdownBigQueryWriteClient(BigQueryWriteClient bigQueryWriteClient) { if (bigQueryWriteClient != null && !bigQueryWriteClient.isShutdown()) { bigQueryWriteClient.shutdown(); } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryClientFactoryConfig.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.api.gax.retrying.RetrySettings; import com.google.cloud.bigquery.QueryJobConfiguration; import com.google.cloud.bigquery.QueryJobConfiguration.Priority; import com.google.common.base.Objects; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.util.Map; import java.util.Optional; import java.util.Set; public class BigQueryClientFactoryConfig implements BigQueryConfig { private final Optional accessTokenProviderFQCN; private final Optional accessTokenProviderConfig; private final Optional credentialsKey; private final Optional credentialsFile; private final Optional accessToken; private final String loggedInUserName; private final Set loggedInUserGroups; private final Optional impersonationServiceAccount; private final Optional> impersonationServiceAccountsForUsers; private final Optional> impersonationServiceAccountsForGroups; private final Optional> credentialsScopes; private final String parentProjectId; private final Optional catalogProjectId; private final Optional catalogLocation; private final boolean useParentProjectForMetadataOperations; private final boolean viewsEnabled; private final Optional materializationProject; private final Optional materializationDataset; private final int bigQueryClientConnectTimeout; private final int bigQueryClientReadTimeout; private final RetrySettings bigQueryClientRetrySettings; private final BigQueryProxyConfig bigQueryProxyConfig; private final Optional bigQueryStorageGrpcEndpoint; private final Optional bigQueryHttpEndpoint; private final int cacheExpirationTimeInMinutes; private final ImmutableMap bigQueryJobLabels; private final Optional createReadSessionTimeoutInSeconds; private final int channelPoolSize; private final Optional flowControlWindowBytes; private final QueryJobConfiguration.Priority queryJobPriority; private final long bigQueryJobTimeoutInMinutes; BigQueryClientFactoryConfig(BigQueryConfig bigQueryConfig, long bigQueryJobTimeoutInMinutes) { this.accessTokenProviderFQCN = bigQueryConfig.getAccessTokenProviderFQCN(); this.accessTokenProviderConfig = bigQueryConfig.getAccessTokenProviderConfig(); this.credentialsKey = bigQueryConfig.getCredentialsKey(); this.credentialsFile = bigQueryConfig.getCredentialsFile(); this.accessToken = bigQueryConfig.getAccessToken(); this.loggedInUserName = bigQueryConfig.getLoggedInUserName(); this.loggedInUserGroups = bigQueryConfig.getLoggedInUserGroups(); this.impersonationServiceAccountsForUsers = bigQueryConfig.getImpersonationServiceAccountsForUsers(); this.impersonationServiceAccountsForGroups = bigQueryConfig.getImpersonationServiceAccountsForGroups(); this.impersonationServiceAccount = bigQueryConfig.getImpersonationServiceAccount(); this.credentialsScopes = bigQueryConfig.getCredentialsScopes(); this.parentProjectId = bigQueryConfig.getParentProjectId(); this.useParentProjectForMetadataOperations = bigQueryConfig.useParentProjectForMetadataOperations(); this.viewsEnabled = bigQueryConfig.isViewsEnabled(); this.catalogProjectId = bigQueryConfig.getCatalogProjectId(); this.catalogLocation = bigQueryConfig.getCatalogLocation(); this.materializationProject = bigQueryConfig.getMaterializationProject(); this.materializationDataset = bigQueryConfig.getMaterializationDataset(); this.bigQueryClientConnectTimeout = bigQueryConfig.getBigQueryClientConnectTimeout(); this.bigQueryClientReadTimeout = bigQueryConfig.getBigQueryClientReadTimeout(); this.bigQueryClientRetrySettings = bigQueryConfig.getBigQueryClientRetrySettings(); this.bigQueryProxyConfig = bigQueryConfig.getBigQueryProxyConfig(); this.bigQueryStorageGrpcEndpoint = bigQueryConfig.getBigQueryStorageGrpcEndpoint(); this.bigQueryHttpEndpoint = bigQueryConfig.getBigQueryHttpEndpoint(); this.cacheExpirationTimeInMinutes = bigQueryConfig.getCacheExpirationTimeInMinutes(); this.bigQueryJobLabels = bigQueryConfig.getBigQueryJobLabels(); this.createReadSessionTimeoutInSeconds = bigQueryConfig.getCreateReadSessionTimeoutInSeconds(); this.channelPoolSize = bigQueryConfig.getChannelPoolSize(); this.flowControlWindowBytes = bigQueryConfig.getFlowControlWindowBytes(); this.queryJobPriority = bigQueryConfig.getQueryJobPriority(); this.bigQueryJobTimeoutInMinutes = bigQueryJobTimeoutInMinutes; } @Override public Optional getAccessTokenProviderFQCN() { return accessTokenProviderFQCN; } @Override public Optional getAccessTokenProviderConfig() { return accessTokenProviderConfig; } @Override public Optional getCredentialsKey() { return credentialsKey; } @Override public Optional getCredentialsFile() { return credentialsFile; } @Override public Optional getAccessToken() { return accessToken; } @Override public String getLoggedInUserName() { return loggedInUserName; } @Override public Set getLoggedInUserGroups() { return loggedInUserGroups; } @Override public Optional> getImpersonationServiceAccountsForUsers() { return impersonationServiceAccountsForUsers; } @Override public Optional> getImpersonationServiceAccountsForGroups() { return impersonationServiceAccountsForGroups; } @Override public Optional getImpersonationServiceAccount() { return impersonationServiceAccount; } @Override public Optional> getCredentialsScopes() { return credentialsScopes; } @Override public String getParentProjectId() { return parentProjectId; } @Override public Optional getCatalogProjectId() { return catalogProjectId; } @Override public Optional getCatalogLocation() { return catalogLocation; } @Override public boolean useParentProjectForMetadataOperations() { return useParentProjectForMetadataOperations; } @Override public boolean isViewsEnabled() { return viewsEnabled; } @Override public Optional getMaterializationProject() { return materializationProject; } @Override public Optional getMaterializationDataset() { return materializationDataset; } @Override public int getBigQueryClientConnectTimeout() { return bigQueryClientConnectTimeout; } @Override public int getBigQueryClientReadTimeout() { return bigQueryClientReadTimeout; } @Override public RetrySettings getBigQueryClientRetrySettings() { return bigQueryClientRetrySettings; } @Override public BigQueryProxyConfig getBigQueryProxyConfig() { return bigQueryProxyConfig; } @Override public Optional getBigQueryStorageGrpcEndpoint() { return bigQueryStorageGrpcEndpoint; } @Override public Optional getBigQueryHttpEndpoint() { return bigQueryHttpEndpoint; } @Override public int getCacheExpirationTimeInMinutes() { return cacheExpirationTimeInMinutes; } @Override public ImmutableMap getBigQueryJobLabels() { return bigQueryJobLabels; } @Override public Optional getCreateReadSessionTimeoutInSeconds() { return createReadSessionTimeoutInSeconds; } @Override public int getChannelPoolSize() { return channelPoolSize; } @Override public Optional getFlowControlWindowBytes() { return flowControlWindowBytes; } @Override public Priority getQueryJobPriority() { return queryJobPriority; } public long getBigQueryJobTimeoutInMinutes() { return bigQueryJobTimeoutInMinutes; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof BigQueryClientFactoryConfig)) { return false; } BigQueryClientFactoryConfig that = (BigQueryClientFactoryConfig) o; return viewsEnabled == that.viewsEnabled && bigQueryClientConnectTimeout == that.bigQueryClientConnectTimeout && bigQueryClientReadTimeout == that.bigQueryClientReadTimeout && Objects.equal(credentialsKey, that.credentialsKey) && Objects.equal(credentialsFile, that.credentialsFile) && Objects.equal(accessToken, that.accessToken) && Objects.equal(parentProjectId, that.parentProjectId) && Objects.equal( useParentProjectForMetadataOperations, that.useParentProjectForMetadataOperations) && Objects.equal(materializationProject, that.materializationProject) && Objects.equal(materializationDataset, that.materializationDataset) && Objects.equal(bigQueryClientRetrySettings, that.bigQueryClientRetrySettings) && Objects.equal(bigQueryProxyConfig, that.bigQueryProxyConfig) && Objects.equal(bigQueryStorageGrpcEndpoint, that.bigQueryStorageGrpcEndpoint) && Objects.equal(bigQueryHttpEndpoint, that.bigQueryHttpEndpoint) && Objects.equal(cacheExpirationTimeInMinutes, that.cacheExpirationTimeInMinutes) && Objects.equal(createReadSessionTimeoutInSeconds, that.createReadSessionTimeoutInSeconds) && Objects.equal(channelPoolSize, that.channelPoolSize) && Objects.equal(flowControlWindowBytes, that.flowControlWindowBytes); } @Override public int hashCode() { return Objects.hashCode( credentialsKey, credentialsFile, accessToken, parentProjectId, useParentProjectForMetadataOperations, viewsEnabled, materializationProject, materializationDataset, bigQueryClientConnectTimeout, bigQueryClientReadTimeout, bigQueryClientRetrySettings, bigQueryProxyConfig, bigQueryStorageGrpcEndpoint, bigQueryHttpEndpoint, cacheExpirationTimeInMinutes, channelPoolSize, flowControlWindowBytes); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryClientModule.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.api.gax.rpc.HeaderProvider; import com.google.cloud.bigquery.BigQueryOptions; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.http.HttpTransportOptions; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.google.common.collect.ImmutableMap; import com.google.inject.Binder; import com.google.inject.Provides; import com.google.inject.Scopes; import com.google.inject.Singleton; import java.util.Optional; import java.util.concurrent.TimeUnit; public class BigQueryClientModule implements com.google.inject.Module { private static final int DESTINATION_TABLE_CACHE_MAX_SIZE = 1000; /* * In order to parameterize the cache expiration time, the instance needs to be loaded lazily. * The instance is marked as static so that the instance is a singleton. */ private static Cache cacheInstance; @Provides @Singleton public static HeaderProvider createHeaderProvider( BigQueryConfig config, UserAgentProvider userAgentProvider) { return HttpUtil.createHeaderProvider(config, userAgentProvider.getUserAgent()); } @Override public void configure(Binder binder) { // BigQuery related binder.bind(BigQueryClientFactory.class).in(Scopes.SINGLETON); binder .bind(BigQueryTracerFactory.class) .toInstance(new LoggingBigQueryTracerFactory(/*Log every 2^14 batches*/ 14)); } @Provides @Singleton public BigQueryCredentialsSupplier provideBigQueryCredentialsSupplier(BigQueryConfig config) { BigQueryProxyConfig proxyConfig = config.getBigQueryProxyConfig(); return new BigQueryCredentialsSupplier( config.getAccessTokenProviderFQCN(), config.getAccessTokenProviderConfig(), config.getAccessToken(), config.getCredentialsKey(), config.getCredentialsFile(), config.getLoggedInUserName(), config.getLoggedInUserGroups(), config.getImpersonationServiceAccountsForUsers(), config.getImpersonationServiceAccountsForGroups(), config.getImpersonationServiceAccount(), config.getCredentialsScopes(), proxyConfig.getProxyUri(), proxyConfig.getProxyUsername(), proxyConfig.getProxyPassword()); } @Provides @Singleton public Cache provideDestinationTableCache(BigQueryConfig config) { if (cacheInstance == null) { synchronized (BigQueryClientModule.class) { if (cacheInstance == null) { cacheInstance = CacheBuilder.newBuilder() .expireAfterWrite(config.getCacheExpirationTimeInMinutes(), TimeUnit.MINUTES) .maximumSize(DESTINATION_TABLE_CACHE_MAX_SIZE) .build(); } } } return cacheInstance; } @Provides @Singleton public BigQueryClient provideBigQueryClient( BigQueryConfig config, HeaderProvider headerProvider, BigQueryCredentialsSupplier bigQueryCredentialsSupplier, Cache destinationTableCache, EnvironmentContext environmentContext, BigQueryJobCompletionListener jobCompletionListener) { BigQueryOptions.Builder options = BigQueryOptions.newBuilder() .setHeaderProvider(headerProvider) .setProjectId(config.getCatalogProjectId().orElse(config.getParentProjectId())) .setCredentials(bigQueryCredentialsSupplier.getCredentials()) .setRetrySettings(config.getBigQueryClientRetrySettings()) .setUniverseDomain(bigQueryCredentialsSupplier.getUniverseDomain()); config.getCatalogLocation().ifPresent(options::setLocation); HttpTransportOptions.Builder httpTransportOptionsBuilder = HttpTransportOptions.newBuilder() .setConnectTimeout(config.getBigQueryClientConnectTimeout()) .setReadTimeout(config.getBigQueryClientReadTimeout()); BigQueryProxyConfig proxyConfig = config.getBigQueryProxyConfig(); if (proxyConfig.getProxyUri().isPresent()) { httpTransportOptionsBuilder.setHttpTransportFactory( BigQueryProxyTransporterBuilder.createHttpTransportFactory( proxyConfig.getProxyUri(), proxyConfig.getProxyUsername(), proxyConfig.getProxyPassword())); } config.getBigQueryHttpEndpoint().ifPresent(options::setHost); options.setTransportOptions(httpTransportOptionsBuilder.build()); ImmutableMap bigQueryJobLabels = ImmutableMap.builder() .putAll(environmentContext.getBigQueryJobLabels()) .putAll(config.getBigQueryJobLabels()) .build(); return new BigQueryClient( options.build().getService(), config.getMaterializationProject(), config.getMaterializationDataset(), destinationTableCache, bigQueryJobLabels, config.getQueryJobPriority(), Optional.of(jobCompletionListener), config.getBigQueryJobTimeoutInMinutes()); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryConfig.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.api.gax.retrying.RetrySettings; import com.google.cloud.bigquery.QueryJobConfiguration.Priority; import com.google.common.base.Objects; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.util.Map; import java.util.Optional; import java.util.Set; public interface BigQueryConfig { Optional getAccessTokenProviderFQCN(); Optional getAccessTokenProviderConfig(); Optional getCredentialsKey(); Optional getCredentialsFile(); Optional getAccessToken(); String getLoggedInUserName(); Set getLoggedInUserGroups(); Optional> getImpersonationServiceAccountsForUsers(); Optional> getImpersonationServiceAccountsForGroups(); Optional getImpersonationServiceAccount(); String getParentProjectId(); Optional getCatalogProjectId(); Optional getCatalogLocation(); boolean useParentProjectForMetadataOperations(); boolean isViewsEnabled(); Optional getMaterializationProject(); Optional getMaterializationDataset(); int getBigQueryClientConnectTimeout(); int getBigQueryClientReadTimeout(); RetrySettings getBigQueryClientRetrySettings(); BigQueryProxyConfig getBigQueryProxyConfig(); Optional getBigQueryStorageGrpcEndpoint(); Optional getBigQueryHttpEndpoint(); int getCacheExpirationTimeInMinutes(); ImmutableMap getBigQueryJobLabels(); Optional getCreateReadSessionTimeoutInSeconds(); int getChannelPoolSize(); // Get a static flow control window per RPC. When not set // auto flow control is determined by Bandwidth Delay Product. Optional getFlowControlWindowBytes(); Priority getQueryJobPriority(); long getBigQueryJobTimeoutInMinutes(); Optional> getCredentialsScopes(); default int getClientCreationHashCode() { return Objects.hashCode( getAccessTokenProviderFQCN(), getAccessTokenProviderConfig(), getCredentialsKey(), getAccessToken(), getCredentialsFile(), getBigQueryHttpEndpoint(), getFlowControlWindowBytes(), getBigQueryStorageGrpcEndpoint(), getCreateReadSessionTimeoutInSeconds(), getBigQueryProxyConfig(), getParentProjectId(), useParentProjectForMetadataOperations()); } default boolean areClientCreationConfigsEqual(BigQueryConfig b) { if (this == b) { return true; } return Objects.equal(getAccessTokenProviderFQCN(), b.getAccessTokenProviderFQCN()) && Objects.equal(getAccessTokenProviderConfig(), b.getAccessTokenProviderConfig()) && Objects.equal(getCredentialsKey(), b.getCredentialsKey()) && Objects.equal(getAccessToken(), b.getAccessToken()) && Objects.equal(getCredentialsFile(), b.getCredentialsFile()) && Objects.equal(getBigQueryHttpEndpoint(), b.getBigQueryHttpEndpoint()) && Objects.equal(getFlowControlWindowBytes(), b.getFlowControlWindowBytes()) && Objects.equal(getBigQueryStorageGrpcEndpoint(), b.getBigQueryStorageGrpcEndpoint()) && Objects.equal( getCreateReadSessionTimeoutInSeconds(), b.getCreateReadSessionTimeoutInSeconds()) && Objects.equal(getBigQueryProxyConfig(), b.getBigQueryProxyConfig()) && Objects.equal(getParentProjectId(), b.getParentProjectId()) && Objects.equal( useParentProjectForMetadataOperations(), b.useParentProjectForMetadataOperations()); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryConfigurationUtil.java ================================================ /* * Copyright 2022 Google LLC * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.firstPresent; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.parseTableId; import static java.lang.String.format; import com.google.cloud.bigquery.BigQueryOptions; import com.google.cloud.bigquery.TableId; import com.google.common.base.Optional; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.util.Collection; import java.util.HashMap; import java.util.Map; import java.util.function.Supplier; /** Utilities to read configuration options */ public class BigQueryConfigurationUtil { public static final Supplier> DEFAULT_FALLBACK = () -> empty(); private BigQueryConfigurationUtil() {} public static com.google.common.base.Supplier defaultBilledProject() { return () -> BigQueryOptions.getDefaultInstance().getProjectId(); } public static String getRequiredOption(Map options, String name) { return getOption(options, name, DEFAULT_FALLBACK) .toJavaUtil() .orElseThrow(() -> new IllegalArgumentException(format("Option %s required.", name))); } public static String getRequiredOption( Map options, String name, com.google.common.base.Supplier fallback) { return getOption(options, name, DEFAULT_FALLBACK).or(fallback); } public static com.google.common.base.Optional getOption( Map options, String name) { return getOption(options, name, DEFAULT_FALLBACK); } public static com.google.common.base.Optional getOption( Map options, String name, Supplier> fallback) { return fromJavaUtil( firstPresent( java.util.Optional.ofNullable(options.get(name.toLowerCase())), fallback.get().toJavaUtil())); } public static com.google.common.base.Optional getOptionFromMultipleParams( Map options, Collection names, Supplier> fallback) { return names.stream() .map(name -> getOption(options, name)) .filter(com.google.common.base.Optional::isPresent) .findFirst() .orElseGet(fallback); } public static Map getMapEntriesWithPrefix( Map map, String prefix) { Map result = new HashMap(); for (Map.Entry entry : map.entrySet()) { if (entry.getKey().startsWith(prefix)) { result.put(entry.getKey(), entry.getValue()); } } return result; } public static com.google.common.base.Optional> removePrefixFromMapKeys( com.google.common.base.Optional> map, String prefix) { Map modifiedMap = new HashMap<>(); if (map.isPresent()) { for (Map.Entry entry : map.get().entrySet()) { String originalKey = entry.getKey(); String modifiedKey = originalKey.startsWith(prefix) ? originalKey.substring(prefix.length()) : originalKey; modifiedMap.put(modifiedKey, entry.getValue()); } } return com.google.common.base.Optional.of(modifiedMap); } public static com.google.common.base.Optional> getAnyOptionsWithPrefix( ImmutableMap globalOptions, Map options, String prefix) { Map result = getMapEntriesWithPrefix(globalOptions, prefix); Map prefixOptions = getMapEntriesWithPrefix(options, prefix); result.putAll(prefixOptions); return com.google.common.base.Optional.of(result); } public static com.google.common.base.Optional getAnyOption( ImmutableMap globalOptions, Map options, String name) { return com.google.common.base.Optional.fromNullable(options.get(name.toLowerCase())) .or(com.google.common.base.Optional.fromNullable(globalOptions.get(name))); } // gives the option to support old configurations as fallback // Used to provide backward compatibility public static com.google.common.base.Optional getAnyOption( ImmutableMap globalOptions, Map options, Collection names) { return names.stream() .map(name -> getAnyOption(globalOptions, options, name)) .filter(optional -> optional.isPresent()) .findFirst() .orElse(empty()); } public static boolean getAnyBooleanOption( ImmutableMap globalOptions, Map options, String name, boolean defaultValue) { return getAnyOption(globalOptions, options, name).transform(Boolean::valueOf).or(defaultValue); } public static com.google.common.base.Optional empty() { return com.google.common.base.Optional.absent(); } public static com.google.common.base.Optional fromJavaUtil(java.util.Optional o) { return com.google.common.base.Optional.fromJavaUtil(o); } /** TableId that does not include partition decorator */ public static TableId parseSimpleTableId( Map options, Optional fallbackProject, Optional fallbackDataset) { String tableParam = getOptionFromMultipleParams(options, ImmutableList.of("table", "path"), DEFAULT_FALLBACK) .get(); Optional datasetParam = getOption(options, "dataset").or(fallbackDataset); Optional projectParam = getOption(options, "project").or(fallbackProject); return parseTableId( tableParam, datasetParam.toJavaUtil(), projectParam.toJavaUtil(), /* datePartition */ java.util.Optional.empty()); } public static TableId parseSimpleTableId( Map options, java.util.Optional fallbackProject, java.util.Optional fallbackDataset) { return parseSimpleTableId( options, Optional.fromJavaUtil(fallbackProject), Optional.fromJavaUtil(fallbackDataset)); } public static TableId parseSimpleTableId( ImmutableMap globalOptions, Map options) { MaterializationConfiguration materializationConfiguration = MaterializationConfiguration.from(globalOptions, options); return parseSimpleTableId( options, materializationConfiguration.getMaterializationProject(), materializationConfiguration.getMaterializationDataset()); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryConnectorException.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.BIGQUERY_INVALID_SCHEMA; import static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.UNKNOWN; import io.grpc.StatusException; import io.grpc.StatusRuntimeException; public class BigQueryConnectorException extends RuntimeException { final BigQueryErrorCode errorCode; public BigQueryConnectorException(String message) { this(UNKNOWN, message); } public BigQueryConnectorException(String message, StatusException cause) { this(message, new SerializableStatusException(cause)); } public BigQueryConnectorException(String message, StatusRuntimeException cause) { this(message, new SerializableStatusException(cause)); } public BigQueryConnectorException(String message, Throwable cause) { this(UNKNOWN, message, cause); } public BigQueryConnectorException(BigQueryErrorCode errorCode, String message) { super(message); this.errorCode = errorCode; } public BigQueryConnectorException( BigQueryErrorCode errorCode, String message, StatusException cause) { this(errorCode, message, new SerializableStatusException(cause)); } public BigQueryConnectorException( BigQueryErrorCode errorCode, String message, StatusRuntimeException cause) { this(errorCode, message, new SerializableStatusException(cause)); } public BigQueryConnectorException(BigQueryErrorCode errorCode, String message, Throwable cause) { super(message, cause); this.errorCode = errorCode; } public BigQueryErrorCode getErrorCode() { return errorCode; } // inner child class public static class InvalidSchemaException extends BigQueryConnectorException { public InvalidSchemaException(String message) { super(BIGQUERY_INVALID_SCHEMA, message); } public InvalidSchemaException(String message, Throwable t) { super(BIGQUERY_INVALID_SCHEMA, message, t); } } /** * StatusRuntimeException contains non-serializable members causing issues when sending exceptions * from the executors to the driver. this class provides a serializable alternative. */ public static class SerializableStatusException extends RuntimeException { private final String wrappedExceptionClassName; private final String message; private final StackTraceElement[] stackTrace; SerializableStatusException(StatusException wrapped) { this.wrappedExceptionClassName = wrapped.getClass().getName(); this.message = wrapped.getMessage(); this.stackTrace = wrapped.getStackTrace().clone(); } SerializableStatusException(StatusRuntimeException wrapped) { this.wrappedExceptionClassName = wrapped.getClass().getName(); this.message = wrapped.getMessage(); this.stackTrace = wrapped.getStackTrace().clone(); } @Override public String getMessage() { return this.message; } @Override public String toString() { return this.wrappedExceptionClassName + ": " + this.message; } @Override public StackTraceElement[] getStackTrace() { return this.stackTrace; } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryCredentialsSupplier.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.createVerifiedInstance; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.verifySerialization; import static com.google.common.base.Strings.isNullOrEmpty; import com.google.api.client.util.Base64; import com.google.auth.Credentials; import com.google.auth.http.HttpTransportFactory; import com.google.auth.oauth2.AccessToken; import com.google.auth.oauth2.GoogleCredentials; import com.google.auth.oauth2.ImpersonatedCredentials; import com.google.common.collect.ImmutableList; import java.io.ByteArrayInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.UncheckedIOException; import java.net.URI; import java.util.Collection; import java.util.HashSet; import java.util.Map; import java.util.Optional; import java.util.Set; import java.util.function.Supplier; import java.util.stream.Stream; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class BigQueryCredentialsSupplier { private final Credentials credentials; public static final String CLOUD_PLATFORM_SCOPE = "https://www.googleapis.com/auth/cloud-platform"; private static final Logger log = LoggerFactory.getLogger(BigQueryCredentialsSupplier.class); public BigQueryCredentialsSupplier( Optional accessTokenProviderFQCN, Optional accessTokenProviderConfig, Optional accessToken, Optional credentialsKey, Optional credentialsFile, String loggedInUserName, Set loggedInUserGroups, Optional> impersonationServiceAccountsForUsers, Optional> impersonationServiceAccountsForGroups, Optional impersonationServiceAccount, Optional> credentialsScopes, Optional proxyUri, Optional proxyUsername, Optional proxyPassword) { GoogleCredentials credentials; if (accessTokenProviderFQCN.isPresent()) { AccessTokenProvider accessTokenProvider = accessTokenProviderConfig .map( config -> createVerifiedInstance( accessTokenProviderFQCN.get(), AccessTokenProvider.class, config)) .orElseGet( () -> createVerifiedInstance( accessTokenProviderFQCN.get(), AccessTokenProvider.class)); credentials = new AccessTokenProviderCredentials(verifySerialization(accessTokenProvider)); } else if (accessToken.isPresent()) { credentials = createCredentialsFromAccessToken(accessToken.get()); } else if (credentialsKey.isPresent()) { credentials = createCredentialsFromKey(credentialsKey.get(), proxyUri, proxyUsername, proxyPassword); } else if (credentialsFile.isPresent()) { credentials = createCredentialsFromFile(credentialsFile.get(), proxyUri, proxyUsername, proxyPassword); } else { credentials = createDefaultCredentials(); } Optional impersonatedCredentials = createCredentialsFromImpersonation( loggedInUserName, loggedInUserGroups, impersonationServiceAccountsForUsers, impersonationServiceAccountsForGroups, impersonationServiceAccount, (GoogleCredentials) credentials, proxyUri, proxyUsername, proxyPassword); credentials = impersonatedCredentials.orElse(credentials); this.credentials = credentialsScopes.map(credentials::createScoped).orElse(credentials); } private static GoogleCredentials createCredentialsFromAccessToken(String accessToken) { return GoogleCredentials.create(new AccessToken(accessToken, null)); } private static Optional createCredentialsFromImpersonation( String loggedInUserName, Set loggedInUserGroups, Optional> impersonationServiceAccountsForUsers, Optional> impersonationServiceAccountsForGroups, Optional impersonationServiceAccount, GoogleCredentials sourceCredentials, Optional proxyUri, Optional proxyUsername, Optional proxyPassword) { Optional serviceAccountToImpersonate = Stream.of( () -> getServiceAccountToImpersonateByKeys( impersonationServiceAccountsForUsers, Optional.ofNullable(loggedInUserName) .map(ImmutableList::of) .orElseGet(ImmutableList::of)), () -> getServiceAccountToImpersonateByKeys( impersonationServiceAccountsForGroups, Optional.ofNullable(loggedInUserGroups).orElse(new HashSet<>())), (Supplier>) () -> impersonationServiceAccount) .map(Supplier::get) .filter(Optional::isPresent) .map(Optional::get) .filter(sa -> !isNullOrEmpty(sa)) .findFirst(); HttpTransportFactory httpTransportFactory = BigQueryProxyTransporterBuilder.createHttpTransportFactory( proxyUri, proxyUsername, proxyPassword); return serviceAccountToImpersonate.map( sa -> ImpersonatedCredentials.newBuilder() .setSourceCredentials(sourceCredentials) .setTargetPrincipal(serviceAccountToImpersonate.get()) .setScopes(ImmutableList.of(CLOUD_PLATFORM_SCOPE)) .setHttpTransportFactory(httpTransportFactory) .build()); } private static Optional getServiceAccountToImpersonateByKeys( Optional> serviceAccountMapping, Collection keys) { return serviceAccountMapping.flatMap( mapping -> mapping.entrySet().stream() .filter(e -> keys.contains(e.getKey())) .map(Map.Entry::getValue) .findFirst()); } private static GoogleCredentials createCredentialsFromKey( String key, Optional proxyUri, Optional proxyUsername, Optional proxyPassword) { try { if (proxyUri.isPresent()) { HttpTransportFactory httpTransportFactory = BigQueryProxyTransporterBuilder.createHttpTransportFactory( proxyUri, proxyUsername, proxyPassword); return GoogleCredentials.fromStream( new ByteArrayInputStream(Base64.decodeBase64(key)), httpTransportFactory); } else { return GoogleCredentials.fromStream(new ByteArrayInputStream(Base64.decodeBase64(key))); } } catch (IOException e) { throw new UncheckedIOException("Failed to create Credentials from key", e); } } private static GoogleCredentials createCredentialsFromFile( String file, Optional proxyUri, Optional proxyUsername, Optional proxyPassword) { try { if (proxyUri.isPresent()) { HttpTransportFactory httpTransportFactory = BigQueryProxyTransporterBuilder.createHttpTransportFactory( proxyUri, proxyUsername, proxyPassword); return GoogleCredentials.fromStream(new FileInputStream(file), httpTransportFactory); } else { return GoogleCredentials.fromStream(new FileInputStream(file)); } } catch (IOException e) { throw new UncheckedIOException("Failed to create Credentials from file", e); } } public static GoogleCredentials createDefaultCredentials() { try { return GoogleCredentials.getApplicationDefault(); } catch (IOException e) { throw new UncheckedIOException("Failed to create default Credentials", e); } } public Credentials getCredentials() { return credentials; } public String getUniverseDomain() { String universeDomain = Credentials.GOOGLE_DEFAULT_UNIVERSE; try { universeDomain = getCredentials().getUniverseDomain(); } catch (IOException e) { log.warn( "Caught Exception while querying the Universe Domain, continuing with GOOGLE_DEFAULT_UNIVERSE"); } return universeDomain; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryDirectDataWriterHelper.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.api.client.util.Sleeper; import com.google.api.core.ApiFuture; import com.google.api.core.ApiFutures; import com.google.api.core.NanoClock; import com.google.api.gax.retrying.*; import com.google.cloud.bigquery.storage.v1.AppendRowsResponse; import com.google.cloud.bigquery.storage.v1.BigQueryWriteClient; import com.google.cloud.bigquery.storage.v1.CreateWriteStreamRequest; import com.google.cloud.bigquery.storage.v1.Exceptions.OffsetAlreadyExists; import com.google.cloud.bigquery.storage.v1.FinalizeWriteStreamRequest; import com.google.cloud.bigquery.storage.v1.FinalizeWriteStreamResponse; import com.google.cloud.bigquery.storage.v1.ProtoRows; import com.google.cloud.bigquery.storage.v1.ProtoSchema; import com.google.cloud.bigquery.storage.v1.StreamWriter; import com.google.cloud.bigquery.storage.v1.WriteStream; import com.google.cloud.bigquery.storage.v1.stub.readrows.ApiResultRetryAlgorithm; import com.google.common.base.Optional; import com.google.protobuf.ByteString; import java.io.IOException; import java.util.LinkedList; import java.util.Queue; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * The class which sketches out the necessary functions in order for a Spark DataWriter to interact * with the BigQuery Storage Write API. */ public class BigQueryDirectDataWriterHelper { final Logger logger = LoggerFactory.getLogger(BigQueryDirectDataWriterHelper.class); // multiplying with 0.95 so as to keep a buffer preventing the quota limits final long MAX_APPEND_ROWS_REQUEST_SIZE = (long) (StreamWriter.getApiMaxRequestBytes() * 0.95); private final BigQueryWriteClient writeClient; private final String tablePath; private final ProtoSchema protoSchema; private final RetrySettings retrySettings; private final Optional traceId; private final int partitionId; private final boolean writeAtLeastOnce; private String writeStreamName; private StreamWriter streamWriter; private ProtoRows.Builder protoRows; private long appendRequestRowCount = 0; // number of rows waiting for the next append request private long appendRequestSizeBytes = 0; // number of bytes waiting for the next append request private long writeStreamRowCount = 0; // total offset / rows of the current write-stream private long writeStreamTotalBytes = 0; // total bytes written by the current write-stream private final ExecutorService appendRowsExecutor = Executors.newSingleThreadExecutor(); private final Queue> appendRowsFuturesQueue = new LinkedList<>(); public BigQueryDirectDataWriterHelper( BigQueryClientFactory writeClientFactory, String tablePath, ProtoSchema protoSchema, RetrySettings bigqueryDataWriterHelperRetrySettings, Optional traceId, int partitionId, boolean writeAtLeastOnce) { this.writeClient = writeClientFactory.getBigQueryWriteClient(); this.tablePath = tablePath; this.protoSchema = protoSchema; this.retrySettings = bigqueryDataWriterHelperRetrySettings; this.traceId = traceId; this.partitionId = partitionId; this.writeAtLeastOnce = writeAtLeastOnce; if (writeAtLeastOnce) { this.writeStreamName = this.tablePath + "/_default"; } else { try { this.writeStreamName = retryCreateWriteStream(); } catch (ExecutionException | InterruptedException e) { throw new BigQueryConnectorException( "Could not create write-stream after multiple retries", e); } } this.streamWriter = createStreamWriter(this.writeStreamName); this.protoRows = ProtoRows.newBuilder(); } /** * Submits a callable that creates a BigQuery Storage Write API write-stream to function * {retryCallable}. * * @see this#retryCallable(Callable createWriteStream) * @return The write-stream name, if it was successfully created. * @throws ExecutionException If retryCallable failed to create the write-stream after multiple * retries. * @throws InterruptedException If retryCallable was interrupted while creating the write-stream * during a retry. */ private String retryCreateWriteStream() throws ExecutionException, InterruptedException { return retryCallable( () -> this.writeClient .createWriteStream( CreateWriteStreamRequest.newBuilder() .setParent(this.tablePath) .setWriteStream( WriteStream.newBuilder().setType(WriteStream.Type.PENDING).build()) .build()) .getName()); } /** * A helper method in order to retry certain tasks: currently used for creating a write-stream, * and finalizing a write-stream, if those requests reached a retriable error. * * @param callable The callable to retry. * @param The return value of the callable (currently, either a String (write-stream name) or * a FinalizeWriteStreamResponse. * @return V. * @throws ExecutionException If retryCallable failed to create the write-stream after multiple * retries. * @throws InterruptedException If retryCallable was interrupted while creating the write-stream * during a retry. */ private V retryCallable(Callable callable) throws ExecutionException, InterruptedException { DirectRetryingExecutor directRetryingExecutor = new DirectRetryingExecutor<>( new RetryAlgorithm<>( new ApiResultRetryAlgorithm<>(), new ExponentialRetryAlgorithm(this.retrySettings, NanoClock.getDefaultClock()))); RetryingFuture retryingFuture = directRetryingExecutor.createFuture(callable); return directRetryingExecutor.submit(retryingFuture).get(); } private StreamWriter createStreamWriter(String writeStreamName) { try { StreamWriter.Builder streamWriter = StreamWriter.newBuilder(writeStreamName, writeClient) .setWriterSchema(this.protoSchema) .setEnableConnectionPool(this.writeAtLeastOnce) .setRetrySettings(this.retrySettings); if (traceId.isPresent()) { streamWriter.setTraceId(traceId.get()); } return streamWriter.build(); } catch (IOException e) { throw new BigQueryConnectorException("Could not build stream-writer", e); } } /** * Adds a row to the protoRows, which acts as a buffer; but before, checks if the current message * size in bytes will cause the protoRows buffer to exceed the maximum APPEND_REQUEST_SIZE, and if * it will, sends an append rows request first. * * @see this#sendAppendRowsRequest() * @param message The row, in a ByteString message, to be added to protoRows. * @throws IOException If sendAppendRowsRequest fails. */ public void addRow(ByteString message) throws IOException { int messageSize = message.size() + 2; // Protobuf overhead is at least 2 bytes per row. if (appendRequestSizeBytes + messageSize > MAX_APPEND_ROWS_REQUEST_SIZE) { // If a single row exceeds the maximum size for an append request, this is a nonrecoverable // error. if (messageSize > MAX_APPEND_ROWS_REQUEST_SIZE) { throw new IOException( String.format( "A single row of size %d bytes exceeded the maximum of %d bytes for an" + " append-rows-request size", messageSize, MAX_APPEND_ROWS_REQUEST_SIZE)); } sendAppendRowsRequest(); } protoRows.addSerializedRows(message); appendRequestSizeBytes += messageSize; appendRequestRowCount++; } /** * Throws an exception if there is an error in any of the responses received thus far. Since * responses arrive in order, we proceed to check the next response only after the previous * response has arrived. * * @throws BigQueryConnectorException If there was an invalid response */ private void checkForFailedResponse(boolean waitForResponse) { ApiFuture validatedAppendRowsFuture = null; while ((validatedAppendRowsFuture = appendRowsFuturesQueue.peek()) != null) { if (waitForResponse || validatedAppendRowsFuture.isDone()) { appendRowsFuturesQueue.poll(); boolean succeeded = false; try { AppendRowsResponse response = validatedAppendRowsFuture.get(); // If we got here, the response was successful succeeded = true; } catch (ExecutionException e) { if (e.getCause().getClass() == OffsetAlreadyExists.class) { // Under heavy load the WriteAPI client library may resend a request due to failed // connection. The OffsetAlreadyExists exception indicates a request was previously // sent, hence it is safe to ignore it. logger.warn("Ignoring OffsetAlreadyExists exception: {}", e.getCause().getMessage()); succeeded = true; } else { logger.error( "Write-stream {} with name {} exception while retrieving AppendRowsResponse", partitionId, writeStreamName); throw new BigQueryConnectorException( "Execution Exception while retrieving AppendRowsResponse", e); } } catch (InterruptedException e) { logger.error( "Write-stream {} with name {} interrupted exception while retrieving AppendRowsResponse", partitionId, writeStreamName); throw new BigQueryConnectorException( "Interrupted Exception while retrieving AppendRowsResponse", e); } finally { if (!succeeded) { appendRowsExecutor.shutdown(); } } } else { break; } } } /** * Sends an AppendRowsRequest to the BigQuery Storage Write API. * * @throws IOException If the append rows request fails: either by returning the wrong offset * (deduplication error) or if the response contains an error. */ private void sendAppendRowsRequest() throws IOException { checkForFailedResponse(false /*waitForResponse*/); long offset = this.writeAtLeastOnce ? -1 : writeStreamRowCount; ApiFuture appendRowsResponseApiFuture = streamWriter.append(protoRows.build(), offset); ApiFuture validatedAppendRowsFuture = ApiFutures.transformAsync( appendRowsResponseApiFuture, appendRowsResponse -> validateAppendRowsResponse(appendRowsResponse, offset), appendRowsExecutor); appendRowsFuturesQueue.add(validatedAppendRowsFuture); clearProtoRows(); this.writeStreamRowCount += appendRequestRowCount; this.writeStreamTotalBytes += appendRequestSizeBytes; this.appendRequestRowCount = 0; this.appendRequestSizeBytes = 0; } /** * Validates an AppendRowsResponse, after retrieving its future: makes sure the responses' future * matches the expectedOffset, and returned with no errors. * * @param appendRowsResponse The AppendRowsResponse * @param expectedOffset The expected offset to be returned by the response. * @throws IOException If the response returned with error, or the offset did not match the * expected offset. */ private ApiFuture validateAppendRowsResponse( AppendRowsResponse appendRowsResponse, long expectedOffset) throws IOException { if (appendRowsResponse.hasError()) { throw new IOException( "Append request failed with error: " + appendRowsResponse.getError().getMessage()); } if (!this.writeAtLeastOnce) { AppendRowsResponse.AppendResult appendResult = appendRowsResponse.getAppendResult(); long responseOffset = appendResult.getOffset().getValue(); if (expectedOffset != responseOffset) { throw new IOException( String.format( "On stream %s append-rows response, offset %d did not match expected offset %d", writeStreamName, responseOffset, expectedOffset)); } } return ApiFutures.immediateFuture(appendRowsResponse); } /** * Appends any data that remains in the protoRows, waits for 500 milliseconds, and finalizes the * write-stream. This also closes the internal StreamWriter, so that the helper instance is not * usable after calling finalizeStream(). * * @return The finalized row-count of the write-stream. * @throws IOException If the row-count returned by the FinalizeWriteStreamResponse does not match * the expected offset (which is equal to the number of rows appended thus far). * @see this#writeStreamRowCount */ public WriteStreamStatistics finalizeStream() throws IOException { if (this.protoRows.getSerializedRowsCount() != 0) { sendAppendRowsRequest(); } try { checkForFailedResponse(true /* waitForResponse */); } finally { appendRowsExecutor.shutdown(); } long responseFinalizedRowCount = writeStreamRowCount; long responseFinalizedBytesWritten = writeStreamTotalBytes; if (!this.writeAtLeastOnce) { waitBeforeFinalization(); FinalizeWriteStreamRequest finalizeWriteStreamRequest = FinalizeWriteStreamRequest.newBuilder().setName(writeStreamName).build(); FinalizeWriteStreamResponse finalizeResponse = retryFinalizeWriteStream(finalizeWriteStreamRequest); long expectedFinalizedRowCount = writeStreamRowCount; responseFinalizedRowCount = finalizeResponse.getRowCount(); if (responseFinalizedRowCount != expectedFinalizedRowCount) { throw new IOException( String.format( "On stream %s finalization, expected finalized row count %d but received %d", writeStreamName, expectedFinalizedRowCount, responseFinalizedRowCount)); } } logger.debug( "Write-stream {} with name {} finalized with row-count {}", partitionId, writeStreamName, responseFinalizedRowCount); clean(); return new WriteStreamStatistics(responseFinalizedRowCount, responseFinalizedBytesWritten); } /** * A helper method in order to submit for retry (using method retryCallable) a callable that * finalizes the write-stream; useful if finalization encountered a retriable error. * * @param finalizeWriteStreamRequest The request to send to the writeClient in order to finalize * the write-stream. * @return The FinalizeWriteStreamResponse * @see com.google.cloud.bigquery.storage.v1.FinalizeWriteStreamResponse */ private FinalizeWriteStreamResponse retryFinalizeWriteStream( FinalizeWriteStreamRequest finalizeWriteStreamRequest) { try { return retryCallable(() -> writeClient.finalizeWriteStream(finalizeWriteStreamRequest)); } catch (ExecutionException | InterruptedException e) { throw new BigQueryConnectorException( String.format("Could not finalize stream %s.", writeStreamName), e); } } /** Waits 500 milliseconds. In order to be used as a cushioning period before finalization. */ private void waitBeforeFinalization() { try { Sleeper.DEFAULT.sleep(500); } catch (InterruptedException e) { throw new BigQueryConnectorException( String.format( "Interrupted while sleeping before finalizing write-stream %s", writeStreamName), e); } } /** * Deletes the data left over in the protoRows, using method clearProtoRows, closes the * StreamWriter, shuts down the WriteClient, and nulls out the protoRows and write-stream-name. * This also closes the internal StreamWriter, so that the helper instance is not * usable after * calling commit(). */ public void abort() { clean(); this.protoRows = null; this.writeStreamName = null; } private void clean() { clearProtoRows(); if (streamWriter != null) { streamWriter.close(); } } private void clearProtoRows() { if (this.protoRows != null) { this.protoRows.clear(); } } public String getWriteStreamName() { return writeStreamName; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryErrorCode.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; public enum BigQueryErrorCode { BIGQUERY_VIEW_DESTINATION_TABLE_CREATION_FAILED(0), BIGQUERY_DATETIME_PARSING_ERROR(1), BIGQUERY_FAILED_TO_EXECUTE_QUERY(2), BIGQUERY_INVALID_SCHEMA(2), // Should be last UNSUPPORTED(9998), UNKNOWN(9999); final int code; BigQueryErrorCode(int code) { this.code = code; } public int getCode() { return code; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryJobCompletionListener.java ================================================ /* * Copyright 2023 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.cloud.bigquery.JobInfo; public interface BigQueryJobCompletionListener { void accept(JobInfo completedJob); } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryMetrics.java ================================================ package com.google.cloud.bigquery.connector.common; public interface BigQueryMetrics { void incrementBytesReadCounter(long val); void incrementRowsReadCounter(long val); void updateScanTime(long val); void updateParseTime(long val); void updateTimeInSpark(long val); } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryProxyConfig.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import java.net.URI; import java.util.Optional; /** * Config interface to provide proxy parameters. The concrete class implementing this interface * should implement methods to provide ProxyUri, ProxyUserName and ProxyPassword. */ public interface BigQueryProxyConfig { /** * The Uniform Resource Identifier ({@link URI URI}) of the proxy sever. This is an Optional field * so can be empty. * * @return java.util.Optional */ Optional getProxyUri(); /** * The userName used to connect to the proxy. This is an Optional field so can be empty. * * @return java.util.Optional */ Optional getProxyUsername(); /** * The password used to connect to the proxy. This is an Optional field so can be empty. * * @return java.util.Optional */ Optional getProxyPassword(); } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryProxyTransporterBuilder.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.api.client.http.HttpTransport; import com.google.api.client.http.apache.v2.ApacheHttpTransport; import com.google.api.core.ApiFunction; import com.google.auth.http.HttpTransportFactory; import io.grpc.HttpConnectProxiedSocketAddress; import io.grpc.ManagedChannelBuilder; import io.grpc.ProxiedSocketAddress; import io.grpc.ProxyDetector; import java.net.InetSocketAddress; import java.net.SocketAddress; import java.net.URI; import java.util.Optional; import org.apache.http.HttpHost; import org.apache.http.auth.AuthScope; import org.apache.http.auth.Credentials; import org.apache.http.auth.UsernamePasswordCredentials; import org.apache.http.client.CredentialsProvider; import org.apache.http.impl.client.BasicCredentialsProvider; import org.apache.http.impl.client.HttpClientBuilder; public class BigQueryProxyTransporterBuilder { public static ApiFunction createGrpcChannelConfigurator( Optional proxyAddress, Optional proxyUsername, Optional proxyPassword) { if (!proxyAddress.isPresent()) { return null; } checkProxyParamsValidity(proxyUsername, proxyPassword); URI proxyUri = proxyAddress.get(); String httpProxyHost = proxyUri.getHost(); int httpProxyPort = proxyUri.getPort(); final InetSocketAddress proxySocketAddress = new InetSocketAddress(httpProxyHost, httpProxyPort); return new ApiFunction() { @Override public ManagedChannelBuilder apply(ManagedChannelBuilder input) { return input.proxyDetector( new ProxyDetector() { @Override public ProxiedSocketAddress proxyFor(SocketAddress targetServerAddress) { HttpConnectProxiedSocketAddress.Builder proxySocketBuilder = HttpConnectProxiedSocketAddress.newBuilder() .setTargetAddress((InetSocketAddress) targetServerAddress) .setProxyAddress(proxySocketAddress); if (proxyUsername.isPresent() && proxyPassword.isPresent()) { proxySocketBuilder.setUsername(proxyUsername.get()); proxySocketBuilder.setPassword(proxyPassword.get()); } return proxySocketBuilder.build(); } }); } }; } public static HttpTransportFactory createHttpTransportFactory( Optional proxyAddress, Optional proxyUsername, Optional proxyPassword) { if (!proxyAddress.isPresent()) { return null; } checkProxyParamsValidity(proxyUsername, proxyPassword); URI proxyUri = proxyAddress.get(); String httpProxyHost = proxyUri.getHost(); int httpProxyPort = proxyUri.getPort(); final HttpHost proxyHost = new HttpHost(httpProxyHost, httpProxyPort); HttpClientBuilder httpClientBuilder = HttpClientBuilder.create().setProxy(proxyHost); if (proxyUsername.isPresent() && proxyPassword.isPresent()) { Credentials proxyCredentials = new UsernamePasswordCredentials(proxyUsername.get(), proxyPassword.get()); CredentialsProvider credentialsProvider = new BasicCredentialsProvider(); credentialsProvider.setCredentials( new AuthScope(proxyUri.getHost(), proxyUri.getPort()), proxyCredentials); httpClientBuilder.setDefaultCredentialsProvider(credentialsProvider); } return new BigQueryHttpTransportFactory(httpClientBuilder); } public static class BigQueryHttpTransportFactory implements HttpTransportFactory { private HttpClientBuilder httpClientBuilder; public BigQueryHttpTransportFactory() { // empty constructor: // to solve the InstantiationException in ServiceAccountCredentials at readObject } public BigQueryHttpTransportFactory(HttpClientBuilder httpClientBuilder) { this.httpClientBuilder = httpClientBuilder; } @Override public HttpTransport create() { return new ApacheHttpTransport(httpClientBuilder.build()); } } public static void checkProxyParamsValidity( Optional proxyUsername, Optional proxyPassword) throws IllegalArgumentException { if (proxyUsername.isPresent() != proxyPassword.isPresent()) { throw new IllegalArgumentException( "Both proxyUsername and proxyPassword should be defined or not defined together"); } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryPushdownException.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.UNKNOWN; /** Exception if query pushdown to BigQuery fails */ public class BigQueryPushdownException extends BigQueryConnectorException { public BigQueryPushdownException(String message) { super(UNKNOWN, message); } public BigQueryPushdownException(String message, Throwable t) { super(UNKNOWN, message, t); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryPushdownUnsupportedException.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.UNSUPPORTED; /** Exception if query pushdown is for an unsupported operation */ public class BigQueryPushdownUnsupportedException extends BigQueryConnectorException { public BigQueryPushdownUnsupportedException(String message) { super(UNSUPPORTED, message); } public BigQueryPushdownUnsupportedException(String message, Throwable t) { super(UNSUPPORTED, message, t); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryStorageReadRowsTracer.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import java.io.Serializable; /** * Interface to capture tracing in information for the BigQuery connector. Modelled after {@link * com.google.api.gax.tracing.ApiTracer} * *

A single instance of a tracer corresponds with a single logical stream from the service. * *

Paired start/end methods are expected to be called from the same thread. * *

For internal use only. */ public interface BigQueryStorageReadRowsTracer extends Serializable { /** Record stream initialization time. */ void startStream(); /** Indicates a fully decoded element has been requested by spark (i.e. Arrow RecordBatch). */ void rowsParseStarted(); /** Indicates when a decoded item was delivered. */ void rowsParseFinished(long rowsParsed); /** Indicates the next ReadRowsResponse was requested from the server. */ void readRowsResponseRequested(); /** Indicates the next ReadRowsResponse was requested from the server. */ void readRowsResponseObtained(long bytesReceived); /** The ReadRows stream has finished. */ void finished(); /** Called when the next batch is needed from spark. */ void nextBatchNeeded(); /** * Must only be called before any calls are made to the tracer. This is intended for cases when * multiple threads might be used for processing one stream. tracer that is distinguished between * IDs. * * @param id A distinguisher to use. * @return A new tracer with the ID> */ BigQueryStorageReadRowsTracer forkWithPrefix(String id); long getBytesRead(); long getRowsRead(); long getScanTimeInMilliSec(); long getParseTimeInMilliSec(); long getTimeInSparkInMilliSec(); } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryTracerFactory.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import java.io.Serializable; import java.util.Optional; /** Factory to create application level tracers for bigquery operations. */ public interface BigQueryTracerFactory extends Serializable { BigQueryStorageReadRowsTracer newReadRowsTracer( String streamName, BigQueryMetrics bigQueryMetrics, Optional readSessionMetrics); } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryUtil.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.cloud.bigquery.Field.Mode.NULLABLE; import static com.google.cloud.http.BaseHttpServiceException.UNKNOWN_CODE; import static com.google.common.base.Throwables.getCausalChain; import static java.lang.String.format; import com.google.auth.Credentials; import com.google.auth.oauth2.ExternalAccountCredentials; import com.google.cloud.bigquery.BigQueryError; import com.google.cloud.bigquery.BigQueryException; import com.google.cloud.bigquery.Clustering; import com.google.cloud.bigquery.ExternalTableDefinition; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.Field.Mode; import com.google.cloud.bigquery.FieldList; import com.google.cloud.bigquery.FieldValue; import com.google.cloud.bigquery.FieldValueList; import com.google.cloud.bigquery.HivePartitioningOptions; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.QueryParameterValue; import com.google.cloud.bigquery.RangePartitioning; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardSQLTypeName; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.TableResult; import com.google.cloud.bigquery.TimePartitioning; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.cloud.bigquery.storage.v1.ReadStream; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Objects; import com.google.common.base.Preconditions; import com.google.common.collect.HashMultimap; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Multimap; import io.grpc.Status; import io.grpc.Status.Code; import io.grpc.StatusRuntimeException; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.lang.reflect.InvocationTargetException; import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Optional; import java.util.TreeMap; import java.util.UUID; import java.util.function.Function; import java.util.function.IntFunction; import java.util.regex.Matcher; import java.util.regex.Pattern; import java.util.stream.Collectors; import javax.annotation.Nullable; public class BigQueryUtil { // Numeric is a fixed precision Decimal Type with 38 digits of precision and 9 digits of scale. // See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#numeric-type public static final int DEFAULT_NUMERIC_PRECISION = 38; public static final int DEFAULT_NUMERIC_SCALE = 9; public static final int DEFAULT_BIG_NUMERIC_PRECISION = 76; public static final int DEFAULT_BIG_NUMERIC_SCALE = 38; private static final int NO_VALUE = -1; private static final long BIGQUERY_INTEGER_MIN_VALUE = Long.MIN_VALUE; static final ImmutableSet INTERNAL_ERROR_MESSAGES = ImmutableSet.of( "HTTP/2 error code: INTERNAL_ERROR", "Connection closed with unknown cause", "Received unexpected EOS on DATA frame from server"); static final String READ_SESSION_EXPIRED_ERROR_MESSAGE = "session expired at"; private static final String TARGET_ALIAS = "__target_" + UUID.randomUUID().toString().replace("-", ""); private static final String SOURCE_ALIAS = "__source_" + UUID.randomUUID().toString().replace("-", ""); private static final String PROJECT_PATTERN = "\\S+"; private static final String DATASET_PATTERN = "\\w+"; // Allow any character except ':' and '.', which are used as delimiters in qualified names. // These confuse the qualified table parsing. private static final String TABLE_PATTERN = "[^.:]+"; private static final String NAMED_PARAM_PREFIX = "namedparameters."; private static final String POSITIONAL_PARAM_PREFIX = "positionalparameters."; /** * Regex for an optionally fully qualified table. * *

Must match 'project.dataset.table' OR the legacy 'project:dataset.table' OR 'dataset.table' * OR 'table'. */ private static final Pattern QUALIFIED_TABLE_REGEX = Pattern.compile( format("^(((%s)[:.])?(%s)\\.)?(%s)$$", PROJECT_PATTERN, DATASET_PATTERN, TABLE_PATTERN)); // Based on // https://cloud.google.com/bigquery/docs/reference/storage/rpc/google.cloud.bigquery.storage.v1#google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions private static final int MAX_FILTER_LENGTH_IN_BYTES = 2 << 20; private BigQueryUtil() {} public static boolean isRetryable(Throwable cause) { return getCausalChain(cause).stream().anyMatch(BigQueryUtil::isRetryableInternalError); } static boolean isRetryableInternalError(Throwable t) { if (t instanceof StatusRuntimeException) { StatusRuntimeException statusRuntimeException = (StatusRuntimeException) t; return statusRuntimeException.getStatus().getCode() == Status.Code.INTERNAL && INTERNAL_ERROR_MESSAGES.stream() .anyMatch(message -> statusRuntimeException.getMessage().contains(message)); } return false; } public static boolean isReadSessionExpired(Throwable cause) { return getCausalChain(cause).stream().anyMatch(BigQueryUtil::isReadSessionExpiredInternalError); } static boolean isReadSessionExpiredInternalError(Throwable t) { if (t instanceof StatusRuntimeException) { StatusRuntimeException statusRuntimeException = (StatusRuntimeException) t; return statusRuntimeException.getStatus().getCode() == Code.FAILED_PRECONDITION && statusRuntimeException.getMessage().contains(READ_SESSION_EXPIRED_ERROR_MESSAGE); } return false; } static BigQueryException convertToBigQueryException(BigQueryError error) { return new BigQueryException(UNKNOWN_CODE, error.getMessage(), error); } static boolean areCredentialsEqual(Credentials credentials1, Credentials credentials2) { if (!(credentials1 instanceof ExternalAccountCredentials) && !(credentials2 instanceof ExternalAccountCredentials)) { return Objects.equal(credentials1, credentials2); } return Arrays.equals( getCredentialsByteArray(credentials1), getCredentialsByteArray(credentials2)); } static byte[] getCredentialsByteArray(Credentials credentials) { ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); try { ObjectOutputStream objectOutputStream = new ObjectOutputStream(byteArrayOutputStream); objectOutputStream.writeObject(credentials); objectOutputStream.close(); } catch (IOException e) { throw new RuntimeException(e); } return byteArrayOutputStream.toByteArray(); } static Credentials getCredentialsFromByteArray(byte[] byteArray) { try { ObjectInputStream objectInputStream = new ObjectInputStream(new ByteArrayInputStream(byteArray)); return (Credentials) objectInputStream.readObject(); } catch (IOException | ClassNotFoundException e) { throw new RuntimeException(e); } } // returns the first present optional, empty if all parameters are empty public static Optional firstPresent(Optional... optionals) { for (Optional o : optionals) { if (o.isPresent()) { return o; } } return Optional.empty(); } public static TableId parseTableId(String rawTable) { return parseTableId(rawTable, Optional.empty(), Optional.empty(), Optional.empty()); } public static TableId parseTableId( String rawTable, Optional dataset, Optional project) { return parseTableId(rawTable, dataset, project, Optional.empty()); } public static TableId parseTableId( String rawTable, Optional dataset, Optional project, Optional datePartition) { String effectiveTable = rawTable.trim(); if (effectiveTable.length() >= 2 && effectiveTable.startsWith("`") && effectiveTable.endsWith("`")) { effectiveTable = effectiveTable.substring(1, effectiveTable.length() - 1); } Matcher matcher = QUALIFIED_TABLE_REGEX.matcher(effectiveTable); if (!matcher.matches()) { throw new IllegalArgumentException( format("Invalid Table ID '%s'. Must match '%s'", rawTable, QUALIFIED_TABLE_REGEX)); } String table = matcher.group(5); Optional parsedDataset = Optional.ofNullable(matcher.group(4)); Optional parsedProject = Optional.ofNullable(matcher.group(3)); String tableAndPartition = datePartition.map(date -> String.format("%s$%s", table, date)).orElse(table); String actualDataset = firstPresent(parsedDataset, dataset) .orElseThrow(() -> new IllegalArgumentException("'dataset' not parsed or provided.")); return firstPresent(parsedProject, project) .map(p -> TableId.of(p, actualDataset, tableAndPartition)) .orElse(TableId.of(actualDataset, tableAndPartition)); } public static String friendlyTableName(TableId tableId) { return tableId.getProject() != null ? String.format("%s.%s.%s", tableId.getProject(), tableId.getDataset(), tableId.getTable()) : String.format("%s.%s", tableId.getDataset(), tableId.getTable()); } public static void convertAndThrow(BigQueryError error) { throw new BigQueryException(UNKNOWN_CODE, error.getMessage(), error); } /** * Solving Issue #248. As the bigquery load API can handle wildcard characters, we replace (a) 10 * URIs ending in XXX[0-9].suffix with XXX*.suffix; (b) 10 URIs ending in XXX[0-9]*.suffix with * XXX*.suffix; This reduces the total number of URIs sent to the BigQuery API * * @param uris the list of URIs where the data was written to * @param prefixRegex the regex to catch the part before the file index. * @param suffixRegex the regex to catch the part after the file index. */ public static List optimizeLoadUriList( List uris, String prefixRegex, String suffixRegex) { Pattern pattern = Pattern.compile("(" + prefixRegex + "\\d*)\\d\\**(" + suffixRegex + ")"); ImmutableList.Builder result = ImmutableList.builder(); List workingList = uris; while (!workingList.isEmpty()) { Multimap trimmedUriMap = trimUris(pattern, workingList); List nextList = new ArrayList<>(); for (String trimmedUri : trimmedUriMap.keySet()) { Collection mappedUris = trimmedUriMap.get(trimmedUri); if (mappedUris.size() == 10) { // All URIs exists, we can replace the last character with '*' in the next iteration nextList.add(trimmedUri); } else { // not all suffixes exist, so we can't optimize further. result.addAll(mappedUris); } } // cleanup and prepare next iteration trimmedUriMap.clear(); workingList = nextList; } return result.build(); } private static Multimap trimUris(Pattern pattern, List workingList) { Multimap trimmedUriMap = HashMultimap.create(); // converting // prefix-1234.suffix to prefix-123*.suffix // prefix-123*.suffix to prefix-12*.suffix for (String uri : workingList) { String trimmedUri = pattern.matcher(uri).replaceFirst("$1*$2"); trimmedUriMap.put(trimmedUri, uri); } return trimmedUriMap; } /** * Compares to Schema instances for equality. Unlike Schema.equals(), here the caller can * disregard the schema's field order. * * @param sourceSchema the first schema to compare * @param destinationSchema the second schema to compare * @param regardFieldOrder whether to regard the field order in the comparison * @return {@link ComparisonResult#equal()} is the two schema equal each other, {@link * ComparisonResult#differentWithDescription(List)} otherwise */ public static ComparisonResult schemaWritable( Schema sourceSchema, Schema destinationSchema, boolean regardFieldOrder, boolean enableModeCheckForSchemaFields) { if (sourceSchema == destinationSchema) { return ComparisonResult.equal(); } // if both are null we would have caught it earlier if (sourceSchema == null || destinationSchema == null) { return ComparisonResult.differentNoDescription(); } if (regardFieldOrder) { boolean equalsResult = sourceSchema.equals(destinationSchema); return ComparisonResult.fromEqualsResult(equalsResult); } // compare field by field return fieldListWritable( sourceSchema.getFields(), destinationSchema.getFields(), enableModeCheckForSchemaFields); } /** * Create a list of read stream names of given read session. * * @param readSession BQ read session handle * @return list of stream names, empty if read session is null */ public static List getStreamNames(ReadSession readSession) { return readSession == null ? new ArrayList<>() : readSession.getStreamsList().stream() .map(ReadStream::getName) // This formulation is used to guarantee a serializable list. .collect(Collectors.toCollection(ArrayList::new)); } /** * Check to see if the source field can be writen into the destination field. We need this method * as the BigQuery API may leave the mode field as null in case of NULLABLE * * @param sourceField the field which is to be written * @param destinationField the field into which the source is to be written * @param enableModeCheckForSchemaFields if true, both the fields' mode checks are compared, * skipped otherwise * @return {@link ComparisonResult#equal()} if the source field is writable into destination * field, {@link ComparisonResult#differentWithDescription(List)} otherwise */ @VisibleForTesting static ComparisonResult fieldWritable( Field sourceField, Field destinationField, boolean enableModeCheckForSchemaFields) { if (sourceField == destinationField) { return ComparisonResult.equal(); } /* If the destination field is NULLABLE or REPEATED and there is no matching field in the source then it is supported but if the destination field is REQUIRED then we do need source field to write into it. */ if (sourceField == null) { if (destinationField.getMode() == Mode.REQUIRED) { return ComparisonResult.differentWithDescription( ImmutableList.of("Required field not found in source: " + destinationField.getName())); } else { return ComparisonResult.equal(); } } // cannot write if the destination table doesn't have the field if (destinationField == null) { return ComparisonResult.differentWithDescription( ImmutableList.of("Field not found in destination: " + sourceField.getName())); } if (!Objects.equal(sourceField.getName(), destinationField.getName())) { return ComparisonResult.differentWithDescription( ImmutableList.of( "Wrong field name", "expected source field name: " + destinationField.getName() + " but was: " + sourceField.getName())); } ComparisonResult subFieldsResult = fieldListWritable( sourceField.getSubFields(), destinationField.getSubFields(), enableModeCheckForSchemaFields); if (!subFieldsResult.valuesAreEqual()) { return ComparisonResult.differentWithDescription( ImmutableList.of( "Subfields mismatch for: " + destinationField.getName(), subFieldsResult.makeMessage())); } if (!typeWriteable(sourceField.getType(), destinationField.getType())) { return ComparisonResult.differentWithDescription( ImmutableList.of( "Incompatible type for field: " + destinationField.getName(), "cannot write source type: " + sourceField.getType() + " to destination type: " + destinationField.getType())); } if (enableModeCheckForSchemaFields && !isModeWritable( nullableIfNull(sourceField.getMode()), nullableIfNull(destinationField.getMode()))) { return ComparisonResult.differentWithDescription( ImmutableList.of( "Incompatible mode for field: " + destinationField.getName(), "cannot write source field mode: " + nullableIfNull(sourceField.getMode()).name() + " to destination field mode: " + nullableIfNull(destinationField.getMode()).name())); } boolean sourceAndDestMaxLengthNull = (sourceField.getMaxLength() == null && destinationField.getMaxLength() == null); boolean sourceMaxLenLessThanEqualsDestMaxLen = (sourceField.getMaxLength() != null && destinationField.getMaxLength() != null && sourceField.getMaxLength() <= destinationField.getMaxLength()); if ((!sourceAndDestMaxLengthNull) && (!sourceMaxLenLessThanEqualsDestMaxLen)) { return ComparisonResult.differentWithDescription( ImmutableList.of( "Incompatible max length for field: " + destinationField.getName(), "cannot write source field with max length: " + sourceField.getMaxLength() + " to destination field with max length: " + destinationField.getMaxLength())); } boolean sourceScaleLessThanEqualsDestScale = ((sourceField.getScale() == destinationField.getScale()) || (getScale(sourceField) <= getScale(destinationField))); boolean sourcePrecisionLessThanEqualsDestPrecision = ((sourceField.getPrecision() == destinationField.getPrecision()) || (getPrecision(sourceField) <= getPrecision(destinationField))); if ((!sourceScaleLessThanEqualsDestScale) || (!sourcePrecisionLessThanEqualsDestPrecision)) { return ComparisonResult.differentWithDescription( ImmutableList.of( "Incompatible precision, scale for field: " + destinationField.getName(), "cannot write source field with precision, scale: " + formatPrecisionAndScale(sourceField) + " to destination field with precision, scale: " + formatPrecisionAndScale(destinationField))); } return ComparisonResult.equal(); } private static String formatPrecisionAndScale(Field field) { return String.format("(%s, %s)", field.getPrecision(), field.getScale()); } // allowing widening narrow numeric into bignumeric // allowing writing string to time @VisibleForTesting static boolean typeWriteable(LegacySQLTypeName sourceType, LegacySQLTypeName destinationType) { return (sourceType.equals(LegacySQLTypeName.NUMERIC) && destinationType.equals(LegacySQLTypeName.BIGNUMERIC)) || (sourceType.equals(LegacySQLTypeName.STRING) && destinationType.equals(LegacySQLTypeName.TIME)) || (sourceType.equals(LegacySQLTypeName.STRING) && destinationType.equals(LegacySQLTypeName.DATETIME)) || sourceType.equals(destinationType); } @VisibleForTesting static int getPrecision(Field field) { return getValueOrDefault( field.getPrecision(), field.getType(), DEFAULT_NUMERIC_PRECISION, DEFAULT_BIG_NUMERIC_PRECISION); } @VisibleForTesting static int getScale(Field field) { return getValueOrDefault( field.getScale(), field.getType(), DEFAULT_NUMERIC_SCALE, DEFAULT_BIG_NUMERIC_SCALE); } private static int getValueOrDefault( Long value, LegacySQLTypeName type, int numericValue, int bigNumericValue) { if (value != null) { return value.intValue(); } // scale is null, so use defaults if (LegacySQLTypeName.NUMERIC.equals(type)) { return numericValue; } if (LegacySQLTypeName.BIGNUMERIC.equals(type)) { return bigNumericValue; } return NO_VALUE; } @VisibleForTesting static boolean isModeWritable(Field.Mode sourceMode, Field.Mode destinationMode) { switch (destinationMode) { case REPEATED: return sourceMode == Mode.REPEATED; case REQUIRED: case NULLABLE: return sourceMode != Mode.REPEATED; } return false; } @VisibleForTesting static ComparisonResult fieldListWritable( FieldList sourceFieldList, FieldList destinationFieldList, boolean enableModeCheckForSchemaFields) { if (sourceFieldList == destinationFieldList) { return ComparisonResult.equal(); } // if both are null we would have caught it earlier if (sourceFieldList == null || destinationFieldList == null) { return ComparisonResult.differentNoDescription(); } // cannot write of the source has more fields than the destination table. if (sourceFieldList.size() > destinationFieldList.size()) { return ComparisonResult.differentWithDescription( ImmutableList.of( "Number of source fields: " + sourceFieldList.size() + " is larger than number of destination fields: " + destinationFieldList.size())); } Map sourceFieldsMap = sourceFieldList.stream().collect(Collectors.toMap(Field::getName, Function.identity())); Map destinationFieldsMap = destinationFieldList.stream() .collect(Collectors.toMap(Field::getName, Function.identity())); for (Map.Entry e : destinationFieldsMap.entrySet()) { Field f1 = sourceFieldsMap.get(e.getKey()); Field f2 = e.getValue(); ComparisonResult result = fieldWritable(f1, f2, enableModeCheckForSchemaFields); if (!result.valuesAreEqual()) { return result; } } return ComparisonResult.equal(); } static Field.Mode nullableIfNull(Field.Mode mode) { return mode == null ? NULLABLE : mode; } public static Optional emptyIfNeeded(String value) { return (value == null || value.length() == 0) ? Optional.empty() : Optional.of(value); } /** * Create an instance of the given class name, and verify that it is an instance of the required * class */ public static T createVerifiedInstance( String fullyQualifiedClassName, Class requiredClass, Object... constructorArgs) { try { Class clazz = Class.forName(fullyQualifiedClassName); Object result = clazz .getDeclaredConstructor( Arrays.stream(constructorArgs) .map(Object::getClass) .toArray((IntFunction[]>) Class[]::new)) .newInstance(constructorArgs); if (!requiredClass.isInstance(result)) { throw new IllegalArgumentException( String.format( "% does not implement %s", clazz.getCanonicalName(), requiredClass.getCanonicalName())); } return (T) result; } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | InvocationTargetException | NoSuchMethodException e) { throw new IllegalArgumentException( String.format( "Could not instantiate class [%s], implementing %s", fullyQualifiedClassName, requiredClass.getCanonicalName()), e); } } /** * Verify the given object is Serializable by returning the deserialized version of the serialized * instance */ public static T verifySerialization(T obj) { try { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); ObjectOutputStream out = new ObjectOutputStream(buffer); out.writeObject(obj); out.flush(); out.close(); ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(buffer.toByteArray())); T result = (T) in.readObject(); in.close(); return result; } catch (IOException | ClassNotFoundException e) { throw new IllegalArgumentException( "Serialization test of " + obj.getClass().getCanonicalName() + " failed", e); } } public static ImmutableList getPartitionFields(TableInfo tableInfo) { TableDefinition definition = tableInfo.getDefinition(); if (definition instanceof StandardTableDefinition) { @SuppressWarnings("Varifier") StandardTableDefinition sdt = (StandardTableDefinition) definition; TimePartitioning timePartitioning = sdt.getTimePartitioning(); if (timePartitioning != null) { if (timePartitioning.getField() == null) { // table contains pseudo columns List timePartitionFields = new ArrayList<>(); timePartitionFields.add("_PARTITIONTIME"); if (timePartitioning.getType().equals(TimePartitioning.Type.DAY)) { timePartitionFields.add("_PARTITIONDATE"); } return ImmutableList.copyOf(timePartitionFields); } return ImmutableList.of(timePartitioning.getField()); } RangePartitioning rangePartitioning = sdt.getRangePartitioning(); if (rangePartitioning != null) { return ImmutableList.of(rangePartitioning.getField()); } } if (definition instanceof ExternalTableDefinition) { @SuppressWarnings("Varifier") ExternalTableDefinition edt = (ExternalTableDefinition) definition; HivePartitioningOptions hivePartitioningOptions = edt.getHivePartitioningOptions(); if (hivePartitioningOptions != null) { List fields = hivePartitioningOptions.getFields(); if (fields != null && !fields.isEmpty()) { return ImmutableList.copyOf(fields); } } } // no partitioning return ImmutableList.of(); } public static ImmutableList getClusteringFields(TableInfo tableInfo) { TableDefinition definition = tableInfo.getDefinition(); if (!(definition instanceof StandardTableDefinition)) { return ImmutableList.of(); } Clustering clustering = ((StandardTableDefinition) definition).getClustering(); if (clustering == null || clustering.getFields() == null) { return ImmutableList.of(); } return ImmutableList.copyOf(clustering.getFields()); } public static boolean filterLengthInLimit(Optional filter) { return filter .map(f -> f.getBytes(StandardCharsets.UTF_8).length < MAX_FILTER_LENGTH_IN_BYTES) .orElse(Boolean.TRUE); } /** * Adjusts the wanted schema to properly match the schema of an existing table. * * @param wantedSchema * @param existingTableSchema * @return the adjusted schema */ public static Schema adjustSchemaIfNeeded( Schema wantedSchema, Schema existingTableSchema, boolean allowFieldRelaxation) { FieldList fields = wantedSchema.getFields(); FieldList existingFields = existingTableSchema.getFields(); Map existingFieldsMap = existingFields.stream().collect(Collectors.toMap(Field::getName, Function.identity())); List adjustedFields = fields.stream() .map( field -> adjustField( field, existingFieldsMap.get(field.getName()), allowFieldRelaxation)) .collect(Collectors.toList()); return Schema.of(adjustedFields); } /** * At the moment converts numeric fields to bignumeric if the exisitng schema requires it. Can be * used for other adjustments * * @param field * @param existingField * @return the adjusted field */ @VisibleForTesting static Field adjustField( Field field, @Nullable Field existingField, boolean allowFieldRelaxation) { if (existingField == null) { return field; } Mode fieldMode = existingField.getMode() != null ? existingField.getMode() : NULLABLE; if (allowFieldRelaxation && field.getMode() == NULLABLE) { fieldMode = NULLABLE; } if (field.getType().equals(LegacySQLTypeName.RECORD) && existingField.getType().equals(LegacySQLTypeName.RECORD)) { // need to go recursively FieldList subFields = field.getSubFields(); FieldList exitingSubFields = existingField.getSubFields(); Map existingSubFieldsMap = exitingSubFields.stream().collect(Collectors.toMap(Field::getName, Function.identity())); FieldList adjustedSubFields = FieldList.of( subFields.stream() .map( subField -> adjustField( subField, existingSubFieldsMap.get(subField.getName()), allowFieldRelaxation)) .collect(Collectors.toList())); return existingField.toBuilder().setType(LegacySQLTypeName.RECORD, adjustedSubFields).build(); } // no adjustment return existingField.toBuilder().setMode(fieldMode).build(); } public static String prepareQueryForLog(String query, int maxLength) { String noNewLinesQuery = query.replace("\n", "\\n"); return noNewLinesQuery.length() > maxLength ? noNewLinesQuery.substring(0, maxLength) + /* ellipsis */ '\u2026' : noNewLinesQuery; } static String getQueryForTimePartitionedTable( String destinationTableName, String temporaryTableName, StandardTableDefinition destinationDefinition, TimePartitioning timePartitioning) { TimePartitioning.Type partitionType = timePartitioning.getType(); String partitionField = timePartitioning.getField(); FieldList allFields = destinationDefinition.getSchema().getFields(); Optional partitionFieldType = allFields.stream() .filter(field -> partitionField.equals(field.getName())) .map(field -> field.getType()) .findFirst(); // Using timestamp_trunc on a DATE field results in $cast_to_DATETIME which prevents pruning // when required_partition_filter is set, as it is not considered a monotonic function String truncFuntion = (partitionFieldType.isPresent() && partitionFieldType.get().equals(LegacySQLTypeName.DATE)) ? "date_trunc" : "timestamp_trunc"; String extractedPartitionedSource = String.format("%s(`%s`, %s)", truncFuntion, partitionField, partitionType.toString()); String extractedPartitionedTarget = String.format( "%s(`%s`.`%s`, %s)", truncFuntion, TARGET_ALIAS, partitionField, partitionType.toString()); return createOptimizedMergeQuery( destinationDefinition, destinationTableName, temporaryTableName, extractedPartitionedSource, extractedPartitionedTarget, /* partitionMatchAdditionalCondition */ "TRUE"); } private static String createOptimizedMergeQuery( StandardTableDefinition destinationDefinition, String destinationTableName, String temporaryTableName, String extractedPartitionedSource, String extractedPartitionedTarget, String partitionMatchAdditionalCondition) { FieldList allFields = destinationDefinition.getSchema().getFields(); String commaSeparatedFields = allFields.stream().map(Field::getName).collect(Collectors.joining("`,`", "`", "`")); String targetAlias = TARGET_ALIAS; String sourceAlias = SOURCE_ALIAS; String commaSeparatedSourceFields = allFields.stream() .map(Field::getName) .map(name -> String.format("`%s`.`%s`", sourceAlias, name)) .collect(Collectors.joining(",")); String queryFormat = "DECLARE partitions_to_delete DEFAULT " + "(SELECT ARRAY_AGG(DISTINCT(%s) IGNORE NULLS) FROM `%s`); \n" + "MERGE `%s` AS `%s`\n" + "USING `%s` AS `%s`\n" + "ON FALSE\n" + "WHEN NOT MATCHED BY SOURCE AND (%s) AND %s IN UNNEST(partitions_to_delete) THEN DELETE\n" + "WHEN NOT MATCHED BY TARGET THEN\n" + "INSERT(%s) VALUES(%s)"; return String.format( queryFormat, extractedPartitionedSource, temporaryTableName, destinationTableName, targetAlias, temporaryTableName, sourceAlias, partitionMatchAdditionalCondition, extractedPartitionedTarget, commaSeparatedFields, commaSeparatedSourceFields); } static String getQueryForRangePartitionedTable( String destinationTableName, String temporaryTableName, StandardTableDefinition destinationDefinition, RangePartitioning rangePartitioning) { long start = rangePartitioning.getRange().getStart(); long end = rangePartitioning.getRange().getEnd(); long interval = rangePartitioning.getRange().getInterval(); String partitionField = rangePartitioning.getField(); String extractedPartitionedSource = String.format( "IFNULL(IF(%s >= %s, 0, RANGE_BUCKET(%s, GENERATE_ARRAY(%s, %s, %s))), -1)", partitionField, end, partitionField, start, end, interval); String extractedPartitionedTarget = String.format( "IFNULL(IF(`%s`.`%s` >= %s, 0, RANGE_BUCKET(`%s`.`%s`, GENERATE_ARRAY(%s, %s, %s))), -1)", TARGET_ALIAS, partitionField, end, TARGET_ALIAS, partitionField, start, end, interval); // needed for tables that require the partition field to be in the where clause. It must be // true. String partitionMatchAdditionalCondition = String.format( "`%s`.`%s` is NULL OR `%s`.`%s` >= %d", TARGET_ALIAS, partitionField, TARGET_ALIAS, partitionField, Long.MIN_VALUE); return createOptimizedMergeQuery( destinationDefinition, destinationTableName, temporaryTableName, extractedPartitionedSource, extractedPartitionedTarget, partitionMatchAdditionalCondition); } // based on https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#jobconfiguration, it // seems that the values are subject to the same restriction public static String sanitizeLabelValue(String value) { int resultLength = Math.min(value.length(), 63); StringBuilder buf = new StringBuilder(value.length()); for (int i = 0; i < resultLength; i++) { char ch = Character.toLowerCase(value.charAt(i)); if (Character.isLetterOrDigit(ch) || ch == '-' || ch == '_') { buf.append(ch); } else { // if not alpha-numeric or -,_ then append underscore as a placeholder buf.append('_'); } } return buf.toString(); } /** * BigLake Managed tables are not represented by a dedicated type. Instead, their presence is * indicated by the field 'bigLakeConfiguration' within the StandardTableDefinition {@link * StandardTableDefinition#getBigLakeConfiguration()}. * * @param table the table to check * @return Returns true if the table is a BigLake Managed table. */ public static boolean isBigLakeManagedTable(TableInfo table) { TableDefinition tableDefinition = table.getDefinition(); return tableDefinition.getType() == TableDefinition.Type.TABLE && tableDefinition instanceof StandardTableDefinition && ((StandardTableDefinition) tableDefinition).getBigLakeConfiguration() != null; } /** * Since StandardTableDefinition (table_type == TableDefinition.Type.TABLE) can represent both * BigQuery native tables and BigLake Managed tables, the absence of the "bigLakeConfiguration" * field within the StandardTableDefinition {@link * StandardTableDefinition#getBigLakeConfiguration()}. indicates a BigQuery native table. * * @param table the table to check * @return Returns true if the table is a BigQuery Native table. */ public static boolean isBigQueryNativeTable(TableInfo table) { return table.getDefinition().getType() == TableDefinition.Type.TABLE && !isBigLakeManagedTable(table); } /** * Parses query parameters from Spark options based on NamedParameters.* and * PositionalParameters.* prefixes. * * @param options A map containing Spark DataSource options. * @return A QueryParameterHelper object containing either named or positional parameters, or an * empty state (ParameterMode.NONE). * @throws IllegalArgumentException if both named and positional parameters are specified, if * parameter format is invalid, type is unknown/unsupported, value parsing fails, positional * index is invalid/missing/duplicated, or positional parameters are not contiguous from 1. */ public static QueryParameterHelper parseQueryParameters(Map options) { Map namedParameters = new HashMap<>(); Map positionalParametersTemp = new TreeMap<>(); ParameterMode currentMode = ParameterMode.NONE; for (Map.Entry entry : options.entrySet()) { String key = entry.getKey(); String keyLower = key.toLowerCase(Locale.ROOT); String value = entry.getValue(); if (keyLower.startsWith(NAMED_PARAM_PREFIX)) { Preconditions.checkArgument( currentMode == ParameterMode.NAMED || currentMode == ParameterMode.NONE, "Cannot mix NamedParameters.* and PositionalParameters.* options."); currentMode = ParameterMode.NAMED; processNamedParameter(key, value, namedParameters); } else if (keyLower.startsWith(POSITIONAL_PARAM_PREFIX)) { Preconditions.checkArgument( currentMode == ParameterMode.POSITIONAL || currentMode == ParameterMode.NONE, "Cannot mix NamedParameters.* and PositionalParameters.* options."); currentMode = ParameterMode.POSITIONAL; processPositionalParameter(key, value, positionalParametersTemp); } } switch (currentMode) { case NAMED: return QueryParameterHelper.named(namedParameters); case POSITIONAL: List positionalList = buildPositionalParameterList(positionalParametersTemp); return QueryParameterHelper.positional(positionalList); case NONE: default: return QueryParameterHelper.none(); } } /** * Processes a single named parameter option, adding it to the map. Performs validation checks * specific to named parameters. */ private static void processNamedParameter( String key, String value, Map namedParams) { String paramName = key.substring(NAMED_PARAM_PREFIX.length()); Preconditions.checkArgument( !paramName.isEmpty(), String.format("Named parameter name cannot be empty. Option key: '%s'", key)); QueryParameterValue qpv = parseSingleParameterValue(paramName, value); // Identifier is name // Check for duplicates *before* putting Preconditions.checkArgument( !namedParams.containsKey(paramName), String.format( "Duplicate named parameter definition for '%s'. Option key: '%s'", paramName, key)); namedParams.put(paramName, qpv); } /** * Processes a single positional parameter option, adding it to the temporary map. Performs * parsing and validation checks specific to positional parameters. */ private static void processPositionalParameter( String key, String value, Map positionalParamsTemp) { String indexStr = key.substring(POSITIONAL_PARAM_PREFIX.length()); Preconditions.checkArgument( !indexStr.isEmpty(), String.format("Positional parameter index cannot be empty. Option key: '%s'", key)); int index; try { index = Integer.parseInt(indexStr); } catch (NumberFormatException e) { throw new IllegalArgumentException( String.format( "Invalid positional parameter index: '%s' must be an integer. Option key: '%s'", indexStr, key), e); } Preconditions.checkArgument( index >= 1, String.format( "Invalid positional parameter index: %d. Indices must be 1-based. Option key: '%s'", index, key)); QueryParameterValue qpv = parseSingleParameterValue(String.valueOf(index), value); // Identifier is index Preconditions.checkArgument( !positionalParamsTemp.containsKey(index), String.format( "Duplicate positional parameter definition for index: %d. Option key: '%s'", index, key)); positionalParamsTemp.put(index, qpv); } /** * Builds the final ordered list of positional parameters from the temporary map, checking for * contiguous indices starting from 1. * * @param positionalParamsTemp Sorted map of index to parameter value. * @return Unmodifiable list of positional parameters in order. * @throws NullPointerException if a gap is found (via Preconditions.checkNotNull). */ private static List buildPositionalParameterList( Map positionalParamsTemp) { List positionalList = new ArrayList<>(); int maxIndex = ((TreeMap) positionalParamsTemp).lastKey(); for (int i = 1; i <= maxIndex; i++) { QueryParameterValue currentParam = positionalParamsTemp.get(i); Preconditions.checkNotNull( currentParam, String.format( "Missing positional parameter for index: %d. Parameters must be contiguous starting from 1.", i)); positionalList.add(currentParam); } return positionalList; } /** * Parses a "TYPE:value" string into a QueryParameterValue. * * @param identifier The name or index (as string) of the parameter, for error messages. * @param typeValueString The combined "TYPE:value" string. * @return The corresponding QueryParameterValue. * @throws IllegalArgumentException if the format is invalid, type is unknown/unsupported, or * value parsing fails. */ private static QueryParameterValue parseSingleParameterValue( String identifier, String typeValueString) { Preconditions.checkNotNull( typeValueString, String.format("Parameter value string cannot be null for identifier: %s", identifier)); int colonIndex = typeValueString.indexOf(':'); Preconditions.checkArgument( colonIndex > 0, String.format( "Invalid parameter value format for identifier '%s': '%s'. Expected 'TYPE:value' with" + " non-empty TYPE before ':'.", identifier, typeValueString)); String typeStr = typeValueString.substring(0, colonIndex).trim().toUpperCase(Locale.ROOT); String valueStr = typeValueString.substring(colonIndex + 1); StandardSQLTypeName type; try { type = StandardSQLTypeName.valueOf(typeStr); } catch (IllegalArgumentException e) { throw new IllegalArgumentException( String.format( "Unknown query parameter type: '%s' for identifier: '%s'. Supported types: %s", typeStr, identifier, Arrays.stream(StandardSQLTypeName.values()) .map(Enum::name) .collect(Collectors.joining(", "))), e); } Preconditions.checkArgument( type != StandardSQLTypeName.ARRAY && type != StandardSQLTypeName.STRUCT, String.format( "Unsupported query parameter type: %s for identifier: '%s'. ARRAY and STRUCT types are" + " not currently supported as query parameters.", type, identifier)); return QueryParameterValue.newBuilder().setValue(valueStr.trim()).setType(type).build(); } /** * Formats a BigQuery TableResult into a human-readable string array. Each element in the array * represents a row, with columns separated by tabs. The first element is the header row. */ public static String[] formatTableResult(TableResult result, boolean withHeader) { List resultList = new ArrayList<>(); Schema schema = result.getSchema(); if (schema == null) { // Some commands, like DDL, may not return a schema or rows return new String[0]; } FieldList fields = schema.getFields(); // Header row if (withHeader) { resultList.add(fields.stream().map(Field::getName).collect(Collectors.joining("\t"))); } // Data rows for (FieldValueList row : result.iterateAll()) { String formattedRow = fields.stream() .map(field -> row.get(field.getName())) .map(BigQueryUtil::fieldValueToString) .collect(Collectors.joining("\t")); resultList.add(formattedRow); } return resultList.toArray(new String[0]); } private static String fieldValueToString(FieldValue fieldValue) { if (null == fieldValue || fieldValue.isNull()) { return "NULL"; } return String.valueOf(fieldValue.getValue()); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ComparisonResult.java ================================================ package com.google.cloud.bigquery.connector.common; import com.google.common.collect.ImmutableList; import java.util.List; import java.util.Objects; public class ComparisonResult { private static final ComparisonResult EQUAL = new ComparisonResult(null); private static final ComparisonResult DIFFERENT_NO_DESCRIPTION = new ComparisonResult(ImmutableList.of()); private final ImmutableList facts; static ComparisonResult fromEqualsResult(boolean equal) { return equal ? EQUAL : DIFFERENT_NO_DESCRIPTION; } static ComparisonResult differentWithDescription(List facts) { return new ComparisonResult(ImmutableList.copyOf(facts)); } static ComparisonResult equal() { return EQUAL; } static ComparisonResult differentNoDescription() { return DIFFERENT_NO_DESCRIPTION; } private ComparisonResult(ImmutableList facts) { this.facts = facts; } public boolean valuesAreEqual() { return this.facts == null; } public String makeMessage() { if (this.facts == null) { return ""; } return String.join(", ", facts); } public String toString() { return Objects.toString(facts); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/DecompressReadRowsResponse.java ================================================ package com.google.cloud.bigquery.connector.common; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.protobuf.ByteString; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import net.jpountz.lz4.LZ4Factory; import net.jpountz.lz4.LZ4FastDecompressor; public class DecompressReadRowsResponse { public static InputStream decompressArrowRecordBatch( ReadRowsResponse response, ResponseCompressionCodec compressionCodec) throws IOException { ByteString responseBytes = response.getArrowRecordBatch().getSerializedRecordBatch(); return decompressRecordBatchInternal(response, compressionCodec, responseBytes); } public static InputStream decompressAvroRecordBatch( ReadRowsResponse response, ResponseCompressionCodec compressionCodec) throws IOException { ByteString responseBytes = response.getAvroRows().getSerializedBinaryRows(); return decompressRecordBatchInternal(response, compressionCodec, responseBytes); } private static InputStream decompressRecordBatchInternal( ReadRowsResponse response, ResponseCompressionCodec compressionCodec, ByteString responseBytes) throws IOException { // step 1: read the uncompressed_byte_size // https://cloud.google.com/java/docs/reference/google-cloud-bigquerystorage/latest/com.google.cloud.bigquery.storage.v1.ReadRowsResponse#com_google_cloud_bigquery_storage_v1_ReadRowsResponse_getUncompressedByteSize__ // long uncompressedByteSize = response.getUncompressedByteSize(); if (uncompressedByteSize <= 0) { // response was not compressed, return directly return responseBytes.newInput(); } // step 2: decompress using the compression codec // If the uncompressed byte size is set, then we want to decompress it, using the specified // compression codec. byte[] compressed = responseBytes.toByteArray(); switch (compressionCodec) { case RESPONSE_COMPRESSION_CODEC_LZ4: // decompress LZ4 // https://github.com/lz4/lz4-java LZ4Factory factory = LZ4Factory.fastestInstance(); LZ4FastDecompressor decompressor = factory.fastDecompressor(); byte[] decompressed = new byte[(int) uncompressedByteSize]; decompressor.decompress(compressed, 0, decompressed, 0, (int) uncompressedByteSize); return new ByteArrayInputStream(decompressed); case RESPONSE_COMPRESSION_CODEC_UNSPECIFIED: default: // error! the response claims that it was compressed, but you did not specify which // compression codec to use. throw new IOException( "Missing a compression codec to decode a compressed ReadRowsResponse."); } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/DurationTimer.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import java.io.Serializable; import java.time.Duration; /** * Minimal timer class that measures total durations. It can work in two * modes. Repeated calls to {@link #finish()} will measure time between calls to Finish. * * A call to {@link #start() with a subsequent call to {@link #finish()} will accumulate * time between the {@link #start } and {@link #finish()} call. */ final class DurationTimer implements Serializable { private static final long serialVersionUID = 3952075543181450716L; private long start = Long.MIN_VALUE; private long accumulatedNanos = 0; private long samples = 0; public void start() { start = System.nanoTime(); } public void finish() { long now = System.nanoTime(); if (start != Long.MIN_VALUE) { accumulatedNanos += now - start; samples++; } start = now; } public Duration getAccumulatedTime() { return Duration.ofNanos(accumulatedNanos); } public long getSamples() { return samples; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/EnvironmentContext.java ================================================ /* * Copyright 2023 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.common.collect.ImmutableMap; /** * As the com.google.auth.oauth2.AccessToken class is shaded in the final jar, this class provides * the same functionality but maintains its package. */ public class EnvironmentContext { private ImmutableMap bigQueryJobLabels; public EnvironmentContext(ImmutableMap bigQueryJobLabels) { this.bigQueryJobLabels = bigQueryJobLabels; } public ImmutableMap getBigQueryJobLabels() { return bigQueryJobLabels; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/GcpUtil.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static java.nio.charset.StandardCharsets.UTF_8; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Suppliers; import com.google.common.io.CharStreams; import com.google.common.io.Closeables; import java.io.IOException; import java.io.InputStreamReader; import java.util.Optional; import java.util.function.Supplier; import org.apache.http.client.config.RequestConfig; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; public class GcpUtil { public static final Supplier> GCP_ZONE = Suppliers.memoize(GcpUtil::provideGcpZone); public static Optional getGcpRegion() { return getGcpZone().map(zone -> zone.substring(0, zone.lastIndexOf('-'))); } public static Optional getGcpZone() { return GCP_ZONE.get(); } // Queries the GCE metadata server @VisibleForTesting static Optional provideGcpZone() { RequestConfig config = RequestConfig.custom() .setConnectTimeout(100) .setConnectionRequestTimeout(100) .setSocketTimeout(100) .build(); CloseableHttpClient httpClient = HttpClients.custom().setDefaultRequestConfig(config).build(); HttpGet httpGet = new HttpGet("http://metadata.google.internal/computeMetadata/v1/instance/zone"); httpGet.addHeader("Metadata-Flavor", "Google"); try (CloseableHttpResponse response = httpClient.execute(httpGet)) { if (response.getStatusLine().getStatusCode() == 200) { String body = CharStreams.toString(new InputStreamReader(response.getEntity().getContent(), UTF_8)); return Optional.of(body.substring(body.lastIndexOf('/') + 1)); } else { return Optional.empty(); } } catch (Exception e) { return Optional.empty(); } finally { try { Closeables.close(httpClient, true); } catch (IOException e) { // nothing to do } } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/HttpUtil.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.api.gax.rpc.FixedHeaderProvider; import com.google.api.gax.rpc.HeaderProvider; import java.util.HashMap; import java.util.Map; public class HttpUtil { private HttpUtil() {} public static HeaderProvider createHeaderProvider(BigQueryConfig config, String userAgent) { Map headers = new HashMap<>(); if (config.useParentProjectForMetadataOperations()) { headers.put("X-Goog-User-Project", config.getParentProjectId()); } headers.put("user-agent", userAgent); return FixedHeaderProvider.create(headers); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/IdentityTokenSupplier.java ================================================ package com.google.cloud.bigquery.connector.common; import com.google.auth.oauth2.GoogleCredentials; import com.google.auth.oauth2.IdTokenCredentials; import com.google.auth.oauth2.IdTokenProvider; import com.google.auth.oauth2.IdTokenProvider.Option; import java.io.IOException; import java.io.Serializable; import java.util.Arrays; import java.util.Optional; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class IdentityTokenSupplier implements Serializable { private static final Logger log = LoggerFactory.getLogger(IdentityTokenSupplier.class); private static final Option FORMAT = Option.FORMAT_FULL; private static final Option LICENSE = Option.LICENSES_TRUE; private static final long serialVersionUID = 532621593482642874L; public static Optional fetchIdentityToken(String audience) { try { GoogleCredentials googleCredentials = GoogleCredentials.getApplicationDefault(); IdTokenCredentials idTokenCredentials = IdTokenCredentials.newBuilder() .setIdTokenProvider((IdTokenProvider) googleCredentials) .setTargetAudience(audience) .setOptions(Arrays.asList(FORMAT, LICENSE)) .build(); return Optional.ofNullable(idTokenCredentials.refreshAccessToken().getTokenValue()); } catch (IOException | RuntimeException ex) { log.info("Unable to obtain identity token"); log.debug("Exception while fetching identity token", ex); } return Optional.empty(); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/IteratorMultiplexer.java ================================================ /* * Copyright 2022 Google LLC * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.common.base.Preconditions; import java.util.Iterator; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.Semaphore; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Manages reading ahead from an iterator and dividing it across multiple iterators that can be read * in a round-robin fashion. * *

Useful to parallelizing work from an iterator where order must still be maintained. * * @param Type of iterable object. */ public class IteratorMultiplexer implements AutoCloseable { private static final Logger log = LoggerFactory.getLogger(IteratorMultiplexer.class); private static final Object TERMINAL_SENTINEL = new Object(); private final Iterator iterator; private final int splits; private final QueueIterator[] iterators; private Thread worker; /** * Construct a new instance. * * @param iterator The Iterator to read from. * @param splits The number of output iterators that will read from iterator. */ public IteratorMultiplexer(Iterator iterator, int splits) { this.iterator = iterator; this.splits = splits; // Filled in when initializing iterators. iterators = new QueueIterator[splits]; for (int x = 0; x < splits; x++) { iterators[x] = new QueueIterator<>(); } } @Override public void close() { if (worker != null) { worker.interrupt(); try { worker.join(/*millis=*/ 1000); } catch (InterruptedException e) { throw new RuntimeException("Interrupted while waiting on worker thread shutdown.", e); } worker = null; } for (int x = 0; x < splits; x++) { iterators[x].markDone(/*exception=*/ null); } } void readAhead() { Throwable e = null; try { boolean hasMore = true; while (hasMore) { for (int x = 0; x < splits; x++) { if (iterator.hasNext()) { T value = iterator.next(); iterators[x].sem.acquire(); iterators[x].queue.put(value); } else { hasMore = false; break; } } } } catch (InterruptedException ex) { log.info("Worker was interrupted. Ending all iterators"); e = new RuntimeException(ex); } catch (Throwable ex) { log.info("Worker had exception. Ending all iterators", e); e = ex; } for (int x = 0; x < splits; x++) { iterators[x].markDone(e); } } public synchronized Iterator getSplit(int split) { if (worker == null) { worker = new Thread(this::readAhead, "readahead-worker"); worker.setDaemon(true); worker.start(); } return iterators[split]; } private class QueueIterator implements Iterator { private final ArrayBlockingQueue queue = new ArrayBlockingQueue<>(/*capacity=*/ 2); private final Semaphore sem = new Semaphore(1); private Object t = null; @Override public boolean hasNext() { if (t == TERMINAL_SENTINEL) { return false; } try { t = queue.take(); sem.release(); } catch (InterruptedException e) { // We expect all iterators to either make progress together or finish. // This starts the cleanup process to halt all workers. worker.interrupt(); t = TERMINAL_SENTINEL; } return t != TERMINAL_SENTINEL; } @Override public T next() { Preconditions.checkState(t != TERMINAL_SENTINEL, "No next message"); if (t instanceof Throwable) { if (t instanceof RuntimeException) { throw (RuntimeException) t; } else { throw new RuntimeException((Throwable) t); } } T ret = (T) t; t = null; return ret; } public synchronized void markDone(Throwable e) { if (t == TERMINAL_SENTINEL || t instanceof Exception) { return; } if (queue.remainingCapacity() > 0) { if (e != null) { Preconditions.checkState(queue.offer(e), "Expected room for exception"); } else { Preconditions.checkState(queue.offer(TERMINAL_SENTINEL), "Expected room for sentinel"); } } } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/LazyInitializationSupplier.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.base.Preconditions.checkNotNull; import com.google.common.base.Supplier; import javax.annotation.CheckForNull; import org.checkerframework.checker.nullness.qual.Nullable; /* * This class is adapted from MemoizingSupplier of Google's Guava library. * A separate class is added to be able to access initialized variable to check if the value is already built. */ public class LazyInitializationSupplier implements Supplier { final Supplier delegate; volatile boolean initialized; @CheckForNull transient T value; public LazyInitializationSupplier(Supplier delegate) { this.delegate = checkNotNull(delegate); } @Override public T get() { if (!initialized) { synchronized (this) { if (!initialized) { T t = delegate.get(); value = t; initialized = true; return t; } } } return value; } @Override public String toString() { return "Suppliers.memoize(" + (initialized ? "" : delegate) + ")"; } public boolean isInitialized() { return initialized; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/LoggingBigQueryStorageReadRowsTracer.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.gson.Gson; import com.google.gson.JsonObject; import java.time.Duration; import java.time.Instant; import java.util.Optional; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Implementation of {@link BigQueryStorageReadRowsTracer} that accumulates and logs times * periodically. */ public class LoggingBigQueryStorageReadRowsTracer implements BigQueryStorageReadRowsTracer { private static final Logger log = LoggerFactory.getLogger(LoggingBigQueryStorageReadRowsTracer.class); private final String streamName; private final int logIntervalPowerOf2; // Visible for testing. Instant startTime; final DurationTimer parseTime = new DurationTimer(); final DurationTimer sparkTime = new DurationTimer(); final DurationTimer serviceTime = new DurationTimer(); Instant endTime; long rows = 0; long bytes = 0; // For confirming data is logged. long linesLogged = 0; BigQueryMetrics bigQueryMetrics; Optional readSessionMetrics; LoggingBigQueryStorageReadRowsTracer( String streamName, int logIntervalPowerOf2, BigQueryMetrics bigQueryMetrics, Optional readSessionMetrics) { this.streamName = streamName; this.logIntervalPowerOf2 = logIntervalPowerOf2; this.bigQueryMetrics = bigQueryMetrics; this.readSessionMetrics = readSessionMetrics; } @Override public void startStream() { startTime = Instant.now(); } @Override public void rowsParseStarted() { parseTime.start(); } @Override public void rowsParseFinished(long rows) { this.rows += rows; parseTime.finish(); } @Override public void readRowsResponseRequested() { serviceTime.start(); } @Override public void readRowsResponseObtained(long bytes) { this.bytes += bytes; serviceTime.finish(); } @Override public void finished() { endTime = Instant.now(); logData(); } private static Duration average(DurationTimer durationTimer) { long samples = durationTimer.getSamples(); if (samples == 0) { return null; } return durationTimer.getAccumulatedTime().dividedBy(samples); } private static String format(DurationTimer durationTimer) { long samples = durationTimer.getSamples(); if (samples == 0) { return "Not enough samples."; } Duration average = average(durationTimer); return String.format("Average: %s Samples: %d", average.toString(), samples); } private static String difference(DurationTimer d1, DurationTimer d2) { if (d1.getSamples() == 0 || d2.getSamples() == 0) { return "Not enough samples."; } return String.format("Average: %s", average(d1).minus(average(d2)).toString()); } private static long perSecond(DurationTimer timer, long metric) { if (timer.getSamples() == 0) { return 0; } Duration time = timer.getAccumulatedTime(); double seconds = (time.toMillis() / 1000.0); if (seconds != 0) { return (long) (metric / seconds); } return 0; } private void logData() { JsonObject jsonObject = new JsonObject(); jsonObject.addProperty("Stream Name", streamName); jsonObject.addProperty("Started", startTime == null ? "" : startTime.toString()); jsonObject.addProperty("Ended", endTime == null ? "" : endTime.toString()); jsonObject.addProperty("Parse Timings", format(parseTime)); jsonObject.addProperty("Time in Spark", difference(sparkTime, parseTime)); jsonObject.addProperty("Time waiting for service", format(serviceTime)); jsonObject.addProperty("Bytes/s", perSecond(serviceTime, getBytesRead())); jsonObject.addProperty("Rows/s", perSecond(parseTime, getRowsRead())); jsonObject.addProperty("Bytes", getBytesRead()); jsonObject.addProperty("Rows", getRowsRead()); jsonObject.addProperty("I/O time in ms", getScanTimeInMilliSec()); log.info("ReadStream Metrics :{}", new Gson().toJson(jsonObject)); bigQueryMetrics.incrementBytesReadCounter(getBytesRead()); bigQueryMetrics.incrementRowsReadCounter(getRowsRead()); bigQueryMetrics.updateScanTime(getScanTimeInMilliSec()); bigQueryMetrics.updateParseTime(getParseTimeInMilliSec()); bigQueryMetrics.updateTimeInSpark(getTimeInSparkInMilliSec()); readSessionMetrics.ifPresent( metrics -> { metrics.incrementBytesReadAccumulator(getBytesRead()); metrics.incrementRowsReadAccumulator(getRowsRead()); metrics.incrementParseTimeAccumulator(getParseTimeInMilliSec()); metrics.incrementScanTimeAccumulator(getScanTimeInMilliSec()); }); linesLogged++; } @Override public void nextBatchNeeded() { sparkTime.finish(); if (((sparkTime.getSamples() + 1) & ((1 << logIntervalPowerOf2) - 1)) == 0) { logData(); } } @Override public BigQueryStorageReadRowsTracer forkWithPrefix(String id) { return new LoggingBigQueryStorageReadRowsTracer( "id-" + id + "-" + streamName, logIntervalPowerOf2, bigQueryMetrics, readSessionMetrics); } @Override public long getBytesRead() { return bytes; } @Override public long getRowsRead() { return rows; } @Override public long getScanTimeInMilliSec() { return serviceTime.getAccumulatedTime().toMillis(); } @Override public long getParseTimeInMilliSec() { return parseTime.getAccumulatedTime().toMillis(); } @Override public long getTimeInSparkInMilliSec() { return sparkTime.getAccumulatedTime().minus(parseTime.getAccumulatedTime()).toMillis(); } String getStreamName() { return streamName; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/LoggingBigQueryTracerFactory.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.inject.Inject; import java.util.Optional; public class LoggingBigQueryTracerFactory implements BigQueryTracerFactory { private final int logIntervalPowerOf2; @Inject public LoggingBigQueryTracerFactory() { this(/*Log every 2^14 batches*/ 14); } LoggingBigQueryTracerFactory(int logIntervalPowerOf2) { this.logIntervalPowerOf2 = logIntervalPowerOf2; } @Override public BigQueryStorageReadRowsTracer newReadRowsTracer( String streamName, BigQueryMetrics bigQueryMetrics, Optional readSessionMetrics) { return new LoggingBigQueryStorageReadRowsTracer( streamName, logIntervalPowerOf2, bigQueryMetrics, readSessionMetrics); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/MaterializationConfiguration.java ================================================ /* * Copyright 2022 Google LLC * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.common.base.Optional; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.util.Map; public class MaterializationConfiguration { public static final int DEFAULT_MATERIALIZATION_EXPIRATION_TIME_IN_MINUTES = 24 * 60; private final com.google.common.base.Optional materializationProject; private final com.google.common.base.Optional materializationDataset; private final int materializationExpirationTimeInMinutes; public static MaterializationConfiguration from( ImmutableMap globalOptions, Map options) { com.google.common.base.Optional materializationProject = BigQueryConfigurationUtil.getAnyOption( globalOptions, options, ImmutableList.of("materializationProject", "viewMaterializationProject")); com.google.common.base.Optional materializationDataset = BigQueryConfigurationUtil.getAnyOption( globalOptions, options, ImmutableList.of("materializationDataset", "viewMaterializationDataset")); int materializationExpirationTimeInMinutes = BigQueryConfigurationUtil.getAnyOption( globalOptions, options, "materializationExpirationTimeInMinutes") .transform(Integer::parseInt) .or(DEFAULT_MATERIALIZATION_EXPIRATION_TIME_IN_MINUTES); if (materializationExpirationTimeInMinutes < 1) { throw new IllegalArgumentException( "materializationExpirationTimeInMinutes must have a positive value, the configured value is " + materializationExpirationTimeInMinutes); } return new MaterializationConfiguration( materializationProject, materializationDataset, materializationExpirationTimeInMinutes); } private MaterializationConfiguration( Optional materializationProject, Optional materializationDataset, int materializationExpirationTimeInMinutes) { this.materializationProject = materializationProject; this.materializationDataset = materializationDataset; this.materializationExpirationTimeInMinutes = materializationExpirationTimeInMinutes; } public Optional getMaterializationProject() { return materializationProject; } public Optional getMaterializationDataset() { return materializationDataset; } public int getMaterializationExpirationTimeInMinutes() { return materializationExpirationTimeInMinutes; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/NonInterruptibleBlockingBytesChannel.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import java.io.IOException; import java.io.InputStream; import java.nio.ByteBuffer; import java.nio.channels.ReadableByteChannel; /** * Some JDKs implement the ReadableByteChannel that wraps an input stream with a channel that will * intercept and reraise interrupted exception. Normally, this is a good thing, however with the * connector use-case this triggers a memory leak in the Arrow library (present as of 4.0). * *

So this is a temporary hack to ensure non-blocking behavior to avoid the memory leak. This * should be fine because the underlying stream will be interrupted appropriately and only along * full message boundaries, which should be sufficient for our use-cases. */ public class NonInterruptibleBlockingBytesChannel implements ReadableByteChannel { private static final int TRANSFER_SIZE = 4096; private final InputStream is; private boolean closed = false; private byte[] transferBuffer = new byte[TRANSFER_SIZE]; public NonInterruptibleBlockingBytesChannel(InputStream is) { this.is = is; } @Override public int read(ByteBuffer dst) throws IOException { int len = dst.remaining(); int totalRead = 0; int bytesRead = 0; while (totalRead < len) { int bytesToRead = Math.min((len - totalRead), TRANSFER_SIZE); bytesRead = is.read(transferBuffer, 0, bytesToRead); if (bytesRead < 0) { break; } else { totalRead += bytesRead; } dst.put(transferBuffer, 0, bytesRead); } if ((bytesRead < 0) && (totalRead == 0)) { return -1; } return totalRead; } @Override public boolean isOpen() { return !closed; } @Override public void close() throws IOException { closed = true; is.close(); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ParallelArrowReader.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.common.base.Preconditions; import java.io.IOException; import java.util.List; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import java.util.concurrent.ExecutorService; import java.util.concurrent.Semaphore; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicInteger; import org.apache.arrow.vector.VectorLoader; import org.apache.arrow.vector.VectorSchemaRoot; import org.apache.arrow.vector.VectorUnloader; import org.apache.arrow.vector.ipc.ArrowReader; import org.apache.arrow.vector.ipc.message.ArrowRecordBatch; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /* * A utility class for taking up to N {@link ArrowReader} objects and reading data from them * asynchronously. This tries to round robin between all readers given to it to maintain * a consistent order. It does not appear spark actually cares about this though * so it could be relaxed in the future. * * This is useful in a few contexts: * * For InputPartitionReaders that have expensive synchronous CPU operations * (e.g. parsing/decompression) this allows for pipelining operations with Spark application level * code (assuming there are free CPU cycles). * * A way of composing underlying readers for increased throughput (e.g. if readers are each IO * bound waiting on separate services). * */ public class ParallelArrowReader implements AutoCloseable { private static final Logger log = LoggerFactory.getLogger(ParallelArrowReader.class); private static final Object DONE_SENTINEL = new Object(); // Visible for testing. private final BlockingQueue queue; private final Semaphore queueSemaphore; private final List readers; private final ExecutorService executor; private final VectorLoader loader; private final BigQueryStorageReadRowsTracer rootTracer; private final BigQueryStorageReadRowsTracer tracers[]; private final AtomicInteger readersReady; // Background thread for reading from delegates. private Thread readerThread; /** * @param readers The readers to read from in a round robin order. * @param executor An ExecutorService to process the get method on the delegates. The service will * be shutdown when this object is closed. */ public ParallelArrowReader( List readers, ExecutorService executor, VectorLoader loader, BigQueryStorageReadRowsTracer tracer) { this.readers = readers; // Reserve extra space for sentinel and one extra element processing. queue = new ArrayBlockingQueue<>(readers.size() + 2); this.executor = executor; this.loader = loader; this.rootTracer = tracer; this.queueSemaphore = new Semaphore(readers.size()); this.readersReady = new AtomicInteger(readers.size()); tracers = new BigQueryStorageReadRowsTracer[readers.size()]; for (int x = 0; x < readers.size(); x++) { tracers[x] = rootTracer.forkWithPrefix("reader-thread-" + x); } start(); } public boolean next() throws IOException { rootTracer.nextBatchNeeded(); rootTracer.readRowsResponseRequested(); ArrowRecordBatch resolvedBatch = null; try { Object nextObject = queue.take(); queueSemaphore.release(); if (nextObject == DONE_SENTINEL) { return false; } if (nextObject instanceof Throwable) { if (nextObject instanceof IOException) { throw (IOException) nextObject; } throw new IOException((Throwable) nextObject); } Preconditions.checkState(nextObject instanceof ArrowRecordBatch, "Expected future object"); resolvedBatch = (ArrowRecordBatch) nextObject; } catch (InterruptedException e) { log.info("Interrupted when waiting for next batch."); return false; } // We don't have access to bytes here. rootTracer.readRowsResponseObtained(/*bytes=*/ 0); if (resolvedBatch != null) { rootTracer.rowsParseStarted(); loader.load(resolvedBatch); rootTracer.rowsParseFinished(resolvedBatch.getLength()); resolvedBatch.close(); return true; } return false; } private void start() { readerThread = new Thread(this::consumeReaders); readerThread.setDaemon(true); readerThread.start(); rootTracer.startStream(); } private void consumeReaders() { try { // Tracks which readers have exhausted all of there elements AtomicBoolean[] hasData = new AtomicBoolean[readers.size()]; long lastBytesRead[] = new long[readers.size()]; VectorUnloader[] unloader = new VectorUnloader[readers.size()]; VectorSchemaRoot[] roots = new VectorSchemaRoot[readers.size()]; for (int x = 0; x < hasData.length; x++) { hasData[x] = new AtomicBoolean(); hasData[x].set(true); lastBytesRead[x] = 0; roots[x] = readers.get(x).getVectorSchemaRoot(); unloader[x] = new VectorUnloader(roots[x], /*includeNullCount=*/ true, /*alignBuffers=*/ false); tracers[x].startStream(); } while (readersReady.get() > 0) { for (int readerIdx = 0; readerIdx < readers.size(); readerIdx++) { // Ensure that we don't submit another task for the same reader // until the last one completed. This is necessary when some readers run out of // tasks. if (!hasData[readerIdx].get()) { continue; } ArrowReader reader = readers.get(readerIdx); final int idx = readerIdx; queueSemaphore.acquire(); executor.submit( () -> { synchronized (roots[idx]) { if (!hasData[idx].get()) { return; } try { tracers[idx].readRowsResponseRequested(); hasData[idx].set(reader.loadNextBatch()); if (!hasData[idx].get()) { queueSemaphore.release(); } long incrementalBytesRead = reader.bytesRead() - lastBytesRead[idx]; tracers[idx].readRowsResponseObtained(/*bytesReceived=*/ incrementalBytesRead); lastBytesRead[idx] = reader.bytesRead(); } catch (Throwable e) { log.info("Exception caught while consuming reader.", e); hasData[idx].set(false); readersReady.set(0); Preconditions.checkState(queue.offer(e), "Expected space in queue"); } ArrowRecordBatch batch = null; if (!hasData[idx].get()) { readersReady.addAndGet(-1); return; } int rows = 0; try { rows = reader.getVectorSchemaRoot().getRowCount(); } catch (IOException e) { queue.offer(e); } // Not quite parsing but re-use it here. tracers[idx].rowsParseStarted(); batch = unloader[idx].getRecordBatch(); tracers[idx].rowsParseFinished(rows); try { Preconditions.checkState(queue.offer(batch), "Expected space in queue"); } catch (Exception e) { batch.close(); throw e; } } }); } } } catch (Throwable e) { log.info("Read ahead caught exceptions", e); Preconditions.checkState(queue.offer(e), "Expected available capacity"); return; } Preconditions.checkState(queue.offer(DONE_SENTINEL), "Expected available capacity"); } @Override public void close() { rootTracer.finished(); // Try to force reader thread to stop. if (readerThread != null) { readersReady.set(0); readerThread.interrupt(); try { readerThread.join(10000); } catch (InterruptedException e) { log.info("Interrupted while waiting for reader thread to finish."); } if (readerThread.isAlive()) { log.warn("Reader thread did not shutdown in 10 seconds."); } else { log.info("Reader thread stopped. Queue size: {}", queue.size()); } } // Stop any queued tasks from processing. executor.shutdownNow(); try { if (!executor.awaitTermination(10, TimeUnit.SECONDS)) { log.warn("executor did not terminate after 10 seconds"); } } catch (InterruptedException e) { log.info("Interrupted when awaiting executor termination"); } queue.stream() .filter(x -> x instanceof ArrowRecordBatch) .map(x -> (ArrowRecordBatch) x) .forEach(ArrowRecordBatch::close); for (BigQueryStorageReadRowsTracer tracer : tracers) { tracer.finished(); } for (ArrowReader reader : readers) { try { // Don't close the stream here because it will consume all of it. // We let other components worry about stream closure. reader.close(/*close underlying channel*/ false); } catch (Exception e) { log.info("Trouble closing delegate readers", e); } } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ParameterMode.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import java.io.Serializable; public enum ParameterMode implements Serializable { NONE, NAMED, POSITIONAL } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/QueryParameterHelper.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.cloud.bigquery.QueryJobConfiguration; import com.google.cloud.bigquery.QueryParameterValue; import com.google.common.base.Preconditions; import java.io.Serializable; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Optional; /** * Helper class to store parsed query parameters (Named or Positional) and their mode. * *

Instances of this class are created by the {@link BigQueryUtil} class. This class is immutable * and serializable, designed for Java 8 compatibility. */ public final class QueryParameterHelper implements Serializable { private static final long serialVersionUID = -283738274937293739L; // For Serializable interface private final ParameterMode mode; private final Map namedParameters; private final List positionalParameters; public QueryParameterHelper( ParameterMode mode, Map named, List positional) { this.mode = mode; this.namedParameters = Collections.unmodifiableMap(new HashMap<>(named)); this.positionalParameters = Collections.unmodifiableList(new ArrayList<>(positional)); } static QueryParameterHelper none() { return new QueryParameterHelper( ParameterMode.NONE, Collections.emptyMap(), Collections.emptyList()); } static QueryParameterHelper named(Map namedParameters) { Preconditions.checkNotNull( namedParameters, "Input named parameters map cannot be null for named mode"); return new QueryParameterHelper(ParameterMode.NAMED, namedParameters, Collections.emptyList()); } static QueryParameterHelper positional(List positionalParameters) { Preconditions.checkNotNull( positionalParameters, "Input positional parameters list cannot be null for positional mode"); return new QueryParameterHelper( ParameterMode.POSITIONAL, Collections.emptyMap(), // Pass empty immutable map positionalParameters); } public ParameterMode getMode() { return mode; } /** * Returns the named parameters. * * @return An Optional containing an immutable map of named parameters if mode is NAMED, otherwise * Optional.empty(). */ public Optional> getNamedParameters() { return mode == ParameterMode.NAMED ? Optional.of(namedParameters) : Optional.empty(); } /** * Returns the positional parameters. * * @return An Optional containing an immutable list of positional parameters if mode is * POSITIONAL, otherwise Optional.empty(). */ public Optional> getPositionalParameters() { return mode == ParameterMode.POSITIONAL ? Optional.of(positionalParameters) : Optional.empty(); } /** Returns true if no parameters were defined, false otherwise. */ public boolean isEmpty() { return mode == ParameterMode.NONE; } public QueryJobConfiguration.Builder configureBuilder(QueryJobConfiguration.Builder builder) { Preconditions.checkNotNull(builder, "QueryJobConfiguration.Builder cannot be null"); this.namedParameters.forEach( (paramName, paramValue) -> { builder.addNamedParameter(paramName, paramValue); }); this.positionalParameters.forEach( (paramValue) -> { builder.addPositionalParameter(paramValue); }); return builder; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadRowsHelper.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static java.util.Objects.requireNonNull; import com.google.cloud.bigquery.storage.v1.BigQueryReadClient; import com.google.cloud.bigquery.storage.v1.ReadRowsRequest; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.common.collect.ImmutableList; import java.io.Serializable; import java.util.Collections; import java.util.Iterator; import java.util.List; import java.util.Optional; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ReadRowsHelper implements AutoCloseable { private static final Logger logger = LoggerFactory.getLogger(ReadRowsHelper.class); private final Options options; private final Optional bigQueryStorageReadRowsTracer; public static final class Options implements Serializable { private static final long serialVersionUID = 1424573701386718509L; private final int maxReadRowsRetries; private final String nullableEndpoint; private final int backgroundParsingThreads; private final int prebufferResponses; public Options( int maxReadRowsRetries, Optional endpoint, int backgroundParsingThreads, int prebufferResponses) { this.maxReadRowsRetries = maxReadRowsRetries; this.nullableEndpoint = endpoint.orElse(null); this.backgroundParsingThreads = backgroundParsingThreads; this.prebufferResponses = prebufferResponses; } public int getMaxReadRowsRetries() { return maxReadRowsRetries; } public Optional getEndpoint() { return Optional.ofNullable(nullableEndpoint); } public int numBackgroundThreads() { return backgroundParsingThreads; } public int numPrebufferResponses() { return prebufferResponses; } } private final BigQueryClientFactory bigQueryReadClientFactory; private final List requests; private StreamCombiningIterator incomingStream; public ReadRowsHelper( BigQueryClientFactory bigQueryReadClientFactory, ReadRowsRequest.Builder request, Options options, Optional bigQueryStorageReadRowsTracer) { this.bigQueryReadClientFactory = requireNonNull(bigQueryReadClientFactory, "bigQueryReadClientFactory cannot be null"); this.requests = ImmutableList.of(requireNonNull(request, "request cannot be null")); this.options = options; this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer; } public ReadRowsHelper( BigQueryClientFactory bigQueryReadClientFactory, List requests, Options options) { this.bigQueryReadClientFactory = requireNonNull(bigQueryReadClientFactory, "bigQueryReadClientFactory cannot be null"); this.requests = requireNonNull(requests, "request cannot be null"); this.options = options; this.bigQueryStorageReadRowsTracer = Optional.empty(); } public Iterator readRows() { if (requests.isEmpty()) { // Partition is empty, probably due to dynamic partition pruning. Cannot return // StreamCombiningIterator as it // requires at least one request return Collections.emptyIterator(); } bigQueryStorageReadRowsTracer.ifPresent(tracer -> tracer.startStream()); BigQueryReadClient client = bigQueryReadClientFactory.getBigQueryReadClient(); incomingStream = new StreamCombiningIterator( client, requests, options.prebufferResponses, options.getMaxReadRowsRetries()); return incomingStream; } @Override public String toString() { return requests.toString(); } @Override public void close() { if (incomingStream != null) { try { // There appears to be a race when calling cancel for an already // consumed stream can cause an exception to be thrown. Since // this is part of the shutdown process, it should be safe to // ignore the error. incomingStream.cancel(); } catch (Exception e) { logger.debug("Error on cancel call", e); } incomingStream = null; } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadRowsResponseInputStreamEnumeration.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import java.io.IOException; import java.io.InputStream; import java.io.UncheckedIOException; import java.util.Iterator; import java.util.NoSuchElementException; /** * Instrumented {@link java.util.Enumeration} for translating bytes received from the BQ Storage API * to continuous input streams. */ public class ReadRowsResponseInputStreamEnumeration implements java.util.Enumeration { private final Iterator responses; private ReadRowsResponse currentResponse; private final BigQueryStorageReadRowsTracer tracer; private final ResponseCompressionCodec responseCompressionCodec; public ReadRowsResponseInputStreamEnumeration( Iterator responses, BigQueryStorageReadRowsTracer tracer, ResponseCompressionCodec compressionCodec) { this.responses = responses; this.tracer = tracer; this.responseCompressionCodec = compressionCodec; loadNextResponse(); } public boolean hasMoreElements() { return currentResponse != null; } public InputStream nextElement() { if (!hasMoreElements()) { throw new NoSuchElementException("No more responses"); } ReadRowsResponse ret = currentResponse; loadNextResponse(); try { return DecompressReadRowsResponse.decompressArrowRecordBatch( ret, this.responseCompressionCodec); } catch (IOException e) { throw new UncheckedIOException("Could not read rows", e); } } void loadNextResponse() { // hasNext is actually the blocking call, so call readRowsResponseRequested // here. tracer.readRowsResponseRequested(); if (responses.hasNext()) { currentResponse = responses.next(); } else { currentResponse = null; } tracer.readRowsResponseObtained( currentResponse == null ? 0 : currentResponse.getArrowRecordBatch().getSerializedRecordBatch().size()); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionCreator.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.UNSUPPORTED; import static java.lang.String.format; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions; import com.google.cloud.bigquery.storage.v1.BigQueryReadClient; import com.google.cloud.bigquery.storage.v1.CreateReadSessionRequest; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.cloud.bigquery.storage.v1.ReadSession.TableModifiers; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.google.common.collect.ImmutableList; import com.google.gson.Gson; import com.google.gson.JsonObject; import com.google.protobuf.Timestamp; import java.time.Duration; import java.time.Instant; import java.util.Optional; import java.util.concurrent.TimeUnit; import java.util.stream.Stream; import org.slf4j.Logger; import org.slf4j.LoggerFactory; // A helper class, also handles view materialization public class ReadSessionCreator { public static final int DEFAULT_MAX_PARALLELISM = 20_000; public static final int MINIMAL_PARALLELISM = 1; public static final int DEFAULT_MIN_PARALLELISM_FACTOR = 3; private static final Logger log = LoggerFactory.getLogger(ReadSessionCreator.class); private static boolean initialized = false; private static Cache READ_SESSION_CACHE; private final ReadSessionCreatorConfig config; private final BigQueryClient bigQueryClient; private final BigQueryClientFactory bigQueryReadClientFactory; private static synchronized void initializeCache(long readSessionCacheDurationMins) { if (!initialized) { READ_SESSION_CACHE = CacheBuilder.newBuilder() .expireAfterWrite(readSessionCacheDurationMins, TimeUnit.MINUTES) .maximumSize(1000) .build(); initialized = true; } } public ReadSessionCreator( ReadSessionCreatorConfig config, BigQueryClient bigQueryClient, BigQueryClientFactory bigQueryReadClientFactory) { this.config = config; this.bigQueryClient = bigQueryClient; this.bigQueryReadClientFactory = bigQueryReadClientFactory; initializeCache(config.getReadSessionCacheDurationMins()); } /** * Creates a new ReadSession for parallel reads. * *

Some attributes are governed by the {@link ReadSessionCreatorConfig} that this object was * constructed with. * * @param table The table to create the session for. * @param selectedFields Projection : the fields (e.g. columns) to return * @param filter Selection: how to filter rows that match this filter * @return ReadSessionResponse */ public ReadSessionResponse create( TableId table, ImmutableList selectedFields, Optional filter) { Instant sessionPrepStartTime = Instant.now(); TableInfo tableDetails = bigQueryClient.getTable(table); TableInfo actualTable = getActualTable(tableDetails, selectedFields, filter); BigQueryReadClient bigQueryReadClient = bigQueryReadClientFactory.getBigQueryReadClient(); log.info( "|creation a read session for table {}, parameters: " + "|selectedFields=[{}]," + "|filter=[{}]" + "|snapshotTimeMillis[{}]", BigQueryUtil.friendlyTableName(table), String.join(",", selectedFields), filter.orElse("None"), config.getSnapshotTimeMillis().isPresent() ? String.valueOf(config.getSnapshotTimeMillis().getAsLong()) : "None"); String tablePath = toTablePath(actualTable.getTableId()); CreateReadSessionRequest request = config .getRequestEncodedBase() .map( value -> { try { return com.google.cloud.bigquery.storage.v1.CreateReadSessionRequest.parseFrom( java.util.Base64.getDecoder().decode(value)); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw new RuntimeException("Couldn't decode:" + value, e); } }) .orElse(CreateReadSessionRequest.newBuilder().build()); ReadSession.Builder requestedSession = request.getReadSession().toBuilder(); config.getTraceId().ifPresent(traceId -> requestedSession.setTraceId(traceId)); TableReadOptions.Builder readOptions = requestedSession.getReadOptionsBuilder(); if (!isInputTableAView(tableDetails)) { filter.ifPresent(readOptions::setRowRestriction); } readOptions.addAllSelectedFields(selectedFields); readOptions.setArrowSerializationOptions( ArrowSerializationOptions.newBuilder() .setBufferCompression(config.getArrowCompressionCodec()) .build()); readOptions.setResponseCompressionCodec(config.getResponseCompressionCodec()); int preferredMinStreamCount = config .getPreferredMinParallelism() .orElseGet( () -> { int defaultPreferredMinStreamCount = Math.max( MINIMAL_PARALLELISM, DEFAULT_MIN_PARALLELISM_FACTOR * config.getDefaultParallelism()); log.debug( "using default preferred min parallelism [{}]", defaultPreferredMinStreamCount); return defaultPreferredMinStreamCount; }); int maxStreamCount = config .getMaxParallelism() .orElseGet( () -> { int defaultMaxStreamCount = Math.max(ReadSessionCreator.DEFAULT_MAX_PARALLELISM, preferredMinStreamCount); log.debug("using default max parallelism [{}]", defaultMaxStreamCount); return defaultMaxStreamCount; }); int minStreamCount = preferredMinStreamCount; if (minStreamCount > maxStreamCount) { minStreamCount = maxStreamCount; log.warn( "preferred min parallelism is larger than the max parallelism, therefore setting it to" + " max parallelism [{}]", minStreamCount); } Instant sessionPrepEndTime = Instant.now(); TableModifiers.Builder modifiers = TableModifiers.newBuilder(); if (!isInputTableAView(tableDetails)) { config .getSnapshotTimeMillis() .ifPresent( millis -> { Instant snapshotTime = Instant.ofEpochMilli(millis); modifiers.setSnapshotTime( Timestamp.newBuilder() .setSeconds(snapshotTime.getEpochSecond()) .setNanos(snapshotTime.getNano()) .build()); }); } CreateReadSessionRequest createReadSessionRequest = request .newBuilder() .setParent("projects/" + bigQueryClient.getProjectId()) .setReadSession( requestedSession .setDataFormat(config.getReadDataFormat()) .setReadOptions(readOptions) .setTableModifiers(modifiers) .setTable(tablePath) .build()) .setMaxStreamCount(maxStreamCount) .setPreferredMinStreamCount(minStreamCount) .build(); if (config.isReadSessionCachingEnabled() && getReadSessionCache().asMap().containsKey(createReadSessionRequest)) { ReadSession readSession = getReadSessionCache().asMap().get(createReadSessionRequest); log.info("Reusing read session: {}, for table: {}", readSession.getName(), table); return new ReadSessionResponse(readSession, actualTable); } ReadSession readSession = bigQueryReadClient.createReadSession(createReadSessionRequest); if (readSession != null) { Instant sessionCreationEndTime = Instant.now(); if (config.isReadSessionCachingEnabled()) { getReadSessionCache().put(createReadSessionRequest, readSession); } JsonObject jsonObject = new JsonObject(); jsonObject.addProperty("readSessionName", readSession.getName()); jsonObject.addProperty("readSessionCreationStartTime", sessionPrepStartTime.toString()); jsonObject.addProperty("readSessionCreationEndTime", sessionCreationEndTime.toString()); jsonObject.addProperty( "readSessionPrepDuration", Duration.between(sessionPrepStartTime, sessionPrepEndTime).toMillis()); jsonObject.addProperty( "readSessionCreationDuration", Duration.between(sessionPrepEndTime, sessionCreationEndTime).toMillis()); jsonObject.addProperty( "readSessionDuration", Duration.between(sessionPrepStartTime, sessionCreationEndTime).toMillis()); log.info("Read session:{}", new Gson().toJson(jsonObject)); log.info( "Received {} partitions from the BigQuery Storage API for" + " session {}. Notice that the number of streams in actual may be lower than the" + " requested number, depending on the amount parallelism that is reasonable for" + " the table and the maximum amount of parallelism allowed by the system.", readSession.getStreamsCount(), readSession.getName()); } return new ReadSessionResponse(readSession, actualTable); } static String toTablePath(TableId tableId) { return format( "projects/%s/datasets/%s/tables/%s", tableId.getProject(), tableId.getDataset(), tableId.getTable()); } public TableInfo getActualTable( TableInfo table, ImmutableList requiredColumns, Optional filter) { String[] filters = filter.map(Stream::of).orElseGet(Stream::empty).toArray(String[]::new); return getActualTable(table, requiredColumns, filters); } TableInfo getActualTable( TableInfo table, ImmutableList requiredColumns, String[] filters) { TableDefinition tableDefinition = table.getDefinition(); TableDefinition.Type tableType = tableDefinition.getType(); if (TableDefinition.Type.TABLE == tableType || TableDefinition.Type.EXTERNAL == tableType || TableDefinition.Type.SNAPSHOT == tableType) { return table; } if (isInputTableAView(table)) { // get it from the view String querySql = bigQueryClient.createSql( table.getTableId(), requiredColumns, filters, config.getSnapshotTimeMillis()); log.debug("querySql is {}", querySql); return bigQueryClient.materializeViewToTable( querySql, table.getTableId(), config.getMaterializationExpirationTimeInMinutes()); } else { // not regular table or a view throw new BigQueryConnectorException( UNSUPPORTED, format( "Table type '%s' of table '%s.%s' is not supported", tableType, table.getTableId().getDataset(), table.getTableId().getTable())); } } public boolean isInputTableAView(TableInfo table) { TableDefinition tableDefinition = table.getDefinition(); TableDefinition.Type tableType = tableDefinition.getType(); if (TableDefinition.Type.VIEW == tableType || TableDefinition.Type.MATERIALIZED_VIEW == tableType) { if (!config.isViewsEnabled()) { throw new BigQueryConnectorException( UNSUPPORTED, format( "Views are not enabled. You can enable views by setting '%s' to true. Notice" + " additional cost may occur.", config.getViewEnabledParamName())); } return true; } return false; } // visible for testing Cache getReadSessionCache() { return READ_SESSION_CACHE; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionCreatorConfig.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import java.util.Optional; import java.util.OptionalInt; import java.util.OptionalLong; public class ReadSessionCreatorConfig { private final boolean viewsEnabled; private final String viewEnabledParamName; private final Optional materializationProject; private final Optional materializationDataset; private final int materializationExpirationTimeInMinutes; private final DataFormat readDataFormat; private final int maxReadRowsRetries; private final OptionalInt maxParallelism; private final OptionalInt preferredMinParallelism; private final int defaultParallelism; private final Optional requestEncodedBase; private final Optional bigQueryStorageGrpcEndpoint; private final Optional bigQueryHttpEndpoint; private final int backgroundParsingThreads; private final boolean pushAllFilters; private final int prebufferResponses; private final int streamsPerPartition; private final CompressionCodec arrowCompressionCodec; private final ResponseCompressionCodec responseCompressionCodec; private final Optional traceId; private final boolean enableReadSessionCaching; private final long readSessionCacheDurationMins; private final OptionalLong snapshotTimeMillis; ReadSessionCreatorConfig( boolean viewsEnabled, Optional materializationProject, Optional materializationDataset, int materializationExpirationTimeInMinutes, DataFormat readDataFormat, int maxReadRowsRetries, String viewEnabledParamName, OptionalInt maxParallelism, OptionalInt preferredMinParallelism, int defaultParallelism, Optional requestEncodedBase, Optional bigQueryStorageGrpcEndpoint, Optional bigQueryHttpEndpoint, int backgroundParsingThreads, boolean pushAllFilters, int prebufferResponses, int streamsPerPartition, CompressionCodec arrowCompressionCodec, ResponseCompressionCodec responseCompressionCodec, Optional traceId, boolean enableReadSessionCaching, long readSessionCacheDurationMins, OptionalLong snapshotTimeMillis) { this.viewsEnabled = viewsEnabled; this.viewEnabledParamName = viewEnabledParamName; this.materializationProject = materializationProject; this.materializationDataset = materializationDataset; this.materializationExpirationTimeInMinutes = materializationExpirationTimeInMinutes; this.readDataFormat = readDataFormat; this.maxReadRowsRetries = maxReadRowsRetries; this.maxParallelism = maxParallelism; this.preferredMinParallelism = preferredMinParallelism; this.defaultParallelism = defaultParallelism; this.requestEncodedBase = requestEncodedBase; this.bigQueryStorageGrpcEndpoint = bigQueryStorageGrpcEndpoint; this.bigQueryHttpEndpoint = bigQueryHttpEndpoint; this.backgroundParsingThreads = backgroundParsingThreads; this.pushAllFilters = pushAllFilters; this.prebufferResponses = prebufferResponses; this.streamsPerPartition = streamsPerPartition; this.arrowCompressionCodec = arrowCompressionCodec; this.responseCompressionCodec = responseCompressionCodec; this.traceId = traceId; this.enableReadSessionCaching = enableReadSessionCaching; this.readSessionCacheDurationMins = readSessionCacheDurationMins; this.snapshotTimeMillis = snapshotTimeMillis; } public boolean isViewsEnabled() { return viewsEnabled; } public String getViewEnabledParamName() { return viewEnabledParamName; } public Optional getMaterializationProject() { return materializationProject; } public Optional getMaterializationDataset() { return materializationDataset; } public int getMaterializationExpirationTimeInMinutes() { return materializationExpirationTimeInMinutes; } public DataFormat getReadDataFormat() { return readDataFormat; } public CompressionCodec getArrowCompressionCodec() { return arrowCompressionCodec; } public ResponseCompressionCodec getResponseCompressionCodec() { return responseCompressionCodec; } public int getMaxReadRowsRetries() { return maxReadRowsRetries; } public OptionalInt getMaxParallelism() { return maxParallelism; } public int getDefaultParallelism() { return defaultParallelism; } public Optional getRequestEncodedBase() { return this.requestEncodedBase; } public Optional getBigQueryStorageGrpcEndpoint() { return bigQueryStorageGrpcEndpoint; } public Optional getBigQueryHttpEndpoint() { return bigQueryHttpEndpoint; } public int backgroundParsingThreads() { return this.backgroundParsingThreads; } public boolean getPushAllFilters() { return this.pushAllFilters; } public ReadRowsHelper.Options toReadRowsHelperOptions() { return new ReadRowsHelper.Options( getMaxReadRowsRetries(), getBigQueryStorageGrpcEndpoint(), backgroundParsingThreads(), getPrebufferResponses()); } public int streamsPerPartition() { return streamsPerPartition; } public int getPrebufferResponses() { return prebufferResponses; } public Optional getTraceId() { return traceId; } public OptionalInt getPreferredMinParallelism() { return preferredMinParallelism; } public boolean isReadSessionCachingEnabled() { return enableReadSessionCaching; } public long getReadSessionCacheDurationMins() { return readSessionCacheDurationMins; } public OptionalLong getSnapshotTimeMillis() { return snapshotTimeMillis; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionCreatorConfigBuilder.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.errorprone.annotations.CanIgnoreReturnValue; import java.util.Optional; import java.util.OptionalInt; import java.util.OptionalLong; public class ReadSessionCreatorConfigBuilder { private boolean viewsEnabled; private Optional materializationProject = Optional.empty(); private Optional materializationDataset = Optional.empty(); private int materializationExpirationTimeInMinutes = 120; private DataFormat readDataFormat = DataFormat.ARROW; private int maxReadRowsRetries = 10; private String viewEnabledParamName = ""; private OptionalInt maxParallelism = OptionalInt.empty(); private OptionalInt preferredMinParallelism = OptionalInt.empty(); private int defaultParallelism = 1000; private Optional requestEncodedBase = Optional.empty(); private Optional bigQueryStorageGrpcEndpoint = Optional.empty(); private Optional bigQueryHttpEndpoint = Optional.empty(); private int backgroundParsingThreads = 0; private boolean pushAllFilters = true; int prebufferResponses = 1; int streamsPerPartition = 1; private CompressionCodec arrowCompressionCodec = CompressionCodec.COMPRESSION_UNSPECIFIED; private ResponseCompressionCodec responseCompressionCodec = ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED; private Optional traceId = Optional.empty(); private boolean enableReadSessionCaching = true; private long readSessionCacheDurationMins = 5L; private OptionalLong snapshotTimeMillis = OptionalLong.empty(); @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setViewsEnabled(boolean viewsEnabled) { this.viewsEnabled = viewsEnabled; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setMaterializationProject( Optional materializationProject) { this.materializationProject = materializationProject; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setMaterializationDataset( Optional materializationDataset) { this.materializationDataset = materializationDataset; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setMaterializationExpirationTimeInMinutes( int materializationExpirationTimeInMinutes) { this.materializationExpirationTimeInMinutes = materializationExpirationTimeInMinutes; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setReadDataFormat(DataFormat readDataFormat) { this.readDataFormat = readDataFormat; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setMaxReadRowsRetries(int maxReadRowsRetries) { this.maxReadRowsRetries = maxReadRowsRetries; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setViewEnabledParamName(String viewEnabledParamName) { this.viewEnabledParamName = viewEnabledParamName; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setMaxParallelism(OptionalInt maxParallelism) { this.maxParallelism = maxParallelism; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setPreferredMinParallelism( OptionalInt preferredMinParallelism) { this.preferredMinParallelism = preferredMinParallelism; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setDefaultParallelism(int defaultParallelism) { this.defaultParallelism = defaultParallelism; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setRequestEncodedBase( Optional requestEncodedBase) { this.requestEncodedBase = requestEncodedBase; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setBigQueryStorageGrpcEndpoint( Optional bigQueryStorageGrpcEndpoint) { this.bigQueryStorageGrpcEndpoint = bigQueryStorageGrpcEndpoint; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setBigQueryHttpEndpoint( Optional bigQueryHttpEndpoint) { this.bigQueryHttpEndpoint = bigQueryHttpEndpoint; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setBackgroundParsingThreads(int backgroundParsingThreads) { this.backgroundParsingThreads = backgroundParsingThreads; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setPushAllFilters(boolean pushAllFilters) { this.pushAllFilters = pushAllFilters; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setPrebufferReadRowsResponses(int prebufferResponses) { this.prebufferResponses = prebufferResponses; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setStreamsPerPartition(int streamsPerPartition) { this.streamsPerPartition = streamsPerPartition; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setArrowCompressionCodec( CompressionCodec arrowCompressionCodec) { this.arrowCompressionCodec = arrowCompressionCodec; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setResponseCompressionCodec( ResponseCompressionCodec responseCompressionCodec) { this.responseCompressionCodec = responseCompressionCodec; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setTraceId(Optional traceId) { this.traceId = traceId; return this; } public ReadSessionCreatorConfigBuilder setEnableReadSessionCaching( boolean enableReadSessionCaching) { this.enableReadSessionCaching = enableReadSessionCaching; return this; } public ReadSessionCreatorConfigBuilder setReadSessionCacheDurationMins( long readSessionCacheDurationMins) { this.readSessionCacheDurationMins = readSessionCacheDurationMins; return this; } @CanIgnoreReturnValue public ReadSessionCreatorConfigBuilder setSnapshotTimeMillis(OptionalLong snapshotTimeMillis) { this.snapshotTimeMillis = snapshotTimeMillis; return this; } public ReadSessionCreatorConfig build() { return new ReadSessionCreatorConfig( viewsEnabled, materializationProject, materializationDataset, materializationExpirationTimeInMinutes, readDataFormat, maxReadRowsRetries, viewEnabledParamName, maxParallelism, preferredMinParallelism, defaultParallelism, requestEncodedBase, bigQueryStorageGrpcEndpoint, bigQueryHttpEndpoint, backgroundParsingThreads, pushAllFilters, prebufferResponses, streamsPerPartition, arrowCompressionCodec, responseCompressionCodec, traceId, enableReadSessionCaching, readSessionCacheDurationMins, snapshotTimeMillis); } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionMetrics.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; public interface ReadSessionMetrics { void incrementBytesReadAccumulator(long value); void incrementRowsReadAccumulator(long value); void incrementScanTimeAccumulator(long value); void incrementParseTimeAccumulator(long value); } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionResponse.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.storage.v1.ReadSession; public class ReadSessionResponse { private final ReadSession readSession; private final TableInfo readTableInfo; public ReadSessionResponse(ReadSession readSession, TableInfo readTableInfo) { this.readSession = readSession; this.readTableInfo = readTableInfo; } public ReadSession getReadSession() { return readSession; } public TableInfo getReadTableInfo() { return readTableInfo; } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/StreamCombiningIterator.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.api.gax.grpc.GrpcCallContext; import com.google.api.gax.rpc.ApiCallContext; import com.google.api.gax.rpc.ResponseObserver; import com.google.api.gax.rpc.StreamController; import com.google.cloud.bigquery.storage.v1.BigQueryReadClient; import com.google.cloud.bigquery.storage.v1.ReadRowsRequest; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.common.base.Preconditions; import com.google.common.cache.CacheBuilder; import com.google.common.cache.CacheLoader; import com.google.common.cache.LoadingCache; import com.google.common.util.concurrent.UncheckedExecutionException; import java.util.Collection; import java.util.Collections; import java.util.Iterator; import java.util.NoSuchElementException; import java.util.Optional; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.Collectors; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * An iterator that combines one or more ReadRows requests into a single iterator. Ordering of * messages is not guaranteed from the streams. * *

This is adapted from ServerStream in gax. In comparison toServerStream, this implementation * also buffers more a configured number of responses instead of a single one. For connections with * high latency between client and server this can processing costs. It also allows combining one or * more ReadRows calls into single iterator to potentially increase perceived client throughput if * that becomes a bottleneck for processing. */ public class StreamCombiningIterator implements Iterator { private static final Logger log = LoggerFactory.getLogger(StreamCombiningIterator.class); private static final Object EOS = new Object(); // Contains either a ReadRowsResponse, or a terminal object of throwable OR EOS // This class is engineered keep responses below capacity unless a terminal state has // been reached. private final ArrayBlockingQueue responses; private final ArrayBlockingQueue observersQueue; private final AtomicInteger observersLeft; private final int bufferEntriesPerStream; private final int numRetries; private final Object lock = new Object(); private final BigQueryReadClient client; Object last; volatile boolean cancelled = false; private final Collection observers; private static final long IDENTITY_TOKEN_TTL_IN_MINUTES = 50; private static final LoadingCache> READ_SESSION_TO_IDENTITY_TOKEN_CACHE = CacheBuilder.newBuilder() .expireAfterWrite(IDENTITY_TOKEN_TTL_IN_MINUTES, TimeUnit.MINUTES) .build(CacheLoader.from(IdentityTokenSupplier::fetchIdentityToken)); StreamCombiningIterator( BigQueryReadClient client, Collection requests, int bufferEntriesPerStream, int numRetries) { this.client = client; observersLeft = new AtomicInteger(requests.size()); this.bufferEntriesPerStream = bufferEntriesPerStream; Preconditions.checkArgument( this.bufferEntriesPerStream > 0, "bufferEntriesPerstream must be positive. Received: %s", this.bufferEntriesPerStream); if (this.bufferEntriesPerStream > 0 || requests.size() > 0) { log.info( "new combining stream with {} streams and {} buffered entries", requests.size(), this.bufferEntriesPerStream); } // + 1 to leave space for terminal object. responses = new ArrayBlockingQueue<>((requests.size() * this.bufferEntriesPerStream) + 1); observersQueue = new ArrayBlockingQueue<>(requests.size() * this.bufferEntriesPerStream); this.numRetries = numRetries; observers = requests.stream().map(Observer::new).collect(Collectors.toList()); } synchronized void stopWithError(Throwable error) { synchronized (lock) { if (cancelled) { return; } try { completeStream(/*addEos=*/ false); } finally { Preconditions.checkState( responses.add(error), "Responses should always have capacity to add element"); } } } private boolean hasActiveObservers() { return observersLeft.get() > 0; } /** * Consumes the next response and asynchronously request the next response from the observer. * * @return The next response. * @throws NoSuchElementException If the stream has been consumed or cancelled. */ @Override public ReadRowsResponse next() { if (!hasNext()) { throw new NoSuchElementException(); } try { Observer observer = observersQueue.poll(); Preconditions.checkState(observer != null); observer.request(); @SuppressWarnings("unchecked") ReadRowsResponse tmp = (ReadRowsResponse) last; return tmp; } finally { if (last != EOS) { last = null; } } } /** * Checks if the stream has been fully consumed or cancelled. This method will block until the * observer enqueues another event (response or completion event). If the observer encountered an * error, this method will propagate the error and put itself into an error where it will always * return the same error. * * @return true If iterator has more responses. */ @Override public boolean hasNext() { if (last == null) { try { last = responses.take(); } catch (InterruptedException e) { cancel(); Thread.currentThread().interrupt(); throw new RuntimeException(e); } } // Preserve async error while keeping the caller's stacktrace as a suppressed exception if (last instanceof RuntimeException) { RuntimeException runtimeException = (RuntimeException) last; runtimeException.addSuppressed(new RuntimeException("Asynchronous task failed")); throw runtimeException; } // This should never really happen because currently gax doesn't throw checked exceptions. // Wrap checked exceptions. This will preserve both the caller's stacktrace and the async error. if (last instanceof Throwable) { Throwable throwable = (Throwable) last; throw new UncheckedExecutionException(throwable); } return last != EOS; } public void cancel() { synchronized (lock) { if (cancelled) { return; } completeStream(/*addEos=*/ true); } } private void maybeFinished() { synchronized (lock) { if (cancelled) { return; } if (hasActiveObservers()) { return; } completeStream(/*addEos=*/ true); } for (Observer observer : observers) { observer.cancel(); } } private void completeStream(boolean addEos) { cancelled = true; observersLeft.set(0); try { for (Observer observer : observers) { observer.cancel(); } } finally { if (addEos) { responses.add(EOS); } } } private String parseReadSessionId(String stream) { int streamsIndex = stream.indexOf("/streams"); if (streamsIndex != -1) { return stream.substring(0, streamsIndex); } else { log.warn("Stream name {} in invalid format", stream); return stream; } } private void newConnection(Observer observer, ReadRowsRequest.Builder request) { synchronized (lock) { if (!cancelled) { ApiCallContext callContext = GrpcCallContext.createDefault(); try { callContext = READ_SESSION_TO_IDENTITY_TOKEN_CACHE .get(parseReadSessionId(request.getReadStream())) .map( token -> GrpcCallContext.createDefault() .withExtraHeaders( Collections.singletonMap( "x-bigquerystorage-api-token", Collections.singletonList(token)))) .orElse(GrpcCallContext.createDefault()); } catch (ExecutionException e) { log.error("Unable to obtain identity token", e); } client.readRowsCallable().call(request.build(), observer, callContext); } } } class Observer implements ResponseObserver { /* Offset into the stream that this is processing. */ private long readRowsCount = 0; /* Number of retries so far on this observer */ private int retries = 0; /** * All methods accessing controller must be synchronized using controllerLock. The states of * this object are: - Fresh object: null - Stream ready (receiving responses): not null - * Retrying stream: null - Stream Finished: null */ StreamController controller; // Number of responses enqueued in the main iterator. AtomicInteger enqueuedCount = new AtomicInteger(0); private final Object controllerLock = new Object(); // The ReadRows request. Uses a builder so offset can easily be set for retry. ReadRowsRequest.Builder builder; Observer(ReadRowsRequest.Builder builder) { this.builder = builder; newConnection(this, builder); } @Override public void onResponse(ReadRowsResponse value) { readRowsCount += value.getRowCount(); // Note we don't take a global lock here, so ordering of observers might be different then // responses. This should be OK because it should balance out in the end (there should // never be more then bufferResponses enquered from any given observer at any time). // Ordering is important to ensure there is always an observer present for the given response. Preconditions.checkState(observersQueue.add(this)); Preconditions.checkState(responses.add(value), "Expected capacity in responses"); } @Override public void onStart(StreamController controller) { synchronized (StreamCombiningIterator.this.lock) { if (cancelled) { controller.cancel(); return; } synchronized (controllerLock) { this.controller = controller; controller.disableAutoInboundFlowControl(); // Regiest one more because request always decrements. enqueuedCount.incrementAndGet(); request(); } } } @Override public void onError(Throwable t) { // if relevant, retry the read, from the last read position if (BigQueryUtil.isRetryable(t) && retries < numRetries) { synchronized (controllerLock) { controller = null; } builder.setOffset(readRowsCount); newConnection(this, builder); retries++; } else { if (BigQueryUtil.isReadSessionExpired(t)) { RuntimeException runtimeException = new RuntimeException( "Read session expired after 6 hours. Dataframes on BigQuery tables cannot be " + "operated on beyond this time-limit. Your options: " + "(1) try finishing within 6 hours, " + "(2) use Spark dataframe caching, " + "(3) read from a newly created BigQuery dataframe.", t); stopWithError(runtimeException); } else { stopWithError(t); } } } @Override public void onComplete() { synchronized (controllerLock) { controller = null; } int left = observersLeft.decrementAndGet(); maybeFinished(); } public synchronized void request() { if (cancelled) { return; } boolean canExit = false; int count = enqueuedCount.decrementAndGet(); // Division by is somewhat arbitrary, a better solution would instument // timing and start refreshing just in time. if (count > (bufferEntriesPerStream / 4)) { // Default netty/gRPC values can oversubscribe streams which can // cause thread contention. By waiting for the buffer to run down // it causes natural thead back-pressure to allow application work // to succeed. return; } int addBack = bufferEntriesPerStream - count; Preconditions.checkState(addBack > 0); enqueuedCount.addAndGet(addBack); while (!canExit) { synchronized (controllerLock) { if (controller == null) { return; } // When not null there are a few cases to consider: // 1. Stream is active, so we want to request here. // 2. Stream is active but onError has been called and blocked on the lock. // In this case by decrementing above the new request should be taken care // after clearing and creating the new stream. // 3. The stream has no more messages. // 4. Stream is inactive (still initializing). try { controller.request(addBack); canExit = true; } catch (RuntimeException e) { // controller might not be started and javadoc isn't clear if it is on its path // to shutdown on what should happen. log.info("Exception on flow control request {} {}", e, builder.getReadStream()); } } } } public void cancel() { synchronized (controllerLock) { if (controller != null) { try { controller.cancel(); } catch (RuntimeException e) { // There could be edge cases here where controller is already cancelled or not yet // read or something else is happening. We don't want this to be fatal. } } } } } } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/UserAgentProvider.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; public interface UserAgentProvider { String getUserAgent(); String getConnectorInfo(); } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/VersionProvider.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; @FunctionalInterface public interface VersionProvider { String getVersion(); } ================================================ FILE: bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/WriteStreamStatistics.java ================================================ package com.google.cloud.bigquery.connector.common; public class WriteStreamStatistics { private final long rowCount; private final long bytesWritten; public WriteStreamStatistics(long rowCount, long bytesWritten) { this.rowCount = rowCount; this.bytesWritten = bytesWritten; } public long getRowCount() { return rowCount; } public long getBytesWritten() { return bytesWritten; } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryClientFactoryTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.*; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNotSame; import static org.junit.Assert.assertSame; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import static org.mockito.Mockito.withSettings; import com.google.api.gax.retrying.RetrySettings; import com.google.api.gax.rpc.FixedHeaderProvider; import com.google.api.gax.rpc.HeaderProvider; import com.google.auth.Credentials; import com.google.auth.oauth2.GoogleCredentials; import com.google.auth.oauth2.ImpersonatedCredentials; import com.google.auth.oauth2.ServiceAccountCredentials; import com.google.cloud.bigquery.QueryJobConfiguration.Priority; import com.google.cloud.bigquery.storage.v1.BigQueryReadClient; import com.google.cloud.bigquery.storage.v1.BigQueryWriteClient; import com.google.common.base.Objects; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.net.URI; import java.security.PrivateKey; import java.util.Calendar; import java.util.Collection; import java.util.Collections; import java.util.Map; import java.util.Optional; import java.util.Set; import org.junit.Test; import org.mockito.Answers; public class BigQueryClientFactoryTest { private static final String CLIENT_EMAIL = "36680232662-vrd7ji19qe3nelgchd0ah2csanun6bnr@developer.gserviceaccount.com"; private static final String PRIVATE_KEY_ID = "d84a4fefcf50791d4a90f2d7af17469d6282df9d"; private static final Collection SCOPES = Collections.singletonList("dummy.scope"); private static final String USER = "user@example.com"; private static final String PROJECT_ID = "project-id"; private final PrivateKey privateKey = mock(PrivateKey.class); private final BigQueryCredentialsSupplier bigQueryCredentialsSupplier = mock(BigQueryCredentialsSupplier.class); private final BigQueryConfig bigQueryConfig = mock(BigQueryConfig.class); // initialized in the constructor due dependency on bigQueryConfig private final HeaderProvider headerProvider; private final BigQueryProxyConfig bigQueryProxyConfig = new BigQueryProxyConfig() { @Override public Optional getProxyUri() { return Optional.empty(); } @Override public Optional getProxyUsername() { return Optional.empty(); } @Override public Optional getProxyPassword() { return Optional.empty(); } }; public BigQueryClientFactoryTest() { when(bigQueryConfig.useParentProjectForMetadataOperations()).thenReturn(false); this.headerProvider = HttpUtil.createHeaderProvider(bigQueryConfig, "test-agent"); } @Test public void testGetReadClientForSameClientFactory() { BigQueryClientFactory clientFactory = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getChannelPoolSize()).thenReturn(1); BigQueryReadClient readClient = clientFactory.getBigQueryReadClient(); assertNotNull(readClient); BigQueryReadClient readClient2 = clientFactory.getBigQueryReadClient(); assertNotNull(readClient2); assertSame(readClient, readClient2); } @Test public void testGetReadClientWithUserAgent() { BigQueryClientFactory clientFactory = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); when(bigQueryConfig.getChannelPoolSize()).thenReturn(1); BigQueryReadClient readClient = clientFactory.getBigQueryReadClient(); assertNotNull(readClient); BigQueryClientFactory clientFactory2 = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); when(bigQueryConfig.getChannelPoolSize()).thenReturn(1); BigQueryReadClient readClient2 = clientFactory2.getBigQueryReadClient(); assertNotNull(readClient2); assertSame(readClient, readClient2); BigQueryClientFactory clientFactory3 = new BigQueryClientFactory( bigQueryCredentialsSupplier, HttpUtil.createHeaderProvider(bigQueryConfig, "test-agent-2"), bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); when(bigQueryConfig.getChannelPoolSize()).thenReturn(1); BigQueryReadClient readClient3 = clientFactory3.getBigQueryReadClient(); assertNotNull(readClient3); assertNotSame(readClient, readClient3); assertNotSame(readClient2, readClient3); } @Test public void testGetReadClientWithBigQueryConfig() { BigQueryClientFactory clientFactory = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("US:8080"))); BigQueryReadClient readClient = clientFactory.getBigQueryReadClient(); assertNotNull(readClient); BigQueryClientFactory clientFactory2 = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("US:8080"))); BigQueryReadClient readClient2 = clientFactory2.getBigQueryReadClient(); assertNotNull(readClient2); assertSame(readClient, readClient2); BigQueryClientFactory clientFactory3 = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("EU:8080"))); BigQueryReadClient readClient3 = clientFactory3.getBigQueryReadClient(); assertNotNull(readClient3); assertNotSame(readClient, readClient3); assertNotSame(readClient2, readClient3); } @Test public void testGetReadClientWithServiceAccountCredentials() { when(bigQueryCredentialsSupplier.getCredentials()) .thenReturn(createServiceAccountCredentials("test-client-id")); BigQueryClientFactory clientFactory = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); when(bigQueryConfig.getChannelPoolSize()).thenReturn(1); BigQueryReadClient readClient = clientFactory.getBigQueryReadClient(); assertNotNull(readClient); when(bigQueryCredentialsSupplier.getCredentials()) .thenReturn(createServiceAccountCredentials("test-client-id")); BigQueryClientFactory clientFactory2 = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); when(bigQueryConfig.getChannelPoolSize()).thenReturn(1); BigQueryReadClient readClient2 = clientFactory2.getBigQueryReadClient(); assertNotNull(readClient2); assertSame(readClient, readClient2); when(bigQueryCredentialsSupplier.getCredentials()) .thenReturn(createServiceAccountCredentials("test-client-id-2")); BigQueryClientFactory clientFactory3 = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); when(bigQueryConfig.getChannelPoolSize()).thenReturn(1); BigQueryReadClient readClient3 = clientFactory3.getBigQueryReadClient(); assertNotNull(readClient3); assertNotSame(readClient, readClient3); assertNotSame(readClient2, readClient3); } @Test public void testGetWriteClientForSameClientFactory() { BigQueryClientFactory clientFactory = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient(); assertNotNull(writeClient); BigQueryWriteClient writeClient2 = clientFactory.getBigQueryWriteClient(); assertNotNull(writeClient2); assertSame(writeClient, writeClient2); } @Test public void testGetWriteClientWithUserAgent() { BigQueryClientFactory clientFactory = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient(); assertNotNull(writeClient); BigQueryClientFactory clientFactory2 = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); BigQueryWriteClient writeClient2 = clientFactory2.getBigQueryWriteClient(); assertNotNull(writeClient2); assertSame(writeClient, writeClient2); BigQueryClientFactory clientFactory3 = new BigQueryClientFactory( bigQueryCredentialsSupplier, HttpUtil.createHeaderProvider(bigQueryConfig, "test-agent-2"), bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); BigQueryWriteClient writeClient3 = clientFactory3.getBigQueryWriteClient(); assertNotNull(writeClient3); assertNotSame(writeClient, writeClient3); assertNotSame(writeClient2, writeClient3); } @Test public void testGetWriteClientWithBigQueryConfig() { BigQueryClientFactory clientFactory = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("US:8080"))); BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient(); assertNotNull(writeClient); BigQueryClientFactory clientFactory2 = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("US:8080"))); BigQueryWriteClient writeClient2 = clientFactory2.getBigQueryWriteClient(); assertNotNull(writeClient2); assertSame(writeClient, writeClient2); BigQueryClientFactory clientFactory3 = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("EU:8080"))); BigQueryWriteClient writeClient3 = clientFactory3.getBigQueryWriteClient(); assertNotNull(writeClient3); assertNotSame(writeClient, writeClient3); assertNotSame(writeClient2, writeClient3); } @Test public void testGetWriteClientWithServiceAccountCredentials() throws Exception { when(bigQueryCredentialsSupplier.getCredentials()) .thenReturn(createServiceAccountCredentials("test-client-id")); BigQueryClientFactory clientFactory = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient(); assertNotNull(writeClient); when(bigQueryCredentialsSupplier.getCredentials()) .thenReturn(createServiceAccountCredentials("test-client-id")); BigQueryClientFactory clientFactory2 = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); BigQueryWriteClient writeClient2 = clientFactory2.getBigQueryWriteClient(); assertNotNull(writeClient2); assertSame(writeClient, writeClient2); when(bigQueryCredentialsSupplier.getCredentials()) .thenReturn(createServiceAccountCredentials("test-client-id-2")); BigQueryClientFactory clientFactory3 = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234); when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true); BigQueryWriteClient writeClient3 = clientFactory3.getBigQueryWriteClient(); assertNotNull(writeClient3); assertNotSame(writeClient, writeClient3); assertNotSame(writeClient2, writeClient3); } @Test public void testGetReadClientWithSameAndDifferentBQConfig() { BigQueryClientFactory clientFactory = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); BigQueryClientFactory clientFactory2 = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("EU:8080"))); BigQueryClientFactory clientFactory3 = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("EU:8080"))); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); when(bigQueryConfig.getChannelPoolSize()).thenReturn(1); BigQueryReadClient readClient = clientFactory.getBigQueryReadClient(); assertNotNull(readClient); BigQueryReadClient readClient2 = clientFactory2.getBigQueryReadClient(); assertNotNull(readClient2); BigQueryReadClient readClient3 = clientFactory3.getBigQueryReadClient(); assertNotNull(readClient3); assertNotSame(readClient, readClient2); assertNotSame(readClient, readClient3); assertSame(readClient2, readClient3); } @Test public void testGetWriteClientWithSameAndDifferentBQConfig() { BigQueryClientFactory clientFactory = new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig); BigQueryClientFactory clientFactory2 = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("EU:8080"))); BigQueryClientFactory clientFactory3 = new BigQueryClientFactory( bigQueryCredentialsSupplier, headerProvider, new TestBigQueryConfig(Optional.of("EU:8080"))); when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig); BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient(); assertNotNull(writeClient); BigQueryWriteClient writeClient2 = clientFactory2.getBigQueryWriteClient(); assertNotNull(writeClient2); BigQueryWriteClient writeClient3 = clientFactory3.getBigQueryWriteClient(); assertNotNull(writeClient3); assertNotSame(writeClient, writeClient2); assertNotSame(writeClient, writeClient3); assertSame(writeClient2, writeClient3); } @Test public void testHashCodeWithExternalAccountCredentials() throws Exception { // Credentials taken from https://google.aip.dev/auth/4117: Credentials credentials = GoogleCredentials.fromStream( getClass().getResourceAsStream("/external-account-credentials.json")); when(bigQueryCredentialsSupplier.getCredentials()).thenReturn(credentials); BigQueryClientFactory factory = new BigQueryClientFactory( bigQueryCredentialsSupplier, FixedHeaderProvider.create("foo", "bar"), new TestBigQueryConfig(Optional.empty())); int hashCode1 = factory.hashCode(); int hashCode2 = factory.hashCode(); assertThat(hashCode2).isEqualTo(hashCode1); } @Test public void testGetCredentials_ImpersonatedCredentials_calendarNotNullAfterDeserialization() throws Exception { // 1. Mock dependencies and make them serializable HeaderProvider headerProvider = mock(HeaderProvider.class, withSettings().serializable()); BigQueryConfig bqConfig = mock( BigQueryConfig.class, withSettings().serializable().defaultAnswer(Answers.RETURNS_DEEP_STUBS)); BigQueryCredentialsSupplier credentialsSupplier = mock(BigQueryCredentialsSupplier.class, withSettings().serializable()); // 2. Create source credentials for ImpersonatedCredentials (can be a simple serializable mock) GoogleCredentials sourceCredentials = mock(GoogleCredentials.class, withSettings().serializable()); when(sourceCredentials.createScopedRequired()).thenReturn(false); // 3. Create original ImpersonatedCredentials ImpersonatedCredentials originalCredentials = ImpersonatedCredentials.newBuilder() .setSourceCredentials(sourceCredentials) .setTargetPrincipal("dummy-target@example.com") // Dummy principal is fine .setScopes(Collections.singletonList("https://www.googleapis.com/auth/cloud-platform")) .build(); when(credentialsSupplier.getCredentials()).thenReturn(originalCredentials); // 4. Create and serialize BigQueryClientFactory BigQueryClientFactory factory = new BigQueryClientFactory(credentialsSupplier, headerProvider, bqConfig); byte[] serializedFactory; try (ByteArrayOutputStream baos = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(baos)) { oos.writeObject(factory); serializedFactory = baos.toByteArray(); } // 5. Deserialize BigQueryClientFactory BigQueryClientFactory deserializedFactory; try (ByteArrayInputStream bais = new ByteArrayInputStream(serializedFactory); ObjectInputStream ois = new ObjectInputStream(bais)) { deserializedFactory = (BigQueryClientFactory) ois.readObject(); } // 6. Get credentials from deserialized factory Credentials credentialsFromFactory = deserializedFactory.getCredentials(); // 7. Assertions using Google Truth assertThat(credentialsFromFactory).isInstanceOf(ImpersonatedCredentials.class); ImpersonatedCredentials deserializedImpersonatedCredentials = (ImpersonatedCredentials) credentialsFromFactory; // The core assertion: verify the calendar is not null after deserialization // and the factory's getCredentials() logic has run. // Accessing the calendar field via reflection as it's not public java.lang.reflect.Field calendarField = ImpersonatedCredentials.class.getDeclaredField("calendar"); calendarField.setAccessible(true); Calendar calendar = (Calendar) calendarField.get(deserializedImpersonatedCredentials); assertThat(calendar).isNotNull(); } private ServiceAccountCredentials createServiceAccountCredentials(String clientId) { return ServiceAccountCredentials.newBuilder() .setClientId(clientId) .setClientEmail(CLIENT_EMAIL) .setPrivateKey(privateKey) .setPrivateKeyId(PRIVATE_KEY_ID) .setScopes(SCOPES) .setServiceAccountUser(USER) .setProjectId(PROJECT_ID) .build(); } private class TestBigQueryConfig implements BigQueryConfig { private final Optional bigQueryStorageGrpcEndpoint; TestBigQueryConfig(Optional bigQueryStorageGrpcEndpoint) { this.bigQueryStorageGrpcEndpoint = bigQueryStorageGrpcEndpoint; } @Override public Optional getAccessTokenProviderFQCN() { return Optional.empty(); } @Override public Optional getAccessTokenProviderConfig() { return Optional.empty(); } @Override public Optional getCredentialsKey() { return Optional.empty(); } @Override public Optional getCredentialsFile() { return Optional.empty(); } @Override public String getLoggedInUserName() { return null; } @Override public Set getLoggedInUserGroups() { return null; } @Override public Optional> getImpersonationServiceAccountsForUsers() { return Optional.empty(); } @Override public Optional> getImpersonationServiceAccountsForGroups() { return Optional.empty(); } @Override public Optional getImpersonationServiceAccount() { return Optional.empty(); } @Override public Optional getAccessToken() { return Optional.empty(); } @Override public String getParentProjectId() { return null; } @Override public Optional getCatalogProjectId() { return Optional.empty(); } @Override public Optional getCatalogLocation() { return Optional.empty(); } @Override public boolean useParentProjectForMetadataOperations() { return false; } @Override public boolean isViewsEnabled() { return false; } @Override public Optional getMaterializationProject() { return Optional.empty(); } @Override public Optional getMaterializationDataset() { return Optional.empty(); } @Override public int getBigQueryClientConnectTimeout() { return 0; } @Override public int getBigQueryClientReadTimeout() { return 0; } @Override public RetrySettings getBigQueryClientRetrySettings() { return null; } @Override public BigQueryProxyConfig getBigQueryProxyConfig() { return bigQueryProxyConfig; } @Override public Optional getBigQueryStorageGrpcEndpoint() { return bigQueryStorageGrpcEndpoint; } @Override public Optional getBigQueryHttpEndpoint() { return Optional.empty(); } @Override public int getCacheExpirationTimeInMinutes() { return 0; } @Override public ImmutableMap getBigQueryJobLabels() { return ImmutableMap.of(); } @Override public Optional getCreateReadSessionTimeoutInSeconds() { return Optional.empty(); } @Override public int getChannelPoolSize() { return 1; } @Override public Optional getFlowControlWindowBytes() { return Optional.of(2 << 20); } @Override public Priority getQueryJobPriority() { return Priority.INTERACTIVE; } @Override public long getBigQueryJobTimeoutInMinutes() { return 6 * 60; } @Override public Optional> getCredentialsScopes() { return Optional.empty(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof TestBigQueryConfig)) { return false; } TestBigQueryConfig that = (TestBigQueryConfig) o; return Objects.equal(bigQueryStorageGrpcEndpoint, that.bigQueryStorageGrpcEndpoint); } @Override public int hashCode() { return Objects.hashCode(bigQueryStorageGrpcEndpoint); } } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryConfigurationUtilTest.java ================================================ /* * Copyright 2022 Google LLC * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertThrows; import com.google.cloud.bigquery.TableId; import com.google.common.collect.ImmutableMap; import org.junit.Test; public class BigQueryConfigurationUtilTest { private static final ImmutableMap EMPTY_GLOBAL_OPTIONS = ImmutableMap.of(); @Test public void testParseSimpleTableId_tableOnly() { TableId result = BigQueryConfigurationUtil.parseSimpleTableId( EMPTY_GLOBAL_OPTIONS, ImmutableMap.of("table", "project.dataset.table")); assertThat(result.getProject()).isEqualTo("project"); assertThat(result.getDataset()).isEqualTo("dataset"); assertThat(result.getTable()).isEqualTo("table"); } @Test public void testParseSimpleTableId_pathOnly() { TableId result = BigQueryConfigurationUtil.parseSimpleTableId( EMPTY_GLOBAL_OPTIONS, ImmutableMap.of("table", "project.dataset.table")); assertThat(result.getProject()).isEqualTo("project"); assertThat(result.getDataset()).isEqualTo("dataset"); assertThat(result.getTable()).isEqualTo("table"); } @Test public void testParseSimpleTableId_tableAndDataset() { TableId result = BigQueryConfigurationUtil.parseSimpleTableId( EMPTY_GLOBAL_OPTIONS, ImmutableMap.of("table", "project.dataset.table")); assertThat(result.getProject()).isEqualTo("project"); assertThat(result.getDataset()).isEqualTo("dataset"); assertThat(result.getTable()).isEqualTo("table"); } @Test public void testParseSimpleTableId_allParams() { TableId result = BigQueryConfigurationUtil.parseSimpleTableId( EMPTY_GLOBAL_OPTIONS, ImmutableMap.of("table", "project.dataset.table")); assertThat(result.getProject()).isEqualTo("project"); assertThat(result.getDataset()).isEqualTo("dataset"); assertThat(result.getTable()).isEqualTo("table"); } @Test public void testParseSimpleTableId_fallbackDatasetIgnored() { TableId result = BigQueryConfigurationUtil.parseSimpleTableId( ImmutableMap.of("materializationDataset", "fallback"), ImmutableMap.of("table", "table", "dataset", "dataset")); assertThat(result.getProject()).isNull(); assertThat(result.getDataset()).isEqualTo("dataset"); assertThat(result.getTable()).isEqualTo("table"); } @Test public void testParseSimpleTableId_fallbackDatasetUsed() { TableId result = BigQueryConfigurationUtil.parseSimpleTableId( ImmutableMap.of("materializationDataset", "fallback"), ImmutableMap.of("table", "table")); assertThat(result.getProject()).isNull(); assertThat(result.getDataset()).isEqualTo("fallback"); assertThat(result.getTable()).isEqualTo("table"); } @Test public void testParseSimpleTableId_fallbackProjectIgnored() { TableId result = BigQueryConfigurationUtil.parseSimpleTableId( ImmutableMap.of("materializationProject", "fallback"), ImmutableMap.of("table", "table", "dataset", "dataset", "project", "project")); assertThat(result.getProject()).isEqualTo("project"); assertThat(result.getDataset()).isEqualTo("dataset"); assertThat(result.getTable()).isEqualTo("table"); } @Test public void testParseSimpleTableId_fallbackProjectUsed() { TableId result = BigQueryConfigurationUtil.parseSimpleTableId( ImmutableMap.of("materializationProject", "fallback"), ImmutableMap.of("table", "table", "dataset", "dataset")); assertThat(result.getProject()).isEqualTo("fallback"); assertThat(result.getDataset()).isEqualTo("dataset"); assertThat(result.getTable()).isEqualTo("table"); } @Test public void testParseSimpleTableId_missingDataset() { assertThrows( "Missing dataset exception was not thrown", IllegalArgumentException.class, () -> { BigQueryConfigurationUtil.parseSimpleTableId( EMPTY_GLOBAL_OPTIONS, ImmutableMap.of("table", "table")); }); } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryConnectorExceptionTest.java ================================================ /* * Copyright 2024 Google LLC * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import io.grpc.Status; import io.grpc.StatusException; import io.grpc.StatusRuntimeException; import org.junit.Test; public class BigQueryConnectorExceptionTest { @Test public void testStatusExceptionSerialization() { StatusException ex = new StatusException(Status.CANCELLED); BigQueryConnectorException original = new BigQueryConnectorException(BigQueryErrorCode.UNKNOWN, "testing", ex); BigQueryConnectorException copied = BigQueryUtil.verifySerialization(original); assertThat(copied.getMessage()).isEqualTo("testing"); assertThat(copied.getCause().toString()).contains("StatusException"); } @Test public void testStatusRuntimeExceptionSerialization() { StatusRuntimeException ex = new StatusRuntimeException(Status.CANCELLED); BigQueryConnectorException original = new BigQueryConnectorException(BigQueryErrorCode.UNKNOWN, "testing", ex); BigQueryConnectorException copied = BigQueryUtil.verifySerialization(original); assertThat(copied.getMessage()).isEqualTo("testing"); assertThat(copied.getCause().toString()).contains("StatusRuntimeException"); } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryCredentialsSupplierTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertThrows; import static org.mockito.Mockito.doThrow; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import com.google.api.client.json.GenericJson; import com.google.api.client.json.gson.GsonFactory; import com.google.auth.Credentials; import com.google.auth.oauth2.GoogleCredentials; import com.google.auth.oauth2.ImpersonatedCredentials; import com.google.auth.oauth2.ServiceAccountCredentials; import com.google.common.collect.ImmutableList; import com.google.gson.stream.MalformedJsonException; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.UncheckedIOException; import java.net.URI; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.util.*; import org.junit.Test; import org.mockito.Mockito; public class BigQueryCredentialsSupplierTest { // Taken from // https://github.com/googleapis/google-auth-library-java/blob/a329c4171735c3d4ee574978e6c3742b96c01f74/oauth2_http/javatests/com/google/auth/oauth2/ServiceAccountCredentialsTest.java // As this code is private it cannot be directly used. static final String PRIVATE_KEY_PKCS8 = "-----BEGIN PRIVATE KEY-----\n" + "MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBALX0PQoe1igW12i" + "kv1bN/r9lN749y2ijmbc/mFHPyS3hNTyOCjDvBbXYbDhQJzWVUikh4mvGBA07qTj79Xc3yBDfKP2IeyYQIFe0t0" + "zkd7R9Zdn98Y2rIQC47aAbDfubtkU1U72t4zL11kHvoa0/RuFZjncvlr42X7be7lYh4p3NAgMBAAECgYASk5wDw" + "4Az2ZkmeuN6Fk/y9H+Lcb2pskJIXjrL533vrDWGOC48LrsThMQPv8cxBky8HFSEklPpkfTF95tpD43iVwJRB/Gr" + "CtGTw65IfJ4/tI09h6zGc4yqvIo1cHX/LQ+SxKLGyir/dQM925rGt/VojxY5ryJR7GLbCzxPnJm/oQJBANwOCO6" + "D2hy1LQYJhXh7O+RLtA/tSnT1xyMQsGT+uUCMiKS2bSKx2wxo9k7h3OegNJIu1q6nZ6AbxDK8H3+d0dUCQQDTrP" + "SXagBxzp8PecbaCHjzNRSQE2in81qYnrAFNB4o3DpHyMMY6s5ALLeHKscEWnqP8Ur6X4PvzZecCWU9BKAZAkAut" + "LPknAuxSCsUOvUfS1i87ex77Ot+w6POp34pEX+UWb+u5iFn2cQacDTHLV1LtE80L8jVLSbrbrlH43H0DjU5AkEA" + "gidhycxS86dxpEljnOMCw8CKoUBd5I880IUahEiUltk7OLJYS/Ts1wbn3kPOVX3wyJs8WBDtBkFrDHW2ezth2QJ" + "ADj3e1YhMVdjJW5jqwlD/VNddGjgzyunmiZg0uOXsHXbytYmsA545S8KRQFaJKFXYYFo2kOjqOiC1T2cAzMDjCQ" + "==\n-----END PRIVATE KEY-----\n"; private static final String TYPE = "service_account"; private static final String CLIENT_EMAIL = "36680232662-vrd7ji19qe3nelgchd0ah2csanun6bnr@developer.gserviceaccount.com"; private static final String CLIENT_ID = "36680232662-vrd7ji19qe3nelgchd0ah2csanun6bnr.apps.googleusercontent.com"; private static final String PRIVATE_KEY_ID = "d84a4fefcf50791d4a90f2d7af17469d6282df9d"; private static final String ACCESS_TOKEN = "1/MkSJoj1xsli0AccessToken_NKPY2"; private static final Collection SCOPES = Collections.singletonList("dummy.scope"); private static final String QUOTA_PROJECT = "sample-quota-project-id"; private static final Optional optionalProxyURI = Optional.of(URI.create("http://bq-connector-host:1234")); private static final Optional optionalProxyUserName = Optional.of("credential-user"); private static final Optional optionalProxyPassword = Optional.of("credential-password"); public static final String IMPERSONATED_GLOBAL = "impersonated-global@developer.gserviceaccount.com"; public static final String IMPERSONATED_A = "impersonated-a@developer.gserviceaccount.com"; public static final String IMPERSONATED_B = "impersonated-b@developer.gserviceaccount.com"; private static final String TEST_UNIVERSE_DOMAIN = "test-universe-domain"; @Test public void testCredentialsFromAccessToken() { Credentials nonProxyCredentials = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.of(ACCESS_TOKEN), Optional.empty(), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()) .getCredentials(); Credentials proxyCredentials = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.of(ACCESS_TOKEN), Optional.empty(), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), optionalProxyURI, optionalProxyUserName, optionalProxyPassword) .getCredentials(); // the output should be same for both proxyCredentials and nonProxyCredentials Arrays.asList(nonProxyCredentials, proxyCredentials).stream() .forEach( credentials -> { assertThat(credentials).isInstanceOf(GoogleCredentials.class); GoogleCredentials googleCredentials = (GoogleCredentials) credentials; assertThat(googleCredentials.getAccessToken().getTokenValue()) .isEqualTo(ACCESS_TOKEN); }); } @Test public void testCredentialsFromKey() throws Exception { String json = createServiceAccountJson("key"); String credentialsKey = Base64.getEncoder().encodeToString(json.getBytes(StandardCharsets.UTF_8)); Credentials nonProxyCredentials = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsKey), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()) .getCredentials(); Credentials proxyCredentials = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsKey), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), optionalProxyURI, optionalProxyUserName, optionalProxyPassword) .getCredentials(); // the output should be same for both proxyCredentials and nonProxyCredentials Arrays.asList(nonProxyCredentials, proxyCredentials).stream() .forEach( credentials -> { assertThat(credentials).isInstanceOf(ServiceAccountCredentials.class); ServiceAccountCredentials serviceAccountCredentials = (ServiceAccountCredentials) credentials; assertThat(serviceAccountCredentials.getProjectId()).isEqualTo("key"); assertThat(serviceAccountCredentials.getClientEmail()).isEqualTo(CLIENT_EMAIL); assertThat(serviceAccountCredentials.getClientId()).isEqualTo(CLIENT_ID); assertThat(serviceAccountCredentials.getQuotaProjectId()).isEqualTo(QUOTA_PROJECT); }); } @Test public void testCredentialsFromKeyWithErrors() throws Exception { String json = createServiceAccountJson("key"); String credentialsKey = Base64.getEncoder().encodeToString(json.getBytes(StandardCharsets.UTF_8)); IllegalArgumentException exceptionWithPassword = assertThrows( IllegalArgumentException.class, () -> new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsKey), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), optionalProxyURI, Optional.empty(), optionalProxyPassword) .getCredentials()); IllegalArgumentException exceptionWithUserName = assertThrows( IllegalArgumentException.class, () -> new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsKey), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), optionalProxyURI, optionalProxyUserName, Optional.empty()) .getCredentials()); Arrays.asList(exceptionWithPassword, exceptionWithUserName).stream() .forEach( exception -> { assertThat(exception) .hasMessageThat() .contains( "Both proxyUsername and proxyPassword should be defined or not defined together"); }); } @Test public void testCredentialsFromFile() throws Exception { String json = createServiceAccountJson("file"); File credentialsFile = File.createTempFile("dummy-credentials", ".json"); credentialsFile.deleteOnExit(); Files.write(credentialsFile.toPath(), json.getBytes(StandardCharsets.UTF_8)); Credentials nonProxyCredentials = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsFile.getAbsolutePath()), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()) .getCredentials(); Credentials proxyCredentials = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsFile.getAbsolutePath()), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), optionalProxyURI, optionalProxyUserName, optionalProxyPassword) .getCredentials(); // the output should be same for both proxyCredentials and nonProxyCredentials Arrays.asList(nonProxyCredentials, proxyCredentials).stream() .forEach( credentials -> { assertThat(credentials).isInstanceOf(ServiceAccountCredentials.class); ServiceAccountCredentials serviceAccountCredentials = (ServiceAccountCredentials) credentials; assertThat(serviceAccountCredentials.getProjectId()).isEqualTo("file"); assertThat(serviceAccountCredentials.getClientEmail()).isEqualTo(CLIENT_EMAIL); assertThat(serviceAccountCredentials.getClientId()).isEqualTo(CLIENT_ID); assertThat(serviceAccountCredentials.getQuotaProjectId()).isEqualTo(QUOTA_PROJECT); }); } @Test public void testCredentialsFromFileWithErrors() throws Exception { String json = createServiceAccountJson("file"); File credentialsFile = File.createTempFile("dummy-credentials", ".json"); credentialsFile.deleteOnExit(); Files.write(credentialsFile.toPath(), json.getBytes(StandardCharsets.UTF_8)); IllegalArgumentException exceptionWithPassword = assertThrows( IllegalArgumentException.class, () -> new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsFile.getAbsolutePath()), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), optionalProxyURI, Optional.empty(), optionalProxyPassword) .getCredentials()); IllegalArgumentException exceptionWithUserName = assertThrows( IllegalArgumentException.class, () -> new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsFile.getAbsolutePath()), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), optionalProxyURI, optionalProxyUserName, Optional.empty()) .getCredentials()); Arrays.asList(exceptionWithPassword, exceptionWithUserName).stream() .forEach( exception -> { assertThat(exception) .hasMessageThat() .contains( "Both proxyUsername and proxyPassword should be defined or not defined together"); }); } private String createServiceAccountJson(String projectId) throws Exception { GenericJson json = new GenericJson(); json.setFactory(GsonFactory.getDefaultInstance()); json.put("type", TYPE); json.put("client_id", CLIENT_ID); json.put("client_email", CLIENT_EMAIL); json.put("private_key", PRIVATE_KEY_PKCS8); json.put("private_key_id", PRIVATE_KEY_ID); json.put("project_id", projectId); json.put("quota_project_id", QUOTA_PROJECT); json.put("universe_domain", TEST_UNIVERSE_DOMAIN); return json.toPrettyString(); } Credentials createImpersonatedCredentials( String loggedInUserName, Set loggedInUserGroups, Map userMappings, Map groupMappings, String globalImpersonated) { return new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), loggedInUserName, loggedInUserGroups, Optional.ofNullable(userMappings), Optional.ofNullable(groupMappings), Optional.ofNullable(globalImpersonated), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()) .getCredentials(); } @Test public void testSingleServiceAccountImpersonation() throws Exception { ImpersonatedCredentials credentials = (ImpersonatedCredentials) createImpersonatedCredentials(null, null, null, null, IMPERSONATED_GLOBAL); assertThat(credentials.getSourceCredentials()) .isEqualTo(GoogleCredentials.getApplicationDefault()); assertThat(credentials.getAccount()).isEqualTo(IMPERSONATED_GLOBAL); } @Test public void testImpersonationForUsers() throws Exception { Map userMappings = new HashMap() { { put("alice", IMPERSONATED_A); put("bob", IMPERSONATED_B); } }; Map expected = new HashMap() { { put("alice", IMPERSONATED_A); put("bob", IMPERSONATED_B); put("charlie", IMPERSONATED_GLOBAL); // Fallback } }; for (Map.Entry entry : expected.entrySet()) { ImpersonatedCredentials credentials = (ImpersonatedCredentials) createImpersonatedCredentials( entry.getKey(), null, userMappings, null, IMPERSONATED_GLOBAL); assertThat(credentials.getSourceCredentials()) .isEqualTo(GoogleCredentials.getApplicationDefault()); assertThat(credentials.getAccount()).isEqualTo(entry.getValue()); } } @Test public void testImpersonationForGroups() throws Exception { Map groupMappings = new HashMap() { { put("group1", IMPERSONATED_A); put("group2", IMPERSONATED_B); } }; Map expected = new HashMap() { { put("group1", IMPERSONATED_A); put("group2", IMPERSONATED_B); put("group3", IMPERSONATED_GLOBAL); // Fallback } }; for (Map.Entry entry : expected.entrySet()) { ImpersonatedCredentials credentials = (ImpersonatedCredentials) createImpersonatedCredentials( null, new HashSet<>(Arrays.asList(entry.getKey())), null, groupMappings, IMPERSONATED_GLOBAL); assertThat(credentials.getSourceCredentials()) .isEqualTo(GoogleCredentials.getApplicationDefault()); assertThat(credentials.getAccount()).isEqualTo(entry.getValue()); } } /** Check that the user mappings take precedence over the group mappings. */ @Test public void testImpersonationForUsersAndGroups() throws Exception { Map userMappings = new HashMap() { { put("alice", IMPERSONATED_A); } }; Map groupMappings = new HashMap() { { put("group1", IMPERSONATED_B); } }; ImpersonatedCredentials credentials = (ImpersonatedCredentials) createImpersonatedCredentials( "alice", new HashSet<>(Arrays.asList("group1")), userMappings, groupMappings, IMPERSONATED_GLOBAL); assertThat(credentials.getSourceCredentials()) .isEqualTo(GoogleCredentials.getApplicationDefault()); assertThat(credentials.getAccount()).isEqualTo(IMPERSONATED_A); } @Test public void testFallbackToDefault() throws Exception { BigQueryCredentialsSupplier supplier = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()); Credentials credentials = supplier.getCredentials(); assertThat(credentials).isEqualTo(GoogleCredentials.getApplicationDefault()); } @Test public void testExceptionIsThrownOnFile() throws Exception { UncheckedIOException e = assertThrows( UncheckedIOException.class, () -> { new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.of("/no/such/file"), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()); }); assertThat(e.getMessage()).isEqualTo("Failed to create Credentials from file"); assertThat(e.getCause()).isInstanceOf(FileNotFoundException.class); } @Test public void testExceptionIsThrownOnKey() throws Exception { UncheckedIOException e = assertThrows( UncheckedIOException.class, () -> { new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.of("bm8ga2V5IGhlcmU="), // "no key here" Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()); }); assertThat(e.getMessage()).isEqualTo("Failed to create Credentials from key"); assertThat(e.getCause()).isInstanceOf(MalformedJsonException.class); } @Test public void testCustomScopes() throws Exception { String json = createServiceAccountJson("key"); String credentialsKey = Base64.getEncoder().encodeToString(json.getBytes(StandardCharsets.UTF_8)); BigQueryCredentialsSupplier supplier = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsKey), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(ImmutableList.of("http://www.googleapis.com/foo/bar")), Optional.empty(), Optional.empty(), Optional.empty()); Credentials credentials = supplier.getCredentials(); assertThat(credentials).isInstanceOf(ServiceAccountCredentials.class); ServiceAccountCredentials sac = (ServiceAccountCredentials) credentials; assertThat(sac.getScopes()).containsExactly("http://www.googleapis.com/foo/bar"); } @Test public void testUniverseDomain() throws Exception { String json = createServiceAccountJson("key"); String credentialsKey = Base64.getEncoder().encodeToString(json.getBytes(StandardCharsets.UTF_8)); BigQueryCredentialsSupplier supplier = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.of(credentialsKey), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()); Credentials credentials = supplier.getCredentials(); assertThat(supplier.getUniverseDomain()).isEqualTo(TEST_UNIVERSE_DOMAIN); assertThat(credentials.getUniverseDomain()).isEqualTo(TEST_UNIVERSE_DOMAIN); } @Test public void testDefaultUniverseDomain() throws Exception { BigQueryCredentialsSupplier supplier = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()); Credentials credentials = supplier.getCredentials(); assertThat(supplier.getUniverseDomain()).isEqualTo(Credentials.GOOGLE_DEFAULT_UNIVERSE); } @Test public void testUniverseDomainOnFailure() throws Exception { BigQueryCredentialsSupplier supplier = new BigQueryCredentialsSupplier( Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()); BigQueryCredentialsSupplier spySupplier = Mockito.spy(supplier); Credentials credentials = mock(Credentials.class); when(spySupplier.getCredentials()).thenReturn(credentials); doThrow(new IOException()).when(credentials).getUniverseDomain(); assertThat(spySupplier.getUniverseDomain()).isEqualTo(Credentials.GOOGLE_DEFAULT_UNIVERSE); } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryUtilTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertThrows; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import com.google.auth.Credentials; import com.google.auth.oauth2.UserCredentials; import com.google.cloud.bigquery.BigLakeConfiguration; import com.google.cloud.bigquery.BigQueryError; import com.google.cloud.bigquery.BigQueryException; import com.google.cloud.bigquery.Clustering; import com.google.cloud.bigquery.ExternalTableDefinition; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.Field.Mode; import com.google.cloud.bigquery.FieldList; import com.google.cloud.bigquery.FieldValue; import com.google.cloud.bigquery.FieldValueList; import com.google.cloud.bigquery.FormatOptions; import com.google.cloud.bigquery.HivePartitioningOptions; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.QueryParameterValue; import com.google.cloud.bigquery.RangePartitioning; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardSQLTypeName; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.TableResult; import com.google.cloud.bigquery.TimePartitioning; import com.google.cloud.bigquery.ViewDefinition; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions; import com.google.cloud.bigquery.storage.v1.ReadStream; import com.google.common.collect.ImmutableList; import java.math.BigDecimal; import java.time.Instant; import java.util.Arrays; import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.regex.Matcher; import java.util.regex.Pattern; import java.util.stream.Collectors; import java.util.stream.IntStream; import org.junit.Test; public class BigQueryUtilTest { private static final TableId TABLE_ID = TableId.of("test.org:test-project", "test_dataset", "test_table"); private static final String FULLY_QUALIFIED_TABLE = "test.org:test-project.test_dataset.test_table"; private static void checkFailureMessage(ComparisonResult result, String message) { assertThat(result.valuesAreEqual()).isFalse(); assertThat(result.makeMessage()).isEqualTo(message); } @Test public void testParseFullyQualifiedTable() { TableId tableId = BigQueryUtil.parseTableId(FULLY_QUALIFIED_TABLE); assertThat(tableId).isEqualTo(TABLE_ID); } @Test public void testParseFullyQualifiedLegacyTable() { TableId tableId = BigQueryUtil.parseTableId("test.org:test-project.test_dataset.test_table"); assertThat(tableId).isEqualTo(TABLE_ID); } @Test public void testParseInvalidTable() { assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseTableId("test-org:test-project.table")); } @Test public void testParseFullyQualifiedTableWithDefaults() { TableId tableId = BigQueryUtil.parseTableId( FULLY_QUALIFIED_TABLE, Optional.of("other_dataset"), Optional.of("other-project")); assertThat(tableId).isEqualTo(TABLE_ID); } @Test public void testParsePartiallyQualifiedTable() { TableId tableId = BigQueryUtil.parseTableId("test_dataset.test_table"); assertThat(tableId).isEqualTo(TableId.of("test_dataset", "test_table")); } @Test public void testParsePartiallyQualifiedTableWithDefaults() { TableId tableId = BigQueryUtil.parseTableId( "test_dataset.test_table", Optional.of("other_dataset"), Optional.of("default-project")); assertThat(tableId).isEqualTo(TableId.of("default-project", "test_dataset", "test_table")); } @Test public void testParseUnqualifiedTableWithDefaults() { TableId tableId = BigQueryUtil.parseTableId( "test_table", Optional.of("default_dataset"), Optional.of("default-project")); assertThat(tableId).isEqualTo(TableId.of("default-project", "default_dataset", "test_table")); } @Test public void testParseFullyQualifiedPartitionedTable() { TableId tableId = BigQueryUtil.parseTableId(FULLY_QUALIFIED_TABLE + "$12345"); assertThat(tableId) .isEqualTo(TableId.of("test.org:test-project", "test_dataset", "test_table$12345")); } @Test public void testParseUnqualifiedPartitionedTable() { TableId tableId = BigQueryUtil.parseTableId( "test_table$12345", Optional.of("default_dataset"), Optional.empty()); assertThat(tableId).isEqualTo(TableId.of("default_dataset", "test_table$12345")); } @Test public void testParseTableWithDatePartition() { TableId tableId = BigQueryUtil.parseTableId( "test_table", Optional.of("default_dataset"), Optional.empty(), Optional.of("20200101")); assertThat(tableId).isEqualTo(TableId.of("default_dataset", "test_table$20200101")); } @Test public void testParseFullyQualifiedTableWithSpaces() { TableId tableId = BigQueryUtil.parseTableId("my-project.my_dataset.a table with spaces"); assertThat(tableId).isEqualTo(TableId.of("my-project", "my_dataset", "a table with spaces")); } @Test public void testParseAmbiguousTableWithSpaces() { TableId tableId = BigQueryUtil.parseTableId( "orders from 2023", Optional.of("default_dataset"), Optional.of("default-project")); assertThat(tableId) .isEqualTo(TableId.of("default-project", "default_dataset", "orders from 2023")); } @Test public void testParseAmbiguousTableWithBackticks() { TableId tableId = BigQueryUtil.parseTableId( "`orders from 2023`", Optional.of("default_dataset"), Optional.of("default-project")); assertThat(tableId) .isEqualTo(TableId.of("default-project", "default_dataset", "orders from 2023")); } @Test public void testUnparsableTable() { assertThrows(IllegalArgumentException.class, () -> BigQueryUtil.parseTableId("foo:bar:baz")); } @Test public void testFriendlyName() { String name = BigQueryUtil.friendlyTableName(TABLE_ID); assertThat(name).isEqualTo(FULLY_QUALIFIED_TABLE); } @Test public void testShortFriendlyName() { String name = BigQueryUtil.friendlyTableName(TableId.of("test_dataset", "test_table")); assertThat(name).isEqualTo("test_dataset.test_table"); } @Test public void testConvertAndThrows() { final BigQueryError bigQueryError = new BigQueryError("reason", "location", "message"); BigQueryException bigQueryException = assertThrows(BigQueryException.class, () -> BigQueryUtil.convertAndThrow(bigQueryError)); assertThat(bigQueryException).hasMessageThat().isEqualTo("message"); assertThat(bigQueryException.getError()).isEqualTo(bigQueryError); } @Test public void testFirstPresent() { assertThat(BigQueryUtil.firstPresent(Optional.empty(), Optional.of("a"))) .isEqualTo(Optional.of("a")); assertThat(BigQueryUtil.firstPresent(Optional.empty(), Optional.of("a"), Optional.of("b"))) .isEqualTo(Optional.of("a")); assertThat(BigQueryUtil.firstPresent(Optional.of("a"), Optional.empty())) .isEqualTo(Optional.of("a")); assertThat(BigQueryUtil.firstPresent(Optional.empty())).isEqualTo(Optional.empty()); } @Test public void testSchemaEqualsWithFieldOrder() { Schema s1 = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.INT64).build(), Field.newBuilder("bar", StandardSQLTypeName.STRING).build()); Schema s2 = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.INT64).build(), Field.newBuilder("bar", StandardSQLTypeName.STRING).build()); assertThat(BigQueryUtil.schemaWritable(s1, s2, true, true)).isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s1, s2, false, true)) .isEqualTo(ComparisonResult.equal()); } @Test public void testSchemaWritableNoFieldOrder() { Schema s1 = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.INT64).build(), Field.newBuilder("bar", StandardSQLTypeName.STRING).build()); Schema s2 = Schema.of( Field.newBuilder("bar", StandardSQLTypeName.STRING).build(), Field.newBuilder("foo", StandardSQLTypeName.INT64).build()); assertThat(BigQueryUtil.schemaWritable(s1, s2, true, true)) .isEqualTo(ComparisonResult.differentNoDescription()); assertThat(BigQueryUtil.schemaWritable(s1, s2, false, true)) .isEqualTo(ComparisonResult.equal()); } @Test public void testNullableField() { Field f1 = Field.newBuilder("foo", StandardSQLTypeName.INT64).build(); Field f2 = Field.newBuilder("foo", StandardSQLTypeName.INT64).setMode(Field.Mode.NULLABLE).build(); assertThat(BigQueryUtil.fieldWritable(f1, f2, true)).isEqualTo(ComparisonResult.equal()); } @Test public void testSchemaWritableWithNulls() { Schema s = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.INT64).build(), Field.newBuilder("bar", StandardSQLTypeName.STRING).build()); assertThat(BigQueryUtil.schemaWritable(s, null, false, true)) .isEqualTo(ComparisonResult.differentNoDescription()); // two nulls assertThat(BigQueryUtil.schemaWritable(null, null, false, true)) .isEqualTo(ComparisonResult.equal()); } @Test public void testFieldWritableWithNulls() { Field f = Field.newBuilder("foo", StandardSQLTypeName.INT64).build(); checkFailureMessage( BigQueryUtil.fieldWritable(f, null, true), "Field not found in destination: foo"); // two nulls assertThat(BigQueryUtil.fieldWritable(null, null, true)).isEqualTo(ComparisonResult.equal()); } @Test public void testRequiredFieldNotFound() { Field f = Field.newBuilder("foo", StandardSQLTypeName.INT64).setMode(Mode.REQUIRED).build(); checkFailureMessage( BigQueryUtil.fieldWritable(null, f, true), "Required field not found in source: foo"); } @Test public void testFieldNameMismatch() { Field src = Field.newBuilder("foo", StandardSQLTypeName.INT64).build(); Field dest = Field.newBuilder("bar", StandardSQLTypeName.INT64).build(); checkFailureMessage( BigQueryUtil.fieldWritable(src, dest, true), "Wrong field name, expected source field name: bar but was: foo"); } @Test public void testSubfieldsMismatch() { Field src = Field.of( "fooRecord", LegacySQLTypeName.RECORD, Field.of("subfield1", LegacySQLTypeName.STRING), Field.of("subfield2", LegacySQLTypeName.STRING)); Field dest = Field.of( "fooRecord", LegacySQLTypeName.RECORD, Field.of("subfield1", LegacySQLTypeName.STRING)); checkFailureMessage( BigQueryUtil.fieldWritable(src, dest, true), "Subfields mismatch for: fooRecord, Number of source fields: 2 is larger than number of destination fields: 1"); } @Test public void testFieldWritable() { Field src = Field.newBuilder("foo", StandardSQLTypeName.INT64) .setDescription("desc1") .setScale(1L) .setPrecision(2L) .build(); Field dest = Field.newBuilder("foo", StandardSQLTypeName.INT64).setScale(2L).setPrecision(2L).build(); assertThat(BigQueryUtil.fieldWritable(src, dest, true)).isEqualTo(ComparisonResult.equal()); } @Test public void testFieldWritable_notTypeWritable() { Field src = Field.newBuilder("foo", StandardSQLTypeName.INT64).build(); Field dest = Field.newBuilder("foo", StandardSQLTypeName.DATE).build(); checkFailureMessage( BigQueryUtil.fieldWritable(src, dest, true), "Incompatible type for field: foo, cannot write source type: INTEGER to destination type: DATE"); } @Test public void testFieldWritableMaxLength() { Field f1 = Field.newBuilder("foo", StandardSQLTypeName.INT64).setMaxLength(1L).build(); Field f2 = Field.newBuilder("foo", StandardSQLTypeName.INT64).setMaxLength(2L).build(); Field f3 = Field.newBuilder("foo", StandardSQLTypeName.INT64).setMaxLength(3L).build(); Field f4 = Field.newBuilder("foo", StandardSQLTypeName.INT64).build(); assertThat(BigQueryUtil.fieldWritable(f1, f2, true)).isEqualTo(ComparisonResult.equal()); checkFailureMessage( BigQueryUtil.fieldWritable(f3, f2, true), "Incompatible max length for field: foo, cannot write source field with max length: 3 to destination field with max length: 2"); checkFailureMessage( BigQueryUtil.fieldWritable(f3, f4, true), "Incompatible max length for field: foo, cannot write source field with max length: 3 to destination field with max length: null"); checkFailureMessage( BigQueryUtil.fieldWritable(f4, f2, true), "Incompatible max length for field: foo, cannot write source field with max length: null to destination field with max length: 2"); } @Test public void testFieldWritableScaleAndPrecision() { Field p5s5 = Field.newBuilder("foo", StandardSQLTypeName.NUMERIC).setPrecision(5L).setScale(5L).build(); Field p7s3 = Field.newBuilder("foo", StandardSQLTypeName.NUMERIC).setPrecision(7L).setScale(3L).build(); Field p3s7 = Field.newBuilder("foo", StandardSQLTypeName.NUMERIC).setPrecision(3L).setScale(7L).build(); Field p3s3 = Field.newBuilder("foo", StandardSQLTypeName.NUMERIC).setPrecision(3L).setScale(3L).build(); checkFailureMessage( BigQueryUtil.fieldWritable(p5s5, p7s3, true), "Incompatible precision, scale for field: foo, cannot write source field with precision, scale: (5, 5) to destination field with precision, scale: (7, 3)"); checkFailureMessage( BigQueryUtil.fieldWritable(p5s5, p3s7, true), "Incompatible precision, scale for field: foo, cannot write source field with precision, scale: (5, 5) to destination field with precision, scale: (3, 7)"); checkFailureMessage( BigQueryUtil.fieldWritable(p5s5, p3s3, true), "Incompatible precision, scale for field: foo, cannot write source field with precision, scale: (5, 5) to destination field with precision, scale: (3, 3)"); assertThat(BigQueryUtil.fieldWritable(p3s3, p5s5, true)).isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.fieldWritable(p3s3, p7s3, true)).isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.fieldWritable(p3s3, p3s7, true)).isEqualTo(ComparisonResult.equal()); } @Test public void testSchemaWritableWithEnableModeCheckForSchemaFields() { Schema s1 = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build()); Schema s2 = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.STRING).setMode(Mode.REQUIRED).build()); Schema s3 = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.STRING).setMode(Mode.REPEATED).build()); assertThat(BigQueryUtil.schemaWritable(s1, s1, false, true)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s2, s2, false, true)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s3, s3, false, true)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s1, s2, false, true)) .isEqualTo(ComparisonResult.equal()); checkFailureMessage( BigQueryUtil.schemaWritable(s1, s3, false, true), "Incompatible mode for field: foo, cannot write source field mode: NULLABLE to destination field mode: REPEATED"); checkFailureMessage( BigQueryUtil.schemaWritable(s2, s3, false, true), "Incompatible mode for field: foo, cannot write source field mode: REQUIRED to destination field mode: REPEATED"); assertThat(BigQueryUtil.schemaWritable(s2, s1, false, true)) .isEqualTo(ComparisonResult.equal()); checkFailureMessage( BigQueryUtil.schemaWritable(s3, s1, false, true), "Incompatible mode for field: foo, cannot write source field mode: REPEATED to destination field mode: NULLABLE"); checkFailureMessage( BigQueryUtil.schemaWritable(s3, s2, false, true), "Incompatible mode for field: foo, cannot write source field mode: REPEATED to destination field mode: REQUIRED"); } @Test public void testSchemaWritableWithDisableNullableFieldCheck() { Schema s1 = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build()); Schema s2 = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.STRING).setMode(Mode.REQUIRED).build()); Schema s3 = Schema.of( Field.newBuilder("foo", StandardSQLTypeName.STRING).setMode(Mode.REPEATED).build()); assertThat(BigQueryUtil.schemaWritable(s1, s1, false, false)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s2, s2, false, false)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s3, s3, false, false)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s1, s2, false, false)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s1, s3, false, false)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s2, s3, false, false)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s2, s1, false, false)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s3, s1, false, false)) .isEqualTo(ComparisonResult.equal()); assertThat(BigQueryUtil.schemaWritable(s3, s2, false, false)) .isEqualTo(ComparisonResult.equal()); } @Test public void testSchemaWritableWithMoreUnEqualNumberOfFields() { Schema s1 = Schema.of( Field.newBuilder("foo1", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build(), Field.newBuilder("foo2", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build()); Schema s2 = Schema.of( Field.newBuilder("foo1", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build(), Field.newBuilder("foo2", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build(), Field.newBuilder("foo3", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build()); Schema s3 = Schema.of( Field.newBuilder("foo1", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build()); assertThat(BigQueryUtil.schemaWritable(s1, s2, false, true)) .isEqualTo(ComparisonResult.equal()); checkFailureMessage( BigQueryUtil.schemaWritable(s1, s3, false, true), "Number of source fields: 2 is larger than number of destination fields: 1"); assertThat(BigQueryUtil.schemaWritable(s3, s2, false, true)) .isEqualTo(ComparisonResult.equal()); } @Test public void testIsModeWritable() { assertThat(BigQueryUtil.isModeWritable(Mode.NULLABLE, Mode.NULLABLE)).isTrue(); assertThat(BigQueryUtil.isModeWritable(Mode.NULLABLE, Mode.REQUIRED)).isTrue(); assertThat(BigQueryUtil.isModeWritable(Mode.NULLABLE, Mode.REPEATED)).isFalse(); assertThat(BigQueryUtil.isModeWritable(Mode.REQUIRED, Mode.NULLABLE)).isTrue(); assertThat(BigQueryUtil.isModeWritable(Mode.REQUIRED, Mode.REQUIRED)).isTrue(); assertThat(BigQueryUtil.isModeWritable(Mode.REQUIRED, Mode.REPEATED)).isFalse(); assertThat(BigQueryUtil.isModeWritable(Mode.REPEATED, Mode.NULLABLE)).isFalse(); assertThat(BigQueryUtil.isModeWritable(Mode.REPEATED, Mode.REQUIRED)).isFalse(); assertThat(BigQueryUtil.isModeWritable(Mode.REPEATED, Mode.REPEATED)).isTrue(); } @Test public void testCreateVerifiedInstanceNoClass() { assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.createVerifiedInstance("no.such.Class", String.class)); } @Test public void testCreateVerifiedInstanceFailedInheritance() { assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.createVerifiedInstance("java.lang.String", Map.class)); } @Test public void testCreateVerifiedInstance() { List result = BigQueryUtil.createVerifiedInstance("java.util.ArrayList", List.class); assertThat(result).isNotNull(); assertThat(result).isEmpty(); } @Test public void testCreateVerifiedInstanceWithArg() { String result = BigQueryUtil.createVerifiedInstance("java.lang.String", String.class, "test"); assertThat(result).isNotNull(); assertThat(result).isEqualTo("test"); } @Test public void testVerifySerialization() { int[] source = new int[] {1, 2, 3}; int[] copy = BigQueryUtil.verifySerialization(source); assertThat(copy).isEqualTo(source); } @Test public void testVerifySerializationFail() { final Object notSerializable = new Object(); assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.verifySerialization(notSerializable)); } @Test public void testGetStreamNames() { List streamNames = BigQueryUtil.getStreamNames( ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName("0")).build()); assertThat(streamNames).isEqualTo(Arrays.asList("0")); streamNames = BigQueryUtil.getStreamNames( ReadSession.newBuilder() .addStreams(ReadStream.newBuilder().setName("0")) .addStreams(ReadStream.newBuilder().setName("1")) .build()); assertThat(streamNames).hasSize(2); assertThat(streamNames).containsAnyIn(Arrays.asList("0", "1")); } @Test public void testEmptyGetStreamNames() { TableReadOptions tableReadOptions = TableReadOptions.newBuilder().build(); List streamNames = BigQueryUtil.getStreamNames( ReadSession.newBuilder().setName("abc").setReadOptions(tableReadOptions).build()); assertThat(streamNames).hasSize(0); streamNames = BigQueryUtil.getStreamNames(null); assertThat(streamNames).hasSize(0); } @Test public void testGetPartitionField_not_standard_table() { TableInfo info = TableInfo.of(TableId.of("foo", "bar"), ViewDefinition.of("Select 1 as test")); assertThat(BigQueryUtil.getPartitionFields(info)).isEmpty(); } @Test public void testGetPartitionField_no_partitioning() { TableInfo info = TableInfo.of(TableId.of("foo", "bar"), StandardTableDefinition.newBuilder().build()); assertThat(BigQueryUtil.getPartitionFields(info)).isEmpty(); } @Test public void testGetPartitionField_time_partitioning() { TableInfo info = TableInfo.of( TableId.of("foo", "bar"), StandardTableDefinition.newBuilder() .setTimePartitioning( TimePartitioning.newBuilder(TimePartitioning.Type.DAY).setField("test").build()) .build()); List partitionFields = BigQueryUtil.getPartitionFields(info); assertThat(partitionFields).hasSize(1); assertThat(partitionFields).contains("test"); } @Test public void testGetPartitionField_time_partitioning_pseudoColumn() { TableInfo info = TableInfo.of( TableId.of("foo", "bar"), StandardTableDefinition.newBuilder() .setTimePartitioning( TimePartitioning.newBuilder(TimePartitioning.Type.HOUR).build()) .build()); List partitionFields = BigQueryUtil.getPartitionFields(info); assertThat(partitionFields).hasSize(1); assertThat(partitionFields).contains("_PARTITIONTIME"); } @Test public void testGetPartitionField_time_partitioning_pseudoColumn_day() { TableInfo info = TableInfo.of( TableId.of("foo", "bar"), StandardTableDefinition.newBuilder() .setTimePartitioning(TimePartitioning.newBuilder(TimePartitioning.Type.DAY).build()) .build()); List partitionFields = BigQueryUtil.getPartitionFields(info); assertThat(partitionFields).hasSize(2); assertThat(partitionFields).contains("_PARTITIONTIME"); assertThat(partitionFields).contains("_PARTITIONDATE"); } @Test public void testGetPartitionField_range_partitioning() { TableInfo info = TableInfo.of( TableId.of("foo", "bar"), StandardTableDefinition.newBuilder() .setRangePartitioning(RangePartitioning.newBuilder().setField("test").build()) .build()); List partitionFields = BigQueryUtil.getPartitionFields(info); assertThat(partitionFields).hasSize(1); assertThat(partitionFields).contains("test"); } @Test public void testGetPartitionField_hive_partitioning() { TableInfo info = TableInfo.of( TableId.of("foo", "bar"), ExternalTableDefinition.newBuilder( "gs://bucket/path", Schema.of(Field.newBuilder("foo", LegacySQLTypeName.STRING).build()), FormatOptions.csv()) .setHivePartitioningOptions( HivePartitioningOptions.newBuilder() .setFields(Arrays.asList("f1", "f2")) .build()) .build()); List partitionFields = BigQueryUtil.getPartitionFields(info); assertThat(partitionFields).hasSize(2); assertThat(partitionFields).contains("f1"); assertThat(partitionFields).contains("f2"); } @Test public void testGetClusteringFields_not_standard_table() { TableInfo info = TableInfo.of(TableId.of("foo", "bar"), ViewDefinition.of("Select 1 as test")); assertThat(BigQueryUtil.getClusteringFields(info)).isEmpty(); } @Test public void ttestGetClusteringFields_no_clustering() { TableInfo info = TableInfo.of(TableId.of("foo", "bar"), StandardTableDefinition.newBuilder().build()); assertThat(BigQueryUtil.getClusteringFields(info)).isEmpty(); } @Test public void testGetClusteringFields_time_partitioning() { TableInfo info = TableInfo.of( TableId.of("foo", "bar"), StandardTableDefinition.newBuilder() .setClustering( Clustering.newBuilder().setFields(ImmutableList.of("c1", "c2")).build()) .build()); ImmutableList clusteringFields = BigQueryUtil.getClusteringFields(info); assertThat(clusteringFields).hasSize(2); assertThat(clusteringFields).contains("c1"); assertThat(clusteringFields).contains("c2"); } @Test public void testFilterLengthInLimit_no_filter() { assertThat(BigQueryUtil.filterLengthInLimit(Optional.empty())).isTrue(); } @Test public void testFilterLengthInLimit_small_filter() { assertThat(BigQueryUtil.filterLengthInLimit(Optional.of("`foo` > 5"))).isTrue(); } @Test public void testFilterLengthInLimit_very_large_filter() { String tooLarge = IntStream.range(0, 2 + 2 << 20).mapToObj(i -> "a").collect(Collectors.joining()); assertThat(BigQueryUtil.filterLengthInLimit(Optional.of(tooLarge))).isFalse(); } @Test public void testGetPrecision() throws Exception { assertThat( BigQueryUtil.getPrecision( Field.newBuilder("foo", StandardSQLTypeName.NUMERIC).setPrecision(5L).build())) .isEqualTo(5); assertThat( BigQueryUtil.getPrecision(Field.newBuilder("foo", StandardSQLTypeName.NUMERIC).build())) .isEqualTo(38); assertThat( BigQueryUtil.getPrecision( Field.newBuilder("foo", StandardSQLTypeName.BIGNUMERIC).build())) .isEqualTo(76); assertThat(BigQueryUtil.getPrecision(Field.newBuilder("foo", StandardSQLTypeName.BOOL).build())) .isEqualTo(-1); } @Test public void testGetScale() throws Exception { assertThat( BigQueryUtil.getScale( Field.newBuilder("foo", StandardSQLTypeName.NUMERIC).setScale(5L).build())) .isEqualTo(5); assertThat(BigQueryUtil.getScale(Field.newBuilder("foo", StandardSQLTypeName.NUMERIC).build())) .isEqualTo(9); assertThat( BigQueryUtil.getScale(Field.newBuilder("foo", StandardSQLTypeName.BIGNUMERIC).build())) .isEqualTo(38); assertThat(BigQueryUtil.getScale(Field.newBuilder("foo", StandardSQLTypeName.BOOL).build())) .isEqualTo(-1); } @Test public void testAdjustSchemaIfNeeded() { Schema wantedSchema = Schema.of( Field.of("numeric", LegacySQLTypeName.NUMERIC), Field.of( "record", LegacySQLTypeName.RECORD, Field.of("subfield", LegacySQLTypeName.STRING))); Schema existingTableSchema = Schema.of( Field.of("numeric", LegacySQLTypeName.BIGNUMERIC), Field.of( "record", LegacySQLTypeName.RECORD, Field.of("subfield", LegacySQLTypeName.STRING))); Schema adjustedSchema = BigQueryUtil.adjustSchemaIfNeeded(wantedSchema, existingTableSchema, false); assertThat(adjustedSchema.getFields()).hasSize(2); FieldList adjustedFields = adjustedSchema.getFields(); assertThat(adjustedFields.get("numeric").getType()).isEqualTo(LegacySQLTypeName.BIGNUMERIC); assertThat(adjustedFields.get("record").getType()).isEqualTo(LegacySQLTypeName.RECORD); assertThat(adjustedFields.get("record").getSubFields()).hasSize(1); assertThat(adjustedFields.get("record").getSubFields().get(0).getType()) .isEqualTo(LegacySQLTypeName.STRING); } @Test public void testAdjustSchemaForNewField() { Schema wantedSchema = Schema.of( Field.of("existing_field", LegacySQLTypeName.NUMERIC), Field.of("new_field", LegacySQLTypeName.STRING)); Schema existingTableSchema = Schema.of(Field.of("existing_field", LegacySQLTypeName.BIGNUMERIC)); Schema adjustedSchema = BigQueryUtil.adjustSchemaIfNeeded(wantedSchema, existingTableSchema, false); assertThat(adjustedSchema.getFields()).hasSize(2); FieldList adjustedFields = adjustedSchema.getFields(); assertThat(adjustedFields.get("existing_field").getType()) .isEqualTo(LegacySQLTypeName.BIGNUMERIC); assertThat(adjustedFields.get("new_field").getType()).isEqualTo(LegacySQLTypeName.STRING); } @Test public void testAdjustField_no_op() { Field field = Field.of("f", LegacySQLTypeName.BOOLEAN); Field existingField = Field.of("f", LegacySQLTypeName.BIGNUMERIC); Field adjustedField = BigQueryUtil.adjustField(field, existingField, false); assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.BIGNUMERIC); } @Test public void testAdjustField_numeric_to_big_numeric() { Field field = Field.of("numeric", LegacySQLTypeName.NUMERIC); Field existingField = Field.of("numeric", LegacySQLTypeName.BIGNUMERIC); Field adjustedField = BigQueryUtil.adjustField(field, existingField, false); assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.BIGNUMERIC); } @Test public void testAdjustFieldRecursive() { Field field = Field.of( "record", LegacySQLTypeName.RECORD, Field.of("subfield", LegacySQLTypeName.STRING)); Field existingField = Field.of( "record", LegacySQLTypeName.RECORD, Field.of("subfield", LegacySQLTypeName.STRING)); Field adjustedField = BigQueryUtil.adjustField(field, existingField, false); assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.RECORD); assertThat(adjustedField.getSubFields()).hasSize(1); assertThat(adjustedField.getSubFields().get(0).getType()).isEqualTo(LegacySQLTypeName.STRING); } @Test public void testAdjustFieldRecursive_with_bignumeric_conversion() { Field field = Field.of( "record", LegacySQLTypeName.RECORD, Field.of("subfield", LegacySQLTypeName.NUMERIC)); Field existingField = Field.of( "record", LegacySQLTypeName.RECORD, Field.of("subfield", LegacySQLTypeName.BIGNUMERIC)); Field adjustedField = BigQueryUtil.adjustField(field, existingField, false); assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.RECORD); assertThat(adjustedField.getSubFields()).hasSize(1); assertThat(adjustedField.getSubFields().get(0).getType()) .isEqualTo(LegacySQLTypeName.BIGNUMERIC); } @Test public void testAdjustField_nullExistingField() { Field field = Field.of("f", LegacySQLTypeName.BOOLEAN); Field adjustedField = BigQueryUtil.adjustField(field, null, false); assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.BOOLEAN); } @Test public void testAdjustField_nullExistingFieldWithRecordType() { Field field = Field.of( "record", LegacySQLTypeName.RECORD, Field.of("subfield", LegacySQLTypeName.NUMERIC)); Field adjustedField = BigQueryUtil.adjustField(field, null, false); assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.RECORD); } @Test public void testPrepareQueryForLog_withNewLine() { assertThat(BigQueryUtil.prepareQueryForLog("SELECT a\nFROM table", 40)) .isEqualTo("SELECT a\\nFROM table"); } @Test public void testPrepareQueryForLog_withoutNewLine() { assertThat(BigQueryUtil.prepareQueryForLog("SELECT a FROM table", 40)) .isEqualTo("SELECT a FROM table"); } @Test public void testPrepareQueryForLog_withTruncating() { assertThat(BigQueryUtil.prepareQueryForLog("SELECT a FROM table", 10)) .isEqualTo("SELECT a F\u2026"); } @Test public void testSanitizeLabelValue() { // testing to lower case transformation, and character handling assertThat(BigQueryUtil.sanitizeLabelValue("Foo-bar*")).isEqualTo("foo-bar_"); // testing Strings longer than 63 characters assertThat( BigQueryUtil.sanitizeLabelValue( "1234567890123456789012345678901234567890123456789012345678901234567890")) .isEqualTo("123456789012345678901234567890123456789012345678901234567890123"); } @Test public void testIsBigLakeManagedTable_with_BigLakeManagedTable() { TableInfo bigLakeManagedTable = TableInfo.of( TableId.of("dataset", "biglakemanagedtable"), StandardTableDefinition.newBuilder() .setBigLakeConfiguration( BigLakeConfiguration.newBuilder() .setTableFormat("ICEBERG") .setConnectionId("us-connection") .setFileFormat("PARQUET") .setStorageUri("gs://bigquery/blmt/nations.parquet") .build()) .build()); assertTrue(BigQueryUtil.isBigLakeManagedTable(bigLakeManagedTable)); } @Test public void testIsBigLakeManagedTable_with_BigQueryExternalTable() { TableInfo bigQueryExternalTable = TableInfo.of( TableId.of("dataset", "bigqueryexternaltable"), ExternalTableDefinition.newBuilder( "gs://bigquery/nations.parquet", FormatOptions.avro()) .build()); assertFalse(BigQueryUtil.isBigLakeManagedTable(bigQueryExternalTable)); } @Test public void testIsBigLakeManagedTable_with_BigQueryNativeTable() { TableInfo bigQueryNativeTable = TableInfo.of( TableId.of("dataset", "bigquerynativetable"), StandardTableDefinition.newBuilder().setLocation("us-east-1").build()); assertFalse(BigQueryUtil.isBigLakeManagedTable(bigQueryNativeTable)); } @Test public void testIsBigQueryNativeTable_with_BigLakeManagedTable() { TableInfo bigLakeManagedTable = TableInfo.of( TableId.of("dataset", "biglakemanagedtable"), StandardTableDefinition.newBuilder() .setBigLakeConfiguration( BigLakeConfiguration.newBuilder() .setTableFormat("ICEBERG") .setConnectionId("us-connection") .setFileFormat("PARQUET") .setStorageUri("gs://bigquery/blmt/nations.parquet") .build()) .build()); assertFalse(BigQueryUtil.isBigQueryNativeTable(bigLakeManagedTable)); } @Test public void testIsBigQueryNativeTable_with_BigQueryExternalTable() { TableInfo bigQueryExternalTable = TableInfo.of( TableId.of("dataset", "bigqueryexternaltable"), ExternalTableDefinition.newBuilder( "gs://bigquery/nations.parquet", FormatOptions.avro()) .build()); assertFalse(BigQueryUtil.isBigQueryNativeTable(bigQueryExternalTable)); } @Test public void testIsBigQueryNativeTable_with_BigQueryNativeTable() { TableInfo bigQueryNativeTable = TableInfo.of( TableId.of("dataset", "bigquerynativetable"), StandardTableDefinition.newBuilder().setLocation("us-east-1").build()); assertTrue(BigQueryUtil.isBigQueryNativeTable(bigQueryNativeTable)); } @Test public void testAdjustField_nullable_allowRelaxation() { Field field = Field.of("f", LegacySQLTypeName.BIGNUMERIC); field = field.toBuilder().setMode(Mode.NULLABLE).build(); Field existingField = Field.of("f", LegacySQLTypeName.BIGNUMERIC); existingField = existingField.toBuilder().setMode(Mode.REQUIRED).build(); Field adjustedField = BigQueryUtil.adjustField(field, existingField, true); assertThat(adjustedField.getMode()).isEqualTo(Mode.NULLABLE); } @Test public void testAdjustField_exisitingFieldNullable_allowRelaxation() { Field field = Field.of("f", LegacySQLTypeName.BIGNUMERIC); field = field.toBuilder().setMode(Mode.REQUIRED).build(); Field existingField = Field.of("f", LegacySQLTypeName.BIGNUMERIC); existingField = existingField.toBuilder().setMode(Mode.NULLABLE).build(); Field adjustedField = BigQueryUtil.adjustField(field, existingField, true); assertThat(adjustedField.getMode()).isEqualTo(Mode.NULLABLE); } @Test public void testAdjustField_nullable_dontAllowRelaxation() { Field field = Field.of("f", LegacySQLTypeName.BIGNUMERIC); field = field.toBuilder().setMode(Mode.NULLABLE).build(); Field existingField = Field.of("f", LegacySQLTypeName.BIGNUMERIC); existingField = existingField.toBuilder().setMode(Mode.REQUIRED).build(); Field adjustedField = BigQueryUtil.adjustField(field, existingField, false); assertThat(adjustedField.getMode()).isEqualTo(Mode.REQUIRED); } @Test public void testAdjustField_numeric_to_bigNumeric() { Field field = Field.of("f", LegacySQLTypeName.NUMERIC); field = field.toBuilder().setMode(Mode.NULLABLE).build(); Field existingField = Field.of("f", LegacySQLTypeName.BIGNUMERIC); existingField = existingField.toBuilder().setMode(Mode.REQUIRED).build(); Field adjustedField = BigQueryUtil.adjustField(field, existingField, false); assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.BIGNUMERIC); } @Test public void testCredentialSerialization() { Credentials expected = UserCredentials.create( AccessToken.newBuilder() .setTokenValue("notarealtoken") .setExpirationTime(Date.from(Instant.now())) .build()); Credentials credentials = BigQueryUtil.getCredentialsFromByteArray(BigQueryUtil.getCredentialsByteArray(expected)); assertThat(credentials).isEqualTo(expected); } @Test public void testParseNamedParameters_SuccessAllTypes() { Map options = new HashMap<>(); options.put("NamedParameters.strParam", "STRING:hello world"); options.put("NamedParameters.intParam", "INT64:1234567890"); options.put("NamedParameters.boolPropT", "BOOL:true"); options.put("NamedParameters.boolPropF", "BOOL:false"); options.put("NamedParameters.boolPropCase", "BOOL:TRUE"); options.put("NamedParameters.floatParam", "FLOAT64:123.456"); options.put("NamedParameters.numericParam", "NUMERIC:987654321.123456789"); options.put( "NamedParameters.bignumericParam", "BIGNUMERIC:123456789012345678901234567890.123456789123456789"); options.put("NamedParameters.dateParam", "DATE:2023-10-27"); options.put("NamedParameters.jsonParam", "JSON:{\"key\": \"value\", \"arr\": [1, 2]}"); options.put("NamedParameters.geoParam", "GEOGRAPHY:POINT(1 2)"); options.put( "namedparameters.caseinsensitiveprefix", "STRING:prefix works"); // Test prefix case insensitivity QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options); assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED); assertThat(result.isEmpty()).isFalse(); assertThat(result.getNamedParameters()).isPresent(); Map params = result.getNamedParameters().get(); assertThat(params).hasSize(12); assertThat(params.get("strParam")).isEqualTo(QueryParameterValue.string("hello world")); assertThat(params.get("intParam")).isEqualTo(QueryParameterValue.int64(1234567890L)); assertThat(Boolean.parseBoolean(params.get("boolPropT").getValue().toString())).isTrue(); assertThat(Boolean.parseBoolean(params.get("boolPropF").getValue().toString())).isFalse(); assertThat(Boolean.parseBoolean(params.get("boolPropCase").getValue().toString())).isTrue(); assertThat(params.get("floatParam")).isEqualTo(QueryParameterValue.float64(123.456)); assertThat(params.get("numericParam")) .isEqualTo(QueryParameterValue.numeric(new BigDecimal("987654321.123456789"))); assertThat(params.get("bignumericParam")) .isEqualTo( QueryParameterValue.bigNumeric( new BigDecimal("123456789012345678901234567890.123456789123456789"))); assertThat(params.get("dateParam")).isEqualTo(QueryParameterValue.date("2023-10-27")); assertThat(params.get("jsonParam")) .isEqualTo(QueryParameterValue.json("{\"key\": \"value\", \"arr\": [1, 2]}")); assertThat(params.get("geoParam")).isEqualTo(QueryParameterValue.geography("POINT(1 2)")); assertThat(params.get("caseinsensitiveprefix")) .isEqualTo(QueryParameterValue.string("prefix works")); assertThat(result.getPositionalParameters()).isEmpty(); } @Test public void testParseNamedParameters_EmptyStringValue() { Map options = Collections.singletonMap("NamedParameters.emptyStr", "STRING:"); QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options); assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED); assertThat(result.getNamedParameters()).isPresent(); Map params = result.getNamedParameters().get(); assertThat(params).hasSize(1); assertThat(params.get("emptyStr")).isEqualTo(QueryParameterValue.string("")); } @Test public void testParseNamedParameters_SpacesInValue() { Map options = new HashMap<>(); options.put("NamedParameters.withSpaces", "STRING: leading and trailing spaces "); options.put("NamedParameters.numWithSpaces", "INT64: 123 "); // Parser trims value QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options); assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED); assertThat(result.getNamedParameters()).isPresent(); Map params = result.getNamedParameters().get(); assertThat(params).hasSize(2); assertThat(params.get("withSpaces")) .isEqualTo(QueryParameterValue.string("leading and trailing spaces")); assertThat(params.get("numWithSpaces")).isEqualTo(QueryParameterValue.int64(123L)); } @Test public void testParseNamedParameters_DuplicateKeysDifferentCase() { Map options = new HashMap<>(); options.put("NamedParameters.myValue", "STRING:first"); options.put("NamedParameters.myvalue", "STRING:second"); // Different key QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options); assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED); assertThat(result.getNamedParameters()).isPresent(); Map params = result.getNamedParameters().get(); // Both keys exist as they are different strings assertThat(params).hasSize(2); assertThat(params.get("myValue")).isEqualTo(QueryParameterValue.string("first")); assertThat(params.get("myvalue")).isEqualTo(QueryParameterValue.string("second")); } @Test public void testParseNamedParameters_IdenticalKeys() { Map options = new HashMap<>(); options.put("NamedParameters.myValue", "STRING:first"); options.put("NamedParameters.myValue", "STRING:second"); QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options); assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED); Map params = result.getNamedParameters().get(); assertThat(params).hasSize(1); assertThat(params.get("myValue")).isEqualTo(QueryParameterValue.string("second")); } @Test public void testParsePositionalParameters_Success() { Map options = new HashMap<>(); options.put("PositionalParameters.1", "STRING:value1"); options.put("PositionalParameters.3", "BOOL:false"); // Intentionally out of order for input map options.put("positionalparameters.2", "INT64:99"); // Test prefix case insensitivity QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options); assertThat(result.getMode()).isEqualTo(ParameterMode.POSITIONAL); assertThat(result.isEmpty()).isFalse(); assertThat(result.getPositionalParameters()).isPresent(); List params = result.getPositionalParameters().get(); assertThat(params).hasSize(3); // Parser ensures correct size based on max index assertThat(params.get(0)).isEqualTo(QueryParameterValue.string("value1")); // Index 0 = Param 1 assertThat(params.get(1)).isEqualTo(QueryParameterValue.int64(99L)); // Index 1 = Param 2 assertThat(params.get(2)).isEqualTo(QueryParameterValue.bool(false)); // Index 2 = Param 3 assertThat(result.getNamedParameters()).isEmpty(); } @Test public void testParsePositionalParameters_SingleParameter() { Map options = Collections.singletonMap("PositionalParameters.1", "FLOAT64:1.0"); QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options); assertThat(result.getMode()).isEqualTo(ParameterMode.POSITIONAL); assertThat(result.getPositionalParameters()).isPresent(); List params = result.getPositionalParameters().get(); assertThat(params).hasSize(1); assertThat(params.get(0)).isEqualTo(QueryParameterValue.float64(1.0)); } @Test public void testParseParameters_NoParameterOptions() { Map options = new HashMap<>(); options.put("query", "SELECT * FROM table"); options.put("table", "my_table"); // A non-parameter option QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options); assertThat(result.getMode()).isEqualTo(ParameterMode.NONE); assertThat(result.isEmpty()).isTrue(); assertThat(result.getNamedParameters()).isEmpty(); assertThat(result.getPositionalParameters()).isEmpty(); } @Test public void testParseParameters_EmptyOptionsMap() { Map options = Collections.emptyMap(); QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options); assertThat(result.getMode()).isEqualTo(ParameterMode.NONE); assertThat(result.isEmpty()).isTrue(); assertThat(result.getNamedParameters()).isEmpty(); assertThat(result.getPositionalParameters()).isEmpty(); } @Test public void testParseParameters_ErrorMixedNamedAndPositional() { Map options = new HashMap<>(); options.put("NamedParameters.name", "STRING:test"); options.put("PositionalParameters.1", "INT64:100"); IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()).contains("Cannot mix NamedParameters.* and PositionalParameters.*"); } @Test public void testParseParameters_ErrorMixedPositionalAndNamed() { Map options = new HashMap<>(); options.put("PositionalParameters.1", "INT64:100"); options.put("NamedParameters.name", "STRING:test"); // Add named after positional IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()).contains("Cannot mix NamedParameters.* and PositionalParameters.*"); } @Test public void testParseParameters_ErrorNullValueString() { final Map options = new HashMap<>(); options.put("NamedParameters.nullValue", null); // Put null value allowed by HashMap NullPointerException e = assertThrows(NullPointerException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e) .hasMessageThat() .contains("Parameter value string cannot be null for identifier: nullValue"); } @Test public void testParseParameters_ErrorInvalidFormatNoColon() { Map options = Collections.singletonMap("NamedParameters.bad", "STRING value"); IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains( "Invalid parameter value format for identifier 'bad': 'STRING value'. Expected 'TYPE:value'"); } @Test public void testParseParameters_ErrorInvalidFormatEmptyType() { Map options = Collections.singletonMap("NamedParameters.bad", ":value"); IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains( "Invalid parameter value format for identifier 'bad': ':value'. Expected 'TYPE:value'"); } @Test public void testParseParameters_ErrorUnknownType() { Map options = Collections.singletonMap( "NamedParameters.bad", "INTEGER:123"); // INTEGER is not StandardSQLTypeName IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains("Unknown query parameter type: 'INTEGER' for identifier: 'bad'"); } @Test public void testParseParameters_ErrorUnsupportedTypeArray() { Map options = Collections.singletonMap("NamedParameters.arr", "ARRAY:[1, 2]"); IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains("Unsupported query parameter type: ARRAY for identifier: 'arr'"); } @Test public void testParseParameters_ErrorUnsupportedTypeStruct() { Map options = Collections.singletonMap( "NamedParameters.st", "STRUCT: STRUCT(1)"); // Format doesn't matter here IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains("Unsupported query parameter type: STRUCT for identifier: 'st'"); } // --- Error Cases: Invalid Names/Indices --- @Test public void testParseNamedParameters_ErrorEmptyName() { Map options = Collections.singletonMap("NamedParameters.", "STRING:test"); IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains("Named parameter name cannot be empty. Option key: 'NamedParameters.'"); } @Test public void testParsePositionalParameters_ErrorEmptyIndex() { Map options = Collections.singletonMap("PositionalParameters.", "STRING:test"); IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains( "Positional parameter index cannot be empty. Option key: 'PositionalParameters.'"); } @Test public void testParsePositionalParameters_ErrorNonNumericIndex() { Map options = Collections.singletonMap("PositionalParameters.abc", "STRING:test"); IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains( "Invalid positional parameter index: 'abc' must be an integer. Option key: 'PositionalParameters.abc'"); } @Test public void testParsePositionalParameters_ErrorZeroIndex() { int index = 0; Map options = Collections.singletonMap("PositionalParameters." + index, "STRING:test"); IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains("Invalid positional parameter index: " + index + ". Indices must be 1-based."); } @Test public void testParsePositionalParameters_ErrorNegativeIndexMinusOne() { int index = -1; Map options = Collections.singletonMap("PositionalParameters." + index, "STRING:test"); IllegalArgumentException e = assertThrows( IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains("Invalid positional parameter index: " + index + ". Indices must be 1-based."); } // Removed redundant negative index test (-10) as -1 covers the logic sufficiently @Test public void testParsePositionalParameters_ErrorIndexGap() { final Map options = new HashMap<>(); options.put("PositionalParameters.1", "STRING:first"); options.put("PositionalParameters.3", "INT64:100"); // Missing index 2 NullPointerException e = assertThrows( NullPointerException.class, // CHANGED Expected Exception Type () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains( "Missing positional parameter for index: 2. Parameters must be contiguous starting from 1."); } @Test public void testParsePositionalParameters_ErrorOnlyGap() { final Map options = new HashMap<>(); options.put("PositionalParameters.2", "STRING:only two"); // Missing index 1 // Missing index 1 check throws NullPointerException NullPointerException e = assertThrows( NullPointerException.class, // CHANGED Expected Exception Type () -> BigQueryUtil.parseQueryParameters(options)); assertThat(e.getMessage()) .contains( "Missing positional parameter for index: 1. Parameters must be contiguous starting from 1."); } @Test public void formatTableResult_whenSchemaIsNull_returnsEmptyArray() { // Arrange: Mock a TableResult that returns a null schema TableResult mockResult = mock(TableResult.class); when(mockResult.getSchema()).thenReturn(null); // Act String[] actual = BigQueryUtil.formatTableResult(mockResult, /* withHeader */ false); // Assert: The result should be an empty array assertThat(actual).isEmpty(); } @Test public void formatTableResult_whenNoRows_returnsHeaderOnly() { // Arrange: Mock a schema with fields but no data rows TableResult mockResult = mock(TableResult.class); // Create a real Schema instance instead of mocking it Schema realSchema = Schema.of( Field.of("id", LegacySQLTypeName.INTEGER), Field.of("name", LegacySQLTypeName.STRING)); when(mockResult.getSchema()).thenReturn(realSchema); when(mockResult.iterateAll()).thenReturn(Collections.emptyList()); // Act String[] actual = BigQueryUtil.formatTableResult(mockResult, /* withHeader */ true); // Assert: The result should contain only the tab-separated header String[] expected = {"id\tname"}; assertThat(actual).isEqualTo(expected); } @Test public void formatTableResult_whenSchemaIsEmpty_returnsEmptyHeader() { // Arrange: Mock a schema with an empty field list TableResult mockResult = mock(TableResult.class); // Create a real Schema instance with no fields Schema realSchema = Schema.of(); when(mockResult.getSchema()).thenReturn(realSchema); when(mockResult.iterateAll()).thenReturn(Collections.emptyList()); // Act String[] actual = BigQueryUtil.formatTableResult(mockResult, /* withHeader */ true); // Assert: The result should be an array with a single empty string for the header String[] expected = {""}; assertThat(actual).isEqualTo(expected); } @Test public void formatTableResult_whenHasRowsWithDataAndNulls_returnsFormattedTable() { // Arrange: Set up a full table result with multiple rows, data, and nulls. TableResult mockResult = mock(TableResult.class); // 1. Define the schema's fields and create a real Schema instance Field idField = Field.of("id", LegacySQLTypeName.INTEGER); Field nameField = Field.of("name", LegacySQLTypeName.STRING); Field scoreField = Field.of("score", LegacySQLTypeName.FLOAT); Schema realSchema = Schema.of(idField, nameField, scoreField); // Get FieldList from the real schema, which is needed to construct FieldValueList FieldList fieldList = realSchema.getFields(); // 2. Create data rows // Row 1: All values present FieldValueList row1 = FieldValueList.of( Arrays.asList( FieldValue.of(FieldValue.Attribute.PRIMITIVE, "1"), FieldValue.of(FieldValue.Attribute.PRIMITIVE, "Alice"), FieldValue.of(FieldValue.Attribute.PRIMITIVE, "95.5")), fieldList); // Row 2: Contains a null value for the 'name' field FieldValueList row2 = FieldValueList.of( Arrays.asList( FieldValue.of(FieldValue.Attribute.PRIMITIVE, "2"), FieldValue.of( FieldValue.Attribute.PRIMITIVE, null), // This will be formatted as "NULL" FieldValue.of(FieldValue.Attribute.PRIMITIVE, "88.0")), fieldList); // Row 3: All values present FieldValueList row3 = FieldValueList.of( Arrays.asList( FieldValue.of(FieldValue.Attribute.PRIMITIVE, "3"), FieldValue.of(FieldValue.Attribute.PRIMITIVE, "Bob"), FieldValue.of(FieldValue.Attribute.PRIMITIVE, "72.25")), fieldList); List rows = Arrays.asList(row1, row2, row3); // 3. Configure the mocks when(mockResult.getSchema()).thenReturn(realSchema); when(mockResult.iterateAll()).thenReturn(rows); // Act String[] actual = BigQueryUtil.formatTableResult(mockResult, /* withHeader */ false); // Assert: The output should be a correctly formatted string array String[] expected = { "1\tAlice\t95.5", // Row 1 "2\tNULL\t88.0", // Row 2 with NULL "3\tBob\t72.25" // Row 3 }; assertThat(actual).isEqualTo(expected); } @Test public void testGetQueryForTimePartitionedTable() { Schema schema = Schema.of( Field.newBuilder("id", StandardSQLTypeName.INT64).build(), Field.newBuilder("source", StandardSQLTypeName.STRING).build()); StandardTableDefinition destinationDefinition = StandardTableDefinition.newBuilder().setSchema(schema).build(); TimePartitioning timePartitioning = TimePartitioning.newBuilder(TimePartitioning.Type.DAY).setField("id").build(); String query = BigQueryUtil.getQueryForTimePartitionedTable( "dest_table", "temp_table", destinationDefinition, timePartitioning); Matcher targetMatcher = Pattern.compile("MERGE `dest_table` AS `(__target_[a-f0-9]{32})`").matcher(query); assertThat(targetMatcher.find()).isTrue(); String targetAlias = targetMatcher.group(1); Matcher sourceMatcher = Pattern.compile("USING `temp_table` AS `(__source_[a-f0-9]{32})`").matcher(query); assertThat(sourceMatcher.find()).isTrue(); String sourceAlias = sourceMatcher.group(1); assertThat(query) .contains( String.format( "timestamp_trunc(`%s`.`id`, DAY) IN UNNEST(partitions_to_delete)", targetAlias)); assertThat(query) .contains( String.format( "INSERT(`id`,`source`) VALUES(`%s`.`id`,`%s`.`source`)", sourceAlias, sourceAlias)); } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/DurationTimerTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import java.time.Duration; import java.util.concurrent.TimeUnit; import org.junit.Test; public class DurationTimerTest { @Test public void testStartStopPairedCall() throws Exception { DurationTimer timer = new DurationTimer(); assertThat(timer.getSamples()).isEqualTo(0); timer.start(); TimeUnit.MILLISECONDS.sleep(2); timer.finish(); assertThat(timer.getSamples()).isEqualTo(1); Duration accumulated = timer.getAccumulatedTime(); assertThat(accumulated).isAtLeast(Duration.ofMillis(1)); timer.start(); TimeUnit.MILLISECONDS.sleep(2); timer.finish(); assertThat(timer.getSamples()).isEqualTo(2); assertThat(timer.getAccumulatedTime()).isAtLeast(Duration.ofMillis(1).plus(accumulated)); } @Test public void testFinishedByItselfCall() throws Exception { DurationTimer timer = new DurationTimer(); assertThat(timer.getSamples()).isEqualTo(0); timer.finish(); assertThat(timer.getSamples()).isEqualTo(0); TimeUnit.MILLISECONDS.sleep(2); timer.finish(); assertThat(timer.getSamples()).isEqualTo(1); Duration accumulated = timer.getAccumulatedTime(); assertThat(accumulated).isAtLeast(Duration.ofMillis(1)); TimeUnit.MILLISECONDS.sleep(2); timer.finish(); assertThat(timer.getSamples()).isEqualTo(2); assertThat(timer.getAccumulatedTime()).isAtLeast(Duration.ofMillis(1).plus(accumulated)); } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/HttpUtilTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import com.google.api.gax.rpc.HeaderProvider; import java.util.Map; import org.junit.Test; public class HttpUtilTest { @Test public void testCreateHeaderProviderWithParentProject() { BigQueryConfig config = mock(BigQueryConfig.class); when(config.useParentProjectForMetadataOperations()).thenReturn(true); when(config.getParentProjectId()).thenReturn("User-Project"); HeaderProvider headerProvider = HttpUtil.createHeaderProvider(config, "UA"); Map headers = headerProvider.getHeaders(); assertThat(headers).hasSize(2); assertThat(headers.get("X-Goog-User-Project")).isEqualTo("User-Project"); assertThat(headers.get("user-agent")).isEqualTo("UA"); } @Test public void testCreateHeaderProviderNoParentProject() { BigQueryConfig config = mock(BigQueryConfig.class); when(config.useParentProjectForMetadataOperations()).thenReturn(false); HeaderProvider headerProvider = HttpUtil.createHeaderProvider(config, "UA"); Map headers = headerProvider.getHeaders(); assertThat(headers).hasSize(1); assertThat(headers.get("user-agent")).isEqualTo("UA"); } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/IteratorMultiplexerTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import com.google.common.collect.ImmutableList; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; import org.junit.Test; public class IteratorMultiplexerTest { @Test public void testIteratorRoundRobins() throws InterruptedException { ImmutableList values = ImmutableList.of(0, 1, 2, 3, 4, 5, 6, 7, 8, 9); try (IteratorMultiplexer multiplexer = new IteratorMultiplexer<>(values.iterator(), /*multiplexedIterators=*/ 3)) { ImmutableList> iterators = ImmutableList.of( multiplexer.getSplit(0), multiplexer.getSplit(1), multiplexer.getSplit(2)); ImmutableList> multiPlexed = ImmutableList.of(new ArrayList<>(), new ArrayList<>(), new ArrayList<>()); ExecutorService executorService = Executors.newFixedThreadPool(3); for (int x = 0; x < 3; x++) { final int idx = x; executorService.submit( () -> { Iterator iterator = iterators.get(idx); while (iterator.hasNext()) { multiPlexed.get(idx).add(iterator.next()); } }); } executorService.shutdown(); assertThat(executorService.awaitTermination(200, TimeUnit.MILLISECONDS)).isTrue(); assertThat(multiPlexed.get(0)).containsExactly(0, 3, 6, 9).inOrder(); assertThat(multiPlexed.get(1)).containsExactly(1, 4, 7).inOrder(); assertThat(multiPlexed.get(2)).containsExactly(2, 5, 8).inOrder(); } } @Test public void testIteratorRoundRobinsOneValue() throws InterruptedException { ImmutableList values = ImmutableList.of(0); try (IteratorMultiplexer multiplexer = new IteratorMultiplexer<>(values.iterator(), /*multiplexedIterators=*/ 3)) { ImmutableList> iterators = ImmutableList.of( multiplexer.getSplit(0), multiplexer.getSplit(1), multiplexer.getSplit(2)); ImmutableList> multiPlexed = ImmutableList.of(new ArrayList<>(), new ArrayList<>(), new ArrayList<>()); ExecutorService executorService = Executors.newFixedThreadPool(3); for (int x = 0; x < 3; x++) { final int idx = x; executorService.submit( () -> { Iterator iterator = iterators.get(idx); while (iterator.hasNext()) { multiPlexed.get(idx).add(iterator.next()); } }); } executorService.shutdown(); assertThat(executorService.awaitTermination(200, TimeUnit.MILLISECONDS)).isTrue(); assertThat(multiPlexed.get(0)).containsExactly(0).inOrder(); assertThat(multiPlexed.get(1)).containsExactly().inOrder(); assertThat(multiPlexed.get(2)).containsExactly().inOrder(); } } @Test public void testIteratorClosedGracefullyWhenSubIteratorsAreInterrupted() throws InterruptedException { Iterator infiniteIterator = new Iterator() { @Override public boolean hasNext() { return true; } @Override public Integer next() { return 0; } }; try (IteratorMultiplexer multiplexer = new IteratorMultiplexer(infiniteIterator, /*multiplexedIterators=*/ 3)) { ImmutableList> iterators = ImmutableList.of( multiplexer.getSplit(0), multiplexer.getSplit(1), multiplexer.getSplit(2)); ExecutorService executorService = Executors.newFixedThreadPool(3); for (int x = 0; x < 3; x++) { final int idx = x; executorService.submit( () -> { Iterator iterator = iterators.get(idx); while (iterator.hasNext()) { iterator.next(); } }); } executorService.shutdownNow(); assertThat(executorService.awaitTermination(100, TimeUnit.MILLISECONDS)).isTrue(); assertThat(executorService.isTerminated()); multiplexer.close(); } } @Test public void testIteratorClosedGracefullyWhenMultiplexerClosed() throws InterruptedException { Iterator infiniteIterator = new Iterator() { @Override public boolean hasNext() { try { TimeUnit.MINUTES.sleep(1); return true; } catch (InterruptedException e) { throw new RuntimeException(e); } } @Override public Integer next() { return 0; } }; CountDownLatch exited = new CountDownLatch(3); try (IteratorMultiplexer multiplexer = new IteratorMultiplexer(infiniteIterator, /*multiplexedIterators=*/ 3)) { ImmutableList> iterators = ImmutableList.of( multiplexer.getSplit(0), multiplexer.getSplit(1), multiplexer.getSplit(2)); ExecutorService executorService = Executors.newFixedThreadPool(3); for (int x = 0; x < 3; x++) { final int idx = x; executorService.submit( () -> { Iterator iterator = iterators.get(idx); try { while (iterator.hasNext()) { iterator.next(); } } finally { exited.countDown(); } }); } multiplexer.close(); assertThat(exited.await(3, TimeUnit.SECONDS)).isTrue(); executorService.shutdown(); } } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/LoggingBigQueryStorageReadRowsTracerTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import static org.mockito.Mockito.mock; import java.time.Instant; import java.util.Optional; import org.junit.Before; import org.junit.Test; public class LoggingBigQueryStorageReadRowsTracerTest { LoggingBigQueryStorageReadRowsTracer loggingTracer; BigQueryStorageReadRowsTracer tracer; @Before public void setup() { loggingTracer = new LoggingBigQueryStorageReadRowsTracer( "streamName", /*powerOfTwoLogging*/ 3, mock(BigQueryMetrics.class), Optional.empty()); tracer = loggingTracer; } @Test public void testStartAndFinish() { assertThat(loggingTracer.startTime).isNull(); tracer.startStream(); Instant startTime = loggingTracer.startTime; assertThat(startTime).isGreaterThan(Instant.now().minusMillis(20)); assertThat(loggingTracer.endTime).isNull(); assertThat(loggingTracer.linesLogged).isEqualTo(0); tracer.finished(); assertThat(loggingTracer.linesLogged).isEqualTo(1); assertThat(loggingTracer.endTime).isAtLeast(startTime); assertThat(loggingTracer.startTime).isSameInstanceAs(startTime); assertThat(loggingTracer.endTime).isNotSameInstanceAs(startTime); } @Test public void testWaitingForSpark() { assertThat(loggingTracer.sparkTime.getSamples()).isEqualTo(0); tracer.nextBatchNeeded(); assertThat(loggingTracer.sparkTime.getSamples()).isEqualTo(0); // Needs to be called a second time to get the first batch. tracer.nextBatchNeeded(); assertThat(loggingTracer.sparkTime.getSamples()).isEqualTo(1); } @Test public void testWaitingForService() { assertThat(loggingTracer.serviceTime.getSamples()).isEqualTo(0); tracer.readRowsResponseRequested(); assertThat(loggingTracer.serviceTime.getSamples()).isEqualTo(0); tracer.readRowsResponseObtained(10000); assertThat(loggingTracer.serviceTime.getSamples()).isEqualTo(1); assertThat(loggingTracer.bytes).isEqualTo(10000); tracer.readRowsResponseRequested(); tracer.readRowsResponseObtained(5000); assertThat(loggingTracer.bytes).isEqualTo(15000); assertThat(loggingTracer.serviceTime.getSamples()).isEqualTo(2); } @Test public void testParseTime() { assertThat(loggingTracer.parseTime.getSamples()).isEqualTo(0); tracer.rowsParseStarted(); assertThat(loggingTracer.parseTime.getSamples()).isEqualTo(0); tracer.rowsParseFinished(500); assertThat(loggingTracer.parseTime.getSamples()).isEqualTo(1); assertThat(loggingTracer.rows).isEqualTo(500); tracer.rowsParseStarted(); tracer.rowsParseFinished(1000); assertThat(loggingTracer.parseTime.getSamples()).isEqualTo(2); assertThat(loggingTracer.rows).isEqualTo(1500); } @Test public void testLogsAppropriatelyFinished() { assertThat(loggingTracer.linesLogged).isEqualTo(0); for (int x = 0; x < 8; x++) { tracer.nextBatchNeeded(); } assertThat(loggingTracer.linesLogged).isEqualTo(1); tracer.finished(); assertThat(loggingTracer.linesLogged).isEqualTo(2); } @Test public void testFinishedNoLogs() { tracer.finished(); assertThat(loggingTracer.linesLogged).isEqualTo(1); } @Test public void testForkWithPrefix() { loggingTracer = new LoggingBigQueryStorageReadRowsTracer("streamName", /*powerOfTwoLogging*/ 3, null, null); LoggingBigQueryStorageReadRowsTracer newTracer = (LoggingBigQueryStorageReadRowsTracer) tracer.forkWithPrefix("newPrefix"); assertThat(newTracer.getStreamName()).isEqualTo("id-newPrefix-streamName"); } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/MockResponsesBatch.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import java.util.Iterator; import java.util.LinkedList; import java.util.Queue; class MockResponsesBatch implements Iterator { private Queue responses = new LinkedList<>(); void addResponse(ReadRowsResponse response) { responses.add(response); } void addException(RuntimeException exception) { responses.add(exception); } @Override public boolean hasNext() { return !responses.isEmpty(); } @Override public ReadRowsResponse next() { Object next = responses.poll(); if (next instanceof ReadRowsResponse) { return (ReadRowsResponse) next; } if (next instanceof RuntimeException) { throw (RuntimeException) next; } return null; } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/ParallelArrowReaderTest.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import static java.util.concurrent.TimeUnit.MILLISECONDS; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import com.google.common.collect.ImmutableList; import com.google.common.util.concurrent.MoreExecutors; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.time.Duration; import java.time.Instant; import java.util.Optional; import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import org.apache.arrow.memory.BufferAllocator; import org.apache.arrow.vector.IntVector; import org.apache.arrow.vector.VectorLoader; import org.apache.arrow.vector.VectorSchemaRoot; import org.apache.arrow.vector.ipc.ArrowReader; import org.apache.arrow.vector.ipc.ArrowStreamReader; import org.apache.arrow.vector.ipc.ArrowStreamWriter; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.mockito.invocation.InvocationOnMock; public class ParallelArrowReaderTest { BufferAllocator allocator; @Before public void initializeAllocator() { allocator = ArrowUtil.newRootAllocator(Integer.MAX_VALUE); } @After public void closeAllocator() { allocator.close(); } ArrowReader getReaderWithSequence(int... values) throws IOException { IntVector vector = new IntVector("vector_name", allocator); try (VectorSchemaRoot root = VectorSchemaRoot.of(vector)) { ByteArrayOutputStream baos = new ByteArrayOutputStream(); ArrowStreamWriter writer = new ArrowStreamWriter(root, /*dictionaryProvider=*/ null, baos); for (int x = 0; x < values.length; x++) { vector.allocateNew(1); vector.set(/*index=*/ 0, values[x]); vector.setValueCount(1); root.setRowCount(1); writer.writeBatch(); } writer.close(); return new ArrowStreamReader( new NonInterruptibleBlockingBytesChannel(new ByteArrayInputStream(baos.toByteArray())), allocator); } } // @Test // public void testReadsAllBatchesInRoundRobin() throws Exception { // ArrowReader r1 = getReaderWithSequence(0); // ArrowReader r2 = getReaderWithSequence(1, 3); // ArrowReader r3 = getReaderWithSequence(2, 4, 5); // ExecutorService executor = Executors.newFixedThreadPool(3); // List read = new ArrayList<>(); // try (VectorSchemaRoot root = // VectorSchemaRoot.create(r1.getVectorSchemaRoot().getSchema(), allocator)) { // VectorLoader loader = new VectorLoader(root); // ParallelArrowReader reader = // new ParallelArrowReader( // ImmutableList.of(r1, r2, r3), // executor, // loader, // new LoggingBigQueryStorageReadRowsTracer("stream_name", 2)); // // while (reader.next()) { // read.add(((IntVector) root.getVector(0)).get(0)); // } // reader.close(); // } // // assertThat(read).containsExactlyElementsIn(ImmutableList.of(0, 1, 2, 3, 4, 5)).inOrder(); // assertThat(executor.isShutdown()).isTrue(); // } // @Test // public void testReadsAllBatchesInRoundRobinOneelement() throws Exception { // // ColumnarBatch[] batches = new ColumnarBatch[6]; // for (int x = 0; x < batches.length; x++) { // batches[x] = new ColumnarBatch(new ColumnVector[0]); // } // ArrowReader r1 = getReaderWithSequence(); // ArrowReader r2 = getReaderWithSequence(0); // ArrowReader r3 = getReaderWithSequence(); // ExecutorService executor = Executors.newFixedThreadPool(3); // List read = new ArrayList<>(); // try (VectorSchemaRoot root = // VectorSchemaRoot.create(r1.getVectorSchemaRoot().getSchema(), allocator)) { // VectorLoader loader = new VectorLoader(root); // ParallelArrowReader reader = // new ParallelArrowReader( // ImmutableList.of(r1, r2, r3), // executor, // loader, // new LoggingBigQueryStorageReadRowsTracer("stream_name", 2)); // // while (reader.next()) { // read.add(((IntVector) root.getVector(0)).get(0)); // } // reader.close(); // } // // assertThat(read).containsExactlyElementsIn(ImmutableList.of(0)).inOrder(); // assertThat(executor.isShutdown()).isTrue(); // } @Test public void testExceptionIsPropagatedFromNext() throws Exception { IOException exception = new IOException("an exception"); ArrowReader r1 = mock(ArrowReader.class); when(r1.loadNextBatch()).thenThrow(exception); ExecutorService executor = MoreExecutors.newDirectExecutorService(); try (VectorSchemaRoot root = new VectorSchemaRoot(ImmutableList.of()); VectorSchemaRoot root2 = new VectorSchemaRoot(ImmutableList.of())) { when(r1.getVectorSchemaRoot()).thenReturn(root2); ParallelArrowReader reader = new ParallelArrowReader( ImmutableList.of(r1), executor, new VectorLoader(root), new LoggingBigQueryStorageReadRowsTracer("stream_name", 2, null, null)); IOException e = Assert.assertThrows(IOException.class, reader::next); assertThat(e).isSameInstanceAs(exception); } } @Test public void testInterruptsOnClose() throws Exception { try (VectorSchemaRoot root = VectorSchemaRoot.of()) { ArrowReader r1 = mock(ArrowReader.class); when(r1.loadNextBatch()).thenReturn(true); when(r1.getVectorSchemaRoot()).thenReturn(root); CountDownLatch latch = new CountDownLatch(1); ArrowReader r2 = mock(ArrowReader.class); when(r2.loadNextBatch()) .thenAnswer( (InvocationOnMock invocation) -> { latch.countDown(); MILLISECONDS.sleep(100); return true; }); when(r2.getVectorSchemaRoot()).thenReturn(root); VectorLoader loader = mock(VectorLoader.class); ExecutorService executor = Executors.newSingleThreadExecutor(); ParallelArrowReader reader = new ParallelArrowReader( ImmutableList.of(r1, r2), executor, loader, new LoggingBigQueryStorageReadRowsTracer( "stream_name", 2, mock(BigQueryMetrics.class), Optional.empty())); ExecutorService oneOff = Executors.newSingleThreadExecutor(); Instant start = Instant.now(); Future endTime = oneOff.submit( () -> { try { while (reader.next()) {} } catch (Exception e) { if (e.getCause() == null || !(e.getCause() instanceof InterruptedException)) { return Instant.ofEpochMilli(0); } } return Instant.now(); }); // Wait until next gets called. latch.await(); // Should interrupt blocking operations. oneOff.shutdownNow(); reader.close(); assertThat(endTime.get()).isGreaterThan(start); assertThat(Duration.between(start, endTime.get())).isLessThan(Duration.ofMillis(100)); } } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/ReadRowsHelperTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common; import org.junit.Ignore; @Ignore public class ReadRowsHelperTest { // // it is not used, we just need the reference // BigQueryReadClientFactory clientFactory = mock(BigQueryReadClientFactory.class); // private ReadRowsRequest.Builder request = ReadRowsRequest.newBuilder().setReadStream("test"); // private ReadSessionCreatorConfig defaultConfig = // new ReadSessionCreatorConfigBuilder().setMaxReadRowsRetries(1).build(); // // private static FakeStorageService fakeService = new FakeStorageService(); // private static FakeStorageServer fakeServer; // // ReadRowsHelper helper; // // @BeforeClass // public static void setupServer() throws IOException { // fakeServer = new FakeStorageServer(fakeService); // } // // @Before // public void resetService() { // fakeService.reset(ImmutableMap.of()); // } // // @After // public void closeHelper() { // if (helper != null) { // helper.close(); // } // } // // @AfterClass // public static void teardownServer() throws InterruptedException { // fakeServer.stop(); // } // // @Test // public void testConfigSerializable() throws IOException { // new ObjectOutputStream(new ByteArrayOutputStream()) // .writeObject(defaultConfig.toReadRowsHelperOptions()); // } // // BigQueryReadClient fakeServerClient() throws IOException { // TransportChannelProvider transportationProvider = // EnhancedBigQueryReadStubSettings.defaultGrpcTransportProviderBuilder() // .setChannelConfigurator( // (ManagedChannelBuilder a) -> { // a.usePlaintext(); // return a; // }) // .build(); // return BigQueryReadClient.create( // BigQueryReadSettings.newBuilder() // .setTransportChannelProvider(transportationProvider) // .setCredentialsProvider(() -> null) // .setEndpoint("127.0.0.1:" + fakeServer.port()) // .build()); // } // // @Test // public void testNoFailures() throws IOException { // MockResponsesBatch batch1 = new MockResponsesBatch(); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build()); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build()); // fakeService.reset(ImmutableMap.of(request.getReadStream(), batch1)); // // when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient()); // // // so we can run multiple tests // helper = new ReadRowsHelper(clientFactory, request, defaultConfig.toReadRowsHelperOptions()); // ImmutableList responses = ImmutableList.copyOf(helper.readRows()); // // assertThat(responses.size()).isEqualTo(2); // assertThat(responses.stream().mapToLong(ReadRowsResponse::getRowCount).sum()).isEqualTo(21); // } // // @Test // public void testCancel() throws IOException { // MockResponsesBatch batch1 = new MockResponsesBatch(); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build()); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build()); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build()); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build()); // // MockResponsesBatch batch2 = new MockResponsesBatch(); // batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build()); // batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build()); // batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build()); // batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build()); // ReadRowsRequest.Builder request2 = ReadRowsRequest.newBuilder().setReadStream("abc"); // // fakeService.reset( // ImmutableMap.of(request.getReadStream(), batch1, request2.getReadStream(), batch2)); // // when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient()); // // helper = // new ReadRowsHelper( // clientFactory, // ImmutableList.of(request, request2), // defaultConfig.toReadRowsHelperOptions()); // // Iterator responses = helper.readRows(); // // Try to make sure both requests are active. // responses.next(); // responses.next(); // responses.next(); // helper.close(); // ImmutableList remainingResponses = ImmutableList.copyOf(responses); // // assertThat(remainingResponses.size()).isLessThan(5); // } // // @Test // public void endpointIsPropagated() throws Exception { // MockResponsesBatch batch1 = new MockResponsesBatch(); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build()); // when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient()); // fakeService.reset(ImmutableMap.of(request.getReadStream(), batch1)); // ReadSessionCreatorConfig config = // new ReadSessionCreatorConfigBuilder().setEndpoint(Optional.of("127.0.0.1:" + // 123)).build(); // helper = new ReadRowsHelper(clientFactory, request, config.toReadRowsHelperOptions()); // assertThat(Iterators.getOnlyElement(helper.readRows()).getRowCount()).isEqualTo(10); // ArgumentCaptor> endpointCaptor = ArgumentCaptor.forClass(Optional.class); // Mockito.verify(clientFactory, times(1)).createBigQueryReadClient(endpointCaptor.capture()); // } // // @Test // public void testRetryOfSingleFailure() throws IOException { // MockResponsesBatch batch1 = new MockResponsesBatch(); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build()); // batch1.addException( // new StatusRuntimeException( // Status.INTERNAL.withDescription("HTTP/2 error code: INTERNAL_ERROR"))); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build()); // fakeService.reset(ImmutableMap.of(request.getReadStream(), batch1)); // when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient()); // // helper = new ReadRowsHelper(clientFactory, request, defaultConfig.toReadRowsHelperOptions()); // ImmutableList responses = ImmutableList.copyOf(helper.readRows()); // // assertThat(responses.size()).isEqualTo(2); // assertThat(responses.stream().mapToLong(ReadRowsResponse::getRowCount).sum()).isEqualTo(21); // // List requests = // fakeService.requestsByStreamName.get(request.getReadStream()); // assertThat(requests) // .containsExactly(request.setOffset(0).build(), request.setOffset(10).build()) // .inOrder(); // } // // @Test // public void testCombinesStreamsTogether() throws IOException { // MockResponsesBatch batch1 = new MockResponsesBatch(); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build()); // batch1.addException( // new StatusRuntimeException( // Status.INTERNAL.withDescription("HTTP/2 error code: INTERNAL_ERROR"))); // batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build()); // ReadRowsRequest.Builder request1 = ReadRowsRequest.newBuilder().setReadStream("r1"); // // MockResponsesBatch batch2 = new MockResponsesBatch(); // batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(30).build()); // batch2.addException( // new StatusRuntimeException( // Status.INTERNAL.withDescription("HTTP/2 error code: INTERNAL_ERROR"))); // batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(45).build()); // ReadRowsRequest.Builder request2 = ReadRowsRequest.newBuilder().setReadStream("r2"); // fakeService.reset( // ImmutableMap.of( // request1.getReadStream(), batch1, // request2.getReadStream(), batch2)); // when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient()); // // helper = // new ReadRowsHelper( // clientFactory, // ImmutableList.of(request1, request2), // defaultConfig.toReadRowsHelperOptions()); // ImmutableList responses = ImmutableList.copyOf(helper.readRows()); // // assertThat(responses.size()).isEqualTo(4); // assertThat(responses.stream().mapToLong(ReadRowsResponse::getRowCount).sum()).isEqualTo(96); // // List requests1 = // fakeService.requestsByStreamName.get(request1.getReadStream()); // assertThat(requests1) // .containsExactly(request1.setOffset(0).build(), request1.setOffset(10).build()) // .inOrder(); // // List requests2 = // fakeService.requestsByStreamName.get(request2.getReadStream()); // assertThat(requests2) // .containsExactly(request2.setOffset(0).build(), request2.setOffset(30).build()) // .inOrder(); // } // // private static class FakeStorageService extends BigQueryReadImplBase { // private Map responsesByStreamName; // private final ListMultimap requestsByStreamName = // Multimaps.synchronizedListMultimap(ArrayListMultimap.create()); // // void reset(Map responsesByStreamName) { // this.responsesByStreamName = responsesByStreamName; // requestsByStreamName.clear(); // } // // @Override // public void readRows( // ReadRowsRequest request, StreamObserver responseObserver) { // String name = request.getReadStream(); // requestsByStreamName.put(name, request); // MockResponsesBatch responses = responsesByStreamName.get(name); // // if (responses == null) { // responseObserver.onError(new RuntimeException("No responses for stream: " + name)); // } // // while (responses.hasNext()) { // try { // ReadRowsResponse next = responses.next(); // if (next == null) { // responseObserver.onError(new RuntimeException("Null element found: " + name)); // return; // } // responseObserver.onNext(next); // } catch (Exception e) { // responseObserver.onError(e); // return; // } // } // responseObserver.onCompleted(); // } // } // // private static class FakeStorageServer { // private final Server server; // // FakeStorageServer(FakeStorageService service) throws IOException { // // Zero should pick a random port. // ServerBuilder serverBuilder = NettyServerBuilder.forPort(0); // server = serverBuilder.addService(service).build(); // server.start(); // } // // int port() { // return server.getPort(); // } // // void stop() throws InterruptedException { // server.shutdownNow(); // server.awaitTermination(10, TimeUnit.SECONDS); // } // } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/ReadSessionCreatorTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.bigquery.connector.common; import static com.google.common.truth.Truth.assertThat; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import com.google.api.gax.core.NoCredentialsProvider; import com.google.api.gax.grpc.testing.LocalChannelProvider; import com.google.api.gax.grpc.testing.MockGrpcService; import com.google.api.gax.grpc.testing.MockServiceHelper; import com.google.api.gax.rpc.UnaryCallable; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardSQLTypeName; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions; import com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec; import com.google.cloud.bigquery.storage.v1.BigQueryReadClient; import com.google.cloud.bigquery.storage.v1.BigQueryReadSettings; import com.google.cloud.bigquery.storage.v1.CreateReadSessionRequest; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.cloud.bigquery.storage.v1.MockBigQueryRead; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.cloud.bigquery.storage.v1.ReadSession.TableModifiers; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.cloud.bigquery.storage.v1.ReadStream; import com.google.cloud.bigquery.storage.v1.stub.EnhancedBigQueryReadStub; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.google.common.collect.ImmutableList; import com.google.protobuf.Timestamp; import java.io.IOException; import java.io.UncheckedIOException; import java.util.Arrays; import java.util.Optional; import java.util.OptionalInt; import java.util.OptionalLong; import java.util.UUID; import org.apache.commons.lang3.reflect.FieldUtils; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import org.mockito.ArgumentCaptor; import org.mockito.Mockito; public class ReadSessionCreatorTest { EnhancedBigQueryReadStub stub = mock(EnhancedBigQueryReadStub.class); BigQueryClient bigQueryClient = mock(BigQueryClient.class); UnaryCallable createReadSessionCall = mock(UnaryCallable.class); BigQueryReadClient readClient = createMockBigQueryReadClient(stub); BigQueryClientFactory bigQueryReadClientFactory = mock(BigQueryClientFactory.class); TableInfo table = TableInfo.newBuilder( TableId.of("a", "b"), StandardTableDefinition.newBuilder() .setSchema(Schema.of(Field.of("name", StandardSQLTypeName.BOOL))) .setNumBytes(1L) .build()) .build(); TableInfo view = TableInfo.newBuilder( TableId.of("a", "v"), StandardTableDefinition.newBuilder() .setType(TableDefinition.Type.VIEW) .setSchema(Schema.of(Field.of("name", StandardSQLTypeName.BOOL))) .setNumBytes(1L) .build()) .build(); private static MockBigQueryRead mockBigQueryRead; private static MockServiceHelper mockServiceHelper; private LocalChannelProvider channelProvider; private BigQueryReadClient client; @BeforeClass public static void startStaticServer() { mockBigQueryRead = new MockBigQueryRead(); mockServiceHelper = new MockServiceHelper( UUID.randomUUID().toString(), Arrays.asList(mockBigQueryRead)); mockServiceHelper.start(); } @AfterClass public static void stopServer() { mockServiceHelper.stop(); } @Before public void setUp() throws IOException { mockServiceHelper.reset(); channelProvider = mockServiceHelper.createChannelProvider(); BigQueryReadSettings settings = BigQueryReadSettings.newBuilder() .setTransportChannelProvider(channelProvider) .setCredentialsProvider(NoCredentialsProvider.create()) .build(); client = BigQueryReadClient.create(settings); } @After public void tearDown() throws Exception { client.close(); } @Test public void testSerializedInstanceIsPropagated() throws Exception { TableReadOptions tableReadOptions = TableReadOptions.newBuilder().build(); ReadSession readSession = ReadSession.newBuilder().setName("abc").setReadOptions(tableReadOptions).build(); CreateReadSessionRequest request = CreateReadSessionRequest.newBuilder().setReadSession(readSession).build(); Optional encodedBase = Optional.of(java.util.Base64.getEncoder().encodeToString(request.toByteArray())); ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setEnableReadSessionCaching(false) .setRequestEncodedBase(encodedBase) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, bigQueryReadClientFactory); when(bigQueryReadClientFactory.getBigQueryReadClient()).thenReturn(readClient); when(bigQueryClient.getTable(any())).thenReturn(table); when(stub.createReadSessionCallable()).thenReturn(createReadSessionCall); creator .create(TableId.of("dataset", "table"), ImmutableList.of("col1", "col2"), Optional.empty()) .getReadSession(); ArgumentCaptor requestCaptor = ArgumentCaptor.forClass(CreateReadSessionRequest.class); verify(createReadSessionCall, times(1)).call(requestCaptor.capture()); ReadSession actual = requestCaptor.getValue().getReadSession(); assertThat(actual.getName()).isEqualTo("abc"); assertThat(actual.getReadOptions().getSelectedFieldsList()).containsExactly("col1", "col2"); } @Test public void testDefaultMinMaxStreamCount() throws Exception { // setting up when(bigQueryClient.getTable(any())).thenReturn(table); mockBigQueryRead.reset(); mockBigQueryRead.addResponse( ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName("0")).build()); BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class); when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client); ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setEnableReadSessionCaching(false) .setDefaultParallelism(10) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory); ReadSessionResponse readSessionResponse = creator.create(table.getTableId(), ImmutableList.of(), Optional.empty()); assertThat(readSessionResponse).isNotNull(); assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1); CreateReadSessionRequest createReadSessionRequest = (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0); assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(20_000); assertThat(createReadSessionRequest.getPreferredMinStreamCount()) .isEqualTo(30); // 3 * given default parallelism } @Test public void testCustomMinStreamCount() throws Exception { // setting up when(bigQueryClient.getTable(any())).thenReturn(table); mockBigQueryRead.reset(); mockBigQueryRead.addResponse( ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName("0")).build()); BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class); when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client); ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setEnableReadSessionCaching(false) .setDefaultParallelism(10) .setPreferredMinParallelism(OptionalInt.of(21_000)) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory); ReadSessionResponse readSessionResponse = creator.create(table.getTableId(), ImmutableList.of(), Optional.empty()); assertThat(readSessionResponse).isNotNull(); assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1); CreateReadSessionRequest createReadSessionRequest = (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0); assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(21_000); assertThat(createReadSessionRequest.getPreferredMinStreamCount()).isEqualTo(21_000); } @Test public void testCustomMaxStreamCount() throws Exception { // setting up when(bigQueryClient.getTable(any())).thenReturn(table); mockBigQueryRead.reset(); mockBigQueryRead.addResponse( ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName("0")).build()); BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class); when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client); ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setEnableReadSessionCaching(false) .setDefaultParallelism(10) .setMaxParallelism(OptionalInt.of(21_000)) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory); ReadSessionResponse readSessionResponse = creator.create(table.getTableId(), ImmutableList.of(), Optional.empty()); assertThat(readSessionResponse).isNotNull(); assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1); CreateReadSessionRequest createReadSessionRequest = (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0); assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(21_000); assertThat(createReadSessionRequest.getPreferredMinStreamCount()) .isEqualTo(30); // 3 * given default parallelism } @Test public void testMinStreamCountGreaterThanMaxStreamCount() throws Exception { // setting up when(bigQueryClient.getTable(any())).thenReturn(table); mockBigQueryRead.reset(); mockBigQueryRead.addResponse( ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName("0")).build()); BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class); when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client); ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setEnableReadSessionCaching(false) .setPreferredMinParallelism(OptionalInt.of(21_000)) .setMaxParallelism(OptionalInt.of(10)) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory); ReadSessionResponse readSessionResponse = creator.create(table.getTableId(), ImmutableList.of(), Optional.empty()); assertThat(readSessionResponse).isNotNull(); assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1); CreateReadSessionRequest createReadSessionRequest = (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0); assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(10); assertThat(createReadSessionRequest.getPreferredMinStreamCount()).isEqualTo(10); } @Test public void testMaxStreamCountWithoutMinStreamCount() throws Exception { // setting up when(bigQueryClient.getTable(any())).thenReturn(table); mockBigQueryRead.reset(); mockBigQueryRead.addResponse( ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName("0")).build()); BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class); when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client); ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setEnableReadSessionCaching(false) .setDefaultParallelism(20) .setMaxParallelism(OptionalInt.of(10)) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory); ReadSessionResponse readSessionResponse = creator.create(table.getTableId(), ImmutableList.of(), Optional.empty()); assertThat(readSessionResponse).isNotNull(); assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1); CreateReadSessionRequest createReadSessionRequest = (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0); assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(10); assertThat(createReadSessionRequest.getPreferredMinStreamCount()).isEqualTo(10); } @Test public void testSnapshotTimeMillis() throws Exception { // setting up when(bigQueryClient.getTable(any())).thenReturn(table); mockBigQueryRead.reset(); mockBigQueryRead.addResponse( ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName("0")).build()); BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class); when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client); ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setEnableReadSessionCaching(false) .setSnapshotTimeMillis(OptionalLong.of(1234567890L)) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory); ReadSessionResponse readSessionResponse = creator.create(table.getTableId(), ImmutableList.of(), Optional.empty()); assertThat(readSessionResponse).isNotNull(); CreateReadSessionRequest createReadSessionRequest = (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0); assertThat(createReadSessionRequest.getReadSession().getTableModifiers().getSnapshotTime()) .isEqualTo(Timestamp.newBuilder().setSeconds(1234567).setNanos(890000000).build()); } @Test public void testViewSnapshotTimeMillis() throws Exception { // setting up String query = "SELECT * FROM `a.v`"; when(bigQueryClient.getTable(any())).thenReturn(view); when(bigQueryClient.createSql( view.getTableId(), ImmutableList.of(), new String[0], OptionalLong.of(1234567890L))) .thenReturn(query); when(bigQueryClient.materializeViewToTable(query, view.getTableId(), 120)).thenReturn(table); mockBigQueryRead.reset(); mockBigQueryRead.addResponse( ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName("0")).build()); BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class); when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client); ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setEnableReadSessionCaching(false) .setSnapshotTimeMillis(OptionalLong.of(1234567890L)) .setViewsEnabled(true) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory); ReadSessionResponse readSessionResponse = creator.create(table.getTableId(), ImmutableList.of(), Optional.empty()); assertThat(readSessionResponse).isNotNull(); CreateReadSessionRequest createReadSessionRequest = (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0); assertThat(createReadSessionRequest.getReadSession().getTableModifiers()) .isEqualTo(TableModifiers.newBuilder().build()); } private void testCacheMissScenario( ReadSessionCreator creator, String readSessionName, ImmutableList fields, Optional filter) { ReadSession readSession = ReadSession.newBuilder().setName(readSessionName).build(); mockBigQueryRead.addResponse(readSession); ReadSessionResponse response = creator.create(table.getTableId(), fields, filter); assertThat(creator.getReadSessionCache().asMap().values()).contains(readSession); assertThat(response.getReadSession()).isEqualTo(readSession); } @Test public void testReadSessionCacheMiss() { // setting up when(bigQueryClient.getTable(any())).thenReturn(table); mockBigQueryRead.reset(); BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class); when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client); ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setMaxParallelism(OptionalInt.of(10)) .setReadDataFormat(DataFormat.ARROW) .setEnableReadSessionCaching(true) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory); creator = Mockito.spy(creator); Cache cache = CacheBuilder.newBuilder().build(); Mockito.doReturn(cache).when(creator).getReadSessionCache(); int counter = 0; testCacheMissScenario(creator, "rs" + ++counter, ImmutableList.of(), Optional.empty()); testCacheMissScenario( creator, "rs" + ++counter, ImmutableList.of("foo", "bar"), Optional.empty()); testCacheMissScenario( creator, "rs" + ++counter, ImmutableList.of("foo", "baz1"), Optional.empty()); testCacheMissScenario(creator, "rs" + ++counter, ImmutableList.of(), Optional.of("filter1")); testCacheMissScenario(creator, "rs" + ++counter, ImmutableList.of(), Optional.of("filter2")); testCacheMissScenario( creator, "rs" + ++counter, ImmutableList.of("foo", "bar"), Optional.of("filter1")); testCacheMissScenario( creator, "rs" + ++counter, ImmutableList.of("foo", "bar"), Optional.of("filter2")); } private ReadSession addCacheEntry( ReadSessionCreator creator, String readSessionName, ImmutableList fields, Optional filter, ReadSessionCreatorConfig config) { ReadSession readSession = ReadSession.newBuilder().setName(readSessionName).build(); CreateReadSessionRequest request = CreateReadSessionRequest.newBuilder().build(); ReadSession.Builder requestedSession = request.getReadSession().toBuilder(); TableReadOptions.Builder readOptions = requestedSession.getReadOptionsBuilder(); filter.ifPresent(readOptions::setRowRestriction); readOptions.addAllSelectedFields(fields); readOptions.setArrowSerializationOptions( ArrowSerializationOptions.newBuilder() .setBufferCompression(config.getArrowCompressionCodec()) .build()); readOptions.setResponseCompressionCodec(config.getResponseCompressionCodec()); CreateReadSessionRequest key = CreateReadSessionRequest.newBuilder() .setParent("projects/" + bigQueryClient.getProjectId()) .setReadSession( requestedSession .setDataFormat(config.getReadDataFormat()) .setReadOptions(readOptions) .setTable(ReadSessionCreator.toTablePath(table.getTableId())) .setTableModifiers(TableModifiers.newBuilder()) .build()) .setMaxStreamCount(config.getMaxParallelism().getAsInt()) .setPreferredMinStreamCount(3 * config.getDefaultParallelism()) .build(); creator.getReadSessionCache().put(key, readSession); return readSession; } private void testCacheHitScenario( ReadSessionCreator creator, ReadSession expected, ImmutableList fields, Optional filter) { ReadSessionResponse response = creator.create(table.getTableId(), fields, filter); assertThat(response.getReadSession()).isEqualTo(expected); } @Test public void testReadSessionCacheHit() { // setting up when(bigQueryClient.getTable(any())).thenReturn(table); mockBigQueryRead.reset(); mockBigQueryRead.addResponse(ReadSession.newBuilder().setName("wrong-name").build()); // mockBigQueryRead.addException(new RuntimeException("Test: Cached ReadSession not used")); BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class); when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client); int maxStreamCount = 20_000; int defaultParallelism = 10; ReadSessionCreatorConfig config = new ReadSessionCreatorConfigBuilder() .setDefaultParallelism(defaultParallelism) .setMaxParallelism(OptionalInt.of(maxStreamCount)) .setReadDataFormat(DataFormat.ARROW) .setEnableReadSessionCaching(true) .setArrowCompressionCodec(CompressionCodec.COMPRESSION_UNSPECIFIED) .setResponseCompressionCodec( ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED) .build(); ReadSessionCreator creator = new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory); creator = Mockito.spy(creator); Cache cache = CacheBuilder.newBuilder().build(); Mockito.doReturn(cache).when(creator).getReadSessionCache(); // test cache hits ReadSession expected1 = addCacheEntry(creator, "r1", ImmutableList.of(), Optional.empty(), config); testCacheHitScenario(creator, expected1, ImmutableList.of(), Optional.empty()); ReadSession expected2 = addCacheEntry( creator, "r2", ImmutableList.of("foo", "bar"), Optional.of("filter1"), config); testCacheHitScenario( creator, expected2, ImmutableList.of("foo", "bar"), Optional.of("filter1")); ReadSession expected3 = addCacheEntry( creator, "r3", ImmutableList.of("foo", "bar"), Optional.of("filter2"), config); testCacheHitScenario( creator, expected3, ImmutableList.of("foo", "bar"), Optional.of("filter2")); // re-test previous cache hits testCacheHitScenario(creator, expected1, ImmutableList.of(), Optional.empty()); testCacheHitScenario( creator, expected2, ImmutableList.of("foo", "bar"), Optional.of("filter1")); testCacheHitScenario( creator, expected3, ImmutableList.of("foo", "bar"), Optional.of("filter2")); } private static BigQueryReadClient createMockBigQueryReadClient(EnhancedBigQueryReadStub stub) { try { BigQueryReadClient client = BigQueryReadClient.create(stub); // settings is null, causing NPE in some of the tests FieldUtils.writeField(client, "settings", BigQueryReadSettings.newBuilder().build(), true); return client; } catch (IllegalAccessException e) { throw new RuntimeException(e); } catch (IOException e) { throw new UncheckedIOException(e); } } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/integration/CustomCredentialsIntegrationTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common.integration; import static com.google.common.truth.Truth.assertThat; import com.google.auth.Credentials; import com.google.cloud.bigquery.BigQuery; import com.google.cloud.bigquery.BigQueryOptions; import com.google.cloud.bigquery.Table; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.connector.common.AccessTokenProviderCredentials; import com.google.cloud.bigquery.connector.common.BigQueryCredentialsSupplier; import java.util.Optional; import org.junit.Test; public class CustomCredentialsIntegrationTest { public static final TableId TABLE_ID = TableId.of("bigquery-public-data", "samples", "shakespeare"); @Test public void testAccessTokenProvider() { BigQueryCredentialsSupplier credentialsSupplier = new BigQueryCredentialsSupplier( Optional.of(DefaultCredentialsDelegateAccessTokenProvider.class.getCanonicalName()), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()); Credentials credentials = credentialsSupplier.getCredentials(); assertThat(credentials).isInstanceOf(AccessTokenProviderCredentials.class); DefaultCredentialsDelegateAccessTokenProvider accessTokenProvider = (DefaultCredentialsDelegateAccessTokenProvider) ((AccessTokenProviderCredentials) credentials).getAccessTokenProvider(); assertThat(accessTokenProvider.getCallCount()).isEqualTo(0); BigQueryOptions options = BigQueryOptions.newBuilder().setCredentials(credentials).build(); BigQuery bigQuery = options.getService(); // first call Table table = bigQuery.getTable(TABLE_ID); assertThat(table).isNotNull(); assertThat(accessTokenProvider.getCallCount()).isEqualTo(1); // second call table = bigQuery.getTable(TABLE_ID); assertThat(table).isNotNull(); assertThat(accessTokenProvider.getCallCount()).isEqualTo(2); } @Test public void testAccessTokenProvider_withConfig() { BigQueryCredentialsSupplier credentialsSupplier = new BigQueryCredentialsSupplier( Optional.of(DefaultCredentialsDelegateAccessTokenProvider.class.getCanonicalName()), Optional.of("some-configuration"), Optional.empty(), Optional.empty(), Optional.empty(), null, null, Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty(), Optional.empty()); Credentials credentials = credentialsSupplier.getCredentials(); assertThat(credentials).isInstanceOf(AccessTokenProviderCredentials.class); DefaultCredentialsDelegateAccessTokenProvider accessTokenProvider = (DefaultCredentialsDelegateAccessTokenProvider) ((AccessTokenProviderCredentials) credentials).getAccessTokenProvider(); assertThat(accessTokenProvider.getCallCount()).isEqualTo(0); assertThat(accessTokenProvider.getConfig()).isEqualTo("some-configuration"); BigQueryOptions options = BigQueryOptions.newBuilder().setCredentials(credentials).build(); BigQuery bigQuery = options.getService(); // first call Table table = bigQuery.getTable(TABLE_ID); assertThat(table).isNotNull(); assertThat(accessTokenProvider.getCallCount()).isEqualTo(1); // second call table = bigQuery.getTable(TABLE_ID); assertThat(table).isNotNull(); assertThat(accessTokenProvider.getCallCount()).isEqualTo(2); } } ================================================ FILE: bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/integration/DefaultCredentialsDelegateAccessTokenProvider.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.bigquery.connector.common.integration; import com.google.auth.oauth2.GoogleCredentials; import com.google.cloud.bigquery.connector.common.AccessToken; import com.google.cloud.bigquery.connector.common.AccessTokenProvider; import java.io.IOException; import java.io.UncheckedIOException; import java.util.Date; /** * Basic implementation of AccessTokenProvider. This demonstrates a simple example of how * configuration can be passed to the AccessTokenProvider implementation. In this case the * configuration is simply treated as a token override in place of using {@link * GoogleCredentials#getApplicationDefault}. Token TTL is very small to allow refresh testing. */ public class DefaultCredentialsDelegateAccessTokenProvider implements AccessTokenProvider { private String config; private GoogleCredentials delegate; private int callCount = 0; public DefaultCredentialsDelegateAccessTokenProvider() { this(null); } public DefaultCredentialsDelegateAccessTokenProvider(String config) { this.config = config; try { this.delegate = GoogleCredentials.getApplicationDefault(); } catch (IOException e) { throw new UncheckedIOException(e); } } @Override public AccessToken getAccessToken() throws IOException { com.google.auth.oauth2.AccessToken accessToken = delegate.refreshAccessToken(); callCount++; return new AccessToken( accessToken.getTokenValue(), new Date(System.currentTimeMillis() + 2000)); } int getCallCount() { return callCount; } String getConfig() { return config; } } ================================================ FILE: bigquery-connector-common/src/test/resources/external-account-credentials.json ================================================ { "type": "external_account", "audience": "//iam.googleapis.com/projects/1234/locations/global/workloadIdentityPools/some-pool/providers/test", "subject_token_type": "urn:ietf:params:oauth:token-type:jwt", "service_account_impersonation_url": "https://iamcredentials.googleapis.com/v1/projects/-/serviceAccounts/test:generateAccessToken", "token_url": "https://sts.googleapis.com/v1/token", "credential_source": { "headers": { "Metadata": "True" }, "url": "http://169.254.169.254/metadata/identity/oauth2/token?api-version=2018-02-01&resource=https://iam.googleapis.com/projects/$PROJECT_NUMBER/locations/global/workloadIdentityPools/$POOL_ID/providers/$PROVIDER_ID", "format": { "type": "json", "subject_token_field_name": "access_token" } } } ================================================ FILE: cloudbuild/Dockerfile ================================================ # This Dockerfile creates an image for running presubmit tests. FROM ubuntu:22.04 # Set noninteractive frontend for apt to avoid prompts during build ENV DEBIAN_FRONTEND=noninteractive # Install prerequisites, JDKs, and Google Cloud CLI in a single RUN command RUN apt-get update && apt-get install -y --no-install-recommends \ curl \ gnupg \ ca-certificates \ # Add Adoptium repository and key && curl -s https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor -o /usr/share/keyrings/adoptium.gpg \ && echo "deb [signed-by=/usr/share/keyrings/adoptium.gpg] https://packages.adoptium.net/artifactory/deb jammy main" | tee /etc/apt/sources.list.d/adoptium.list \ # Add Google Cloud SDK repository and key && curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg \ && echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | tee /etc/apt/sources.list.d/google-cloud-sdk.list \ # Update package list again after adding new repos && apt-get update \ # Install JDKs and Google Cloud CLI && apt-get install -y --no-install-recommends \ openjdk-8-jdk \ temurin-11-jdk \ temurin-17-jdk \ google-cloud-cli \ # Clean up apt cache and lists && apt-get clean \ && rm -rf /var/lib/apt/lists/* # Set a default JAVA_HOME (optional, mainly for processes outside toolchains) # Toolchains plugin will select the correct JDK based on toolchains.xml # Setting it to 17 so we can use toolchain on lower JDKs ENV JAVA_HOME=/usr/lib/jvm/temurin-17-jdk-amd64 ENV JAVA8_HOME=/usr/lib/jvm/java-8-openjdk-amd64 ENV JAVA11_HOME=/usr/lib/jvm/temurin-11-jdk-amd64 ENV JAVA17_HOME=/usr/lib/jvm/temurin-17-jdk-amd64 ================================================ FILE: cloudbuild/cloudbuild.yaml ================================================ steps: # 1. Create a Docker image containing hadoop-connectors repo - name: 'gcr.io/cloud-builders/docker' id: 'docker-build' args: ['build', '--tag=gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit', '-f', 'cloudbuild/Dockerfile', '.'] # 2. Fetch maven and dependencies - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'init' waitFor: ['docker-build'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'init'] env: - 'CODECOV_TOKEN=${_CODECOV_TOKEN}' # 3. Run unit tests - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'unit-tests' waitFor: ['init'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'unittest'] env: - 'CODECOV_TOKEN=${_CODECOV_TOKEN}' # 4a. Run integration tests concurrently with unit tests (DSv1, Scala 2.12) - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'integration-tests-2.12' waitFor: ['unit-tests'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-2.12'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' # 4b. Run integration tests concurrently with unit tests (DSv1, Scala 2.13) - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'integration-tests-2.13' waitFor: ['unit-tests'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-2.13'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' # 4c. Run integration tests concurrently with unit tests (DSv2, Spark 3.1) - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'integration-tests-3.1' waitFor: ['integration-tests-2.12'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.1'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' # 4d. Run integration tests concurrently with unit tests (DSv2, Spark 3.2) - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'integration-tests-3.2' waitFor: ['integration-tests-2.13'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.2'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' # 4e. Run integration tests concurrently with unit tests (DSv2, Spark 3.3) - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'integration-tests-3.3' waitFor: ['integration-tests-3.1'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.3'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' # 4f. Run integration tests concurrently with unit tests (DSv2, Spark 3.4) - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'integration-tests-3.4' waitFor: ['integration-tests-3.2'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.4'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' # 4g. Run integration tests concurrently with unit tests (DSv2, Spark 3.5) - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'integration-tests-3.5' waitFor: ['integration-tests-3.3'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.5'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' # 4h. Run integration tests concurrently with unit tests (DSv2, Spark 3.5) - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'integration-tests-4.0' waitFor: ['integration-tests-3.4'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-4.0'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' # 4i. Run integration tests concurrently with unit tests (DSv2, Spark 3.5) - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'integration-tests-4.1' waitFor: ['integration-tests-3.5'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-4.1'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' # 5. Upload coverage to CodeCov - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit' id: 'upload-it-to-codecov' waitFor: ['integration-tests-2.12','integration-tests-2.13','integration-tests-3.1','integration-tests-3.2','integration-tests-3.3', 'integration-tests-3.4', 'integration-tests-3.5', 'integration-tests-4.0', 'integration-tests-4.1'] entrypoint: 'bash' args: ['/workspace/cloudbuild/presubmit.sh', 'upload-it-to-codecov'] env: - 'CODECOV_TOKEN=${_CODECOV_TOKEN}' # Tests take around 1 hr 15 mins in general. timeout: 9000s options: machineType: 'E2_HIGHCPU_32' ================================================ FILE: cloudbuild/gcp-settings.xml ================================================ ================================================ FILE: cloudbuild/nightly.sh ================================================ #!/bin/bash # Copyright 2019 Google Inc. All Rights Reserved. # # 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. set -euxo pipefail readonly STEP=$1 function checkenv() { if [ -z "${CODECOV_TOKEN}" ]; then echo "missing environment variable CODECOV_TOKEN" exit 1 fi } readonly M2REPO="/workspace/.repository" readonly DATE="$(date +%Y%m%d)" readonly REVISION="0.0.${DATE}" export BUILD_OPTS='-Xss1g -Xmx20g -XX:MaxMetaspaceSize=10g -XX:ReservedCodeCacheSize=2g -Dsun.zip.disableMemoryMapping=true -DtrimStackTrace=false' readonly MVN_NT="./mvnw -B -e -s /workspace/cloudbuild/gcp-settings.xml -Dmaven.repo.local=${M2REPO} -Drevision=${REVISION}" readonly MVN="${MVN_NT} -t toolchains.xml" readonly BUCKET="spark-lib-nightly-snapshots" mkdir -p ${M2REPO} cd /workspace case $STEP in build) checkenv $MVN_NT toolchains:generate-jdk-toolchains-xml -Dtoolchain.file=toolchains.xml cat toolchains.xml # Build export JAVA_HOME=${JAVA17_HOME} $MVN -T 1C install -DskipTests -Pdsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1 #coverage report export JAVA_HOME=${JAVA17_HOME} $MVN -T 1C test jacoco:report jacoco:report-aggregate -Pcoverage,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1 # Run integration tests unset MAVEN_OPTS export JAVA_HOME=${JAVA17_HOME} $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1 # Run acceptance tests export JAVA_HOME=${JAVA17_HOME} $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,acceptance,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1 # Upload test coverage report to Codecov bash <(curl -s https://codecov.io/bash) -K -F "nightly" # Save the REVISION variable to use in the next build step echo "${REVISION}" > /workspace/revision.txt exit ;; copy-to-gcs) # Get the REVISION variable from the previous step readonly BUILD_REVISION="$(cat /workspace/revision.txt)" # Upload nightly artifacts to the snapshot bucket and mark nightly snapshot gsutil cp "${M2REPO}/com/google/cloud/spark/spark-bigquery-with-dependencies_2.12/${BUILD_REVISION}/spark-bigquery-with-dependencies_2.12-${BUILD_REVISION}.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-bigquery-with-dependencies_2.12-${BUILD_REVISION}.jar" "gs://${BUCKET}/spark-bigquery-with-dependencies_2.12-nightly-snapshot.jar" gsutil cp "${M2REPO}/com/google/cloud/spark/spark-bigquery-with-dependencies_2.13/${BUILD_REVISION}/spark-bigquery-with-dependencies_2.13-${BUILD_REVISION}.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-bigquery-with-dependencies_2.13-${BUILD_REVISION}.jar" "gs://${BUCKET}/spark-bigquery-with-dependencies_2.13-nightly-snapshot.jar" gsutil cp "${M2REPO}/com/google/cloud/spark/spark-3.1-bigquery/${BUILD_REVISION}/spark-3.1-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-3.1-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}/spark-3.1-bigquery-nightly-snapshot.jar" gsutil cp "${M2REPO}/com/google/cloud/spark/spark-3.2-bigquery/${BUILD_REVISION}/spark-3.2-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-3.2-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}/spark-3.2-bigquery-nightly-snapshot.jar" gsutil cp "${M2REPO}/com/google/cloud/spark/spark-3.3-bigquery/${BUILD_REVISION}/spark-3.3-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-3.3-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}/spark-3.3-bigquery-nightly-snapshot.jar" gsutil cp "${M2REPO}/com/google/cloud/spark/spark-3.4-bigquery/${BUILD_REVISION}/spark-3.4-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-3.4-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}/spark-3.4-bigquery-nightly-snapshot.jar" gsutil cp "${M2REPO}/com/google/cloud/spark/spark-3.5-bigquery/${BUILD_REVISION}/spark-3.5-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-3.5-bigquery-${BUILD_REVISION}.jar" "gs://${BUCKET}/spark-3.5-bigquery-nightly-snapshot.jar" gsutil cp "${M2REPO}/com/google/cloud/spark/spark-4.0-bigquery/${BUILD_REVISION}-preview/spark-4.0-bigquery-${BUILD_REVISION}-preview.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-4.0-bigquery-${BUILD_REVISION}-preview.jar" "gs://${BUCKET}/spark-4.0-bigquery-nightly-snapshot.jar" gsutil cp "${M2REPO}/com/google/cloud/spark/spark-4.1-bigquery/${BUILD_REVISION}-preview/spark-4.1-bigquery-${BUILD_REVISION}-preview.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-4.1-bigquery-${BUILD_REVISION}-preview.jar" "gs://${BUCKET}/spark-4.1-bigquery-nightly-snapshot.jar" gsutil cp "${M2REPO}/com/google/cloud/spark/spark-bigquery-metrics/${BUILD_REVISION}/spark-bigquery-metrics-${BUILD_REVISION}.jar" "gs://${BUCKET}" gsutil cp "gs://${BUCKET}/spark-bigquery-metrics-${BUILD_REVISION}.jar" "gs://${BUCKET}/spark-bigquery-metrics-nightly-snapshot.jar" exit ;; deploy) # TODO: Re-enable deployment for nightly builds. # $MVN deploy:deploy -DskipTests -Dscala.skipTests=true -Prelease-nightly,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1 exit ;; *) echo "Unknown step $STEP" exit 1 ;; esac ================================================ FILE: cloudbuild/nightly.yaml ================================================ steps: # 1. Create a Docker image containing hadoop-connectors repo - name: 'gcr.io/cloud-builders/docker' id: 'docker-build' args: ['build', '--tag=gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly', '-f', 'cloudbuild/Dockerfile', '.'] # 2. Fetch maven and dependencies - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly' id: 'maven-build' entrypoint: 'bash' args: ['/workspace/cloudbuild/nightly.sh', 'build'] env: - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}' - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}' - 'ACCEPTANCE_TEST_BUCKET=${_ACCEPTANCE_TEST_BUCKET}' - 'SERVERLESS_NETWORK_URI=${_SERVERLESS_NETWORK_URI}' - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}' - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}' - 'CODECOV_TOKEN=${_CODECOV_TOKEN}' - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly' id: 'copy-to-gcs' entrypoint: 'bash' args: ['/workspace/cloudbuild/nightly.sh', 'copy-to-gcs'] - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly' id: 'deploy' entrypoint: 'bash' args: ['/workspace/cloudbuild/nightly.sh', 'deploy'] - name: 'gcr.io/cloud-builders/docker' id: 'docker-push' args: ['push', 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly:latest'] images: ['gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly'] # Many tests, so it takes time timeout: 14400s options: machineType: 'E2_HIGHCPU_32' logsBucket: spark-bigquery-connector-cloud-build-logs ================================================ FILE: cloudbuild/presubmit.sh ================================================ #!/bin/bash # Copyright 2019 Google Inc. All Rights Reserved. # # 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. set -euxo pipefail function checkenv() { if [ -z "${CODECOV_TOKEN}" ]; then echo "missing environment variable CODECOV_TOKEN" exit 1 fi } unset MAVEN_OPTS readonly BUILD_OPTS='-Xss1g -Xmx20g -XX:MaxMetaspaceSize=10g -XX:ReservedCodeCacheSize=2g -Dsun.zip.disableMemoryMapping=true -DtrimStackTrace=false' readonly MVN_NT="./mvnw -B -e -s /workspace/cloudbuild/gcp-settings.xml -Dmaven.repo.local=/workspace/.repository" readonly MVN="${MVN_NT} -t toolchains.xml" readonly STEP=$1 cd /workspace case $STEP in # Download maven and all the dependencies init) checkenv $MVN_NT toolchains:generate-jdk-toolchains-xml -Dtoolchain.file=toolchains.xml cat toolchains.xml export MAVEN_OPTS=${BUILD_OPTS} export JAVA_HOME=${JAVA17_HOME} $MVN -T 1C install -DskipTests -Pdsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1 exit ;; # Run unit tests unittest) export MAVEN_OPTS=${BUILD_OPTS} export JAVA_HOME=${JAVA17_HOME} $MVN -T 1C test jacoco:report jacoco:report-aggregate -Pcoverage,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1 # Upload test coverage report to Codecov bash <(curl -s https://codecov.io/bash) -K -F "${STEP}" ;; # Run integration tests integrationtest-2.12) export JAVA_HOME=${JAVA8_HOME} $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv1_2.12 ;; # Run integration tests integrationtest-2.13) export JAVA_HOME=${JAVA8_HOME} $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv1_2.13 ;; # Run integration tests integrationtest-3.1) export JAVA_HOME=${JAVA8_HOME} $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.1 ;; # Run integration tests integrationtest-3.2) export JAVA_HOME=${JAVA8_HOME} $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.2 ;; # Run integration tests integrationtest-3.3) $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.3 ;; # Run integration tests integrationtest-3.4) $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.4 ;; # Run integration tests integrationtest-3.5) $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.5 ;; # Run integration tests integrationtest-4.0) $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_4.0 ;; # Run integration tests integrationtest-4.1) $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_4.1 ;; upload-it-to-codecov) checkenv # Upload test coverage report to Codecov bash <(curl -s https://codecov.io/bash) -K -F integrationtest ;; *) echo "Unknown step $STEP" exit 1 ;; esac ================================================ FILE: coverage/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../spark-bigquery-parent coverage Coverage Report pom ${project.groupId} bigquery-connector-common ${project.version} ${project.groupId} spark-bigquery-connector-common ${project.version} coverage false org.jacoco jacoco-maven-plugin verify report-aggregate all false ${project.groupId} spark-bigquery-dsv1-spark3-support ${project.version} ${project.groupId} spark-bigquery_2.11 ${project.version} ${project.groupId} spark-bigquery-with-dependencies_2.11 ${project.version} ${project.groupId} spark-bigquery_2.12 ${project.version} ${project.groupId} spark-bigquery-with-dependencies_2.12 ${project.version} ${project.groupId} spark-2.4-bigquery ${project.version} ${project.groupId} spark-3.1-bigquery ${project.version} dsv1 false ${project.groupId} spark-bigquery-dsv1-spark3-support ${project.version} ${project.groupId} spark-bigquery_2.11 ${project.version} ${project.groupId} spark-bigquery-with-dependencies_2.11 ${project.version} ${project.groupId} spark-bigquery_2.12 ${project.version} ${project.groupId} spark-bigquery-with-dependencies_2.12 ${project.version} dsv1_2.11 false ${project.groupId} spark-bigquery-dsv1-spark3-support ${project.version} ${project.groupId} spark-bigquery_2.11 ${project.version} ${project.groupId} spark-bigquery-with-dependencies_2.11 ${project.version} dsv1_2.12 false ${project.groupId} spark-bigquery-dsv1-spark3-support ${project.version} ${project.groupId} spark-bigquery_2.12 ${project.version} dsv1_2.13 false ${project.groupId} spark-bigquery-dsv1-spark3-support ${project.version} ${project.groupId} spark-bigquery_2.13 ${project.version} dsv2 false ${project.groupId} spark-2.4-bigquery ${project.version} ${project.groupId} spark-3.1-bigquery ${project.version} dsv2_2.4 false ${project.groupId} spark-2.4-bigquery ${project.version} ${project.groupId} spark-bigquery-dsv2-common ${project.version} dsv2_3.1 false ${project.groupId} spark-3.1-bigquery ${project.version} ${project.groupId} spark-bigquery-dsv2-common ${project.version} dsv2_3.2 false ${project.groupId} spark-3.2-bigquery ${project.version} dsv2_3.3 false ${project.groupId} spark-3.3-bigquery ${project.version} dsv2_3.4 false ${project.groupId} spark-3.4-bigquery ${project.version} dsv2_3.5 false ${project.groupId} spark-3.5-bigquery ${project.version} dsv2_4.0 false ${project.groupId} spark-4.0-bigquery ${project.version} dsv2_4.1 false ${project.groupId} spark-4.1-bigquery ${project.version}-preview ================================================ FILE: examples/notebooks/Advanced ML Pipelines.ipynb ================================================ {"cells": [{"cell_type": "markdown", "metadata": {}, "source": "

Problem: As a PM, I write lots of blogs. How do I know if they will be received well by readers?

"}, {"cell_type": "markdown", "metadata": {}, "source": "

\n \n \n \n \n
"}, {"cell_type": "markdown", "metadata": {}, "source": "

Background on Spark ML

"}, {"cell_type": "markdown", "metadata": {}, "source": "DataFrame: This ML API uses DataFrame from Spark SQL as an ML dataset, which can hold a variety of data types. E.g., a DataFrame could have different columns storing text, feature vectors, true labels, and predictions.\n\nTransformer: A Transformer is an algorithm which can transform one DataFrame into another DataFrame. E.g., an ML model is a Transformer which transforms a DataFrame with features into a DataFrame with predictions.\n\nEstimator: An Estimator is an algorithm which can be fit on a DataFrame to produce a Transformer. E.g., a learning algorithm is an Estimator which trains on a DataFrame and produces a model.\n\nPipeline: A Pipeline chains multiple Transformers and Estimators together to specify an ML workflow.\n\nParameter: All Transformers and Estimators now share a common API for specifying parameters."}, {"cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [{"data": {"text/html": "", "text/plain": ""}, "execution_count": 2, "metadata": {}, "output_type": "execute_result"}], "source": "from IPython.display import Image\nImage(url='https://spark.apache.org/docs/3.0.0-preview/img/ml-Pipeline.png') "}, {"cell_type": "markdown", "metadata": {}, "source": "

Loading Hackernews Text From BigQuery

"}, {"cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": "from pyspark.sql import SparkSession\nspark = SparkSession.builder.getOrCreate()\nscala_minor_version = str(spark.sparkContext._jvm.scala.util.Properties.versionString().replace(\"version \",\"\").split('.')[1])\nspark = SparkSession.builder.config(\"spark.jars.packages\", \"com.google.cloud.spark:spark-bigquery-with-dependencies_2.\" + scala_minor_version + \":0.18.0\") \\\n .enableHiveSupport() \\\n .getOrCreate()"}, {"cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": "df = spark.read \\\n .format(\"bigquery\") \\\n .load(\"google.com:crosbie-test-project.demos.hackernewssample\")"}, {"cell_type": "code", "execution_count": 84, "metadata": {}, "outputs": [{"name": "stdout", "output_type": "stream", "text": "+-------+-----------------+--------------------+\n|summary| score| text|\n+-------+-----------------+--------------------+\n| count| 1000| 1000|\n| mean| 8.188| null|\n| stddev|44.01315500863138| null|\n| min| 1|\"Do you have a qu...|\n| max| 1081|\u0647\u064a \u0634\u0631\u0643\u0629 \u0645\u062a\u062e\u0635\u0635\u0629 \u0641\u064a...|\n+-------+-----------------+--------------------+\n\n"}], "source": "df.describe().show()"}, {"cell_type": "markdown", "metadata": {}, "source": "

Prepare the data using Spark SQL

\n

Create a random ID to distribute between test and training sets

\n

Make the score a binary variable so we can run a logicistic regression model on it

"}, {"cell_type": "code", "execution_count": 86, "metadata": {}, "outputs": [], "source": "df.registerTempTable(\"df\")\nfrom pyspark.sql import functions as F\ndf_full = spark.sql(\"select cast(round(rand() * 100) as int) as id, text, case when score > 10 THEN 1.0 else 0.0 end as label from df\")"}, {"cell_type": "code", "execution_count": 87, "metadata": {}, "outputs": [{"name": "stdout", "output_type": "stream", "text": "+---+-----+\n| id|count|\n+---+-----+\n| 22| 17|\n| 39| 16|\n| 25| 15|\n| 55| 15|\n| 23| 15|\n| 47| 15|\n| 38| 15|\n| 71| 14|\n| 5| 14|\n| 98| 14|\n| 32| 14|\n| 44| 13|\n| 43| 13|\n| 59| 13|\n| 85| 13|\n| 83| 13|\n| 24| 13|\n| 82| 13|\n| 58| 13|\n| 53| 13|\n+---+-----+\nonly showing top 20 rows\n\n"}], "source": "df_full.groupby('id').count().sort('count', ascending=False).show()"}, {"cell_type": "markdown", "metadata": {}, "source": "

Create our training and test sets

"}, {"cell_type": "code", "execution_count": 95, "metadata": {}, "outputs": [], "source": "#use the above table to identify ~10% holdback for test\nholdback = \"(22,39,25,55,23,47,38,71,5,98)\""}, {"cell_type": "code", "execution_count": 115, "metadata": {}, "outputs": [], "source": "#create test set by dropping label \ndf_test = df_full.where(\"id in {}\".format(holdback))\ndf_test = df_test.drop(\"label\")\nrdd_test = df_test.rdd\ntest = rdd_test.map(tuple)\ntesting = spark.createDataFrame(test,[\"id\", \"text\"])"}, {"cell_type": "code", "execution_count": 99, "metadata": {}, "outputs": [], "source": "#training data - Spark ML is expecting tuples so convert to RDD to map back to tuples (may not be required)\ndf_train = df_full.where(\"id not in {}\".format(holdback))\nrdd_train = df_train.rdd\ntrain = rdd_train.map(tuple)\ntraining = spark.createDataFrame(train,[\"id\", \"text\", \"label\"])"}, {"cell_type": "code", "execution_count": 114, "metadata": {}, "outputs": [{"data": {"text/plain": "91"}, "execution_count": 114, "metadata": {}, "output_type": "execute_result"}], "source": "#a little less than 10% of the trainig data is positively reviewed. Should be okay. \ntraining.where(\"label > 0\").count()"}, {"cell_type": "markdown", "metadata": {}, "source": "

Build our ML Pipeline

"}, {"cell_type": "markdown", "metadata": {}, "source": "

Configure an ML pipeline, which consists of three stages: tokenizer, hashingTF, and lr.

"}, {"cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [], "source": "from pyspark.ml import Pipeline\nfrom pyspark.ml.classification import LogisticRegression\nfrom pyspark.ml.feature import HashingTF, Tokenizer"}, {"cell_type": "code", "execution_count": 116, "metadata": {}, "outputs": [], "source": "\ntokenizer = Tokenizer(inputCol=\"text\", outputCol=\"words\")\n\nhashingTF = HashingTF(inputCol=tokenizer.getOutputCol(), outputCol=\"features\")\n\nlr = LogisticRegression(maxIter=10, regParam=0.001)\n\npipeline = Pipeline(stages=[tokenizer, hashingTF, lr])"}, {"cell_type": "code", "execution_count": 117, "metadata": {}, "outputs": [], "source": "# Fit the pipeline to hacker news articles\nmodel = pipeline.fit(training)"}, {"cell_type": "markdown", "metadata": {}, "source": "

Review model based on test set

"}, {"cell_type": "code", "execution_count": 119, "metadata": {}, "outputs": [{"name": "stdout", "output_type": "stream", "text": "(22, Other) --> prob=[0.3819756099050897,0.6180243900949102], prediction=1.000000\n(55, While we may talk often about other pieces of the software development lifecycle, shell scripts don't usually get to take center stage. Let's share some creative little scripts we've come up with over the years!) --> prob=[0.4063985380451119,0.5936014619548882], prediction=1.000000\n"}], "source": "# Make predictions on test documents and print columns of interest.\nprediction = model.transform(testing)\nselected = prediction.select(\"id\", \"text\", \"probability\", \"prediction\").where(\"prediction > 0\")\nfor row in selected.collect():\n rid, text, prob, prediction = row\n print(\"(%d, %s) --> prob=%s, prediction=%f\" % (rid, text, str(prob), prediction))"}, {"cell_type": "markdown", "metadata": {}, "source": "

Use the model to decide which PM blog to use

"}, {"cell_type": "code", "execution_count": 122, "metadata": {}, "outputs": [], "source": "my_blog = \"\"\"\nThe life of a data scientist can be challenging. If you\u2019re in this role, your job may involve anything from understanding the day-to-day business behind the data to keeping up with the latest machine learning academic research. With all that a data scientist must do to be effective, you shouldn\u2019t have to worry about migrating data environments or dealing with processing limitations associated with working with raw data. \n\nGoogle Cloud\u2019s Dataproc lets you run cloud-native Apache Spark and Hadoop clusters easily. This is especially helpful as data growth relocates data scientists and machine learning researchers from personal servers and laptops into distributed cluster environments like Apache Spark, which offers Python and R interfaces for data of any size. You can run open source data processing on Google Cloud, making Dataproc one of the fastest ways to extend your existing data analysis to cloud-sized datasets. \n\nWe\u2019re announcing the general availability of several new Dataproc features that will let you apply the open source tools, algorithms, and programming languages that you use today to large datasets. This can be done without having to manage clusters and computers. These new GA features make it possible for data scientists and analysts to build production systems based on personalized development environments. \n\"\"\"\n\npmm_blog = \"\"\"\nDataproc makes open source data and analytics processing fast, easy, and more secure in the cloud.\n\nNew customers get $300 in free credits to spend on Dataproc or other Google Cloud products during the first 90 days. \n\nGo to console\nSpin up an autoscaling cluster in 90 seconds on custom machines\nBuild fully managed Apache Spark, Apache Hadoop, Presto, and other OSS clusters\nOnly pay for the resources you use and lower the total cost of ownership of OSS\nEncryption and unified security built into every cluster\nAccelerate data science with purpose-built clusters\n\"\"\"\n\n\nboss_blog = \"\"\"\n\nIn 2014, we made a decision to build our core data platform on Google Cloud Platform and one of the products which was critical for the decision was Google BigQuery. The scale at which it enabled us to perform analysis we knew would be critical in long run for our business. Today we have more than 200 unique users performing analysis on a monthly basis.\n\nOnce we started using Google BiqQuery at scale we soon realized our analysts needed better tooling around it. The key requests we started getting were\n\nAbility to schedule jobs: Analysts needed to have ability to run queries at regular intervals to generate data and metrics.\nDefine workflow of queries: Basically analysts wanted to run multiple queries in a sequence and share data across them through temp tables.\nSimplified data sharing: Finally it became clear teams needed to share this data generated with other systems. For example download it to leverage in R programs or send it to another system to process through Kafka.\n\n\"\"\""}, {"cell_type": "code", "execution_count": 129, "metadata": {}, "outputs": [], "source": "pm_blog_off = spark.createDataFrame([\n ('me', my_blog),\n ('pmm', pmm_blog),\n ('sudhir', boss_blog)\n], [\"id\", \"text\"])"}, {"cell_type": "code", "execution_count": 130, "metadata": {}, "outputs": [], "source": "blog_prediction = model.transform(pm_blog_off)"}, {"cell_type": "code", "execution_count": 131, "metadata": {}, "outputs": [{"name": "stdout", "output_type": "stream", "text": "+------+----------+\n| id|prediction|\n+------+----------+\n| me| 0.0|\n| pmm| 1.0|\n|sudhir| 0.0|\n+------+----------+\n\n"}], "source": "blog_prediction.select(\"id\",\"prediction\").show()"}, {"cell_type": "markdown", "metadata": {}, "source": "

Save our trained model to GCS

"}, {"cell_type": "code", "execution_count": 137, "metadata": {}, "outputs": [], "source": "model.save(\"gs://crosbie-dev/blog-validation-model\")"}], "metadata": {"kernelspec": {"display_name": "Python 3", "language": "python", "name": "python3"}, "language_info": {"codemirror_mode": {"name": "ipython", "version": 3}, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.6"}}, "nbformat": 4, "nbformat_minor": 4} ================================================ FILE: examples/notebooks/Distribute_Generic_Functions.ipynb ================================================ {"cells": [{"cell_type": "markdown", "metadata": {}, "source": "

Distribute functions across a BigQuery dataset using Spark

"}, {"cell_type": "markdown", "metadata": {}, "source": "

Problem: As a PM, I give lots of public presentations and I want to make sure I use images that have an open license

"}, {"cell_type": "markdown", "metadata": {}, "source": " \n

BigQuery Public Datasets - Open Images: 9 million URLs of open images (with labels across 6,000 categories)

"}, {"cell_type": "markdown", "metadata": {}, "source": "

For smaller datasets, can use BigQuery magic and python

"}, {"cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": "%reload_ext google.cloud.bigquery"}, {"cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [{"name": "stderr", "output_type": "stream", "text": "Query complete after 0.01s: 100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 1/1 [00:00<00:00, 1199.06query/s]\nDownloading: 100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 10/10 [00:01<00:00, 7.46rows/s]\n"}], "source": "%%bigquery pd_results --use_bqstorage_api\n\nSELECT original_url, title \nFROM `bigquery-public-data.open_images.images` \nWHERE license = 'https://creativecommons.org/licenses/by/2.0/' \nLIMIT 10"}, {"cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [{"data": {"text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
original_urltitle
0https://farm4.staticflickr.com/7162/6707198107_1993d73034_o.jpgMen\u2019s Pique Polo (NA)
1https://c8.staticflickr.com/4/3676/11012143656_40a5269d42_o.jpgLadybug on green leaf
2https://c4.staticflickr.com/9/8157/7599640374_f278fa5bd7_o.jpgn53_w1150
3https://c7.staticflickr.com/5/4101/4861005456_71b3b0be00_o.jpgDSC_4918
4https://farm5.staticflickr.com/5443/17832643436_904497178e_o.jpgCentral Accord 2015
\n
", "text/plain": " original_url \\\n0 https://farm4.staticflickr.com/7162/6707198107_1993d73034_o.jpg \n1 https://c8.staticflickr.com/4/3676/11012143656_40a5269d42_o.jpg \n2 https://c4.staticflickr.com/9/8157/7599640374_f278fa5bd7_o.jpg \n3 https://c7.staticflickr.com/5/4101/4861005456_71b3b0be00_o.jpg \n4 https://farm5.staticflickr.com/5443/17832643436_904497178e_o.jpg \n\n title \n0 Men\u2019s Pique Polo (NA) \n1 Ladybug on green leaf \n2 n53_w1150 \n3 DSC_4918 \n4 Central Accord 2015 "}, "execution_count": 3, "metadata": {}, "output_type": "execute_result"}], "source": "#review what our image database contains. \nimport pandas as pd\npd.set_option('display.max_colwidth', None)\npd_results.head()"}, {"cell_type": "markdown", "metadata": {}, "source": "Looks like a great set of images but how do I find what I need? What's a DSC-4918?"}, {"cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": "#function that makes is super easy to abstract some high confidence labels about my image.\nfrom google.cloud import vision\ndef AnnotateHighConfidenceLabelsFromImage(image_uri):\n client = vision.ImageAnnotatorClient()\n request = {\n 'image': {\n 'source': {'image_uri': image_uri},\n },\n }\n response = client.annotate_image(request)\n\n high_confidence_labels = []\n for la in response.label_annotations:\n if float(la.score * 100) > 90.0:\n high_confidence_labels.append(la.description)\n\n if len(high_confidence_labels) < 1:\n high_confidence_labels.append(\"No labels detected\")\n \n return str(high_confidence_labels)"}, {"cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [{"name": "stdout", "output_type": "stream", "text": "['No labels detected']\n['No labels detected']\n['Branch', 'Organism', 'Plant community', 'Monochrome photography', 'Monochrome', 'Adaptation']\n['Arm', 'Finger', 'People', 'Comfort', 'Hand', 'Child']\n['Electronic device', 'Furniture', 'Technology', 'Table', 'Laptop', 'Computer accessory', 'Computer']\n['Branch', 'Twig', 'Adaptation', 'Woody plant']\n['Organism', 'Bird']\n['Atmosphere', 'Cloud', 'Atmospheric phenomenon']\n['Dog breed', 'Dog', 'Carnivore', 'Mammal']\n['Text', 'White', 'Line', 'Font', 'Colorfulness']\n"}], "source": "#for 10 images, no problem to simply loop through them to get the labels. \nfor image in pd_results['original_url']:\n labels = AnnotateHighConfidenceLabelsFromImage(image)\n print(labels)"}, {"cell_type": "markdown", "metadata": {}, "source": "

Expanding to the full corpus of images will require scaling with Spark

"}, {"cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": "#but what happens when I need to run that label extractor against the full dataset of images.\nno_limit_query = \"SELECT original_url, title FROM `bigquery-public-data.open_images.images` WHERE license = 'https://creativecommons.org/licenses/by/2.0/' LIMIT 100\""}, {"cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": "# use Spark to load full dataset into Spark Dataframe. Setup Spark Session with BQ storage connector\nfrom pyspark.sql import SparkSession\nspark = SparkSession.builder.config(\"spark.jars.packages\", \"com.google.cloud.spark:spark-bigquery-with-dependencies_2.\" + str(12) + \":0.18.0\") \\\n .enableHiveSupport() \\\n .getOrCreate()\n\n#Use this function to push the processing of the query back to BQ but still use BQ Storage Connector to\n#pull back data in parallel and directly into a Spark DF that can handle the size. \nfrom google.cloud import bigquery\nfrom pyspark import StorageLevel\n\ndef bq2df(QUERY):\n bq = bigquery.Client()\n query_job = bq.query(QUERY)\n query_job.result()\n\n df = spark.read.format('bigquery') \\\n .option('dataset', query_job.destination.dataset_id) \\\n .load(query_job.destination.table_id) \\\n .persist(StorageLevel.MEMORY_AND_DISK)\n\n return df\n"}, {"cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [{"name": "stdout", "output_type": "stream", "text": "100\nroot\n |-- original_url: string (nullable = true)\n |-- title: string (nullable = true)\n\n"}], "source": "df = bq2df(no_limit_query)\nprint(df.count())\ndf.printSchema()\n"}, {"cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": "#I'm now going to Spark-ify my python function with no code changes.\n\nfrom pyspark.sql.functions import udf\n\n@udf(\"string\")\ndef AnnotateHighConfidenceLabelsFromImage_UDF(image_uri):\n from google.cloud import vision\n client = vision.ImageAnnotatorClient()\n request = {\n 'image': {\n 'source': {'image_uri': image_uri},\n },\n }\n response = client.annotate_image(request)\n\n high_confidence_labels = []\n for la in response.label_annotations:\n if float(la.score * 100) > 90.0:\n high_confidence_labels.append(la.description)\n\n if len(high_confidence_labels) < 1:\n high_confidence_labels.append(\"No labels detected\")\n \n return str(high_confidence_labels)"}, {"cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": "df_results = df.select(\"original_url\", \"title\",\\\n AnnotateHighConfidenceLabelsFromImage_UDF(\"original_url\").alias(\"labels\"))\\\n .cache()"}, {"cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": "#at this point, might make sense to save this table out to my hive metastore to avoid re-processing all the images \n#df_results.write.saveAsTable(\"HighConfidenceLabelsAndImages\")"}, {"cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [{"name": "stdout", "output_type": "stream", "text": "+----------------------------------------------------------------+--------------------------------------+-----------------------------------------------------------------------------------------------------+\n|original_url |title |labels |\n+----------------------------------------------------------------+--------------------------------------+-----------------------------------------------------------------------------------------------------+\n|https://farm4.staticflickr.com/7162/6707198107_1993d73034_o.jpg |Men\u2019s Pique Polo (NA) |['No labels detected'] |\n|https://c8.staticflickr.com/4/3676/11012143656_40a5269d42_o.jpg |Ladybug on green leaf |['No labels detected'] |\n|https://c4.staticflickr.com/9/8157/7599640374_f278fa5bd7_o.jpg |n53_w1150 |['Branch', 'Organism', 'Plant community', 'Monochrome photography', 'Monochrome', 'Adaptation'] |\n|https://c7.staticflickr.com/5/4101/4861005456_71b3b0be00_o.jpg |DSC_4918 |['Arm', 'Finger', 'People', 'Comfort', 'Hand', 'Child'] |\n|https://farm5.staticflickr.com/5443/17832643436_904497178e_o.jpg|Central Accord 2015 |['Electronic device', 'Furniture', 'Technology', 'Table', 'Laptop', 'Computer accessory', 'Computer']|\n|https://c5.staticflickr.com/4/3282/3066052882_853bb737f6_o.jpg |Frilly I saw on the way to RDH at Tiwi|['Branch', 'Twig', 'Adaptation', 'Woody plant'] |\n|https://farm4.staticflickr.com/1152/532400494_d65f8b7970_o.jpg |DSC_0451 |['Organism', 'Bird'] |\n|https://c7.staticflickr.com/8/7203/6945757213_b8293c6df0_o.jpg |Adam's Peak, Sri Lanka |['Atmosphere', 'Cloud', 'Atmospheric phenomenon'] |\n|https://farm2.staticflickr.com/8631/15963608298_e7430c92cf_o.jpg|Danielle and Monty |['Dog breed', 'Dog', 'Carnivore', 'Mammal'] |\n|https://c7.staticflickr.com/4/3847/14961964127_51a808891b_o.jpg |Peter Mayle Books21 |['Text', 'White', 'Line', 'Font', 'Colorfulness'] |\n+----------------------------------------------------------------+--------------------------------------+-----------------------------------------------------------------------------------------------------+\nonly showing top 10 rows\n\n"}], "source": "df_results.show(10, truncate=False)"}, {"cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [{"name": "stdout", "output_type": "stream", "text": "+----------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+\n|original_url |title |labels |\n+----------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+\n|https://farm4.staticflickr.com/1152/532400494_d65f8b7970_o.jpg |DSC_0451 |['Organism', 'Bird'] |\n|https://farm5.staticflickr.com/3711/11060890716_08737a2dd7_o.jpg|Pale-breasted spinetail brasso seco nov2013|['Branch', 'Bird', 'Twig'] |\n|https://c4.staticflickr.com/1/31/48416653_90f005725b_o.jpg |Thousand Oaks as seen from Ladyface Peak |['Landscape', 'Residential area', 'Aerial photography', 'Atmospheric phenomenon', \"Bird's-eye view\", 'Suburb', 'Plain'] |\n|https://c1.staticflickr.com/1/33/66496718_d17cac35c8_o.jpg |Canyon Lands |['Branch', 'Sky', 'Twig', 'Bird'] |\n|https://c7.staticflickr.com/9/8616/16415108690_51ec731c1f_o.jpg |Sarphatipark @ De Pijp @ Amsterdam |['Body of water', 'Water', 'Vertebrate', 'Bird', 'Ducks, geese and swans', 'Pond', 'Waterway', 'Water bird', 'Channel', 'Watercourse']|\n+----------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+\n\n"}], "source": "from pyspark.sql.functions import col\ndf_results.where(col(\"labels\").contains(\"Bird\")).show(truncate=False)"}, {"cell_type": "markdown", "metadata": {}, "source": "Could write back to BQ if I want in the Warehouse or keep in my Hive datamart. \nMany customers use this technique to scale code they don't want to touck"}], "metadata": {"kernelspec": {"display_name": "PySpark", "language": "python", "name": "pyspark"}, "language_info": {"codemirror_mode": {"name": "ipython", "version": 3}, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.6"}}, "nbformat": 4, "nbformat_minor": 4} ================================================ FILE: examples/notebooks/Top words in Shakespeare by work.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Using the Spark BigQuery connector in Jupyter\n", "Use a Python kernel (not PySpark) to allow configuring the SparkSession inside the notebook." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from pyspark.sql import SparkSession\n", "spark = SparkSession.builder \\\n", " .appName('Top Shakepeare words')\\\n", " .config('spark.jars', 'gs://spark-lib/bigquery/spark-bigquery-latest.jar') \\\n", " .getOrCreate()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Read the data in from BigQuery" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "df = spark.read \\\n", " .format('bigquery') \\\n", " .load('bigquery-public-data.samples.shakespeare')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Convert words to lower case and filter out stop words" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "from pyspark.ml.feature import StopWordsRemover\n", "from pyspark.sql import functions as F\n", "\n", "df = df.withColumn('lowered', F.array(F.lower(df.word)))\n", "\n", "remover = StopWordsRemover(inputCol='lowered', outputCol='filtered')\n", "\n", "df = remover.transform(df)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Create `(count, word)` struct and take the max of that in each corpus" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "scrolled": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
corpuswordcount
01kinghenryivhenry252
11kinghenryvithy157
22kinghenryivfalstaff199
32kinghenryvithou187
43kinghenryviking249
5allswellthatendswellparolles165
6antonyandcleopatraantony284
7asyoulikeitrosalind217
8comedyoferrorssyracuse204
9coriolanuscoriolanus207
10cymbelineimogen137
11hamlethamlet407
12juliuscaesarbrutus235
13kinghenryvking217
14kinghenryviiihenry122
15kingjohnking176
16kinglearking243
17kingrichardiithy160
18kingrichardiiiking201
19loverscomplainto10
20loveslabourslostbiron169
21macbethmacbeth267
22measureforemeasureduke210
23merchantofveniceportia130
24merrywivesofwindsormistress310
25midsummersnightsdreamlove102
26muchadoaboutnothingpedro148
27othelloothello313
28periclesprinceoftyrepericles177
29rapeoflucrecethy97
30romeoandjulietthou239
31sonnetsthy240
32tamingoftheshrewpetruchio174
33tempestthou142
34timonofathenstimon246
35titusandronicusandronicus202
36troilusandcressidacressida190
37twelfthnightsir273
38twogentlemenofveronaproteus162
39variouslove37
40venusandadonis'68
41winterstaleleontes133
\n", "
" ], "text/plain": [ " corpus word count\n", "0 1kinghenryiv henry 252\n", "1 1kinghenryvi thy 157\n", "2 2kinghenryiv falstaff 199\n", "3 2kinghenryvi thou 187\n", "4 3kinghenryvi king 249\n", "5 allswellthatendswell parolles 165\n", "6 antonyandcleopatra antony 284\n", "7 asyoulikeit rosalind 217\n", "8 comedyoferrors syracuse 204\n", "9 coriolanus coriolanus 207\n", "10 cymbeline imogen 137\n", "11 hamlet hamlet 407\n", "12 juliuscaesar brutus 235\n", "13 kinghenryv king 217\n", "14 kinghenryviii henry 122\n", "15 kingjohn king 176\n", "16 kinglear king 243\n", "17 kingrichardii thy 160\n", "18 kingrichardiii king 201\n", "19 loverscomplaint o 10\n", "20 loveslabourslost biron 169\n", "21 macbeth macbeth 267\n", "22 measureforemeasure duke 210\n", "23 merchantofvenice portia 130\n", "24 merrywivesofwindsor mistress 310\n", "25 midsummersnightsdream love 102\n", "26 muchadoaboutnothing pedro 148\n", "27 othello othello 313\n", "28 periclesprinceoftyre pericles 177\n", "29 rapeoflucrece thy 97\n", "30 romeoandjuliet thou 239\n", "31 sonnets thy 240\n", "32 tamingoftheshrew petruchio 174\n", "33 tempest thou 142\n", "34 timonofathens timon 246\n", "35 titusandronicus andronicus 202\n", "36 troilusandcressida cressida 190\n", "37 twelfthnight sir 273\n", "38 twogentlemenofverona proteus 162\n", "39 various love 37\n", "40 venusandadonis ' 68\n", "41 winterstale leontes 133" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.select(df.corpus, F.struct(df.word_count, df.filtered.getItem(0).alias('word')).alias('count_word')) \\\n", " .where(F.col('count_word').getItem('word').isNotNull()) \\\n", " .groupby('corpus') \\\n", " .agg({'count_word': 'max'}) \\\n", " .orderBy('corpus') \\\n", " .select(\n", " 'corpus',\n", " F.col('max(count_word)').getItem('word').alias('word'),\n", " F.col('max(count_word)').getItem('word_count').alias('count')) \\\n", " .toPandas()" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.8" } }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: examples/notebooks/Transform_with_Python.ipynb ================================================ {"cells": [{"cell_type": "markdown", "metadata": {}, "source": "\n \n \n

A pythonic approach to BigQuery data manipulation

"}, {"cell_type": "markdown", "metadata": {}, "source": "Problem: BigQuery is the best place to run SQL. Still, I often find myself limited by SQL's functionality. I normally work with a combination of Pandas and SQL but Pandas won't work with the size of BigQuery's tables. \n\nSQL can be verbose and hard to maintain for transformations. For SQL analysis, the focus is really on reporting. I feel that SQL still lacks a lot of what is necessity for me to perform advanced statistics, ML, and timeseries analysis. \n\nI wish there was a way to bring the advanced Pandas capablities I have on my laptop to BigQuery scale tables."}, {"cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": "conda install -c conda-forge koalas"}, {"cell_type": "markdown", "metadata": {}, "source": "

Create a Spark Session with the BigQuery connector loaded

"}, {"cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": "# %load sparkme\nfrom pyspark.sql import SparkSession\nspark = SparkSession.builder.getOrCreate()\nscala_minor_version = str(spark.sparkContext._jvm.scala.util.Properties.versionString().replace(\"version \",\"\").split('.')[1])\nspark = SparkSession.builder.config(\"spark.jars.packages\", \"com.google.cloud.spark:spark-bigquery-with-dependencies_2.\" + scala_minor_version + \":0.18.0\") \\\n .enableHiveSupport() \\\n .getOrCreate()"}, {"cell_type": "markdown", "metadata": {}, "source": ""}, {"cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": "df = spark.read \\\n .format(\"bigquery\") \\\n .load(\"bigquery-public-data.covid19_nyt.us_counties\")"}, {"cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [{"name": "stdout", "output_type": "stream", "text": "+----------+-----------+----------+----------------+---------------+------+\n| date| county|state_name|county_fips_code|confirmed_cases|deaths|\n+----------+-----------+----------+----------------+---------------+------+\n|2020-10-04| Joplin| Missouri| null| 2040| 25|\n|2020-10-04|Kansas City| Missouri| null| 11387| 106|\n|2020-10-05| Joplin| Missouri| null| 2046| 25|\n|2020-10-05|Kansas City| Missouri| null| 11387| 106|\n|2020-10-06| Joplin| Missouri| null| 2059| 25|\n+----------+-----------+----------+----------------+---------------+------+\nonly showing top 5 rows\n\n"}], "source": "df.show(5)"}, {"cell_type": "markdown", "metadata": {}, "source": "

All Spark Dataframe functionality is available in df. But let's use the Pandas API with Kolas. A Spark version of Pandas.

"}, {"cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": "import databricks.koalas as ks\ndfq = df.to_koalas()"}, {"cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [{"data": {"text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
confirmed_casesdeaths
count884817.000000866056.000000
mean1952.15742553.591608
std10106.149522451.836007
min0.0000000.000000
25%36.0000000.000000
50%228.0000004.000000
75%993.00000021.000000
max770915.00000025144.000000
\n
", "text/plain": " confirmed_cases deaths\ncount 884817.000000 866056.000000\nmean 1952.157425 53.591608\nstd 10106.149522 451.836007\nmin 0.000000 0.000000\n25% 36.000000 0.000000\n50% 228.000000 4.000000\n75% 993.000000 21.000000\nmax 770915.000000 25144.000000"}, "execution_count": 8, "metadata": {}, "output_type": "execute_result"}], "source": "dfq.describe()"}, {"cell_type": "markdown", "metadata": {}, "source": "Often (especially for ML+Stats), we want to transpose columns. In SQL, this can be a long chain of \n\nCASE WHEN county = 'Joplin' AND state = 'Missouri' THEN sum(confirmed_cases) AS JOPIN_CONFIRMED_CASES
\nCASE WHEN county = 'Joplin' AND state = 'Missouri' THEN sum(deaths) AS JOPIN_DEATHS\n\nWhich needs to be repeated for every county in the United States -- for this dataset, that would be over 800K rows of SQL\nUsing Kolas, this is done with a one line Transpose(T) function."}, {"cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": "with ks.option_context('compute.max_rows', 1000000): \n transformed = dfq.groupby(['state_name','county']).sum().sort_index().T"}, {"cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [{"data": {"text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
state_nameAlabamaAlaskaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahVermontVirgin IslandsVirginiaWashingtonWest VirginiaWisconsinWyoming
countyAutaugaBaldwinBarbourBibbBlountBullockButlerCalhounChambersCherokeeChiltonChoctawClarkeClayCleburneCoffeeColbertConecuhCoosaCovingtonCrenshawCullmanDaleDallasDeKalbElmoreEscambiaEtowahFayetteFranklinGenevaGreeneHaleHenryHoustonJacksonJeffersonLamarLauderdaleLawrenceLeeLimestoneLowndesMaconMadisonMarengoMarionMarshallMobileMonroeMontgomeryMorganPerryPickensPikeRandolphRussellShelbySt. ClairSumterTalladegaTallapoosaTuscaloosaWalkerWashingtonWilcoxWinstonAleutians East BoroughAleutians West Census AreaAnchorageBethel Census AreaBristol Bay BoroughDenali BoroughDillingham Census AreaFairbanks North Star BoroughHaines BoroughJuneau City and BoroughKenai Peninsula BoroughKetchikan Gateway BoroughKodiak Island BoroughKusilvak Census AreaLake and Peninsula BoroughMatanuska-Susitna BoroughNome Census AreaNorth Slope BoroughNorthwest Arctic BoroughPetersburg BoroughPrince of Wales-Hyder Census AreaSitka City and BoroughSkagway MunicipalitySoutheast Fairbanks Census AreaUnknownValdez-Cordova Census AreaWrangell City and BoroughYukon-Koyukuk Census AreaApacheCochiseCoconinoGilaGrahamGreenleeLa PazMaricopaMohaveNavajoPimaPinalSanta CruzUnknownYavapaiYumaArkansasAshleyBaxterBentonBooneBradleyCalhounCarrollChicotClarkClayCleburneClevelandColumbiaConwayCraigheadCrawfordCrittendenCrossDallasDeshaDrewFaulknerFranklinFultonGarlandGrantGreeneHempsteadHot SpringHowardIndependenceIzardJacksonJeffersonJohnsonLafayetteLawrenceLeeLincolnLittle RiverLoganLonokeMadisonMarionMillerMississippiMonroeMontgomeryNevadaNewtonOuachitaPerryPhillipsPikePoinsettPolkPopePrairiePulaskiRandolphSalineScottSearcySebastianSevierSharpSt. FrancisStoneUnionUnknownVan BurenWashingtonWhiteWoodruffYellAlamedaAlpineAmadorButteCalaverasColusaContra CostaDel NorteEl DoradoFresnoGlennHumboldtImperialInyoKernKingsLakeLassenLos AngelesMaderaMarinMariposaMendocinoMercedModocMonoMontereyNapaNevadaOrangePlacerPlumasRiversideSacramentoSan BenitoSan BernardinoSan DiegoSan FranciscoSan JoaquinSan Luis ObispoSan MateoSanta BarbaraSanta ClaraSanta CruzShastaSierraSiskiyouSolanoSonomaStanislausSutterTehamaTrinityTulareTuolumneUnknownVenturaYoloYubaAdamsAlamosaArapahoeArchuletaBacaBentBoulderBroomfieldChaffeeCheyenneClear CreekConejosCostillaCrowleyCusterDeltaDenverDoloresDouglasEagleEl PasoElbertFremontGarfieldGilpinGrandGunnisonHinsdaleHuerfanoJacksonJeffersonKiowaKit CarsonLa PlataLakeLarimerLas AnimasLincolnLoganMesaMineralMoffatMontezumaMontroseMorganOteroOurayParkPhillipsPitkinProwersPuebloRio BlancoRio GrandeRouttSaguacheSan JuanSan MiguelSedgwickSummitTellerUnknownWashingtonWeldYumaFairfieldHartfordLitchfieldMiddlesexNew HavenNew LondonTollandUnknownWindhamKentNew CastleSussexUnknownDistrict of ColumbiaAlachuaBakerBayBradfordBrevardBrowardCalhounCharlotteCitrusClayCollierColumbiaDeSotoDixieDuvalEscambiaFlaglerFranklinGadsdenGilchristGladesGulfHamiltonHardeeHendryHernandoHighlandsHillsboroughHolmesIndian RiverJacksonJeffersonLafayetteLakeLeeLeonLevyLibertyMadisonManateeMarionMartinMiami-DadeMonroeNassauOkaloosaOkeechobeeOrangeOsceolaPalm BeachPascoPinellasPolkPutnamSanta RosaSarasotaSeminoleSt. JohnsSt. LucieSumterSuwanneeTaylorUnionUnknownVolusiaWakullaWaltonWashingtonApplingAtkinsonBaconBakerBaldwinBanksBarrowBartowBen HillBerrienBibbBleckleyBrantleyBrooksBryanBullochBurkeButtsCalhounCamdenCandlerCarrollCatoosaCharltonChathamChattahoocheeChattoogaCherokeeClarkeClayClaytonClinchCobbCoffeeColquittColumbiaCookCowetaCrawfordCrispDadeDawsonDeKalbDecaturDodgeDoolyDoughertyDouglasEarlyEcholsEffinghamElbertEmanuelEvansFanninFayetteFloydForsythFranklinFultonGilmerGlascockGlynnGordonGradyGreeneGwinnettHabershamHallHancockHaralsonHarrisHartHeardHenryHoustonIrwinJacksonJasperJeff DavisJeffersonJenkinsJohnsonJonesLamarLanierLaurensLeeLibertyLincolnLongLowndesLumpkinMaconMadisonMarionMcDuffieMcIntoshMeriwetherMillerMitchellMonroeMontgomeryMorganMurrayMuscogeeNewtonOconeeOglethorpePauldingPeachPickensPiercePikePolkPulaskiPutnamQuitmanRabunRandolphRichmondRockdaleSchleyScrevenSeminoleSpaldingStephensStewartSumterTalbotTaliaferroTattnallTaylorTelfairTerrellThomasTiftToombsTownsTreutlenTroupTurnerTwiggsUnionUnknownUpsonWalkerWaltonWareWarrenWashingtonWayneWebsterWheelerWhiteWhitfieldWilcoxWilkesWilkinsonWorthUnknownHawaiiHonoluluKalawaoKauaiMauiUnknownAdaAdamsBannockBear LakeBenewahBinghamBlaineBoiseBonnerBonnevilleBoundaryButteCamasCanyonCaribouCassiaClarkClearwaterCusterElmoreFranklinFremontGemGoodingIdahoJeffersonJeromeKootenaiLatahLemhiLewisLincolnMadisonMinidokaNez PerceOneidaOwyheePayettePowerShoshoneTetonTwin FallsUnknownValleyWashingtonAdamsAlexanderBondBooneBrownBureauCalhounCarrollCassChampaignChristianClarkClayClintonColesCookCrawfordCumberlandDe WittDeKalbDouglasDuPageEdgarEdwardsEffinghamFayetteFordFranklinFultonGallatinGreeneGrundyHamiltonHancockHardinHendersonHenryIroquoisJacksonJasperJeffersonJerseyJo DaviessJohnsonKaneKankakeeKendallKnoxLaSalleLakeLawrenceLeeLivingstonLoganMaconMacoupinMadisonMarionMarshallMasonMassacMcDonoughMcHenryMcLeanMenardMercerMonroeMontgomeryMorganMoultrieOglePeoriaPerryPiattPikePopePulaskiPutnamRandolphRichlandRock IslandSalineSangamonSchuylerScottShelbySt. ClairStarkStephensonTazewellUnionUnknownVermilionWabashWarrenWashingtonWayneWhiteWhitesideWillWilliamsonWinnebagoWoodfordAdamsAllenBartholomewBentonBlackfordBooneBrownCarrollCassClarkClayClintonCrawfordDaviessDeKalbDearbornDecaturDelawareDuboisElkhartFayetteFloydFountainFranklinFultonGibsonGrantGreeneHamiltonHancockHarrisonHendricksHenryHowardHuntingtonJacksonJasperJayJeffersonJenningsJohnsonKnoxKosciuskoLaGrangeLaPorteLakeLawrenceMadisonMarionMarshallMartinMiamiMonroeMontgomeryMorganNewtonNobleOhioOrangeOwenParkePerryPikePorterPoseyPulaskiPutnamRandolphRipleyRushScottShelbySpencerSt. JosephStarkeSteubenSullivanSwitzerlandTippecanoeTiptonUnionUnknownVanderburghVermillionVigoWabashWarrenWarrickWashingtonWayneWellsWhiteWhitleyAdairAdamsAllamakeeAppanooseAudubonBentonBlack HawkBooneBremerBuchananBuena VistaButlerCalhounCarrollCassCedarCerro GordoCherokeeChickasawClarkeClayClaytonClintonCrawfordDallasDavisDecaturDelawareDes MoinesDickinsonDubuqueEmmetFayetteFloydFranklinFremontGreeneGrundyGuthrieHamiltonHancockHardinHarrisonHenryHowardHumboldtIdaIowaJacksonJasperJeffersonJohnsonJonesKeokukKossuthLeeLinnLouisaLucasLyonMadisonMahaskaMarionMarshallMillsMitchellMononaMonroeMontgomeryMuscatineO'BrienOsceolaPagePalo AltoPlymouthPocahontasPolkPottawattamiePoweshiekRinggoldSacScottShelbySiouxStoryTamaTaylorUnionUnknownVan BurenWapelloWarrenWashingtonWayneWebsterWinnebagoWinneshiekWoodburyWorthWrightAllenAndersonAtchisonBarberBartonBourbonBrownButlerChaseChautauquaCherokeeCheyenneClarkClayCloudCoffeyComancheCowleyCrawfordDecaturDickinsonDoniphanDouglasEdwardsElkEllisEllsworthFinneyFordFranklinGearyGoveGrahamGrantGrayGreeleyGreenwoodHamiltonHarperHarveyHaskellHodgemanJacksonJeffersonJewellJohnsonKearnyKingmanKiowaLabetteLaneLeavenworthLincolnLinnLoganLyonMarionMarshallMcPhersonMeadeMiamiMitchellMontgomeryMorrisMortonNemahaNeoshoNessNortonOsageOsborneOttawaPawneePhillipsPottawatomiePrattRawlinsRenoRepublicRiceRileyRooksRushRussellSalineScottSedgwickSewardShawneeSheridanShermanSmithStaffordStantonStevensSumnerThomasTregoUnknownWabaunseeWallaceWashingtonWichitaWilsonWoodsonWyandotteAdairAllenAndersonBallardBarrenBathBellBooneBourbonBoydBoyleBrackenBreathittBreckinridgeBullittButlerCaldwellCallowayCampbellCarlisleCarrollCarterCaseyChristianClarkClayClintonCrittendenCumberlandDaviessEdmonsonElliottEstillFayetteFlemingFloydFranklinFultonGallatinGarrardGrantGravesGraysonGreenGreenupHancockHardinHarlanHarrisonHartHendersonHenryHickmanHopkinsJacksonJeffersonJessamineJohnsonKentonKnottKnoxLarueLaurelLawrenceLeeLeslieLetcherLewisLincolnLivingstonLoganLyonMadisonMagoffinMarionMarshallMartinMasonMcCrackenMcCrearyMcLeanMeadeMenifeeMercerMetcalfeMonroeMontgomeryMorganMuhlenbergNelsonNicholasOhioOldhamOwenOwsleyPendletonPerryPikePowellPulaskiRobertsonRockcastleRowanRussellScottShelbySimpsonSpencerTaylorToddTriggTrimbleUnionUnknownWarrenWashingtonWayneWebsterWhitleyWolfeWoodfordAcadiaAllenAscensionAssumptionAvoyellesBeauregardBienvilleBossierCaddoCalcasieuCaldwellCameronCatahoulaClaiborneConcordiaDe SotoEast Baton RougeEast CarrollEast FelicianaEvangelineFranklinGrantIberiaIbervilleJacksonJeffersonJefferson DavisLaSalleLafayetteLafourcheLincolnLivingstonMadisonMorehouseNatchitochesOrleansOuachitaPlaqueminesPointe CoupeeRapidesRed RiverRichlandSabineSt. BernardSt. CharlesSt. HelenaSt. JamesSt. John the BaptistSt. LandrySt. MartinSt. MarySt. TammanyTangipahoaTensasTerrebonneUnionUnknownVermilionVernonWashingtonWebsterWest Baton RougeWest CarrollWest FelicianaWinnAndroscogginAroostookCumberlandFranklinHancockKennebecKnoxLincolnOxfordPenobscotPiscataquisSagadahocSomersetUnknownWaldoWashingtonYorkAlleganyAnne ArundelBaltimoreBaltimore cityCalvertCarolineCarrollCecilCharlesDorchesterFrederickGarrettHarfordHowardKentMontgomeryPrince George'sQueen Anne'sSomersetSt. Mary'sTalbotUnknownWashingtonWicomicoWorcesterBarnstableBerkshireBristolDukesEssexFranklinHampdenHampshireMiddlesexNantucketNorfolkPlymouthSuffolkUnknownWorcesterAlconaAlgerAlleganAlpenaAntrimArenacBaragaBarryBayBenzieBerrienBranchCalhounCassCharlevoixCheboyganChippewaClareClintonCrawfordDeltaDickinsonEatonEmmetGeneseeGladwinGogebicGrand TraverseGratiotHillsdaleHoughtonHuronInghamIoniaIoscoIronIsabellaJacksonKalamazooKalkaskaKentKeweenawLakeLapeerLeelanauLenaweeLivingstonLuceMackinacMacombManisteeMarquetteMasonMecostaMenomineeMidlandMissaukeeMonroeMontcalmMontmorencyMuskegonNewaygoOaklandOceanaOgemawOntonagonOsceolaOscodaOtsegoOttawaPresque IsleRoscommonSaginawSanilacSchoolcraftShiawasseeSt. ClairSt. JosephTuscolaUnknownVan BurenWashtenawWayneWexfordAitkinAnokaBeckerBeltramiBentonBig StoneBlue EarthBrownCarltonCarverCassChippewaChisagoClayClearwaterCookCottonwoodCrow WingDakotaDodgeDouglasFaribaultFillmoreFreebornGoodhueGrantHennepinHoustonHubbardIsantiItascaJacksonKanabecKandiyohiKittsonKoochichingLac qui ParleLakeLake of the WoodsLe SueurLincolnLyonMahnomenMarshallMartinMcLeodMeekerMille LacsMorrisonMowerMurrayNicolletNoblesNormanOlmstedOtter TailPenningtonPinePipestonePolkPopeRamseyRed LakeRedwoodRenvilleRiceRockRoseauScottSherburneSibleySt. LouisStearnsSteeleStevensSwiftToddTraverseUnknownWabashaWadenaWasecaWashingtonWatonwanWilkinWinonaWrightYellow MedicineAdamsAlcornAmiteAttalaBentonBolivarCalhounCarrollChickasawChoctawClaiborneClarkeClayCoahomaCopiahCovingtonDeSotoForrestFranklinGeorgeGreeneGrenadaHancockHarrisonHindsHolmesHumphreysIssaquenaItawambaJacksonJasperJeffersonJefferson DavisJonesKemperLafayetteLamarLauderdaleLawrenceLeakeLeeLefloreLincolnLowndesMadisonMarionMarshallMonroeMontgomeryNeshobaNewtonNoxubeeOktibbehaPanolaPearl RiverPerryPikePontotocPrentissQuitmanRankinScottSharkeySimpsonSmithStoneSunflowerTallahatchieTateTippahTishomingoTunicaUnionUnknownWalthallWarrenWashingtonWayneWebsterWilkinsonWinstonYalobushaYazooAdairAndrewAtchisonAudrainBarryBartonBatesBentonBollingerBooneBuchananButlerCaldwellCallawayCamdenCape GirardeauCarrollCarterCassCedarCharitonChristianClarkClayClintonColeCooperCrawfordDadeDallasDaviessDeKalbDentDouglasDunklinFranklinGasconadeGentryGreeneGrundyHarrisonHenryHickoryHoltHowardHowellIronJacksonJasperJeffersonJohnsonJoplinKansas CityKnoxLacledeLafayetteLawrenceLewisLincolnLinnLivingstonMaconMadisonMariesMarionMcDonaldMercerMillerMississippiMoniteauMonroeMontgomeryMorganNew MadridNewtonNodawayOregonOsageOzarkPemiscotPerryPettisPhelpsPikePlattePolkPulaskiPutnamRallsRandolphRayReynoldsRipleySalineSchuylerScotlandScottShannonShelbySt. CharlesSt. ClairSt. FrancoisSt. LouisSt. Louis citySte. GenevieveStoddardStoneSullivanTaneyTexasUnknownVernonWarrenWashingtonWayneWebsterWorthWrightBeaverheadBig HornBlaineBroadwaterCarbonCarterCascadeChouteauCusterDanielsDawsonDeer LodgeFallonFergusFlatheadGallatinGarfieldGlacierGolden ValleyGraniteHillJeffersonJudith BasinLakeLewis and ClarkLibertyLincolnMadisonMcConeMeagherMineralMissoulaMusselshellParkPetroleumPhillipsPonderaPowder RiverPowellPrairieRavalliRichlandRooseveltRosebudSandersSheridanSilver BowStillwaterSweet GrassTetonTooleTreasureUnknownValleyWheatlandWibauxYellowstoneAdamsAntelopeArthurBannerBlaineBooneBox ButteBoydBrownBuffaloBurtButlerCassCedarChaseCherryCheyenneClayColfaxCumingCusterDakotaDawesDawsonDeuelDixonDodgeDouglasDundyFillmoreFranklinFrontierFurnasGageGardenGarfieldGosperGrantGreeleyHallHamiltonHarlanHayesHitchcockHoltHookerHowardJeffersonJohnsonKearneyKeithKeya PahaKimballKnoxLancasterLincolnLoganLoupMadisonMcPhersonMerrickMorrillNanceNemahaNuckollsOtoePawneePerkinsPhelpsPiercePlattePolkRed WillowRichardsonRockSalineSarpySaundersScotts BluffSewardSheridanShermanSiouxStantonThayerThomasThurstonUnknownValleyWashingtonWayneWebsterWheelerYorkCarson CityChurchillClarkDouglasElkoEsmeraldaEurekaHumboldtLanderLincolnLyonMineralNyePershingStoreyUnknownWashoeWhite PineBelknapCarrollCheshireCoosGraftonHillsboroughMerrimackRockinghamStraffordSullivanUnknownAtlanticBergenBurlingtonCamdenCape MayCumberlandEssexGloucesterHudsonHunterdonMercerMiddlesexMonmouthMorrisOceanPassaicSalemSomersetSussexUnionUnknownWarrenBernalilloCatronChavesCibolaColfaxCurryDe BacaDo\u00f1a AnaEddyGrantGuadalupeHardingHidalgoLeaLincolnLos AlamosLunaMcKinleyMoraOteroQuayRio ArribaRooseveltSan JuanSan MiguelSandovalSanta FeSierraSocorroTaosTorranceUnionUnknownValenciaAlbanyAlleganyBroomeCattaraugusCayugaChautauquaChemungChenangoClintonColumbiaCortlandDelawareDutchessErieEssexFranklinFultonGeneseeGreeneHamiltonHerkimerJeffersonLewisLivingstonMadisonMonroeMontgomeryNassauNew York CityNiagaraOneidaOnondagaOntarioOrangeOrleansOswegoOtsegoPutnamRensselaerRocklandSaratogaSchenectadySchoharieSchuylerSenecaSt. LawrenceSteubenSuffolkSullivanTiogaTompkinsUlsterUnknownWarrenWashingtonWayneWestchesterWyomingYatesAlamanceAlexanderAlleghanyAnsonAsheAveryBeaufortBertieBladenBrunswickBuncombeBurkeCabarrusCaldwellCamdenCarteretCaswellCatawbaChathamCherokeeChowanClayClevelandColumbusCravenCumberlandCurrituckDareDavidsonDavieDuplinDurhamEdgecombeForsythFranklinGastonGatesGrahamGranvilleGreeneGuilfordHalifaxHarnettHaywoodHendersonHertfordHokeHydeIredellJacksonJohnstonJonesLeeLenoirLincolnMaconMadisonMartinMcDowellMecklenburgMitchellMontgomeryMooreNashNew HanoverNorthamptonOnslowOrangePamlicoPasquotankPenderPerquimansPersonPittPolkRandolphRichmondRobesonRockinghamRowanRutherfordSampsonScotlandStanlyStokesSurrySwainTransylvaniaTyrrellUnionVanceWakeWarrenWashingtonWataugaWayneWilkesWilsonYadkinYanceyAdamsBarnesBensonBillingsBottineauBowmanBurkeBurleighCassCavalierDickeyDivideDunnEddyEmmonsFosterGolden ValleyGrand ForksGrantGriggsHettingerKidderLaMoureLoganMcHenryMcIntoshMcKenzieMcLeanMercerMortonMountrailNelsonOliverPembinaPierceRamseyRansomRenvilleRichlandRoletteSargentSheridanSiouxSlopeStarkSteeleStutsmanTownerTraillUnknownWalshWardWellsWilliamsSaipanTinianUnknownAdamsAllenAshlandAshtabulaAthensAuglaizeBelmontBrownButlerCarrollChampaignClarkClermontClintonColumbianaCoshoctonCrawfordCuyahogaDarkeDefianceDelawareErieFairfieldFayetteFranklinFultonGalliaGeaugaGreeneGuernseyHamiltonHancockHardinHarrisonHenryHighlandHockingHolmesHuronJacksonJeffersonKnoxLakeLawrenceLickingLoganLorainLucasMadisonMahoningMarionMedinaMeigsMercerMiamiMonroeMontgomeryMorganMorrowMuskingumNobleOttawaPauldingPerryPickawayPikePortagePreblePutnamRichlandRossSanduskySciotoSenecaShelbyStarkSummitTrumbullTuscarawasUnionUnknownVan WertVintonWarrenWashingtonWayneWilliamsWoodWyandotAdairAlfalfaAtokaBeaverBeckhamBlaineBryanCaddoCanadianCarterCherokeeChoctawCimarronClevelandCoalComancheCottonCraigCreekCusterDelawareDeweyEllisGarfieldGarvinGradyGrantGreerHarmonHarperHaskellHughesJacksonJeffersonJohnstonKayKingfisherKiowaLatimerLe FloreLincolnLoganLoveMajorMarshallMayesMcClainMcCurtainMcIntoshMurrayMuskogeeNobleNowataOkfuskeeOklahomaOkmulgeeOsageOttawaPawneePaynePittsburgPontotocPottawatomiePushmatahaRoger MillsRogersSeminoleSequoyahStephensTexasTillmanTulsaUnknownWagonerWashingtonWashitaWoodsWoodwardBakerBentonClackamasClatsopColumbiaCoosCrookCurryDeschutesDouglasGilliamGrantHarneyHood RiverJacksonJeffersonJosephineKlamathLakeLaneLincolnLinnMalheurMarionMorrowMultnomahPolkShermanTillamookUmatillaUnionUnknownWallowaWascoWashingtonWheelerYamhillAdamsAlleghenyArmstrongBeaverBedfordBerksBlairBradfordBucksButlerCambriaCameronCarbonCentreChesterClarionClearfieldClintonColumbiaCrawfordCumberlandDauphinDelawareElkErieFayetteForestFranklinFultonGreeneHuntingdonIndianaJeffersonJuniataLackawannaLancasterLawrenceLebanonLehighLuzerneLycomingMcKeanMercerMifflinMonroeMontgomeryMontourNorthamptonNorthumberlandPerryPhiladelphiaPikePotterSchuylkillSnyderSomersetSullivanSusquehannaTiogaUnionUnknownVenangoWarrenWashingtonWayneWestmorelandWyomingYorkAdjuntasAguadaAguadillaAguas BuenasAibonitoAnascoAreciboArroyoBarcelonetaBarranquitasBayamonCabo RojoCaguasCamuyCanovanasCarolinaCatanoCayeyCeibaCialesCidraCoamoComerioCorozalCulebraDoradoFajardoFloridaGuanicaGuayamaGuayanillaGuaynaboGuraboHatilloHormiguerosHumacaoIsabelaJayuyaJuana DiazJuncosLajasLaresLas MariasLas PiedrasLoizaLuquilloManatiMaricaoMaunaboMayaguezMocaMorovisNaguaboNaranjitoOrocovisPatillasPenuelasPonceQuebradillasRinconRio GrandeSabana GrandeSalinasSan GermanSan JuanSan LorenzoSan SebastianSanta IsabelToa AltaToa BajaTrujillo AltoUnknownUtuadoVega AltaVega BajaViequesVillalbaYabucoaYaucoBristolKentNewportProvidenceUnknownWashingtonAbbevilleAikenAllendaleAndersonBambergBarnwellBeaufortBerkeleyCalhounCharlestonCherokeeChesterChesterfieldClarendonColletonDarlingtonDillonDorchesterEdgefieldFairfieldFlorenceGeorgetownGreenvilleGreenwoodHamptonHorryJasperKershawLancasterLaurensLeeLexingtonMarionMarlboroMcCormickNewberryOconeeOrangeburgPickensRichlandSaludaSpartanburgSumterUnionUnknownWilliamsburgYorkAuroraBeadleBennettBon HommeBrookingsBrownBruleBuffaloButteCampbellCharles MixClarkClayCodingtonCorsonCusterDavisonDayDeuelDeweyDouglasEdmundsFall RiverFaulkGrantGregoryHaakonHamlinHandHansonHardingHughesHutchinsonHydeJacksonJerauldJonesKingsburyLakeLawrenceLincolnLymanMarshallMcCookMcPhersonMeadeMelletteMinerMinnehahaMoodyOglala LakotaPenningtonPerkinsPotterRobertsSanbornSpinkStanleySullyToddTrippTurnerUnionUnknownWalworthYanktonZiebachAndersonBedfordBentonBledsoeBlountBradleyCampbellCannonCarrollCarterCheathamChesterClaiborneClayCockeCoffeeCrockettCumberlandDavidsonDeKalbDecaturDicksonDyerFayetteFentressFranklinGibsonGilesGraingerGreeneGrundyHamblenHamiltonHancockHardemanHardinHawkinsHaywoodHendersonHenryHickmanHoustonHumphreysJacksonJeffersonJohnsonKnoxLakeLauderdaleLawrenceLewisLincolnLoudonMaconMadisonMarionMarshallMauryMcMinnMcNairyMeigsMonroeMontgomeryMooreMorganObionOvertonPerryPickettPolkPutnamRheaRoaneRobertsonRutherfordScottSequatchieSevierShelbySmithStewartSullivanSumnerTiptonTrousdaleUnicoiUnionUnknownVan BurenWarrenWashingtonWayneWeakleyWhiteWilliamsonWilsonAndersonAndrewsAngelinaAransasArcherArmstrongAtascosaAustinBaileyBanderaBastropBaylorBeeBellBexarBlancoBordenBosqueBowieBrazoriaBrazosBrewsterBriscoeBrooksBrownBurlesonBurnetCaldwellCalhounCallahanCameronCampCarsonCassCastroChambersCherokeeChildressClayCochranCokeColemanCollinCollingsworthColoradoComalComancheConchoCookeCoryellCottleCraneCrockettCrosbyCulbersonDallamDallasDawsonDeWittDeaf SmithDeltaDentonDickensDimmitDonleyDuvalEastlandEctorEdwardsEl PasoEllisErathFallsFanninFayetteFisherFloydFoardFort BendFranklinFreestoneFrioGainesGalvestonGarzaGillespieGlasscockGoliadGonzalesGrayGraysonGreggGrimesGuadalupeHaleHallHamiltonHansfordHardemanHardinHarrisHarrisonHartleyHaskellHaysHemphillHendersonHidalgoHillHockleyHoodHopkinsHoustonHowardHudspethHuntHutchinsonIrionJackJacksonJasperJeff DavisJeffersonJim HoggJim WellsJohnsonJonesKarnesKaufmanKendallKenedyKentKerrKimbleKingKinneyKlebergKnoxLa SalleLamarLambLampasasLavacaLeeLeonLibertyLimestoneLipscombLive OakLlanoLovingLubbockLynnMadisonMarionMartinMasonMatagordaMaverickMcCullochMcLennanMcMullenMedinaMenardMidlandMilamMillsMitchellMontagueMontgomeryMooreMorrisMotleyNacogdochesNavarroNewtonNolanNuecesOchiltreeOldhamOrangePalo PintoPanolaParkerParmerPecosPolkPotterPresidioRainsRandallReaganRealRed RiverReevesRefugioRobertsRobertsonRockwallRunnelsRuskSabineSan AugustineSan JacintoSan PatricioSan SabaSchleicherScurryShackelfordShelbyShermanSmithSomervellStarrStephensSterlingStonewallSuttonSwisherTarrantTaylorTerrellTerryThrockmortonTitusTom GreenTravisTrinityTylerUnknownUpshurUptonUvaldeVal VerdeVan ZandtVictoriaWalkerWallerWardWashingtonWebbWhartonWheelerWichitaWilbargerWillacyWilliamsonWilsonWinklerWiseWoodYoakumYoungZapataZavalaBeaverBox ElderCacheCarbonDaggettDavisDuchesneEmeryGarfieldGrandIronJuabKaneMillardMorganPiuteRichSalt LakeSan JuanSanpeteSevierSummitTooeleUintahUnknownUtahWasatchWashingtonWayneWeberAddisonBenningtonCaledoniaChittendenEssexFranklinGrand IsleLamoilleOrangeOrleansRutlandUnknownWashingtonWindhamWindsorSt. CroixSt. JohnSt. ThomasUnknownAccomackAlbemarleAlexandria cityAlleghanyAmeliaAmherstAppomattoxArlingtonAugustaBathBedfordBlandBotetourtBristol cityBrunswickBuchananBuckinghamBuena Vista cityCampbellCarolineCarrollCharles CityCharlotteCharlottesville cityChesapeake cityChesterfieldClarkeColonial Heights cityCovington cityCraigCulpeperCumberlandDanville cityDickensonDinwiddieEmporia cityEssexFairfaxFairfax cityFalls Church cityFauquierFloydFluvannaFranklinFranklin cityFrederickFredericksburg cityGalax cityGilesGloucesterGoochlandGraysonGreeneGreensvilleHalifaxHampton cityHanoverHarrisonburg cityHenricoHenryHighlandHopewell cityIsle of WightJames CityKing GeorgeKing WilliamKing and QueenLancasterLeeLexington cityLoudounLouisaLunenburgLynchburg cityMadisonManassas Park cityManassas cityMartinsville cityMathewsMecklenburgMiddlesexMontgomeryNelsonNew KentNewport News cityNorfolk cityNorthamptonNorthumberlandNorton cityNottowayOrangePagePatrickPetersburg cityPittsylvaniaPoquoson cityPortsmouth cityPowhatanPrince EdwardPrince GeorgePrince WilliamPulaskiRadford cityRappahannockRichmondRichmond cityRoanokeRoanoke cityRockbridgeRockinghamRussellSalem cityScottShenandoahSmythSouthamptonSpotsylvaniaStaffordStaunton citySuffolk citySurrySussexTazewellUnknownVirginia Beach cityWarrenWashingtonWaynesboro cityWestmorelandWilliamsburg cityWinchester cityWiseWytheYorkAdamsAsotinBentonChelanClallamClarkColumbiaCowlitzDouglasFerryFranklinGarfieldGrantGrays HarborIslandJeffersonKingKitsapKittitasKlickitatLewisLincolnMasonOkanoganPacificPend OreillePierceSan JuanSkagitSkamaniaSnohomishSpokaneStevensThurstonUnknownWahkiakumWalla WallaWhatcomWhitmanYakimaBarbourBerkeleyBooneBraxtonBrookeCabellCalhounClayDoddridgeFayetteGilmerGrantGreenbrierHampshireHancockHardyHarrisonJacksonJeffersonKanawhaLewisLincolnLoganMarionMarshallMasonMcDowellMercerMineralMingoMonongaliaMonroeMorganNicholasOhioPendletonPleasantsPocahontasPrestonPutnamRaleighRandolphRitchieRoaneSummersTaylorTuckerTylerUnknownUpshurWayneWebsterWetzelWirtWoodWyomingAdamsAshlandBarronBayfieldBrownBuffaloBurnettCalumetChippewaClarkColumbiaCrawfordDaneDodgeDoorDouglasDunnEau ClaireFlorenceFond du LacForestGrantGreenGreen LakeIowaIronJacksonJeffersonJuneauKenoshaKewauneeLa CrosseLafayetteLangladeLincolnManitowocMarathonMarinetteMarquetteMenomineeMilwaukeeMonroeOcontoOneidaOutagamieOzaukeePepinPiercePolkPortagePriceRacineRichlandRockRuskSaukSawyerShawanoSheboyganSt. CroixTaylorTrempealeauUnknownVernonVilasWalworthWashburnWashingtonWaukeshaWaupacaWausharaWinnebagoWoodAlbanyBig HornCampbellCarbonConverseCrookFremontGoshenHot SpringsJohnsonLaramieLincolnNatronaNiobraraParkPlatteSheridanSubletteSweetwaterTetonUintaUnknownWashakieWeston
confirmed_cases370662.01127507.0174840.0148219.0349468.0119697.0201832.0740887.0266821.0120792.0291187.073785.0223181.0108488.081456.0305190.0382578.0101927.041572.0283436.0100997.0494812.0293052.0350520.0592516.0563060.0290139.0774935.0101831.0378225.0135981.069527.0142583.0109359.0619518.0379999.04241109.082672.0450940.0146599.01062969.0502126.0140960.0102042.01696898.0171541.0193639.0877630.02778755.0118429.01836756.0804949.0104120.0152000.0229100.0137271.0334536.01280177.0512115.099323.0440143.0267773.01664904.0500720.0119259.0110796.0165170.02875.017883.01448355.0102289.013174.03828.09438.0335620.02224.086134.0225097.020323.033528.032264.0943.0303951.019998.041807.031903.02869.05825.017570.0738.021088.023533.029381.03181.018308.0834942.0478249.0994627.0328861.0219039.022228.0126418.030144245.0885235.01324578.05444110.02317603.0624614.013.0672192.02730124.099987.099075.0115503.01510270.0166872.067265.011947.0160475.0171422.089904.084409.088145.041703.0113149.072955.0730103.0324006.0429641.098229.032820.069245.088039.0555777.076393.049114.0426518.065383.0273055.093727.0387859.0100883.0224445.082694.0147287.0644732.0176017.027181.0120924.0207650.0419650.071541.0101164.0281149.083727.033609.0221173.0365261.032879.030998.052758.045995.072802.026573.0113007.045707.0168165.078041.0456667.037709.02027440.0104690.0513355.034664.032470.0789668.0255985.068184.0330667.058187.0195244.0358737.043635.01985759.0268318.018864.0257123.04319856.02827.085707.0516050.065984.0100912.03292835.041567.0294763.05401142.0115881.0115677.02486469.039360.06042885.01521392.0112498.0226223.059976957.0839936.01243628.017618.0187074.01649808.09011.054922.01997925.0384599.0147546.011731923.0838843.018471.012947120.04674911.0261093.012451039.010827207.02289679.03823964.0768331.02089742.01801476.04664377.0537760.0407494.01541.058878.01377978.01530230.03207195.0391378.0164470.010621.03125147.0102183.07.02713987.0607446.0250430.02987086.074118.02994287.021869.09609.024789.01110606.0209279.083452.05049.017548.016036.09894.077278.07128.070023.04019537.01740.0986875.0338855.02548795.057250.0196199.0257918.07517.033703.078072.01153.012004.02251.02027485.02221.029535.0116163.030104.0924342.019544.024647.0274126.0418682.04404.023636.063488.0125956.0226881.061425.010051.022660.014693.065095.049097.0646704.011557.029028.061898.030329.01829.026767.07719.0158089.059737.06823.023610.01547929.035860.05920424.04264912.0600463.0504691.04415214.0709833.0398645.086781.0313268.0766563.02637082.01713448.037284.03644621.01541591.0256360.01127568.0185658.01900201.015184060.0118466.0661325.0552253.01012841.02578370.0673381.0325820.0135198.06021293.02339366.0346073.0104921.0480190.0100444.099486.0147042.0159846.0254119.0413531.0626903.0450851.08217627.0149634.0654832.0511538.0103870.0182202.01449706.04205959.01854478.0190288.0101694.0182737.02336760.01739926.0958531.033036396.0404045.0403631.01072588.0279833.07989282.02478503.09329977.01932695.04549325.03809838.0398453.01015713.01722982.01823333.01109266.01518137.0462427.0473833.0222786.0153907.0298430.02166172.0205495.0427588.0201559.0197080.088156.0119374.019339.0380511.0102217.0456504.0664035.0146494.096775.01092627.089879.093754.0104963.0203640.0488052.0164828.0157599.056707.0237126.080021.0683872.0257353.0113221.01529891.0274008.0146289.01326975.0955760.024688.01493989.072119.04129249.0422102.0414727.0802019.0117971.0644912.035798.0140768.062056.0155760.03959866.0224587.0118964.081212.0737932.0778380.0113959.052489.0270963.0139483.0183614.074367.0127354.0408817.0656120.0865091.0155600.05782192.0178806.010234.0631255.0415333.0147015.0102432.05663706.0355502.01914707.084044.0132430.0161563.0107551.048328.01150536.0657637.059714.0424153.060394.0134038.0141284.072480.078698.0105930.090541.060211.0335684.0171367.0206053.042688.045491.0860392.0168061.054226.0145285.040006.0122993.052802.0115814.053624.0180717.0145096.055777.0102255.0208575.01141744.0542748.0175445.075402.0636032.0137833.0136663.0154406.094217.0298444.058192.0137804.09682.075976.073439.01376105.0389112.022992.070299.067839.0318629.0209739.088847.0223565.035726.04573.0151791.044540.086160.082232.0304053.0372076.0236365.067023.048465.0596588.072125.036221.0131900.0557231.0207983.0316976.0419781.0351196.028547.0142521.0212059.09976.053107.0163969.01002619.059793.057591.065048.0127181.0869347.0164214.01842606.022.015271.0107138.0202.03020647.011231.0396378.015520.031014.0251072.0203479.016399.0100177.0717787.029320.011267.05064.01778085.037389.0215304.05422.037385.014323.095785.056922.063736.088522.091135.060087.0146739.0200387.0776898.0143270.034816.016039.034304.0338663.0183280.0182684.012456.075039.0179449.049849.052348.050675.0667360.01219.026460.083273.0394127.023955.091338.0383205.024368.0179206.019208.083879.0104809.01085820.0158846.066176.065080.0315141.0329761.039394758.099258.057196.049878.0494327.0117070.05109381.061645.020478.0234472.0140948.059343.0181017.0110788.020217.066684.0236260.030205.075597.011890.024029.0217460.0145818.0298069.059687.0182781.0112214.092765.061581.03717903.0855140.0643440.0245327.0530269.04610889.086800.0160532.0167684.0143957.0544273.0182810.01439638.0203339.032648.058002.044261.0138736.01451732.0776125.041292.061147.0196554.0113644.0198676.076807.0265010.0888866.0106589.059293.073396.09085.045839.018455.0248869.065036.0856322.0100015.0857654.025010.020042.0115258.01708334.021251.0218421.0571294.0137058.0310908.0324807.052130.0107429.064632.080241.056322.0315596.04166034.0342266.01924930.0149572.0137648.01937223.0376952.037746.051795.0302560.038518.083661.0533200.0598636.0109047.0206725.034063.0167868.0173121.0235033.0158600.0532608.0287876.01902484.0163973.0368977.073669.091455.085543.0176759.0361702.0129720.01485922.0316374.0173288.0810939.0263657.0411082.0117587.0267306.0146204.087725.0109967.0107714.0800904.0168926.0445211.0178965.0493823.03159001.0197429.0566375.05908511.0320569.038155.0164880.0566681.0172128.0254053.060210.0285013.024981.087004.064878.058627.085242.053252.0795317.0119304.046158.0156679.0113085.0135597.069464.0124744.0331254.083143.01828774.095108.0146550.098121.027475.0858432.064078.031858.08.01032299.058351.0563352.0140974.023998.0348803.083609.0365054.0114472.0154936.0126615.034644.014696.085186.058137.026226.0131369.01225502.0136927.0158389.096243.0472519.084979.078051.0179956.066434.093149.0307790.078596.069280.062628.0107332.090825.0293841.0250074.0725589.040896.026645.0121303.0245180.0144327.0873551.076623.084187.090895.078115.032224.041084.069513.072806.0106396.073914.099965.096534.0174695.049323.065615.041467.078979.0119844.0232216.059003.01056954.0157897.045359.090271.0181436.01280548.0127044.035836.090408.066492.0120086.0185265.0458273.081560.063159.044201.045099.040303.0331506.0115156.049233.085630.056980.0280350.052412.03858027.0618849.093050.019554.073070.0981421.076044.0383032.0701606.0199996.045434.059831.034712.032865.0319130.0270463.0147833.025213.0343685.080363.089924.01365192.032389.0150917.028841.031088.083229.013322.0140885.052935.054469.0288836.017991.07267.0111920.017055.015734.030243.043578.036159.06179.0131999.0243077.014750.061904.040770.0480898.014654.04026.0217586.051085.0611203.0687139.0107111.0105835.022987.012491.070915.037558.06001.021135.015289.028223.0144775.027575.010216.072256.063134.08506.02771261.034271.029360.010170.087814.06766.0522439.07328.027685.016032.0287564.038002.036607.0119498.030725.0100442.017803.0117108.017187.011541.073307.059080.022222.075683.041466.06947.022438.067065.036395.069216.037271.018798.0406388.026229.035695.0361447.027834.019043.039329.0231549.038291.02552711.0412273.0765594.023126.032766.09673.016484.014809.039409.069905.055596.017141.00.026629.09568.018959.09245.027020.06851.01542143.0102640.090830.051207.015821.0193841.027025.0126837.0495851.056034.0155037.098554.015834.030014.040978.0267332.092636.051835.0163475.0286368.019955.044025.069224.067250.0318719.095708.096164.044602.025130.028765.0387885.044080.042551.040744.01853589.034300.094671.0153719.033139.029563.055389.067208.0197867.0101530.056977.0122289.027811.0385900.099822.051872.075651.0211485.053191.018057.0202045.077518.04121871.0176963.062980.0604959.050675.0125817.052744.0240370.033242.049950.024826.050966.051155.070117.027214.0142273.020693.0389366.038088.089838.091968.035493.044032.0251274.054320.034648.071323.013924.068949.037023.062879.087386.027081.0208647.0179252.015710.0125243.0261759.023692.016967.032559.0100273.0165315.037748.0218438.06370.053200.069801.075362.0183987.0263450.076124.062281.0102804.044771.041518.019539.070552.0951.0945989.050387.063737.054042.0141653.015354.079140.0591296.0303897.0806773.0162010.0290169.0196162.0113903.0758771.01912420.01527394.074877.042089.089606.099477.0116060.0195748.03066400.0121419.0281367.0250805.0249298.0104873.0567250.0320801.0140010.04009167.0248333.099230.01760552.0736132.0289577.0798387.0162281.0171549.0253667.03007887.01369346.0163223.0207383.0881679.072397.0170244.0179155.0305519.0405263.076373.0174479.0372847.0668107.0419810.0369217.01507975.0944784.029078.0716821.0206590.0250818.0367747.0197219.0346003.0265645.0188899.079212.0129457.0131812.0196745.018940.0611432.024716.023800.092330.019532.016469.043716.093508.04244.020799.038529.0928.028792.014412.0302518.0258285.02368148.04056706.03537899.0220672.0141433.0485909.0271682.0637000.0130775.01017254.056244.0728251.01172698.073822.05336053.06830963.0145869.094596.0302840.0112545.0400.0487938.0475241.0207761.0516916.0233022.02987245.027782.05645084.0123002.02447214.0358802.07884235.034418.02957339.02714013.06551555.0832289.04106385.017740.021280.0339036.064934.035604.034069.030804.0165438.0384320.032794.0663217.0409691.0541848.0199644.051226.040983.098596.062845.0249977.038592.0189547.0119926.0280051.076796.01600902.059600.066673.0169129.0181451.0152595.0132142.080566.0907978.0266536.073323.056590.0215047.0885923.0913802.032139.03289396.04638.016186.0311590.036073.0433179.0519184.061769.024671.04363582.035097.0262050.056489.096237.0114422.0242036.025879.0510602.0168108.012500.0777058.0144148.05762554.0140881.042879.020166.044836.015790.079216.01195053.022148.049777.0909530.071464.013963.0192335.0430575.0254457.0171947.0281458.0258623.01223618.09444432.052946.052393.02002667.0148529.0173561.0240849.026941.0405543.0101491.0140369.0427279.0100015.080829.0237182.0460584.032858.05069.080864.0259810.02130239.079518.0183786.052375.058351.0153990.0163827.023400.07294457.057191.076901.0142456.0154127.047918.049486.0382977.015380.035397.028937.029077.08276.0134105.032093.0206662.022886.035632.0118287.0170571.098133.0107944.0161922.0328838.055870.0153260.0512504.027161.0709787.0226952.051862.0126638.066970.0181953.040013.02994212.017177.068245.066849.0414286.063897.081243.0768003.0464515.062840.0675443.01352426.0177735.038069.047376.0183470.012078.057295.083396.056877.0134741.01254903.0107846.032173.0242819.0640900.054631.0194474.0169941.074280.0164083.055379.0337889.0109417.089764.0150505.043060.095606.0124188.0126745.0212010.0254999.0179688.01245113.0536127.044616.0159401.081279.0215066.0146743.0877881.01458014.0223532.078214.015852.0179794.0775230.0126247.051286.074832.0534493.070230.0399766.0379137.0482953.097504.0225025.0603735.0290854.0255350.0335091.0706992.0174273.0249088.0270626.099687.0357912.0165699.0115289.0344845.0296063.0208184.083019.0247003.0260977.0172742.069094.0734394.0271162.045890.0209384.0112314.086718.0271186.0136146.0217497.0154422.0135105.088998.0216106.02144.0116599.0276051.0442052.0192524.068917.062274.0166096.096863.0231271.0110121.073157.016560.0137526.0134787.057641.045509.077423.073500.01017686.0651651.0194134.032222.0228651.0235587.0505759.041064.025669.0388039.036582.018398.0384663.022853.0490735.079281.0503991.0104845.0104005.030562.052486.030704.048097.041231.043656.0173575.0453609.042159.040800.01469075.044169.036978.083196.031094.022001.043616.0157072.020349.01790202.0521168.01128954.0251311.0320617.02582379.011858.0171438.0141832.0168440.035282.0227839.028001.077921.051538.075868.029369.0161717.0237578.07736.0134317.083725.0105819.030795.029786.096546.0128392.0323595.0175801.033855.073480.026888.0116857.0148314.0304324.0144928.076727.0174732.0171654.0167328.011586.040357.098310.062057.020770.045024.0184354.010523.014454.0248570.031769.018954.02112403.025011.0476023.05813393.01650669.081535.0149578.0111091.059107.0285754.085378.0425.058731.0137947.0117689.046076.0164582.06670.075785.045876.0191355.038280.014965.046633.07858.0363653.018917.055599.07231.047338.056425.014422.043918.0519796.0603724.05224.0104626.02443.010415.0102292.037126.03996.094418.0216080.06106.059415.035813.08415.08798.05297.0370568.016178.049218.0528.028645.023513.06720.037952.06181.0106353.049083.0103446.096529.020446.017817.0146583.033130.017903.016136.050971.02591.00.043674.08364.06483.0971916.0178820.027068.0998.01230.0845.025719.043304.010216.012316.0318765.032225.049824.0107029.031489.020324.014687.035541.033870.0203622.052030.042083.0551828.037405.0299716.03091.034770.0327405.04391658.05064.024980.013887.07641.020551.0107656.05801.06921.011455.01133.010189.0620521.052312.010005.02877.08004.040288.03515.032914.026530.025324.042643.028699.01797.015359.042524.01678764.0179349.03042.01875.0291639.01648.037946.028323.020129.030526.015828.060380.07614.011934.046736.034878.0331624.026385.045003.026230.07724.0199509.01115351.0119432.0243908.074305.021870.09941.02129.018838.018653.02581.064598.024437.015165.0100125.057682.016588.01106.082013.0226387.066102.014648193.098751.0265009.0873.02190.045959.023773.012584.0126352.08215.0142050.013232.04071.01804.02579136.022080.076099.044377.059160.023602.060382.01306428.0236338.0683873.0185594.022777.026075.01122202.06329113.01991401.02782020.0258949.0908988.06098871.01207606.05893005.0390694.02349382.05464413.03332046.02327723.03560974.05339371.0269765.01600675.0438099.05092371.0225922.0419716.02461507.03168.0403282.0210150.021994.0277584.03031.01204916.0259299.044398.020864.0558.023158.0417411.066502.013343.0159982.01098886.03923.0316580.021579.0127897.091228.0894160.039529.0510624.0423864.026106.053949.064096.037876.017086.0592.0267550.0879845.082354.0572496.0115333.0104470.0174951.0258352.082852.059226.0162280.095740.046000.01374513.03259679.038836.029891.091366.0127639.0103711.05078.0100472.070564.034078.086115.0150384.01974124.068337.012715638.066041397.0544541.0719675.01367972.0164358.03323862.098122.0163178.076498.0467528.0265974.04244950.0316121.0384223.029118.025416.039291.0114388.0194106.012677187.0424491.0111652.0129648.0614296.00.0100478.080910.0125233.010508851.062078.028012.0874074.0159513.049447.0121094.078294.088969.0194838.0116409.0184799.0378531.0690256.0518345.0890999.0423108.023425.0181895.094568.0791808.0369938.0113514.071156.030095.0495982.0322638.0364620.01163807.039499.071358.0662077.0146984.0522181.01683211.0298693.01698678.0266476.01208695.027187.030126.0372359.0139335.02024561.0242263.0492634.0138884.0447701.0134556.0255924.023932.0685155.0162119.01013147.033513.0367683.0252858.0383268.0132072.043200.0104515.0228512.06172191.048673.0199234.0378124.0514395.0859585.0105150.0556733.0519910.045871.0146815.0225243.040040.0110436.0951866.062343.0696521.0224928.0958209.0315894.0762997.0301795.0480324.0221931.0381695.0126139.0335026.044706.066043.021210.01031621.0242245.03828052.086948.042308.0193092.0804474.0326106.0506253.0189520.056260.012007.075912.076320.03785.039872.017378.013877.01023901.01624120.025233.041426.08738.028409.028771.032281.033193.014542.0695449.011287.019135.018485.016435.029465.014667.033706.022436.076236.082887.065571.0347154.089578.026761.010165.043523.027160.089955.034217.017893.092547.0100297.023896.06513.043915.02324.0332650.010187.0190882.015370.055853.03878.0103895.0529290.024309.0274462.012736.0264.02491.064549.0488820.0115273.0245513.0201897.0215807.0227498.0107721.01673721.056526.0100509.0568375.0611028.0116265.0513214.091773.0129854.04836405.0253614.0132864.0654255.0273267.0613898.093945.06598315.0129135.075712.0248398.0522815.091848.03703616.0244113.098240.025668.099724.0104656.069864.0142951.0180984.0100771.0146712.0125553.0658874.0196859.0609763.0122279.0806894.01924831.0204627.0994804.0870144.0509699.044712.0301649.0468329.042537.02232498.027264.0100907.0236404.046100.0144033.058679.091730.0729715.071721.0411593.0151046.0208428.0366609.0265554.0185750.0200920.0169047.0189893.01058107.01660781.0648239.0366409.0188431.01304.079340.025024.0926502.0136577.0346720.0106759.0522006.079467.0141778.033466.075969.020229.0120632.037087.0261808.0202397.0669260.0163006.0238957.080205.06547.01397163.025117.0464481.021518.094765.0279836.0180036.0208193.019630.012374.0374760.0135838.0264574.018449.033558.012474.016233.060798.062037.0187501.019481.048560.0175414.089707.030704.034246.0246651.0129409.0144737.053304.038291.063383.0163990.0240485.0276924.085729.057122.0415997.049474.042818.079109.04282892.0193253.0222192.0192320.066267.0450452.0200491.0161602.0348914.043039.014266.0435198.0123821.0187296.0150184.0354513.032031.03806467.07293.0332957.0256029.034940.041453.0168459.026466.086871.0670903.042008.051007.046691.023098.013108.0247890.082358.02156.08082.07143.057708.0347096.0111883.059930.097487.011622.0405409.0101401.0161332.0291386.01124803.090671.01890125.0136905.03400.015521.0582507.0102860.01.07635.064766.01182490.0429.0188454.0247631.03316642.0164127.0523091.0129999.01992179.0342631.0146213.02489286.0434181.0359492.04163.0161212.0586190.01723860.082052.0152621.079325.0213313.0178947.0596240.01029699.02983549.049412.0565334.0277550.09237.0546448.027074.072058.0179573.0229506.070755.073706.0737969.02151974.0213612.0652735.01693615.01323855.0249594.050861.0277557.0142324.0544525.03300740.062937.01353479.0287114.079366.09965399.0161357.021021.0452752.098576.0164987.06092.082442.075547.0153349.018.083521.036295.0453840.080267.0933726.039866.01336351.032468.069541.094230.059742.036090.053058.0174161.031462.048131.094425.0723316.075817.0349813.066547.0139931.0573583.088803.085144.028278.055547.072431.062018.048397.0123720.03783.0160068.0101064.058786.024035.062486.039005.0348799.0117191.065683.033724.0109698.065385.047822.074570.086935.032055.069878.019707.093665.058643.047610.0110632.013761.025620.0160796.080711.098584.051944.0122518.067742.034382.029024.0195481.043743.035302.0124224.037916.086041.050347.01471552.0100245.0112450.040590.0264449.0283619.0224126.0375911.043143.0139539.0186535.017362.043405.064653.086823.0139932.0633016.0159222.05190154.0949116.0285581.0119251.0753784.064251.0938027.0111718.0131032.01038849.01028483.084952.02940239.0243090.0205582.0243596.0221273.0210328.0411981.0212967.0807834.0139958.0155554.0971705.0384711.03198685.0421998.0117342.02130846.0148755.0416988.0437676.0340610.0143430.01520020.0178696.0187616.042378.0262609.0375819.0575268.0739121.02804533.0125754.01528887.0630458.0126872.00.0253328.01194346.029971.0237493.024523.096211.0208733.0337731.044626.039822.052649.08501.072602.019470.0127275.0231321.031684.047501.0168388.030424.026573.069989.025106.022470.030406.025341.049775.033469.012296.036480.020539.018780.05485.0133075.042309.08425.016414.024441.04507.031398.068434.0154876.0475451.043636.014120.043791.011191.0149344.014009.016051.02168267.035348.0132720.0750383.014510.018840.063000.019213.044926.017460.06734.073599.040984.066867.0122055.058.039921.0149429.018037.0323098.0343815.079519.0214519.0613117.0659436.0156591.080123.0188416.0283484.0201174.0116054.0101440.056549.0185850.0307578.0125676.0285075.06440443.0136687.0101496.0313650.0335933.0272199.0123519.0220572.0354989.0162465.0105333.0318261.082025.0431193.02218647.022508.0300429.0208200.0215779.0193706.0225127.0152296.0133074.057353.072931.073243.0259176.0152871.02226977.0205629.0222058.0282114.068701.0174286.0285101.0242570.0600422.0126102.0186318.0611316.0287959.0166547.057438.0244757.0768898.041849.080819.0275811.0164160.050329.036390.083794.0722722.0212125.0244939.0512667.02223322.093332.062456.0619694.06659977.0162954.055850.0641909.01211218.0443311.0404768.085701.081364.0120859.035262.0263128.0626766.0228470.0237965.0188941.01317541.0883011.0528963.0110844.0505390.057793.026118.05293.0202749.088176.057420.033902.0359807.07711.0287472.01136305.011049348.027684.0594.062618.0321397.02091428.01410079.061546.04780.052555.0190543.079937.0169644.0280614.0138383.030865.03800623.071081.012174.087779.061679.0268976.0277064.060261.030240.015103.020103.019109.03243259.07734.090950.0644292.062554.018616.0113784.0322933.07557.026735.036646.022299.017714.055868.017917241.0114433.0169770.0235311.07270.02902371.08385.047050.017883.075824.044422.01087277.012036.07810026.0937832.0189083.083790.0132972.095909.016564.029685.03347.03245185.033342.074003.0164542.089155.02267474.022946.074243.03858.026545.0185265.0114966.0479821.0578869.0216440.0599327.0447712.09786.032953.034177.011314.0266482.025800069.0218488.028236.015834.01209029.023574.0264864.05670121.0142700.0121898.0218402.0112280.087631.0202617.020924.0347615.069898.03358.028512.0106479.094581.05257.01475689.025343.0257639.0694347.0196945.0142441.0668882.076587.01635.02581.0133035.09120.0189.09915.0161365.016001.066340.0294003.0103268.049531.0177857.052430.056449.0376713.0104872.012733.066117.035546.045.03121266.034003.0128990.029444.025475.018785.0193246.0658333.032224.01669658.03902.0233161.010344.0882109.0101050.014408.030716.062969.02273958.0285184.038819.03063.0310123.0332714.031531.072109.03522706.056203.06215.0394590.0121206.092814.0484998.0100633.093756.0209345.01474937.033310.029027.0994888.022603.019721.039125.069937.051046.02951.068871.0383767.052411.0179995.020391.050179.042483.0262866.025466.013678.0168433.07641.0110993.013722.01071992.035350.0640963.033169.03674.03513.023368.034538.011699110.0815828.02135.087794.02725.0312110.0924749.05726023.036247.047667.00.093959.09579.0150545.0426197.0174411.0746122.0759643.0164719.041209.0144319.02532189.0239021.020865.0646777.065259.0197585.01880765.0161105.032166.0209354.0123270.056753.090633.066614.082165.016417.0204077.0809525.058081.0500.01592938.044049.025523.019999.026076.0206797.044758.020473.051659.043513.04149.04251.08521328.0164025.0102981.068414.0284576.0286155.061944.027275.04826166.0240056.0984847.03419.01257629.027348.033126.013374.0241469.03824.041190.04692.017799.015179.013143.034031.02043.047994.037221.028622.085623.011404.0118864.0419.0275638.0266059.0868987.033666.028694.092469.048466.0962686.0154212.05460.0198473.019628.084747.050979.067475.044981.0166403.027498.0120397.079329.0119003.019007.030591.0225846.0867810.01317478.025877.060776.014382.09208.0305664.022979.0185817.029378.084463.052432.034131.04918840.031079.018255.0211799.038897.072494.0140373.072137.0259732.0111000.090755.027509.059737.061805.064294.048745.0146999.083907.0372210.0294127.0491798.01219485.0225455.02473.087578.0143912.0179763.055109.035182.014734.026737.085167.033422.01539770.071420.024015.0306493.025421.0132413.0422883.082117.017641.0144524.021107.0386653.023417.048379.0542771.0929844.072607.033505.08993.069186.077763.099596.056696.0152667.0205673.019140.0472117.056649.0121492.0170895.02814968.068452.0123468.013341.088029.0980160.0281048.0432119.031344.0333773.081452.085827.068772.0210653.0108379.0129166.0457127.0465553.082476.0388170.021407.096811.0101889.087.01421057.0116029.0172164.073814.062544.039450.0133658.0117419.069740.0117750.0160532.051349.01098908.0436779.052081.0918994.04561.0165015.0260112.08575.0948472.04423.0608096.0113604.091307.020386.05766070.0287863.0127934.039505.0132875.014401.094899.0192817.026204.024065.02231739.08445.0284205.014162.02131727.01797172.060216.0333999.09352.02841.0236519.0323420.0232149.02621530.034916.0348630.062635.011001.057181.0274383.06850.012856.010873.0121344.017305.041573.055247.040330.070712.033114.0137681.083481.0145201.0596202.022257.043609.0120181.091890.096900.046671.043854.0133125.096861.094648.0397155.037463.028591.033538.0137606.014817.012215.019230.066453.0170124.0149303.081419.012525.017189.021157.035469.013327.012971.02.042977.0110930.05822.034268.09262.0209760.056347.090479.054308.0259152.051950.02420279.059112.061579.0369476.0343095.0183887.0290859.087046.02620891.0730828.0138678.0176843.0214030.0619986.028457.0747209.068996.0317064.0157303.0116358.0100807.039277.0119920.0487228.0150961.01106455.0153170.0742020.095657.0123611.0145478.0450472.0801017.0281641.094182.043592.08041732.0209761.0293602.0185377.01301363.0468499.035655.0206737.0156924.0418135.058253.01609270.070136.0922796.058013.0317940.073100.0317723.0757605.0383747.097376.0204844.0278999.090640.097950.0694675.054702.0852759.02489173.0364916.0145641.01252300.0345113.0223981.039923.0213744.062716.050224.022033.0288212.049115.013325.026067.0396680.058949.0346156.06775.0110820.023255.0141098.034359.0151156.0158919.0105421.037.041244.027239.0
deaths5683.012446.02035.02687.03855.03163.08091.010868.09840.02815.04775.02902.02961.02329.01371.02111.05400.02246.0651.05106.04377.04765.07363.05045.04877.09726.04629.09532.01855.05474.01110.02980.05737.01088.05356.02831.073355.0838.06639.03694.013105.04791.05735.03649.015955.04058.06068.08820.060927.01603.037490.06275.0992.03010.02171.03436.0481.011738.06712.04038.06191.019340.023215.015674.02909.02684.02715.00.00.07992.0364.00.00.038.02176.00.0300.0673.00.030.081.00.0795.00.048.00.00.064.00.00.0119.023.0130.00.0314.032439.012646.031510.011344.04589.0410.03091.0608930.042176.046741.0124265.040119.011565.0107.016745.062144.01978.01835.02229.018733.04050.01225.037.02536.03198.01054.02130.02785.01621.03449.0981.07674.03852.08239.02659.0696.01032.01192.05465.01056.01275.010534.0562.02830.0924.04934.01752.06092.0480.0851.015478.01246.0534.03578.02683.03367.04137.0575.04403.0806.0519.02440.08827.0272.01104.02268.02805.01395.0230.02382.0394.03780.01236.05198.0664.034532.03558.05689.0293.0253.012644.02901.02084.01592.02295.07480.06.0735.021661.05006.046.04832.075187.00.02343.07094.02172.0955.040409.0154.0700.066630.0811.01538.056509.02197.062450.014307.01970.0238.01331978.011722.019948.0445.03037.024119.02.0464.015445.02818.01854.0225712.09737.07.0233000.077308.02292.0171282.0167372.023513.072833.05318.033271.019782.074379.04073.05204.00.0258.012578.019777.059545.02754.01991.045.052701.01072.04.027823.012435.01549.055585.02123.093253.00.08.0211.021942.08883.04936.088.0293.0145.0156.0559.00.01034.0106971.00.017515.02520.047096.0744.0514.01482.031.0276.01673.00.0629.00.069552.029.0945.0877.00.012264.0109.047.03089.04909.023.0664.01306.03624.011781.01617.0360.0302.0167.0573.0871.014899.072.0543.02131.0485.00.00.0191.0918.0890.035.0389.040293.0248.0353607.0354064.036572.046283.0276756.030195.017274.0159.04953.025851.070945.048853.015.0146395.011382.03239.019147.02063.053266.0254355.02698.029562.020136.020717.042064.010434.05463.01517.075627.041943.05223.0550.07617.02282.01077.02287.01426.02228.08358.023965.017680.0124091.01623.019116.012550.01759.02070.031735.089851.014949.01721.01591.03594.059210.046680.025117.0581489.03966.06671.019541.04880.084857.030777.0263141.037387.0133666.095209.07734.013439.054852.036397.012541.050361.013610.013053.02309.05035.045.048354.01829.05082.04050.06130.01007.02729.01033.011835.01509.09360.018077.04196.02429.030524.03577.02139.04950.02568.05832.02348.09169.01931.02327.03460.015020.03750.01788.028643.0317.03684.018478.08322.0642.032311.01635.088649.010205.07415.010418.02488.09304.0744.04566.0914.01578.072278.05599.04093.03837.045256.014573.08294.0344.03809.01898.05422.01212.03757.09597.010412.08935.02561.0119514.03032.0293.015373.08400.03791.04266.080659.013679.030014.08717.02719.04354.02731.01205.019088.015889.01277.06856.0762.03596.04535.05299.03693.02009.03527.01339.012020.06791.03470.01296.0629.015018.02542.02532.02183.01473.03090.01127.02402.0265.010933.08921.01042.0708.02132.028706.014666.05036.02391.010482.04225.02150.03716.02082.03881.03043.04868.0261.01639.06763.030556.07592.0405.02155.01679.012412.06016.02332.014590.01204.00.02484.01751.03553.07683.013289.011443.07624.02448.01570.017978.04916.01687.03900.01012.013832.06416.011641.010827.0862.02631.05002.0450.01955.03485.011427.05097.01026.03159.06910.010424.03156.021421.00.037.02607.06.030364.0241.02714.0124.0394.02820.01692.0254.0491.05842.0274.00.00.018494.0627.01578.00.0115.0119.0910.0376.0784.0818.0754.0556.0786.01757.08134.0152.0423.0303.0476.0639.01527.06089.038.01066.01755.0269.02656.0164.011173.00.0196.01199.04235.0278.01328.06464.0317.03766.052.02228.02578.06748.04572.01632.01620.06968.07447.01268257.01182.01361.01151.07866.01581.0140001.01702.0204.01969.03110.02182.02055.0897.0374.02451.02182.0385.01192.0140.0159.01966.03935.05944.02155.08576.02776.01413.0438.079144.019426.07545.04872.014547.0117022.01148.02377.02750.01548.013050.02718.032912.04131.0438.01515.0720.04768.029118.06949.0211.01281.05825.02113.05254.01052.03135.014642.02878.0324.01707.0128.0197.00.03052.01899.019040.01959.014251.0268.020.02129.044705.0552.03099.09908.05118.033084.03817.0703.01531.0518.02497.0791.09928.099787.08393.038307.02752.01975.050646.013733.0189.01305.012161.0672.02023.04043.015736.02234.03228.0491.07604.03343.07017.010453.016360.04189.029198.03959.014779.01129.04902.01466.02637.09706.09614.033038.010984.06190.033403.05820.015461.01462.03406.01526.01132.01526.03497.035241.02015.05209.03640.012066.082476.08504.024199.0198285.05753.0358.01436.09498.05538.09696.03122.08322.01073.06482.01059.0565.03105.01647.013179.01274.01288.03485.02364.02822.01148.03373.010483.0973.032234.02717.01671.02003.0217.04428.04040.088.00.011525.0749.09256.02356.0481.011488.0744.07356.02492.03292.01721.0684.0103.01799.01646.0384.01500.021475.01327.02582.0859.02690.0857.0738.01796.01691.01125.04972.0735.0367.0685.0705.01532.04154.01772.09176.0936.062.01846.02035.01360.011725.02288.0798.01817.02639.0229.0161.0922.02116.01053.01065.01076.02523.01384.01095.0809.0867.01126.01160.06924.0533.05579.01547.0770.0746.01790.028536.03452.01071.01173.0706.04602.01978.07149.0595.0716.0515.02118.01235.012592.02877.0162.0373.0273.04532.0486.057280.08495.02528.0393.0590.09016.0835.02361.03186.08095.0366.0843.025.0528.011156.01594.03000.0935.03566.02384.01260.017153.054.0597.094.00.0718.080.01514.0519.0890.0966.0257.081.01135.0635.0372.0995.0190.02206.089.01062.01763.095.0760.0177.02505.00.00.02135.0221.03671.02188.01120.0678.01363.0184.01188.0272.00.074.00.0729.01695.0107.0124.0667.0651.0163.039128.0700.0373.00.0692.0178.03604.084.0154.00.05796.0249.0608.0962.0265.0323.00.01155.072.0586.01467.0198.01097.01525.0372.00.00.092.01516.0116.0545.0155.03836.0374.0126.01818.0678.00.0862.02985.0418.020512.01606.012994.00.0461.044.0278.0274.0250.0896.0337.0366.010714.0139.00.0302.00.0364.00.030650.05594.02179.0292.0166.02685.0292.02212.05908.0291.02683.011.0182.0165.0559.02592.03531.0387.01743.04220.0245.0781.0581.02760.04813.01799.01179.0974.0313.0134.05562.02755.028.00.016167.032.0696.02173.0454.01699.0448.01348.06776.03446.01334.01247.0627.03514.01840.084.0356.03748.0466.0168.010745.03778.078540.02068.0526.011467.0718.01583.0290.01485.0118.0890.070.0289.02186.02289.0283.05530.01006.01855.051.01419.01301.0624.0521.02490.0167.0959.0718.091.0587.0580.01191.0779.00.03431.01013.0276.02035.04728.0329.0260.053.01393.01770.00.02781.0196.0419.0190.02151.02087.04695.01620.0145.01279.01331.080.00.0671.035.08981.0396.0382.0741.0752.057.029.019103.09401.020920.04912.010148.06605.07665.021825.079609.038874.0982.0316.02229.04519.03335.07322.094932.0990.013406.05420.08064.04639.018554.013397.05052.0138950.07550.01788.024483.027105.09113.015441.01725.04571.06192.0149250.031657.04854.08922.028917.04211.03096.02916.07107.014568.0628.08726.025006.026283.012312.015792.057613.022587.0298.023704.09392.028185.09885.08508.014736.06427.09442.02385.04667.03363.02782.0275.016377.0400.0450.03038.0338.0196.0431.01416.031.014.01460.03.03706.069.04668.08475.058834.0140491.0106820.06852.01188.029705.08366.023137.02073.031709.0924.018317.026849.05536.0197458.0188883.05471.01249.012532.01174.08807.010201.011117.05881.039746.013802.0162484.056.0301285.016279.0186855.032365.0507847.0243.0252637.0182279.0269901.02238.0254438.0676.0122.03159.03386.0320.01342.01121.01534.013475.0780.019326.08604.014989.03990.0844.01549.0557.02266.03969.01268.04746.03448.04482.02078.083201.01133.01798.02859.04690.07398.01245.01815.014033.02585.03880.02632.03474.019071.024716.01058.048056.091.0281.011853.0287.05059.08761.09.045.0261345.0691.04234.0707.01015.01130.03567.0497.09971.02606.0218.021517.01234.0299977.02186.01490.0672.0507.0639.03104.020064.0317.01303.039227.02837.0156.07900.015518.03581.08885.01607.04993.031660.0732739.01462.01503.033775.01264.01617.03563.0116.01664.01351.01203.01714.01174.0927.01094.010321.0460.00.0286.04558.029529.073.02303.0202.059.0813.03094.0731.0216365.0322.01544.01218.03631.0213.01529.02103.0527.0748.0454.0425.0120.01021.057.01441.0474.0561.02774.01313.01160.02565.01929.02042.0432.03837.03664.0387.06141.02085.0563.0451.02294.02269.093.075860.0235.01491.02352.03287.0634.0371.06717.04131.0584.012550.010703.0640.0268.0679.01285.063.010331.088.0487.01168.015866.0575.0925.05122.03915.0864.07930.02642.01988.06077.01279.012071.02317.02868.05566.01225.03028.08626.03868.05407.06301.04968.012696.015147.0739.03001.03200.06461.05678.013960.030011.011912.03275.0532.04748.015212.03031.01701.02244.015413.03467.07061.06400.026300.02040.07149.012958.016692.011531.010138.017196.06949.04895.013481.03347.021554.04230.02976.09904.06222.011800.03333.09425.03509.03653.0812.014296.05254.01972.07373.03291.01973.07689.03539.06740.04680.05486.02608.04399.024.04405.09243.013996.04147.02728.03890.04049.03358.05285.0190.0870.0186.01560.02106.0396.0850.0878.0615.02961.07648.01050.0255.01055.04370.06994.0545.0576.05288.0437.049.02153.0197.09095.02917.04687.0738.01088.01405.0706.0519.0901.0388.01326.01750.09010.02630.02104.020117.01274.0334.01443.0496.0299.0235.02052.032.022579.06214.013312.01592.05738.031513.0107.02632.02790.02854.0392.01046.0844.01107.0230.0541.0208.01879.02405.036.01928.0670.01403.0269.0403.0968.02608.03519.01270.075.0423.0188.02431.01314.03719.03790.0978.02364.02335.01725.0153.0138.0690.0351.0122.0494.01893.038.0239.04867.0658.0135.032155.0145.03992.0182312.046949.0343.02944.01438.0408.04708.0705.00.0632.0755.02312.0245.02069.013.0978.0321.05210.01071.058.0317.0204.04727.0131.0610.0261.0875.0566.041.0454.03778.01829.085.01428.00.065.02118.063.00.0866.01402.056.0868.0357.00.0514.07.02998.0323.0156.034.0418.0173.0372.0175.060.01026.0682.02856.02501.0218.0136.01428.0534.0375.0159.01717.069.02.0426.0334.0145.013267.03476.0261.00.00.00.094.0349.0112.047.02771.0235.0417.0673.0226.0143.0459.0331.0235.01496.0380.01449.09640.0806.02892.00.0522.03575.044761.0234.0421.0107.058.0398.01328.00.0141.053.090.020.013062.03215.00.00.080.0616.094.01175.03.0152.0101.048.00.0124.0170.08874.01590.00.00.02531.00.0405.0282.0190.0170.040.0153.020.01401.0307.01337.02117.0581.0229.0567.0144.0491.06081.0856.02445.0959.0337.0343.00.0123.093.00.0798.027.0127.01090.0278.0156.00.0361.02686.01425.0265177.0477.02132.00.00.01109.0415.057.02190.0153.03247.078.059.0225.039716.0224.01808.0287.0748.0468.0399.065720.06062.023544.03465.0466.029.058412.0496226.0112272.0136941.021418.035352.0514823.053572.0364001.027615.0147906.0334003.0202951.0198752.0246623.0296579.019051.0135903.046895.0327297.0207.040351.045004.0290.04102.05514.0504.02097.00.016769.03798.0653.0208.00.0376.04864.0767.00.02456.053236.010.03193.0511.02730.01297.045442.091.011474.03196.0774.02751.01663.0300.0451.019.02483.034946.03452.022146.02810.0892.01297.04061.01387.01199.011559.0579.0794.040789.0161758.01677.0478.05643.02066.02684.0148.01809.0316.0956.01737.02590.066544.02303.0620865.05973826.020652.028222.045657.06562.0103690.011383.01102.01412.015986.010673.0127628.03179.011090.0320.0321.0659.01721.011632.0509117.08554.06578.0495.017963.04597.07338.03087.01439.0385376.01355.01499.013585.01609.0107.01491.0645.0494.04912.02665.02669.06941.019030.08949.015202.03234.0516.01612.0852.011029.012319.01852.01464.0430.011942.012176.08012.016660.0522.0580.07802.01544.010307.020839.08320.020590.06918.019452.0811.0880.08947.02157.040293.04001.012140.05304.014819.05172.03558.0562.06380.01379.012762.02080.03666.06263.02377.0908.0896.02600.04583.070111.0632.05468.07537.010116.06736.04316.04842.012340.0413.05843.01780.0681.01482.05884.01878.011869.04238.016063.02634.019938.09315.05254.03705.09388.01555.04875.0637.01121.0417.011972.010088.043688.01382.01425.0642.014914.06257.010954.02063.0194.034.0893.01329.00.01539.0234.0133.011068.020271.0176.01580.0121.0527.0412.0947.0734.00.04144.0405.0181.0216.0389.0986.0351.01499.0661.0652.01288.0453.06498.01057.0595.0136.0348.0675.0908.0496.0440.0750.01299.0296.0109.0694.00.03882.071.03144.0590.0786.01076.0913.08830.0214.02035.0342.00.0202.01146.014816.02226.011251.0601.03528.05954.0738.021486.01507.0962.011045.05945.02403.018220.01891.02331.0132403.09799.03250.05808.09859.09217.01633.0125445.01979.01803.010756.07818.01714.067313.04188.03125.0395.02554.01408.02321.03448.02392.01250.01777.02550.010958.03798.011885.01220.020761.084588.03033.062877.011305.010198.01377.05790.011892.04076.031836.0691.0415.01158.01333.06092.0811.01611.010445.0168.016574.02488.06416.04749.05975.05054.01846.02588.02055.038527.062182.027835.07259.0884.027.01441.0770.011854.05772.017411.01485.017991.02617.02013.070.0170.0114.01391.0194.01874.04895.03764.01678.01385.0471.013.018431.0100.03861.0727.0301.06303.01099.06062.0155.05.03843.01417.02785.0279.01998.00.0186.0685.0788.02813.0108.0534.03465.0556.0608.0510.02887.02650.0465.0150.0412.0336.02563.01992.06248.01336.0401.05053.0510.0620.01126.041940.01796.03287.02121.01048.01948.03034.01241.02844.0529.0445.08493.01504.02063.01564.02050.0607.037461.01.06415.010078.0134.0120.0637.0373.01609.012596.047.0417.0193.0484.0149.02085.01642.025.043.045.0262.02470.01402.0829.0713.082.04757.02223.03588.05006.021378.0900.035032.03491.00.00.07068.0659.00.0281.01852.013253.02.03440.06270.086524.04460.028917.03282.094327.06651.03039.0147840.08700.06692.030.08499.05880.086267.01364.01485.01554.09467.02050.021999.039650.0183109.0673.010088.03325.0120.015583.0652.0431.04218.04923.01047.02230.051696.0107230.07479.015691.080679.051489.07103.0628.05839.03146.031591.0209589.01526.071372.014281.01733.0429116.05649.0367.019425.02271.01967.0101.06389.01977.01826.01.0968.0523.07650.02531.023152.02640.033658.0NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN134516.0NaNNaNNaNNaNNaNNaNNaN4688.025651.01573.0200242.013273.016597.02458.013720.01319.028762.05175.03053.014585.016170.02743.044232.07990.04168.07017.013940.08301.010446.07019.014889.03063.07165.033243.08209.058786.010604.04294.038453.03507.08680.09179.09932.07089.032849.05812.02155.01092.06351.04836.019489.010174.045940.03273.037307.014971.02694.04.08145.015425.0291.03129.0502.0963.01278.02141.0341.0851.0922.099.0340.077.0975.03211.0350.0537.02550.0637.0208.0319.0425.0158.0779.0621.0882.01430.0257.0845.0109.0156.09.01496.0648.06.0534.01194.02.0595.01303.01497.03467.0822.0202.01051.058.01355.087.0284.023393.0639.01696.09425.0202.071.01304.0119.0880.054.0130.01381.0404.02684.02081.010.0793.01199.0370.03195.04267.01788.0730.06352.04396.01936.0346.03705.05845.02014.02117.0993.01561.02597.03770.03239.03959.061886.02332.01428.03323.04778.04089.01594.03216.06246.04823.01150.07501.01482.06700.021061.0442.04759.03306.04063.03585.03485.01966.01775.01661.0927.01035.03372.01548.018845.0627.02837.03615.0969.01254.01909.04074.012073.02073.01862.06471.06982.03498.0964.04614.09285.0274.0800.04266.02679.01267.01076.01797.09215.02938.02172.06992.021003.0821.0534.03990.097770.02151.01243.09839.022844.04290.01745.01648.0514.01281.0232.01987.09170.01093.03653.02366.09913.010172.05550.01801.013834.02809.0221.0204.05546.01407.0947.01210.05316.0362.05000.015298.0212995.0932.00.01465.014064.027891.014928.0675.0196.03116.06417.01173.02449.05690.01544.01026.0150490.01958.0205.03741.01132.02761.05732.0137.0537.0369.0855.0741.032689.0112.0778.019144.01132.0266.01499.02346.0568.01081.01011.01275.0394.01664.0222358.03138.05887.05574.094.030817.0409.01085.0244.02681.0930.018551.0221.0122336.014658.02428.01183.03765.03597.0561.01737.0169.049458.01103.0981.01337.01782.029216.01209.01523.029.0935.03095.02044.010735.013347.05435.012262.011161.0334.0988.01129.0331.05416.0434247.08571.0481.0483.012584.062.05635.0266295.02473.04044.05846.04390.01942.03657.0520.07383.01953.00.0452.02375.04549.027.025532.0751.06384.011396.0811.02401.09438.01728.0257.046.02409.0315.00.0206.06593.01228.01588.08109.04671.01304.05671.02542.01556.08889.02185.0218.01285.0451.00.039788.01146.01213.02197.01166.0237.08120.020231.0681.022927.097.07100.0155.016834.01179.0375.0528.01685.029126.04979.0757.084.012461.05879.01799.01111.066545.01037.0356.07170.03497.06218.07216.02692.01436.04713.021434.01046.0879.011732.0899.01072.03113.01525.02004.036.0828.05898.01224.03327.01441.02892.01854.011042.0524.0412.01847.015.05155.0170.020594.0646.024969.0842.049.0192.0479.0864.0145920.012692.038.01905.0308.05201.013172.078272.01064.0694.01.02104.0515.04797.017465.04702.014953.011412.02163.0440.010094.053516.08410.0282.010132.01150.08032.026153.04590.0622.04104.05396.01170.01918.01026.02699.0109.01506.01648.0278.00.07030.0196.0313.0625.0144.0736.0620.0152.070.0191.080.00.057467.05283.0416.0350.0346.0626.0204.0816.015768.01616.07572.00.07328.0564.0287.072.010579.00.01973.00.0268.017.0123.0507.0122.0508.0844.0570.0971.0120.01877.0535.04163.04170.015431.01240.0848.0660.0583.033839.01583.06.02626.0556.02090.0764.0800.0947.01693.0200.01274.01178.04234.01056.0268.04535.012186.020863.0228.05200.0108.038.03322.0308.05436.0216.01738.04485.0295.0129303.01750.01608.03936.01686.02036.01237.01955.02632.0846.05193.046.0575.01640.02457.0613.02750.01619.04439.09044.07631.049124.04637.00.01269.03685.04804.01176.0556.0289.097.01488.0201.026815.01016.0444.03329.0525.01659.05104.02762.070.07437.01222.01722.0268.0538.07634.012314.06615.01062.010.03046.01001.06367.03325.04564.02358.0243.010102.0884.02358.0827.043443.01451.0308.0332.01070.012767.03254.07154.0341.04818.01079.01870.01611.011077.03360.04781.09080.03124.0890.014166.0690.02055.0611.0912.017184.02877.03730.0721.0849.01581.0901.03161.01178.01454.01547.01282.028712.04111.0270.016161.0252.01411.01937.063.012783.018.05053.01702.03753.037.0190904.03326.03453.0799.01928.0287.01202.02461.0531.0149.046307.00.05682.0164.055893.034429.0871.04941.0292.00.02228.012798.01648.055386.0485.03817.0934.022.0858.04622.00.0401.0176.03590.013.01209.01122.0447.0670.0194.01959.05342.01631.016352.0446.0407.06056.0986.01731.0863.0118.04636.02183.01796.01665.01046.0157.0603.01914.0213.0446.0149.01288.02591.01597.0239.0206.0403.0568.01042.018.062.01.0274.02729.00.0797.055.02056.0942.01008.0728.02783.0881.018139.0652.01092.02183.03318.03816.01399.0444.013345.06509.01319.0741.0762.04410.0814.04895.01819.06844.0699.0541.0324.01106.0598.03489.0718.018729.01459.02846.0241.02234.02468.02945.010258.02746.01045.0365.0128548.01243.02343.02411.011079.05923.0160.01778.01165.02994.0248.024482.01501.010127.0567.01886.0506.03490.05552.02044.01171.01284.01040.0823.01029.08183.0439.08850.025548.09508.0825.011017.02501.0552.0906.01035.0746.0425.0279.04236.0723.031.0459.02345.0515.03331.035.0455.0476.0895.0232.0768.0317.0502.00.01397.074.0
\n
", "text/plain": "state_name Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware District of Columbia Florida Georgia Guam Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Minnesota Mississippi Missouri Montana Nebraska Nevada New Hampshire New Jersey New Mexico New York North Carolina North Dakota Northern Mariana Islands Ohio Oklahoma Oregon Pennsylvania Puerto Rico Rhode Island South Carolina South Dakota Tennessee Texas Utah Vermont Virgin Islands Virginia Washington West Virginia Wisconsin Wyoming \ncounty Autauga Baldwin Barbour Bibb Blount Bullock Butler Calhoun Chambers Cherokee Chilton Choctaw Clarke Clay Cleburne Coffee Colbert Conecuh Coosa Covington Crenshaw Cullman Dale Dallas DeKalb Elmore Escambia Etowah Fayette Franklin Geneva Greene Hale Henry Houston Jackson Jefferson Lamar Lauderdale Lawrence Lee Limestone Lowndes Macon Madison Marengo Marion Marshall Mobile Monroe Montgomery Morgan Perry Pickens Pike Randolph Russell Shelby St. Clair Sumter Talladega Tallapoosa Tuscaloosa Walker Washington Wilcox Winston Aleutians East Borough Aleutians West Census Area Anchorage Bethel Census Area Bristol Bay Borough Denali Borough Dillingham Census Area Fairbanks North Star Borough Haines Borough Juneau City and Borough Kenai Peninsula Borough Ketchikan Gateway Borough Kodiak Island Borough Kusilvak Census Area Lake and Peninsula Borough Matanuska-Susitna Borough Nome Census Area North Slope Borough Northwest Arctic Borough Petersburg Borough Prince of Wales-Hyder Census Area Sitka City and Borough Skagway Municipality Southeast Fairbanks Census Area Unknown Valdez-Cordova Census Area Wrangell City and Borough Yukon-Koyukuk Census Area Apache Cochise Coconino Gila Graham Greenlee La Paz Maricopa Mohave Navajo Pima Pinal Santa Cruz Unknown Yavapai Yuma Arkansas Ashley Baxter Benton Boone Bradley Calhoun Carroll Chicot Clark Clay Cleburne Cleveland Columbia Conway Craighead Crawford Crittenden Cross Dallas Desha Drew Faulkner Franklin Fulton Garland Grant Greene Hempstead Hot Spring Howard Independence Izard Jackson Jefferson Johnson Lafayette Lawrence Lee Lincoln Little River Logan Lonoke Madison Marion Miller Mississippi Monroe Montgomery Nevada Newton Ouachita Perry Phillips Pike Poinsett Polk Pope Prairie Pulaski Randolph Saline Scott Searcy Sebastian Sevier Sharp St. Francis Stone Union Unknown Van Buren Washington White Woodruff Yell Alameda Alpine Amador Butte Calaveras Colusa Contra Costa Del Norte El Dorado Fresno Glenn Humboldt Imperial Inyo Kern Kings Lake Lassen Los Angeles Madera Marin Mariposa Mendocino Merced Modoc Mono Monterey Napa Nevada Orange Placer Plumas Riverside Sacramento San Benito San Bernardino San Diego San Francisco San Joaquin San Luis Obispo San Mateo Santa Barbara Santa Clara Santa Cruz Shasta Sierra Siskiyou Solano Sonoma Stanislaus Sutter Tehama Trinity Tulare Tuolumne Unknown Ventura Yolo Yuba Adams Alamosa Arapahoe Archuleta Baca Bent Boulder Broomfield Chaffee Cheyenne Clear Creek Conejos Costilla Crowley Custer Delta Denver Dolores Douglas Eagle El Paso Elbert Fremont Garfield Gilpin Grand Gunnison Hinsdale Huerfano Jackson Jefferson Kiowa Kit Carson La Plata Lake Larimer Las Animas Lincoln Logan Mesa Mineral Moffat Montezuma Montrose Morgan Otero Ouray Park Phillips Pitkin Prowers Pueblo Rio Blanco Rio Grande Routt Saguache San Juan San Miguel Sedgwick Summit Teller Unknown Washington Weld Yuma Fairfield Hartford Litchfield Middlesex New Haven New London Tolland Unknown Windham Kent New Castle Sussex Unknown District of Columbia Alachua Baker Bay Bradford Brevard Broward Calhoun Charlotte Citrus Clay Collier Columbia DeSoto Dixie Duval Escambia Flagler Franklin Gadsden Gilchrist Glades Gulf Hamilton Hardee Hendry Hernando Highlands Hillsborough Holmes Indian River Jackson Jefferson Lafayette Lake Lee Leon Levy Liberty Madison Manatee Marion Martin Miami-Dade Monroe Nassau Okaloosa Okeechobee Orange Osceola Palm Beach Pasco Pinellas Polk Putnam Santa Rosa Sarasota Seminole St. Johns St. Lucie Sumter Suwannee Taylor Union Unknown Volusia Wakulla Walton Washington Appling Atkinson Bacon Baker Baldwin Banks Barrow Bartow Ben Hill Berrien Bibb Bleckley Brantley Brooks Bryan Bulloch Burke Butts Calhoun Camden Candler Carroll Catoosa Charlton Chatham Chattahoochee Chattooga Cherokee Clarke Clay Clayton Clinch Cobb Coffee Colquitt Columbia Cook Coweta Crawford Crisp Dade Dawson DeKalb Decatur Dodge Dooly Dougherty Douglas Early Echols Effingham Elbert Emanuel Evans Fannin Fayette Floyd Forsyth Franklin Fulton Gilmer Glascock Glynn Gordon Grady Greene Gwinnett Habersham Hall Hancock Haralson Harris Hart Heard Henry Houston Irwin Jackson Jasper Jeff Davis Jefferson Jenkins Johnson Jones Lamar Lanier Laurens Lee Liberty Lincoln Long Lowndes Lumpkin Macon Madison Marion McDuffie McIntosh Meriwether Miller Mitchell Monroe Montgomery Morgan Murray Muscogee Newton Oconee Oglethorpe Paulding Peach Pickens Pierce Pike Polk Pulaski Putnam Quitman Rabun Randolph Richmond Rockdale Schley Screven Seminole Spalding Stephens Stewart Sumter Talbot Taliaferro Tattnall Taylor Telfair Terrell Thomas Tift Toombs Towns Treutlen Troup Turner Twiggs Union Unknown Upson Walker Walton Ware Warren Washington Wayne Webster Wheeler White Whitfield Wilcox Wilkes Wilkinson Worth Unknown Hawaii Honolulu Kalawao Kauai Maui Unknown Ada Adams Bannock Bear Lake Benewah Bingham Blaine Boise Bonner Bonneville Boundary Butte Camas Canyon Caribou Cassia Clark Clearwater Custer Elmore Franklin Fremont Gem Gooding Idaho Jefferson Jerome Kootenai Latah Lemhi Lewis Lincoln Madison Minidoka Nez Perce Oneida Owyhee Payette Power Shoshone Teton Twin Falls Unknown Valley Washington Adams Alexander Bond Boone Brown Bureau Calhoun Carroll Cass Champaign Christian Clark Clay Clinton Coles Cook Crawford Cumberland De Witt DeKalb Douglas DuPage Edgar Edwards Effingham Fayette Ford Franklin Fulton Gallatin Greene Grundy Hamilton Hancock Hardin Henderson Henry Iroquois Jackson Jasper Jefferson Jersey Jo Daviess Johnson Kane Kankakee Kendall Knox LaSalle Lake Lawrence Lee Livingston Logan Macon Macoupin Madison Marion Marshall Mason Massac McDonough McHenry McLean Menard Mercer Monroe Montgomery Morgan Moultrie Ogle Peoria Perry Piatt Pike Pope Pulaski Putnam Randolph Richland Rock Island Saline Sangamon Schuyler Scott Shelby St. Clair Stark Stephenson Tazewell Union Unknown Vermilion Wabash Warren Washington Wayne White Whiteside Will Williamson Winnebago Woodford Adams Allen Bartholomew Benton Blackford Boone Brown Carroll Cass Clark Clay Clinton Crawford Daviess DeKalb Dearborn Decatur Delaware Dubois Elkhart Fayette Floyd Fountain Franklin Fulton Gibson Grant Greene Hamilton Hancock Harrison Hendricks Henry Howard Huntington Jackson Jasper Jay Jefferson Jennings Johnson Knox Kosciusko LaGrange LaPorte Lake Lawrence Madison Marion Marshall Martin Miami Monroe Montgomery Morgan Newton Noble Ohio Orange Owen Parke Perry Pike Porter Posey Pulaski Putnam Randolph Ripley Rush Scott Shelby Spencer St. Joseph Starke Steuben Sullivan Switzerland Tippecanoe Tipton Union Unknown Vanderburgh Vermillion Vigo Wabash Warren Warrick Washington Wayne Wells White Whitley Adair Adams Allamakee Appanoose Audubon Benton Black Hawk Boone Bremer Buchanan Buena Vista Butler Calhoun Carroll Cass Cedar Cerro Gordo Cherokee Chickasaw Clarke Clay Clayton Clinton Crawford Dallas Davis Decatur Delaware Des Moines Dickinson Dubuque Emmet Fayette Floyd Franklin Fremont Greene Grundy Guthrie Hamilton Hancock Hardin Harrison Henry Howard Humboldt Ida Iowa Jackson Jasper Jefferson Johnson Jones Keokuk Kossuth Lee Linn Louisa Lucas Lyon Madison Mahaska Marion Marshall Mills Mitchell Monona Monroe Montgomery Muscatine O'Brien Osceola Page Palo Alto Plymouth Pocahontas Polk Pottawattamie Poweshiek Ringgold Sac Scott Shelby Sioux Story Tama Taylor Union Unknown Van Buren Wapello Warren Washington Wayne Webster Winnebago Winneshiek Woodbury Worth Wright Allen Anderson Atchison Barber Barton Bourbon Brown Butler Chase Chautauqua Cherokee Cheyenne Clark Clay Cloud Coffey Comanche Cowley Crawford Decatur Dickinson Doniphan Douglas Edwards Elk Ellis Ellsworth Finney Ford Franklin Geary Gove Graham Grant Gray Greeley Greenwood Hamilton Harper Harvey Haskell Hodgeman Jackson Jefferson Jewell Johnson Kearny Kingman Kiowa Labette Lane Leavenworth Lincoln Linn Logan Lyon Marion Marshall McPherson Meade Miami Mitchell Montgomery Morris Morton Nemaha Neosho Ness Norton Osage Osborne Ottawa Pawnee Phillips Pottawatomie Pratt Rawlins Reno Republic Rice Riley Rooks Rush Russell Saline Scott Sedgwick Seward Shawnee Sheridan Sherman Smith Stafford Stanton Stevens Sumner Thomas Trego Unknown Wabaunsee Wallace Washington Wichita Wilson Woodson Wyandotte Adair Allen Anderson Ballard Barren Bath Bell Boone Bourbon Boyd Boyle Bracken Breathitt Breckinridge Bullitt Butler Caldwell Calloway Campbell Carlisle Carroll Carter Casey Christian Clark Clay Clinton Crittenden Cumberland Daviess Edmonson Elliott Estill Fayette Fleming Floyd Franklin Fulton Gallatin Garrard Grant Graves Grayson Green Greenup Hancock Hardin Harlan Harrison Hart Henderson Henry Hickman Hopkins Jackson Jefferson Jessamine Johnson Kenton Knott Knox Larue Laurel Lawrence Lee Leslie Letcher Lewis Lincoln Livingston Logan Lyon Madison Magoffin Marion Marshall Martin Mason McCracken McCreary McLean Meade Menifee Mercer Metcalfe Monroe Montgomery Morgan Muhlenberg Nelson Nicholas Ohio Oldham Owen Owsley Pendleton Perry Pike Powell Pulaski Robertson Rockcastle Rowan Russell Scott Shelby Simpson Spencer Taylor Todd Trigg Trimble Union Unknown Warren Washington Wayne Webster Whitley Wolfe Woodford Acadia Allen Ascension Assumption Avoyelles Beauregard Bienville Bossier Caddo Calcasieu Caldwell Cameron Catahoula Claiborne Concordia De Soto East Baton Rouge East Carroll East Feliciana Evangeline Franklin Grant Iberia Iberville Jackson Jefferson Jefferson Davis LaSalle Lafayette Lafourche Lincoln Livingston Madison Morehouse Natchitoches Orleans Ouachita Plaquemines Pointe Coupee Rapides Red River Richland Sabine St. Bernard St. Charles St. Helena St. James St. John the Baptist St. Landry St. Martin St. Mary St. Tammany Tangipahoa Tensas Terrebonne Union Unknown Vermilion Vernon Washington Webster West Baton Rouge West Carroll West Feliciana Winn Androscoggin Aroostook Cumberland Franklin Hancock Kennebec Knox Lincoln Oxford Penobscot Piscataquis Sagadahoc Somerset Unknown Waldo Washington York Allegany Anne Arundel Baltimore Baltimore city Calvert Caroline Carroll Cecil Charles Dorchester Frederick Garrett Harford Howard Kent Montgomery Prince George's Queen Anne's Somerset St. Mary's Talbot Unknown Washington Wicomico Worcester Barnstable Berkshire Bristol Dukes Essex Franklin Hampden Hampshire Middlesex Nantucket Norfolk Plymouth Suffolk Unknown Worcester Alcona Alger Allegan Alpena Antrim Arenac Baraga Barry Bay Benzie Berrien Branch Calhoun Cass Charlevoix Cheboygan Chippewa Clare Clinton Crawford Delta Dickinson Eaton Emmet Genesee Gladwin Gogebic Grand Traverse Gratiot Hillsdale Houghton Huron Ingham Ionia Iosco Iron Isabella Jackson Kalamazoo Kalkaska Kent Keweenaw Lake Lapeer Leelanau Lenawee Livingston Luce Mackinac Macomb Manistee Marquette Mason Mecosta Menominee Midland Missaukee Monroe Montcalm Montmorency Muskegon Newaygo Oakland Oceana Ogemaw Ontonagon Osceola Oscoda Otsego Ottawa Presque Isle Roscommon Saginaw Sanilac Schoolcraft Shiawassee St. Clair St. Joseph Tuscola Unknown Van Buren Washtenaw Wayne Wexford Aitkin Anoka Becker Beltrami Benton Big Stone Blue Earth Brown Carlton Carver Cass Chippewa Chisago Clay Clearwater Cook Cottonwood Crow Wing Dakota Dodge Douglas Faribault Fillmore Freeborn Goodhue Grant Hennepin Houston Hubbard Isanti Itasca Jackson Kanabec Kandiyohi Kittson Koochiching Lac qui Parle Lake Lake of the Woods Le Sueur Lincoln Lyon Mahnomen Marshall Martin McLeod Meeker Mille Lacs Morrison Mower Murray Nicollet Nobles Norman Olmsted Otter Tail Pennington Pine Pipestone Polk Pope Ramsey Red Lake Redwood Renville Rice Rock Roseau Scott Sherburne Sibley St. Louis Stearns Steele Stevens Swift Todd Traverse Unknown Wabasha Wadena Waseca Washington Watonwan Wilkin Winona Wright Yellow Medicine Adams Alcorn Amite Attala Benton Bolivar Calhoun Carroll Chickasaw Choctaw Claiborne Clarke Clay Coahoma Copiah Covington DeSoto Forrest Franklin George Greene Grenada Hancock Harrison Hinds Holmes Humphreys Issaquena Itawamba Jackson Jasper Jefferson Jefferson Davis Jones Kemper Lafayette Lamar Lauderdale Lawrence Leake Lee Leflore Lincoln Lowndes Madison Marion Marshall Monroe Montgomery Neshoba Newton Noxubee Oktibbeha Panola Pearl River Perry Pike Pontotoc Prentiss Quitman Rankin Scott Sharkey Simpson Smith Stone Sunflower Tallahatchie Tate Tippah Tishomingo Tunica Union Unknown Walthall Warren Washington Wayne Webster Wilkinson Winston Yalobusha Yazoo Adair Andrew Atchison Audrain Barry Barton Bates Benton Bollinger Boone Buchanan Butler Caldwell Callaway Camden Cape Girardeau Carroll Carter Cass Cedar Chariton Christian Clark Clay Clinton Cole Cooper Crawford Dade Dallas Daviess DeKalb Dent Douglas Dunklin Franklin Gasconade Gentry Greene Grundy Harrison Henry Hickory Holt Howard Howell Iron Jackson Jasper Jefferson Johnson Joplin Kansas City Knox Laclede Lafayette Lawrence Lewis Lincoln Linn Livingston Macon Madison Maries Marion McDonald Mercer Miller Mississippi Moniteau Monroe Montgomery Morgan New Madrid Newton Nodaway Oregon Osage Ozark Pemiscot Perry Pettis Phelps Pike Platte Polk Pulaski Putnam Ralls Randolph Ray Reynolds Ripley Saline Schuyler Scotland Scott Shannon Shelby St. Charles St. Clair St. Francois St. Louis St. Louis city Ste. Genevieve Stoddard Stone Sullivan Taney Texas Unknown Vernon Warren Washington Wayne Webster Worth Wright Beaverhead Big Horn Blaine Broadwater Carbon Carter Cascade Chouteau Custer Daniels Dawson Deer Lodge Fallon Fergus Flathead Gallatin Garfield Glacier Golden Valley Granite Hill Jefferson Judith Basin Lake Lewis and Clark Liberty Lincoln Madison McCone Meagher Mineral Missoula Musselshell Park Petroleum Phillips Pondera Powder River Powell Prairie Ravalli Richland Roosevelt Rosebud Sanders Sheridan Silver Bow Stillwater Sweet Grass Teton Toole Treasure Unknown Valley Wheatland Wibaux Yellowstone Adams Antelope Arthur Banner Blaine Boone Box Butte Boyd Brown Buffalo Burt Butler Cass Cedar Chase Cherry Cheyenne Clay Colfax Cuming Custer Dakota Dawes Dawson Deuel Dixon Dodge Douglas Dundy Fillmore Franklin Frontier Furnas Gage Garden Garfield Gosper Grant Greeley Hall Hamilton Harlan Hayes Hitchcock Holt Hooker Howard Jefferson Johnson Kearney Keith Keya Paha Kimball Knox Lancaster Lincoln Logan Loup Madison McPherson Merrick Morrill Nance Nemaha Nuckolls Otoe Pawnee Perkins Phelps Pierce Platte Polk Red Willow Richardson Rock Saline Sarpy Saunders Scotts Bluff Seward Sheridan Sherman Sioux Stanton Thayer Thomas Thurston Unknown Valley Washington Wayne Webster Wheeler York Carson City Churchill Clark Douglas Elko Esmeralda Eureka Humboldt Lander Lincoln Lyon Mineral Nye Pershing Storey Unknown Washoe White Pine Belknap Carroll Cheshire Coos Grafton Hillsborough Merrimack Rockingham Strafford Sullivan Unknown Atlantic Bergen Burlington Camden Cape May Cumberland Essex Gloucester Hudson Hunterdon Mercer Middlesex Monmouth Morris Ocean Passaic Salem Somerset Sussex Union Unknown Warren Bernalillo Catron Chaves Cibola Colfax Curry De Baca Do\u00f1a Ana Eddy Grant Guadalupe Harding Hidalgo Lea Lincoln Los Alamos Luna McKinley Mora Otero Quay Rio Arriba Roosevelt San Juan San Miguel Sandoval Santa Fe Sierra Socorro Taos Torrance Union Unknown Valencia Albany Allegany Broome Cattaraugus Cayuga Chautauqua Chemung Chenango Clinton Columbia Cortland Delaware Dutchess Erie Essex Franklin Fulton Genesee Greene Hamilton Herkimer Jefferson Lewis Livingston Madison Monroe Montgomery Nassau New York City Niagara Oneida Onondaga Ontario Orange Orleans Oswego Otsego Putnam Rensselaer Rockland Saratoga Schenectady Schoharie Schuyler Seneca St. Lawrence Steuben Suffolk Sullivan Tioga Tompkins Ulster Unknown Warren Washington Wayne Westchester Wyoming Yates Alamance Alexander Alleghany Anson Ashe Avery Beaufort Bertie Bladen Brunswick Buncombe Burke Cabarrus Caldwell Camden Carteret Caswell Catawba Chatham Cherokee Chowan Clay Cleveland Columbus Craven Cumberland Currituck Dare Davidson Davie Duplin Durham Edgecombe Forsyth Franklin Gaston Gates Graham Granville Greene Guilford Halifax Harnett Haywood Henderson Hertford Hoke Hyde Iredell Jackson Johnston Jones Lee Lenoir Lincoln Macon Madison Martin McDowell Mecklenburg Mitchell Montgomery Moore Nash New Hanover Northampton Onslow Orange Pamlico Pasquotank Pender Perquimans Person Pitt Polk Randolph Richmond Robeson Rockingham Rowan Rutherford Sampson Scotland Stanly Stokes Surry Swain Transylvania Tyrrell Union Vance Wake Warren Washington Watauga Wayne Wilkes Wilson Yadkin Yancey Adams Barnes Benson Billings Bottineau Bowman Burke Burleigh Cass Cavalier Dickey Divide Dunn Eddy Emmons Foster Golden Valley Grand Forks Grant Griggs Hettinger Kidder LaMoure Logan McHenry McIntosh McKenzie McLean Mercer Morton Mountrail Nelson Oliver Pembina Pierce Ramsey Ransom Renville Richland Rolette Sargent Sheridan Sioux Slope Stark Steele Stutsman Towner Traill Unknown Walsh Ward Wells Williams Saipan Tinian Unknown Adams Allen Ashland Ashtabula Athens Auglaize Belmont Brown Butler Carroll Champaign Clark Clermont Clinton Columbiana Coshocton Crawford Cuyahoga Darke Defiance Delaware Erie Fairfield Fayette Franklin Fulton Gallia Geauga Greene Guernsey Hamilton Hancock Hardin Harrison Henry Highland Hocking Holmes Huron Jackson Jefferson Knox Lake Lawrence Licking Logan Lorain Lucas Madison Mahoning Marion Medina Meigs Mercer Miami Monroe Montgomery Morgan Morrow Muskingum Noble Ottawa Paulding Perry Pickaway Pike Portage Preble Putnam Richland Ross Sandusky Scioto Seneca Shelby Stark Summit Trumbull Tuscarawas Union Unknown Van Wert Vinton Warren Washington Wayne Williams Wood Wyandot Adair Alfalfa Atoka Beaver Beckham Blaine Bryan Caddo Canadian Carter Cherokee Choctaw Cimarron Cleveland Coal Comanche Cotton Craig Creek Custer Delaware Dewey Ellis Garfield Garvin Grady Grant Greer Harmon Harper Haskell Hughes Jackson Jefferson Johnston Kay Kingfisher Kiowa Latimer Le Flore Lincoln Logan Love Major Marshall Mayes McClain McCurtain McIntosh Murray Muskogee Noble Nowata Okfuskee Oklahoma Okmulgee Osage Ottawa Pawnee Payne Pittsburg Pontotoc Pottawatomie Pushmataha Roger Mills Rogers Seminole Sequoyah Stephens Texas Tillman Tulsa Unknown Wagoner Washington Washita Woods Woodward Baker Benton Clackamas Clatsop Columbia Coos Crook Curry Deschutes Douglas Gilliam Grant Harney Hood River Jackson Jefferson Josephine Klamath Lake Lane Lincoln Linn Malheur Marion Morrow Multnomah Polk Sherman Tillamook Umatilla Union Unknown Wallowa Wasco Washington Wheeler Yamhill Adams Allegheny Armstrong Beaver Bedford Berks Blair Bradford Bucks Butler Cambria Cameron Carbon Centre Chester Clarion Clearfield Clinton Columbia Crawford Cumberland Dauphin Delaware Elk Erie Fayette Forest Franklin Fulton Greene Huntingdon Indiana Jefferson Juniata Lackawanna Lancaster Lawrence Lebanon Lehigh Luzerne Lycoming McKean Mercer Mifflin Monroe Montgomery Montour Northampton Northumberland Perry Philadelphia Pike Potter Schuylkill Snyder Somerset Sullivan Susquehanna Tioga Union Unknown Venango Warren Washington Wayne Westmoreland Wyoming York Adjuntas Aguada Aguadilla Aguas Buenas Aibonito Anasco Arecibo Arroyo Barceloneta Barranquitas Bayamon Cabo Rojo Caguas Camuy Canovanas Carolina Catano Cayey Ceiba Ciales Cidra Coamo Comerio Corozal Culebra Dorado Fajardo Florida Guanica Guayama Guayanilla Guaynabo Gurabo Hatillo Hormigueros Humacao Isabela Jayuya Juana Diaz Juncos Lajas Lares Las Marias Las Piedras Loiza Luquillo Manati Maricao Maunabo Mayaguez Moca Morovis Naguabo Naranjito Orocovis Patillas Penuelas Ponce Quebradillas Rincon Rio Grande Sabana Grande Salinas San German San Juan San Lorenzo San Sebastian Santa Isabel Toa Alta Toa Baja Trujillo Alto Unknown Utuado Vega Alta Vega Baja Vieques Villalba Yabucoa Yauco Bristol Kent Newport Providence Unknown Washington Abbeville Aiken Allendale Anderson Bamberg Barnwell Beaufort Berkeley Calhoun Charleston Cherokee Chester Chesterfield Clarendon Colleton Darlington Dillon Dorchester Edgefield Fairfield Florence Georgetown Greenville Greenwood Hampton Horry Jasper Kershaw Lancaster Laurens Lee Lexington Marion Marlboro McCormick Newberry Oconee Orangeburg Pickens Richland Saluda Spartanburg Sumter Union Unknown Williamsburg York Aurora Beadle Bennett Bon Homme Brookings Brown Brule Buffalo Butte Campbell Charles Mix Clark Clay Codington Corson Custer Davison Day Deuel Dewey Douglas Edmunds Fall River Faulk Grant Gregory Haakon Hamlin Hand Hanson Harding Hughes Hutchinson Hyde Jackson Jerauld Jones Kingsbury Lake Lawrence Lincoln Lyman Marshall McCook McPherson Meade Mellette Miner Minnehaha Moody Oglala Lakota Pennington Perkins Potter Roberts Sanborn Spink Stanley Sully Todd Tripp Turner Union Unknown Walworth Yankton Ziebach Anderson Bedford Benton Bledsoe Blount Bradley Campbell Cannon Carroll Carter Cheatham Chester Claiborne Clay Cocke Coffee Crockett Cumberland Davidson DeKalb Decatur Dickson Dyer Fayette Fentress Franklin Gibson Giles Grainger Greene Grundy Hamblen Hamilton Hancock Hardeman Hardin Hawkins Haywood Henderson Henry Hickman Houston Humphreys Jackson Jefferson Johnson Knox Lake Lauderdale Lawrence Lewis Lincoln Loudon Macon Madison Marion Marshall Maury McMinn McNairy Meigs Monroe Montgomery Moore Morgan Obion Overton Perry Pickett Polk Putnam Rhea Roane Robertson Rutherford Scott Sequatchie Sevier Shelby Smith Stewart Sullivan Sumner Tipton Trousdale Unicoi Union Unknown Van Buren Warren Washington Wayne Weakley White Williamson Wilson Anderson Andrews Angelina Aransas Archer Armstrong Atascosa Austin Bailey Bandera Bastrop Baylor Bee Bell Bexar Blanco Borden Bosque Bowie Brazoria Brazos Brewster Briscoe Brooks Brown Burleson Burnet Caldwell Calhoun Callahan Cameron Camp Carson Cass Castro Chambers Cherokee Childress Clay Cochran Coke Coleman Collin Collingsworth Colorado Comal Comanche Concho Cooke Coryell Cottle Crane Crockett Crosby Culberson Dallam Dallas Dawson DeWitt Deaf Smith Delta Denton Dickens Dimmit Donley Duval Eastland Ector Edwards El Paso Ellis Erath Falls Fannin Fayette Fisher Floyd Foard Fort Bend Franklin Freestone Frio Gaines Galveston Garza Gillespie Glasscock Goliad Gonzales Gray Grayson Gregg Grimes Guadalupe Hale Hall Hamilton Hansford Hardeman Hardin Harris Harrison Hartley Haskell Hays Hemphill Henderson Hidalgo Hill Hockley Hood Hopkins Houston Howard Hudspeth Hunt Hutchinson Irion Jack Jackson Jasper Jeff Davis Jefferson Jim Hogg Jim Wells Johnson Jones Karnes Kaufman Kendall Kenedy Kent Kerr Kimble King Kinney Kleberg Knox La Salle Lamar Lamb Lampasas Lavaca Lee Leon Liberty Limestone Lipscomb Live Oak Llano Loving Lubbock Lynn Madison Marion Martin Mason Matagorda Maverick McCulloch McLennan McMullen Medina Menard Midland Milam Mills Mitchell Montague Montgomery Moore Morris Motley Nacogdoches Navarro Newton Nolan Nueces Ochiltree Oldham Orange Palo Pinto Panola Parker Parmer Pecos Polk Potter Presidio Rains Randall Reagan Real Red River Reeves Refugio Roberts Robertson Rockwall Runnels Rusk Sabine San Augustine San Jacinto San Patricio San Saba Schleicher Scurry Shackelford Shelby Sherman Smith Somervell Starr Stephens Sterling Stonewall Sutton Swisher Tarrant Taylor Terrell Terry Throckmorton Titus Tom Green Travis Trinity Tyler Unknown Upshur Upton Uvalde Val Verde Van Zandt Victoria Walker Waller Ward Washington Webb Wharton Wheeler Wichita Wilbarger Willacy Williamson Wilson Winkler Wise Wood Yoakum Young Zapata Zavala Beaver Box Elder Cache Carbon Daggett Davis Duchesne Emery Garfield Grand Iron Juab Kane Millard Morgan Piute Rich Salt Lake San Juan Sanpete Sevier Summit Tooele Uintah Unknown Utah Wasatch Washington Wayne Weber Addison Bennington Caledonia Chittenden Essex Franklin Grand Isle Lamoille Orange Orleans Rutland Unknown Washington Windham Windsor St. Croix St. John St. Thomas Unknown Accomack Albemarle Alexandria city Alleghany Amelia Amherst Appomattox Arlington Augusta Bath Bedford Bland Botetourt Bristol city Brunswick Buchanan Buckingham Buena Vista city Campbell Caroline Carroll Charles City Charlotte Charlottesville city Chesapeake city Chesterfield Clarke Colonial Heights city Covington city Craig Culpeper Cumberland Danville city Dickenson Dinwiddie Emporia city Essex Fairfax Fairfax city Falls Church city Fauquier Floyd Fluvanna Franklin Franklin city Frederick Fredericksburg city Galax city Giles Gloucester Goochland Grayson Greene Greensville Halifax Hampton city Hanover Harrisonburg city Henrico Henry Highland Hopewell city Isle of Wight James City King George King William King and Queen Lancaster Lee Lexington city Loudoun Louisa Lunenburg Lynchburg city Madison Manassas Park city Manassas city Martinsville city Mathews Mecklenburg Middlesex Montgomery Nelson New Kent Newport News city Norfolk city Northampton Northumberland Norton city Nottoway Orange Page Patrick Petersburg city Pittsylvania Poquoson city Portsmouth city Powhatan Prince Edward Prince George Prince William Pulaski Radford city Rappahannock Richmond Richmond city Roanoke Roanoke city Rockbridge Rockingham Russell Salem city Scott Shenandoah Smyth Southampton Spotsylvania Stafford Staunton city Suffolk city Surry Sussex Tazewell Unknown Virginia Beach city Warren Washington Waynesboro city Westmoreland Williamsburg city Winchester city Wise Wythe York Adams Asotin Benton Chelan Clallam Clark Columbia Cowlitz Douglas Ferry Franklin Garfield Grant Grays Harbor Island Jefferson King Kitsap Kittitas Klickitat Lewis Lincoln Mason Okanogan Pacific Pend Oreille Pierce San Juan Skagit Skamania Snohomish Spokane Stevens Thurston Unknown Wahkiakum Walla Walla Whatcom Whitman Yakima Barbour Berkeley Boone Braxton Brooke Cabell Calhoun Clay Doddridge Fayette Gilmer Grant Greenbrier Hampshire Hancock Hardy Harrison Jackson Jefferson Kanawha Lewis Lincoln Logan Marion Marshall Mason McDowell Mercer Mineral Mingo Monongalia Monroe Morgan Nicholas Ohio Pendleton Pleasants Pocahontas Preston Putnam Raleigh Randolph Ritchie Roane Summers Taylor Tucker Tyler Unknown Upshur Wayne Webster Wetzel Wirt Wood Wyoming Adams Ashland Barron Bayfield Brown Buffalo Burnett Calumet Chippewa Clark Columbia Crawford Dane Dodge Door Douglas Dunn Eau Claire Florence Fond du Lac Forest Grant Green Green Lake Iowa Iron Jackson Jefferson Juneau Kenosha Kewaunee La Crosse Lafayette Langlade Lincoln Manitowoc Marathon Marinette Marquette Menominee Milwaukee Monroe Oconto Oneida Outagamie Ozaukee Pepin Pierce Polk Portage Price Racine Richland Rock Rusk Sauk Sawyer Shawano Sheboygan St. Croix Taylor Trempealeau Unknown Vernon Vilas Walworth Washburn Washington Waukesha Waupaca Waushara Winnebago Wood Albany Big Horn Campbell Carbon Converse Crook Fremont Goshen Hot Springs Johnson Laramie Lincoln Natrona Niobrara Park Platte Sheridan Sublette Sweetwater Teton Uinta Unknown Washakie Weston\nconfirmed_cases 370662.0 1127507.0 174840.0 148219.0 349468.0 119697.0 201832.0 740887.0 266821.0 120792.0 291187.0 73785.0 223181.0 108488.0 81456.0 305190.0 382578.0 101927.0 41572.0 283436.0 100997.0 494812.0 293052.0 350520.0 592516.0 563060.0 290139.0 774935.0 101831.0 378225.0 135981.0 69527.0 142583.0 109359.0 619518.0 379999.0 4241109.0 82672.0 450940.0 146599.0 1062969.0 502126.0 140960.0 102042.0 1696898.0 171541.0 193639.0 877630.0 2778755.0 118429.0 1836756.0 804949.0 104120.0 152000.0 229100.0 137271.0 334536.0 1280177.0 512115.0 99323.0 440143.0 267773.0 1664904.0 500720.0 119259.0 110796.0 165170.0 2875.0 17883.0 1448355.0 102289.0 13174.0 3828.0 9438.0 335620.0 2224.0 86134.0 225097.0 20323.0 33528.0 32264.0 943.0 303951.0 19998.0 41807.0 31903.0 2869.0 5825.0 17570.0 738.0 21088.0 23533.0 29381.0 3181.0 18308.0 834942.0 478249.0 994627.0 328861.0 219039.0 22228.0 126418.0 30144245.0 885235.0 1324578.0 5444110.0 2317603.0 624614.0 13.0 672192.0 2730124.0 99987.0 99075.0 115503.0 1510270.0 166872.0 67265.0 11947.0 160475.0 171422.0 89904.0 84409.0 88145.0 41703.0 113149.0 72955.0 730103.0 324006.0 429641.0 98229.0 32820.0 69245.0 88039.0 555777.0 76393.0 49114.0 426518.0 65383.0 273055.0 93727.0 387859.0 100883.0 224445.0 82694.0 147287.0 644732.0 176017.0 27181.0 120924.0 207650.0 419650.0 71541.0 101164.0 281149.0 83727.0 33609.0 221173.0 365261.0 32879.0 30998.0 52758.0 45995.0 72802.0 26573.0 113007.0 45707.0 168165.0 78041.0 456667.0 37709.0 2027440.0 104690.0 513355.0 34664.0 32470.0 789668.0 255985.0 68184.0 330667.0 58187.0 195244.0 358737.0 43635.0 1985759.0 268318.0 18864.0 257123.0 4319856.0 2827.0 85707.0 516050.0 65984.0 100912.0 3292835.0 41567.0 294763.0 5401142.0 115881.0 115677.0 2486469.0 39360.0 6042885.0 1521392.0 112498.0 226223.0 59976957.0 839936.0 1243628.0 17618.0 187074.0 1649808.0 9011.0 54922.0 1997925.0 384599.0 147546.0 11731923.0 838843.0 18471.0 12947120.0 4674911.0 261093.0 12451039.0 10827207.0 2289679.0 3823964.0 768331.0 2089742.0 1801476.0 4664377.0 537760.0 407494.0 1541.0 58878.0 1377978.0 1530230.0 3207195.0 391378.0 164470.0 10621.0 3125147.0 102183.0 7.0 2713987.0 607446.0 250430.0 2987086.0 74118.0 2994287.0 21869.0 9609.0 24789.0 1110606.0 209279.0 83452.0 5049.0 17548.0 16036.0 9894.0 77278.0 7128.0 70023.0 4019537.0 1740.0 986875.0 338855.0 2548795.0 57250.0 196199.0 257918.0 7517.0 33703.0 78072.0 1153.0 12004.0 2251.0 2027485.0 2221.0 29535.0 116163.0 30104.0 924342.0 19544.0 24647.0 274126.0 418682.0 4404.0 23636.0 63488.0 125956.0 226881.0 61425.0 10051.0 22660.0 14693.0 65095.0 49097.0 646704.0 11557.0 29028.0 61898.0 30329.0 1829.0 26767.0 7719.0 158089.0 59737.0 6823.0 23610.0 1547929.0 35860.0 5920424.0 4264912.0 600463.0 504691.0 4415214.0 709833.0 398645.0 86781.0 313268.0 766563.0 2637082.0 1713448.0 37284.0 3644621.0 1541591.0 256360.0 1127568.0 185658.0 1900201.0 15184060.0 118466.0 661325.0 552253.0 1012841.0 2578370.0 673381.0 325820.0 135198.0 6021293.0 2339366.0 346073.0 104921.0 480190.0 100444.0 99486.0 147042.0 159846.0 254119.0 413531.0 626903.0 450851.0 8217627.0 149634.0 654832.0 511538.0 103870.0 182202.0 1449706.0 4205959.0 1854478.0 190288.0 101694.0 182737.0 2336760.0 1739926.0 958531.0 33036396.0 404045.0 403631.0 1072588.0 279833.0 7989282.0 2478503.0 9329977.0 1932695.0 4549325.0 3809838.0 398453.0 1015713.0 1722982.0 1823333.0 1109266.0 1518137.0 462427.0 473833.0 222786.0 153907.0 298430.0 2166172.0 205495.0 427588.0 201559.0 197080.0 88156.0 119374.0 19339.0 380511.0 102217.0 456504.0 664035.0 146494.0 96775.0 1092627.0 89879.0 93754.0 104963.0 203640.0 488052.0 164828.0 157599.0 56707.0 237126.0 80021.0 683872.0 257353.0 113221.0 1529891.0 274008.0 146289.0 1326975.0 955760.0 24688.0 1493989.0 72119.0 4129249.0 422102.0 414727.0 802019.0 117971.0 644912.0 35798.0 140768.0 62056.0 155760.0 3959866.0 224587.0 118964.0 81212.0 737932.0 778380.0 113959.0 52489.0 270963.0 139483.0 183614.0 74367.0 127354.0 408817.0 656120.0 865091.0 155600.0 5782192.0 178806.0 10234.0 631255.0 415333.0 147015.0 102432.0 5663706.0 355502.0 1914707.0 84044.0 132430.0 161563.0 107551.0 48328.0 1150536.0 657637.0 59714.0 424153.0 60394.0 134038.0 141284.0 72480.0 78698.0 105930.0 90541.0 60211.0 335684.0 171367.0 206053.0 42688.0 45491.0 860392.0 168061.0 54226.0 145285.0 40006.0 122993.0 52802.0 115814.0 53624.0 180717.0 145096.0 55777.0 102255.0 208575.0 1141744.0 542748.0 175445.0 75402.0 636032.0 137833.0 136663.0 154406.0 94217.0 298444.0 58192.0 137804.0 9682.0 75976.0 73439.0 1376105.0 389112.0 22992.0 70299.0 67839.0 318629.0 209739.0 88847.0 223565.0 35726.0 4573.0 151791.0 44540.0 86160.0 82232.0 304053.0 372076.0 236365.0 67023.0 48465.0 596588.0 72125.0 36221.0 131900.0 557231.0 207983.0 316976.0 419781.0 351196.0 28547.0 142521.0 212059.0 9976.0 53107.0 163969.0 1002619.0 59793.0 57591.0 65048.0 127181.0 869347.0 164214.0 1842606.0 22.0 15271.0 107138.0 202.0 3020647.0 11231.0 396378.0 15520.0 31014.0 251072.0 203479.0 16399.0 100177.0 717787.0 29320.0 11267.0 5064.0 1778085.0 37389.0 215304.0 5422.0 37385.0 14323.0 95785.0 56922.0 63736.0 88522.0 91135.0 60087.0 146739.0 200387.0 776898.0 143270.0 34816.0 16039.0 34304.0 338663.0 183280.0 182684.0 12456.0 75039.0 179449.0 49849.0 52348.0 50675.0 667360.0 1219.0 26460.0 83273.0 394127.0 23955.0 91338.0 383205.0 24368.0 179206.0 19208.0 83879.0 104809.0 1085820.0 158846.0 66176.0 65080.0 315141.0 329761.0 39394758.0 99258.0 57196.0 49878.0 494327.0 117070.0 5109381.0 61645.0 20478.0 234472.0 140948.0 59343.0 181017.0 110788.0 20217.0 66684.0 236260.0 30205.0 75597.0 11890.0 24029.0 217460.0 145818.0 298069.0 59687.0 182781.0 112214.0 92765.0 61581.0 3717903.0 855140.0 643440.0 245327.0 530269.0 4610889.0 86800.0 160532.0 167684.0 143957.0 544273.0 182810.0 1439638.0 203339.0 32648.0 58002.0 44261.0 138736.0 1451732.0 776125.0 41292.0 61147.0 196554.0 113644.0 198676.0 76807.0 265010.0 888866.0 106589.0 59293.0 73396.0 9085.0 45839.0 18455.0 248869.0 65036.0 856322.0 100015.0 857654.0 25010.0 20042.0 115258.0 1708334.0 21251.0 218421.0 571294.0 137058.0 310908.0 324807.0 52130.0 107429.0 64632.0 80241.0 56322.0 315596.0 4166034.0 342266.0 1924930.0 149572.0 137648.0 1937223.0 376952.0 37746.0 51795.0 302560.0 38518.0 83661.0 533200.0 598636.0 109047.0 206725.0 34063.0 167868.0 173121.0 235033.0 158600.0 532608.0 287876.0 1902484.0 163973.0 368977.0 73669.0 91455.0 85543.0 176759.0 361702.0 129720.0 1485922.0 316374.0 173288.0 810939.0 263657.0 411082.0 117587.0 267306.0 146204.0 87725.0 109967.0 107714.0 800904.0 168926.0 445211.0 178965.0 493823.0 3159001.0 197429.0 566375.0 5908511.0 320569.0 38155.0 164880.0 566681.0 172128.0 254053.0 60210.0 285013.0 24981.0 87004.0 64878.0 58627.0 85242.0 53252.0 795317.0 119304.0 46158.0 156679.0 113085.0 135597.0 69464.0 124744.0 331254.0 83143.0 1828774.0 95108.0 146550.0 98121.0 27475.0 858432.0 64078.0 31858.0 8.0 1032299.0 58351.0 563352.0 140974.0 23998.0 348803.0 83609.0 365054.0 114472.0 154936.0 126615.0 34644.0 14696.0 85186.0 58137.0 26226.0 131369.0 1225502.0 136927.0 158389.0 96243.0 472519.0 84979.0 78051.0 179956.0 66434.0 93149.0 307790.0 78596.0 69280.0 62628.0 107332.0 90825.0 293841.0 250074.0 725589.0 40896.0 26645.0 121303.0 245180.0 144327.0 873551.0 76623.0 84187.0 90895.0 78115.0 32224.0 41084.0 69513.0 72806.0 106396.0 73914.0 99965.0 96534.0 174695.0 49323.0 65615.0 41467.0 78979.0 119844.0 232216.0 59003.0 1056954.0 157897.0 45359.0 90271.0 181436.0 1280548.0 127044.0 35836.0 90408.0 66492.0 120086.0 185265.0 458273.0 81560.0 63159.0 44201.0 45099.0 40303.0 331506.0 115156.0 49233.0 85630.0 56980.0 280350.0 52412.0 3858027.0 618849.0 93050.0 19554.0 73070.0 981421.0 76044.0 383032.0 701606.0 199996.0 45434.0 59831.0 34712.0 32865.0 319130.0 270463.0 147833.0 25213.0 343685.0 80363.0 89924.0 1365192.0 32389.0 150917.0 28841.0 31088.0 83229.0 13322.0 140885.0 52935.0 54469.0 288836.0 17991.0 7267.0 111920.0 17055.0 15734.0 30243.0 43578.0 36159.0 6179.0 131999.0 243077.0 14750.0 61904.0 40770.0 480898.0 14654.0 4026.0 217586.0 51085.0 611203.0 687139.0 107111.0 105835.0 22987.0 12491.0 70915.0 37558.0 6001.0 21135.0 15289.0 28223.0 144775.0 27575.0 10216.0 72256.0 63134.0 8506.0 2771261.0 34271.0 29360.0 10170.0 87814.0 6766.0 522439.0 7328.0 27685.0 16032.0 287564.0 38002.0 36607.0 119498.0 30725.0 100442.0 17803.0 117108.0 17187.0 11541.0 73307.0 59080.0 22222.0 75683.0 41466.0 6947.0 22438.0 67065.0 36395.0 69216.0 37271.0 18798.0 406388.0 26229.0 35695.0 361447.0 27834.0 19043.0 39329.0 231549.0 38291.0 2552711.0 412273.0 765594.0 23126.0 32766.0 9673.0 16484.0 14809.0 39409.0 69905.0 55596.0 17141.0 0.0 26629.0 9568.0 18959.0 9245.0 27020.0 6851.0 1542143.0 102640.0 90830.0 51207.0 15821.0 193841.0 27025.0 126837.0 495851.0 56034.0 155037.0 98554.0 15834.0 30014.0 40978.0 267332.0 92636.0 51835.0 163475.0 286368.0 19955.0 44025.0 69224.0 67250.0 318719.0 95708.0 96164.0 44602.0 25130.0 28765.0 387885.0 44080.0 42551.0 40744.0 1853589.0 34300.0 94671.0 153719.0 33139.0 29563.0 55389.0 67208.0 197867.0 101530.0 56977.0 122289.0 27811.0 385900.0 99822.0 51872.0 75651.0 211485.0 53191.0 18057.0 202045.0 77518.0 4121871.0 176963.0 62980.0 604959.0 50675.0 125817.0 52744.0 240370.0 33242.0 49950.0 24826.0 50966.0 51155.0 70117.0 27214.0 142273.0 20693.0 389366.0 38088.0 89838.0 91968.0 35493.0 44032.0 251274.0 54320.0 34648.0 71323.0 13924.0 68949.0 37023.0 62879.0 87386.0 27081.0 208647.0 179252.0 15710.0 125243.0 261759.0 23692.0 16967.0 32559.0 100273.0 165315.0 37748.0 218438.0 6370.0 53200.0 69801.0 75362.0 183987.0 263450.0 76124.0 62281.0 102804.0 44771.0 41518.0 19539.0 70552.0 951.0 945989.0 50387.0 63737.0 54042.0 141653.0 15354.0 79140.0 591296.0 303897.0 806773.0 162010.0 290169.0 196162.0 113903.0 758771.0 1912420.0 1527394.0 74877.0 42089.0 89606.0 99477.0 116060.0 195748.0 3066400.0 121419.0 281367.0 250805.0 249298.0 104873.0 567250.0 320801.0 140010.0 4009167.0 248333.0 99230.0 1760552.0 736132.0 289577.0 798387.0 162281.0 171549.0 253667.0 3007887.0 1369346.0 163223.0 207383.0 881679.0 72397.0 170244.0 179155.0 305519.0 405263.0 76373.0 174479.0 372847.0 668107.0 419810.0 369217.0 1507975.0 944784.0 29078.0 716821.0 206590.0 250818.0 367747.0 197219.0 346003.0 265645.0 188899.0 79212.0 129457.0 131812.0 196745.0 18940.0 611432.0 24716.0 23800.0 92330.0 19532.0 16469.0 43716.0 93508.0 4244.0 20799.0 38529.0 928.0 28792.0 14412.0 302518.0 258285.0 2368148.0 4056706.0 3537899.0 220672.0 141433.0 485909.0 271682.0 637000.0 130775.0 1017254.0 56244.0 728251.0 1172698.0 73822.0 5336053.0 6830963.0 145869.0 94596.0 302840.0 112545.0 400.0 487938.0 475241.0 207761.0 516916.0 233022.0 2987245.0 27782.0 5645084.0 123002.0 2447214.0 358802.0 7884235.0 34418.0 2957339.0 2714013.0 6551555.0 832289.0 4106385.0 17740.0 21280.0 339036.0 64934.0 35604.0 34069.0 30804.0 165438.0 384320.0 32794.0 663217.0 409691.0 541848.0 199644.0 51226.0 40983.0 98596.0 62845.0 249977.0 38592.0 189547.0 119926.0 280051.0 76796.0 1600902.0 59600.0 66673.0 169129.0 181451.0 152595.0 132142.0 80566.0 907978.0 266536.0 73323.0 56590.0 215047.0 885923.0 913802.0 32139.0 3289396.0 4638.0 16186.0 311590.0 36073.0 433179.0 519184.0 61769.0 24671.0 4363582.0 35097.0 262050.0 56489.0 96237.0 114422.0 242036.0 25879.0 510602.0 168108.0 12500.0 777058.0 144148.0 5762554.0 140881.0 42879.0 20166.0 44836.0 15790.0 79216.0 1195053.0 22148.0 49777.0 909530.0 71464.0 13963.0 192335.0 430575.0 254457.0 171947.0 281458.0 258623.0 1223618.0 9444432.0 52946.0 52393.0 2002667.0 148529.0 173561.0 240849.0 26941.0 405543.0 101491.0 140369.0 427279.0 100015.0 80829.0 237182.0 460584.0 32858.0 5069.0 80864.0 259810.0 2130239.0 79518.0 183786.0 52375.0 58351.0 153990.0 163827.0 23400.0 7294457.0 57191.0 76901.0 142456.0 154127.0 47918.0 49486.0 382977.0 15380.0 35397.0 28937.0 29077.0 8276.0 134105.0 32093.0 206662.0 22886.0 35632.0 118287.0 170571.0 98133.0 107944.0 161922.0 328838.0 55870.0 153260.0 512504.0 27161.0 709787.0 226952.0 51862.0 126638.0 66970.0 181953.0 40013.0 2994212.0 17177.0 68245.0 66849.0 414286.0 63897.0 81243.0 768003.0 464515.0 62840.0 675443.0 1352426.0 177735.0 38069.0 47376.0 183470.0 12078.0 57295.0 83396.0 56877.0 134741.0 1254903.0 107846.0 32173.0 242819.0 640900.0 54631.0 194474.0 169941.0 74280.0 164083.0 55379.0 337889.0 109417.0 89764.0 150505.0 43060.0 95606.0 124188.0 126745.0 212010.0 254999.0 179688.0 1245113.0 536127.0 44616.0 159401.0 81279.0 215066.0 146743.0 877881.0 1458014.0 223532.0 78214.0 15852.0 179794.0 775230.0 126247.0 51286.0 74832.0 534493.0 70230.0 399766.0 379137.0 482953.0 97504.0 225025.0 603735.0 290854.0 255350.0 335091.0 706992.0 174273.0 249088.0 270626.0 99687.0 357912.0 165699.0 115289.0 344845.0 296063.0 208184.0 83019.0 247003.0 260977.0 172742.0 69094.0 734394.0 271162.0 45890.0 209384.0 112314.0 86718.0 271186.0 136146.0 217497.0 154422.0 135105.0 88998.0 216106.0 2144.0 116599.0 276051.0 442052.0 192524.0 68917.0 62274.0 166096.0 96863.0 231271.0 110121.0 73157.0 16560.0 137526.0 134787.0 57641.0 45509.0 77423.0 73500.0 1017686.0 651651.0 194134.0 32222.0 228651.0 235587.0 505759.0 41064.0 25669.0 388039.0 36582.0 18398.0 384663.0 22853.0 490735.0 79281.0 503991.0 104845.0 104005.0 30562.0 52486.0 30704.0 48097.0 41231.0 43656.0 173575.0 453609.0 42159.0 40800.0 1469075.0 44169.0 36978.0 83196.0 31094.0 22001.0 43616.0 157072.0 20349.0 1790202.0 521168.0 1128954.0 251311.0 320617.0 2582379.0 11858.0 171438.0 141832.0 168440.0 35282.0 227839.0 28001.0 77921.0 51538.0 75868.0 29369.0 161717.0 237578.0 7736.0 134317.0 83725.0 105819.0 30795.0 29786.0 96546.0 128392.0 323595.0 175801.0 33855.0 73480.0 26888.0 116857.0 148314.0 304324.0 144928.0 76727.0 174732.0 171654.0 167328.0 11586.0 40357.0 98310.0 62057.0 20770.0 45024.0 184354.0 10523.0 14454.0 248570.0 31769.0 18954.0 2112403.0 25011.0 476023.0 5813393.0 1650669.0 81535.0 149578.0 111091.0 59107.0 285754.0 85378.0 425.0 58731.0 137947.0 117689.0 46076.0 164582.0 6670.0 75785.0 45876.0 191355.0 38280.0 14965.0 46633.0 7858.0 363653.0 18917.0 55599.0 7231.0 47338.0 56425.0 14422.0 43918.0 519796.0 603724.0 5224.0 104626.0 2443.0 10415.0 102292.0 37126.0 3996.0 94418.0 216080.0 6106.0 59415.0 35813.0 8415.0 8798.0 5297.0 370568.0 16178.0 49218.0 528.0 28645.0 23513.0 6720.0 37952.0 6181.0 106353.0 49083.0 103446.0 96529.0 20446.0 17817.0 146583.0 33130.0 17903.0 16136.0 50971.0 2591.0 0.0 43674.0 8364.0 6483.0 971916.0 178820.0 27068.0 998.0 1230.0 845.0 25719.0 43304.0 10216.0 12316.0 318765.0 32225.0 49824.0 107029.0 31489.0 20324.0 14687.0 35541.0 33870.0 203622.0 52030.0 42083.0 551828.0 37405.0 299716.0 3091.0 34770.0 327405.0 4391658.0 5064.0 24980.0 13887.0 7641.0 20551.0 107656.0 5801.0 6921.0 11455.0 1133.0 10189.0 620521.0 52312.0 10005.0 2877.0 8004.0 40288.0 3515.0 32914.0 26530.0 25324.0 42643.0 28699.0 1797.0 15359.0 42524.0 1678764.0 179349.0 3042.0 1875.0 291639.0 1648.0 37946.0 28323.0 20129.0 30526.0 15828.0 60380.0 7614.0 11934.0 46736.0 34878.0 331624.0 26385.0 45003.0 26230.0 7724.0 199509.0 1115351.0 119432.0 243908.0 74305.0 21870.0 9941.0 2129.0 18838.0 18653.0 2581.0 64598.0 24437.0 15165.0 100125.0 57682.0 16588.0 1106.0 82013.0 226387.0 66102.0 14648193.0 98751.0 265009.0 873.0 2190.0 45959.0 23773.0 12584.0 126352.0 8215.0 142050.0 13232.0 4071.0 1804.0 2579136.0 22080.0 76099.0 44377.0 59160.0 23602.0 60382.0 1306428.0 236338.0 683873.0 185594.0 22777.0 26075.0 1122202.0 6329113.0 1991401.0 2782020.0 258949.0 908988.0 6098871.0 1207606.0 5893005.0 390694.0 2349382.0 5464413.0 3332046.0 2327723.0 3560974.0 5339371.0 269765.0 1600675.0 438099.0 5092371.0 225922.0 419716.0 2461507.0 3168.0 403282.0 210150.0 21994.0 277584.0 3031.0 1204916.0 259299.0 44398.0 20864.0 558.0 23158.0 417411.0 66502.0 13343.0 159982.0 1098886.0 3923.0 316580.0 21579.0 127897.0 91228.0 894160.0 39529.0 510624.0 423864.0 26106.0 53949.0 64096.0 37876.0 17086.0 592.0 267550.0 879845.0 82354.0 572496.0 115333.0 104470.0 174951.0 258352.0 82852.0 59226.0 162280.0 95740.0 46000.0 1374513.0 3259679.0 38836.0 29891.0 91366.0 127639.0 103711.0 5078.0 100472.0 70564.0 34078.0 86115.0 150384.0 1974124.0 68337.0 12715638.0 66041397.0 544541.0 719675.0 1367972.0 164358.0 3323862.0 98122.0 163178.0 76498.0 467528.0 265974.0 4244950.0 316121.0 384223.0 29118.0 25416.0 39291.0 114388.0 194106.0 12677187.0 424491.0 111652.0 129648.0 614296.0 0.0 100478.0 80910.0 125233.0 10508851.0 62078.0 28012.0 874074.0 159513.0 49447.0 121094.0 78294.0 88969.0 194838.0 116409.0 184799.0 378531.0 690256.0 518345.0 890999.0 423108.0 23425.0 181895.0 94568.0 791808.0 369938.0 113514.0 71156.0 30095.0 495982.0 322638.0 364620.0 1163807.0 39499.0 71358.0 662077.0 146984.0 522181.0 1683211.0 298693.0 1698678.0 266476.0 1208695.0 27187.0 30126.0 372359.0 139335.0 2024561.0 242263.0 492634.0 138884.0 447701.0 134556.0 255924.0 23932.0 685155.0 162119.0 1013147.0 33513.0 367683.0 252858.0 383268.0 132072.0 43200.0 104515.0 228512.0 6172191.0 48673.0 199234.0 378124.0 514395.0 859585.0 105150.0 556733.0 519910.0 45871.0 146815.0 225243.0 40040.0 110436.0 951866.0 62343.0 696521.0 224928.0 958209.0 315894.0 762997.0 301795.0 480324.0 221931.0 381695.0 126139.0 335026.0 44706.0 66043.0 21210.0 1031621.0 242245.0 3828052.0 86948.0 42308.0 193092.0 804474.0 326106.0 506253.0 189520.0 56260.0 12007.0 75912.0 76320.0 3785.0 39872.0 17378.0 13877.0 1023901.0 1624120.0 25233.0 41426.0 8738.0 28409.0 28771.0 32281.0 33193.0 14542.0 695449.0 11287.0 19135.0 18485.0 16435.0 29465.0 14667.0 33706.0 22436.0 76236.0 82887.0 65571.0 347154.0 89578.0 26761.0 10165.0 43523.0 27160.0 89955.0 34217.0 17893.0 92547.0 100297.0 23896.0 6513.0 43915.0 2324.0 332650.0 10187.0 190882.0 15370.0 55853.0 3878.0 103895.0 529290.0 24309.0 274462.0 12736.0 264.0 2491.0 64549.0 488820.0 115273.0 245513.0 201897.0 215807.0 227498.0 107721.0 1673721.0 56526.0 100509.0 568375.0 611028.0 116265.0 513214.0 91773.0 129854.0 4836405.0 253614.0 132864.0 654255.0 273267.0 613898.0 93945.0 6598315.0 129135.0 75712.0 248398.0 522815.0 91848.0 3703616.0 244113.0 98240.0 25668.0 99724.0 104656.0 69864.0 142951.0 180984.0 100771.0 146712.0 125553.0 658874.0 196859.0 609763.0 122279.0 806894.0 1924831.0 204627.0 994804.0 870144.0 509699.0 44712.0 301649.0 468329.0 42537.0 2232498.0 27264.0 100907.0 236404.0 46100.0 144033.0 58679.0 91730.0 729715.0 71721.0 411593.0 151046.0 208428.0 366609.0 265554.0 185750.0 200920.0 169047.0 189893.0 1058107.0 1660781.0 648239.0 366409.0 188431.0 1304.0 79340.0 25024.0 926502.0 136577.0 346720.0 106759.0 522006.0 79467.0 141778.0 33466.0 75969.0 20229.0 120632.0 37087.0 261808.0 202397.0 669260.0 163006.0 238957.0 80205.0 6547.0 1397163.0 25117.0 464481.0 21518.0 94765.0 279836.0 180036.0 208193.0 19630.0 12374.0 374760.0 135838.0 264574.0 18449.0 33558.0 12474.0 16233.0 60798.0 62037.0 187501.0 19481.0 48560.0 175414.0 89707.0 30704.0 34246.0 246651.0 129409.0 144737.0 53304.0 38291.0 63383.0 163990.0 240485.0 276924.0 85729.0 57122.0 415997.0 49474.0 42818.0 79109.0 4282892.0 193253.0 222192.0 192320.0 66267.0 450452.0 200491.0 161602.0 348914.0 43039.0 14266.0 435198.0 123821.0 187296.0 150184.0 354513.0 32031.0 3806467.0 7293.0 332957.0 256029.0 34940.0 41453.0 168459.0 26466.0 86871.0 670903.0 42008.0 51007.0 46691.0 23098.0 13108.0 247890.0 82358.0 2156.0 8082.0 7143.0 57708.0 347096.0 111883.0 59930.0 97487.0 11622.0 405409.0 101401.0 161332.0 291386.0 1124803.0 90671.0 1890125.0 136905.0 3400.0 15521.0 582507.0 102860.0 1.0 7635.0 64766.0 1182490.0 429.0 188454.0 247631.0 3316642.0 164127.0 523091.0 129999.0 1992179.0 342631.0 146213.0 2489286.0 434181.0 359492.0 4163.0 161212.0 586190.0 1723860.0 82052.0 152621.0 79325.0 213313.0 178947.0 596240.0 1029699.0 2983549.0 49412.0 565334.0 277550.0 9237.0 546448.0 27074.0 72058.0 179573.0 229506.0 70755.0 73706.0 737969.0 2151974.0 213612.0 652735.0 1693615.0 1323855.0 249594.0 50861.0 277557.0 142324.0 544525.0 3300740.0 62937.0 1353479.0 287114.0 79366.0 9965399.0 161357.0 21021.0 452752.0 98576.0 164987.0 6092.0 82442.0 75547.0 153349.0 18.0 83521.0 36295.0 453840.0 80267.0 933726.0 39866.0 1336351.0 32468.0 69541.0 94230.0 59742.0 36090.0 53058.0 174161.0 31462.0 48131.0 94425.0 723316.0 75817.0 349813.0 66547.0 139931.0 573583.0 88803.0 85144.0 28278.0 55547.0 72431.0 62018.0 48397.0 123720.0 3783.0 160068.0 101064.0 58786.0 24035.0 62486.0 39005.0 348799.0 117191.0 65683.0 33724.0 109698.0 65385.0 47822.0 74570.0 86935.0 32055.0 69878.0 19707.0 93665.0 58643.0 47610.0 110632.0 13761.0 25620.0 160796.0 80711.0 98584.0 51944.0 122518.0 67742.0 34382.0 29024.0 195481.0 43743.0 35302.0 124224.0 37916.0 86041.0 50347.0 1471552.0 100245.0 112450.0 40590.0 264449.0 283619.0 224126.0 375911.0 43143.0 139539.0 186535.0 17362.0 43405.0 64653.0 86823.0 139932.0 633016.0 159222.0 5190154.0 949116.0 285581.0 119251.0 753784.0 64251.0 938027.0 111718.0 131032.0 1038849.0 1028483.0 84952.0 2940239.0 243090.0 205582.0 243596.0 221273.0 210328.0 411981.0 212967.0 807834.0 139958.0 155554.0 971705.0 384711.0 3198685.0 421998.0 117342.0 2130846.0 148755.0 416988.0 437676.0 340610.0 143430.0 1520020.0 178696.0 187616.0 42378.0 262609.0 375819.0 575268.0 739121.0 2804533.0 125754.0 1528887.0 630458.0 126872.0 0.0 253328.0 1194346.0 29971.0 237493.0 24523.0 96211.0 208733.0 337731.0 44626.0 39822.0 52649.0 8501.0 72602.0 19470.0 127275.0 231321.0 31684.0 47501.0 168388.0 30424.0 26573.0 69989.0 25106.0 22470.0 30406.0 25341.0 49775.0 33469.0 12296.0 36480.0 20539.0 18780.0 5485.0 133075.0 42309.0 8425.0 16414.0 24441.0 4507.0 31398.0 68434.0 154876.0 475451.0 43636.0 14120.0 43791.0 11191.0 149344.0 14009.0 16051.0 2168267.0 35348.0 132720.0 750383.0 14510.0 18840.0 63000.0 19213.0 44926.0 17460.0 6734.0 73599.0 40984.0 66867.0 122055.0 58.0 39921.0 149429.0 18037.0 323098.0 343815.0 79519.0 214519.0 613117.0 659436.0 156591.0 80123.0 188416.0 283484.0 201174.0 116054.0 101440.0 56549.0 185850.0 307578.0 125676.0 285075.0 6440443.0 136687.0 101496.0 313650.0 335933.0 272199.0 123519.0 220572.0 354989.0 162465.0 105333.0 318261.0 82025.0 431193.0 2218647.0 22508.0 300429.0 208200.0 215779.0 193706.0 225127.0 152296.0 133074.0 57353.0 72931.0 73243.0 259176.0 152871.0 2226977.0 205629.0 222058.0 282114.0 68701.0 174286.0 285101.0 242570.0 600422.0 126102.0 186318.0 611316.0 287959.0 166547.0 57438.0 244757.0 768898.0 41849.0 80819.0 275811.0 164160.0 50329.0 36390.0 83794.0 722722.0 212125.0 244939.0 512667.0 2223322.0 93332.0 62456.0 619694.0 6659977.0 162954.0 55850.0 641909.0 1211218.0 443311.0 404768.0 85701.0 81364.0 120859.0 35262.0 263128.0 626766.0 228470.0 237965.0 188941.0 1317541.0 883011.0 528963.0 110844.0 505390.0 57793.0 26118.0 5293.0 202749.0 88176.0 57420.0 33902.0 359807.0 7711.0 287472.0 1136305.0 11049348.0 27684.0 594.0 62618.0 321397.0 2091428.0 1410079.0 61546.0 4780.0 52555.0 190543.0 79937.0 169644.0 280614.0 138383.0 30865.0 3800623.0 71081.0 12174.0 87779.0 61679.0 268976.0 277064.0 60261.0 30240.0 15103.0 20103.0 19109.0 3243259.0 7734.0 90950.0 644292.0 62554.0 18616.0 113784.0 322933.0 7557.0 26735.0 36646.0 22299.0 17714.0 55868.0 17917241.0 114433.0 169770.0 235311.0 7270.0 2902371.0 8385.0 47050.0 17883.0 75824.0 44422.0 1087277.0 12036.0 7810026.0 937832.0 189083.0 83790.0 132972.0 95909.0 16564.0 29685.0 3347.0 3245185.0 33342.0 74003.0 164542.0 89155.0 2267474.0 22946.0 74243.0 3858.0 26545.0 185265.0 114966.0 479821.0 578869.0 216440.0 599327.0 447712.0 9786.0 32953.0 34177.0 11314.0 266482.0 25800069.0 218488.0 28236.0 15834.0 1209029.0 23574.0 264864.0 5670121.0 142700.0 121898.0 218402.0 112280.0 87631.0 202617.0 20924.0 347615.0 69898.0 3358.0 28512.0 106479.0 94581.0 5257.0 1475689.0 25343.0 257639.0 694347.0 196945.0 142441.0 668882.0 76587.0 1635.0 2581.0 133035.0 9120.0 189.0 9915.0 161365.0 16001.0 66340.0 294003.0 103268.0 49531.0 177857.0 52430.0 56449.0 376713.0 104872.0 12733.0 66117.0 35546.0 45.0 3121266.0 34003.0 128990.0 29444.0 25475.0 18785.0 193246.0 658333.0 32224.0 1669658.0 3902.0 233161.0 10344.0 882109.0 101050.0 14408.0 30716.0 62969.0 2273958.0 285184.0 38819.0 3063.0 310123.0 332714.0 31531.0 72109.0 3522706.0 56203.0 6215.0 394590.0 121206.0 92814.0 484998.0 100633.0 93756.0 209345.0 1474937.0 33310.0 29027.0 994888.0 22603.0 19721.0 39125.0 69937.0 51046.0 2951.0 68871.0 383767.0 52411.0 179995.0 20391.0 50179.0 42483.0 262866.0 25466.0 13678.0 168433.0 7641.0 110993.0 13722.0 1071992.0 35350.0 640963.0 33169.0 3674.0 3513.0 23368.0 34538.0 11699110.0 815828.0 2135.0 87794.0 2725.0 312110.0 924749.0 5726023.0 36247.0 47667.0 0.0 93959.0 9579.0 150545.0 426197.0 174411.0 746122.0 759643.0 164719.0 41209.0 144319.0 2532189.0 239021.0 20865.0 646777.0 65259.0 197585.0 1880765.0 161105.0 32166.0 209354.0 123270.0 56753.0 90633.0 66614.0 82165.0 16417.0 204077.0 809525.0 58081.0 500.0 1592938.0 44049.0 25523.0 19999.0 26076.0 206797.0 44758.0 20473.0 51659.0 43513.0 4149.0 4251.0 8521328.0 164025.0 102981.0 68414.0 284576.0 286155.0 61944.0 27275.0 4826166.0 240056.0 984847.0 3419.0 1257629.0 27348.0 33126.0 13374.0 241469.0 3824.0 41190.0 4692.0 17799.0 15179.0 13143.0 34031.0 2043.0 47994.0 37221.0 28622.0 85623.0 11404.0 118864.0 419.0 275638.0 266059.0 868987.0 33666.0 28694.0 92469.0 48466.0 962686.0 154212.0 5460.0 198473.0 19628.0 84747.0 50979.0 67475.0 44981.0 166403.0 27498.0 120397.0 79329.0 119003.0 19007.0 30591.0 225846.0 867810.0 1317478.0 25877.0 60776.0 14382.0 9208.0 305664.0 22979.0 185817.0 29378.0 84463.0 52432.0 34131.0 4918840.0 31079.0 18255.0 211799.0 38897.0 72494.0 140373.0 72137.0 259732.0 111000.0 90755.0 27509.0 59737.0 61805.0 64294.0 48745.0 146999.0 83907.0 372210.0 294127.0 491798.0 1219485.0 225455.0 2473.0 87578.0 143912.0 179763.0 55109.0 35182.0 14734.0 26737.0 85167.0 33422.0 1539770.0 71420.0 24015.0 306493.0 25421.0 132413.0 422883.0 82117.0 17641.0 144524.0 21107.0 386653.0 23417.0 48379.0 542771.0 929844.0 72607.0 33505.0 8993.0 69186.0 77763.0 99596.0 56696.0 152667.0 205673.0 19140.0 472117.0 56649.0 121492.0 170895.0 2814968.0 68452.0 123468.0 13341.0 88029.0 980160.0 281048.0 432119.0 31344.0 333773.0 81452.0 85827.0 68772.0 210653.0 108379.0 129166.0 457127.0 465553.0 82476.0 388170.0 21407.0 96811.0 101889.0 87.0 1421057.0 116029.0 172164.0 73814.0 62544.0 39450.0 133658.0 117419.0 69740.0 117750.0 160532.0 51349.0 1098908.0 436779.0 52081.0 918994.0 4561.0 165015.0 260112.0 8575.0 948472.0 4423.0 608096.0 113604.0 91307.0 20386.0 5766070.0 287863.0 127934.0 39505.0 132875.0 14401.0 94899.0 192817.0 26204.0 24065.0 2231739.0 8445.0 284205.0 14162.0 2131727.0 1797172.0 60216.0 333999.0 9352.0 2841.0 236519.0 323420.0 232149.0 2621530.0 34916.0 348630.0 62635.0 11001.0 57181.0 274383.0 6850.0 12856.0 10873.0 121344.0 17305.0 41573.0 55247.0 40330.0 70712.0 33114.0 137681.0 83481.0 145201.0 596202.0 22257.0 43609.0 120181.0 91890.0 96900.0 46671.0 43854.0 133125.0 96861.0 94648.0 397155.0 37463.0 28591.0 33538.0 137606.0 14817.0 12215.0 19230.0 66453.0 170124.0 149303.0 81419.0 12525.0 17189.0 21157.0 35469.0 13327.0 12971.0 2.0 42977.0 110930.0 5822.0 34268.0 9262.0 209760.0 56347.0 90479.0 54308.0 259152.0 51950.0 2420279.0 59112.0 61579.0 369476.0 343095.0 183887.0 290859.0 87046.0 2620891.0 730828.0 138678.0 176843.0 214030.0 619986.0 28457.0 747209.0 68996.0 317064.0 157303.0 116358.0 100807.0 39277.0 119920.0 487228.0 150961.0 1106455.0 153170.0 742020.0 95657.0 123611.0 145478.0 450472.0 801017.0 281641.0 94182.0 43592.0 8041732.0 209761.0 293602.0 185377.0 1301363.0 468499.0 35655.0 206737.0 156924.0 418135.0 58253.0 1609270.0 70136.0 922796.0 58013.0 317940.0 73100.0 317723.0 757605.0 383747.0 97376.0 204844.0 278999.0 90640.0 97950.0 694675.0 54702.0 852759.0 2489173.0 364916.0 145641.0 1252300.0 345113.0 223981.0 39923.0 213744.0 62716.0 50224.0 22033.0 288212.0 49115.0 13325.0 26067.0 396680.0 58949.0 346156.0 6775.0 110820.0 23255.0 141098.0 34359.0 151156.0 158919.0 105421.0 37.0 41244.0 27239.0\ndeaths 5683.0 12446.0 2035.0 2687.0 3855.0 3163.0 8091.0 10868.0 9840.0 2815.0 4775.0 2902.0 2961.0 2329.0 1371.0 2111.0 5400.0 2246.0 651.0 5106.0 4377.0 4765.0 7363.0 5045.0 4877.0 9726.0 4629.0 9532.0 1855.0 5474.0 1110.0 2980.0 5737.0 1088.0 5356.0 2831.0 73355.0 838.0 6639.0 3694.0 13105.0 4791.0 5735.0 3649.0 15955.0 4058.0 6068.0 8820.0 60927.0 1603.0 37490.0 6275.0 992.0 3010.0 2171.0 3436.0 481.0 11738.0 6712.0 4038.0 6191.0 19340.0 23215.0 15674.0 2909.0 2684.0 2715.0 0.0 0.0 7992.0 364.0 0.0 0.0 38.0 2176.0 0.0 300.0 673.0 0.0 30.0 81.0 0.0 795.0 0.0 48.0 0.0 0.0 64.0 0.0 0.0 119.0 23.0 130.0 0.0 314.0 32439.0 12646.0 31510.0 11344.0 4589.0 410.0 3091.0 608930.0 42176.0 46741.0 124265.0 40119.0 11565.0 107.0 16745.0 62144.0 1978.0 1835.0 2229.0 18733.0 4050.0 1225.0 37.0 2536.0 3198.0 1054.0 2130.0 2785.0 1621.0 3449.0 981.0 7674.0 3852.0 8239.0 2659.0 696.0 1032.0 1192.0 5465.0 1056.0 1275.0 10534.0 562.0 2830.0 924.0 4934.0 1752.0 6092.0 480.0 851.0 15478.0 1246.0 534.0 3578.0 2683.0 3367.0 4137.0 575.0 4403.0 806.0 519.0 2440.0 8827.0 272.0 1104.0 2268.0 2805.0 1395.0 230.0 2382.0 394.0 3780.0 1236.0 5198.0 664.0 34532.0 3558.0 5689.0 293.0 253.0 12644.0 2901.0 2084.0 1592.0 2295.0 7480.0 6.0 735.0 21661.0 5006.0 46.0 4832.0 75187.0 0.0 2343.0 7094.0 2172.0 955.0 40409.0 154.0 700.0 66630.0 811.0 1538.0 56509.0 2197.0 62450.0 14307.0 1970.0 238.0 1331978.0 11722.0 19948.0 445.0 3037.0 24119.0 2.0 464.0 15445.0 2818.0 1854.0 225712.0 9737.0 7.0 233000.0 77308.0 2292.0 171282.0 167372.0 23513.0 72833.0 5318.0 33271.0 19782.0 74379.0 4073.0 5204.0 0.0 258.0 12578.0 19777.0 59545.0 2754.0 1991.0 45.0 52701.0 1072.0 4.0 27823.0 12435.0 1549.0 55585.0 2123.0 93253.0 0.0 8.0 211.0 21942.0 8883.0 4936.0 88.0 293.0 145.0 156.0 559.0 0.0 1034.0 106971.0 0.0 17515.0 2520.0 47096.0 744.0 514.0 1482.0 31.0 276.0 1673.0 0.0 629.0 0.0 69552.0 29.0 945.0 877.0 0.0 12264.0 109.0 47.0 3089.0 4909.0 23.0 664.0 1306.0 3624.0 11781.0 1617.0 360.0 302.0 167.0 573.0 871.0 14899.0 72.0 543.0 2131.0 485.0 0.0 0.0 191.0 918.0 890.0 35.0 389.0 40293.0 248.0 353607.0 354064.0 36572.0 46283.0 276756.0 30195.0 17274.0 159.0 4953.0 25851.0 70945.0 48853.0 15.0 146395.0 11382.0 3239.0 19147.0 2063.0 53266.0 254355.0 2698.0 29562.0 20136.0 20717.0 42064.0 10434.0 5463.0 1517.0 75627.0 41943.0 5223.0 550.0 7617.0 2282.0 1077.0 2287.0 1426.0 2228.0 8358.0 23965.0 17680.0 124091.0 1623.0 19116.0 12550.0 1759.0 2070.0 31735.0 89851.0 14949.0 1721.0 1591.0 3594.0 59210.0 46680.0 25117.0 581489.0 3966.0 6671.0 19541.0 4880.0 84857.0 30777.0 263141.0 37387.0 133666.0 95209.0 7734.0 13439.0 54852.0 36397.0 12541.0 50361.0 13610.0 13053.0 2309.0 5035.0 45.0 48354.0 1829.0 5082.0 4050.0 6130.0 1007.0 2729.0 1033.0 11835.0 1509.0 9360.0 18077.0 4196.0 2429.0 30524.0 3577.0 2139.0 4950.0 2568.0 5832.0 2348.0 9169.0 1931.0 2327.0 3460.0 15020.0 3750.0 1788.0 28643.0 317.0 3684.0 18478.0 8322.0 642.0 32311.0 1635.0 88649.0 10205.0 7415.0 10418.0 2488.0 9304.0 744.0 4566.0 914.0 1578.0 72278.0 5599.0 4093.0 3837.0 45256.0 14573.0 8294.0 344.0 3809.0 1898.0 5422.0 1212.0 3757.0 9597.0 10412.0 8935.0 2561.0 119514.0 3032.0 293.0 15373.0 8400.0 3791.0 4266.0 80659.0 13679.0 30014.0 8717.0 2719.0 4354.0 2731.0 1205.0 19088.0 15889.0 1277.0 6856.0 762.0 3596.0 4535.0 5299.0 3693.0 2009.0 3527.0 1339.0 12020.0 6791.0 3470.0 1296.0 629.0 15018.0 2542.0 2532.0 2183.0 1473.0 3090.0 1127.0 2402.0 265.0 10933.0 8921.0 1042.0 708.0 2132.0 28706.0 14666.0 5036.0 2391.0 10482.0 4225.0 2150.0 3716.0 2082.0 3881.0 3043.0 4868.0 261.0 1639.0 6763.0 30556.0 7592.0 405.0 2155.0 1679.0 12412.0 6016.0 2332.0 14590.0 1204.0 0.0 2484.0 1751.0 3553.0 7683.0 13289.0 11443.0 7624.0 2448.0 1570.0 17978.0 4916.0 1687.0 3900.0 1012.0 13832.0 6416.0 11641.0 10827.0 862.0 2631.0 5002.0 450.0 1955.0 3485.0 11427.0 5097.0 1026.0 3159.0 6910.0 10424.0 3156.0 21421.0 0.0 37.0 2607.0 6.0 30364.0 241.0 2714.0 124.0 394.0 2820.0 1692.0 254.0 491.0 5842.0 274.0 0.0 0.0 18494.0 627.0 1578.0 0.0 115.0 119.0 910.0 376.0 784.0 818.0 754.0 556.0 786.0 1757.0 8134.0 152.0 423.0 303.0 476.0 639.0 1527.0 6089.0 38.0 1066.0 1755.0 269.0 2656.0 164.0 11173.0 0.0 196.0 1199.0 4235.0 278.0 1328.0 6464.0 317.0 3766.0 52.0 2228.0 2578.0 6748.0 4572.0 1632.0 1620.0 6968.0 7447.0 1268257.0 1182.0 1361.0 1151.0 7866.0 1581.0 140001.0 1702.0 204.0 1969.0 3110.0 2182.0 2055.0 897.0 374.0 2451.0 2182.0 385.0 1192.0 140.0 159.0 1966.0 3935.0 5944.0 2155.0 8576.0 2776.0 1413.0 438.0 79144.0 19426.0 7545.0 4872.0 14547.0 117022.0 1148.0 2377.0 2750.0 1548.0 13050.0 2718.0 32912.0 4131.0 438.0 1515.0 720.0 4768.0 29118.0 6949.0 211.0 1281.0 5825.0 2113.0 5254.0 1052.0 3135.0 14642.0 2878.0 324.0 1707.0 128.0 197.0 0.0 3052.0 1899.0 19040.0 1959.0 14251.0 268.0 20.0 2129.0 44705.0 552.0 3099.0 9908.0 5118.0 33084.0 3817.0 703.0 1531.0 518.0 2497.0 791.0 9928.0 99787.0 8393.0 38307.0 2752.0 1975.0 50646.0 13733.0 189.0 1305.0 12161.0 672.0 2023.0 4043.0 15736.0 2234.0 3228.0 491.0 7604.0 3343.0 7017.0 10453.0 16360.0 4189.0 29198.0 3959.0 14779.0 1129.0 4902.0 1466.0 2637.0 9706.0 9614.0 33038.0 10984.0 6190.0 33403.0 5820.0 15461.0 1462.0 3406.0 1526.0 1132.0 1526.0 3497.0 35241.0 2015.0 5209.0 3640.0 12066.0 82476.0 8504.0 24199.0 198285.0 5753.0 358.0 1436.0 9498.0 5538.0 9696.0 3122.0 8322.0 1073.0 6482.0 1059.0 565.0 3105.0 1647.0 13179.0 1274.0 1288.0 3485.0 2364.0 2822.0 1148.0 3373.0 10483.0 973.0 32234.0 2717.0 1671.0 2003.0 217.0 4428.0 4040.0 88.0 0.0 11525.0 749.0 9256.0 2356.0 481.0 11488.0 744.0 7356.0 2492.0 3292.0 1721.0 684.0 103.0 1799.0 1646.0 384.0 1500.0 21475.0 1327.0 2582.0 859.0 2690.0 857.0 738.0 1796.0 1691.0 1125.0 4972.0 735.0 367.0 685.0 705.0 1532.0 4154.0 1772.0 9176.0 936.0 62.0 1846.0 2035.0 1360.0 11725.0 2288.0 798.0 1817.0 2639.0 229.0 161.0 922.0 2116.0 1053.0 1065.0 1076.0 2523.0 1384.0 1095.0 809.0 867.0 1126.0 1160.0 6924.0 533.0 5579.0 1547.0 770.0 746.0 1790.0 28536.0 3452.0 1071.0 1173.0 706.0 4602.0 1978.0 7149.0 595.0 716.0 515.0 2118.0 1235.0 12592.0 2877.0 162.0 373.0 273.0 4532.0 486.0 57280.0 8495.0 2528.0 393.0 590.0 9016.0 835.0 2361.0 3186.0 8095.0 366.0 843.0 25.0 528.0 11156.0 1594.0 3000.0 935.0 3566.0 2384.0 1260.0 17153.0 54.0 597.0 94.0 0.0 718.0 80.0 1514.0 519.0 890.0 966.0 257.0 81.0 1135.0 635.0 372.0 995.0 190.0 2206.0 89.0 1062.0 1763.0 95.0 760.0 177.0 2505.0 0.0 0.0 2135.0 221.0 3671.0 2188.0 1120.0 678.0 1363.0 184.0 1188.0 272.0 0.0 74.0 0.0 729.0 1695.0 107.0 124.0 667.0 651.0 163.0 39128.0 700.0 373.0 0.0 692.0 178.0 3604.0 84.0 154.0 0.0 5796.0 249.0 608.0 962.0 265.0 323.0 0.0 1155.0 72.0 586.0 1467.0 198.0 1097.0 1525.0 372.0 0.0 0.0 92.0 1516.0 116.0 545.0 155.0 3836.0 374.0 126.0 1818.0 678.0 0.0 862.0 2985.0 418.0 20512.0 1606.0 12994.0 0.0 461.0 44.0 278.0 274.0 250.0 896.0 337.0 366.0 10714.0 139.0 0.0 302.0 0.0 364.0 0.0 30650.0 5594.0 2179.0 292.0 166.0 2685.0 292.0 2212.0 5908.0 291.0 2683.0 11.0 182.0 165.0 559.0 2592.0 3531.0 387.0 1743.0 4220.0 245.0 781.0 581.0 2760.0 4813.0 1799.0 1179.0 974.0 313.0 134.0 5562.0 2755.0 28.0 0.0 16167.0 32.0 696.0 2173.0 454.0 1699.0 448.0 1348.0 6776.0 3446.0 1334.0 1247.0 627.0 3514.0 1840.0 84.0 356.0 3748.0 466.0 168.0 10745.0 3778.0 78540.0 2068.0 526.0 11467.0 718.0 1583.0 290.0 1485.0 118.0 890.0 70.0 289.0 2186.0 2289.0 283.0 5530.0 1006.0 1855.0 51.0 1419.0 1301.0 624.0 521.0 2490.0 167.0 959.0 718.0 91.0 587.0 580.0 1191.0 779.0 0.0 3431.0 1013.0 276.0 2035.0 4728.0 329.0 260.0 53.0 1393.0 1770.0 0.0 2781.0 196.0 419.0 190.0 2151.0 2087.0 4695.0 1620.0 145.0 1279.0 1331.0 80.0 0.0 671.0 35.0 8981.0 396.0 382.0 741.0 752.0 57.0 29.0 19103.0 9401.0 20920.0 4912.0 10148.0 6605.0 7665.0 21825.0 79609.0 38874.0 982.0 316.0 2229.0 4519.0 3335.0 7322.0 94932.0 990.0 13406.0 5420.0 8064.0 4639.0 18554.0 13397.0 5052.0 138950.0 7550.0 1788.0 24483.0 27105.0 9113.0 15441.0 1725.0 4571.0 6192.0 149250.0 31657.0 4854.0 8922.0 28917.0 4211.0 3096.0 2916.0 7107.0 14568.0 628.0 8726.0 25006.0 26283.0 12312.0 15792.0 57613.0 22587.0 298.0 23704.0 9392.0 28185.0 9885.0 8508.0 14736.0 6427.0 9442.0 2385.0 4667.0 3363.0 2782.0 275.0 16377.0 400.0 450.0 3038.0 338.0 196.0 431.0 1416.0 31.0 14.0 1460.0 3.0 3706.0 69.0 4668.0 8475.0 58834.0 140491.0 106820.0 6852.0 1188.0 29705.0 8366.0 23137.0 2073.0 31709.0 924.0 18317.0 26849.0 5536.0 197458.0 188883.0 5471.0 1249.0 12532.0 1174.0 8807.0 10201.0 11117.0 5881.0 39746.0 13802.0 162484.0 56.0 301285.0 16279.0 186855.0 32365.0 507847.0 243.0 252637.0 182279.0 269901.0 2238.0 254438.0 676.0 122.0 3159.0 3386.0 320.0 1342.0 1121.0 1534.0 13475.0 780.0 19326.0 8604.0 14989.0 3990.0 844.0 1549.0 557.0 2266.0 3969.0 1268.0 4746.0 3448.0 4482.0 2078.0 83201.0 1133.0 1798.0 2859.0 4690.0 7398.0 1245.0 1815.0 14033.0 2585.0 3880.0 2632.0 3474.0 19071.0 24716.0 1058.0 48056.0 91.0 281.0 11853.0 287.0 5059.0 8761.0 9.0 45.0 261345.0 691.0 4234.0 707.0 1015.0 1130.0 3567.0 497.0 9971.0 2606.0 218.0 21517.0 1234.0 299977.0 2186.0 1490.0 672.0 507.0 639.0 3104.0 20064.0 317.0 1303.0 39227.0 2837.0 156.0 7900.0 15518.0 3581.0 8885.0 1607.0 4993.0 31660.0 732739.0 1462.0 1503.0 33775.0 1264.0 1617.0 3563.0 116.0 1664.0 1351.0 1203.0 1714.0 1174.0 927.0 1094.0 10321.0 460.0 0.0 286.0 4558.0 29529.0 73.0 2303.0 202.0 59.0 813.0 3094.0 731.0 216365.0 322.0 1544.0 1218.0 3631.0 213.0 1529.0 2103.0 527.0 748.0 454.0 425.0 120.0 1021.0 57.0 1441.0 474.0 561.0 2774.0 1313.0 1160.0 2565.0 1929.0 2042.0 432.0 3837.0 3664.0 387.0 6141.0 2085.0 563.0 451.0 2294.0 2269.0 93.0 75860.0 235.0 1491.0 2352.0 3287.0 634.0 371.0 6717.0 4131.0 584.0 12550.0 10703.0 640.0 268.0 679.0 1285.0 63.0 10331.0 88.0 487.0 1168.0 15866.0 575.0 925.0 5122.0 3915.0 864.0 7930.0 2642.0 1988.0 6077.0 1279.0 12071.0 2317.0 2868.0 5566.0 1225.0 3028.0 8626.0 3868.0 5407.0 6301.0 4968.0 12696.0 15147.0 739.0 3001.0 3200.0 6461.0 5678.0 13960.0 30011.0 11912.0 3275.0 532.0 4748.0 15212.0 3031.0 1701.0 2244.0 15413.0 3467.0 7061.0 6400.0 26300.0 2040.0 7149.0 12958.0 16692.0 11531.0 10138.0 17196.0 6949.0 4895.0 13481.0 3347.0 21554.0 4230.0 2976.0 9904.0 6222.0 11800.0 3333.0 9425.0 3509.0 3653.0 812.0 14296.0 5254.0 1972.0 7373.0 3291.0 1973.0 7689.0 3539.0 6740.0 4680.0 5486.0 2608.0 4399.0 24.0 4405.0 9243.0 13996.0 4147.0 2728.0 3890.0 4049.0 3358.0 5285.0 190.0 870.0 186.0 1560.0 2106.0 396.0 850.0 878.0 615.0 2961.0 7648.0 1050.0 255.0 1055.0 4370.0 6994.0 545.0 576.0 5288.0 437.0 49.0 2153.0 197.0 9095.0 2917.0 4687.0 738.0 1088.0 1405.0 706.0 519.0 901.0 388.0 1326.0 1750.0 9010.0 2630.0 2104.0 20117.0 1274.0 334.0 1443.0 496.0 299.0 235.0 2052.0 32.0 22579.0 6214.0 13312.0 1592.0 5738.0 31513.0 107.0 2632.0 2790.0 2854.0 392.0 1046.0 844.0 1107.0 230.0 541.0 208.0 1879.0 2405.0 36.0 1928.0 670.0 1403.0 269.0 403.0 968.0 2608.0 3519.0 1270.0 75.0 423.0 188.0 2431.0 1314.0 3719.0 3790.0 978.0 2364.0 2335.0 1725.0 153.0 138.0 690.0 351.0 122.0 494.0 1893.0 38.0 239.0 4867.0 658.0 135.0 32155.0 145.0 3992.0 182312.0 46949.0 343.0 2944.0 1438.0 408.0 4708.0 705.0 0.0 632.0 755.0 2312.0 245.0 2069.0 13.0 978.0 321.0 5210.0 1071.0 58.0 317.0 204.0 4727.0 131.0 610.0 261.0 875.0 566.0 41.0 454.0 3778.0 1829.0 85.0 1428.0 0.0 65.0 2118.0 63.0 0.0 866.0 1402.0 56.0 868.0 357.0 0.0 514.0 7.0 2998.0 323.0 156.0 34.0 418.0 173.0 372.0 175.0 60.0 1026.0 682.0 2856.0 2501.0 218.0 136.0 1428.0 534.0 375.0 159.0 1717.0 69.0 2.0 426.0 334.0 145.0 13267.0 3476.0 261.0 0.0 0.0 0.0 94.0 349.0 112.0 47.0 2771.0 235.0 417.0 673.0 226.0 143.0 459.0 331.0 235.0 1496.0 380.0 1449.0 9640.0 806.0 2892.0 0.0 522.0 3575.0 44761.0 234.0 421.0 107.0 58.0 398.0 1328.0 0.0 141.0 53.0 90.0 20.0 13062.0 3215.0 0.0 0.0 80.0 616.0 94.0 1175.0 3.0 152.0 101.0 48.0 0.0 124.0 170.0 8874.0 1590.0 0.0 0.0 2531.0 0.0 405.0 282.0 190.0 170.0 40.0 153.0 20.0 1401.0 307.0 1337.0 2117.0 581.0 229.0 567.0 144.0 491.0 6081.0 856.0 2445.0 959.0 337.0 343.0 0.0 123.0 93.0 0.0 798.0 27.0 127.0 1090.0 278.0 156.0 0.0 361.0 2686.0 1425.0 265177.0 477.0 2132.0 0.0 0.0 1109.0 415.0 57.0 2190.0 153.0 3247.0 78.0 59.0 225.0 39716.0 224.0 1808.0 287.0 748.0 468.0 399.0 65720.0 6062.0 23544.0 3465.0 466.0 29.0 58412.0 496226.0 112272.0 136941.0 21418.0 35352.0 514823.0 53572.0 364001.0 27615.0 147906.0 334003.0 202951.0 198752.0 246623.0 296579.0 19051.0 135903.0 46895.0 327297.0 207.0 40351.0 45004.0 290.0 4102.0 5514.0 504.0 2097.0 0.0 16769.0 3798.0 653.0 208.0 0.0 376.0 4864.0 767.0 0.0 2456.0 53236.0 10.0 3193.0 511.0 2730.0 1297.0 45442.0 91.0 11474.0 3196.0 774.0 2751.0 1663.0 300.0 451.0 19.0 2483.0 34946.0 3452.0 22146.0 2810.0 892.0 1297.0 4061.0 1387.0 1199.0 11559.0 579.0 794.0 40789.0 161758.0 1677.0 478.0 5643.0 2066.0 2684.0 148.0 1809.0 316.0 956.0 1737.0 2590.0 66544.0 2303.0 620865.0 5973826.0 20652.0 28222.0 45657.0 6562.0 103690.0 11383.0 1102.0 1412.0 15986.0 10673.0 127628.0 3179.0 11090.0 320.0 321.0 659.0 1721.0 11632.0 509117.0 8554.0 6578.0 495.0 17963.0 4597.0 7338.0 3087.0 1439.0 385376.0 1355.0 1499.0 13585.0 1609.0 107.0 1491.0 645.0 494.0 4912.0 2665.0 2669.0 6941.0 19030.0 8949.0 15202.0 3234.0 516.0 1612.0 852.0 11029.0 12319.0 1852.0 1464.0 430.0 11942.0 12176.0 8012.0 16660.0 522.0 580.0 7802.0 1544.0 10307.0 20839.0 8320.0 20590.0 6918.0 19452.0 811.0 880.0 8947.0 2157.0 40293.0 4001.0 12140.0 5304.0 14819.0 5172.0 3558.0 562.0 6380.0 1379.0 12762.0 2080.0 3666.0 6263.0 2377.0 908.0 896.0 2600.0 4583.0 70111.0 632.0 5468.0 7537.0 10116.0 6736.0 4316.0 4842.0 12340.0 413.0 5843.0 1780.0 681.0 1482.0 5884.0 1878.0 11869.0 4238.0 16063.0 2634.0 19938.0 9315.0 5254.0 3705.0 9388.0 1555.0 4875.0 637.0 1121.0 417.0 11972.0 10088.0 43688.0 1382.0 1425.0 642.0 14914.0 6257.0 10954.0 2063.0 194.0 34.0 893.0 1329.0 0.0 1539.0 234.0 133.0 11068.0 20271.0 176.0 1580.0 121.0 527.0 412.0 947.0 734.0 0.0 4144.0 405.0 181.0 216.0 389.0 986.0 351.0 1499.0 661.0 652.0 1288.0 453.0 6498.0 1057.0 595.0 136.0 348.0 675.0 908.0 496.0 440.0 750.0 1299.0 296.0 109.0 694.0 0.0 3882.0 71.0 3144.0 590.0 786.0 1076.0 913.0 8830.0 214.0 2035.0 342.0 0.0 202.0 1146.0 14816.0 2226.0 11251.0 601.0 3528.0 5954.0 738.0 21486.0 1507.0 962.0 11045.0 5945.0 2403.0 18220.0 1891.0 2331.0 132403.0 9799.0 3250.0 5808.0 9859.0 9217.0 1633.0 125445.0 1979.0 1803.0 10756.0 7818.0 1714.0 67313.0 4188.0 3125.0 395.0 2554.0 1408.0 2321.0 3448.0 2392.0 1250.0 1777.0 2550.0 10958.0 3798.0 11885.0 1220.0 20761.0 84588.0 3033.0 62877.0 11305.0 10198.0 1377.0 5790.0 11892.0 4076.0 31836.0 691.0 415.0 1158.0 1333.0 6092.0 811.0 1611.0 10445.0 168.0 16574.0 2488.0 6416.0 4749.0 5975.0 5054.0 1846.0 2588.0 2055.0 38527.0 62182.0 27835.0 7259.0 884.0 27.0 1441.0 770.0 11854.0 5772.0 17411.0 1485.0 17991.0 2617.0 2013.0 70.0 170.0 114.0 1391.0 194.0 1874.0 4895.0 3764.0 1678.0 1385.0 471.0 13.0 18431.0 100.0 3861.0 727.0 301.0 6303.0 1099.0 6062.0 155.0 5.0 3843.0 1417.0 2785.0 279.0 1998.0 0.0 186.0 685.0 788.0 2813.0 108.0 534.0 3465.0 556.0 608.0 510.0 2887.0 2650.0 465.0 150.0 412.0 336.0 2563.0 1992.0 6248.0 1336.0 401.0 5053.0 510.0 620.0 1126.0 41940.0 1796.0 3287.0 2121.0 1048.0 1948.0 3034.0 1241.0 2844.0 529.0 445.0 8493.0 1504.0 2063.0 1564.0 2050.0 607.0 37461.0 1.0 6415.0 10078.0 134.0 120.0 637.0 373.0 1609.0 12596.0 47.0 417.0 193.0 484.0 149.0 2085.0 1642.0 25.0 43.0 45.0 262.0 2470.0 1402.0 829.0 713.0 82.0 4757.0 2223.0 3588.0 5006.0 21378.0 900.0 35032.0 3491.0 0.0 0.0 7068.0 659.0 0.0 281.0 1852.0 13253.0 2.0 3440.0 6270.0 86524.0 4460.0 28917.0 3282.0 94327.0 6651.0 3039.0 147840.0 8700.0 6692.0 30.0 8499.0 5880.0 86267.0 1364.0 1485.0 1554.0 9467.0 2050.0 21999.0 39650.0 183109.0 673.0 10088.0 3325.0 120.0 15583.0 652.0 431.0 4218.0 4923.0 1047.0 2230.0 51696.0 107230.0 7479.0 15691.0 80679.0 51489.0 7103.0 628.0 5839.0 3146.0 31591.0 209589.0 1526.0 71372.0 14281.0 1733.0 429116.0 5649.0 367.0 19425.0 2271.0 1967.0 101.0 6389.0 1977.0 1826.0 1.0 968.0 523.0 7650.0 2531.0 23152.0 2640.0 33658.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 134516.0 NaN NaN NaN NaN NaN NaN NaN 4688.0 25651.0 1573.0 200242.0 13273.0 16597.0 2458.0 13720.0 1319.0 28762.0 5175.0 3053.0 14585.0 16170.0 2743.0 44232.0 7990.0 4168.0 7017.0 13940.0 8301.0 10446.0 7019.0 14889.0 3063.0 7165.0 33243.0 8209.0 58786.0 10604.0 4294.0 38453.0 3507.0 8680.0 9179.0 9932.0 7089.0 32849.0 5812.0 2155.0 1092.0 6351.0 4836.0 19489.0 10174.0 45940.0 3273.0 37307.0 14971.0 2694.0 4.0 8145.0 15425.0 291.0 3129.0 502.0 963.0 1278.0 2141.0 341.0 851.0 922.0 99.0 340.0 77.0 975.0 3211.0 350.0 537.0 2550.0 637.0 208.0 319.0 425.0 158.0 779.0 621.0 882.0 1430.0 257.0 845.0 109.0 156.0 9.0 1496.0 648.0 6.0 534.0 1194.0 2.0 595.0 1303.0 1497.0 3467.0 822.0 202.0 1051.0 58.0 1355.0 87.0 284.0 23393.0 639.0 1696.0 9425.0 202.0 71.0 1304.0 119.0 880.0 54.0 130.0 1381.0 404.0 2684.0 2081.0 10.0 793.0 1199.0 370.0 3195.0 4267.0 1788.0 730.0 6352.0 4396.0 1936.0 346.0 3705.0 5845.0 2014.0 2117.0 993.0 1561.0 2597.0 3770.0 3239.0 3959.0 61886.0 2332.0 1428.0 3323.0 4778.0 4089.0 1594.0 3216.0 6246.0 4823.0 1150.0 7501.0 1482.0 6700.0 21061.0 442.0 4759.0 3306.0 4063.0 3585.0 3485.0 1966.0 1775.0 1661.0 927.0 1035.0 3372.0 1548.0 18845.0 627.0 2837.0 3615.0 969.0 1254.0 1909.0 4074.0 12073.0 2073.0 1862.0 6471.0 6982.0 3498.0 964.0 4614.0 9285.0 274.0 800.0 4266.0 2679.0 1267.0 1076.0 1797.0 9215.0 2938.0 2172.0 6992.0 21003.0 821.0 534.0 3990.0 97770.0 2151.0 1243.0 9839.0 22844.0 4290.0 1745.0 1648.0 514.0 1281.0 232.0 1987.0 9170.0 1093.0 3653.0 2366.0 9913.0 10172.0 5550.0 1801.0 13834.0 2809.0 221.0 204.0 5546.0 1407.0 947.0 1210.0 5316.0 362.0 5000.0 15298.0 212995.0 932.0 0.0 1465.0 14064.0 27891.0 14928.0 675.0 196.0 3116.0 6417.0 1173.0 2449.0 5690.0 1544.0 1026.0 150490.0 1958.0 205.0 3741.0 1132.0 2761.0 5732.0 137.0 537.0 369.0 855.0 741.0 32689.0 112.0 778.0 19144.0 1132.0 266.0 1499.0 2346.0 568.0 1081.0 1011.0 1275.0 394.0 1664.0 222358.0 3138.0 5887.0 5574.0 94.0 30817.0 409.0 1085.0 244.0 2681.0 930.0 18551.0 221.0 122336.0 14658.0 2428.0 1183.0 3765.0 3597.0 561.0 1737.0 169.0 49458.0 1103.0 981.0 1337.0 1782.0 29216.0 1209.0 1523.0 29.0 935.0 3095.0 2044.0 10735.0 13347.0 5435.0 12262.0 11161.0 334.0 988.0 1129.0 331.0 5416.0 434247.0 8571.0 481.0 483.0 12584.0 62.0 5635.0 266295.0 2473.0 4044.0 5846.0 4390.0 1942.0 3657.0 520.0 7383.0 1953.0 0.0 452.0 2375.0 4549.0 27.0 25532.0 751.0 6384.0 11396.0 811.0 2401.0 9438.0 1728.0 257.0 46.0 2409.0 315.0 0.0 206.0 6593.0 1228.0 1588.0 8109.0 4671.0 1304.0 5671.0 2542.0 1556.0 8889.0 2185.0 218.0 1285.0 451.0 0.0 39788.0 1146.0 1213.0 2197.0 1166.0 237.0 8120.0 20231.0 681.0 22927.0 97.0 7100.0 155.0 16834.0 1179.0 375.0 528.0 1685.0 29126.0 4979.0 757.0 84.0 12461.0 5879.0 1799.0 1111.0 66545.0 1037.0 356.0 7170.0 3497.0 6218.0 7216.0 2692.0 1436.0 4713.0 21434.0 1046.0 879.0 11732.0 899.0 1072.0 3113.0 1525.0 2004.0 36.0 828.0 5898.0 1224.0 3327.0 1441.0 2892.0 1854.0 11042.0 524.0 412.0 1847.0 15.0 5155.0 170.0 20594.0 646.0 24969.0 842.0 49.0 192.0 479.0 864.0 145920.0 12692.0 38.0 1905.0 308.0 5201.0 13172.0 78272.0 1064.0 694.0 1.0 2104.0 515.0 4797.0 17465.0 4702.0 14953.0 11412.0 2163.0 440.0 10094.0 53516.0 8410.0 282.0 10132.0 1150.0 8032.0 26153.0 4590.0 622.0 4104.0 5396.0 1170.0 1918.0 1026.0 2699.0 109.0 1506.0 1648.0 278.0 0.0 7030.0 196.0 313.0 625.0 144.0 736.0 620.0 152.0 70.0 191.0 80.0 0.0 57467.0 5283.0 416.0 350.0 346.0 626.0 204.0 816.0 15768.0 1616.0 7572.0 0.0 7328.0 564.0 287.0 72.0 10579.0 0.0 1973.0 0.0 268.0 17.0 123.0 507.0 122.0 508.0 844.0 570.0 971.0 120.0 1877.0 535.0 4163.0 4170.0 15431.0 1240.0 848.0 660.0 583.0 33839.0 1583.0 6.0 2626.0 556.0 2090.0 764.0 800.0 947.0 1693.0 200.0 1274.0 1178.0 4234.0 1056.0 268.0 4535.0 12186.0 20863.0 228.0 5200.0 108.0 38.0 3322.0 308.0 5436.0 216.0 1738.0 4485.0 295.0 129303.0 1750.0 1608.0 3936.0 1686.0 2036.0 1237.0 1955.0 2632.0 846.0 5193.0 46.0 575.0 1640.0 2457.0 613.0 2750.0 1619.0 4439.0 9044.0 7631.0 49124.0 4637.0 0.0 1269.0 3685.0 4804.0 1176.0 556.0 289.0 97.0 1488.0 201.0 26815.0 1016.0 444.0 3329.0 525.0 1659.0 5104.0 2762.0 70.0 7437.0 1222.0 1722.0 268.0 538.0 7634.0 12314.0 6615.0 1062.0 10.0 3046.0 1001.0 6367.0 3325.0 4564.0 2358.0 243.0 10102.0 884.0 2358.0 827.0 43443.0 1451.0 308.0 332.0 1070.0 12767.0 3254.0 7154.0 341.0 4818.0 1079.0 1870.0 1611.0 11077.0 3360.0 4781.0 9080.0 3124.0 890.0 14166.0 690.0 2055.0 611.0 912.0 17184.0 2877.0 3730.0 721.0 849.0 1581.0 901.0 3161.0 1178.0 1454.0 1547.0 1282.0 28712.0 4111.0 270.0 16161.0 252.0 1411.0 1937.0 63.0 12783.0 18.0 5053.0 1702.0 3753.0 37.0 190904.0 3326.0 3453.0 799.0 1928.0 287.0 1202.0 2461.0 531.0 149.0 46307.0 0.0 5682.0 164.0 55893.0 34429.0 871.0 4941.0 292.0 0.0 2228.0 12798.0 1648.0 55386.0 485.0 3817.0 934.0 22.0 858.0 4622.0 0.0 401.0 176.0 3590.0 13.0 1209.0 1122.0 447.0 670.0 194.0 1959.0 5342.0 1631.0 16352.0 446.0 407.0 6056.0 986.0 1731.0 863.0 118.0 4636.0 2183.0 1796.0 1665.0 1046.0 157.0 603.0 1914.0 213.0 446.0 149.0 1288.0 2591.0 1597.0 239.0 206.0 403.0 568.0 1042.0 18.0 62.0 1.0 274.0 2729.0 0.0 797.0 55.0 2056.0 942.0 1008.0 728.0 2783.0 881.0 18139.0 652.0 1092.0 2183.0 3318.0 3816.0 1399.0 444.0 13345.0 6509.0 1319.0 741.0 762.0 4410.0 814.0 4895.0 1819.0 6844.0 699.0 541.0 324.0 1106.0 598.0 3489.0 718.0 18729.0 1459.0 2846.0 241.0 2234.0 2468.0 2945.0 10258.0 2746.0 1045.0 365.0 128548.0 1243.0 2343.0 2411.0 11079.0 5923.0 160.0 1778.0 1165.0 2994.0 248.0 24482.0 1501.0 10127.0 567.0 1886.0 506.0 3490.0 5552.0 2044.0 1171.0 1284.0 1040.0 823.0 1029.0 8183.0 439.0 8850.0 25548.0 9508.0 825.0 11017.0 2501.0 552.0 906.0 1035.0 746.0 425.0 279.0 4236.0 723.0 31.0 459.0 2345.0 515.0 3331.0 35.0 455.0 476.0 895.0 232.0 768.0 317.0 502.0 0.0 1397.0 74.0"}, "execution_count": 10, "metadata": {}, "output_type": "execute_result"}], "source": "transformed.head()"}, {"cell_type": "markdown", "metadata": {}, "source": "Creating dummy variables for categorical datasets is another popular ML/stats preperation step that can be difficult in SQL but a single function in Kolas"}, {"cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": "dummies = ks.get_dummies(dfq)"}, {"cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": "dummies"}, {"cell_type": "markdown", "metadata": {}, "source": "Additional data manipulation techniques (ex. time series functionality) and quick access to plots are also some of the many helpful features of using Python at BQ scale"}, {"cell_type": "code", "execution_count": 86, "metadata": {}, "outputs": [{"data": {"text/plain": ""}, "execution_count": 86, "metadata": {}, "output_type": "execute_result"}, {"data": {"image/png": "iVBORw0KGgoAAAANSUhEUgAAAXoAAAEKCAYAAAAcgp5RAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAABcE0lEQVR4nO29eZwcd3nn/376np5bmpE0umVZNr5tWTY2xhw2JNiQOASWmE3ikGRjTDiW3exmSTa7C5tfyGuT/Da7/AI4hmUTNgmEew0YDPjCYGQsy7ZsyddIlqx7RnP39PT9/f1R9e2u6anuru7pc+b7fr30Uk91dXdVd9VTT32eS5RSGAwGg2Hl4mv1BhgMBoOhsRhDbzAYDCscY+gNBoNhhWMMvcFgMKxwjKE3GAyGFY4x9AaDwbDC8WToReRtIvKiiIyKyMdcnhcR+ZT9/AER2W0vv1BEnnb8mxWRj9Z5HwwGg8FQBqmURy8ifuAl4K3ACeAJ4L1KqUOOdW4FPgzcCrwW+J9Kqde6vM9J4LVKqWP13AmDwWAwlMaLR38tMKqUOqKUSgFfBm4rWuc24IvKYi8wICIjRevcDBw2Rt5gMBiaS8DDOpuA446/T2B57ZXW2QScdiy7HfiSl40aGhpS27dv97KqwWAwGIAnn3zynFJq2O05L4ZeXJYV6z1l1xGREPDLwB+V/BCRO4E7AbZu3cq+ffs8bJrBYDAYAESkpFriRbo5AWxx/L0ZOFXlOrcA+5VSZ0t9iFLqHqXUHqXUnuFh14uSwWAwGGrAi6F/AtglIjtsz/x24N6ide4F7rCzb64DZpRSTtnmvXiUbQwGg8FQXypKN0qpjIh8CLgf8ANfUEodFJG77OfvBu7DyrgZBeLAb+vXi0gUK2Pn/fXffIPBYDBUwotGj1LqPixj7lx2t+OxAj5Y4rVxYO0yttFgMBgMy8BUxhoMBsMKxxh6g8FgWOEYQ28wGAwrHGPoDYYVwJHxGL/y6Z8yE0+3elMMbYgx9AbDCuC5U7M8fXyaI+dird4UQxtiDL3BsAJIpLMAzCezLd6S1cnjRyb4o28caPVmlMQY+g7iwIlpvv7kiVZvhqENSWZyAMSSmRZvyerkkZfG+dLPj5PJ5lq9Ka4YQ99B/P1jx/jT7x6qvKJh1ZG0Pfp4yhj6VrBgf//6gttuGEPfQUzFU8wbj83ggjYw5vhoDYm09f0bQ29YNpPzKdJZRapNDyZD6yhIN0ajbwXJvEffnt+/MfQdxFQ8BRivzbCUZD4Ya46NVpCXbtLt6YQZQ99BTM3bht7osIYiTDC2tSSMRm+oB+lsjtmEdRKbFDpDMVoyMMHY1qA9em3w2w1j6DuEaUfFo/HoDcVoycA4Aa3BBGMNdUHr82B0WMNSErZHb6Sb1pAwwVhDPZicdxr69jyYDK2j4NEbQ98KEiYYa6gH08ajN5TBBGNbi5FuDHVhcr6g0ZuAm6EYLRmY+E1r0NKZCcYaloVTozdFMYZitEcZN8dGS1hImfRKQx2YnE8RDfnxiZFuDEtJmmBsy8jlVN7Am2CsYVlMzadY0x2iOxQwt+eGJRQMTa5tOyiuVJxevPHoDctiKm4Z+mjYbzx6wxKc2R4mK6u5OHV5k3VjWBaT8TQD0RDd4QDzKXMiGxaTyGQJBazTOWbu+JpKwiHXJDpZuhGRt4nIiyIyKiIfc3leRORT9vMHRGS347kBEfmaiLwgIs+LyPX13IHVwtR8ijXRoCXdGI/eUEQynWNtdwiAuDk+mspCagV49CLiBz4N3AJcDLxXRC4uWu0WYJf9707gs47n/ifwfaXUa4ArgOfrsN2rjqn5FIPdIbrDfpNZYViEUopkJsvaHsvQm4Bsc0mknRp9e56bXjz6a4FRpdQRpVQK+DJwW9E6twFfVBZ7gQERGRGRPuANwP8CUEqllFLT9dv81UEqk2MumWFNNERPOGBOZMMiMjlFTsGa7jDQHI0+kc7ygX94kqPn5hv+We2OU67p5GDsJuC44+8T9jIv65wHjAP/W0SeEpHPi0j3MrZ3VTK9YOXQD3SHiIYCpmDKsAgdDNTSTTMcgRNTcb733Bl+/spkwz+r3UmkVoahF5dlyuM6AWA38Fml1FXAPLBE4wcQkTtFZJ+I7BsfH/ewWauHKbsqdo0djDUFUwYn2rissQ19M2I4CynrMxfatBK0mSwKxrbp9+HF0J8Atjj+3gyc8rjOCeCEUupxe/nXsAz/EpRS9yil9iil9gwPD3vZ9lWDbmg22B2kO+Q3Hr1hEUsMfROOD23gjaEvaPTRkL+jPfongF0iskNEQsDtwL1F69wL3GFn31wHzCilTiulzgDHReRCe72bgUP12vjVgm5/sKbb8ujjqSy5XPFNlWG1kiySbpqh0ecNvUn1zX8HA13B/G/RbgQqraCUyojIh4D7AT/wBaXUQRG5y37+buA+4FZgFIgDv+14iw8D/2hfJI4UPWfwgPboLenGD1heW28k2MrNMrQJ2qPs7wo2rUWGNm7tKlU0Ey3d9HUF29ajr2joAZRS92EZc+eyux2PFfDBEq99GthT+yYadItiXTAFEE9ljaE3AIWUvkjQb8dwGm/otYGPG4++4NFHg8wstKesaipjO4DJ+TQ94QChgI/ukGXoTYqlQaO9yHDAR0+4OQV1RqMvoL///jaWboyh7wCm4ikGuy3vPe/Rm8wbg03e0Ad9REP+5gRjU8bQaxLpLD6BnnD7SjfG0HcAk/Mp1kStQFt3yNLojUdv0GgZJRzw2x5984KxCSPdsJDKEgn6iQR9HV0Za2gxlkdvG/q8Rm8MvcFCe5GRoM9qetdEjd549FYw1jL0/s7tdWNoPVPxFIPaow8bj96wmKTDo29WMFZLNyYYa2U9dQX9hAM+I90YamdqPu0w9IWsG4MBXIKxTSyYMumV1ncRDvoIB/yksjmybVjjYgx9m5PMZIklM6wpCsaaVsUGTSEY66c77G9uwZQx9CTTWSIBP+GgZU5TbejVG0Pf5kzHrT43WqOPBu2CKZN1Y7ApBGOt9Ntm5tGbyljrYtcVsqQbaM9WxcbQtznOqliAgN9HJOgzc2MNeZzSTXc4QCqTI93gubEmvbJAIp0jEvQRsZ2wdtTpjaFvc6YcVbGaZnlths4gaY8RFJGm1VmYXjcFEulsPhir/243jKFvc/Itirsdhj4cMOPiDHmS6RwR28j06KysBt/xLdhphJmcavjdQ7tjBWP9hAPGozfUyGS80KJYEw35TU96Q55kxjI00LxgvbNQarXLN9aF1qHRt2EuvTH0bc6U7kXvkG56wmbKlKFAMp3LG5lm9UJyGvfVXh2bSGfpCvnyWTcmGGuomsn5FL2RAEF/4aeKNqn60dAZJDMOQ98kj37B1qX149XMgk6vNNKNoVamHVWxmp6wn/lV7kUZCiTtEnwoVE43Ov02kcrm40aruXhPKUUiXeh1AyYYa6iByXg6n0OviYaMR28okHBINz1N9Oh13Gg1e/TprCKnsPPojUdvqJGp+RRroosHjDSr57ihM0hmsnkjk5duGhjDSWdzZHIqf6e5mjX6BUexmimYMtTM5HzKxaO3pBtrsJdhtZPM5PKBQO3RNzIYq42blm5Ws0evG8p1hQotEEzWjaFqpuKFXvSa7nCAbE615S2iofno9D6wPMtGz43VHrwx9IV9N8FYQ80k0lniqewSj75ZOqyhM0hksnlvUlfHNjIYm/fooyYYqwezm2CsoWbyDc2iS6UbMI3NDBbOPHpofAxHG3rtgLSjYWsWibx04yPk1xq98egNVZBvaNa9NBgLjQ24GToHZzAWLGmvkcfGQrF0s4o9eqd0E/D7CPikc4OxIvI2EXlRREZF5GMuz4uIfMp+/oCI7HY8d1REnhWRp0VkXz03fqWjG5ot8eiNdGNw4CyYAuwpU42XbgaiJr0y3yI6WIiRtGMwNlBpBRHxA58G3gqcAJ4QkXuVUoccq90C7LL/vRb4rP2/5s1KqXN12+pVQsGjX1owBZiiKcOigh1Nd8jf2GCsbdy6QwHCAd8qN/SWUddVwuGgv2Olm2uBUaXUEaVUCvgycFvROrcBX1QWe4EBERmp87auOqZdWhSDVTAFxqM3WN0jc4olHn1DNfqUbdxCfrpC/lUt3eiLng7ERgK+toxZeDH0m4Djjr9P2Mu8rqOAH4jIkyJyZ60buhqZtFsUD7gUTIEx9AbnGMGiYGwjNXodgAz66QoaQw/WRQ/a16OvKN0A4rKsuFKn3Do3KKVOicg64Ici8oJS6sdLPsS6CNwJsHXrVg+btfKZiqfoK2poBs6sG2PoVzvJfGWmMxjb2Lmx+QCkNvRt6ME2C2cwFmyNvkODsSeALY6/NwOnvK6jlNL/jwHfxJKClqCUukcptUcptWd4eNjb1q9wJudTS/R5cJa5t98BZWguiYzO4y4Oxja+YKor5CcS9LelVNEsnHn0oA19+3n0Xgz9E8AuEdkhIiHgduDeonXuBe6ws2+uA2aUUqdFpFtEegFEpBv4BeC5Om7/imYqvrT9AVgHk98nxqM3uHr0PaHGzo0teLE+oqHV7dE7B7Nb//s7M+tGKZURkQ8B9wN+4AtKqYMicpf9/N3AfcCtwCgQB37bfvl64Jsioj/rn5RS36/7XqxQpuIp1vVGliwXkYZnVhg6A+dgcI0z/bY4kF8PFtJZQn4fAb+PrpB/Vc8vTqSzVtsJn6Veh4O+tvw+vGj0KKXuwzLmzmV3Ox4r4IMurzsCXLHMbVy1TM2nuXB9n+tzVsBt9XpSBgv3YGwh/XYgWv/PXEhlC1kmQT/jc8n6f0iHUJzaGg74mYilWrhF7pjK2DbG0uiDrs+ZKVMGKEg3kaLKWGhcsN4anWd9XpfR6PM59GBdcDs1GGtoAQuprD3cwf3Wu9t49AYKwdhwUTAWGteq2DlG0GTdZBcFwjs5GGtoAbr9QXGLYo3R6A1QIhjbYI/ekm5sQ28KppZIN8bQGzyj2x+UCqY1uvrR0Bm4BmMbXGex4JRuVnvWTSa3yNBHgp1bGWtoAbpFsVsePdgeveleuepJZhbncYNzylRjDE6iSLpJZ1XDUjnbnUSqWLoxHr2hCibj7i2KNd3hAHHTj37VU5zHDQWNPt4gR6BYo3dux2ojkckuDsYGfKQyubYb82kMfZsyNe/eoljT6OpHQ2dQkG7cPPoGavS2dKP/X63yjTNeAYWgeLt59cbQtymT8ylEoL+rhEcfCpDM5Mis0ltmg4VO5QsXZX40snLamVIY1R59anUeh4nM0mAsGENv8IjV0CxIwO/+E3WbnvQGyJfbO6WbQuV0Y46NRdKN7dHH06vz7jKRXhqMhUI2VLtgDH2bMhVPlwzEQuOLYgydQSKTJRTwYbcZydNIaW8htbhgSi9bjbgFY8F49AaPTM2nGIy6yzZQSKFrVMDN0BkUDwbXdIcDDTk2lFJ2kZCt0QdXt0bvFowF2q461hj6NqVUi2JNo1PoDJ2BNS/Wv2R5o+bGak+1WLpZjVk3mWyOdFYVafSWSU20WQdLY+jblKl4qmTGDThS6Ix001IS6Swf/Mf9HD0335LPT2YWSweannBjKqe1RNNlf6a+s1xYhcFYt1kAeki4kW4Mnpicd+9Fr+kONTaFzuCNYxNxvvvsaX4yeq4ln19Sugk1pnI6P0awSKNfjRJifoygMxgbMMFYg0cWUlmSmVwFj16fYO11QK02YkmrglkPcm82yUy2jHTTOENfrNGvRulG392EF+XRG4/e4JFKVbHQ+A6FBm/MJazvf8puWdFskpncohx6TXfDpZvFGv1qDMbqgKubRm+CsYaKVKqKhcaXuRu8oS+0U63y6Mtk3TSixiJRQrpZlRp9enFgGpyGvr2+D2Po25CZBcs7LFUVC4WKRJN101pitkc/3SKPvrgyU9OoubELRbq03yeEAr5V6dEXZCyXYKzJujFUYtY29L2R0obe5xOiIb/Jumkx2qPXbaWbTTmPHupfUKelG+fFpSvoZ2EV3lmWC8YmjHRjqITWfXsj5Uf6RkMB06q4xczlPfr2CsY2qrFZcdYNrN4pU1q6ibgFY41Hb6jEbMLy6PvKSDdg5Uob6aa1FDT6FgZjXTz6qO6FVOfjw82LtYaPtJdhawau0o0Jxhq8or1E7ZWVIhoKGOmmxWiNfjaRJptrfg/y4lF2mkZlZRVn3YDl0a7GXjeJ9FIZK+ATfGKCsQYPzCUy9IQD+H1Sdr0e05O+5ejvX6lCEL2ZlPLoexqUlaU9d6d0Ew35V2UefdLF0ItIW06Z8mToReRtIvKiiIyKyMdcnhcR+ZT9/AER2V30vF9EnhKR79Rrw1cyc4l0RX0erFxpUzDVWuYcF9pWpFiWzKMPNSgY6zLRqivoX5VpvsXFY5p2nBtb0dCLiB/4NHALcDHwXhG5uGi1W4Bd9r87gc8WPf+vgeeXvbWrhFmPhj7awQPCf3ToLM+dnGn1ZiybWCKNvvGaanLmTSabI5tTFYKx9dfou4L+RW2RI8HVqdHng7FFd1ThgL8jg7HXAqNKqSNKqRTwZeC2onVuA76oLPYCAyIyAiAim4G3A5+v43avaOYSmbKplZqeDs66+U//9zn+5wMvt3ozlk0smWGkvwtofkA26dJUS1MIxtZfo3fKNmDJOO3mwTaDhXSWoF+WDAcKB30dGYzdBBx3/H3CXuZ1nf8B/CHQXpe4NmYukaHPk0ffuClCjUQpxcR8iiPjsVZvyrKJJTJsWaMNfXM9+sJg8OamV3YVSRVdQd+qDca6BcLDAV9HavRuEcHi9ALXdUTkHcCYUurJih8icqeI7BORfePj4x42a+ViafQePPqw5dG328T5Siyks6QyOV6djHf8zNu5ZIYtg1Gg+bn0hcHgS09jPTe2/sHYpW2Ro6HAqs2jdzf0nRmMPQFscfy9GTjlcZ0bgF8WkaNYks9NIvIPbh+ilLpHKbVHKbVneHjY4+avTCzpxoNHHwqgVOc1lNISRzqrODG10OKtqR2lFLFkhg39EQI+aZl04xaMbdTc2ISLdLOa0yvdZLOODMYCTwC7RGSHiISA24F7i9a5F7jDzr65DphRSp1WSv2RUmqzUmq7/boHlVK/Uc8dWGkopexgrBePvjFFMY3GGbQ8cq5z5Zt4KotSVgXzQDTU9GBsvnuii3QDjUm/dZdu/KSyuYbfnb10dq4lKaylSLh8F9ChHr1SKgN8CLgfK3PmK0qpgyJyl4jcZa92H3AEGAU+B/x+g7Z3xZPMWOPJvHr00HkDwp0n65Hx1kxmqgfaiPaEgwxGgy3Q6Et79GB3sGyAoS+WK7pCur9L44ybUop3f/Yx/vaRww37jGopr9G3l/NV2ZoASqn7sIy5c9ndjscK+GCF93gYeLjqLVxleG1/AJ3bk95pEI+0aARfPchXMEcCDHaHmi/dlAnGgpV+24jK2OGe8KJlhVbF2YrV3LWSSOeYTWQ4Od0+Ut9COut6NxUO+joyvdLQRLTx8JJ106lTprRB3LKmq6Mzb7QR7Q0HGIwG2yoYC42ZG5tIu6VXBvLPNQp9F3gulmzYZ1RLIp0jEloh0o2huXjtXAmNa0XbaKZtLXv31sHOlm6cHn20BR59Zmn3RCfdoUDdnYBSGj001uHIG/q51nQJdSORzi4ploLODcYamshconIvek2+zL3Diqam4mm6Q34uWN/L2Fyy46QnjZ4X2xO2grHT8VRTU10TLu0InDQkGJsqrdE3MvurPT36pXc3YDx6gwdmF6rx6BtT/dhopuMpBqIhdg53A/BKh3r1zi6jg9Eg6axq6kWrIN2U8OgbEIxNpHOu6ZVAQ1MstaGfjKfapvYikc65a/RtGIw1hr7NqMaj78lLN+11UFViKp5isDvIecM9QOemWOY1ejsYC80dKaiNSamsm3pXTmeyOVLZXEnpppFyhY5/KNW6aV7FuBWPQaEytp0KGY2hbzOqCcZ2anrlVDzNYDTE1jVRRDo3xVJr9N3hQH6QezNTLJP5plol8uhDAVLZHKk6yQg6fbLY0OvjsBnSDcB4m8g3iXTWPRgb9KOUVRDYLhhD32bMJdKIFPT3coQCPkJ+H/MdlnWjpZtI0M/mwa6WpVimszne/qlHefCFszW9PpbMEAn6CPp9DEatO7BmBmQTFTz67jr3pM/Piy3OumlCMHbWYejPxVrv0edyimSmtHQD7TU31hj6NmPWHjriqzB0RBNtQApdo7E8esswnjfU07IUy7OzCQ6emuVnhydqev1cMkNP2NqPgaiWbprv0Yf8pYOxUL86C7cxggCRJgZjAc7Ntd6jL5fx1I5zY42h98BDL47xuj9/oCnDFazOlZX1eU13h7UqzuasFg8DdkHYjqFuXjk33xI9U3uGxydrK8KJOXoS6QtXM/XjZCZHyO8r6RR01zmGs1DC0Oc1+gZ69NMLaYZ6rItpO2TeFC567ho9tNfcWGPoPfDY6DlOzSQ41YSqPK9DRzTdHebRzy6kUargAe8c7iaeynJ2tvkn77jtGZ6Yjtf0+lgyk/ea+7uCiDRXuklmsiVTK6GQlVUvjz4/Lza0+DPzlbEN9uhH+ruIBH35362VaFmmVAsEaK+5scbQe+CwHSwcb0Kxhtcxghorha59PIdK6GDlYLct3ejMmxbIN9pgLMej14Y+4PfRF2ludWwincvLBG7Uu6Cu1Oi8gN+KFTXa0Pd3BRnuDbeFR1+46Lnn0YORbjqOw7YRasYBttKlG+3xao9+x5CVS9+KgKw29DML6XyPoWqYS2bocVyUrcZmbeTR1zkrq5R0A1Y1aKPz6Pu7ggz1hNsiGJtvKOcSjNUplyYY20Ek0lmOT1q39hNNMvQrWbrRHq9OR9zQF6Er6G9JiqXzwn2yhr74sWSaXkcTL10d2yxKDQbX5Oss6mSAE2W82K5Q+Z70SqllxWFmF9L0R7WhbwOPPn9346bRG4++4zg2ESdnH5/N8CS8TpfSdIc6TbqxPF4dvPT5hB1D3S0pmhqfS+YHe+uLeTXEEm4efXOzbkpVxUL9K6fLefRdQX9Z6ea9n9vLn3/vhZo+VynFdNzp0bfe0CfLfBf64muCsR3EYYd23OgDzBo6Uq1H31nSjfZ4tXQDsGPYyrxpNuOxJBes7wWoetKVni7lbMs7GA0xNd9c6cbNo9TUu421livcpZvyhv7ZEzN8Y/9Jcrnqvfp4KksmpyyNvifExHzr2yCYYOwKY3TMMvTb10YbbugX0lmyOVWdRx8OEO8ojz6F3yeLKn93DnVzfDLedA9ofM4y9NGQn+NT1Xn0ekDMIo++O9QCj770KaznxtY9GOsi3URD/pItEOaTGeZTWc7FkjxzYrrqz9U59P1dQYZ6w1YbhCa3hC5mIVUmj15LN8bQdw6Hx2NsGuhiy5pow6WbfPuDrio8+pC/rmXujWYqbuXQixRyv88b7iGn4NWJ2tIca+VcLMm63jCbB7uq9uidveg1g9Eg8VS2aRcsKxhbWropzI1tbMEUWBp9qcrYMUc65I+er74KWRv6ga5gfuhJq9sVl/su8sHYNmpVbAx9BQ6Px9i5rqcp2mA1Dc009S5zbzRW+4PF+9eKzJv5ZIZ4Kstwb5gtg9HqDb2jF72mUB3bHPkmmSnv0YMVkK1XMHYhlSXgE4IulbhdZQaE6+ymSNDHA8+PVf25+vvUHj20vmiqIN2UCca2kfNlDH0ZcjnF4bF5dg53M9QT4lws2dAKztkqho5o6l0U02im7YZmTs6z2xU3M/NGG5+hHtujn4xX9ds658Vqmt3YrNTMUif1bFXsNnREEwmWlm7G5hIA/NLlG3nhzFzVgW/t0ffZwVhovaHXFzW3OoZ8MNZ49J3BmdkEC+ksO4d7WNsTJpHONbRxUzWdKzUFj759DqpyTMXTSzz63ohVCNPMoindAXG4N8yWNVHmkpn8LAAvOHvRa5rdBsGLR99dx+EjCyW6NUL5rBt9Ub392q0APFClfDPr1OjbpA1CskQnTzDB2I5DZ9zsHO5piiehD+hq0yuhkzz61KKMG43uedMsdGOsYVujB6oKyDp70Wua3ZO+Uh492NJNvTT6VGmPPhoqbejH5pIEfMJVWwY4f10PP6pSvskHY6NBesIBwoHWt0FYSGXxCQT9S/sMhfw+RIyh7xgO2xk356/raYonUc28WE2nzY2diqfynq+TncPdTdXonR795sEoACeqMvSFMYKaZks3yXT5YCxYgf3phfpceMpKN2WCseNzSYZ6wvh8ws0XrWPvkYmqKpFnFtL4fUJvOICI2G0QWh+M7Qr6FyUVaETEGj5ipJvOYHQ8Rl8kwFBPKO/RN7LfjQ7GVtMCIRrSRTHtc1CVIpHOkkjnSnr0k/OpplWW6mKpwWiILXlD7z0g6x6MtX63Znr05fLoAUb6uzgzk6hLbKmSdJPK5Mi65MmPzSVZ12edP2+9aD2ZnOLHL417/tzphRR9kUDeqLZD0VQiUz4+0m5zYz0ZehF5m4i8KCKjIvIxl+dFRD5lP39ARHbbyyMi8nMReUZEDorIJ+q9A43k8Ng8O9f1ICJ5Qz8x31iP3u+TvPH2Qk8HefRTRe0PnJw3pMcKNserH59LsrYnbOX0dwXoDQeqChLOJZdq9JGgn66gn6kmaPSZbI5MTlX06DcOdBFPZety8VlIZV3b8kL5cYLjc8l8WuRVWwdZ0x3iR4e86/QzCxn6uwrOz1BPuA2km1wFQ99ec2MrGnoR8QOfBm4BLgbeKyIXF612C7DL/ncn8Fl7eRK4SSl1BXAl8DYRua4+m954Do/H2Gl3V1yrpZsGe/Q94YDr7WApomE93acDDP384vYHTpqdeXMuVjA+IsLmNdWlWMYSGYJ+WRIMbVZjs8Jg8PKn8KaBCAAn69BiO1FGutH9b9x0+vG5RN6j9/uEN1+4jodeHPdc3aobmmmGe0Otl24qVCWHg76O63VzLTCqlDqilEoBXwZuK1rnNuCLymIvMCAiI/bfOpUiaP9rn0GKZZhNpBmbS+YNfdDvYyAabLhGX40+D84pQu3jPZTCrf2BZsuaKAGfNC3zZnwuybCdkw2webCr6mCs20W5WdWxXg39xgEr0FyPWQoLZdI58z3pi3T6TDbHxHyK4d5IftlbLlrHzEKafcemPH3uzEKafscxM9QTZnI+6SoTNYtkhdTWTpRuNgHHHX+fsJd5WkdE/CLyNDAG/FAp9bjbh4jInSKyT0T2jY971+8ahfYsd9qeJsDa7lBjs26qbGgG2AGhDvHodUOz7qX7GPT72Lom2rTMGx0g1OjqWK9adnFDM81gtFmGvnSvFSf1NvSVPPpi6WZiPoVSLLqo3njBMCG/z3Oa5Uw8tUS6yanmTvMqptxFD6xCqk6rjHXTEYrPhpLrKKWySqkrgc3AtSJyqduHKKXuUUrtUUrtGR4e9rBZjcWZcaMZ6gkz0cBbxmobmoElO/SGA00LAC6Hcho9WPJNM6QbpRTnYqlFxmfLYJR4KutZdnHOi3UyEA025bfI90OvEIxd2x0iFPBxaiax7M9cSOXKBmNhaT2H1tLXOb7rnnCA63au5YeHznq6sFrSTeG8GG6D6thEOlfyoged6dGfALY4/t4MnKp2HaXUNPAw8LZqN7IVHB6PEfQLW9ZE88uGGjzdptqhI5pGb1e90NKN0ztzsmOom1cm5ht+Sz67kCGVzS2RbsB7u+JYIrOoz42m2R59pWCsiLBpoKvxGn2JcYK6Ktb5XQO89aJ1HJ2I56e3lUJ3dC326KHVhr6CRt9pwVjgCWCXiOwQkRBwO3Bv0Tr3AnfY2TfXATNKqdMiMiwiAwAi0gW8BaitKXWTGR2LsW1t96K+HsM94Xz+dSOYS6SrqorVDLdBupkXpuNpuoL+kre85w33kMrkGj6bdzy21PjoC7rXgGwsWUq6CTKzkG74xSqZ9qbRA2wa6Fr2d6qUqphHD0sNvZtHD3DTReuBylWysWSGrN2iWNMO1bGVpBvL0HeQR6+UygAfAu4Hnge+opQ6KCJ3ichd9mr3AUeAUeBzwO/by0eAh0TkANYF44dKqe/UeR8agpVx071o2druEHOJTMOu1LUEY0F79K0fr1aJqXjaNeNGs32t9X0fa3AXy7F8n5uChLTJ9ui9Fk0V96LXDHaHUKpQzdkotBGppNEDbByI1DRBy0k6q8jmlOt0KSjUcySKpJux2UJPISebBrq4eKSvYjfLQudKRzBWSzct7GCZTFdKr/S3VdaNJ6uilLoPy5g7l93teKyAD7q87gBw1TK3semkszmOTcT5xUs2LFquD7CJWCof5KoXSqmqp0tphnvC+ZL+dqZU+wONNryN7jXu5mX2RYL0dwU9Z97MlQnGghWPWNNdel+Xiw70efHoNw50MTaXrNjWuBylBoNrSkk347Ek/V1B19e95aJ1/M1Do0zOl/6udLyjz+HR94YDhAK+ht5dV2KhknQT9JmZse3Oq5NxMjmVT63UNFIbnE9lyanq2h9ohnpCzCUzbRXld2MqnnLNuNEU2vw21tDru5/hnsii5VvWeO9LXzwvVlOojm3sPhTSK7149JZTcnam9uO2XP915/LiYOzYbHKJPq+58YJhcgqeerV0mqWzoZlGRFru3JSLVwBE2syjN4beBZ1xs3PdYkO/toHaYC296DX6RGp1tWAlpuPpsh69NpKNHsc3Ppck5PctGfCyeSDqKRibzuZIpHPu0o326Bu8D/lgbIWsG7BkElhe0dRCfjC4++dFSqRXjtvDXdzYasdFymUEzbgYerDurlvl0SulKraIDgc7Lxi76jjskkMPFKbbNEAPr2W6lKbZWQhf2Xec+549XfXrSjU00wT9PnrDgYZnrVg59KElxU7ao6+U8qfbTVSSbhpJNcHYeuTSlxsM7lxeXDA1Npco6dEP9YQJ+ITTZbYrr9EXHTfDPa2rjk1lc+RU+fhIxwVjVyOHx2Os7wsv8a4baVCX49EPNfACVMy5WJI/+dZzfO7RI1W9LpdTzCwsHTpSzEB3sOGyx3jMXU7YPBglmclV/B7detFrBmxpqtGGvtxw6mJG+i2Jqh6GvtTnBf0+gn5ZpNErpRifK+3R+33C+r4Ip8t49NOlPPoWZprpGoaVVhm76nD2uHHSFfLTHfI3JNpfy3QpTTPHq33xsaOkMjlOT1dXgDObSJNT7u0PnFh56I2VPc7NlTL03vrSl2sn3RsOEPBJw/ehGo8+EvQz1BPm1Ezthl5n05TVpYuGj1hxo1xJjx6si1C5C9DMQpqAS6M/qw1CqiVtEJL5i175PPpsTpH22M+n0RhDX4RSitExd0MPsLZBnoQOOtWSR6+zVRqt0cdTGb649xhg3ZJ7bUoFjvYHZaQbsC4EzfDoi9P9wHsuvdsYQY2INGUfqgnGgtXcrNq5uE7y0k2ZzqrFc2ML2U2RUi9hZKCrrEevG5oVy2xDPSGyOdW03v9OKslYUPD228WrN4a+iPFYkrlEZok+rxnqCTWkVXHBS6xeugkH/PRFAg336L+67wTT8TTvvnozOQVnq7iwVGp/oGl098dsTjFRQrrRQctKAdn80JESF+XBaLB5wVgPHj1YOn0jNXqwLgJOj17n0Jfz6Df2RzgzkyBXwjMv7lyp0U3SSh3zn3l4lI/fe7Dk5y4HT9JNm82NNYa+iMNjdiB2nbtHP9QTboh0U5gXW72hh8a3Qchkc3z+J0fYvXWAd1w+AlA2iFbMTLwwDq4cjW4hMDmfIqfcjU93OMCa7lBFz7ecRg/NaYOQSOcI+X34fN5aWluGvvYBJNpTL2fclnj0MfeqWCcj/RFSdodLN2YX0q7HzFCZtuFKKf7hZ8dqShjwwoJH6QaMR9+26Dmx55cy9A0yqHMJS4usNDGoFI26AGnuP3iW45ML3PmG8wpZHFU0yvLq0Q9Eg8wlMlXJQtWgf7thF+kGYMtgV8XqWLd5sU6a0djMKn7yfqxsHOhiIV37AJKEF+lmiUfv3ufGyYh9LJ0uET+Yjrt79OXiUscm4pyaSTAeS5JqgKFNVAhMQ0FSM4a+TTk8HiMa8rOhz11XHOoOMRmvfxBItz+oZuiIk+EG5hUrpbjnx4fZvjbKWy/ekM/iqMaj96rR6wtBveacFqN146ESxmfzYOUBJLEKHv0a+xhpJF4GgztZ7gAST9JN0L8oj348ZtUrlGpiB7CxX6d+ujsNpaSbchlwjx2eAEApODu7/K6dxXgz9L5F67YaY+iLODw+z87hnpIGd6g3jGpAL+xa2x9oGlkp+PgrkzxzYoZ/deN51pDmSJDeSKBsEK2Y6XgKn1SWphpdWaoNfSmPfvOaLk5OLZTUjMHy6EUoOfJRB2PrMae1FMl0rqp2BpsG7OKkWg19qrIu3RVcPCB83K6KLee8jNgXoFIefSlD3xcJEPK7t0F47PC5/ONqjlGv5A19me/fBGPbnMNjS5uZOWlULn0tveidNLINwj0/PsLa7hDvvnpzftnG/upa307ZwyMqacqFgqMGefSx8gHCzYNRUtlcvvGZG3MJ9+lSmsFokHRWMZ9qnDeXyGSr8ug3Diwvl34hnSUU8OEv8/tFiqSbUvUKTnS/fDeDnMspZhNpBlwMvYhYd7FFv5NSip8dnuCyTf1A6QvIctDB2HIyVl6jNx59+zGbSHNyeqFkaiVYBybU39BbHn3thr5RwxhePjvHgy+Mccf12xd5cyMDkapOIqtzZeUmX4UWAo3x6M/NJYmG/HSXkF02e+hiGUu696LXNHofoHqPfk13iHDAV7N0U6m3C9jSTWpx1k25QCxYBrtULv1cMoNSixuaORlyqY596WyMifkU79ptDcErJQkth4SXYGzQBGPblsdGrVu+1563tuQ6zg6W9aTWoSMafadR71z6e358hEjQx29ev23R8pH+rqqKpqzOlZX3ryDdNM6jd8uh12wZrJxLX2qMoKbR+wDVB2P1AJJaDd9CqrKhjxYHY8u0P3Ay0u9eHZvP1Cpp6JfKlVq2ecvF6215sf4evZd4RS3BWKVUw0aC1u5CrkAeemGc3kiA3VsHSq7TKOnGCsYu39DXsw3C2dkE33r6JLdfs3VJG9mN/REm5lMVmztppubT+SBuOQa7G9srpngoeDFeJk2V6kWv0d9VIwOyyUyuKkMPVubNcoKx5aQKsNMrbSOYyuSYiqfLFkvlt6u/i71HJpYsL9XQTDPUE+bZkzOLlv10dIJta6NsHoyysb/2C1s5vLVAKB2MTaSz/M2Do5ycXuBcLMlELMXkfIqJ+SRru8Ps/eOb677NxtDbKKV4+KUx3rBrmIC/9AlULgi0HGaXKd00og3Cdw6cJp1V/M7rdyx5TqfFnZlJsH2odExDMx1PcdFIX8X1ukN+gv7GtRAYn0uWleYiQT/DveGyHv1cMlM2k6QZ7ZaTmZyrdl2OjQMRHn5xvKbPqzRRCazvLpHOkcupQhqrF49+IMLZuSTZnFoUA6ho6HtDTMynyOUUPp+QyeZ4/MgE77hiJP++jdHoKxerlQvG7j0ywd88NMqGvgjr+yOM9Ee4dFMfa7rDrO+r/H3VgjH0Ns+fnuPsbJI3XVh+MLmIsLYnVNec9VxOEUtmamp/oCkUkNTP0B88NcP6vjA7XAz5Rt0oa2bBk6GvNF1KU00Lgd/8X4/zjstH+LVrtlZcV3MuluS6MtIcWF59uX43sUSazWUGzwzm2y03UqPPEvZgRJ0sZwCJpdGXv4PQHn8iky05QtCNkf4usjnF2FyCkf7C91roXOke2xnuCZPNKaYX0qzpDnHw1CxzyQzX7xzKv++BEzOur10Oel5suWyiQsHUUo/+6DmrKPPeD9/g6Y6nHhiN3uahF8cAeGMFQw/WLWM92yDEUlbQaTnSjW6DUM87jUOnZrm4hBeeL3TxcGucSGdZSGfzskwlrDYI5Y1kIp3l0ZfPcfcjRzynMWo5oZxGD5Vz6StJN9oDbWQrByuPvjpjvanCAJLpeIpvPXXS9bmFlDfpRq+rs5a8ePSFjKDFx9L0Qvlh8vouVl9UdP789faFfGN/hElbXqwnXuTKvEbvMnzk6ESc7pC/ZIpvIzCG3ubhF8e4dFOfpyusFe2vn0Et1w2xGupZtZtIZxkdi3HxxhKGvr98/rOTSrfgxQx46GCpT+5Xzs2zv8yEIif64lzJ+GwZtPrClCqKqxSMDfh99EUCjZVu0tUFY6HyAJLPP/oKH/3npxkdm1vyXLnB4Joux4DwvEfvQYrQXnzxseRFo4eCXPnY4XNcsL4n//sWqm7rq9MvpLNlc+ihfNbN0Yl5tq3trrk4shaMoceK7j95bIo3X7jO0/pr69xuQPeiL5VG5pV6tkEYHYuRySkuHul3fT4S9LOmO+SpDYLX9geawWjlnvRjc4XP/dqTJzy977hHL3PrmiiZnHIdqJ3NWfnx5Tx6sAKyjfboq22XUWkAiR7U/eSxpRdOLxq9vhAk0tn877O224NH31+I9ziZWUgT8vtK7qfT0KcyOZ44OsnrbNnGet/qK7i9kEjnKt7dhPylg7HHJuJsH4rWdZsqYQw98OjoODkFb/Jo6LV0U6/Kx3p59MN19OgPnZoFKOnRg50W5+Ek0p0cvWj01nqVjaTujHjRSB/feea0p9tzrwHCXet7AXjp7FLPdj7l7bcaaHBjs0S6ep19Q3/pNggnpxd44Yy1v/uPTS/9PA/plc65seNzSdbYxVCV6OsK0BX0L5FudEOzUp7vsCOl+Onj0yTSOa7fWYi/jNTQk8kLCQ93Uz6fEHKZMpXJ5jg+GWf72spxrXpiDD1WWuVANMiVWwY8rT/UEyKdVcwu1CfndTnTpZwM9yytFKyVQ6dniYb8bFtT2vMY6S/fS1yjvfNKQ0c0XloIaA34A2/ayVwyw/0Hz1R833yfm57y23HBeisr50UXQ1+pz43GS5xhOdSSXpkfQOJi6B98wYpRnTfU7SqFeUqvDC3W6L1q0CLimiFTqv2Bpq/LyoA7F0vx2OFz+IRFgXYtL56pIC8ePTfPn333kOf+VV6+C9DjBBc7ICenF8jkVHsaehF5m4i8KCKjIvIxl+dFRD5lP39ARHbby7eIyEMi8ryIHBSRf13vHVguuZziETutslx5t5P8MO46ec910+jr2Abh0KlZLhrpK9uyYONA+elAmnxDs26vHn3lFgJjcwkCPuHWSzewaaCLr+93DyI6KRj68gaoNxJk00AXL55xMfRl5sU6GYyGGtaTPpPNkcmpqj16sJqbuXn0Dz5/lu1ro7zzqk28PBbL6+MaLxq9lna0Ru9Fn9ds7O9a4nmX6lypERGGekKMzyV5bHSCSzf1L1rfq7z4radP8rlHX+GFM7OetjWZzlXU6MF9nODRCSuby0umWj2paOhFxA98GrgFuBh4r4hcXLTaLcAu+9+dwGft5RngD5RSFwHXAR90eW1LOXhqlnOxFG9+TeVsG43WHeslk+jpUss39PXZrlxOceh06YwbzUh/F7OJTH5Ydimq1+grtxAYm7UqXAN+H7+6exM/eXl8icZbzPhckr5IwFOB14Ubel2lm0q96DWNnDKVyuqCnepvyDcNLh1AEk9l+OnhCW56zXp2bxsE4CmHV5/LKRLpXMXvTTd5S9iGvpqsEjcZsJJHD1YCwvGpOE8dn1ok25R732JeHrNakx885c3QJzJZT999OOBbknWjUyu3r20/jf5aYFQpdUQplQK+DNxWtM5twBeVxV5gQERGlFKnlVL7AZRSc8DzwKY6bv+yeejFMUTgDbu8G/qhXssQ1asNwuwyh45oCv1ulrddJ6YWiCUzXFJGn4dCWlylzJvpeIpI0OfJwIK3FgJjDo/xV3dbE6++WSI1UHMulvKU7gdwwfpeDo/Hlsz8rNSLXrNxIMJ8KtuQ2QWJKubFFqOrRZ2y2E9HJ0hlctx80Tqu2DKAT2D/q9P557VX6jW9Umv0w1V49CMDXUv6x3sy9D1h9h2dJJ1ViwKx+ff1IC+OnrUM/SGPht5LqilYmTeJIunm6MQ80ZDf83FYL7wcKZuA446/T7DUWFdcR0S2A1cBj1e9lQ3koRfHuHzzAGur8D7q3QZhLpGxswuqvxV3Uq9+N4dOW0Um5QKx4MziKH8ieW1opvHSBmFsrtAwa8dQN3u2DfK1J4+X1fXH58r3uXFy4YYe0lmV98A0BY2+vAG61O6e+GwDCnbyYwRrOF7cBpA8+MJZesIBrtm+hp5wgAs39C3y6L30doHCheDMbIJUNleVR7+xP7Kkf7w3Qx8ipyDgE67ZPrj0fSvIi5lsjiPntEfv7bdKZCqnV4LVxtjNo292aiV4M/RuW1R8NpVdR0R6gK8DH1VKuV42ReROEdknIvvGx2sr066WyfkUTx+f5s0eiqScDEZD+KSehn557Q809WqDcPDULH6fcIGdfVIKr7n0VkOzKgy9riwtY+jH5xL5uaEA77p6M4fH53mmjGH10jZXo/e9OCBbaV6s5tJN/YjAMyemPX1eNSSX49EX5dIrpXjg+THecMFQPkNm99YBnnp1Oh+c9GrotaPyqq1DrysxvMeN4pz3bE4xlyjfagIKzs1VWweIhpb+JpXkxVcn46SzioFokEOnZsvOIdAspLwVq4WDS4OxxybiTZdtwJuhPwFscfy9GTjldR0RCWIZ+X9USn2j1Icope5RSu1RSu0ZHq7O8NbKoy+PoxSe8+c1fp+wprt+RVNzy+xFr8m3UF6uR39qlp3D3RXvMNb3RRDx6tF7l6UKvWLcpZuMPWPUWV7/9stHCAd8fO3J466vgcoNzZzsHO7B7xNeKgrIetXoe8IBdg73NKQEX0sptQVjFxv6g6dmGZtLcvNr1ufX2b11kFgyw8t24VR+XqxH6eaYbeir9eih4DTMeiyy07/n9S6yDVSWF7U+f+tlI8ynshyrMBgerGK1Shc90Fk3BY8+k81xfCre9EAseDP0TwC7RGSHiISA24F7i9a5F7jDzr65DphRSp0W6/7kfwHPK6X+e123vA489MIYa7tD+SEF1TDUE65bp8jZZU6X0kSCVhuE5V6AvARiAYJ+H+t63dP1nHhtUawZ6Crv0Z+LpVBqcdVlXyTIL16ygW+XyKlfSGWJJTOeDX0k6Gf72mg+t1yTz7qpYOgBLt/cz4ETM3WfNOWlH3opigeQPPC8FaNy9ni62g7I6nz6hEePPhTwEfAJr05qj746jd7aLstp8FpNre8qb3AJxFrPl5cXR21D/8tXbAS8yTfeg7H+RYNHTk0nSGdVe3r0SqkM8CHgfqxg6leUUgdF5C4Ructe7T7gCDAKfA74fXv5DcBvAjeJyNP2v1vrvRO1kM0pHnlpnDdeMFxx6pEblqFvL48eLPlmOWmfk/MpTs8kKurzGi/Brul4uirpJuD30RsJlPToddVlcbuKd1+9mZmFNA88P7bkNfq38qrRg3vmTSyRIRrye0rFvWLzAOdiybqX4C/Ho1/THSIS9BUM/QtnuWrL4hjVtrVR1nSH8vn0XqUbvY72nr00NNP0hAOL+scXGpqVN/Q3X7SeL7xvD9fuWOP6fCV58eWzc2zsj3DV1gECPqmYeZPJ5khnVU0e/dEJnXHTnh49Sqn7lFIXKKV2KqX+zF52t1LqbvuxUkp90H7+MqXUPnv5T5RSopS6XCl1pf3vvsbtjncOnJhmKp7mTa+pTrbRrK2y381zJ2f4mwdfdn1uLpFedsaNZrltEJ4/bVfElmh9UMzGgQinymj0SlndBauRbkBXx7rvh66KLTYkN5w/xIa+CF/fv7QlQjVNtjQXrO/l2GQ8L11A5YZmTi7fbH2HB+qs0xeCsdV79CLCRnsAydhsggMnZrj5ovVL1tm9dYD9disEvf9docqfFwn5ySnrbsPr96Rx9o/36tEH/T5ues36ksHNDf3l5cXR8Rjnr+8lHPCza31vRUOfyFTuRa+JBP3uhr5NpZsVyUMvjuMTeMMud22vEkM9Yc/plYl0lg9/6Sn+6gcvlczNrpdHP7zMOw0vrQ+c6ElTpeSJ2USGbE5VlXUDurK0lEfv3jDL7xPeuXsTj7w0zoMvnF30XKWh4G5cuL4XpQq392D1oq8UiNVcNNJHwCdlA8S1sJxgLFg6/cnphXzH1ptcnJ2rtg5y5Nw8U/OpvEfvxbhpT3ddb6TqzBJndex0lY3wShH0+xjuCbt69LmcYnQsxq51ViX0JRv7OHSqvNRWjWxm5dEXnISj5+J0Bf1V3enUi1Vr6H9w8AxXbxusSlJwMtQTJp7Kehr99ZmHD/OKnab33QOnlzy/3OlSToYrSDczC+myF4JDp2cZ6Y8smShVipH+CAvp7JJKSk217Q805QqOxuYSiLjLMO973XZ2DnfzO3+3j4986Skm7H3V+1zNSXbBhqWZN7FE+XmxTiJBPxdu6K27R69zs2tNx7U85wUeeH6Mjf0RXrNhaXaV1umfOj7lWaN3rlNLnrhTBqy242nZ9x1wlxdPTi+QSOc432Hoz8VSZQfD67sb71k3BY/+2MQ829ZGm55aCavU0I+OzfHCmTneftlIze9RGPRR3qsfHYvx2YdHeedVm7h2xxrue3axoc/aQ0fqptH3hJhLlG6D8Idfe4Z3fuanSwqBNOV60LtRKZc+3/6gaummdK+Ys7NJ1kRDBF0mga3vi/CdD9/IR9+yi+89d5q3/PdH+Mb+E4zNJRHB8wUMLC01FPAtuguLVeHRA1y+eYADJ2Y8pe15ZbkevR5A8ujL57jponWuhufyzf34fcL+Y9MO6caDoQ9pj756Q+/sH6+zbpbb0VW/r1vCgM4qKnj0ltRWLiD79PFpAHYOV5ZfwgH/ovPwlYn5lujzsEoN/befOY2IlVJVK/nipDLesVKKP/7ms0RDAf7j2y/i7ZeN8PJYjJeLPERYfvuD4u1y89qzOcVjhyc4PrnAvU8XZ8jaPejHS/egd6NSsGtqOR59iV4x4xWGTocCPj76lgu47yM3smOom3/7lWf4/KNHWBMNlR0TWYzfJ+xa17Mo8yaW8K7RA1yxuZ+5RMZT2p5XlhOMhULmzUI6uyit0kk0FOCikV6ePDZVdTAWavToHbn0Mwvpqqqpy76vfadQLMm8bFfEao/+ohHrzubgydI6/Y+eP8va7hBXbllanFWMMxibzSmra2UL9HlYhYZeKcV3DpzitTvWVFXQUYw2qBNlDP1XnzzBz1+Z5I9ueQ1DPWFuuXQDIvBdh1c/q3vR1zEYC+5tEF48M8dcIkPAJ3z2kcNLvMyXzs6RzanaPPoSmSXT+T431Qdj55IZ1zsPq/1B5d9u1/pevnrX6/j4L1ntlbbWkNZ24freRbn0VjDW+75cvnkAqG9ANh+MXYZGD5bO7NYfRnP11kGeOTGdd0Y8afTL9OjB6h8/HU/VRbYB68IWT2WXdJsdHYsx3BvOOyG9kSDb10ZLBmTT2RwPvTDGm1+zzlPWVSToJ5NTZLI5Tk0vtCy1ElahoX/hzByHx+f5JTtvtlZ0v5tSufQTsSSfvO95rtk+yHv2WLVk6/oiXLNtsXyjC3D6uuoUjNXVsS464xNHJwH4g1+4kNGxGD98fnHAstpALFgXloBPSjaOKvSirzIY2126383YbNKzIfH7hPfdsIMf/+Gb+dvfuLqqbQBLpz8zm2DG3o5qq5gvWN9DOODjmeP1C8jqXje1erubBi1D//rzh8q+x+5tg8RTWZ45MY2ItwtLPTz6U7ZHXy9Dn8+lL7rrfNkRiNVcsrGfg6fdf6t9R6eYTWR4y0Xud0HF6O8rlc3lM262GemmOXz7mVP4fcItl9Yu20BB6y0V2PzkfS8QS2T4s3detihP/9bLNvDS2Vh+XFu9etFryrVB+PnRSTb2R/i9G3ewdU2Uzzx8eNHt7KHTs/SEA2wZ9O51+H3C+r5IyVzxVyfjBP1StdZaqI5dfCHN5RTnYt4NvWaoJ1zTHdyFegjJ2BxKqarSK8GqCbhkY19Fj76a1tLao/cy1MONjQNdXL65n9srDFXfvdWSJ/YemaQr6PcURIw4sm6qZcTh0dfV0LtUxyplZdycX2ToL97Yx/HJBdfkgh89f5ZQwMeNHjP18gPC07l8e+IdRrppPJZsc5rX7VxbVVDODT2M282gPnb4HF/ff4L3v/G8Jf1ibrlsxJJvDliDMurVi16j2yAUNzZTSvHEK5Ps2b6GgN/H+994Hs8cn84PVAbdg7636gKyUo2jMtkc3zlwmjdf6O1W10mh383iE24yniKTU01LUbtQZ96cmWMhnSWnKve5KebyzQM8d2qGTIkA+JPHprjs4/fzjB3oq0QykyPol6q/U03Q7+PeD72et1xc3jPdPNjFUE+YWDLjSZ+HQqviWjz6SNDPYDRoe/QZ+ruWd45qNrpUx56ZTRBLZlw8eututriTpVKKHz1/lht2rqXb44VeZ+YkMlmOnpsnEvS1JLUSVpmhf/bkDK9Oxvmly5cn22iGesP8ZPQcH7/3IP/pW8/xH7/5LH/0jWf59189wNY1UT58064lr1nfF2HPtsG8fDOXrK9HHwn66XW5AB2fXGBsLsk1dgXhu3ZvZl1vmM88PApYnvLzHlsfFFOqOvbRl89xLpbkXVdvrvo98z3pizz6fLHUMuIr1TDSH6E3HOCls3Oep0sVc8WWfhLpHKPjMdfn7/nxYdJZxaMve2vml0znag7EVoOIcPW2AcC7TLQcjR70sbRgjRGsk0c/3GvLiw6PXtdGnL9usSNWKvNmdCzGsYl4xYujE6dHf8zOuKmlCr8erCpD/50Dpwn6hV+8ZENd3u/G84c4N5fkW0+f5LvPnub+g2f40fNnCfqFv3z35SVPjlsvG+HFs3OMjsXyAaJ6efSgZ8cuNpA/t/X5a7dbhj4S9POvbtzBT0cneOb4NK9OxplPZfMHejVsHOjizExiSXD3a/tPMBgNVt00Dpw96YsMfb79QXM8IxHhgg29vHBmjjmPveiLyQdkXXT6Vyfi/OCQFStx9oAvR9Jjr5V6oOUbL6mVYP0uvZFAzXfMGwcinJ5O1DUYm5cXHR69zrjZtX6xRz/cG2Zdb3iJR6/jWaWylNzQ538yk+OVc1YOfauon3Vpc3I5xXeeOcUbdg3TX2UGSCk+cdulfOK2S6t+3S2XjvCJbx/ivmdPoy/w9TT0Qz1Li6aeeGWS/q7golvVf/nabXz6ocN85uFRbrvSGh9QTSBWs3EgQsruKKlv2WfiaX546Cz/8tqtNWnJBY9+sXSTr4qtQQOulQvW9/K950577lxZzI613fSGAzxzYpr3XLNl0XN//7Oj+EV43a4hnnp1CqVURS080SSPHshPnPIq3fzGddt4++UjVaWxOhnp7+JnhyeYT2XrZuit913cquPlsRiD0WBe6nRyyca+JZk3Dzw/xmWb+vMD1r2gPfp4KsPxyQXPQdxGsGo8+qeOT3FqJsE7rlheELYebOgvyDdziQzhgK+uJ+5wT3hJ1s0TRye5ZvvgolvHnnCA37p+G/cfPMv/ffokAZ8sCU55QWc1OG+Nv/PsKVKZHO/aXb1sA5bWG/L7lkg34yXaHzSSC9f3MB1P84o9oKJaQ+/zCZdu6l/SsngukeafnzjO2y8f4ZZLNzAVT+eDduVIZrI1p1ZWy2Wb+gn6xbOhjwT9+eOhFkbsyVxQuaFZde+7WF4cHZvj/HU9rhfVSzb2MzoeywfIz8WS7H91qmpDrc/pYxNxUtlcy3LoYRUZ+m8/c5pQwNfSq6qTWy8b4YUzczx9fLpu+rymuA3C+FySI+fm2bN9aYe/992wg66gn/sPnuX8dT01pezpbAlnsOvrT57ggvU9XLqp+jsEsCSTgWhwSdHU2GyCXo9zX+uFboXwpN3kq9pgLMDlW/p54czsokEUX913glgyw2/fsIOrtg4A5BuJlSOZydWccVMtkaCfa7avqcqTXQ4bHReJenr0G/sj+aIppRQvj8WW6POaSzb2kc2p/HD4B18YQyl4y8XVSZC66ZwuuGuldLMqDH02p7jv2dPcdOG6uhvVWrnlMitO8Pgrk/TVUbaBpW0Q9tn6/DUuhn5Nd4jbr7XkhFoCsVAomtIe/ZHxGPtfneZduzcvq6+HWwdL5wjBZqFTLJ+0+7P3VlEwpbli8wDprOKF09ZJn80p/u6xo1y9bZArtwywa10vPeEATx33ZuibeaG75449/Ld3Xd6UzxpxXFDqLd2kMpa8ODGfYjqeXpJxoykEZC355keHzrKxP1L1+aHvul48Y71Pq1IrYZUY+p+/MsnYXLItZBvNSH9XvnFUPfV5cFTtzltG8omjU0SCvpIDVn7vxvOIhvz5jJxqGYwGCQcKPc6/sf8kPoFfuWp5c+AHosElBVOWoW+ePg+wtifMUE84f8LW5NEXtSx+4PmzvDoZ53dfvwOwAoZXbhnID/soRyLdPOkGLKnKazB2uWinAerT50aTb68wnSgZiNVsWdNFbyTAwVMzJNJZHn35HDdfVLoVcin0xfjFM3OEAz7WN/m4dbIqDP13DpyiK+h3bcfaSnSvnXrfZRQPCX/i6CRXbhkoebu/caCLvX98M7+2Z4vr85XI9zi3M2+++dRJXr9rmPXLTIF09+gTTdXnNRdu6EEnFXWHaxvht6Y7lG9Z/IWfvsKmgS5+wZGut3vrAC+cmS0531STzHibWdqJ6PGUUG/pplAdO5pvZuYu3YgIF49YAdmfHZ5gIZ2tKq1Soy/Gp2YSLU2thFVg6DPZHN9/7gw3X7TOdXhwK7nVlm/q1f5A42yDEEtmOHhqJp9WWYq+SHBZB+JIf4TT0wvsPTLByekF3rV7ed48WG0QnFk3Sqmq2h/UE134FqoxcC4i9mjBaQ6emmHvkUl+63XbFmWnXLV1kJyqPFA82WSPvpmEAr68o1LfYGyh6vblsRg94QDryzgMl2y0Yir3HzxDd8jPdedVf7frPE5aqc/DKjD0j78yycR8infUqUiqnoz0d/E7N+zgrTV4C+VwtkHYf2yKnMI1EFtPdNHU1/afoDccqEutgu5Jr9s0zCYyJDO5pks3UNDpvfaid+PyzQOMjsX4mwdHiYb8/FpRCwIdkH2qQj59qskafbPRzc3q6dGv7Q4RCvg4PZPItz4oJ8VcsrGPRDrHN586yRsvHK7p4u68GLcy4wZWQR79T0fPEfAJb7igtklSjeY/250V68laRx+ek9ML+KSQD90oNg5EODub4PvPneGXr9hYF0M0GA2SyffrDzKui6VaIt1Yhr4WfV5zxeZ+cgq+99wZfuv6bUsM2UA0xHnD3Tz1avmAbLM1+mYz0t/Fy2Mx13kDtSIidi59gpfHYrzpguGy619iZ4slM7maM/Wcox5b1Ydes+IN/d4jE1yxZaDtZJtGotsgjM8leeHMHJds7K8697taRvq7yCmIp7I1tTxwo9DYLE1vJJhvf1BLH5Xlssv26JfzPV62uRAMf98NO1zXuWrLIA+9OFa2cCqZya1oQ//Wi9fXPUEBLHnxhdOzjM8lSwZiNTuHewgFfGSyuZoqu2GxdNOq9sSalXu0APPJDAdOzNSkr3U6w71hTs0kePr4tGtaZb3RGui2tVH21OnuobjfTSuqYjU94QCbB7uWZejX9UbYMdTNWy9eXzLVbve2ASbnU7xaYlCJUoqFdLZplbGt4F1Xb+Yv/8UVdX/fjfadApQOxGqCfh9Xbh7guvPWMlhjOwe/Twj6rYu1kW4ayJPHpsjkFK/dUXq4wkplqCfMzw5PkMzkuHZHY2UbgC12j/NfvWp5ufNOijtYjrVQugH4yM27PFeIluKf338d3WXuLnVvmf2vTrn2Ln/kpXHiqWy+y6LBO9oZATxVgN/9m1fjX+axHA74EcmxoUlN+Eqxog393iMTBHySz1dfTQzb7WUBrt7WeI9+53APn3rvVbzlovqlsBb3pB+bTRIJ+pYVEF0O76kx/dRJpbuRC9b30h3ys//YNO+8aqkEdvcjhxnpjyx7cM5qRLdmiAR9+Slb5VhuK3OwArIj/ZGWplaCR+lGRN4mIi+KyKiIfMzleRGRT9nPHxCR3Y7nviAiYyLyXD033At7j0xw+eZ+z/2jVxJ6ePl5Q91N0bRFhF++YmNdYyF5j36+IN2s643U7Y6hHfH7hCu2DLhWyD716hR7j0zyu6/f0bQWCCsJPSv3/HU9TTO8kaC/5bINeDD0IuIHPg3cAlwMvFdEilNFbgF22f/uBD7reO7vgLfVY2OrIZ7S+vzqk22gELBshj7fKHRWyvRCQbpp1eCGZrJ76yDPn54jnlpcOHX3I4fpiwS4/dryk6EM7miPvpI+X0/+49sv4oNvPr9pn1cKL27BtcCoUuqIUioFfBm4rWid24AvKou9wICIjAAopX4MTNZzo72g9fnVauh10UmtbQ3agYDfR18kkG+DYA0FXwWGftsA2Zxa1O3y8HiMHxw6yx3Xb294BtVKZdNgFwGfcNFI8wz9rZeNcOWWgaZ9Xim8GPpNwHHH3yfsZdWu01RWsz4PcOXWAc4b7uYNHudbtiuD3YU2COOzze9z0wqu3GIds87CqXseOULI7+N9N2xvzUatAPoiQb71wRu44/rtrd6UpuPFNXATs1QN65T/EJE7sWQftm5d/q3p3iOTXLZK9XmA12zo48E/eFOrN2PZDERDTMXTLKSyzCUzLcmhbzZrukPsGOpmv104dXY2wTefOsmvXbMlf6dmqI1LSzT2W+l48ehPAM50g83AqRrWKYtS6h6l1B6l1J7h4fJVa5WIpzI8c3x61co2K4nBaJDpeKrpIwRbzVVbB/ITp77wk1fI5HL83o3ntXqzDB2KF0P/BLBLRHaISAi4Hbi3aJ17gTvs7JvrgBml1Ok6b6tnVrs+v5LQHSzzxVItzkduFldtHeRcLMXBU7P84+Ov8vbLN7K1xdWVhs6loqFXSmWADwH3A88DX1FKHRSRu0TkLnu1+4AjwCjwOeD39etF5EvAz4ALReSEiPxunfdhCXuPTOD3Sd0qNA2tQ0+Z0u0PVotHv9tucPaxbxwglszw/jcYb95QO54EbKXUfVjG3LnsbsdjBXywxGvfu5wNrIXHj0yu2vz5lcZgNMRcMpOfXrVaDP2F63uJhvw8d3KWG3cNrVpt2VAfVlzVRTyV4ZkT06uy7cFKRBdNvXR2joBP8v1vVjoBv48rNg8A8IE37Wztxhg6nhXn8u4/Nk06q1ZlI7OViG6D8OLZGMO94ZaXkjeT26/dwtY1Ua43sSbDMllxhj6vz3dwRaihgPbgXz47V3KY80rltis3cduVLS1HMawQVpx0s/fIBJdtanz/dUNz0OPk4qksw6ugWMpgaAQrytBrfd6kVa4cnL3AV0P7A4OhEawoQ6/1+dcafX7FMOgYEL1aMm4Mhnqzogz946+Y/PmVRlfQn2/Juxr63BgMjWBFGfq9Rya4dFM/vZH6TY83tBYRyXv1xqM3GGpjxRj6RDrLM8dX53zYlY7OvDEavcFQGysmNSUS9PPTj92EVaRrWEkM5D16I90YDLWwYgw9sCpa2K5GBqMhRArjEQ0GQ3WsGOnGsHLZsibKlsEoAb85XA2GWlhRHr1hZfLRt+ziX71+R6s3w2DoWIyhN7Q90VCAaMgcqgZDrZh7YYPBYFjhGENvMBgMKxxj6A0Gg2GFYwy9wWAwrHCMoTcYDIYVjjH0BoPBsMIxht5gMBhWONKOvWFEZBw4VuPLh4BzddycdmOl7x+s/H00+9f5tOM+blNKDbs90ZaGfjmIyD6l1J5Wb0ejWOn7Byt/H83+dT6dto9GujEYDIYVjjH0BoPBsMJZiYb+nlZvQINZ6fsHK38fzf51Ph21jytOozcYDAbDYlaiR28wGAwGB8bQGwwGwwqnIwy9iGwXkeeKln1cRP6diLxPRDZ6eI+HRaTu6VAiskFEviwih0XkkIjcJyIX1Ptzqtiej4pI1PH3fSIyUMP7bBeRf1nm+ayIPC0iB0XkGRH5tyJS9nhy+x07GRFZLyL/JCJHRORJEfmZiLyz1dvlFRGJOR7fKiIvi8jWGt7nV0Tk4mVsx1ERGar19WXet6pzU38fIrJRRL7mWP4lETkgIv+mDtu0R0Q+tdz3qZaOMPQVeB9Q0dA3AhER4JvAw0qpnUqpi4E/Bta3YntsPgrkDb1S6lal1HQN77MdKGnogQWl1JVKqUuAtwK3Av+lhs9pCCLib/D7C/At4MdKqfOUUlcDtwObG/m5jUBEbgb+P+BtSqlXa3iLXwFqNvSNYDnnplLqlFLq3fb7bABep5S6XCn11x4/u+SUHKXUPqXURzztRD1RSrX9Pyyj81zRso8D/w6IAS8CTwNdwH8GngCew4qM64Dzw8B/A34OvATcWIftugnrRC9eLsBf2tvwLPBr9vI32dvxNeAF4B8d23cU+ASw337Na+zl3cAX7H16CrjNXu4H/spe9wDwYeAjQMpe9pDjfYfsx3fY6z4D/B972d8B73Zse8z+fy8wY3+v/8ZlH2NFf58HTNj77rf3/wn7895f/Dvajx+193c/1skE8Bngl+3H3wS+YD/+XeD/sR9/C3gSOAjc6dwm4L8CjwOvB37D/r2fBv4W8NfxmLwZeKTEc+8D/sbx93eAN9mPPwvss7f9E451jgKfBH5mP78buB84DNzVoPMqBtwIHNHHm73c9Xuz1/8z+/jZi2U0XwdMAq/Y6+/EOsb32K8ZAo6WOmadxyjW+ft94P3Ay8Cw/bwPGMU+jpd5bvYAD1A4z25zOfadx+kBYMHetxuBK+19P2Afn4MO+/JJ4BHgDyhhb7BswHfsx9cCj2Gd148BFzbid1ZKrQhDnz+o7OVrHI//D/BLjh/i/7Uf3wr8qA7b9RHgr12Wvwv4oX1grwdeBUbsH3kGy+vzYZ3Ur3cc7PrA/33g8/bjTwK/YT8esA+abuADwNeBgHO/cRj2opPoEqwL4lDR+n+Hu6HPH5Al9j3msmzK3t87gT+xl4WxDNcOFp9AUSBiP94F7LMf3w78pf3458Be+/H/Bn6xaNu7sC6ma+2/FfAe+/FFwLeBoP33Z4A76nhMuv729nPvo7Sh19vut4/Jyx2/0wfsx3+NZUh6gWFgrEHnVRrLSF/uWFbye7O/X30+/YXjNy4+hh7G3dCXO2a3Az9yfNZ/AT5qP/4F4Ot1OjcDQJ9j20YpOFtuhj7/2P77APBG+/F/Bf6HY58/U/QdLLE3LDb0fY7v4i3V7mM1/zpFuimVA+q2/M0i8riIPIt1Vb/E8dw37P+fxPoBG8XrgS8ppbJKqbNYV/lr7Od+rpQ6oZTKYXkJzu1w275fAD4mIk9jHTwRYCvWgXG3UioDoJSarLBNNwFfU0qd87h+LYhjm++wt/lxYC2WMXcSBD5n/05fpXDr/yhwo635HgLOisgIcD2W1wPwERHRXuUWx3tnsQwJWB731cAT9nbcjHXX0RBE5NN2rOKJCqu+R0T2Y3lxl7BY8rjX/v9Z4HGl1JxSahxI1BJn8UAa6zv9Xceyct9bCuuiBbWdQ+WO2f8L/G+l1Bftv7+AdQcK8DtYF/p6IMAnReQA1oVlEx6lVhHpBwaUUo/Yi/4eeINjlX8uekkle9MPfNWOW/01i21VXemUicsTwGDRsjVYt4t5RCSC5YHsUUodF5GPYxlGTdL+P0t99v0g8G6X5eKyrHgb3LbDbfsEeJdS6sVFH2BpkKUugG6UWj+DHaux3zNUxXs6t+c8rO0esz/rw0qp+4vW2e74898AZ4Er7M9PACilTorIIPA24MdYv/N7sLytORF5E5bBuF4pFReRhyn8xgmlVNaxv3+vlPqjWvbHAwex7tywt/uDdkBxH47v1CYCICI7sO5Cr1FKTYnI3+F+fOZYfJzkaMy5msP6bn8kIn+slPok5b+3tLLdT8qfQ879d+5fuWP2p8AtIvJPyuK4iJwVkZuA1wK/7n23gNLn5q9j3SVdrZRKi8jRom1cDvNFf1eyN3+KJbG+0z43Hq7TdiyhIzx6pVQMOG0HjRCRNViG4CfAHNYtLhR+sHMi0oP7D11PHgTCIvJ7eoGIXIMlYfyaiPhFZBjrqv/zGj/jfuDDthFGRK6yl/8AuEsHfuzvBBZ/H04ewPIm1xatfxTLgwO4DcvTLvc+S7D38W4suULZ2/wBEQnaz18gIt1FL+sHTtt3Nr+JJWVofoYVVP4xlof/7+z/9eumbCP/GuC6Epv1APBuEVmn91dEtnnZH488CERE5AOOZToIfhS4UkR8IrIFS4sF61Z9HpgRkfXALXXcnppQSsWBdwC/LiK/S23fW/GxcpTCMeU8B0sds2DF1iawHDXN54F/AL7iuIB7pdS5uQ1LCkuLyJvtvz2hlJoBpkTkRnvRb2LdrddKP3DSfvy+ZbxPRTrC0NvcAfyJfTv5IFYg6zCWPni3vTwJfA7r1vdbWMHAhmEbtXcCb7VTuA5ixQ7+iULQ80HgD5VSZ2r8mD/FMr4H7Fu8P7WXfx5L+z9gyxg6Q+Ye4Hsi8lDRth7ECqQ9Yq//3+2nPge8UUR+juU5aa/kAJCx5Qi3tLIusdMrsW6Bf4AVTNbbdgjYb2/z37LUo/kM8Fsishe4gMXe0KNY2uUoVtBsDQVD/30gYN96/ymWfLMEpdQh4E+AH9jr/hArTlIX7N/+V7C+u1fs7+/vgf+A5Z2+gnUc/pW9DyilnsGSbA5iSRM/rdf2LAdbQnkb1ve1i+q/ty8D/15EnhKRnVj7/AEReQxLB9eUOmY1H8W6eP6F/fe9WMHTqmWbMufmfcAeEdmH5d2/UOVb/xbwl/Z3cyWWTl8rfwH8uYj8lMWOTt0xLRAMBkNbIlbdy18rpW6suLKhLJ2i0RsMhlWEiHwMK0unWm3e4ILx6A0Gg2GF00kavcFgMBhqwBh6g8FgWOEYQ29YUUhRU7flrmcwrASMRm9YUdgFMHt0BfBy1zMYVgLGozd0LCLSLSLftXP9nxOR/4LVyfQhXUcgIp8VkX1itVP+hL3sIy7r/YJYbYb3i8hX7YK7Up97VEQ+Ya/7rF24hYhcKyKP2fnkj4nIhfby94nIt0Tk23bO/YfEauv8lIjs1YVDIrJTRL4vVsvjR/X7GgzLplFNdMw/86/R/7BaEHzO8Xc/S5u6lWsiphu8DWFV4Xbbf/8H4D+X+dyjuDegc21ShVX1OEqhSdkMdkdKrB4nH7UfPwDssh+/Fniw1d+x+bcy/pk8ekMn8yzwVyLy37A6Aj5qd4pw8h4RuROrZmQEq4nYgaJ1rrOX/9R+fQirDUM5nA2rftV+3A/8vYjswurpEnSs/5BSag6YE5EZrA6Reh8ut+8gXofV5Eq/JlxhGwwGTxhDb+hYlFIvicjVWG1g/1xEfuB8Xio3EcuvCvxQKfXeKj7erWFVuSZVxU3KnA3MAlgy6rRS6soqtsFg8ITR6A0di1gjJONKqX/A6q+ym8UNtso1EXOutxe4QUTOt983KrWNg6y5SZVSahZ4RUT+hb0NIiJX1LANBsMSjEdv6GQuw2owlcPqrf4BrL713xOR00qpN4uIbiJ2hMVNxO4pWu99wJdERMslf4I15KUa/gJLuvm3WM3squXXgc+KyJ9gyT5fxmqMZzAsC5NeaTAYDCscI90YDAbDCsdINwZDCUTkm1izbp38B1U0OctgaHeMdGMwGAwrHCPdGAwGwwrHGHqDwWBY4RhDbzAYDCscY+gNBoNhhWMMvcFgMKxwjKE3GAyGFc7/D9Z0V3TBN0luAAAAAElFTkSuQmCC\n", "text/plain": "
"}, "metadata": {"needs_background": "light"}, "output_type": "display_data"}], "source": "state_grouped = dfq.groupby('state_name').sum() \nstate_death_rate = state_grouped['deaths'] / state_grouped['confirmed_cases']\nstate_death_rate.plot()"}], "metadata": {"kernelspec": {"display_name": "Python 3", "language": "python", "name": "python3"}, "language_info": {"codemirror_mode": {"name": "ipython", "version": 3}, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.6"}}, "nbformat": 4, "nbformat_minor": 4} ================================================ FILE: examples/python/query_results.py ================================================ #!/usr/bin/env python # Copyright 2018 Google Inc. All Rights Reserved. # # 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. # An example that shows how to query BigQuery and read those results into Spark. # # It relies on https://pypi.org/project/google-cloud-bigquery. To see how to # install python libraries into Google Cloud Dataproc see # https://cloud.google.com/dataproc/docs/tutorials/python-configuration from __future__ import print_function import time from google.cloud import bigquery from pyspark.sql import SparkSession # Currently this only supports queries which have at least 10 MB of results QUERY = """ SELECT * FROM `bigquery-public-data.san_francisco.bikeshare_stations` s JOIN `bigquery-public-data.san_francisco.bikeshare_trips` t ON s.station_id = t.start_station_id """ spark = SparkSession.builder.appName('Query Results').getOrCreate() bq = bigquery.Client() print('Querying BigQuery') query_job = bq.query(QUERY) # Wait for query execution query_job.result() df = spark.read.format('bigquery') \ .option('dataset', query_job.destination.dataset_id) \ .load(query_job.destination.table_id) print('Reading query results into Spark') df.show() ================================================ FILE: examples/python/shakespeare.py ================================================ #!/usr/bin/env python # Copyright 2018 Google Inc. All Rights Reserved. # # 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. from __future__ import print_function import tempfile from pyspark.sql import SparkSession spark = SparkSession.builder.appName('Shakespeare WordCount').getOrCreate() table = 'bigquery-public-data.samples.shakespeare' df = spark.read.format('bigquery').load(table) # Only these columns will be read df = df.select('word', 'word_count') # The filters that are allowed will be automatically pushed down. # Those that are not will be computed client side df = df.where("word_count > 0 AND word NOT LIKE '%\\'%'") # Further processing is done inside Spark df = df.groupBy('word').sum('word_count') df = df.orderBy(df['sum(word_count)'].desc()).cache() print('The resulting schema is') df.printSchema() print('The top words in shakespeare are') df.show() # Use tempfile just to get random directory name. Spark will create the # directory in the default file system anyways. path = tempfile.mkdtemp(prefix='spark-bigquery') print('Writing table out to {}'.format(path)) df.write.csv(path) ================================================ 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 com.google.cloud.spark spark-bigquery-parent ${revision} spark-bigquery-parent spark-bigquery-reactor pom Spark BigQuery Connector Reactor Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo Google Inc. http://www.google.com scm:git:git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git scm:git:git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git GitHub Issues https://github.com/GoogleCloudDataproc/spark-bigquery-connector/issues spark-bigquery-parent bigquery-connector-common spark-bigquery-tests spark-bigquery-scala-212-support spark-bigquery-connector-common spark-bigquery-python-lib all false spark-bigquery-dsv1 spark-bigquery-dsv2 dsv1 false spark-bigquery-dsv1 dsv1_2.11 false spark-bigquery-dsv1/spark-bigquery-dsv1-parent spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support spark-bigquery-dsv1/spark-bigquery_2.11 spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11 dsv1_2.12 false spark-bigquery-dsv1/spark-bigquery-dsv1-parent spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support spark-bigquery-dsv1/spark-bigquery_2.12 spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12 dsv1_2.13 false spark-bigquery-dsv1/spark-bigquery-dsv1-parent spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support spark-bigquery-dsv1/spark-bigquery_2.13 spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13 dsv2 false spark-bigquery-dsv2 dsv2_2.4 false spark-bigquery-dsv2/spark-bigquery-dsv2-common spark-bigquery-dsv2/spark-bigquery-dsv2-parent spark-bigquery-dsv2/spark-2.4-bigquery dsv2_3.1 false spark-bigquery-dsv2/spark-bigquery-dsv2-common spark-bigquery-dsv2/spark-bigquery-dsv2-parent spark-bigquery-dsv2/spark-3.1-bigquery-lib spark-bigquery-dsv2/spark-3.1-bigquery dsv2_3.2 false spark-bigquery-dsv2/spark-bigquery-dsv2-common spark-bigquery-dsv2/spark-bigquery-dsv2-parent spark-bigquery-dsv2/spark-3.1-bigquery-lib spark-bigquery-dsv2/spark-bigquery-metrics spark-bigquery-dsv2/spark-3.2-bigquery-lib spark-bigquery-dsv2/spark-3.2-bigquery dsv2_3.3 false spark-bigquery-dsv2/spark-bigquery-dsv2-common spark-bigquery-dsv2/spark-bigquery-dsv2-parent spark-bigquery-dsv2/spark-3.1-bigquery-lib spark-bigquery-dsv2/spark-bigquery-metrics spark-bigquery-dsv2/spark-3.2-bigquery-lib spark-bigquery-dsv2/spark-3.3-bigquery-lib spark-bigquery-dsv2/spark-3.3-bigquery dsv2_3.4 false spark-bigquery-dsv2/spark-bigquery-dsv2-common spark-bigquery-dsv2/spark-bigquery-dsv2-parent spark-bigquery-dsv2/spark-3.1-bigquery-lib spark-bigquery-dsv2/spark-bigquery-metrics spark-bigquery-dsv2/spark-3.2-bigquery-lib spark-bigquery-dsv2/spark-3.3-bigquery-lib spark-bigquery-dsv2/spark-3.4-bigquery-lib spark-bigquery-dsv2/spark-3.4-bigquery dsv2_3.5 false spark-bigquery-dsv2/spark-bigquery-dsv2-common spark-bigquery-dsv2/spark-bigquery-dsv2-parent spark-bigquery-dsv2/spark-3.1-bigquery-lib spark-bigquery-dsv2/spark-bigquery-metrics spark-bigquery-dsv2/spark-3.2-bigquery-lib spark-bigquery-dsv2/spark-3.3-bigquery-lib spark-bigquery-dsv2/spark-3.4-bigquery-lib spark-bigquery-dsv2/spark-3.5-bigquery-lib spark-bigquery-dsv2/spark-3.5-bigquery dsv2_4.0 false spark-bigquery-dsv2/spark-bigquery-dsv2-common spark-bigquery-dsv2/spark-bigquery-dsv2-parent spark-bigquery-dsv2/spark-3.1-bigquery-lib spark-bigquery-dsv2/spark-bigquery-metrics spark-bigquery-dsv2/spark-3.2-bigquery-lib spark-bigquery-dsv2/spark-3.3-bigquery-lib spark-bigquery-dsv2/spark-3.4-bigquery-lib spark-bigquery-dsv2/spark-3.5-bigquery-lib spark-bigquery-dsv2/spark-4.0-bigquery-lib spark-bigquery-dsv2/spark-4.0-bigquery dsv2_4.1 false spark-bigquery-dsv2/spark-bigquery-dsv2-common spark-bigquery-dsv2/spark-bigquery-dsv2-parent spark-bigquery-dsv2/spark-3.1-bigquery-lib spark-bigquery-dsv2/spark-bigquery-metrics spark-bigquery-dsv2/spark-3.2-bigquery-lib spark-bigquery-dsv2/spark-3.3-bigquery-lib spark-bigquery-dsv2/spark-3.4-bigquery-lib spark-bigquery-dsv2/spark-3.5-bigquery-lib spark-bigquery-dsv2/spark-4.0-bigquery-lib spark-bigquery-dsv2/spark-4.1-bigquery-lib spark-bigquery-dsv2/spark-4.1-bigquery coverage false coverage ================================================ FILE: scalastyle-config.xml ================================================ Scalastyle standard configuration true ARROW, EQUALS, ELSE, TRY, CATCH, FINALLY, LARROW, RARROW ARROW, EQUALS, COMMA, COLON, IF, ELSE, DO, WHILE, FOR, MATCH, TRY, CATCH, FINALLY, LARROW, RARROW ^println$ @VisibleForTesting mutable\.SynchronizedBuffer Class\.forName Await\.result Await\.ready JavaConversions Instead of importing implicits in scala.collection.JavaConversions._, import scala.collection.JavaConverters._ and use .asScala / .asJava methods org\.apache\.commons\.lang\. Use Commons Lang 3 classes (package org.apache.commons.lang3.*) instead of Commons Lang 2 (package org.apache.commons.lang.*) extractOpt Use Utils.jsonOption(x).map(.extract[T]) instead of .extractOpt[T], as the latter is slower. COMMA \)\{ (?m)^(\s*)/[*][*].*$(\r|)\n^\1 [*] Use Javadoc style indentation for multiline comments case[^\n>]*=>\s*\{ Omit braces in case clauses. ^Override$ override modifier should be used instead of @java.lang.Override. 800> 30 10 50 -1,0,1,2,3 ================================================ FILE: scripts/verify-shading.sh ================================================ #!/bin/sh # Copyright 2024 Google LLC # # 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 # # 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. JAR_FILE="$1" jar tvf "${JAR_FILE}" | \ grep -v META-INF | \ grep -E "\.class$" | \ grep -v com/google/cloud/spark/bigquery | \ grep -v com/google/cloud/bigquery/connector/common | \ grep -vE 'org/apache/spark/sql/.*SparkSqlUtils.class' if [ $? -eq 0 ]; then # grep found classes where there shouldn't be any. Print error message and exit echo "" echo "Found unshaded classes, please fix above findings" exit 1 else echo "No unshaded classes found" exit 0 fi ================================================ FILE: spark-bigquery-connector-common/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../spark-bigquery-parent spark-bigquery-connector-common Spark BigQuery Connector Common Library jar Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} bigquery-connector-common ${project.version} com.google.errorprone error_prone_annotations io.openlineage spark-extension-interfaces io.openlineage spark-extension-entrypoint 1.0.0 provided org.apache.beam beam-sdks-java-io-hadoop-common 2.43.0 org.apache.beam beam-sdks-java-core org.apache.spark spark-sql_2.13 3.3.0 provided io.netty netty org.apache.spark spark-mllib_2.13 3.3.0 provided io.netty netty org.apache.arrow arrow-compression org.apache.arrow arrow-vector com.google.cloud google-cloud-dataproc test com.google.cloud google-cloud-storage test org.apache.maven.plugins maven-jar-plugin 3.2.0 default-jar package jar test-jar test-jar org.codehaus.mojo build-helper-maven-plugin 3.0.0 generate-sources add-source third_party/apache-spark/src/main/java ================================================ FILE: spark-bigquery-connector-common/src/build/resources/spark-bigquery-connector.properties ================================================ connector.version=${project.version} ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/ArrowBinaryIterator.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.connector.common.ArrowReaderIterator; import com.google.cloud.bigquery.connector.common.ArrowUtil; import com.google.cloud.bigquery.connector.common.BigQueryConnectorException; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import com.google.cloud.bigquery.connector.common.DecompressReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.common.collect.ImmutableList; import com.google.protobuf.ByteString; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.SequenceInputStream; import java.util.Arrays; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.function.Function; import java.util.stream.Collectors; import org.apache.arrow.compression.CommonsCompressionFactory; import org.apache.arrow.memory.BufferAllocator; import org.apache.arrow.vector.VectorSchemaRoot; import org.apache.arrow.vector.ipc.ArrowStreamReader; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.vectorized.ColumnVector; import org.apache.spark.sql.vectorized.ColumnarBatch; public class ArrowBinaryIterator implements Iterator { private static long maxAllocation = Long.MAX_VALUE; private final Optional bigQueryStorageReadRowsTracer; ArrowReaderIterator arrowReaderIterator; Iterator currentIterator; List columnsInOrder; Map userProvidedFieldMap; public ArrowBinaryIterator( List columnsInOrder, ByteString schema, ReadRowsResponse readRowsResponse, Optional userProvidedSchema, Optional bigQueryStorageReadRowsTracer, ResponseCompressionCodec responseCompressionCodec) { BufferAllocator allocator = ArrowUtil.newRootAllocator(maxAllocation) .newChildAllocator("ArrowBinaryIterator", 0, maxAllocation); try { SequenceInputStream bytesWithSchemaStream = new SequenceInputStream( new ByteArrayInputStream(schema.toByteArray()), DecompressReadRowsResponse.decompressArrowRecordBatch( readRowsResponse, responseCompressionCodec)); ArrowStreamReader arrowStreamReader = new ArrowStreamReader( bytesWithSchemaStream, allocator, CommonsCompressionFactory.INSTANCE); arrowReaderIterator = new ArrowReaderIterator(arrowStreamReader); } catch (IOException e) { throw new BigQueryConnectorException( "Failed to decode Arrow binary for a ReadRowsResponse", e); } currentIterator = ImmutableList.of().iterator(); this.columnsInOrder = columnsInOrder; List userProvidedFieldList = Arrays.stream(userProvidedSchema.orElse(new StructType()).fields()) .collect(Collectors.toList()); this.userProvidedFieldMap = userProvidedFieldList.stream() .collect(Collectors.toMap(StructField::name, Function.identity())); this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer; } @Override public boolean hasNext() { while (!currentIterator.hasNext()) { if (!arrowReaderIterator.hasNext()) { return false; } currentIterator = toArrowRows(arrowReaderIterator.next(), columnsInOrder); } return currentIterator.hasNext(); } @Override public InternalRow next() { return currentIterator.next(); } private Iterator toArrowRows(VectorSchemaRoot root, List namesInOrder) { ColumnVector[] columns = namesInOrder.stream() .map(name -> root.getVector(name)) .map( vector -> ArrowSchemaConverter.newArrowSchemaConverter( vector, userProvidedFieldMap.get(vector.getName()))) .collect(Collectors.toList()) .toArray(new ColumnVector[0]); ColumnarBatch batch = new ColumnarBatch(columns); batch.setNumRows(root.getRowCount()); bigQueryStorageReadRowsTracer.ifPresent(tracer -> tracer.rowsParseFinished(root.getRowCount())); return batch.rowIterator(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/AvroBinaryIterator.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.connector.common.BigQueryConnectorException; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import com.google.cloud.bigquery.connector.common.DecompressReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import java.io.IOException; import java.io.UncheckedIOException; import java.util.Iterator; import java.util.List; import java.util.Optional; import org.apache.avro.generic.GenericDatumReader; import org.apache.avro.generic.GenericRecord; import org.apache.avro.io.BinaryDecoder; import org.apache.avro.io.DecoderFactory; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class AvroBinaryIterator implements Iterator { private static final Logger log = LoggerFactory.getLogger(AvroBinaryIterator.class); private final Optional bigQueryStorageReadRowsTracer; private long numberOfRowsParsed = 0; GenericDatumReader reader; List columnsInOrder; BinaryDecoder in; Schema bqSchema; Optional userProvidedSchema; private final SchemaConverters schemaConverters; /** * An iterator for scanning over rows serialized in Avro format * * @param bqSchema Schema of underlying BigQuery source * @param columnsInOrder Sequence of columns in the schema * @param schema Schema in avro format * @param rowsInBytes Rows serialized in binary format for Avro */ public AvroBinaryIterator( Schema bqSchema, List columnsInOrder, org.apache.avro.Schema schema, ReadRowsResponse response, Optional userProvidedSchema, Optional bigQueryStorageReadRowsTracer, SchemaConvertersConfiguration schemaConvertersConfiguration, ResponseCompressionCodec responseCompressionCodec) { reader = new GenericDatumReader(schema); this.bqSchema = bqSchema; this.columnsInOrder = columnsInOrder; try { in = new DecoderFactory() .binaryDecoder( DecompressReadRowsResponse.decompressAvroRecordBatch( response, responseCompressionCodec), null); } catch (IOException e) { throw new BigQueryConnectorException( "Failed to decode Avro binary for a ReadRowsResponse", e); } this.userProvidedSchema = userProvidedSchema; this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer; this.schemaConverters = SchemaConverters.from(schemaConvertersConfiguration); } @Override public boolean hasNext() { try { // Avro iterator is used in both V1 and V2 if (bigQueryStorageReadRowsTracer.isPresent() && in.isEnd()) { // Avro parsing is done row by row as opposed to Arrow where whole batch is processed once. // Due to this, row parse time could potentially include some application time. // One way to address this is to update tracer interface to support recording per row // parsing time, along with batch mode. bigQueryStorageReadRowsTracer.get().rowsParseFinished(numberOfRowsParsed); } return !in.isEnd(); } catch (IOException e) { throw new UncheckedIOException(e); } } @Override public InternalRow next() { try { numberOfRowsParsed++; return schemaConverters.convertToInternalRow( bqSchema, columnsInOrder, (GenericRecord) reader.read(null, in), userProvidedSchema); } catch (IOException e) { throw new UncheckedIOException(e); } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryConnectorUtils.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import org.apache.spark.sql.SparkSession; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class BigQueryConnectorUtils { private static Logger logger = LoggerFactory.getLogger(BigQueryConnectorUtils.class); private BigQueryConnectorUtils() {} public static void enablePushdownSession(SparkSession spark) { logger.warn( "Full query pushdown is no longer supported. Column projection and row filtering (predicate pushdown) are supported like before."); } public static void disablePushdownSession(SparkSession spark) { // no op; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryRelation.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.sources.BaseRelation; import org.apache.spark.sql.types.StructType; public class BigQueryRelation extends BaseRelation { private final SparkBigQueryConfig options; private final TableInfo table; private final SQLContext sqlContext; private final TableId tableId; private final String tableName; public BigQueryRelation(SparkBigQueryConfig options, TableInfo table, SQLContext sqlContext) { this.options = options; this.table = table; this.sqlContext = sqlContext; this.tableId = table.getTableId(); this.tableName = BigQueryUtil.friendlyTableName(tableId); } @Override public SQLContext sqlContext() { return this.sqlContext; } @Override public StructType schema() { SchemaConverters sc = SchemaConverters.from(SchemaConvertersConfiguration.from(options)); return options.getSchema().orElse(sc.toSpark(sc.getSchemaWithPseudoColumns(table))); } public TableId getTableId() { return tableId; } public String getTableName() { return tableName; } // Should be used for logging purposes only, not for any internal use! protected String getTableNameForLogging() { return options .getQuery() .map( query -> tableName + " created from \"" + BigQueryUtil.prepareQueryForLog(query, /* maxLength */ 50) + "\"") .orElse(BigQueryUtil.friendlyTableName(options.getTableId())); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryRelationProviderBase.java ================================================ /* * Copyright 2025 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.bigquery.connector.common.LoggingBigQueryTracerFactory; import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation; import com.google.cloud.spark.bigquery.write.CreatableRelationProviderHelper; import com.google.common.collect.ImmutableMap; import com.google.inject.Injector; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.function.Supplier; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.execution.streaming.Sink; import org.apache.spark.sql.sources.BaseRelation; import org.apache.spark.sql.sources.DataSourceRegister; import org.apache.spark.sql.streaming.OutputMode; import org.apache.spark.sql.types.StructType; public class BigQueryRelationProviderBase implements DataSourceRegister { private final Supplier getGuiceInjectorCreator; public BigQueryRelationProviderBase(Supplier getGuiceInjectorCreator) { this.getGuiceInjectorCreator = getGuiceInjectorCreator; BigQueryUtilScala.validateScalaVersionCompatibility(); } public BigQueryRelationProviderBase() { this(() -> new GuiceInjectorCreator() {}); // Default creator } public BaseRelation createRelation(SQLContext sqlContext, Map parameters) { return createRelationInternal(sqlContext, parameters, Optional.empty()); } public BaseRelation createRelation( SQLContext sqlContext, Map parameters, StructType schema) { return createRelationInternal(sqlContext, parameters, Optional.of(schema)); } public Sink createSink( SQLContext sqlContext, Map parameters, List partitionColumns, // Scala Seq OutputMode outputMode) { Injector injector = getGuiceInjectorCreator.get().createGuiceInjector(sqlContext, parameters, Optional.empty()); SparkBigQueryConfig opts = injector.getInstance(SparkBigQueryConfig.class); BigQueryClient bigQueryClient = injector.getInstance(BigQueryClient.class); return new BigQueryStreamingSink( sqlContext, parameters, partitionColumns, outputMode, opts, bigQueryClient); } protected BigQueryRelation createRelationInternal( SQLContext sqlContext, Map parameters, Optional schema) { Injector injector = getGuiceInjectorCreator.get().createGuiceInjector(sqlContext, parameters, schema); SparkBigQueryConfig opts = injector.getInstance(SparkBigQueryConfig.class); BigQueryClient bigQueryClient = injector.getInstance(BigQueryClient.class); TableInfo tableInfo = bigQueryClient.getReadTable(opts.toReadTableOptions()); String tableName = BigQueryUtil.friendlyTableName(opts.getTableId()); BigQueryClientFactory bigQueryReadClientFactory = injector.getInstance(BigQueryClientFactory.class); LoggingBigQueryTracerFactory bigQueryTracerFactory = injector.getInstance(LoggingBigQueryTracerFactory.class); TableInfo table = Optional.ofNullable(tableInfo) .orElseThrow(() -> new RuntimeException("Table " + tableName + " not found")); TableDefinition.Type tableType = table.getDefinition().getType(); if (tableType == TableDefinition.Type.TABLE || tableType == TableDefinition.Type.EXTERNAL || tableType == TableDefinition.Type.SNAPSHOT) { return new DirectBigQueryRelation( opts, table, bigQueryClient, bigQueryReadClientFactory, bigQueryTracerFactory, sqlContext); } else if (tableType == TableDefinition.Type.VIEW || tableType == TableDefinition.Type.MATERIALIZED_VIEW) { if (opts.isViewsEnabled()) { return new DirectBigQueryRelation( opts, table, bigQueryClient, bigQueryReadClientFactory, bigQueryTracerFactory, sqlContext); } else { throw new RuntimeException( String.format( "Views were not enabled. You can enable views by setting '%s' to true. " + "Notice additional cost may occur.", SparkBigQueryConfig.VIEWS_ENABLED_OPTION)); } } else { throw new UnsupportedOperationException( "The type of table " + tableName + " is currently not supported: " + tableType); } } public BaseRelation createRelation( SQLContext sqlContext, SaveMode mode, Map parameters, Dataset data) { ImmutableMap customDefaults = ImmutableMap.of(); return new CreatableRelationProviderHelper() .createRelation(sqlContext, mode, parameters, data, customDefaults); } @Override public String shortName() { return "bigquery"; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryStreamWriter.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.spark.bigquery.write.BigQueryWriteHelper; import com.google.common.collect.Streams; import java.util.Optional; import java.util.ServiceLoader; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.streaming.OutputMode; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public final class BigQueryStreamWriter { private static final Logger log = LoggerFactory.getLogger(BigQueryStreamWriter.class); private BigQueryStreamWriter() {} /** * Convert streaming dataframe to fixed dataframe by Getting partitioned RDD and mapping to Row * dataframe * * @param data Streaming dataframe * @param sqlContext Spark SQLContext * @param opts Spark BigQuery Options */ public static void writeBatch( Dataset data, SQLContext sqlContext, OutputMode outputMode, SparkBigQueryConfig opts, BigQueryClient bigQueryClient) { StructType schema = data.schema(); String sparkVersion = sqlContext.sparkSession().version(); // Assuming DataFrameToRDDConverter.convertToRDD returns RDD // The original Scala code uses a polymorphic dispatch. // In Java, this might involve an explicit cast or a generic type. RDD rowRdd = dataFrameToRDDConverterFactory(sparkVersion).convertToRDD(data); // Create fixed dataframe Dataset dataFrame = sqlContext.createDataFrame(rowRdd, schema); TableInfo table = bigQueryClient.getTable(opts.getTableId()); // returns Table, not Optional SaveMode saveMode = getSaveMode(outputMode); BigQueryWriteHelper helper = new BigQueryWriteHelper( bigQueryClient, sqlContext, saveMode, opts, dataFrame, Optional.ofNullable(table)); helper.writeDataFrameToBigQuery(); } /** * Convert Output mode to save mode Complete => Truncate Append => Append (Default) Update => Not * yet supported * * @param outputMode * @return SaveMode * @throws UnsupportedOperationException */ private static SaveMode getSaveMode(OutputMode outputMode) { if (outputMode.equals(OutputMode.Complete())) { // Use .equals() for object comparison return SaveMode.Overwrite; } else if (outputMode.equals(OutputMode.Update())) { throw new UnsupportedOperationException("Updates are not yet supported"); } else { // Append or other modes return SaveMode.Append; } } public static DataFrameToRDDConverter dataFrameToRDDConverterFactory(String sparkVersion) { ServiceLoader serviceLoader = ServiceLoader.load(DataFrameToRDDConverter.class); return Streams.stream(serviceLoader.iterator()) .filter(converter -> converter.supports(sparkVersion)) .findFirst() .orElseThrow( () -> new IllegalStateException( "Could not find an implementation of " + DataFrameToRDDConverter.class.getCanonicalName())); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryStreamingSink.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.connector.common.BigQueryClient; import java.util.List; import java.util.Map; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.execution.streaming.Sink; import org.apache.spark.sql.streaming.OutputMode; import org.slf4j.Logger; import org.slf4j.LoggerFactory; // Note: Scala case classes have auto-generated equals, hashCode, toString, and constructor. // For Java, you'd typically use a regular class and implement these if needed, or use records (Java // 14+). public class BigQueryStreamingSink implements Sink { private static final Logger log = LoggerFactory.getLogger(BigQueryStreamingSink.class); private final SQLContext sqlContext; private final Map parameters; private final List partitionColumns; // Changed from Seq private final OutputMode outputMode; private final SparkBigQueryConfig opts; private final BigQueryClient bigQueryClient; private volatile long latestBatchId = -1L; public BigQueryStreamingSink( SQLContext sqlContext, Map parameters, List partitionColumns, // Changed from Seq OutputMode outputMode, SparkBigQueryConfig opts, BigQueryClient bigQueryClient) { this.sqlContext = sqlContext; this.parameters = parameters; this.partitionColumns = partitionColumns; this.outputMode = outputMode; this.opts = opts; this.bigQueryClient = bigQueryClient; } // The original Scala addBatch is not explicitly throwing IOException, // but Sink.addBatch might allow it. // In Java, if an overridden method in an interface doesn't declare an exception, // the overriding method cannot declare a checked exception. // Sink.addBatch in Spark does not declare IOException. @Override public void addBatch(long batchId, Dataset data) { if (batchId <= latestBatchId) { log.warn("Skipping as already committed batch " + batchId); } else { log.debug("addBatch(" + batchId + ")"); // Assuming BigQueryStreamWriter.writeBatch doesn't throw checked exceptions // or they are handled internally/converted to RuntimeException BigQueryStreamWriter.writeBatch(data, sqlContext, outputMode, opts, bigQueryClient); latestBatchId = batchId; } } // Getters if needed for the fields (like in Scala case classes) public SQLContext getSqlContext() { return sqlContext; } public Map getParameters() { return parameters; } public List getPartitionColumns() { return partitionColumns; } public OutputMode getOutputMode() { return outputMode; } public SparkBigQueryConfig getOpts() { return opts; } public BigQueryClient getBigQueryClient() { return bigQueryClient; } public long getLatestBatchId() { return latestBatchId; } // If this class were to be used in contexts requiring equals/hashCode (e.g., collections): @Override public boolean equals(Object o) { // Basic implementation, needs to be more robust for a real case class equivalent if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; BigQueryStreamingSink that = (BigQueryStreamingSink) o; return latestBatchId == that.latestBatchId && java.util.Objects.equals(sqlContext, that.sqlContext) && java.util.Objects.equals(parameters, that.parameters) && java.util.Objects.equals(partitionColumns, that.partitionColumns) && java.util.Objects.equals(outputMode, that.outputMode) && java.util.Objects.equals(opts, that.opts) && java.util.Objects.equals(bigQueryClient, that.bigQueryClient); } @Override public int hashCode() { return java.util.Objects.hash( sqlContext, parameters, partitionColumns, outputMode, opts, bigQueryClient, latestBatchId); } @Override public String toString() { return "BigQueryStreamingSink(" + "sqlContext=" + sqlContext + ", parameters=" + parameters + ", partitionColumns=" + partitionColumns + ", outputMode=" + outputMode + ", opts=" + opts + ", bigQueryClient=" + bigQueryClient + ", latestBatchId=" + latestBatchId + ')'; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryUtilScala.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import java.io.InputStream; import java.util.Optional; import java.util.Properties; /** * Static helpers for working with BigQuery, relevant only to the Scala code, now translated for * Java usage where applicable. */ public final class BigQueryUtilScala { // Renamed from BigQueryUtilScalaHelper to match original private BigQueryUtilScala() {} // Private constructor for utility class // validating that the connector's scala version and the runtime's scala // version are the same public static void validateScalaVersionCompatibility() { // In Java, this check might be different or rely on other mechanisms // if the primary concern is Spark's Scala binary compatibility. // For a direct translation of the Scala logic: String runtimeScalaVersion; try { // Attempt to get Scala version from properties if available in a pure Java context. // This is tricky as `scala.util.Properties.versionNumberString()` is Scala-specific. // If running in a Spark environment, SparkContext might provide Scala version. // For a standalone Java library, this check might be omitted or re-thought. // As a placeholder, we'll assume it can be fetched or is less critical // when this specific method is called from Java. // If strictly needed, one might try to load Scala library classes dynamically. Class scalaPropsClass = Class.forName("scala.util.Properties$"); Object scalaPropsModule = scalaPropsClass.getField("MODULE$").get(null); runtimeScalaVersion = (String) scalaPropsClass.getMethod("versionNumberString").invoke(scalaPropsModule); runtimeScalaVersion = trimVersion(runtimeScalaVersion); } catch (Exception e) { // Could not determine runtime Scala version, or Scala libraries not present. // Depending on requirements, either log a warning, throw, or proceed. // For this translation, we'll indicate that it couldn't be determined. System.err.println( "Warning: Could not determine runtime Scala version for compatibility check from Java."); // If this check is critical, the application might need to ensure Scala libraries are on the // classpath // or handle this situation more gracefully. // For now, let's not throw an error to allow Java code to proceed. // This part is inherently difficult to translate perfectly without Scala runtime. return; // Or handle as an error } Properties buildProperties = new Properties(); try (InputStream stream = BigQueryUtilScala.class.getResourceAsStream("/spark-bigquery-connector.properties")) { if (stream == null) { throw new IllegalStateException("Could not load spark-bigquery-connector.properties"); } buildProperties.load(stream); } catch (java.io.IOException e) { throw new IllegalStateException("Failed to load spark-bigquery-connector.properties", e); } String connectorScalaVersion = buildProperties.getProperty("scala.binary.version"); if (connectorScalaVersion == null) { throw new IllegalStateException( "Property 'scala.binary.version' not found in spark-bigquery-connector.properties"); } if (runtimeScalaVersion != null && !runtimeScalaVersion.equals(connectorScalaVersion)) { throw new IllegalStateException( String.format( "This connector was made for Scala %s, it was not meant to run on Scala %s", connectorScalaVersion, runtimeScalaVersion) .replace('\n', ' ')); } } private static String trimVersion(String version) { return version.substring(0, version.lastIndexOf('.')); } public static Optional toOption(java.util.Optional javaOptional) { // This method seems to convert a Java Optional to a Java Optional, // which is redundant. In Scala, it converted Java Optional to Scala Option. // If the intent is to ensure it's a Java Optional, the input is already that. // Perhaps it was meant for a different conversion in the Scala context. // For a direct Java equivalent of the Scala `toOption`, it would take a Java Optional // and return a Java Optional, effectively being an identity function for the type. return javaOptional; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/DataFrameToRDDConverter.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; public interface DataFrameToRDDConverter { RDD convertToRDD(Dataset data); boolean supports(String sparkVersion); } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/DataSourceVersion.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery; import java.util.Map; /** * A single place to put data source implementations customizations, in order to avoid a general * `if(dataSource==v1) {...} else {...}` throughout the code. */ public enum DataSourceVersion { V1, V2; public void updateOptionsMap(Map optionsMap) { // these updates are v2 only if (this == V2) { // no need for the spark-avro module, we have an internal copy of avro optionsMap.put(SparkBigQueryConfig.VALIDATE_SPARK_AVRO_PARAM.toLowerCase(), "false"); // DataSource V2 implementation uses Java only optionsMap.put( SparkBigQueryConfig.INTERMEDIATE_FORMAT_OPTION.toLowerCase(), SparkBigQueryConfig.IntermediateFormat.AVRO.toString()); } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/GuiceInjectorCreator.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.connector.common.BigQueryClientModule; import com.google.common.collect.ImmutableMap; import com.google.inject.Guice; import com.google.inject.Injector; import java.util.Map; import java.util.Optional; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.types.StructType; // Interface for GuiceInjectorCreator interface GuiceInjectorCreator { default Injector createGuiceInjector( SQLContext sqlContext, Map parameters, Optional schema) { org.apache.spark.sql.SparkSession spark = sqlContext.sparkSession(); return Guice.createInjector( new BigQueryClientModule(), new SparkBigQueryConnectorModule( spark, parameters, ImmutableMap.of(), // Assuming empty java.util.Map for the third param schema, DataSourceVersion.V1, true, // tableIsMandatory java.util.Optional.empty())); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/InjectorBuilder.java ================================================ /* * Copyright 2022 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.connector.common.BigQueryClientModule; import com.google.common.collect.ImmutableMap; import com.google.inject.Guice; import com.google.inject.Injector; import java.util.Map; import java.util.Optional; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.types.StructType; public class InjectorBuilder { private SparkSession spark = SparkSession.active(); private Optional schema = Optional.empty(); private Map options = ImmutableMap.of(); private Map customDefaults = ImmutableMap.of(); private boolean tableIsMandatory = true; private DataSourceVersion dataSourceVersion = DataSourceVersion.V2; private Optional config = Optional.empty(); public InjectorBuilder withSpark(SparkSession spark) { this.spark = spark; return this; } public InjectorBuilder withSchema(StructType schema) { this.schema = Optional.ofNullable(schema); return this; } public InjectorBuilder withOptions(Map options) { this.options = ImmutableMap.copyOf(options); return this; } public InjectorBuilder withTableIsMandatory(boolean tableIsMandatory) { this.tableIsMandatory = tableIsMandatory; return this; } public InjectorBuilder withDataSourceVersion(DataSourceVersion dataSourceVersion) { this.dataSourceVersion = dataSourceVersion; return this; } public InjectorBuilder withCustomDefaults(Map customDefaults) { this.customDefaults = customDefaults; return this; } public InjectorBuilder withConfig(SparkBigQueryConfig config) { this.config = Optional.of(config); return this; } public Injector build() { return Guice.createInjector( new BigQueryClientModule(), new SparkBigQueryConnectorModule( spark, options, customDefaults, schema, dataSourceVersion, tableIsMandatory, config)); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/InjectorFactory.java ================================================ /* * Copyright 2022 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.connector.common.BigQueryClientModule; import com.google.common.collect.ImmutableMap; import com.google.inject.Guice; import com.google.inject.Injector; import java.util.Map; import java.util.Optional; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.types.StructType; public class InjectorFactory { private InjectorFactory() {} public static Injector createInjector( StructType schema, Map options, boolean tableIsMandatory) { SparkSession spark = SparkSession.active(); return createInjector(spark, schema, options, tableIsMandatory); } public static Injector createInjector( SparkSession spark, StructType schema, Map options, boolean tableIsMandatory) { Map customDefaults = ImmutableMap.of(); return Guice.createInjector( new BigQueryClientModule(), new SparkBigQueryConnectorModule( spark, options, customDefaults, Optional.ofNullable(schema), DataSourceVersion.V2, tableIsMandatory, Optional.empty())); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/InternalRowIterator.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import com.google.cloud.bigquery.connector.common.ReadRowsHelper; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.common.collect.ImmutableList; import java.util.Iterator; import org.apache.spark.sql.catalyst.InternalRow; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** Iterator on InternalRow that wraps the conversion from Avro/Arrow schema to InternalRow */ public class InternalRowIterator implements Iterator { private Iterator readRowsResponses; private ReadRowsResponseToInternalRowIteratorConverter converter; private ReadRowsHelper readRowsHelper; private final BigQueryStorageReadRowsTracer bigQueryStorageReadRowsTracer; private Iterator rows = ImmutableList.of().iterator(); private static final Logger log = LoggerFactory.getLogger(InternalRowIterator.class); public InternalRowIterator( Iterator readRowsResponses, ReadRowsResponseToInternalRowIteratorConverter converter, ReadRowsHelper readRowsHelper, BigQueryStorageReadRowsTracer bigQueryStorageReadRowsTracer) { this.readRowsResponses = readRowsResponses; this.converter = converter; this.readRowsHelper = readRowsHelper; this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer; } @Override public boolean hasNext() { while (!rows.hasNext()) { bigQueryStorageReadRowsTracer.readRowsResponseRequested(); if (!readRowsResponses.hasNext()) { try { bigQueryStorageReadRowsTracer.finished(); } catch (Exception e) { log.debug("Failure finishing tracer. stream:{} exception:{}", readRowsHelper, e); } finally { readRowsHelper.close(); } return false; } ReadRowsResponse readRowsResponse = readRowsResponses.next(); bigQueryStorageReadRowsTracer.readRowsResponseObtained( readRowsResponse == null ? 0 : converter.getBatchSizeInBytes(readRowsResponse)); bigQueryStorageReadRowsTracer.nextBatchNeeded(); bigQueryStorageReadRowsTracer.rowsParseStarted(); rows = converter.convert(readRowsResponse); } return true; } @Override public InternalRow next() { return rows.next(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/PartitionOverwriteMode.java ================================================ package com.google.cloud.spark.bigquery; public enum PartitionOverwriteMode { STATIC, DYNAMIC } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/ProtobufUtils.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.FieldList; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.storage.v1.ProtoRows; import com.google.cloud.bigquery.storage.v1.ProtoSchema; import com.google.cloud.bigquery.storage.v1.ProtoSchemaConverter; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Preconditions; import com.google.common.cache.CacheBuilder; import com.google.common.cache.CacheLoader; import com.google.common.cache.LoadingCache; import com.google.common.collect.ImmutableMap; import com.google.protobuf.DescriptorProtos; import com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Type; import com.google.protobuf.Descriptors; import com.google.protobuf.DynamicMessage; import java.math.BigDecimal; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.concurrent.TimeUnit; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSqlUtils; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.expressions.GenericInternalRow; import org.apache.spark.sql.catalyst.util.ArrayData; import org.apache.spark.sql.catalyst.util.MapData; import org.apache.spark.sql.types.ArrayType; import org.apache.spark.sql.types.BinaryType; import org.apache.spark.sql.types.BooleanType; import org.apache.spark.sql.types.ByteType; import org.apache.spark.sql.types.DataType; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.DateType; import org.apache.spark.sql.types.Decimal; import org.apache.spark.sql.types.DecimalType; import org.apache.spark.sql.types.DoubleType; import org.apache.spark.sql.types.FloatType; import org.apache.spark.sql.types.IntegerType; import org.apache.spark.sql.types.LongType; import org.apache.spark.sql.types.MapType; import org.apache.spark.sql.types.Metadata; import org.apache.spark.sql.types.ShortType; import org.apache.spark.sql.types.StringType; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.types.TimestampType; import org.jetbrains.annotations.NotNull; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import scala.Function1; import scala.Tuple2; import scala.collection.mutable.IndexedSeq; public class ProtobufUtils { public static final class ProtobufSchemaFieldCacheEntry { private DataType sparkType; private boolean nullable; private Descriptors.Descriptor nestedTypeDescriptor; private Descriptors.FieldDescriptor fieldDescriptor; private Optional typeConverterOptional; private Optional customDataTypeOptional; public ProtobufSchemaFieldCacheEntry( DataType sparkType, boolean nullable, Descriptors.Descriptor nestedTypeDescriptor, Descriptors.FieldDescriptor fieldDescriptor, Optional typeConverterOptional, Optional customDataTypeOptional) { this.sparkType = sparkType; this.nullable = nullable; this.nestedTypeDescriptor = nestedTypeDescriptor; this.fieldDescriptor = fieldDescriptor; this.typeConverterOptional = typeConverterOptional; this.customDataTypeOptional = customDataTypeOptional; } public DataType getSparkType() { return sparkType; } public boolean getNullable() { return nullable; } public Descriptors.Descriptor getNestedTypeDescriptor() { return nestedTypeDescriptor; } public Descriptors.FieldDescriptor getFieldDescriptor() { return fieldDescriptor; } public Optional getTypeConverterOptional() { return typeConverterOptional; } public Optional getCustomDataTypeOptional() { return customDataTypeOptional; } } private static ProtobufSchemaFieldCacheEntry computeProtobufSchemaFieldEntry( StructType schema, Descriptors.Descriptor schemaDescriptor, int fieldIndex) { StructField sparkField = schema.fields()[fieldIndex]; int protoFieldNumber = fieldIndex + 1; return new ProtobufSchemaFieldCacheEntry( sparkField.dataType(), sparkField.nullable(), schemaDescriptor.findNestedTypeByName( ProtobufUtils.RESERVED_NESTED_TYPE_NAME + (protoFieldNumber)), schemaDescriptor.findFieldByNumber(protoFieldNumber), SparkBigQueryUtil.getTypeConverterStream() .filter(tc -> tc.supportsSparkType(sparkField.dataType())) .findFirst(), SupportedCustomDataType.of(sparkField.dataType())); } static final Logger logger = LoggerFactory.getLogger(ProtobufUtils.class); // The maximum nesting depth of a BigQuery RECORD: private static final int MAX_BIGQUERY_NESTED_DEPTH = 15; // For every message, a nested type is name "STRUCT"+i, where i is the // number of the corresponding field that is of this type in the containing message. private static final String RESERVED_NESTED_TYPE_NAME = "STRUCT"; private static final LoadingCache MAP_TYPE_STRUCT_TYPE_CACHE = CacheBuilder.newBuilder() .maximumSize(10_000) // 10,000 map types should be enough for most applications .expireAfterWrite(24, TimeUnit.HOURS) // Type definition don't really expire .build( new CacheLoader() { @Override public StructType load(MapType key) { return ProtobufUtils.createMapStructType(key); } }); private static final ImmutableMap BigQueryToProtoType = new ImmutableMap.Builder() .put(LegacySQLTypeName.BYTES, DescriptorProtos.FieldDescriptorProto.Type.TYPE_BYTES) .put(LegacySQLTypeName.INTEGER, DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .put(LegacySQLTypeName.BOOLEAN, DescriptorProtos.FieldDescriptorProto.Type.TYPE_BOOL) .put(LegacySQLTypeName.FLOAT, DescriptorProtos.FieldDescriptorProto.Type.TYPE_DOUBLE) .put( LegacySQLTypeName.NUMERIC, DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING) .put( LegacySQLTypeName.BIGNUMERIC, DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING) .put(LegacySQLTypeName.STRING, DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING) .put(LegacySQLTypeName.JSON, DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING) .put( LegacySQLTypeName.TIMESTAMP, DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .put(LegacySQLTypeName.DATE, DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT32) .put( LegacySQLTypeName.DATETIME, DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .put( LegacySQLTypeName.GEOGRAPHY, DescriptorProtos.FieldDescriptorProto.Type.TYPE_BYTES) .build(); private static final ImmutableMap SparkToProtoType = new ImmutableMap.Builder() .put( DataTypes.BinaryType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_BYTES) .put(DataTypes.ByteType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .put( DataTypes.ShortType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .put( DataTypes.IntegerType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .put(DataTypes.LongType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .put( DataTypes.BooleanType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_BOOL) .put( DataTypes.FloatType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_DOUBLE) .put( DataTypes.DoubleType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_DOUBLE) .put( SchemaConverters.NUMERIC_SPARK_TYPE.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING) .put( DataTypes.StringType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING) .put( DataTypes.TimestampType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .put(DataTypes.DateType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT32) .build(); private static final ImmutableMap BigQueryModeToProtoFieldLabel = new ImmutableMap.Builder() .put(Field.Mode.NULLABLE, DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL) .put(Field.Mode.REPEATED, DescriptorProtos.FieldDescriptorProto.Label.LABEL_REPEATED) .put(Field.Mode.REQUIRED, DescriptorProtos.FieldDescriptorProto.Label.LABEL_REQUIRED) .build(); /** BigQuery Schema ==> ProtoSchema converter utils: */ public static ProtoSchema toProtoSchema(Schema schema) throws IllegalArgumentException { try { Descriptors.Descriptor descriptor = toDescriptor(schema); return ProtoSchemaConverter.convert(descriptor); } catch (Descriptors.DescriptorValidationException e) { throw new IllegalArgumentException("Could not build Proto-Schema from BigQuery schema", e); } } public static ProtoSchema toProtoSchema(StructType schema) throws IllegalArgumentException { try { Descriptors.Descriptor descriptor = toDescriptor(schema); return ProtoSchemaConverter.convert(descriptor); } catch (Descriptors.DescriptorValidationException e) { throw new IllegalArgumentException("Could not build Proto-Schema from Spark schema", e); } } private static Descriptors.Descriptor toDescriptor(Schema schema) throws Descriptors.DescriptorValidationException { DescriptorProtos.DescriptorProto.Builder descriptorBuilder = DescriptorProtos.DescriptorProto.newBuilder().setName("Schema"); FieldList fields = schema.getFields(); int initialDepth = 0; DescriptorProtos.DescriptorProto descriptorProto = buildDescriptorProtoWithFields(descriptorBuilder, fields, initialDepth); return createDescriptorFromProto(descriptorProto); } private static Descriptors.Descriptor createDescriptorFromProto( DescriptorProtos.DescriptorProto descriptorProto) throws Descriptors.DescriptorValidationException { DescriptorProtos.FileDescriptorProto fileDescriptorProto = DescriptorProtos.FileDescriptorProto.newBuilder().addMessageType(descriptorProto).build(); Descriptors.Descriptor descriptor = Descriptors.FileDescriptor.buildFrom( fileDescriptorProto, new Descriptors.FileDescriptor[] {}) .getMessageTypes() .get(0); return descriptor; } @VisibleForTesting protected static DescriptorProtos.DescriptorProto buildDescriptorProtoWithFields( DescriptorProtos.DescriptorProto.Builder descriptorBuilder, FieldList fields, int depth) { Preconditions.checkArgument( depth < MAX_BIGQUERY_NESTED_DEPTH, "Tried to convert a BigQuery schema that exceeded BigQuery maximum nesting depth"); int messageNumber = 1; for (Field field : fields) { String fieldName = field.getName(); DescriptorProtos.FieldDescriptorProto.Label fieldLabel = toProtoFieldLabel(field.getMode()); FieldList subFields = field.getSubFields(); if (field.getType() == LegacySQLTypeName.RECORD) { String recordTypeName = RESERVED_NESTED_TYPE_NAME + messageNumber; // TODO: Maintain this as a reserved nested-type name, which no // column can have. DescriptorProtos.DescriptorProto.Builder nestedFieldTypeBuilder = descriptorBuilder.addNestedTypeBuilder(); nestedFieldTypeBuilder.setName(recordTypeName); DescriptorProtos.DescriptorProto nestedFieldType = buildDescriptorProtoWithFields(nestedFieldTypeBuilder, subFields, depth + 1); descriptorBuilder.addField( createProtoFieldBuilder(fieldName, fieldLabel, messageNumber) .setTypeName(recordTypeName)); } else { DescriptorProtos.FieldDescriptorProto.Type fieldType = toProtoFieldType(field.getType()); descriptorBuilder.addField( createProtoFieldBuilder(fieldName, fieldLabel, messageNumber, fieldType)); } messageNumber++; } return descriptorBuilder.build(); } private static DescriptorProtos.FieldDescriptorProto.Builder createProtoFieldBuilder( String fieldName, DescriptorProtos.FieldDescriptorProto.Label fieldLabel, int messageNumber) { return DescriptorProtos.FieldDescriptorProto.newBuilder() .setName(fieldName) .setLabel(fieldLabel) .setNumber(messageNumber); } @VisibleForTesting protected static DescriptorProtos.FieldDescriptorProto.Builder createProtoFieldBuilder( String fieldName, DescriptorProtos.FieldDescriptorProto.Label fieldLabel, int messageNumber, DescriptorProtos.FieldDescriptorProto.Type fieldType) { return createProtoFieldBuilder(fieldName, fieldLabel, messageNumber).setType(fieldType); } private static DescriptorProtos.FieldDescriptorProto.Label toProtoFieldLabel(Field.Mode mode) { return Preconditions.checkNotNull( BigQueryModeToProtoFieldLabel.get(mode), new IllegalArgumentException("A BigQuery Field Mode was invalid: " + mode.name())); } // NOTE: annotations for DATETIME and TIMESTAMP objects are currently unsupported for external // users, // but if they become available, it would be advisable to append an annotation to the // protoFieldBuilder // for these and other types. private static DescriptorProtos.FieldDescriptorProto.Type toProtoFieldType( LegacySQLTypeName bqType) { if (LegacySQLTypeName.RECORD.equals(bqType)) { throw new IllegalStateException( "Program attempted to return an atomic data-type for a RECORD"); } return Preconditions.checkNotNull( BigQueryToProtoType.get(bqType), new IllegalArgumentException("Unexpected type: " + bqType.name())); } /** * Spark Row --> ProtoRows converter utils: To be used by the DataWriters facing the BigQuery * Storage Write API */ public static ProtoRows toProtoRows(StructType sparkSchema, InternalRow[] rows) { try { Descriptors.Descriptor schemaDescriptor = toDescriptor(sparkSchema); ProtoRows.Builder protoRows = ProtoRows.newBuilder(); Map fieldIndexToEntryMap = new HashMap<>(); DynamicMessage.Builder messageBuilder = DynamicMessage.newBuilder(schemaDescriptor); for (InternalRow row : rows) { DynamicMessage rowMessage = buildSingleRowMessage( sparkSchema, schemaDescriptor, row, Optional.of(fieldIndexToEntryMap), messageBuilder); protoRows.addSerializedRows(rowMessage.toByteString()); } return protoRows.build(); } catch (Exception e) { throw new RuntimeException("Could not convert Internal Rows to Proto Rows.", e); } } public static DynamicMessage buildSingleRowMessage( StructType schema, Descriptors.Descriptor schemaDescriptor, InternalRow row, Optional> fieldIndexToEntryMap, DynamicMessage.Builder messageBuilder) { messageBuilder.clear(); for (int fieldIndex = 0; fieldIndex < schemaDescriptor.getFields().size(); fieldIndex++) { int fieldIndexCopy = fieldIndex; ProtobufSchemaFieldCacheEntry protobufSchemaFieldEntry = fieldIndexToEntryMap.isPresent() ? fieldIndexToEntryMap .get() .computeIfAbsent( fieldIndexCopy, k -> { return computeProtobufSchemaFieldEntry( schema, schemaDescriptor, fieldIndexCopy); }) : computeProtobufSchemaFieldEntry(schema, schemaDescriptor, fieldIndexCopy); Object sparkValue = row.get(fieldIndex, protobufSchemaFieldEntry.getSparkType()); Object protoValue = convertSparkValueToProtoRowValue( protobufSchemaFieldEntry.getSparkType(), sparkValue, protobufSchemaFieldEntry.getNullable(), protobufSchemaFieldEntry.getNestedTypeDescriptor(), protobufSchemaFieldEntry.getTypeConverterOptional(), protobufSchemaFieldEntry.getCustomDataTypeOptional()); if (protoValue == null) { continue; } messageBuilder.setField(protobufSchemaFieldEntry.getFieldDescriptor(), protoValue); } return messageBuilder.build(); } public static Descriptors.Descriptor toDescriptor(StructType schema) throws Descriptors.DescriptorValidationException { DescriptorProtos.DescriptorProto.Builder descriptorBuilder = DescriptorProtos.DescriptorProto.newBuilder().setName("Schema"); int initialDepth = 0; DescriptorProtos.DescriptorProto descriptorProto = buildDescriptorProtoWithFields(descriptorBuilder, schema.fields(), initialDepth); return createDescriptorFromProto(descriptorProto); } /* Takes a value in Spark format and converts it into ProtoRows format (to eventually be given to BigQuery). */ private static Object convertSparkValueToProtoRowValue( DataType sparkType, Object sparkValue, boolean nullable, Descriptors.Descriptor nestedTypeDescriptor, Optional typeConverterOptional, Optional customDataTypeOptional) { if (sparkValue == null) { if (!nullable) { throw new IllegalArgumentException("Non-nullable field was null."); } else { return null; } } if (typeConverterOptional.isPresent()) { return typeConverterOptional.get().sparkToProtoValue(sparkValue); } // UDT support if (customDataTypeOptional.isPresent()) { sparkType = customDataTypeOptional.map(SupportedCustomDataType::getSqlType).orElse(sparkType); InternalRow internalRow; if (sparkValue instanceof InternalRow) { // Spark 2.4 internalRow = (InternalRow) sparkValue; } else { // spark 3.x internalRow = customDataTypeOptional.get().serialize(sparkValue); } return buildSingleRowMessage( (StructType) sparkType, nestedTypeDescriptor, internalRow, /*fieldIndexToEntryMap*/ Optional.empty(), DynamicMessage.newBuilder(nestedTypeDescriptor)); } if (sparkType instanceof ArrayType) { ArrayType arrayType = (ArrayType) sparkType; DataType elementType = arrayType.elementType(); boolean containsNull = arrayType.containsNull(); Optional typeConverterElementOptional = SparkBigQueryUtil.getTypeConverterStream() .filter(tc -> tc.supportsSparkType(elementType)) .findFirst(); Optional customDataTypeElementOptional = SupportedCustomDataType.of(elementType); List protoValue = new ArrayList<>(); // having issues to convert WrappedArray to Object[] in Java if (sparkValue instanceof ArrayData) { Object[] sparkArrayData = ((ArrayData) sparkValue).toObjectArray(elementType); for (Object sparkElement : sparkArrayData) { Object converted = convertSparkValueToProtoRowValue( elementType, sparkElement, containsNull, nestedTypeDescriptor, typeConverterElementOptional, customDataTypeElementOptional); if (converted == null) { continue; } protoValue.add(converted); } } else { IndexedSeq sparkArrayData = (IndexedSeq) sparkValue; int sparkArrayDataLength = sparkArrayData.length(); for (int i = 0; i < sparkArrayDataLength; i++) { Object converted = convertSparkValueToProtoRowValue( elementType, sparkArrayData.apply(i), containsNull, nestedTypeDescriptor, typeConverterElementOptional, customDataTypeElementOptional); if (converted == null) { continue; } protoValue.add(converted); } } return protoValue; } if (sparkType instanceof StructType) { InternalRow internalRow = null; if (sparkValue instanceof Row) { internalRow = SparkSqlUtils.getInstance().rowToInternalRow((Row) sparkValue); } else { internalRow = (InternalRow) sparkValue; } return buildSingleRowMessage( (StructType) sparkType, nestedTypeDescriptor, internalRow, /*fieldIndexToEntryMap*/ Optional.empty(), DynamicMessage.newBuilder(nestedTypeDescriptor)); } if (sparkType instanceof ByteType || sparkType instanceof ShortType || sparkType instanceof IntegerType || sparkType instanceof LongType) { return ((Number) sparkValue).longValue(); } if (sparkType instanceof TimestampType) { return SparkBigQueryUtil.sparkTimestampToBigQuery(sparkValue); } // TODO: CalendarInterval if (sparkType instanceof DateType) { return SparkBigQueryUtil.sparkDateToBigQuery(sparkValue); } if (sparkType instanceof FloatType || sparkType instanceof DoubleType) { return ((Number) sparkValue).doubleValue(); } if (sparkType instanceof DecimalType) { return convertDecimalToString(sparkValue); } if (sparkType instanceof BooleanType) { return sparkValue; } if (sparkType instanceof BinaryType) { return sparkValue; } if (sparkType instanceof StringType) { return sparkValue.toString(); } if (sparkType instanceof MapType) { // converting the map into ARRAY> and making a recursive call MapType mapType = (MapType) sparkType; // As the same map will be converted to the same STRUCT, it is best to // cache this conversion instead of re-creating it for every value StructType mapStructType = MAP_TYPE_STRUCT_TYPE_CACHE.getUnchecked(mapType); List entries = new ArrayList<>(); if (sparkValue instanceof scala.collection.Map) { // Spark 3.x scala.collection.Map map = (scala.collection.Map) sparkValue; map.foreach( new Function1() { @Override public Object apply(Tuple2 entry) { return entries.add(new GenericInternalRow(new Object[] {entry._1(), entry._2()})); } @Override public Function1 compose(Function1 g) { return Function1.super.compose(g); } @Override public Function1 andThen(Function1 g) { return Function1.super.andThen(g); } }); } else { // Spark 2.4 MapData map = (MapData) sparkValue; Object[] keys = map.keyArray().toObjectArray(mapType.keyType()); Object[] values = map.valueArray().toObjectArray(mapType.valueType()); Optional typeConverterMapKeyOptional = SparkBigQueryUtil.getTypeConverterStream() .filter(tc -> tc.supportsSparkType(mapType.keyType())) .findFirst(); Optional customDataTypeMapKeyOptional = SupportedCustomDataType.of(mapType.keyType()); Optional typeConverterMapValueOptional = SparkBigQueryUtil.getTypeConverterStream() .filter(tc -> tc.supportsSparkType(mapType.valueType())) .findFirst(); Optional customDataTypeMapValueOptional = SupportedCustomDataType.of(mapType.valueType()); for (int i = 0; i < map.numElements(); i++) { Object key = convertSparkValueToProtoRowValue( mapType.keyType(), keys[i], /* nullable */ false, nestedTypeDescriptor, typeConverterMapKeyOptional, customDataTypeMapKeyOptional); Object value = convertSparkValueToProtoRowValue( mapType.valueType(), values[i], mapType.valueContainsNull(), nestedTypeDescriptor, typeConverterMapValueOptional, customDataTypeMapValueOptional); entries.add(new GenericInternalRow(new Object[] {key, value})); } } ArrayData resultArray = ArrayData.toArrayData(entries.stream().toArray()); ArrayType resultArrayType = ArrayType.apply(mapStructType, /* containsNull */ false); Optional typeConverterArrayOptional = SparkBigQueryUtil.getTypeConverterStream() .filter(tc -> tc.supportsSparkType(resultArrayType)) .findFirst(); Optional customDataTypeArrayOptional = SupportedCustomDataType.of(resultArrayType); return convertSparkValueToProtoRowValue( resultArrayType, resultArray, nullable, nestedTypeDescriptor, typeConverterArrayOptional, customDataTypeArrayOptional); } throw new IllegalStateException("Unexpected type: " + sparkType); } private static DescriptorProtos.DescriptorProto buildDescriptorProtoWithFields( DescriptorProtos.DescriptorProto.Builder descriptorBuilder, StructField[] fields, int depth) { Preconditions.checkArgument( depth < MAX_BIGQUERY_NESTED_DEPTH, "Spark Schema exceeds BigQuery maximum nesting depth."); int messageNumber = 1; for (StructField field : fields) { String fieldName = field.name(); DescriptorProtos.FieldDescriptorProto.Label fieldLabel = field.nullable() ? DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL : DescriptorProtos.FieldDescriptorProto.Label.LABEL_REQUIRED; DataType sparkType = field.dataType(); // UDT support sparkType = SupportedCustomDataType.of(sparkType) .map(SupportedCustomDataType::getSqlType) .orElse(sparkType); if (sparkType instanceof ArrayType) { ArrayType arrayType = (ArrayType) sparkType; /* DescriptorProtos.FieldDescriptorProto.Label elementLabel = arrayType.containsNull() ? DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL : DescriptorProtos.FieldDescriptorProto.Label.LABEL_REQUIRED; TODO: how to support null instances inside an array (repeated field) in BigQuery?*/ sparkType = arrayType.elementType(); fieldLabel = DescriptorProtos.FieldDescriptorProto.Label.LABEL_REPEATED; } DescriptorProtos.FieldDescriptorProto.Builder protoFieldBuilder; if (sparkType instanceof StructType || sparkType instanceof MapType) { String nestedName = RESERVED_NESTED_TYPE_NAME + messageNumber; // TODO: Maintain this as a reserved nested-type name, which no // column can have. StructField[] subFields = null; if (sparkType instanceof StructType) { StructType structType = (StructType) sparkType; subFields = structType.fields(); } else { // Map type MapType mapType = (MapType) sparkType; fieldLabel = DescriptorProtos.FieldDescriptorProto.Label.LABEL_REPEATED; subFields = createMapStructFields(mapType); } DescriptorProtos.DescriptorProto.Builder nestedFieldTypeBuilder = descriptorBuilder.addNestedTypeBuilder().setName(nestedName); buildDescriptorProtoWithFields(nestedFieldTypeBuilder, subFields, depth + 1); protoFieldBuilder = createProtoFieldBuilder(fieldName, fieldLabel, messageNumber).setTypeName(nestedName); } else { DescriptorProtos.FieldDescriptorProto.Type fieldType = toProtoFieldType(sparkType); protoFieldBuilder = createProtoFieldBuilder(fieldName, fieldLabel, messageNumber, fieldType); } descriptorBuilder.addField(protoFieldBuilder); messageNumber++; } return descriptorBuilder.build(); } static StructType createMapStructType(MapType mapType) { return new StructType(createMapStructFields(mapType)); } @NotNull static StructField[] createMapStructFields(MapType mapType) { return new StructField[] { StructField.apply( // "key", // mapType.keyType(), // /* nullable */ false, // Metadata.empty()), StructField.apply( // "value", // mapType.valueType(), // mapType.valueContainsNull(), // Metadata.empty()) }; } private static DescriptorProtos.FieldDescriptorProto.Type toProtoFieldType(DataType sparkType) { Optional protoFieldType = SparkBigQueryUtil.getTypeConverterStream() .filter(tc -> tc.supportsSparkType(sparkType)) .map(tc -> tc.toProtoFieldType(sparkType)) .findFirst(); if (protoFieldType.isPresent()) { return protoFieldType.get(); } if (sparkType instanceof MapType) {; } if (sparkType instanceof DecimalType) { return Type.TYPE_STRING; } return Preconditions.checkNotNull( SparkToProtoType.get(sparkType.json()), new IllegalStateException("Unexpected type: " + sparkType)); } private static String convertDecimalToString(Object decimal) { BigDecimal bigDecimal = decimal instanceof Decimal ? ((Decimal) decimal).toJavaBigDecimal() : (BigDecimal) decimal; return bigDecimal.toPlainString(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/ReadRowsResponseToInternalRowIteratorConverter.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.base.Optional.fromJavaUtil; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.protobuf.ByteString; import java.io.Serializable; import java.util.Iterator; import java.util.List; import java.util.Optional; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; public interface ReadRowsResponseToInternalRowIteratorConverter { static ReadRowsResponseToInternalRowIteratorConverter avro( final Schema bqSchema, final List columnsInOrder, final String rawAvroSchema, final Optional userProvidedSchema, final Optional bigQueryStorageReadRowsTracer, final SchemaConvertersConfiguration schemaConvertersConfiguration, final ResponseCompressionCodec responseCompressionCodec) { return new Avro( bqSchema, columnsInOrder, rawAvroSchema, fromJavaUtil(userProvidedSchema), fromJavaUtil(bigQueryStorageReadRowsTracer), schemaConvertersConfiguration, responseCompressionCodec); } static ReadRowsResponseToInternalRowIteratorConverter arrow( final List columnsInOrder, final ByteString arrowSchema, final Optional userProvidedSchema, final Optional bigQueryStorageReadRowsTracer, final ResponseCompressionCodec responseCompressionCodec) { return new Arrow( columnsInOrder, arrowSchema, fromJavaUtil(userProvidedSchema), fromJavaUtil(bigQueryStorageReadRowsTracer), responseCompressionCodec); } Iterator convert(ReadRowsResponse response); int getBatchSizeInBytes(ReadRowsResponse response); class Avro implements ReadRowsResponseToInternalRowIteratorConverter, Serializable { private static final long serialVersionUID = 2994401325376236028L; private final com.google.cloud.bigquery.Schema bqSchema; private final List columnsInOrder; private final String rawAvroSchema; private final com.google.common.base.Optional userProvidedSchema; private final com.google.common.base.Optional bigQueryStorageReadRowsTracer; private final SchemaConvertersConfiguration schemaConvertersConfiguration; private final ResponseCompressionCodec responseCompressionCodec; public Avro( Schema bqSchema, List columnsInOrder, String rawAvroSchema, com.google.common.base.Optional userProvidedSchema, com.google.common.base.Optional bigQueryStorageReadRowsTracer, SchemaConvertersConfiguration schemaConvertersConfiguration, ResponseCompressionCodec responseCompressionCodec) { this.bqSchema = bqSchema; this.columnsInOrder = columnsInOrder; this.rawAvroSchema = rawAvroSchema; this.userProvidedSchema = userProvidedSchema; this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer; this.schemaConvertersConfiguration = schemaConvertersConfiguration; this.responseCompressionCodec = responseCompressionCodec; } @Override public Iterator convert(ReadRowsResponse response) { return new AvroBinaryIterator( bqSchema, columnsInOrder, new org.apache.avro.Schema.Parser().parse(rawAvroSchema), response, userProvidedSchema.toJavaUtil(), bigQueryStorageReadRowsTracer.toJavaUtil(), schemaConvertersConfiguration, responseCompressionCodec); } @Override public int getBatchSizeInBytes(ReadRowsResponse response) { if (response.getUncompressedByteSize() > 0) { return (int) response.getUncompressedByteSize(); } return response.getAvroRows().getSerializedBinaryRows().size(); } } class Arrow implements ReadRowsResponseToInternalRowIteratorConverter, Serializable { private static final long serialVersionUID = -524013378047083342L; private final List columnsInOrder; private final ByteString arrowSchema; private final com.google.common.base.Optional userProvidedSchema; private final com.google.common.base.Optional bigQueryStorageReadRowsTracer; private final ResponseCompressionCodec responseCompressionCodec; public Arrow( List columnsInOrder, ByteString arrowSchema, com.google.common.base.Optional userProvidedSchema, com.google.common.base.Optional bigQueryStorageReadRowsTracer, ResponseCompressionCodec responseCompressionCodec) { this.columnsInOrder = columnsInOrder; this.arrowSchema = arrowSchema; this.userProvidedSchema = userProvidedSchema; this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer; this.responseCompressionCodec = responseCompressionCodec; } @Override public Iterator convert(ReadRowsResponse response) { return new ArrowBinaryIterator( columnsInOrder, arrowSchema, response, userProvidedSchema.toJavaUtil(), bigQueryStorageReadRowsTracer.toJavaUtil(), responseCompressionCodec); } @Override public int getBatchSizeInBytes(ReadRowsResponse response) { if (response.getUncompressedByteSize() > 0) { return (int) response.getUncompressedByteSize(); } return response.getArrowRecordBatch().getSerializedRecordBatch().size(); } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SchemaConverters.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.Field.Mode; import com.google.cloud.bigquery.FieldList; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.TimePartitioning; import com.google.cloud.bigquery.TimePartitioning.Type; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Preconditions; import java.math.BigDecimal; import java.math.BigInteger; import java.nio.ByteBuffer; import java.util.*; import java.util.function.Function; import java.util.stream.Collectors; import org.apache.avro.generic.GenericRecord; import org.apache.avro.util.Utf8; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.expressions.GenericInternalRow; import org.apache.spark.sql.catalyst.util.GenericArrayData; import org.apache.spark.sql.types.*; import org.apache.spark.unsafe.types.UTF8String; public class SchemaConverters { static final DecimalType NUMERIC_SPARK_TYPE = DataTypes.createDecimalType( BigQueryUtil.DEFAULT_NUMERIC_PRECISION, BigQueryUtil.DEFAULT_NUMERIC_SCALE); // The maximum nesting depth of a BigQuery RECORD: static final int MAX_BIGQUERY_NESTED_DEPTH = 15; // Numeric cannot have more than 29 digits left of the dot. For more details // https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#parameterized_decimal_type private static final int NUMERIC_MAX_LEFT_OF_DOT_DIGITS = 29; private final SchemaConvertersConfiguration configuration; private SchemaConverters(SchemaConvertersConfiguration configuration) { this.configuration = configuration; } public static SchemaConverters from(SchemaConvertersConfiguration configuration) { return new SchemaConverters(configuration); } /** Convert a BigQuery schema to a Spark schema */ public StructType toSpark(Schema schema) { List fieldList = schema.getFields().stream().map(this::convert).collect(Collectors.toList()); StructType structType = new StructType(fieldList.toArray(new StructField[0])); return structType; } /** * Retrieves and returns BigQuery Schema from TableInfo. If the table support pseudo columns, they * are added to schema before schema is returned to the caller. */ public Schema getSchemaWithPseudoColumns(TableInfo tableInfo) { TimePartitioning timePartitioning = null; TableDefinition tableDefinition = tableInfo.getDefinition(); if (tableDefinition instanceof StandardTableDefinition) { timePartitioning = ((StandardTableDefinition) tableDefinition).getTimePartitioning(); } boolean tableSupportsPseudoColumns = timePartitioning != null && timePartitioning.getField() == null && timePartitioning.getType() != null; Schema schema = tableDefinition.getSchema(); if (tableSupportsPseudoColumns) { ArrayList fields = new ArrayList(schema.getFields()); fields.add( createBigQueryFieldBuilder( "_PARTITIONTIME", LegacySQLTypeName.TIMESTAMP, Field.Mode.NULLABLE, null) .build()); // Issue #748: _PARTITIONDATE exists only when partition type is day (not hour/month/year) if (timePartitioning.getType().equals(Type.DAY)) { fields.add( createBigQueryFieldBuilder( "_PARTITIONDATE", LegacySQLTypeName.DATE, Field.Mode.NULLABLE, null) .build()); } schema = Schema.of(fields); } return schema; } public InternalRow convertToInternalRow( Schema schema, List namesInOrder, GenericRecord record, Optional userProvidedSchema) { List userProvidedFieldList = Arrays.stream(userProvidedSchema.orElse(new StructType()).fields()) .collect(Collectors.toList()); return convertAll(schema.getFields(), record, namesInOrder, userProvidedFieldList); } Object convert(Field field, Object value, StructField userProvidedField) { if (value == null) { return null; } if (field.getMode() == Field.Mode.REPEATED) { // rather than recurring down we strip off the repeated mode // Due to serialization issues, reconstruct the type using reflection: // See: https://github.com/googleapis/google-cloud-java/issues/3942 LegacySQLTypeName fType = LegacySQLTypeName.valueOfStrict(field.getType().name()); Field nestedField = Field.newBuilder(field.getName(), fType, field.getSubFields()) // As long as this is not repeated it works, but technically arrays cannot contain // nulls, so select required instead of nullable. .setMode(Field.Mode.REQUIRED) .build(); List valueList = (List) value; return new GenericArrayData( valueList.stream() .map(v -> convert(nestedField, v, getStructFieldForRepeatedMode(userProvidedField))) .collect(Collectors.toList())); } return convertByBigQueryType(field, value, userProvidedField); } private StructField getStructFieldForRepeatedMode(StructField field) { StructField nestedField = null; if (field != null) { ArrayType arrayType = ((ArrayType) field.dataType()); nestedField = new StructField( field.name(), arrayType.elementType(), arrayType.containsNull(), Metadata.empty()); // safe to pass empty metadata as it is not used anywhere } return nestedField; } Object convertByBigQueryType(Field bqField, Object value, StructField userProvidedField) { if (LegacySQLTypeName.INTEGER.equals(bqField.getType())) { if (userProvidedField != null) { DataType userProvidedType = userProvidedField.dataType(); if (userProvidedType.equals(DataTypes.IntegerType)) { return Integer.valueOf(((Number) value).intValue()); } if (userProvidedType.equals(DataTypes.ShortType)) { return Short.valueOf(((Number) value).shortValue()); } if (userProvidedType.equals(DataTypes.ByteType)) { return Byte.valueOf(((Number) value).byteValue()); } } // regular long value return value; } if (LegacySQLTypeName.FLOAT.equals(bqField.getType()) || LegacySQLTypeName.BOOLEAN.equals(bqField.getType()) || LegacySQLTypeName.DATE.equals(bqField.getType()) || LegacySQLTypeName.TIME.equals(bqField.getType()) || LegacySQLTypeName.TIMESTAMP.equals(bqField.getType())) { return value; } if (LegacySQLTypeName.STRING.equals(bqField.getType()) || LegacySQLTypeName.DATETIME.equals(bqField.getType()) || LegacySQLTypeName.GEOGRAPHY.equals(bqField.getType()) || LegacySQLTypeName.JSON.equals(bqField.getType())) { return UTF8String.fromBytes(((Utf8) value).getBytes()); } if (LegacySQLTypeName.BYTES.equals(bqField.getType())) { return getBytes((ByteBuffer) value); } if (LegacySQLTypeName.NUMERIC.equals(bqField.getType()) || LegacySQLTypeName.BIGNUMERIC.equals(bqField.getType())) { byte[] bytes = getBytes((ByteBuffer) value); int scale = Optional.ofNullable(bqField.getScale()) .map(Long::intValue) .orElse(BigQueryUtil.DEFAULT_NUMERIC_SCALE); BigDecimal b = new BigDecimal(new BigInteger(bytes), scale); int precision = Optional.ofNullable(bqField.getPrecision()) .map(Long::intValue) .orElse(BigQueryUtil.DEFAULT_NUMERIC_PRECISION); Decimal d = Decimal.apply(b, precision, scale); return d; } if (LegacySQLTypeName.RECORD.equals(bqField.getType())) { List namesInOrder = null; List structList = null; if (userProvidedField != null) { StructType userStructType = (StructType) SupportedCustomDataType.toSqlType(userProvidedField.dataType()); structList = Arrays.stream(userStructType.fields()).collect(Collectors.toList()); namesInOrder = structList.stream().map(StructField::name).collect(Collectors.toList()); } else { namesInOrder = bqField.getSubFields().stream().map(Field::getName).collect(Collectors.toList()); } return convertAll(bqField.getSubFields(), (GenericRecord) value, namesInOrder, structList); } throw new IllegalStateException("Unexpected type: " + bqField.getType()); } private byte[] getBytes(ByteBuffer buf) { byte[] bytes = new byte[buf.remaining()]; buf.get(bytes); return bytes; } // Schema is not recursive so add helper for sequence of fields GenericInternalRow convertAll( FieldList fieldList, GenericRecord record, List namesInOrder, List userProvidedFieldList) { Map fieldMap = new HashMap<>(); Map userProvidedFieldMap = userProvidedFieldList == null ? new HashMap<>() : userProvidedFieldList.stream() .collect(Collectors.toMap(StructField::name, Function.identity())); fieldList.stream() .forEach( field -> fieldMap.put( field.getName(), convert( field, record.get(field.getName()), userProvidedFieldMap.get(field.getName())))); Object[] values = new Object[namesInOrder.size()]; for (int i = 0; i < namesInOrder.size(); i++) { values[i] = fieldMap.get(namesInOrder.get(i)); } return new GenericInternalRow(values); } /** * Create a function that converts an Avro row with the given BigQuery schema to a Spark SQL row * *

The conversion is based on the BigQuery schema, not Avro Schema, because the Avro schema is * very painful to use. * *

Not guaranteed to be stable across all versions of Spark. */ @VisibleForTesting StructField convert(Field field) { DataType dataType = getDataType(field); boolean nullable = true; if (field.getMode() == Field.Mode.REQUIRED) { nullable = false; } else if (field.getMode() == Field.Mode.REPEATED) { dataType = new ArrayType(dataType, true); } MetadataBuilder metadataBuilder = new MetadataBuilder(); if (field.getDescription() != null) { metadataBuilder.putString("description", field.getDescription()); metadataBuilder.putString("comment", field.getDescription()); } // JSON if (LegacySQLTypeName.JSON.equals(field.getType())) { metadataBuilder.putString("sqlType", "JSON"); } Metadata metadata = metadataBuilder.build(); return convertMap(field, metadata) // .orElse(new StructField(field.getName(), dataType, nullable, metadata)); } Optional convertMap(Field field, Metadata metadata) { if (!configuration.getAllowMapTypeConversion()) { return Optional.empty(); } if (field.getMode() != Field.Mode.REPEATED) { return Optional.empty(); } if (field.getType() != LegacySQLTypeName.RECORD) { return Optional.empty(); } FieldList subFields = field.getSubFields(); if (subFields.size() != 2) { return Optional.empty(); } Set subFieldNames = subFields.stream().map(Field::getName).collect(Collectors.toSet()); if (!subFieldNames.contains("key") || !subFieldNames.contains("value")) { // no "key" or "value" fields return Optional.empty(); } Field key = subFields.get("key"); Field value = subFields.get("value"); // If the BigQuery 'key' field is NULLABLE, this cannot be safely converted // to a Spark Map. It should remain an Array of Structs. if (key.getMode() != Field.Mode.REQUIRED) { return Optional.empty(); } MapType mapType = DataTypes.createMapType(convert(key).dataType(), convert(value).dataType()); // The returned type is not nullable because the original field is a REPEATED, not NULLABLE. // There are some compromises we need to do as BigQuery has no native MAP type return Optional.of(new StructField(field.getName(), mapType, /* nullable */ false, metadata)); } private DataType getDataType(Field field) { return getCustomDataType(field) .map(udt -> (DataType) udt) .orElseGet(() -> getStandardDataType(field)); } @VisibleForTesting Optional getCustomDataType(Field field) { // metadata is kept in the description String description = field.getDescription(); if (description != null) { // All supported types are serialized to records if (LegacySQLTypeName.RECORD.equals(field.getType())) { // we don't have many types, so we keep parsing to minimum return SupportedCustomDataType.forDescription(description) .map(SupportedCustomDataType::getSparkDataType); } } return Optional.empty(); } private DataType getStandardDataType(Field field) { Optional sparkType = SparkBigQueryUtil.getTypeConverterStream() .filter(tc -> tc.supportsBigQueryType(field.getType())) .map(tc -> tc.toSparkType(field.getType())) .findFirst(); if (sparkType.isPresent()) { return sparkType.get(); } if (LegacySQLTypeName.INTEGER.equals(field.getType())) { return DataTypes.LongType; } else if (LegacySQLTypeName.FLOAT.equals(field.getType())) { return DataTypes.DoubleType; } else if (LegacySQLTypeName.NUMERIC.equals(field.getType())) { return createDecimalTypeFromNumericField( field, LegacySQLTypeName.NUMERIC, BigQueryUtil.DEFAULT_NUMERIC_PRECISION, BigQueryUtil.DEFAULT_NUMERIC_SCALE); } else if (LegacySQLTypeName.BIGNUMERIC.equals(field.getType())) { int precision = Optional.ofNullable(field.getPrecision()) .map(Long::intValue) .orElse(configuration.getBigNumericDefaultPrecision()); if (precision > DecimalType.MAX_PRECISION()) { throw new IllegalArgumentException( String.format( "BigNumeric precision is too wide (%d), Spark can only handle decimal types with max precision of %d, " + "If your data is within Spark's precision, you can set it using bigNumericDefaultPrecision", precision, DecimalType.MAX_PRECISION())); } int scale = Optional.ofNullable(field.getScale()) .map(Long::intValue) .orElse(configuration.getBigNumericDefaultScale()); if (scale > DecimalType.MAX_SCALE()) { throw new IllegalArgumentException( String.format( "BigNumeric scale is too wide (%d), Spark can only handle decimal types with max scale of %d, " + "If your data is within Spark's scale, you can set it using bigNumericDefaultScale", scale, DecimalType.MAX_SCALE())); } return createDecimalTypeFromNumericField( field, LegacySQLTypeName.BIGNUMERIC, configuration.getBigNumericDefaultPrecision(), configuration.getBigNumericDefaultScale()); } else if (LegacySQLTypeName.STRING.equals(field.getType())) { return DataTypes.StringType; } else if (LegacySQLTypeName.BOOLEAN.equals(field.getType())) { return DataTypes.BooleanType; } else if (LegacySQLTypeName.BYTES.equals(field.getType())) { return DataTypes.BinaryType; } else if (LegacySQLTypeName.DATE.equals(field.getType())) { return DataTypes.DateType; } else if (LegacySQLTypeName.TIMESTAMP.equals(field.getType())) { return DataTypes.TimestampType; } else if (LegacySQLTypeName.TIME.equals(field.getType())) { return DataTypes.LongType; // TODO(#5): add a timezone to allow parsing to timestamp // This can be safely cast to TimestampType, but doing so causes the date to be inferred // as the current date. It's safer to leave as a stable string and give the user the // option of casting themselves. } else if (LegacySQLTypeName.DATETIME.equals(field.getType())) { return DataTypes.StringType; } else if (LegacySQLTypeName.RECORD.equals(field.getType())) { List structFields = field.getSubFields().stream().map(this::convert).collect(Collectors.toList()); return new StructType(structFields.toArray(new StructField[0])); } else if (LegacySQLTypeName.GEOGRAPHY.equals(field.getType())) { return DataTypes.StringType; } else if (LegacySQLTypeName.JSON.equals(field.getType())) { return DataTypes.StringType; } else { throw new IllegalStateException("Unexpected type: " + field.getType()); } } @VisibleForTesting static DecimalType createDecimalTypeFromNumericField( Field field, LegacySQLTypeName expectedType, int defaultPrecision, int defaultScale) { Preconditions.checkArgument( field.getType().equals(expectedType), "Field %s must be of type NUMERIC, instead it is of type %s", field.getName(), field.getType()); Optional precisionOpt = Optional.ofNullable(field.getPrecision()).map(Long::intValue); Optional scaleOpt = Optional.ofNullable(field.getScale()).map(Long::intValue); // Both exist if (precisionOpt.isPresent() && scaleOpt.isPresent()) { return DataTypes.createDecimalType(precisionOpt.get(), scaleOpt.get()); } // Both missing if (!precisionOpt.isPresent() && !scaleOpt.isPresent()) { return DataTypes.createDecimalType(defaultPrecision, defaultScale); } // Either precision or scale exists, but not both int maxLeftOfDotDigits = defaultPrecision - defaultScale; if (precisionOpt.isPresent()) { Integer precision = precisionOpt.get().intValue(); return DataTypes.createDecimalType(precision, Math.max(0, precision - maxLeftOfDotDigits)); } // only scale exists Integer scale = scaleOpt.get(); return DataTypes.createDecimalType(scale + maxLeftOfDotDigits, scale); } /** Spark ==> BigQuery Schema Converter utils: */ public Schema toBigQuerySchema(StructType sparkSchema) { FieldList bigQueryFields = sparkToBigQueryFields(sparkSchema, 0); return Schema.of(bigQueryFields); } /** * Returns a FieldList of all the Spark StructField objects, converted to BigQuery Field objects */ private FieldList sparkToBigQueryFields(StructType sparkStruct, int depth) { Preconditions.checkArgument( depth < MAX_BIGQUERY_NESTED_DEPTH, "Spark Schema exceeds BigQuery maximum nesting depth."); List bqFields = new ArrayList<>(); for (StructField field : sparkStruct.fields()) { bqFields.add(createBigQueryColumn(field, depth)); } return FieldList.of(bqFields); } /** Converts a single StructField to a BigQuery Field (column). */ @VisibleForTesting protected Field createBigQueryColumn(StructField sparkField, int depth) { DataType sparkType = sparkField.dataType(); String fieldName = sparkField.name(); Field.Mode fieldMode = (sparkField.nullable()) ? Field.Mode.NULLABLE : Field.Mode.REQUIRED; FieldList subFields = null; LegacySQLTypeName fieldType; OptionalLong scale = OptionalLong.empty(); long precision = 0; if (sparkType instanceof ArrayType) { ArrayType arrayType = (ArrayType) sparkType; fieldMode = Field.Mode.REPEATED; sparkType = arrayType.elementType(); } Optional supportedCustomDataTypeOptional = SupportedCustomDataType.of(sparkType); // not using lambda as we need to affect method level variables if (supportedCustomDataTypeOptional.isPresent()) { SupportedCustomDataType supportedCustomDataType = supportedCustomDataTypeOptional.get(); sparkType = supportedCustomDataType.getSqlType(); } if (sparkType instanceof StructType) { subFields = sparkToBigQueryFields((StructType) sparkType, depth + 1); fieldType = LegacySQLTypeName.RECORD; } else if (sparkType instanceof MapType) { MapType mapType = (MapType) sparkType; fieldMode = Field.Mode.REPEATED; fieldType = LegacySQLTypeName.RECORD; subFields = FieldList.of( buildMapTypeField( "key", mapType.keyType(), sparkField.metadata(), Mode.REQUIRED, depth), buildMapTypeField( "value", mapType.valueType(), sparkField.metadata(), mapType.valueContainsNull() ? Mode.NULLABLE : Mode.REQUIRED, depth)); } else if (sparkType instanceof DecimalType) { DecimalType decimalType = (DecimalType) sparkType; int leftOfDotDigits = decimalType.precision() - decimalType.scale(); fieldType = (decimalType.scale() > BigQueryUtil.DEFAULT_NUMERIC_SCALE || leftOfDotDigits > NUMERIC_MAX_LEFT_OF_DOT_DIGITS) ? LegacySQLTypeName.BIGNUMERIC : LegacySQLTypeName.NUMERIC; scale = OptionalLong.of(decimalType.scale()); precision = decimalType.precision(); } else { fieldType = toBigQueryType(sparkType, sparkField.metadata()); } Field.Builder fieldBuilder = createBigQueryFieldBuilder(fieldName, fieldType, fieldMode, subFields); Optional description = getDescriptionOrCommentOfField(sparkField, supportedCustomDataTypeOptional); if (description.isPresent()) { fieldBuilder.setDescription(description.get()); } // if this is a decimal type if (scale.isPresent()) { fieldBuilder.setPrecision(precision); fieldBuilder.setScale(scale.getAsLong()); } return fieldBuilder.build(); } public static Optional getDescriptionOrCommentOfField( StructField field, Optional supportedCustomDataTypeOptional) { Optional description = Optional.empty(); if (!field.getComment().isEmpty()) { description = Optional.of(field.getComment().get()); } else if (field.metadata().contains("description") && field.metadata().getString("description") != null) { description = Optional.of(field.metadata().getString("description")); } Optional marker = supportedCustomDataTypeOptional.map(SupportedCustomDataType::getTypeMarker); // skipping some lambdas for readability if (description.isPresent()) { String descriptionString = description.get(); return Optional.of( marker.map(value -> descriptionString + " " + value).orElse(descriptionString)); } // no description, so the field marker determines the result return marker; } private Field buildMapTypeField( String fieldName, DataType sparkType, Metadata metadata, Mode fieldMode, int depth) { LegacySQLTypeName sqlType = toBigQueryType(sparkType, metadata); if (sqlType == LegacySQLTypeName.RECORD) { FieldList subFields = sparkToBigQueryFields((StructType) sparkType, depth + 1); return createBigQueryFieldBuilder(fieldName, sqlType, fieldMode, subFields).build(); } else { return createBigQueryFieldBuilder(fieldName, sqlType, fieldMode, null).build(); } } @VisibleForTesting protected LegacySQLTypeName toBigQueryType(DataType elementType, Metadata metadata) { Optional bigQueryType = SparkBigQueryUtil.getTypeConverterStream() .filter(tc -> tc.supportsSparkType(elementType)) .map(tc -> tc.toBigQueryType(elementType)) .findFirst(); if (bigQueryType.isPresent()) { return bigQueryType.get(); } if (elementType instanceof BinaryType) { return LegacySQLTypeName.BYTES; } if (elementType instanceof ByteType || elementType instanceof ShortType || elementType instanceof IntegerType || elementType instanceof LongType) { return LegacySQLTypeName.INTEGER; } if (elementType instanceof BooleanType) { return LegacySQLTypeName.BOOLEAN; } if (elementType instanceof FloatType || elementType instanceof DoubleType) { return LegacySQLTypeName.FLOAT; } if (elementType instanceof StringType) { if (SparkBigQueryUtil.isJson(metadata)) { return LegacySQLTypeName.JSON; } return LegacySQLTypeName.STRING; } if (elementType instanceof TimestampType) { return LegacySQLTypeName.TIMESTAMP; } if (elementType instanceof DateType) { return LegacySQLTypeName.DATE; } if (elementType instanceof StructType) { return LegacySQLTypeName.RECORD; } throw new IllegalArgumentException("Data type not expected: " + elementType.simpleString()); } private Field.Builder createBigQueryFieldBuilder( String name, LegacySQLTypeName type, Field.Mode mode, FieldList subFields) { return Field.newBuilder(name, type, subFields).setMode(mode); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SchemaConvertersConfiguration.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.common.base.Objects; import java.io.Serializable; public class SchemaConvertersConfiguration implements Serializable { private static final long serialVersionUID = -5971771984509805208L; private final boolean allowMapTypeConversion; private int bigNumericDefaultPrecision; private int bigNumericDefaultScale; private SchemaConvertersConfiguration( boolean allowMapTypeConversion, int bigNumericDefaultPrecision, int bigNumericDefaultScale) { this.allowMapTypeConversion = allowMapTypeConversion; this.bigNumericDefaultPrecision = bigNumericDefaultPrecision; this.bigNumericDefaultScale = bigNumericDefaultScale; } public static SchemaConvertersConfiguration from(SparkBigQueryConfig config) { return SchemaConvertersConfiguration.of( config.getAllowMapTypeConversion(), config.getBigNumericDefaultPrecision(), config.getBigNumericDefaultScale()); } public static SchemaConvertersConfiguration of(boolean allowMapTypeConversion) { return new SchemaConvertersConfiguration( allowMapTypeConversion, BigQueryUtil.DEFAULT_BIG_NUMERIC_PRECISION, BigQueryUtil.DEFAULT_BIG_NUMERIC_SCALE); } public static SchemaConvertersConfiguration of( boolean allowMapTypeConversion, int bigNumericDefaultPrecision, int bigNumericDefaultScale) { return new SchemaConvertersConfiguration( allowMapTypeConversion, bigNumericDefaultPrecision, bigNumericDefaultScale); } public static SchemaConvertersConfiguration createDefault() { return new SchemaConvertersConfiguration( SparkBigQueryConfig.ALLOW_MAP_TYPE_CONVERSION_DEFAULT, BigQueryUtil.DEFAULT_BIG_NUMERIC_PRECISION, BigQueryUtil.DEFAULT_BIG_NUMERIC_SCALE); } public boolean getAllowMapTypeConversion() { return allowMapTypeConversion; } public int getBigNumericDefaultPrecision() { return bigNumericDefaultPrecision; } public int getBigNumericDefaultScale() { return bigNumericDefaultScale; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; SchemaConvertersConfiguration that = (SchemaConvertersConfiguration) o; return Objects.equal(allowMapTypeConversion, that.allowMapTypeConversion) && Objects.equal(bigNumericDefaultPrecision, that.bigNumericDefaultPrecision) && Objects.equal(bigNumericDefaultScale, that.bigNumericDefaultScale); } @Override public int hashCode() { return Objects.hashCode( allowMapTypeConversion, bigNumericDefaultPrecision, bigNumericDefaultScale); } @Override public String toString() { return "SchemaConvertersConfiguration{" + "allowMapTypeConversion=" + allowMapTypeConversion + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryConfig.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.DEFAULT_FALLBACK; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.defaultBilledProject; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.empty; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.fromJavaUtil; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getAnyBooleanOption; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getAnyOption; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getAnyOptionsWithPrefix; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getOption; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getOptionFromMultipleParams; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getRequiredOption; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.removePrefixFromMapKeys; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.firstPresent; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.parseTableId; import static com.google.cloud.spark.bigquery.SparkBigQueryUtil.scalaMapToJavaMap; import static java.lang.String.format; import com.google.api.gax.retrying.RetrySettings; import com.google.auth.Credentials; import com.google.cloud.ServiceOptions; import com.google.cloud.bigquery.FormatOptions; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.ParquetOptions; import com.google.cloud.bigquery.QueryJobConfiguration; import com.google.cloud.bigquery.QueryJobConfiguration.Priority; import com.google.cloud.bigquery.RangePartitioning; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TimePartitioning; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryConfig; import com.google.cloud.bigquery.connector.common.BigQueryConnectorException; import com.google.cloud.bigquery.connector.common.BigQueryCredentialsSupplier; import com.google.cloud.bigquery.connector.common.BigQueryProxyConfig; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.bigquery.connector.common.MaterializationConfiguration; import com.google.cloud.bigquery.connector.common.QueryParameterHelper; import com.google.cloud.bigquery.connector.common.ReadSessionCreatorConfig; import com.google.cloud.bigquery.connector.common.ReadSessionCreatorConfigBuilder; import com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Preconditions; import com.google.common.base.Splitter; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Sets; import java.io.IOException; import java.io.Serializable; import java.time.format.DateTimeFormatter; import java.time.format.DateTimeParseException; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Optional; import java.util.OptionalInt; import java.util.OptionalLong; import java.util.Set; import java.util.regex.Pattern; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.security.UserGroupInformation; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.execution.datasources.DataSource; import org.apache.spark.sql.internal.SQLConf; import org.apache.spark.sql.types.StructType; import org.checkerframework.checker.nullness.qual.Nullable; import org.threeten.bp.Duration; public class SparkBigQueryConfig implements BigQueryConfig, BigQueryClient.CreateTableOptions, BigQueryClient.LoadDataOptions, Serializable { private static final long serialVersionUID = 728392817473829L; public static final int MAX_TRACE_ID_LENGTH = 256; public static final TableId QUERY_DUMMY_TABLE_ID = TableId.of("QUERY", "QUERY"); public enum WriteMethod { DIRECT, INDIRECT; public static WriteMethod from(@Nullable String writeMethod) { try { return WriteMethod.valueOf(writeMethod.toUpperCase(Locale.ENGLISH)); } catch (RuntimeException e) { throw new IllegalArgumentException( "WriteMethod can be only " + Arrays.toString(WriteMethod.values())); } } } public static final String IMPERSONATION_GLOBAL = "gcpImpersonationServiceAccount"; public static final String IMPERSONATION_FOR_USER_PREFIX = "gcpImpersonationServiceAccountForUser."; public static final String IMPERSONATION_FOR_GROUP_PREFIX = "gcpImpersonationServiceAccountForGroup."; public static final String VIEWS_ENABLED_OPTION = "viewsEnabled"; public static final String USE_AVRO_LOGICAL_TYPES_OPTION = "useAvroLogicalTypes"; public static final String DATE_PARTITION_PARAM = "datePartition"; public static final String VALIDATE_SPARK_AVRO_PARAM = "validateSparkAvroInternalParam"; public static final String ENABLE_LIST_INFERENCE = "enableListInference"; public static final String INTERMEDIATE_FORMAT_OPTION = "intermediateFormat"; public static final String WRITE_METHOD_PARAM = "writeMethod"; public static final String WRITE_AT_LEAST_ONCE_OPTION = "writeAtLeastOnce"; @VisibleForTesting static final DataFormat DEFAULT_READ_DATA_FORMAT = DataFormat.ARROW; @VisibleForTesting static final IntermediateFormat DEFAULT_INTERMEDIATE_FORMAT = IntermediateFormat.PARQUET; @VisibleForTesting static final CompressionCodec DEFAULT_ARROW_COMPRESSION_CODEC = CompressionCodec.COMPRESSION_UNSPECIFIED; @VisibleForTesting static final ResponseCompressionCodec DEFAULT_RESPONSE_COMPRESSION_CODEC = ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED; static final String GCS_CONFIG_CREDENTIALS_FILE_PROPERTY = "google.cloud.auth.service.account.json.keyfile"; static final String GCS_CONFIG_PROJECT_ID_PROPERTY = "fs.gs.project.id"; private static final String READ_DATA_FORMAT_OPTION = "readDataFormat"; private static final ImmutableList PERMITTED_READ_DATA_FORMATS = ImmutableList.of(DataFormat.ARROW.toString(), DataFormat.AVRO.toString()); private static final String CONF_PREFIX = "spark.datasource.bigquery."; private static final int DEFAULT_BIGQUERY_CLIENT_CONNECT_TIMEOUT = 60 * 1000; private static final int DEFAULT_BIGQUERY_CLIENT_READ_TIMEOUT = 60 * 1000; private static final Pattern QUICK_LOWERCASE_QUERY_PATTERN = Pattern.compile("(?i)^\\s*(select|with|\\()\\b[\\s\\S]*"); private static final Pattern HAS_WHITESPACE_PATTERN = Pattern.compile("\\s"); private static final Pattern SQL_KEYWORD_PATTERN = Pattern.compile("(?i)\\b(select|from|where|join|group by|order by|union all)\\b"); // Both MIN values correspond to the lower possible value that will actually make the code work. // 0 or less would make code hang or other bad side effects. public static final int MIN_BUFFERED_RESPONSES_PER_STREAM = 1; public static final int MIN_STREAMS_PER_PARTITION = 1; private static final int DEFAULT_BIGQUERY_CLIENT_RETRIES = 10; private static final String ARROW_COMPRESSION_CODEC_OPTION = "arrowCompressionCodec"; private static final String RESPONSE_COMPRESSION_CODEC_OPTION = "responseCompressionCodec"; private static final WriteMethod DEFAULT_WRITE_METHOD = WriteMethod.INDIRECT; public static final int DEFAULT_CACHE_EXPIRATION_IN_MINUTES = 15; static final String BIGQUERY_JOB_LABEL_PREFIX = "bigQueryJobLabel."; static final String BIGQUERY_TABLE_LABEL_PREFIX = "bigQueryTableLabel."; public static final Priority DEFAULT_JOB_PRIORITY = Priority.INTERACTIVE; static final String ALLOW_MAP_TYPE_CONVERSION = "allowMapTypeConversion"; static final Boolean ALLOW_MAP_TYPE_CONVERSION_DEFAULT = true; public static final String partitionOverwriteModeProperty = "spark.sql.sources.partitionOverwriteMode"; public PartitionOverwriteMode partitionOverwriteModeValue = PartitionOverwriteMode.STATIC; public static final String BIGQUERY_JOB_TIMEOUT_IN_MINUTES = "bigQueryJobTimeoutInMinutes"; static final long BIGQUERY_JOB_TIMEOUT_IN_MINUTES_DEFAULT = 6 * 60; // 6 hrs public static final String GPN_ATTRIBUTION = "GPN"; public static final String BIG_NUMERIC_DEFAULT_PRECISION = "bigNumericDefaultPrecision"; public static final String BIG_NUMERIC_DEFAULT_SCALE = "bigNumericDefaultScale"; private static final String DATAPROC_SYSTEM_BUCKET_CONFIGURATION = "fs.gs.system.bucket"; TableId tableId; // as the config needs to be Serializable, internally it uses // com.google.common.base.Optional but externally it uses the regular java.util.Optional com.google.common.base.Optional query = empty(); String parentProjectId; boolean useParentProjectForMetadataOperations; com.google.common.base.Optional accessTokenProviderFQCN; com.google.common.base.Optional accessTokenProviderConfig; String loggedInUserName; Set loggedInUserGroups; com.google.common.base.Optional impersonationServiceAccount; com.google.common.base.Optional> impersonationServiceAccountsForUsers; com.google.common.base.Optional> impersonationServiceAccountsForGroups; com.google.common.base.Optional credentialsKey; com.google.common.base.Optional credentialsFile; com.google.common.base.Optional accessToken; com.google.common.base.Optional> credentialsScopes; com.google.common.base.Optional filter = empty(); com.google.common.base.Optional schema = empty(); Integer maxParallelism = null; Integer preferredMinParallelism = null; int defaultParallelism = 1; com.google.common.base.Optional temporaryGcsBucket = empty(); com.google.common.base.Optional persistentGcsBucket = empty(); com.google.common.base.Optional persistentGcsPath = empty(); // These properties are used to configure the catalog specifically, allowing // separation between the catalog's project/location and the job's billing/execution // project/location. com.google.common.base.Optional catalogProjectId = empty(); com.google.common.base.Optional catalogLocation = empty(); IntermediateFormat intermediateFormat = DEFAULT_INTERMEDIATE_FORMAT; DataFormat readDataFormat = DEFAULT_READ_DATA_FORMAT; boolean combinePushedDownFilters = true; boolean viewsEnabled = false; com.google.common.base.Optional materializationProject = empty(); com.google.common.base.Optional materializationDataset = empty(); int materializationExpirationTimeInMinutes; com.google.common.base.Optional partitionField = empty(); Long partitionExpirationMs = null; com.google.common.base.Optional partitionRequireFilter = empty(); com.google.common.base.Optional partitionType = empty(); com.google.common.base.Optional partitionRangeStart = empty(); com.google.common.base.Optional partitionRangeEnd = empty(); com.google.common.base.Optional partitionRangeInterval = empty(); com.google.common.base.Optional> clusteredFields = empty(); com.google.common.base.Optional createDisposition = empty(); boolean optimizedEmptyProjection = true; boolean useAvroLogicalTypes = false; List decimalTargetTypes = Collections.emptyList(); List loadSchemaUpdateOptions = Collections.emptyList(); int maxReadRowsRetries = 3; boolean pushAllFilters = true; boolean enableModeCheckForSchemaFields = true; private com.google.common.base.Optional encodedCreateReadSessionRequest = empty(); private com.google.common.base.Optional bigQueryStorageGrpcEndpoint = empty(); private com.google.common.base.Optional bigQueryHttpEndpoint = empty(); private int numBackgroundThreadsPerStream = 0; private int numPrebufferReadRowsResponses = MIN_BUFFERED_RESPONSES_PER_STREAM; private int numStreamsPerPartition = MIN_STREAMS_PER_PARTITION; private int channelPoolSize = 1; private com.google.common.base.Optional flowControlWindowBytes = com.google.common.base.Optional.absent(); private boolean enableReadSessionCaching = true; private long readSessionCacheDurationMins = 5L; private Long snapshotTimeMillis = null; private SparkBigQueryProxyAndHttpConfig sparkBigQueryProxyAndHttpConfig; private CompressionCodec arrowCompressionCodec = DEFAULT_ARROW_COMPRESSION_CODEC; private ResponseCompressionCodec responseCompressionCodec = DEFAULT_RESPONSE_COMPRESSION_CODEC; private WriteMethod writeMethod = DEFAULT_WRITE_METHOD; boolean writeAtLeastOnce = false; private int cacheExpirationTimeInMinutes = DEFAULT_CACHE_EXPIRATION_IN_MINUTES; // used to create BigQuery ReadSessions private com.google.common.base.Optional traceId; private Map bigQueryJobLabels = Collections.emptyMap(); private Map bigQueryTableLabels = Collections.emptyMap(); private com.google.common.base.Optional createReadSessionTimeoutInSeconds; private QueryJobConfiguration.Priority queryJobPriority = DEFAULT_JOB_PRIORITY; private com.google.common.base.Optional destinationTableKmsKeyName = empty(); private boolean allowMapTypeConversion = ALLOW_MAP_TYPE_CONVERSION_DEFAULT; private long bigQueryJobTimeoutInMinutes = BIGQUERY_JOB_TIMEOUT_IN_MINUTES_DEFAULT; private com.google.common.base.Optional gpn; private int bigNumericDefaultPrecision; private int bigNumericDefaultScale; private QueryParameterHelper queryParameterHelper; @VisibleForTesting SparkBigQueryConfig() { // empty } // new higher level method, as spark 3 need to parse the table specific options separately from // the catalog ones public static SparkBigQueryConfig from( Map options, ImmutableMap customDefaults, DataSourceVersion dataSourceVersion, SparkSession spark, Optional schema, boolean tableIsMandatory) { return from( options, customDefaults, dataSourceVersion, spark, schema, tableIsMandatory, Optional.empty()); } public static SparkBigQueryConfig from( Map options, ImmutableMap customDefaults, DataSourceVersion dataSourceVersion, SparkSession spark, Optional schema, boolean tableIsMandatory, Optional overrideTableId) { Map optionsMap = new HashMap<>(options); dataSourceVersion.updateOptionsMap(optionsMap); return SparkBigQueryConfig.from( ImmutableMap.copyOf(optionsMap), ImmutableMap.copyOf(scalaMapToJavaMap(spark.conf().getAll())), spark.sparkContext().hadoopConfiguration(), customDefaults, spark.sparkContext().defaultParallelism(), spark.sessionState().conf(), spark.version(), schema, tableIsMandatory, overrideTableId); } @VisibleForTesting public static SparkBigQueryConfig from( Map optionsInput, ImmutableMap originalGlobalOptions, Configuration hadoopConfiguration, ImmutableMap customDefaults, int defaultParallelism, SQLConf sqlConf, String sparkVersion, Optional schema, boolean tableIsMandatory) { return from( optionsInput, originalGlobalOptions, hadoopConfiguration, customDefaults, defaultParallelism, sqlConf, sparkVersion, schema, tableIsMandatory, Optional.empty()); } @VisibleForTesting public static SparkBigQueryConfig from( Map optionsInput, ImmutableMap originalGlobalOptions, Configuration hadoopConfiguration, ImmutableMap customDefaults, int defaultParallelism, SQLConf sqlConf, String sparkVersion, Optional schema, boolean tableIsMandatory, Optional overrideTableId) { SparkBigQueryConfig config = new SparkBigQueryConfig(); ImmutableMap options = toLowerCaseKeysMap(optionsInput); ImmutableMap globalOptions = normalizeConf(originalGlobalOptions); config.sparkBigQueryProxyAndHttpConfig = SparkBigQueryProxyAndHttpConfig.from(options, globalOptions, hadoopConfiguration); // Issue #247 // we need those parameters in case a read from query is issued config.viewsEnabled = getAnyBooleanOption(globalOptions, options, VIEWS_ENABLED_OPTION, false); MaterializationConfiguration materializationConfiguration = MaterializationConfiguration.from(globalOptions, options); config.materializationProject = materializationConfiguration.getMaterializationProject(); config.materializationDataset = materializationConfiguration.getMaterializationDataset(); config.materializationExpirationTimeInMinutes = materializationConfiguration.getMaterializationExpirationTimeInMinutes(); // get the table details com.google.common.base.Optional fallbackDataset = config.materializationDataset; Optional fallbackProject = com.google.common.base.Optional.fromNullable( hadoopConfiguration.get(GCS_CONFIG_PROJECT_ID_PROPERTY)) .toJavaUtil(); Optional datasetParam = getOption(options, "dataset").or(fallbackDataset).toJavaUtil(); Optional projectParam = firstPresent(getOption(options, "project").toJavaUtil(), fallbackProject); config.partitionType = getOption(options, "partitionType").transform(TimePartitioning.Type::valueOf); config.partitionRangeStart = getOption(options, "partitionRangeStart").transform(Long::parseLong); config.partitionRangeEnd = getOption(options, "partitionRangeEnd").transform(Long::parseLong); config.partitionRangeInterval = getOption(options, "partitionRangeInterval").transform(Long::parseLong); if (overrideTableId.isPresent()) { config.tableId = overrideTableId.get(); } else { // checking for query Optional tableParam = getOptionFromMultipleParams(options, ImmutableList.of("table", "path"), DEFAULT_FALLBACK) .toJavaUtil(); Optional datePartitionParam = getOption(options, DATE_PARTITION_PARAM).toJavaUtil(); datePartitionParam.ifPresent( date -> validateDateFormat(date, config.getPartitionTypeOrDefault(), DATE_PARTITION_PARAM)); if (tableParam.isPresent()) { String tableParamStr = tableParam.get().trim(); if (isQuery(tableParamStr)) { // it is a query in practice config.query = com.google.common.base.Optional.of(tableParamStr); config.tableId = datasetParam .map( ignored -> parseTableId("QUERY", datasetParam, projectParam, datePartitionParam)) .orElse(QUERY_DUMMY_TABLE_ID); } else { config.tableId = parseTableId(tableParamStr, datasetParam, projectParam, datePartitionParam); } } else { // no table has been provided, it is either a query or an error config.query = getOption(options, "query").transform(String::trim); if (config.query.isPresent()) { config.tableId = datasetParam .map( ignored -> parseTableId("QUERY", datasetParam, projectParam, datePartitionParam)) .orElse(QUERY_DUMMY_TABLE_ID); } else if (tableIsMandatory) { // No table nor query were set. We cannot go further. throw new IllegalArgumentException("No table has been specified"); } } } config.parentProjectId = getAnyOption(globalOptions, options, "parentProject").or(defaultBilledProject()); config.catalogProjectId = getOption(options, "projectId"); config.catalogLocation = getOption(options, "bigquery_location"); config.useParentProjectForMetadataOperations = getAnyBooleanOption(globalOptions, options, "useParentProjectForMetadataOperations", false); config.accessTokenProviderFQCN = getAnyOption(globalOptions, options, "gcpAccessTokenProvider"); config.accessTokenProviderConfig = getAnyOption(globalOptions, options, "gcpAccessTokenProviderConfig"); try { UserGroupInformation ugiCurrentUser = UserGroupInformation.getCurrentUser(); config.loggedInUserName = ugiCurrentUser.getShortUserName(); config.loggedInUserGroups = Sets.newHashSet(ugiCurrentUser.getGroupNames()); } catch (IOException e) { throw new BigQueryConnectorException( "Failed to get the UserGroupInformation current user", e); } config.impersonationServiceAccount = getAnyOption(globalOptions, options, IMPERSONATION_GLOBAL); config.impersonationServiceAccountsForUsers = removePrefixFromMapKeys( getAnyOptionsWithPrefix( globalOptions, options, IMPERSONATION_FOR_USER_PREFIX.toLowerCase()), IMPERSONATION_FOR_USER_PREFIX.toLowerCase()); config.impersonationServiceAccountsForGroups = removePrefixFromMapKeys( getAnyOptionsWithPrefix( globalOptions, options, IMPERSONATION_FOR_GROUP_PREFIX.toLowerCase()), IMPERSONATION_FOR_GROUP_PREFIX.toLowerCase()); config.accessToken = getAnyOption(globalOptions, options, "gcpAccessToken"); config.credentialsKey = getAnyOption(globalOptions, options, "credentials"); config.credentialsFile = fromJavaUtil( firstPresent( getAnyOption(globalOptions, options, "credentialsFile").toJavaUtil(), com.google.common.base.Optional.fromNullable( hadoopConfiguration.get(GCS_CONFIG_CREDENTIALS_FILE_PROPERTY)) .toJavaUtil())); config.credentialsScopes = getAnyOption(globalOptions, options, "credentialsScopes") .transform(SparkBigQueryConfig::splitOnComma); config.filter = getOption(options, "filter"); config.schema = fromJavaUtil(schema); config.maxParallelism = getAnyOption(globalOptions, options, ImmutableList.of("maxParallelism", "parallelism")) .transform(Integer::valueOf) .orNull(); config.preferredMinParallelism = getAnyOption(globalOptions, options, "preferredMinParallelism") .transform(Integer::valueOf) .orNull(); config.defaultParallelism = defaultParallelism; config.temporaryGcsBucket = stripPrefix(getAnyOption(globalOptions, options, "temporaryGcsBucket")) .or( com.google.common.base.Optional.fromNullable( hadoopConfiguration.get(DATAPROC_SYSTEM_BUCKET_CONFIGURATION))); config.persistentGcsBucket = stripPrefix(getAnyOption(globalOptions, options, "persistentGcsBucket")); config.persistentGcsPath = getOption(options, "persistentGcsPath"); WriteMethod writeMethodDefault = Optional.ofNullable(customDefaults.get(WRITE_METHOD_PARAM)) .map(WriteMethod::from) .orElse(DEFAULT_WRITE_METHOD); config.writeMethod = getAnyOption(globalOptions, options, WRITE_METHOD_PARAM) .transform(WriteMethod::from) .or(writeMethodDefault); config.writeAtLeastOnce = getAnyBooleanOption(globalOptions, options, WRITE_AT_LEAST_ONCE_OPTION, false); boolean validateSparkAvro = config.writeMethod == WriteMethod.INDIRECT && Boolean.valueOf(getRequiredOption(options, VALIDATE_SPARK_AVRO_PARAM, () -> "true")); boolean enableListInferenceForParquetMode = getAnyBooleanOption(globalOptions, options, ENABLE_LIST_INFERENCE, false); String intermediateFormatOption = getAnyOption(globalOptions, options, INTERMEDIATE_FORMAT_OPTION) .transform(String::toLowerCase) .or(DEFAULT_INTERMEDIATE_FORMAT.getDataSource()); config.intermediateFormat = IntermediateFormat.from( intermediateFormatOption, sparkVersion, sqlConf, validateSparkAvro, enableListInferenceForParquetMode); String readDataFormatParam = getAnyOption(globalOptions, options, READ_DATA_FORMAT_OPTION) .transform(String::toUpperCase) .or(DEFAULT_READ_DATA_FORMAT.toString()); if (!PERMITTED_READ_DATA_FORMATS.contains(readDataFormatParam)) { throw new IllegalArgumentException( format( "Data read format '%s' is not supported. Supported formats are '%s'", readDataFormatParam, String.join(",", PERMITTED_READ_DATA_FORMATS))); } config.useAvroLogicalTypes = getAnyBooleanOption(globalOptions, options, USE_AVRO_LOGICAL_TYPES_OPTION, false); config.readDataFormat = DataFormat.valueOf(readDataFormatParam); config.combinePushedDownFilters = getAnyBooleanOption(globalOptions, options, "combinePushedDownFilters", true); config.partitionField = getOption(options, "partitionField"); config.partitionExpirationMs = getOption(options, "partitionExpirationMs").transform(Long::valueOf).orNull(); config.partitionRequireFilter = getOption(options, "partitionRequireFilter").transform(Boolean::valueOf); config.clusteredFields = getOption(options, "clusteredFields").transform(SparkBigQueryConfig::splitOnComma); config.createDisposition = getOption(options, "createDisposition") .transform(String::toUpperCase) .transform(JobInfo.CreateDisposition::valueOf); config.optimizedEmptyProjection = getAnyBooleanOption(globalOptions, options, "optimizedEmptyProjection", true); boolean allowFieldAddition = getAnyBooleanOption(globalOptions, options, "allowFieldAddition", false); boolean allowFieldRelaxation = getAnyBooleanOption(globalOptions, options, "allowFieldRelaxation", false); ImmutableList.Builder loadSchemaUpdateOptions = ImmutableList.builder(); if (allowFieldAddition) { loadSchemaUpdateOptions.add(JobInfo.SchemaUpdateOption.ALLOW_FIELD_ADDITION); } if (allowFieldRelaxation) { loadSchemaUpdateOptions.add(JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION); } config.loadSchemaUpdateOptions = Collections.unmodifiableList(loadSchemaUpdateOptions.build()); config.decimalTargetTypes = getOption(options, "decimalTargetTypes") .transform(SparkBigQueryConfig::splitOnComma) .or(ImmutableList.of()); config.bigQueryStorageGrpcEndpoint = getAnyOption(globalOptions, options, "bigQueryStorageGrpcEndpoint"); config.bigQueryHttpEndpoint = getAnyOption(globalOptions, options, "bigQueryHttpEndpoint"); config.encodedCreateReadSessionRequest = getAnyOption(globalOptions, options, "bqEncodedCreateReadSessionRequest"); config.numBackgroundThreadsPerStream = getAnyOption(globalOptions, options, "bqBackgroundThreadsPerStream") .transform(Integer::parseInt) .or(0); config.pushAllFilters = getAnyBooleanOption(globalOptions, options, "pushAllFilters", true); config.enableModeCheckForSchemaFields = getAnyBooleanOption(globalOptions, options, "enableModeCheckForSchemaFields", true); config.numPrebufferReadRowsResponses = getAnyOption(globalOptions, options, "bqPrebufferResponsesPerStream") .transform(Integer::parseInt) .or(MIN_BUFFERED_RESPONSES_PER_STREAM); config.flowControlWindowBytes = getAnyOption(globalOptions, options, "bqFlowControlWindowBytes") .transform(Integer::parseInt); config.numStreamsPerPartition = getAnyOption(globalOptions, options, "bqNumStreamsPerPartition") .transform(Integer::parseInt) .or(MIN_STREAMS_PER_PARTITION); // Calculating the default channel pool size int sparkExecutorCores = Integer.parseInt(globalOptions.getOrDefault("spark.executor.cores", "1")); int defaultChannelPoolSize = sparkExecutorCores * config.numStreamsPerPartition; config.channelPoolSize = getAnyOption(globalOptions, options, "bqChannelPoolSize") .transform(Integer::parseInt) .or(defaultChannelPoolSize); config.enableReadSessionCaching = getAnyBooleanOption(globalOptions, options, "enableReadSessionCaching", true); config.readSessionCacheDurationMins = getAnyOption(globalOptions, options, "readSessionCacheDurationMins") .transform(Long::parseLong) .or(5L); if (!(config.readSessionCacheDurationMins > 0L && config.readSessionCacheDurationMins <= 300L)) { throw new IllegalArgumentException("readSessionCacheDurationMins should be > 0 and <= 300"); } String arrowCompressionCodecParam = getAnyOption(globalOptions, options, ARROW_COMPRESSION_CODEC_OPTION) .transform(String::toUpperCase) .or(DEFAULT_ARROW_COMPRESSION_CODEC.toString()); try { config.arrowCompressionCodec = CompressionCodec.valueOf(arrowCompressionCodecParam); } catch (IllegalArgumentException e) { throw new IllegalArgumentException( format( "Compression codec '%s' for Arrow is not supported. Supported formats are %s", arrowCompressionCodecParam, Arrays.toString(CompressionCodec.values()))); } String responseCompressionCodecParam = getAnyOption(globalOptions, options, RESPONSE_COMPRESSION_CODEC_OPTION) .transform(String::toUpperCase) .or(DEFAULT_RESPONSE_COMPRESSION_CODEC.toString()); try { config.responseCompressionCodec = ResponseCompressionCodec.valueOf(responseCompressionCodecParam); } catch (IllegalArgumentException e) { throw new IllegalArgumentException( format( "Response compression codec '%s' is not supported. Supported formats are %s", responseCompressionCodecParam, Arrays.toString(ResponseCompressionCodec.values()))); } config.cacheExpirationTimeInMinutes = getAnyOption(globalOptions, options, "cacheExpirationTimeInMinutes") .transform(Integer::parseInt) .or(DEFAULT_CACHE_EXPIRATION_IN_MINUTES); if (config.cacheExpirationTimeInMinutes < 0) { throw new IllegalArgumentException( "cacheExpirationTimeInMinutes must have a positive value, the configured value is " + config.cacheExpirationTimeInMinutes); } com.google.common.base.Optional traceApplicationNameParam = getAnyOption(globalOptions, options, "traceApplicationName") .or(com.google.common.base.Optional.fromNullable("traceApplicationName")); config.traceId = traceApplicationNameParam.transform( traceApplicationName -> { String traceJobIdParam = getAnyOption(globalOptions, options, "traceJobId") .or(SparkBigQueryUtil.getJobId(sqlConf)); String traceIdParam = "Spark:" + traceApplicationName + ":" + traceJobIdParam; if (traceIdParam.length() > MAX_TRACE_ID_LENGTH) { throw new IllegalArgumentException( String.format( "trace ID cannot longer than %d. Provided value was [%s]", MAX_TRACE_ID_LENGTH, traceIdParam)); } return traceIdParam; }); config.bigQueryJobLabels = parseBigQueryLabels(globalOptions, options, BIGQUERY_JOB_LABEL_PREFIX); config.bigQueryTableLabels = parseBigQueryLabels(globalOptions, options, BIGQUERY_TABLE_LABEL_PREFIX); config.createReadSessionTimeoutInSeconds = getAnyOption(globalOptions, options, "createReadSessionTimeoutInSeconds") .transform(Long::parseLong); config.queryJobPriority = getAnyOption(globalOptions, options, "queryJobPriority") .transform(String::toUpperCase) .transform(Priority::valueOf) .or(DEFAULT_JOB_PRIORITY); config.destinationTableKmsKeyName = getAnyOption(globalOptions, options, "destinationTableKmsKeyName"); config.allowMapTypeConversion = getAnyOption(globalOptions, options, ALLOW_MAP_TYPE_CONVERSION) .transform(Boolean::valueOf) .or(ALLOW_MAP_TYPE_CONVERSION_DEFAULT); config.partitionOverwriteModeValue = getAnyOption(globalOptions, options, partitionOverwriteModeProperty) .transform(String::toUpperCase) .transform(PartitionOverwriteMode::valueOf) .or(PartitionOverwriteMode.STATIC); config.bigQueryJobTimeoutInMinutes = getAnyOption(globalOptions, options, BIGQUERY_JOB_TIMEOUT_IN_MINUTES) .transform(Long::valueOf) .or(BIGQUERY_JOB_TIMEOUT_IN_MINUTES_DEFAULT); config.gpn = getAnyOption(globalOptions, options, GPN_ATTRIBUTION); config.snapshotTimeMillis = getOption(options, "snapshotTimeMillis").transform(Long::valueOf).orNull(); config.bigNumericDefaultPrecision = getAnyOption(globalOptions, options, BIG_NUMERIC_DEFAULT_PRECISION) .transform(Integer::parseInt) .or(BigQueryUtil.DEFAULT_BIG_NUMERIC_PRECISION); config.bigNumericDefaultScale = getAnyOption(globalOptions, options, BIG_NUMERIC_DEFAULT_SCALE) .transform(Integer::parseInt) .or(BigQueryUtil.DEFAULT_BIG_NUMERIC_SCALE); config.queryParameterHelper = BigQueryUtil.parseQueryParameters(options); return config; } private static ImmutableList splitOnComma(String value) { return Splitter.on(",") .trimResults() .omitEmptyStrings() .splitToStream(value) .collect(ImmutableList.toImmutableList()); } // strip gs:// prefix if exists private static com.google.common.base.Optional stripPrefix( com.google.common.base.Optional bucket) { return bucket.transform( path -> { if (path.startsWith("gs://")) { return path.substring(5); } else { return path; } }); } @VisibleForTesting // takes only the options with the BIGQUERY_JOB_LABEL_PREFIX prefix, and strip them of this // prefix. // The `options` map overrides the `globalOptions` map. static Map parseBigQueryLabels( ImmutableMap globalOptions, ImmutableMap options, String labelPrefix) { String lowerCasePrefix = labelPrefix.toLowerCase(Locale.ROOT); ImmutableMap allOptions = ImmutableMap.builder() // .putAll(globalOptions) // .putAll(options) // .buildKeepingLast(); ImmutableMap.Builder result = ImmutableMap.builder(); for (Map.Entry entry : allOptions.entrySet()) { if (entry.getKey().toLowerCase(Locale.ROOT).startsWith(lowerCasePrefix)) { result.put(entry.getKey().substring(labelPrefix.length()), entry.getValue()); } } return Collections.unmodifiableMap(result.build()); } private static ImmutableMap toLowerCaseKeysMap(Map map) { Map result = new HashMap<>(); for (Map.Entry entry : map.entrySet()) { result.put(entry.getKey().toLowerCase(Locale.ROOT), entry.getValue()); } return ImmutableMap.copyOf(result); } @VisibleForTesting static boolean isQuery(String tableParamStr) { if (tableParamStr == null || tableParamStr.trim().isEmpty()) { return false; } String potentialQuery = tableParamStr.trim(); // If the string is quoted with backticks, it is recognized as a table identifier, not a query. if (potentialQuery.startsWith("`") && potentialQuery.endsWith("`")) { return false; } // Check for common query-starting keyword. if (QUICK_LOWERCASE_QUERY_PATTERN.matcher(potentialQuery).matches()) { return true; } // Might be a query with a leading comment, OR could be a table name with spaces. return HAS_WHITESPACE_PATTERN.matcher(potentialQuery).find() && SQL_KEYWORD_PATTERN.matcher(potentialQuery).find(); } private static void validateDateFormat( String date, TimePartitioning.Type partitionType, String optionName) { try { Map formatterMap = ImmutableMap.of( TimePartitioning.Type.HOUR, DateTimeFormatter.ofPattern("yyyyMMddHH"), // TimePartitioning.Type.DAY, DateTimeFormatter.BASIC_ISO_DATE, // TimePartitioning.Type.MONTH, DateTimeFormatter.ofPattern("yyyyMM"), // TimePartitioning.Type.YEAR, DateTimeFormatter.ofPattern("yyyy")); DateTimeFormatter dateTimeFormatter = formatterMap.get(partitionType); dateTimeFormatter.parse(date); } catch (DateTimeParseException e) { throw new IllegalArgumentException( String.format("Invalid argument for option %s, format is YYYYMMDD", optionName)); } } static ImmutableMap normalizeConf(Map conf) { Map normalizeConf = conf.entrySet().stream() .filter(e -> e.getKey().startsWith(CONF_PREFIX)) .collect( Collectors.toMap( e -> e.getKey().substring(CONF_PREFIX.length()), e -> e.getValue())); Map result = new HashMap<>(conf); result.putAll(normalizeConf); return ImmutableMap.copyOf(result); } public Credentials createCredentials() { return new BigQueryCredentialsSupplier( accessTokenProviderFQCN.toJavaUtil(), accessTokenProviderConfig.toJavaUtil(), accessToken.toJavaUtil(), credentialsKey.toJavaUtil(), credentialsFile.toJavaUtil(), loggedInUserName, loggedInUserGroups, impersonationServiceAccountsForUsers.toJavaUtil(), impersonationServiceAccountsForGroups.toJavaUtil(), impersonationServiceAccount.toJavaUtil(), credentialsScopes.toJavaUtil(), sparkBigQueryProxyAndHttpConfig.getProxyUri(), sparkBigQueryProxyAndHttpConfig.getProxyUsername(), sparkBigQueryProxyAndHttpConfig.getProxyPassword()) .getCredentials(); } public TableId getTableId() { return tableId; } /** Always populate the project id, even if it is null. */ public TableId getTableIdWithExplicitProject() { if (tableId.getProject() != null) { return tableId; } return TableId.of( // if the table was not set, this is the used project ServiceOptions.getDefaultProjectId(), tableId.getDataset(), tableId.getTable()); } /** Returns the table id, without the added partition id if it exists. */ public TableId getTableIdWithoutThePartition() { String tableAndPartition = tableId.getTable(); if (!tableAndPartition.contains("$")) { // there is no partition id return tableId; } String table = tableAndPartition.substring(0, tableAndPartition.indexOf('$')); return tableId.getProject() != null ? TableId.of(tableId.getProject(), tableId.getDataset(), table) : TableId.of(tableId.getDataset(), table); } public Optional getQuery() { return query.toJavaUtil(); } public QueryParameterHelper getQueryParameterHelper() { return queryParameterHelper; } @Override public String getParentProjectId() { return parentProjectId; } @Override public Optional getCatalogProjectId() { return catalogProjectId.toJavaUtil(); } @Override public Optional getCatalogLocation() { return catalogLocation.toJavaUtil(); } @Override public boolean useParentProjectForMetadataOperations() { return useParentProjectForMetadataOperations; } @Override public Optional getAccessTokenProviderFQCN() { return accessTokenProviderFQCN.toJavaUtil(); } @Override public Optional getAccessTokenProviderConfig() { return accessTokenProviderConfig.toJavaUtil(); } @Override public String getLoggedInUserName() { return loggedInUserName; } @Override public Set getLoggedInUserGroups() { return loggedInUserGroups; } @Override public Optional> getImpersonationServiceAccountsForUsers() { return impersonationServiceAccountsForUsers.toJavaUtil(); } @Override public Optional> getImpersonationServiceAccountsForGroups() { return impersonationServiceAccountsForGroups.toJavaUtil(); } @Override public Optional getImpersonationServiceAccount() { return impersonationServiceAccount.toJavaUtil(); } @Override public Optional getCredentialsKey() { return credentialsKey.toJavaUtil(); } @Override public Optional getCredentialsFile() { return credentialsFile.toJavaUtil(); } @Override public Optional getAccessToken() { return accessToken.toJavaUtil(); } @Override public Optional> getCredentialsScopes() { return credentialsScopes.toJavaUtil(); } public Optional getFilter() { return filter.toJavaUtil(); } public Optional getSchema() { return schema.toJavaUtil(); } public OptionalInt getMaxParallelism() { return maxParallelism == null ? OptionalInt.empty() : OptionalInt.of(maxParallelism); } public OptionalInt getPreferredMinParallelism() { return preferredMinParallelism == null ? OptionalInt.empty() : OptionalInt.of(preferredMinParallelism); } public int getDefaultParallelism() { return defaultParallelism; } public Optional getTemporaryGcsBucket() { return temporaryGcsBucket.toJavaUtil(); } public Optional getPersistentGcsBucket() { return persistentGcsBucket.toJavaUtil(); } public Optional getPersistentGcsPath() { return persistentGcsPath.toJavaUtil(); } public IntermediateFormat getIntermediateFormat() { return intermediateFormat; } public DataFormat getReadDataFormat() { return readDataFormat; } public CompressionCodec getArrowCompressionCodec() { return arrowCompressionCodec; } public ResponseCompressionCodec getResponseCompressionCodec() { return responseCompressionCodec; } public boolean isCombinePushedDownFilters() { return combinePushedDownFilters; } @Override public boolean isUseAvroLogicalTypes() { return useAvroLogicalTypes; } public ImmutableList getDecimalTargetTypes() { return ImmutableList.copyOf(decimalTargetTypes); } public boolean isViewsEnabled() { return viewsEnabled; } @Override public Optional getMaterializationProject() { return materializationProject.toJavaUtil(); } @Override public Optional getMaterializationDataset() { return materializationDataset.toJavaUtil(); } public int getMaterializationExpirationTimeInMinutes() { return materializationExpirationTimeInMinutes; } public Optional getPartitionField() { return partitionField.toJavaUtil(); } public OptionalLong getPartitionExpirationMs() { return partitionExpirationMs == null ? OptionalLong.empty() : OptionalLong.of(partitionExpirationMs); } public Optional getPartitionRequireFilter() { return partitionRequireFilter.toJavaUtil(); } public Optional getPartitionType() { return partitionType.toJavaUtil(); } public Optional getPartitionRange() { if (partitionRangeStart.isPresent() && partitionRangeEnd.isPresent() && partitionRangeInterval.isPresent()) { return Optional.of( RangePartitioning.Range.newBuilder() .setStart(partitionRangeStart.get()) .setEnd(partitionRangeEnd.get()) .setInterval(partitionRangeInterval.get()) .build()); } return Optional.empty(); } public TimePartitioning.Type getPartitionTypeOrDefault() { return partitionType.or(TimePartitioning.Type.DAY); } public Optional> getClusteredFields() { return clusteredFields.transform(fields -> ImmutableList.copyOf(fields)).toJavaUtil(); } public Optional getCreateDisposition() { return createDisposition.toJavaUtil(); } public boolean isOptimizedEmptyProjection() { return optimizedEmptyProjection; } public ImmutableList getLoadSchemaUpdateOptions() { return ImmutableList.copyOf(loadSchemaUpdateOptions); } public int getMaxReadRowsRetries() { return maxReadRowsRetries; } public boolean getPushAllFilters() { return pushAllFilters; } public boolean getEnableModeCheckForSchemaFields() { return enableModeCheckForSchemaFields; } // in order to simplify the configuration, the BigQuery client settings are fixed. If needed // we will add configuration properties for them. @Override public int getBigQueryClientConnectTimeout() { return sparkBigQueryProxyAndHttpConfig .getHttpConnectTimeout() .orElse(DEFAULT_BIGQUERY_CLIENT_CONNECT_TIMEOUT); } @Override public int getBigQueryClientReadTimeout() { return sparkBigQueryProxyAndHttpConfig .getHttpReadTimeout() .orElse(DEFAULT_BIGQUERY_CLIENT_READ_TIMEOUT); } @Override public BigQueryProxyConfig getBigQueryProxyConfig() { return sparkBigQueryProxyAndHttpConfig; } @Override public Optional getBigQueryStorageGrpcEndpoint() { return bigQueryStorageGrpcEndpoint.toJavaUtil(); } @Override public Optional getBigQueryHttpEndpoint() { return bigQueryHttpEndpoint.toJavaUtil(); } @Override public int getCacheExpirationTimeInMinutes() { return cacheExpirationTimeInMinutes; } @Override public Optional getCreateReadSessionTimeoutInSeconds() { return createReadSessionTimeoutInSeconds.toJavaUtil(); } public PartitionOverwriteMode getPartitionOverwriteModeValue() { return partitionOverwriteModeValue; } @Override public int getChannelPoolSize() { return channelPoolSize; } @Override public Optional getFlowControlWindowBytes() { return flowControlWindowBytes.toJavaUtil(); } @Override public Priority getQueryJobPriority() { return queryJobPriority; } @Override public Optional getKmsKeyName() { return destinationTableKmsKeyName.toJavaUtil(); } @Override public RetrySettings getBigQueryClientRetrySettings() { int maxAttempts = sparkBigQueryProxyAndHttpConfig.getHttpMaxRetry().orElse(DEFAULT_BIGQUERY_CLIENT_RETRIES); return getRetrySettings(maxAttempts); } private static RetrySettings getRetrySettings(int maxAttempts) { return RetrySettings.newBuilder() .setMaxAttempts(maxAttempts) .setTotalTimeout(Duration.ofMinutes(10)) .setInitialRpcTimeout(Duration.ofSeconds(60)) .setMaxRpcTimeout(Duration.ofMinutes(5)) .setRpcTimeoutMultiplier(1.6) .setRetryDelayMultiplier(1.6) .setInitialRetryDelay(Duration.ofMillis(1250)) .setMaxRetryDelay(Duration.ofSeconds(5)) .build(); } // for V2 write with BigQuery Storage Write API public RetrySettings getBigqueryDataWriteHelperRetrySettings() { return getRetrySettings(5); } public WriteMethod getWriteMethod() { return writeMethod; } public boolean isWriteAtLeastOnce() { return writeAtLeastOnce; } public Optional getTraceId() { return traceId.toJavaUtil(); } @Override public ImmutableMap getBigQueryJobLabels() { return ImmutableMap.copyOf(bigQueryJobLabels); } public boolean getAllowMapTypeConversion() { return allowMapTypeConversion; } public long getBigQueryJobTimeoutInMinutes() { return bigQueryJobTimeoutInMinutes; } public ImmutableMap getBigQueryTableLabels() { return ImmutableMap.copyOf(bigQueryTableLabels); } public Optional getGpn() { return gpn.toJavaUtil(); } public OptionalLong getSnapshotTimeMillis() { return snapshotTimeMillis == null ? OptionalLong.empty() : OptionalLong.of(snapshotTimeMillis); } public int getBigNumericDefaultPrecision() { return bigNumericDefaultPrecision; } public int getBigNumericDefaultScale() { return bigNumericDefaultScale; } public ReadSessionCreatorConfig toReadSessionCreatorConfig() { return new ReadSessionCreatorConfigBuilder() .setViewsEnabled(viewsEnabled) .setMaterializationProject(materializationProject.toJavaUtil()) .setMaterializationDataset(materializationDataset.toJavaUtil()) .setMaterializationExpirationTimeInMinutes(materializationExpirationTimeInMinutes) .setReadDataFormat(readDataFormat) .setMaxReadRowsRetries(maxReadRowsRetries) .setViewEnabledParamName(VIEWS_ENABLED_OPTION) .setDefaultParallelism(defaultParallelism) .setMaxParallelism(getMaxParallelism()) .setPreferredMinParallelism(getPreferredMinParallelism()) .setRequestEncodedBase(encodedCreateReadSessionRequest.toJavaUtil()) .setBigQueryStorageGrpcEndpoint(bigQueryStorageGrpcEndpoint.toJavaUtil()) .setBigQueryHttpEndpoint(bigQueryHttpEndpoint.toJavaUtil()) .setBackgroundParsingThreads(numBackgroundThreadsPerStream) .setPushAllFilters(pushAllFilters) .setPrebufferReadRowsResponses(numPrebufferReadRowsResponses) .setStreamsPerPartition(numStreamsPerPartition) .setArrowCompressionCodec(arrowCompressionCodec) .setResponseCompressionCodec(responseCompressionCodec) .setTraceId(traceId.toJavaUtil()) .setEnableReadSessionCaching(enableReadSessionCaching) .setReadSessionCacheDurationMins(readSessionCacheDurationMins) .setSnapshotTimeMillis(getSnapshotTimeMillis()) .build(); } public BigQueryClient.ReadTableOptions toReadTableOptions() { return new BigQueryClient.ReadTableOptions() { @Override public TableId tableId() { return SparkBigQueryConfig.this.getTableId(); } @Override public Optional query() { return SparkBigQueryConfig.this.getQuery(); } @Override public boolean viewsEnabled() { return SparkBigQueryConfig.this.isViewsEnabled(); } @Override public String viewEnabledParamName() { return SparkBigQueryConfig.VIEWS_ENABLED_OPTION; } @Override public QueryParameterHelper getQueryParameterHelper() { return SparkBigQueryConfig.this.getQueryParameterHelper(); } @Override public int expirationTimeInMinutes() { return SparkBigQueryConfig.this.getMaterializationExpirationTimeInMinutes(); } @Override public Optional getKmsKeyName() { return SparkBigQueryConfig.this.getKmsKeyName(); } }; } public enum IntermediateFormat { AVRO("avro", FormatOptions.avro()), AVRO_2_3("com.databricks.spark.avro", FormatOptions.avro()), ORC("orc", FormatOptions.orc()), PARQUET("parquet", FormatOptions.parquet()), PARQUET_LIST_INFERENCE_ENABLED( "parquet", ParquetOptions.newBuilder().setEnableListInference(true).build()); private static Set PERMITTED_DATA_SOURCES = Stream.of(values()) .map(IntermediateFormat::getDataSource) .filter(dataSource -> !dataSource.contains(".")) .collect(Collectors.toSet()); private final String dataSource; private final FormatOptions formatOptions; IntermediateFormat(String dataSource, FormatOptions formatOptions) { this.dataSource = dataSource; this.formatOptions = formatOptions; } public static IntermediateFormat from( String format, String sparkVersion, SQLConf sqlConf, boolean validateSparkAvro, boolean enableListInferenceForParquetMode) { Preconditions.checkArgument( PERMITTED_DATA_SOURCES.contains(format.toLowerCase()), "Data write format '%s' is not supported. Supported formats are %s", format, PERMITTED_DATA_SOURCES); if (validateSparkAvro && format.equalsIgnoreCase("avro")) { IntermediateFormat intermediateFormat = isSpark24OrAbove(sparkVersion) ? AVRO : AVRO_2_3; try { DataSource.lookupDataSource(intermediateFormat.getDataSource(), sqlConf); } catch (Exception ae) { throw missingAvroException(sparkVersion, ae); } return intermediateFormat; } if (enableListInferenceForParquetMode && format.equalsIgnoreCase("parquet")) { return PARQUET_LIST_INFERENCE_ENABLED; } // we have made sure that the format exist in the precondition, so findFirst() will // always find an instance return Stream.of(values()) .filter(intermediateFormat -> intermediateFormat.getDataSource().equalsIgnoreCase(format)) .findFirst() .get(); } static boolean isSpark24OrAbove(String sparkVersion) { return sparkVersion.compareTo("2.4") > 0; } // could not load the spark-avro data source @VisibleForTesting static IllegalStateException missingAvroException(String sparkVersion, Exception cause) { String avroPackage; if (isSpark24OrAbove(sparkVersion)) { String scalaVersion = scala.util.Properties.versionNumberString(); String scalaShortVersion = scalaVersion.substring(0, scalaVersion.lastIndexOf('.')); avroPackage = String.format("org.apache.spark:spark-avro_%s:%s", scalaShortVersion, sparkVersion); } else { avroPackage = "com.databricks:spark-avro_2.11:4.0.0"; } String message = String.format( "Avro writing is not supported, as the spark-avro has not been found. " + "Please re-run spark with the --packages %s parameter", avroPackage); return new IllegalStateException(message, cause); } public String getDataSource() { return dataSource; } public FormatOptions getFormatOptions() { return formatOptions; } public String getFileSuffix() { return getFormatOptions().getType().toLowerCase(); } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryConnectorModule.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryConfig; import com.google.cloud.bigquery.connector.common.BigQueryJobCompletionListener; import com.google.cloud.bigquery.connector.common.EnvironmentContext; import com.google.cloud.bigquery.connector.common.UserAgentProvider; import com.google.cloud.spark.bigquery.events.BigQueryJobCompletedEvent; import com.google.common.collect.ImmutableMap; import com.google.inject.Binder; import com.google.inject.Module; import com.google.inject.Provides; import com.google.inject.Singleton; import java.util.Map; import java.util.Optional; import org.apache.spark.scheduler.SparkListener; import org.apache.spark.scheduler.SparkListenerApplicationEnd; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class SparkBigQueryConnectorModule implements Module { private static Logger logger = LoggerFactory.getLogger(SparkBigQueryConnectorModule.class); private static boolean registeredCleanupListener = false; private final SparkSession spark; private final Map options; private final Map customDefaults; private final Optional schema; private final DataSourceVersion dataSourceVersion; private final boolean tableIsMandatory; private final Optional config; public SparkBigQueryConnectorModule( SparkSession spark, Map options, Map customDefaults, Optional schema, DataSourceVersion dataSourceVersion, boolean tableIsMandatory, Optional config) { this.spark = spark; this.options = options; this.customDefaults = customDefaults; this.schema = schema; this.dataSourceVersion = dataSourceVersion; this.tableIsMandatory = tableIsMandatory; this.config = config; } @Override public void configure(Binder binder) { binder.bind(BigQueryConfig.class).toProvider(this::provideSparkBigQueryConfig); if (!registeredCleanupListener) { logger.info("Registering cleanup jobs listener, should happen just once"); spark .sparkContext() .addSparkListener( new SparkListener() { @Override public void onApplicationEnd(SparkListenerApplicationEnd applicationEnd) { logger.info("In SparkListener.onApplicationEnd, going to activate cleanup jobs"); BigQueryClient.runCleanupJobs(); } }); registeredCleanupListener = true; } } @Singleton @Provides public SparkSession provideSparkSession() { return spark; } @Singleton @Provides public DataSourceVersion provideDataSourceVersion() { return dataSourceVersion; } @Singleton @Provides public SparkBigQueryConfig provideSparkBigQueryConfig() { return config.orElseGet( () -> SparkBigQueryConfig.from( options, ImmutableMap.copyOf(customDefaults), dataSourceVersion, spark, schema, tableIsMandatory)); } @Singleton @Provides public UserAgentProvider provideUserAgentProvider() { return new SparkBigQueryConnectorUserAgentProvider( dataSourceVersion.toString().toLowerCase(), provideSparkBigQueryConfig().getGpn()); } @Singleton @Provides public EnvironmentContext provideEnvironmentContext() { return new EnvironmentContext( SparkBigQueryUtil.extractJobLabels(spark.sparkContext().getConf())); } @Singleton @Provides public BigQueryJobCompletionListener provideBigQueryJobCompletionListener() { return completedJob -> BigQueryJobCompletedEvent.from(completedJob) .ifPresent(event -> spark.sparkContext().listenerBus().post(event)); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryConnectorUserAgentProvider.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static java.lang.String.format; import com.google.cloud.bigquery.connector.common.GcpUtil; import com.google.cloud.bigquery.connector.common.UserAgentProvider; import com.google.common.annotations.VisibleForTesting; import com.google.gson.JsonObject; import java.util.Optional; import scala.util.Properties; /** Provides the versions of the client environment in an anonymous way. */ public class SparkBigQueryConnectorUserAgentProvider implements UserAgentProvider { // getGcpZone() and not getGcpRegion for backwards compatibility @VisibleForTesting static String GCP_REGION_PART = GcpUtil.getGcpZone().map(region -> " region/" + region).orElse(""); @VisibleForTesting static String DATAPROC_IMAGE_PART = Optional.ofNullable(System.getenv("DATAPROC_IMAGE_VERSION")) .map(image -> " dataproc-image/" + image) .orElse(""); // In order to avoid using SparkContext or SparkSession, we are going directly to the source private static String SPARK_VERSION = org.apache.spark.package$.MODULE$.SPARK_VERSION(); private static String JAVA_VERSION = System.getProperty("java.runtime.version"); private static String SCALA_VERSION = Properties.versionNumberString(); static final String USER_AGENT = format( "spark/%s java/%s scala/%s%s%s", SPARK_VERSION, JAVA_VERSION, SCALA_VERSION, GCP_REGION_PART, DATAPROC_IMAGE_PART); private String dataSourceVersion; private Optional gpn; public SparkBigQueryConnectorUserAgentProvider(String dataSourceVersion, Optional gpn) { this.dataSourceVersion = dataSourceVersion; this.gpn = gpn; } @Override public String getUserAgent() { StringBuilder userAgentBuilder = new StringBuilder(); userAgentBuilder .append("spark-bigquery-connector/") .append(SparkBigQueryUtil.CONNECTOR_VERSION); gpn.ifPresent(s -> userAgentBuilder.append(" (GPN:").append(s).append(") ")); userAgentBuilder.append(USER_AGENT).append(" datasource/").append(dataSourceVersion); return userAgentBuilder.toString(); } @Override /* * Creates JsonObject of the conenctor info as Json format is used at the receiver of this event. */ public String getConnectorInfo() { JsonObject jsonObject = new JsonObject(); jsonObject.addProperty("connectorVersion", SparkBigQueryUtil.CONNECTOR_VERSION); jsonObject.addProperty("datasource", dataSourceVersion); jsonObject.addProperty("dataprocImage", DATAPROC_IMAGE_PART); jsonObject.addProperty("gcpRegion", GCP_REGION_PART); jsonObject.addProperty("sparkVersion", SPARK_VERSION); jsonObject.addProperty("javaVersion", JAVA_VERSION); jsonObject.addProperty("scalaVersion", SCALA_VERSION); gpn.ifPresent(s -> jsonObject.addProperty("GPN", s)); return jsonObject.toString(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryConnectorVersionProvider.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static java.lang.String.format; import com.google.cloud.bigquery.connector.common.VersionProvider; import org.apache.spark.SparkContext; import scala.util.Properties; public class SparkBigQueryConnectorVersionProvider implements VersionProvider { private SparkContext sparkContext; public SparkBigQueryConnectorVersionProvider(SparkContext sparkContext) { this.sparkContext = sparkContext; } @Override public String getVersion() { return format( "spark-bigquery-connector/%s spark/%s java/%s scala/%s", SparkBigQueryUtil.CONNECTOR_VERSION, sparkContext.version(), System.getProperty("java.runtime.version"), Properties.versionNumberString()); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryLineageProvider.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import io.openlineage.spark.extension.OpenLineageExtensionProvider; import io.openlineage.spark.shade.extension.v1.lifecycle.plan.SparkOpenLineageExtensionVisitor; public class SparkBigQueryLineageProvider implements OpenLineageExtensionProvider { @Override public String getVisitorClassName() { return SparkOpenLineageExtensionVisitor.class.getCanonicalName(); } @Override public String shadedPackage() { return "com.google.cloud.spark.bigquery.repackaged.io.openlineage.spark.shade"; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryProxyAndHttpConfig.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.firstPresent; import static com.google.common.base.Optional.fromJavaUtil; import static com.google.common.base.Optional.fromNullable; import static com.google.common.base.Preconditions.checkArgument; import com.google.cloud.bigquery.connector.common.BigQueryProxyConfig; import com.google.cloud.bigquery.connector.common.BigQueryProxyTransporterBuilder; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Objects; import com.google.common.base.Strings; import com.google.common.collect.ImmutableMap; import java.io.Serializable; import java.net.URI; import java.net.URISyntaxException; import java.util.Map; import java.util.Optional; import org.apache.hadoop.conf.Configuration; public class SparkBigQueryProxyAndHttpConfig implements BigQueryProxyConfig, Serializable { // HTTP proxy with address in host:port format public static final String PROXY_ADDRESS_OPTION = "proxyAddress"; public static final String PROXY_USERNAME_OPTION = "proxyUsername"; public static final String PROXY_PASSWORD_OPTION = "proxyPassword"; public static final String HTTP_MAX_RETRY_OPTION = "httpMaxRetry"; public static final String HTTP_CONNECT_TIMEOUT_OPTION = "httpConnectTimeout"; public static final String HTTP_READ_TIMEOUT_OPTION = "httpReadTimeout"; // HTTP proxy with address in host:port format public static final String GCS_CONFIG_PROXY_ADDRESS_PROPERTY = "fs.gs.proxy.address"; public static final String GCS_CONFIG_PROXY_USERNAME_PROPERTY = "fs.gs.proxy.username"; public static final String GCS_CONFIG_PROXY_PASSWORD_PROPERTY = "fs.gs.proxy.password"; public static final String GCS_CONFIG_HTTP_MAX_RETRY_PROPERTY = "fs.gs.http.max.retry"; public static final String GCS_CONFIG_HTTP_CONNECT_TIMEOUT_PROPERTY = "fs.gs.http.connect-timeout"; public static final String GCS_CONFIG_HTTP_READ_TIMEOUT_PROPERTY = "fs.gs.http.read-timeout"; private static final long serialVersionUID = 1651319822547810178L; private com.google.common.base.Optional proxyUri; private com.google.common.base.Optional proxyUsername; private com.google.common.base.Optional proxyPassword; private com.google.common.base.Optional httpMaxRetry; private com.google.common.base.Optional httpConnectTimeout; private com.google.common.base.Optional httpReadTimeout; @VisibleForTesting SparkBigQueryProxyAndHttpConfig() { // empty } @VisibleForTesting public static SparkBigQueryProxyAndHttpConfig from( Map options, ImmutableMap globalOptions, Configuration hadoopConfiguration) throws IllegalArgumentException { SparkBigQueryProxyAndHttpConfig config = new SparkBigQueryProxyAndHttpConfig(); com.google.common.base.Optional proxyAddress = getProperty( options, globalOptions, hadoopConfiguration, PROXY_ADDRESS_OPTION, GCS_CONFIG_PROXY_ADDRESS_PROPERTY); config.proxyUri = fromNullable(parseProxyAddress(proxyAddress.or(""))); config.proxyUsername = getProperty( options, globalOptions, hadoopConfiguration, PROXY_USERNAME_OPTION, GCS_CONFIG_PROXY_USERNAME_PROPERTY); config.proxyPassword = getProperty( options, globalOptions, hadoopConfiguration, PROXY_PASSWORD_OPTION, GCS_CONFIG_PROXY_PASSWORD_PROPERTY); checkProxyParamsValidity(config); config.httpMaxRetry = getProperty( options, globalOptions, hadoopConfiguration, HTTP_MAX_RETRY_OPTION, GCS_CONFIG_HTTP_MAX_RETRY_PROPERTY) .transform(Integer::valueOf); config.httpConnectTimeout = getProperty( options, globalOptions, hadoopConfiguration, HTTP_CONNECT_TIMEOUT_OPTION, GCS_CONFIG_HTTP_CONNECT_TIMEOUT_PROPERTY) .transform(Integer::valueOf); config.httpReadTimeout = getProperty( options, globalOptions, hadoopConfiguration, HTTP_READ_TIMEOUT_OPTION, GCS_CONFIG_HTTP_READ_TIMEOUT_PROPERTY) .transform(Integer::valueOf); checkHttpParamsValidity(config); return config; } private static void checkProxyParamsValidity(SparkBigQueryProxyAndHttpConfig config) throws IllegalArgumentException { if (!config.proxyUri.isPresent() && (config.proxyUsername.isPresent() || config.proxyPassword.isPresent())) { throw new IllegalArgumentException( "Please set proxyAddress in order to use a proxy. " + "Setting proxyUsername or proxyPassword is not enough"); } BigQueryProxyTransporterBuilder.checkProxyParamsValidity( config.getProxyUsername(), config.getProxyPassword()); } private static void checkHttpParamsValidity(SparkBigQueryProxyAndHttpConfig config) throws IllegalArgumentException { // Not checking for httpConnectTimeout and httpReadTimeout as negative values are allowed for // these parameters. // A negative number is for the default value (20000). And 0 for an infinite timeout. if (config.getHttpMaxRetry().isPresent() && config.getHttpMaxRetry().get() < 0) { throw new IllegalArgumentException("Http Max Retry value cannot be negative"); } } private static com.google.common.base.Optional getProperty( Map options, ImmutableMap globalOptions, Configuration hadoopConfiguration, String bqOption, String gcsProperty) { return fromJavaUtil( firstPresent( getFirstOrSecondOption(options, globalOptions, bqOption).toJavaUtil(), fromNullable(hadoopConfiguration.get(gcsProperty)).toJavaUtil())); } private static com.google.common.base.Optional getFirstOrSecondOption( Map options, ImmutableMap globalOptions, String name) { return com.google.common.base.Optional.fromNullable(options.get(name.toLowerCase())) .or(com.google.common.base.Optional.fromNullable(globalOptions.get(name))); } @VisibleForTesting static URI parseProxyAddress(String proxyAddress) { if (Strings.isNullOrEmpty(proxyAddress)) { return null; } String uriString = (proxyAddress.contains("//") ? "" : "//") + proxyAddress; try { URI uri = new URI(uriString); String scheme = uri.getScheme(); String host = uri.getHost(); int port = uri.getPort(); checkArgument( Strings.isNullOrEmpty(scheme) || scheme.matches("https?"), "Proxy address '%s' has invalid scheme '%s'.", proxyAddress, scheme); checkArgument(!Strings.isNullOrEmpty(host), "Proxy address '%s' has no host.", proxyAddress); checkArgument(port != -1, "Proxy address '%s' has no port.", proxyAddress); checkArgument( uri.equals(new URI(scheme, null, host, port, null, null, null)), "Invalid proxy address '%s'.", proxyAddress); return uri; } catch (URISyntaxException e) { throw new IllegalArgumentException( String.format("Invalid proxy address '%s'.", proxyAddress), e); } } public Optional getProxyUri() { return proxyUri.toJavaUtil(); } public Optional getProxyUsername() { return proxyUsername.toJavaUtil(); } public Optional getProxyPassword() { return proxyPassword.toJavaUtil(); } Optional getHttpMaxRetry() { return httpMaxRetry.toJavaUtil(); } Optional getHttpConnectTimeout() { return httpConnectTimeout.toJavaUtil(); } Optional getHttpReadTimeout() { return httpReadTimeout.toJavaUtil(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof SparkBigQueryProxyAndHttpConfig)) { return false; } SparkBigQueryProxyAndHttpConfig that = (SparkBigQueryProxyAndHttpConfig) o; return Objects.equal(proxyUri, that.proxyUri) && Objects.equal(proxyUsername, that.proxyUsername) && Objects.equal(proxyPassword, that.proxyPassword) && Objects.equal(httpMaxRetry, that.httpMaxRetry) && Objects.equal(httpConnectTimeout, that.httpConnectTimeout) && Objects.equal(httpReadTimeout, that.httpReadTimeout); } @Override public int hashCode() { return Objects.hashCode( proxyUri, proxyUsername, proxyPassword, httpMaxRetry, httpConnectTimeout, httpReadTimeout); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryUtil.java ================================================ /* * Copyright 2020 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.DEFAULT_FALLBACK; import static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getOptionFromMultipleParams; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableMap.Builder; import com.google.common.collect.ImmutableSet; import java.io.IOException; import java.io.UncheckedIOException; import java.time.Instant; import java.time.LocalDate; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.Properties; import java.util.ServiceLoader; import java.util.UUID; import java.util.concurrent.TimeUnit; import java.util.stream.Stream; import javax.validation.constraints.NotNull; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.spark.SparkConf; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.internal.SQLConf; import org.apache.spark.sql.sources.Filter; import org.apache.spark.sql.types.Metadata; /** Spark related utilities */ public class SparkBigQueryUtil { private static final String SPARK_YARN_TAGS = "spark.yarn.tags"; private static final long MICROS_PER_SECOND = TimeUnit.SECONDS.toMicros(1); private static final long MIN_SECONDS = Math.floorDiv(Long.MIN_VALUE, MICROS_PER_SECOND); static final Properties BUILD_PROPERTIES = loadBuildProperties(); static final String CONNECTOR_VERSION = BUILD_PROPERTIES.getProperty("connector.version"); private static final ImmutableSet typeConverters; static { ServiceLoader serviceLoader = ServiceLoader.load(TypeConverter.class); typeConverters = ImmutableSet.copyOf(serviceLoader.iterator()); } private static Properties loadBuildProperties() { try { Properties buildProperties = new Properties(); buildProperties.load( SparkBigQueryUtil.class.getResourceAsStream("/spark-bigquery-connector.properties")); return buildProperties; } catch (IOException e) { throw new UncheckedIOException(e); } } /** * Optimizing the URI list for BigQuery load, using the Spark specific file prefix and suffix * patterns, based on BigQueryUtil.optimizeLoadUriList() * * @param uris A list of URIs to be loaded by BigQuery load * @return an optimized list of URIs */ public static List optimizeLoadUriListForSpark(List uris) { return BigQueryUtil.optimizeLoadUriList(uris, ".*/part-", "-[-\\w\\.]+"); } /** * Checks whether temporaryGcsBucket or persistentGcsBucket parameters are present in the config * and creates a org.apache.hadoop.fs.Path object backed by GCS. When the indirect write method in * dsv1 is used, the data is written first to this GCS path and is then loaded into BigQuery * * @param config SparkBigQueryConfig * @param conf Hadoop configuration parameters * @param applicationId A unique identifier for the Spark application * @return org.apache.hadoop.fs.Path object backed by GCS */ public static Path createGcsPath( SparkBigQueryConfig config, Configuration conf, String applicationId) { Path gcsPath; try { Preconditions.checkArgument( config.getTemporaryGcsBucket().isPresent() || config.getPersistentGcsBucket().isPresent(), "Either temporary or persistent GCS bucket must be set"); // Throw exception if persistentGcsPath already exists in persistentGcsBucket if (config.getPersistentGcsBucket().isPresent() && config.getPersistentGcsPath().isPresent()) { gcsPath = new Path( String.format( "%s/%s", getBucketAndScheme(config.getPersistentGcsBucket().get()), config.getPersistentGcsPath().get())); FileSystem fs = gcsPath.getFileSystem(conf); if (fs.exists(gcsPath)) { throw new IllegalArgumentException( String.format( "Path %s already exists in %s bucket", config.getPersistentGcsPath().get(), config.getPersistentGcsBucket().get())); } } else if (config.getTemporaryGcsBucket().isPresent()) { gcsPath = getUniqueGcsPath(config.getTemporaryGcsBucket().get(), applicationId, conf); } else { gcsPath = getUniqueGcsPath(config.getPersistentGcsBucket().get(), applicationId, conf); } } catch (IOException e) { throw new UncheckedIOException(e); } return gcsPath; } private static Path getUniqueGcsPath(String gcsBucket, String applicationId, Configuration conf) throws IOException { boolean needNewPath = true; Path gcsPath = null; String gcsBucketAndScheme = getBucketAndScheme(gcsBucket); while (needNewPath) { gcsPath = new Path( String.format( "%s/.spark-bigquery-%s-%s", gcsBucketAndScheme, applicationId, UUID.randomUUID())); FileSystem fs = gcsPath.getFileSystem(conf); needNewPath = fs.exists(gcsPath); } return gcsPath; } private static String getBucketAndScheme(String gcsBucket) { return gcsBucket.contains("://") ? gcsBucket : "gs://" + gcsBucket; } public static String getJobId(SQLConf sqlConf) { return getJobIdInternal( sqlConf.getConfString("spark.yarn.tags", "missing"), sqlConf.getConfString("spark.app.id", "generated-" + UUID.randomUUID())); } @VisibleForTesting // try to extract the dataproc job first, if not than use the applicationId static String getJobIdInternal(String yarnTags, String applicationId) { return Stream.of(yarnTags.split(",")) .filter(tag -> tag.startsWith("dataproc_job_")) .findFirst() .orElseGet(() -> applicationId); } public static JobInfo.WriteDisposition saveModeToWriteDisposition(SaveMode saveMode) { if (saveMode == SaveMode.ErrorIfExists) { return JobInfo.WriteDisposition.WRITE_EMPTY; } // SaveMode.Ignore is handled in the data source level. If it has arrived here it means tha // table does not exist if (saveMode == SaveMode.Append || saveMode == SaveMode.Ignore) { return JobInfo.WriteDisposition.WRITE_APPEND; } if (saveMode == SaveMode.Overwrite) { return JobInfo.WriteDisposition.WRITE_TRUNCATE; } throw new IllegalArgumentException("SaveMode " + saveMode + " is currently not supported."); } public static TableId parseSimpleTableId(SparkSession spark, Map options) { ImmutableMap globalOptions = ImmutableMap.copyOf(scalaMapToJavaMap(spark.conf().getAll())); return BigQueryConfigurationUtil.parseSimpleTableId(globalOptions, options); } public static long sparkTimestampToBigQuery(Object sparkValue) { if (sparkValue instanceof Long) { return ((Number) sparkValue).longValue(); } if (sparkValue instanceof Instant) { Instant instant = (Instant) sparkValue; long epochSeconds = instant.getEpochSecond(); if (epochSeconds == MIN_SECONDS) { long us = Math.multiplyExact(epochSeconds + 1, MICROS_PER_SECOND); return Math.addExact( us, TimeUnit.NANOSECONDS.toMicros(instant.getNano()) - MICROS_PER_SECOND); } else { long us = Math.multiplyExact(epochSeconds, MICROS_PER_SECOND); return Math.addExact(us, TimeUnit.NANOSECONDS.toMicros(instant.getNano())); } } // need to return timestamp in epoch microseconds java.sql.Timestamp timestamp = (java.sql.Timestamp) sparkValue; long epochMillis = timestamp.getTime(); int micros = (timestamp.getNanos() / 1000) % 1000; return epochMillis * 1000 + micros; } public static int sparkDateToBigQuery(Object sparkValue) { if (sparkValue instanceof Number) { return ((Number) sparkValue).intValue(); } if (sparkValue instanceof LocalDate) { LocalDate localDate = (LocalDate) sparkValue; return Math.toIntExact(localDate.toEpochDay()); } java.sql.Date sparkDate = (java.sql.Date) sparkValue; return (int) sparkDate.toLocalDate().toEpochDay(); } public static String getTableNameFromOptions(Map options) { // options.get("table") when the "table" option is used, options.get("path") is set when // .load("table_name) is used Optional tableParam = getOptionFromMultipleParams(options, ImmutableList.of("table", "path"), DEFAULT_FALLBACK) .toJavaUtil(); String tableParamStr = tableParam.get().trim().replaceAll("\\s+", " "); TableId tableId = BigQueryUtil.parseTableId(tableParamStr); return BigQueryUtil.friendlyTableName(tableId); } // scala version agnostic conversion, that's why no JavaConverters are used public static ImmutableMap scalaMapToJavaMap( scala.collection.immutable.Map map) { ImmutableMap.Builder result = ImmutableMap.builder(); map.foreach(entry -> result.put(entry._1(), entry._2())); return result.build(); } public static boolean isDataFrameShowMethodInStackTrace() { for (StackTraceElement stackTraceElement : Thread.currentThread().getStackTrace()) { if (stackTraceElement.getClassName().equals("org.apache.spark.sql.Dataset") && stackTraceElement.getMethodName().equals("showString")) { return true; } } return false; } public static boolean isJson(Metadata metadata) { return metadata.contains("sqlType") && "JSON".equals(metadata.getString("sqlType")); } public static ImmutableList extractPartitionAndClusteringFilters( TableInfo table, ImmutableList filters) { ImmutableList partitionFields = BigQueryUtil.getPartitionFields(table); ImmutableList clusteringFields = BigQueryUtil.getClusteringFields(table); ImmutableList.Builder filterFields = ImmutableList.builder(); filterFields.addAll(partitionFields); filterFields.addAll(clusteringFields); return filterFields.build().stream() .flatMap(field -> filtersOnField(filters, field)) .collect(ImmutableList.toImmutableList()); } @VisibleForTesting static Stream filtersOnField(ImmutableList filters, String field) { return filters.stream() .filter( filter -> Stream.of(filter.references()).anyMatch(reference -> reference.equals(field))); } public static Stream getTypeConverterStream() { return typeConverters.stream(); } @NotNull public static ImmutableMap extractJobLabels(SparkConf sparkConf) { Builder labels = ImmutableMap.builder(); ImmutableList tags = Stream.of(Optional.ofNullable(sparkConf.get(SPARK_YARN_TAGS, null))) .filter(Optional::isPresent) .flatMap(value -> Stream.of(value.get().split(","))) .collect(ImmutableList.toImmutableList()); tags.stream() .filter(tag -> tag.startsWith("dataproc_job_")) .findFirst() .ifPresent( tag -> labels.put( "dataproc_job_id", BigQueryUtil.sanitizeLabelValue(tag.substring(tag.lastIndexOf('_') + 1)))); tags.stream() .filter(tag -> tag.startsWith("dataproc_uuid_")) .findFirst() .ifPresent( tag -> labels.put( "dataproc_job_uuid", BigQueryUtil.sanitizeLabelValue(tag.substring(tag.lastIndexOf('_') + 1)))); return labels.build(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkFilterUtils.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static java.lang.String.format; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.common.collect.ImmutableList; import java.sql.Date; import java.sql.Timestamp; import java.time.Instant; import java.time.LocalDate; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.Arrays; import java.util.Map; import java.util.Optional; import java.util.stream.Collectors; import java.util.stream.Stream; import java.util.stream.StreamSupport; import org.apache.spark.sql.sources.*; import org.apache.spark.sql.types.ArrayType; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; public class SparkFilterUtils { private SparkFilterUtils() {} // Structs are not handled public static boolean isTopLevelFieldHandled( boolean pushAllFilters, Filter filter, DataFormat readDataFormat, Map fields) { if (pushAllFilters) { return true; } if (filter instanceof EqualTo) { EqualTo equalTo = (EqualTo) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, equalTo.attribute()); } if (filter instanceof EqualNullSafe) { EqualNullSafe equalNullSafe = (EqualNullSafe) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, equalNullSafe.attribute()); } if (filter instanceof GreaterThan) { GreaterThan greaterThan = (GreaterThan) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, greaterThan.attribute()); } if (filter instanceof GreaterThanOrEqual) { GreaterThanOrEqual greaterThanOrEqual = (GreaterThanOrEqual) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, greaterThanOrEqual.attribute()); } if (filter instanceof LessThan) { LessThan lessThan = (LessThan) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, lessThan.attribute()); } if (filter instanceof LessThanOrEqual) { LessThanOrEqual lessThanOrEqual = (LessThanOrEqual) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, lessThanOrEqual.attribute()); } if (filter instanceof In) { In in = (In) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, in.attribute()); } if (filter instanceof IsNull) { IsNull isNull = (IsNull) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, isNull.attribute()); } if (filter instanceof IsNotNull) { IsNotNull isNotNull = (IsNotNull) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, isNotNull.attribute()); } if (filter instanceof And) { And and = (And) filter; return isTopLevelFieldHandled(pushAllFilters, and.left(), readDataFormat, fields) && isTopLevelFieldHandled(pushAllFilters, and.right(), readDataFormat, fields); } if (filter instanceof Or) { Or or = (Or) filter; return readDataFormat == DataFormat.AVRO && isTopLevelFieldHandled(pushAllFilters, or.left(), readDataFormat, fields) && isTopLevelFieldHandled(pushAllFilters, or.right(), readDataFormat, fields); } if (filter instanceof Not) { Not not = (Not) filter; return isTopLevelFieldHandled(pushAllFilters, not.child(), readDataFormat, fields); } if (filter instanceof StringStartsWith) { StringStartsWith stringStartsWith = (StringStartsWith) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, stringStartsWith.attribute()); } if (filter instanceof StringEndsWith) { StringEndsWith stringEndsWith = (StringEndsWith) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, stringEndsWith.attribute()); } if (filter instanceof StringContains) { StringContains stringContains = (StringContains) filter; return isFilterWithNamedFieldHandled( pushAllFilters, filter, readDataFormat, fields, stringContains.attribute()); } throw new IllegalArgumentException(format("Invalid filter: %s", filter)); } static boolean isFilterWithNamedFieldHandled( boolean pushAllFilters, Filter filter, DataFormat readDataFormat, Map fields, String fieldName) { return Optional.ofNullable(fields.get(fieldName)) .filter( field -> ((field.dataType() instanceof StructType) || (field.dataType() instanceof ArrayType))) .map(field -> false) .orElse(isHandled(pushAllFilters, filter, readDataFormat)); } public static boolean isHandled( boolean pushAllFilters, Filter filter, DataFormat readDataFormat) { if (pushAllFilters) { return true; } if (filter instanceof EqualTo || filter instanceof GreaterThan || filter instanceof GreaterThanOrEqual || filter instanceof LessThan || filter instanceof LessThanOrEqual || filter instanceof In || filter instanceof IsNull || filter instanceof IsNotNull || filter instanceof StringStartsWith || filter instanceof StringEndsWith || filter instanceof StringContains || filter instanceof EqualNullSafe) { return true; } if (filter instanceof And) { And and = (And) filter; return isHandled(pushAllFilters, and.left(), readDataFormat) && isHandled(pushAllFilters, and.right(), readDataFormat); } if (filter instanceof Or) { Or or = (Or) filter; return readDataFormat == DataFormat.AVRO && isHandled(pushAllFilters, or.left(), readDataFormat) && isHandled(pushAllFilters, or.right(), readDataFormat); } if (filter instanceof Not) { return isHandled(pushAllFilters, ((Not) filter).child(), readDataFormat); } return false; } public static Iterable handledFilters( boolean pushAllFilters, DataFormat readDataFormat, Filter... filters) { return handledFilters(pushAllFilters, readDataFormat, ImmutableList.copyOf(filters)); } public static Iterable handledFilters( boolean pushAllFilters, DataFormat readDataFormat, Iterable filters) { return StreamSupport.stream(filters.spliterator(), false) .filter(f -> isHandled(pushAllFilters, f, readDataFormat)) .collect(Collectors.toList()); } public static Iterable unhandledFilters( boolean pushAllFilters, DataFormat readDataFormat, Filter... filters) { return unhandledFilters(pushAllFilters, readDataFormat, ImmutableList.copyOf(filters)); } public static Iterable unhandledFilters( boolean pushAllFilters, DataFormat readDataFormat, Iterable filters) { return StreamSupport.stream(filters.spliterator(), false) .filter(f -> !isHandled(pushAllFilters, f, readDataFormat)) .collect(Collectors.toList()); } public static String getCompiledFilter( boolean pushAllFilters, DataFormat readDataFormat, Optional configFilter, Filter... pushedFilters) { String compiledPushedFilter = compileFilters( handledFilters(pushAllFilters, readDataFormat, ImmutableList.copyOf(pushedFilters))); return Stream.of( configFilter, compiledPushedFilter.isEmpty() ? Optional.empty() : Optional.of(compiledPushedFilter)) .filter(Optional::isPresent) .map(Optional::get) .map(filter -> filter.startsWith("(") && filter.endsWith(")") ? filter : "(" + filter + ")") .collect(Collectors.joining(" AND ")); } // Mostly copied from JDBCRDD.scala public static String compileFilter(Filter filter) { if (filter instanceof EqualTo) { EqualTo equalTo = (EqualTo) filter; return format("%s = %s", quote(equalTo.attribute()), compileValue(equalTo.value())); } if (filter instanceof EqualNullSafe) { EqualNullSafe equalNullSafe = (EqualNullSafe) filter; String left = quote(equalNullSafe.attribute()); String right = compileValue(equalNullSafe.value()); return format( "(%1$s IS NULL AND %2$s IS NULL) OR (%1$s IS NOT NULL AND %2$s IS NOT NULL AND %1$s = %2$s)", left, right); } if (filter instanceof GreaterThan) { GreaterThan greaterThan = (GreaterThan) filter; return format("%s > %s", quote(greaterThan.attribute()), compileValue(greaterThan.value())); } if (filter instanceof GreaterThanOrEqual) { GreaterThanOrEqual greaterThanOrEqual = (GreaterThanOrEqual) filter; return format( "%s >= %s", quote(greaterThanOrEqual.attribute()), compileValue(greaterThanOrEqual.value())); } if (filter instanceof LessThan) { LessThan lessThan = (LessThan) filter; return format("%s < %s", quote(lessThan.attribute()), compileValue(lessThan.value())); } if (filter instanceof LessThanOrEqual) { LessThanOrEqual lessThanOrEqual = (LessThanOrEqual) filter; return format( "%s <= %s", quote(lessThanOrEqual.attribute()), compileValue(lessThanOrEqual.value())); } if (filter instanceof In) { In in = (In) filter; return format( "%s IN %s", quote(in.attribute()), compileValue(in.values(), /*arrayStart=*/ '(', /*arrayEnd=*/ ')')); } if (filter instanceof IsNull) { IsNull isNull = (IsNull) filter; return format("%s IS NULL", quote(isNull.attribute())); } if (filter instanceof IsNotNull) { IsNotNull isNotNull = (IsNotNull) filter; return format("%s IS NOT NULL", quote(isNotNull.attribute())); } if (filter instanceof And) { And and = (And) filter; return format("(%s) AND (%s)", compileFilter(and.left()), compileFilter(and.right())); } if (filter instanceof Or) { Or or = (Or) filter; return format("(%s) OR (%s)", compileFilter(or.left()), compileFilter(or.right())); } if (filter instanceof Not) { Not not = (Not) filter; return format("NOT (%s)", compileFilter(not.child())); } if (filter instanceof StringStartsWith) { StringStartsWith stringStartsWith = (StringStartsWith) filter; return format( "%s LIKE '%s%%'", quote(stringStartsWith.attribute()), escape(stringStartsWith.value())); } if (filter instanceof StringEndsWith) { StringEndsWith stringEndsWith = (StringEndsWith) filter; return format( "%s LIKE '%%%s'", quote(stringEndsWith.attribute()), escape(stringEndsWith.value())); } if (filter instanceof StringContains) { StringContains stringContains = (StringContains) filter; return format( "%s LIKE '%%%s%%'", quote(stringContains.attribute()), escape(stringContains.value())); } throw new IllegalArgumentException(format("Invalid filter: %s", filter)); } public static String compileFilters(Iterable filters) { return StreamSupport.stream(filters.spliterator(), false) .map(SparkFilterUtils::compileFilter) .sorted() .map(filter -> "(" + filter + ")") .collect(Collectors.joining(" AND ")); } /** Converts value to SQL expression. */ static String compileValue(Object value) { return compileValue(value, /*arrayStart=*/ '[', /*arrayEnd=*/ ']'); } /** Converts value to SQL expression customizing array start/end values. */ static String compileValue(Object value, char arrayStart, char arrayEnd) { if (value == null) { return null; } if (value instanceof String) { return "'" + escape((String) value) + "'"; } if (value instanceof Date || value instanceof LocalDate) { return "DATE '" + value + "'"; } if (value instanceof Timestamp || value instanceof Instant) { final Instant instant; if (value instanceof Timestamp) { instant = ((Timestamp) value).toInstant(); } else { instant = (Instant) value; } // Instant uses ISO-8601 representation. return "TIMESTAMP '" + instant.toString() + "'"; } if (value instanceof LocalDateTime) { DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSSSSS"); return "DATETIME '" + ((LocalDateTime) value).format(formatter) + "'"; } if (value instanceof Object[]) { return Arrays.stream((Object[]) value) .map(SparkFilterUtils::compileValue) .collect( Collectors.joining( ", ", Character.toString(arrayStart), Character.toString(arrayEnd))); } return value.toString(); } static String escape(String value) { return value.replace("'", "\\'"); } // Converting BigQuery field name into the quoted field name for BigQuery SQL // foo -> `foo` // foo.bar -> `foo`.`bar` // foo.bar.baz -> `foo`.`bar`.`baz` static String quote(String value) { return value.contains(".") ? Arrays.stream(value.split("\\.")).collect(Collectors.joining("`.`", "`", "`")) : "`" + value + "`"; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SupportedCustomDataType.java ================================================ /* * Copyright 2020 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.common.base.Preconditions; import java.util.Optional; import java.util.stream.Stream; import org.apache.spark.ml.linalg.SQLDataTypes; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.DataType; import org.apache.spark.sql.types.UserDefinedType; public enum SupportedCustomDataType { SPARK_ML_VECTOR("vector", SQLDataTypes.VectorType()), SPARK_ML_MATRIX("matrix", SQLDataTypes.MatrixType()); private final String typeMarker; private final UserDefinedType sparkDataType; SupportedCustomDataType(String typeMarker, DataType sparkDataType) { this.typeMarker = "{spark.type=" + typeMarker + "}"; this.sparkDataType = (UserDefinedType) sparkDataType; } public UserDefinedType getSparkDataType() { return sparkDataType; } public String getTypeMarker() { return typeMarker; } public DataType getSqlType() { return sparkDataType.sqlType(); } public InternalRow serialize(Object obj) { return (InternalRow) this.sparkDataType.serialize(obj); } public static Optional of(DataType dataType) { Preconditions.checkNotNull(dataType); return Stream.of(values()) .filter(supportedCustomDataType -> supportedCustomDataType.sparkDataType.equals(dataType)) .findFirst(); } public static Optional forDescription(String description) { Preconditions.checkNotNull(description, "description cannot be null"); return Stream.of(values()) .filter(dataType -> description.endsWith(dataType.typeMarker)) .findFirst(); } public static DataType toSqlType(DataType dataType) { return SupportedCustomDataType.of(dataType) .map(SupportedCustomDataType::getSqlType) .orElse(dataType); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SupportsQueryPushdown.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory; import java.util.Optional; public interface SupportsQueryPushdown { BigQueryRDDFactory getBigQueryRDDFactory(); // Spark 3.1 DataSourceV2 connector does not create a Filter node in the logical plan. Instead, // we get all the filters from the ScanBuilder Optional getPushdownFilters(); } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/TypeConverter.java ================================================ /* * Copyright 2023 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.protobuf.DescriptorProtos; import org.apache.spark.sql.types.DataType; public interface TypeConverter { DataType toSparkType(LegacySQLTypeName bigQueryType); LegacySQLTypeName toBigQueryType(DataType sparkType); DescriptorProtos.FieldDescriptorProto.Type toProtoFieldType(DataType sparkType); boolean supportsBigQueryType(LegacySQLTypeName bigQueryType); boolean supportsSparkType(DataType sparkType); T sparkToProtoValue(Object sparkValue); } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/BigQueryPartition.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.direct; import org.apache.spark.Partition; public class BigQueryPartition implements Partition { private final String stream; private final int index; public BigQueryPartition(String stream, int index) { this.stream = stream; this.index = index; } public String getStream() { return stream; } @Override public int index() { return index; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/BigQueryRDDContext.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.direct; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import com.google.cloud.bigquery.connector.common.BigQueryTracerFactory; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.bigquery.connector.common.ReadRowsHelper; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.cloud.bigquery.storage.v1.ReadRowsRequest; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.cloud.spark.bigquery.InternalRowIterator; import com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.metrics.SparkMetricsSource; import com.google.common.base.Joiner; import java.io.Serializable; import java.util.Arrays; import java.util.Iterator; import java.util.List; import java.util.Optional; import org.apache.spark.InterruptibleIterator; import org.apache.spark.Partition; import org.apache.spark.SparkEnv; import org.apache.spark.TaskContext; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; class BigQueryRDDContext implements Serializable { private static long serialVersionUID = -2219993393692435055L; private final Partition[] partitions; private final ReadSession readSession; private final String[] columnsInOrder; private final Schema bqSchema; private final SparkBigQueryConfig options; private final BigQueryClientFactory bigQueryClientFactory; private final BigQueryTracerFactory bigQueryTracerFactory; private List streamNames; public BigQueryRDDContext( Partition[] parts, ReadSession readSession, Schema bqSchema, String[] columnsInOrder, SparkBigQueryConfig options, BigQueryClientFactory bigQueryClientFactory, BigQueryTracerFactory bigQueryTracerFactory) { this.partitions = parts; this.readSession = readSession; this.columnsInOrder = columnsInOrder; this.bigQueryClientFactory = bigQueryClientFactory; this.bigQueryTracerFactory = bigQueryTracerFactory; this.options = options; this.bqSchema = bqSchema; this.streamNames = BigQueryUtil.getStreamNames(readSession); } public scala.collection.Iterator compute(Partition split, TaskContext context) { BigQueryPartition bigQueryPartition = (BigQueryPartition) split; SparkMetricsSource sparkMetricsSource = new SparkMetricsSource(); SparkEnv.get().metricsSystem().registerSource(sparkMetricsSource); // Read session metrics are not supported for dsv1 BigQueryStorageReadRowsTracer tracer = bigQueryTracerFactory.newReadRowsTracer( Joiner.on(",").join(streamNames), sparkMetricsSource, Optional.empty()); ReadRowsRequest.Builder request = ReadRowsRequest.newBuilder().setReadStream(bigQueryPartition.getStream()); ReadRowsHelper readRowsHelper = new ReadRowsHelper( bigQueryClientFactory, request, options.toReadSessionCreatorConfig().toReadRowsHelperOptions(), Optional.of(tracer)); Iterator readRowsResponseIterator = readRowsHelper.readRows(); StructType schema = options .getSchema() .orElse( SchemaConverters.from(SchemaConvertersConfiguration.from(options)) .toSpark(bqSchema)); ReadRowsResponseToInternalRowIteratorConverter converter; if (options.getReadDataFormat().equals(DataFormat.AVRO)) { converter = ReadRowsResponseToInternalRowIteratorConverter.avro( bqSchema, Arrays.asList(columnsInOrder), readSession.getAvroSchema().getSchema(), Optional.of(schema), Optional.of(tracer), SchemaConvertersConfiguration.from(options), options.getResponseCompressionCodec()); } else { converter = ReadRowsResponseToInternalRowIteratorConverter.arrow( Arrays.asList(columnsInOrder), readSession.getArrowSchema().getSerializedSchema(), Optional.of(schema), Optional.of(tracer), options.getResponseCompressionCodec()); } return new InterruptibleIterator( context, new ScalaIterator( new InternalRowIterator(readRowsResponseIterator, converter, readRowsHelper, tracer))); } public Partition[] getPartitions() { return partitions; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/BigQueryRDDFactory.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.direct; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryConnectorException; import com.google.cloud.bigquery.connector.common.BigQueryTracerFactory; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.bigquery.connector.common.ParameterMode; import com.google.cloud.bigquery.connector.common.QueryParameterHelper; import com.google.cloud.bigquery.connector.common.ReadSessionCreator; import com.google.cloud.bigquery.connector.common.ReadSessionResponse; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.common.annotations.VisibleForTesting; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Streams; import java.lang.reflect.Constructor; import java.util.List; import java.util.Set; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.spark.Partition; import org.apache.spark.SparkContext; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.catalyst.InternalRow; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Wrapper class for generating BigQueryRDD. Extracted this logic out so that we can reuse it from * 1) Dsv1 buildScan 2) Dsv1 pushdown functionality 3) Dsv2 pushdown functionality */ public class BigQueryRDDFactory { private static final Logger log = LoggerFactory.getLogger(BigQueryRDDFactory.class); private static final String QUERY_JOB_LABEL = "query_source"; private static final String QUERY_PUSHDOWN_JOB_LABEL_VALUE = "spark_query_pushdown"; private final BigQueryClient bigQueryClient; private final SparkBigQueryConfig options; private final BigQueryClientFactory bigQueryReadClientFactory; private final BigQueryTracerFactory bigQueryTracerFactory; private final SQLContext sqlContext; public BigQueryRDDFactory( BigQueryClient bigQueryClient, BigQueryClientFactory bigQueryReadClientFactory, BigQueryTracerFactory bigQueryTracerFactory, SparkBigQueryConfig options, SQLContext sqlContext) { this.bigQueryClient = bigQueryClient; this.options = options; this.bigQueryReadClientFactory = bigQueryReadClientFactory; this.bigQueryTracerFactory = bigQueryTracerFactory; this.sqlContext = sqlContext; } /** * Creates RDD from the SQL string that is passed in. This functionality is invoked from the query * pushdown module */ public RDD buildScanFromSQL(String sql) { log.info("Materializing the following sql query to a BigQuery table: {}", sql); TableInfo actualTable = bigQueryClient.materializeQueryToTable( sql, options.getMaterializationExpirationTimeInMinutes(), // Label to add to Query Job indicating that it was invoked as part of query pushdown ImmutableMap.builder() .put(QUERY_JOB_LABEL, QUERY_PUSHDOWN_JOB_LABEL_VALUE) .build(), new QueryParameterHelper(ParameterMode.NONE, null, null)); TableDefinition actualTableDefinition = actualTable.getDefinition(); // We do require requiredColumns to be passed in for pushdown. If we don't, an // ArrayIndexOutOfBounds // exception is thrown List requiredColumns = actualTableDefinition.getSchema().getFields().stream() .map(Field::getName) .collect(Collectors.toList()); log.info( "Querying table {}, requiredColumns=[{}]", actualTable.getTableId().getProject() + ":" + actualTable.getTableId().getDataset() + ":" + actualTable.getTableId().getTable(), requiredColumns.toString()); ReadSessionCreator readSessionCreator = new ReadSessionCreator( options.toReadSessionCreatorConfig(), bigQueryClient, bigQueryReadClientFactory); return (RDD) createRddFromTable( actualTable.getTableId(), readSessionCreator, requiredColumns.toArray(new String[0]), ""); } // Creates BigQueryRDD from the BigQuery table that is passed in. Note that we return RDD // instead of BigQueryRDD or RDD. This is because the casting rules in Java are a lot // stricter than Java due to which we cannot go from RDD to RDD public RDD createRddFromTable( TableId tableId, ReadSessionCreator readSessionCreator, String[] requiredColumns, String filter) { ReadSessionResponse readSessionResponse = readSessionCreator.create( tableId, ImmutableList.copyOf(requiredColumns), BigQueryUtil.emptyIfNeeded(filter)); ReadSession readSession = readSessionResponse.getReadSession(); TableInfo actualTable = readSessionResponse.getReadTableInfo(); List partitions = Streams.mapWithIndex( readSession.getStreamsList().stream(), (readStream, index) -> new BigQueryPartition(readStream.getName(), Math.toIntExact(index))) .collect(Collectors.toList()); log.info( "Created read session for table '{}': {}", BigQueryUtil.friendlyTableName(tableId), readSession.getName()); Set requiredColumnSet = Stream.of(requiredColumns).collect(Collectors.toSet()); Schema prunedSchema = Schema.of( SchemaConverters.from(SchemaConvertersConfiguration.from(options)) .getSchemaWithPseudoColumns(actualTable).getFields().stream() .filter(f -> requiredColumnSet.contains(f.getName())) .collect(Collectors.toList())); return createRDD( sqlContext, partitions.toArray(new BigQueryPartition[0]), readSession, prunedSchema, requiredColumns, options, bigQueryReadClientFactory, bigQueryTracerFactory); } // Moved from BigQueryRDD.scanTable @VisibleForTesting RDD createRDD( SQLContext sqlContext, Partition[] partitions, ReadSession readSession, Schema bqSchema, String[] columnsInOrder, SparkBigQueryConfig options, BigQueryClientFactory bigQueryClientFactory, BigQueryTracerFactory bigQueryTracerFactory) { // Unfortunately we need to use reflection here due to a cyclic dependency issue, and the fact // that RDD constructor dependencies are different between Scala 2.12 and Scala 2.13. In Scala // 2.13 `scala.collection.Seq` is mapped to `scala.collection.immutable.Seq` and this is why we // need two classes each compiled against different Scala version. // // The BigQueryRDD implementations have a compilation dependency on BigQueryPartition (of this // project), while the BigQueryRDDFactory need to initialize them, so we have a cyclic // dependency. In order to solve it, we use reflection to dynamically load the appropriate // BigQueryRDD version. String bigQueryRDDClassName = "com.google.cloud.spark.bigquery.direct.Scala213BigQueryRDD"; String scalaVersion = scala.util.Properties.versionNumberString(); if (scalaVersion.compareTo("2.13") < 0) { // Run uses Scala 2.11/2.12 bigQueryRDDClassName = "com.google.cloud.spark.bigquery.direct.PreScala213BigQueryRDD"; } try { Class> clazz = (Class>) Class.forName(bigQueryRDDClassName); Constructor> constructor = clazz.getConstructor(SparkContext.class, BigQueryRDDContext.class); RDD bigQueryRDD = constructor.newInstance( sqlContext.sparkContext(), new BigQueryRDDContext( partitions, readSession, bqSchema, columnsInOrder, options, bigQueryClientFactory, bigQueryTracerFactory)); return bigQueryRDD; } catch (Exception e) { throw new BigQueryConnectorException( String.format( "Could not initialize a BigQuery RDD class of type [%s}", bigQueryRDDClassName), e); } } public long getNumBytes(TableDefinition tableDefinition) { TableDefinition.Type tableType = tableDefinition.getType(); if (TableDefinition.Type.EXTERNAL == tableType || (options.isViewsEnabled() && (TableDefinition.Type.VIEW == tableType || TableDefinition.Type.MATERIALIZED_VIEW == tableType))) { return sqlContext.sparkSession().sessionState().conf().defaultSizeInBytes(); } else { StandardTableDefinition standardTableDefinition = (StandardTableDefinition) tableDefinition; return standardTableDefinition.getNumBytes(); } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/DirectBigQueryRelation.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.direct; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryTracerFactory; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.bigquery.connector.common.ReadSessionCreator; import com.google.cloud.spark.bigquery.BigQueryRelation; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.SparkFilterUtils; import com.google.cloud.spark.bigquery.write.BigQueryInsertableRelationBase; import com.google.cloud.spark.bigquery.write.CreatableRelationProviderHelper; import com.google.common.collect.ImmutableList; import com.google.common.collect.Iterables; import java.io.Serializable; import java.util.Arrays; import java.util.Objects; import java.util.Optional; import java.util.stream.Collectors; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.sources.Filter; import org.apache.spark.sql.sources.InsertableRelation; import org.apache.spark.sql.sources.PrunedFilteredScan; import org.apache.spark.sql.sources.PrunedScan; import org.apache.spark.sql.sources.TableScan; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import scala.Function1; import scala.runtime.AbstractFunction1; public class DirectBigQueryRelation extends BigQueryRelation implements TableScan, PrunedScan, PrunedFilteredScan, InsertableRelation { private final SparkBigQueryConfig options; private final TableInfo table; private final BigQueryClient bigQueryClient; private final BigQueryClientFactory bigQueryReadClientFactory; private final BigQueryTracerFactory bigQueryTracerFactory; private final SQLContext sqlContext; private final TableDefinition defaultTableDefinition; private final BigQueryRDDFactory bigQueryRDDFactory; private String compiledFilter = ""; public static int emptyRowRDDsCreated = 0; private static final Logger log = LoggerFactory.getLogger(DirectBigQueryRelation.class); public DirectBigQueryRelation( SparkBigQueryConfig options, TableInfo table, BigQueryClient bigQueryClient, BigQueryClientFactory bigQueryReadClientFactory, BigQueryTracerFactory bigQueryTracerFactory, SQLContext sqlContext) { super(options, table, sqlContext); this.options = options; this.table = table; this.bigQueryClient = bigQueryClient; this.bigQueryReadClientFactory = bigQueryReadClientFactory; this.bigQueryTracerFactory = bigQueryTracerFactory; this.sqlContext = sqlContext; this.defaultTableDefinition = table.getDefinition(); this.bigQueryRDDFactory = new BigQueryRDDFactory( bigQueryClient, bigQueryReadClientFactory, bigQueryTracerFactory, options, sqlContext); } @Override public boolean needConversion() { return false; } @Override public long sizeInBytes() { return bigQueryRDDFactory.getNumBytes(defaultTableDefinition); } @Override public RDD buildScan() { return buildScan(schema().fieldNames()); } @Override public RDD buildScan(String[] requiredColumns) { return buildScan(requiredColumns, new Filter[0]); } @Override public RDD buildScan(String[] requiredColumns, Filter[] filters) { compiledFilter = getCompiledFilter(filters); log.info( "|Querying table {}, parameters sent from Spark:" + "|requiredColumns=[{}]," + "|filter=[{}]", getTableNameForLogging(), String.join(",", requiredColumns), compiledFilter); ReadSessionCreator readSessionCreator = new ReadSessionCreator( options.toReadSessionCreatorConfig(), bigQueryClient, bigQueryReadClientFactory); if (options.isOptimizedEmptyProjection() && requiredColumns.length == 0) { TableInfo actualTable = readSessionCreator.getActualTable( table, ImmutableList.copyOf(requiredColumns), BigQueryUtil.emptyIfNeeded(compiledFilter)); return (RDD) generateEmptyRowRDD( actualTable, readSessionCreator.isInputTableAView(table) ? "" : compiledFilter); } else if (requiredColumns.length == 0) { log.debug("Not using optimized empty projection"); } return (RDD) bigQueryRDDFactory.createRddFromTable( getTableId(), readSessionCreator, requiredColumns, compiledFilter); } @Override public Filter[] unhandledFilters(Filter[] filters) { // If a manual filter has been specified tell Spark they are all unhandled if (options.getFilter().isPresent()) { return filters; } log.debug( "unhandledFilters: {}", Arrays.stream(filters).map(f -> f.toString()).collect(Collectors.joining(" "))); return Iterables.toArray( SparkFilterUtils.unhandledFilters( options.getPushAllFilters(), options.getReadDataFormat(), ImmutableList.copyOf(filters)), Filter.class); } public BigQueryRDDFactory getBigQueryRDDFactory() { return this.bigQueryRDDFactory; } // VisibleForTesting String getCompiledFilter(Filter[] filters) { if (options.isCombinePushedDownFilters()) { // new behaviour, fixing // https://github.com/GoogleCloudPlatform/spark-bigquery-connector/issues/74 return SparkFilterUtils.getCompiledFilter( options.getPushAllFilters(), options.getReadDataFormat(), options.getFilter(), filters); } else { // old behaviour, kept for backward compatibility // If a manual filter has been specified do not push down anything. return options .getFilter() .orElse( SparkFilterUtils.compileFilters( SparkFilterUtils.handledFilters( options.getPushAllFilters(), options.getReadDataFormat(), ImmutableList.copyOf(filters)))); } } private RDD generateEmptyRowRDD(TableInfo tableInfo, String filter) { emptyRowRDDsCreated += 1; Optional optionalFilter = (filter.length() == 0) ? Optional.empty() : Optional.of(filter); long numberOfRows = bigQueryClient.calculateTableSize(tableInfo, optionalFilter); Function1 objectToInternalRowConverter = new ObjectToInternalRowConverter(); log.info("Used optimized BQ count(*) path. Count: {}", numberOfRows); return sqlContext .sparkContext() .range(0, numberOfRows, 1, sqlContext.sparkContext().defaultParallelism()) .map( objectToInternalRowConverter, scala.reflect.ClassTag$.MODULE$.apply(InternalRow.class)); } @Override public void insert(Dataset data, boolean overwrite) { SaveMode mode = overwrite ? SaveMode.Overwrite : SaveMode.Append; BigQueryInsertableRelationBase bigQueryInsertableRelation = new CreatableRelationProviderHelper() .createBigQueryInsertableRelation(sqlContext, data.schema(), mode, options); bigQueryInsertableRelation.insert(data, overwrite); } private static class ObjectToInternalRowConverter extends AbstractFunction1 implements Serializable { private static final long serialVersionUID = 8504174848470344221L; @Override public InternalRow apply(Object v1) { return InternalRow.empty(); } } static String toSqlTableReference(TableId tableId) { return tableId.getProject() + '.' + tableId.getDataset() + '.' + tableId.getTable(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DirectBigQueryRelation that = (DirectBigQueryRelation) o; return getTableId().equals(that.getTableId()) && schema().equals(that.schema()) && // compare Spark schemas to ignore field ids compiledFilter.equals(that.compiledFilter); } @Override public int hashCode() { return Objects.hash(getTableId(), schema(), compiledFilter); } @Override public String toString() { return "DirectBigQueryRelation[" + getTableNameForLogging() + "]"; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/Scala213BigQueryRDD.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.direct; import org.apache.spark.Dependency; import org.apache.spark.Partition; import org.apache.spark.SparkContext; import org.apache.spark.TaskContext; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.catalyst.InternalRow; import scala.collection.immutable.Seq; import scala.collection.immutable.Seq$; // This method relies on the scala.Seq alias, which is different in Scala 2.12 and 2.13. In Scala // 2.12 scala.Seq points to scala.collection.Seq whereas in Scala 2.13 it points to // scala.collection.immutable.Seq. class Scala213BigQueryRDD extends RDD { // Added suffix so that CPD wouldn't mark as duplicate private final BigQueryRDDContext ctx213; public Scala213BigQueryRDD(SparkContext sparkContext, BigQueryRDDContext ctx) { super( sparkContext, (Seq>) Seq$.MODULE$.>newBuilder().result(), scala.reflect.ClassTag$.MODULE$.apply(InternalRow.class)); this.ctx213 = ctx; } @Override public scala.collection.Iterator compute(Partition split, TaskContext context) { return ctx213.compute(split, context); } @Override public Partition[] getPartitions() { return ctx213.getPartitions(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/ScalaIterator.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.direct; import java.util.Iterator; import scala.collection.AbstractIterator; // Scala version agnostic conversion class ScalaIterator extends AbstractIterator { private Iterator underlying; public ScalaIterator(Iterator underlying) { this.underlying = underlying; } @Override public boolean hasNext() { return underlying.hasNext(); } @Override public T next() { return underlying.next(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/events/BigQueryJobCompletedEvent.java ================================================ /* * Copyright 2023 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.events; import com.google.cloud.bigquery.JobConfiguration; import com.google.cloud.bigquery.JobId; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.JobStatus; import com.google.common.base.Preconditions; import java.io.Serializable; import java.util.Optional; import org.apache.spark.scheduler.SparkListenerEvent; public abstract class BigQueryJobCompletedEvent implements SparkListenerEvent, Serializable { private static final long serialVersionUID = 5831270570484516631L; protected final JobInfo jobInfo; protected BigQueryJobCompletedEvent(JobInfo jobInfo, JobConfiguration.Type expectedType) { Preconditions.checkArgument( expectedType.equals(jobInfo.getConfiguration().getType()), "Created event of the wrong type, expected to be " + expectedType + ", got " + jobInfo.getConfiguration().getType()); this.jobInfo = jobInfo; } public static Optional from(JobInfo completedJob) { switch (completedJob.getConfiguration().getType()) { case QUERY: return Optional.of(new QueryJobCompletedEvent(completedJob)); case LOAD: return Optional.of(new LoadJobCompletedEvent(completedJob)); default: return Optional.empty(); } } public JobInfo getJobInfo() { return jobInfo; } public String getEtag() { return jobInfo.getEtag(); } public String getGeneratedId() { return jobInfo.getGeneratedId(); } public JobId getJobId() { return jobInfo.getJobId(); } public String getSelfLink() { return jobInfo.getSelfLink(); } public JobStatus getStatus() { return jobInfo.getStatus(); } public String getUserEmail() { return jobInfo.getUserEmail(); } @Override public boolean logEvent() { return false; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/events/LoadJobCompletedEvent.java ================================================ /* * Copyright 2023 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.events; import com.google.cloud.bigquery.JobConfiguration.Type; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.JobStatistics; import com.google.cloud.bigquery.LoadJobConfiguration; public class LoadJobCompletedEvent extends BigQueryJobCompletedEvent { public LoadJobCompletedEvent(JobInfo jobInfo) { super(jobInfo, Type.LOAD); } public LoadJobConfiguration getLoadJobConfiguration() { return jobInfo.getConfiguration(); } public JobStatistics.LoadStatistics getLoadJobStatistics() { return jobInfo.getStatistics(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/events/QueryJobCompletedEvent.java ================================================ /* * Copyright 2023 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.events; import com.google.cloud.bigquery.JobConfiguration.Type; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.JobStatistics; import com.google.cloud.bigquery.QueryJobConfiguration; public class QueryJobCompletedEvent extends BigQueryJobCompletedEvent { public QueryJobCompletedEvent(JobInfo jobInfo) { super(jobInfo, Type.QUERY); } public QueryJobConfiguration getQueryJobConfiguration() { return jobInfo.getConfiguration(); } public JobStatistics.QueryStatistics getQueryJobStatistics() { return jobInfo.getStatistics(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/examples/JavaShakespeare.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.examples; import java.io.PrintStream; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSession; public class JavaShakespeare { public static void main(String[] args) { SparkSession spark = SparkSession.builder().appName("spark-bigquery-demo").getOrCreate(); String outputBigqueryTable = "wordcount_dataset.wordcount_output"; if (args.length == 1) { outputBigqueryTable = args[0]; } else if (args.length > 1) { usage(); } // Use the Cloud Storage bucket for temporary BigQuery export data used // by the connector. This assumes the Cloud Storage connector for // Hadoop is configured. String bucket = spark.sparkContext().hadoopConfiguration().get("fs.gs.system.bucket"); spark.conf().set("temporaryGcsBucket", bucket); // Load data in from BigQuery. Dataset wordsDF = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .load() .cache(); wordsDF.show(); wordsDF.printSchema(); wordsDF.createOrReplaceTempView("words"); // Perform word count. Dataset wordCountDF = spark.sql("SELECT word, SUM(word_count) AS word_count FROM words GROUP BY word"); wordCountDF.show(); wordCountDF.printSchema(); // Saving the data to BigQuery wordCountDF.write().format("bigquery").option("table", outputBigqueryTable).save(); } private static void usage() { PrintStream out = System.out; out.println("usage: spark [OUTPUT_BIGQUERY_TABLE]"); out.println("[OUTPUT_BIGQUERY_TABLE] Set the output bigquery table to "); out.println(" OUTPUT_BIGQUERY_TABLE. By default the location"); out.println(" is wordcount_dataset.wordcount_output"); System.exit(1); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/metrics/DataOrigin.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.metrics; public enum DataOrigin { NOT_SPECIFIED, TABLE, BIGLAKE, VIEW, QUERY } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/metrics/SparkBigQueryConnectorMetricsUtils.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.metrics; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import java.lang.reflect.Method; import java.util.Optional; import org.apache.spark.SparkContext; import org.apache.spark.scheduler.SparkListenerEvent; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class SparkBigQueryConnectorMetricsUtils { private static final Logger logger = LoggerFactory.getLogger(SparkBigQueryConnectorMetricsUtils.class); public static void postInputFormatEvent(SparkContext sparkContext) { try { Class eventClass = Class.forName("com.google.cloud.spark.events.InputFormatEvent"); sparkContext .listenerBus() .post( (SparkListenerEvent) eventClass.getConstructor(String.class, long.class).newInstance("bigquery", -1L)); } catch (ReflectiveOperationException ignored) { logger.debug("spark.events.InputFormatEvent library not in class path"); } } public static void postConnectorVersion(SparkContext sparkContext, String connectorVersion) { try { Class eventBuilderClass = Class.forName( "com.google.cloud.spark.events.BigQueryConnectorVersionEvent$BigQueryConnectorVersionEventBuilder"); Method buildMethod = eventBuilderClass.getDeclaredMethod("build"); sparkContext .listenerBus() .post( (SparkListenerEvent) buildMethod.invoke( eventBuilderClass .getDeclaredConstructor(String.class) .newInstance(connectorVersion))); } catch (ReflectiveOperationException ignored) { logger.debug("spark.events.BigQueryConnectorVersionEvent library not in class path"); } } public static void postWriteSessionMetrics( long timestamp, SparkBigQueryConfig.WriteMethod writeMethod, long bytesWritten, Optional intermediateDataFormat, SparkContext sparkContext) { try { // Reflection is used here to load classes in spark events jar which is google // internal and not available during complie time. Class eventBuilderClass = Class.forName( "com.google.cloud.spark.events.SparkBigQueryConnectorWriteEvent$SparkBigQueryConnectorWriteEventBuilder"); Object builderInstance = eventBuilderClass.getDeclaredConstructor(long.class).newInstance(timestamp); eventBuilderClass .getMethod("setBytesWritten", long.class) .invoke(builderInstance, bytesWritten); if (intermediateDataFormat.isPresent()) { Class dataFormatEnum = Class.forName("com.google.cloud.spark.events.DataFormat"); Object[] dataFormatEnumConstants = dataFormatEnum.getEnumConstants(); Object generatedDataFormatEnumValue = dataFormatEnumConstants[0]; for (Object constant : dataFormatEnumConstants) { Method nameMethod = constant.getClass().getMethod("name"); String name = (String) nameMethod.invoke(constant); if (name.equalsIgnoreCase(intermediateDataFormat.get().getDataSource())) { generatedDataFormatEnumValue = constant; break; } } eventBuilderClass .getMethod("setIntermediateDataFormat", dataFormatEnum) .invoke(builderInstance, generatedDataFormatEnumValue); } Class dataWriteMethodEnum = Class.forName("com.google.cloud.spark.events.DataWriteMethod"); Object[] dataWriteMethodConstants = dataWriteMethodEnum.getEnumConstants(); Object generatedDataWriteMethodEnumValue = dataWriteMethodConstants[0]; for (Object constant : dataWriteMethodConstants) { Method nameMethod = constant.getClass().getMethod("name"); String name = (String) nameMethod.invoke(constant); if (name.equalsIgnoreCase(writeMethod.toString())) { generatedDataWriteMethodEnumValue = constant; break; } } eventBuilderClass .getMethod("setWriteMethod", dataWriteMethodEnum) .invoke(builderInstance, generatedDataWriteMethodEnumValue); Method buildMethod = eventBuilderClass.getDeclaredMethod("build"); sparkContext.listenerBus().post((SparkListenerEvent) buildMethod.invoke(builderInstance)); } catch (ReflectiveOperationException ex) { logger.debug("spark.events.SparkBigQueryConnectorWriteEvent library not in class path"); } } public static String getAccumulatorNameForMetric(String metricName, String sessionName) { return String.format("%s-%s", sessionName, metricName); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/metrics/SparkBigQueryReadSessionMetrics.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.metrics; import com.google.cloud.bigquery.connector.common.ReadSessionMetrics; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.common.base.Objects; import java.io.Serializable; import java.lang.reflect.Method; import org.apache.spark.scheduler.SparkListener; import org.apache.spark.scheduler.SparkListenerEvent; import org.apache.spark.scheduler.SparkListenerJobEnd; import org.apache.spark.sql.SparkSession; import org.apache.spark.util.LongAccumulator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class SparkBigQueryReadSessionMetrics extends SparkListener implements Serializable, ReadSessionMetrics { private static final String BYTES_READ = "bytesRead"; private static final String ROWS_READ = "rowsRead"; private static final String PARSE_TIME = "parseTime"; private static final String SCAN_TIME = "scanTime"; private static final long serialVersionUID = -8188694570364436143L; private final LongAccumulator bytesReadAccumulator; public final LongAccumulator rowsReadAccumulator; private final LongAccumulator scanTimeAccumulator; private final LongAccumulator parseTimeAccumulator; private final String sessionId; private final long timestamp; private final DataFormat readDataFormat; private final DataOrigin dataOrigin; public long numReadStreams; private static final Logger logger = LoggerFactory.getLogger(SparkBigQueryReadSessionMetrics.class); private SparkBigQueryReadSessionMetrics( SparkSession sparkSession, String sessionName, long timestamp, DataFormat readDataFormat, DataOrigin dataOrigin, long numReadStreams) { this.sessionId = sessionName; this.timestamp = timestamp; this.readDataFormat = readDataFormat; this.dataOrigin = dataOrigin; this.numReadStreams = numReadStreams; this.bytesReadAccumulator = sparkSession .sparkContext() .longAccumulator( SparkBigQueryConnectorMetricsUtils.getAccumulatorNameForMetric( BYTES_READ, sessionName)); this.rowsReadAccumulator = sparkSession .sparkContext() .longAccumulator( SparkBigQueryConnectorMetricsUtils.getAccumulatorNameForMetric( ROWS_READ, sessionName)); this.scanTimeAccumulator = sparkSession .sparkContext() .longAccumulator( SparkBigQueryConnectorMetricsUtils.getAccumulatorNameForMetric( SCAN_TIME, sessionName)); this.parseTimeAccumulator = sparkSession .sparkContext() .longAccumulator( SparkBigQueryConnectorMetricsUtils.getAccumulatorNameForMetric( PARSE_TIME, sessionName)); } @Override public int hashCode() { return Objects.hashCode( this.sessionId, this.bytesReadAccumulator.id(), this.rowsReadAccumulator.id(), this.parseTimeAccumulator.id(), this.scanTimeAccumulator.id()); } @Override public boolean equals(Object o) { if (o instanceof SparkBigQueryReadSessionMetrics) { SparkBigQueryReadSessionMetrics listenerObject = (SparkBigQueryReadSessionMetrics) o; return listenerObject.sessionId.equals(this.sessionId) && listenerObject.bytesReadAccumulator.id() == this.bytesReadAccumulator.id() && listenerObject.rowsReadAccumulator.id() == this.rowsReadAccumulator.id() && listenerObject.scanTimeAccumulator.id() == this.scanTimeAccumulator.id() && listenerObject.parseTimeAccumulator.id() == this.parseTimeAccumulator.id(); } return false; } public static SparkBigQueryReadSessionMetrics from( SparkSession sparkSession, ReadSession readSession, long timestamp, com.google.cloud.bigquery.storage.v1.DataFormat readDataFormat, DataOrigin dataOrigin, long numReadStreams) { return new SparkBigQueryReadSessionMetrics( sparkSession, readSession.getName(), timestamp, readDataFormat, dataOrigin, numReadStreams); } public void incrementBytesReadAccumulator(long value) { bytesReadAccumulator.add(value); } public void incrementRowsReadAccumulator(long value) { rowsReadAccumulator.add(value); } public void incrementScanTimeAccumulator(long value) { scanTimeAccumulator.add(value); } public void incrementParseTimeAccumulator(long value) { parseTimeAccumulator.add(value); } public long getBytesRead() { return bytesReadAccumulator.value(); } public long getRowsRead() { return rowsReadAccumulator.value(); } public long getScanTime() { return scanTimeAccumulator.value(); } public long getParseTime() { return parseTimeAccumulator.value(); } public long getNumReadStreams() { return numReadStreams; } public LongAccumulator getBytesReadAccumulator() { return bytesReadAccumulator; } public LongAccumulator getRowsReadAccumulator() { return rowsReadAccumulator; } public LongAccumulator getParseTimeAccumulator() { return parseTimeAccumulator; } public LongAccumulator getScanTimeAccumulator() { return scanTimeAccumulator; } @Override public void onJobEnd(SparkListenerJobEnd jobEnd) { try { Class eventBuilderClass = Class.forName( "com.google.cloud.spark.events.SparkBigQueryConnectorReadSessionEvent$SparkBigQueryConnectorReadSessionEventBuilder"); Object builderInstance = eventBuilderClass.getDeclaredConstructor(long.class).newInstance(timestamp); eventBuilderClass .getMethod("setBytesRead", long.class) .invoke(builderInstance, getBytesRead()); eventBuilderClass .getMethod("setNumberOfReadStreams", long.class) .invoke(builderInstance, numReadStreams); eventBuilderClass .getMethod("setParseTimeInMs", long.class) .invoke(builderInstance, getParseTime()); eventBuilderClass .getMethod("setScanTimeInMs", long.class) .invoke(builderInstance, getScanTime()); Class dataFormatEnum = Class.forName("com.google.cloud.spark.events.DataFormat"); Object[] dataFormatEnumConstants = dataFormatEnum.getEnumConstants(); Object generatedDataFormatEnumValue = dataFormatEnumConstants[0]; for (Object constant : dataFormatEnumConstants) { Method nameMethod = constant.getClass().getMethod("name"); String name = (String) nameMethod.invoke(constant); if (name.equals(readDataFormat.toString())) { generatedDataFormatEnumValue = constant; break; } } eventBuilderClass .getMethod("setReadDataFormat", dataFormatEnum) .invoke(builderInstance, generatedDataFormatEnumValue); Class dataOriginEnum = Class.forName("com.google.cloud.spark.events.DataOrigin"); Object[] dataOriginEnumConstants = dataOriginEnum.getEnumConstants(); Object generatedDataOriginEnumValue = dataOriginEnumConstants[0]; for (Object constant : dataOriginEnumConstants) { Method nameMethod = constant.getClass().getMethod("name"); String name = (String) nameMethod.invoke(constant); if (name.equals(dataOrigin.toString())) { generatedDataOriginEnumValue = constant; break; } } eventBuilderClass .getMethod("setDataOrigin", dataOriginEnum) .invoke(builderInstance, generatedDataOriginEnumValue); Method buildMethod = eventBuilderClass.getDeclaredMethod("build"); SparkSession.active() .sparkContext() .listenerBus() .post((SparkListenerEvent) buildMethod.invoke(builderInstance)); SparkSession.active().sparkContext().removeSparkListener(this); } catch (ReflectiveOperationException ex) { logger.debug("spark.events.SparkBigQueryConnectorReadSessionEvent library not in class path"); } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/metrics/SparkMetricsSource.java ================================================ package com.google.cloud.spark.bigquery.metrics; import com.codahale.metrics.Counter; import com.codahale.metrics.MetricRegistry; import com.codahale.metrics.Timer; import com.google.cloud.bigquery.connector.common.BigQueryMetrics; import java.io.Serializable; import java.util.concurrent.TimeUnit; import org.apache.spark.metrics.source.Source; public class SparkMetricsSource implements Source, Serializable, BigQueryMetrics { private static final long serialVersionUID = -6847838588830697961L; private transient MetricRegistry registry; private transient Timer parseTime; private transient Timer timeInSpark; private transient Counter bytesRead; private transient Counter rowsRead; private transient Timer scanTime; public SparkMetricsSource() { registry = new MetricRegistry(); parseTime = new Timer(); timeInSpark = new Timer(); bytesRead = new Counter(); rowsRead = new Counter(); scanTime = new Timer(); registry.register("parseTime", parseTime); registry.register("timeInSpark", timeInSpark); registry.register("bytesRead", bytesRead); registry.register("rowsRead", rowsRead); registry.register("scanTime", scanTime); } @Override public String sourceName() { return "bigquery-metrics-source"; } @Override public MetricRegistry metricRegistry() { return registry; } @Override public void updateParseTime(long val) { parseTime.update(val, TimeUnit.MILLISECONDS); } @Override public void updateTimeInSpark(long val) { timeInSpark.update(val, TimeUnit.MILLISECONDS); } @Override public void incrementBytesReadCounter(long val) { bytesRead.inc(val); } @Override public void incrementRowsReadCounter(long val) { rowsRead.inc(val); } @Override public void updateScanTime(long val) { scanTime.update(val, TimeUnit.MILLISECONDS); } public Timer getParseTime() { return this.parseTime; } public Timer getTimeInSpark() { return this.timeInSpark; } public Timer getScanTime() { return this.scanTime; } public Counter getBytesRead() { return this.bytesRead; } public Counter getRowsRead() { return this.rowsRead; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/pushdowns/SparkBigQueryPushdown.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns; import org.apache.spark.sql.SparkSession; public interface SparkBigQueryPushdown { boolean supportsSparkVersion(String sparkVersion); void enable(SparkSession spark); void disable(SparkSession spark); } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/util/HdfsUtils.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.util; import java.io.IOException; import java.io.UncheckedIOException; import java.util.Iterator; import org.apache.hadoop.fs.RemoteIterator; public class HdfsUtils { /** Converts HDFS RemoteIterator to java.util.Iterator */ public static Iterator toJavaUtilIterator(final RemoteIterator remoteIterator) { return new Iterator() { @Override public boolean hasNext() { try { return remoteIterator.hasNext(); } catch (IOException e) { throw new UncheckedIOException(e); } } @Override public T next() { try { return remoteIterator.next(); } catch (IOException e) { throw new UncheckedIOException(e); } } }; } public static Iterable toJavaUtilIterable(final RemoteIterator remoteIterator) { return () -> toJavaUtilIterator(remoteIterator); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/BigQueryDataSourceWriterInsertableRelation.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryConnectorException; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.write.context.BigQueryDirectDataSourceWriterContext; import com.google.cloud.spark.bigquery.write.context.BigQueryIndirectDataSourceWriterContext; import com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext; import com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext; import com.google.inject.Injector; import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; import org.apache.spark.api.java.JavaRDD; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; public class BigQueryDataSourceWriterInsertableRelation extends BigQueryInsertableRelationBase { private final Injector injector; public BigQueryDataSourceWriterInsertableRelation( BigQueryClient bigQueryClient, SQLContext sqlContext, SparkBigQueryConfig config, Injector injector) { super(bigQueryClient, sqlContext, config); this.injector = injector; } @Override public void insert(Dataset data, boolean overwrite) { logger.debug("Inserting data={}, overwrite={}", data, overwrite); // Creating the context is deferred to here as the direct DataSourceWriterContext creates the // table upon construction, which interferes with teh ErrorIfExists and Ignore save modes. DataSourceWriterContext ctx = null; SparkBigQueryConfig.WriteMethod writeMethod = config.getWriteMethod(); if (writeMethod == SparkBigQueryConfig.WriteMethod.DIRECT) { ctx = injector.getInstance(BigQueryDirectDataSourceWriterContext.class); } else if (writeMethod == SparkBigQueryConfig.WriteMethod.INDIRECT) { ctx = injector.getInstance(BigQueryIndirectDataSourceWriterContext.class); } else { // can't really happen, here to guard from new write methods throw new IllegalArgumentException("Unknown write method " + writeMethod); } // Here we are mimicking the DataSource v2 API behaviour in oder to use the shared code. The // partition handler iterates on each partition separately, invoking the DataWriter interface. // The result of the iteration is a WriterCommitMessageContext which is used to perform the // global commit, or abort if needed. try { JavaRDD rowsRDD = data.toJavaRDD(); int numPartitions = rowsRDD.getNumPartitions(); if (numPartitions == 0) { // The DataFrame is empty, no streams will be generated. We need to create the table if it // does not exist. Schema bigQuerySchema = SchemaConverters.from(SchemaConvertersConfiguration.from(config)) .toBigQuerySchema(data.schema()); bigQueryClient.createTableIfNeeded(getTableId(), bigQuerySchema, config); } else { // Write the data into separate WriteStream (one oer partition, return the // WriterCommitMessageContext containing the stream name. DataSourceWriterContextPartitionHandler partitionHandler = new DataSourceWriterContextPartitionHandler( ctx.createWriterContextFactory(), System.currentTimeMillis()); JavaRDD writerCommitMessagesRDD = rowsRDD.mapPartitionsWithIndex(partitionHandler, false); WriterCommitMessageContext[] writerCommitMessages = writerCommitMessagesRDD.collect().toArray(new WriterCommitMessageContext[0]); if (writerCommitMessages.length == numPartitions) { List errors = Arrays.stream(writerCommitMessages) .filter(msg -> msg.getError().isPresent()) .map(msg -> msg.getError().get()) .collect(Collectors.toList()); if (errors.isEmpty()) { // All is well, let's commit ctx.commit(writerCommitMessages); } else { // oops, has some errors if (errors.size() == 1) { logger.error( "Encountered errors in one partition, aborting the write", errors.get(0)); } else { logger.error( "Encountered errors in " + errors.size() + " partitions, aborting the write. Errors listed below"); int i = 1; for (Exception e : errors) { logger.error("Error #" + i, e); i++; } } throw new BigQueryConnectorException("Write error in partitions.", errors.get(0)); } } else { // missing commit messages, so abort ctx.abort(writerCommitMessages); throw new BigQueryConnectorException( String.format( "It seems that %s out of %s partitions have failed, aborting", numPartitions - writerCommitMessages.length, numPartitions)); } } } catch (Exception e) { ctx.abort(new WriterCommitMessageContext[] {}); throw new BigQueryConnectorException("unexpected issue trying to save " + data, e); } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/BigQueryDeprecatedIndirectInsertableRelation.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SaveMode; /** * The original indirect insertable relation, using Spark's write. Intermediate formats are Parquet, * ORC or Avro. Deprecated in favor of BigQueryDataSourceWriterInsertableRelation. */ public class BigQueryDeprecatedIndirectInsertableRelation extends BigQueryInsertableRelationBase { public BigQueryDeprecatedIndirectInsertableRelation( BigQueryClient bigQueryClient, SQLContext sqlContext, SparkBigQueryConfig config) { super(bigQueryClient, sqlContext, config); } @Override public void insert(Dataset data, boolean overwrite) { logger.debug("Inserting data={}, overwrite={}", data, overwrite); // the helper also supports the v2 api SaveMode saveMode = overwrite ? SaveMode.Overwrite : SaveMode.Append; BigQueryWriteHelper helper = new BigQueryWriteHelper(bigQueryClient, sqlContext, saveMode, config, data, table); helper.writeDataFrameToBigQuery(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/BigQueryInsertableRelationBase.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import java.math.BigInteger; import java.util.Optional; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.sources.BaseRelation; import org.apache.spark.sql.sources.InsertableRelation; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public abstract class BigQueryInsertableRelationBase extends BaseRelation implements InsertableRelation { protected final Logger logger = LoggerFactory.getLogger(getClass()); protected final BigQueryClient bigQueryClient; protected final SQLContext sqlContext; protected final SparkBigQueryConfig config; protected final Optional table; protected BigQueryInsertableRelationBase( BigQueryClient bigQueryClient, SQLContext sqlContext, SparkBigQueryConfig config) { this.bigQueryClient = bigQueryClient; this.sqlContext = sqlContext; this.config = config; this.table = Optional.ofNullable(bigQueryClient.getTable(config.getTableId())); } @Override public SQLContext sqlContext() { return sqlContext; } @Override public StructType schema() { return SchemaConverters.from(SchemaConvertersConfiguration.from(config)) .toSpark(table.get().getDefinition().getSchema()); } /** Does this table exist? */ public boolean exists() { return table.isPresent(); } /** Is this table empty? A none-existing table is considered to be empty */ public boolean isEmpty() { return numberOfRows().map(n -> n.longValue() == 0).orElse(true); } /** Returns the number of rows in the table. If the table does not exist return None */ private Optional numberOfRows() { return table.map(TableInfo::getNumRows); } public TableId getTableId() { return config.getTableId(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/BigQueryWriteHelper.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.FormatOptions; import com.google.cloud.bigquery.Job; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.JobStatistics; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryConnectorException; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.spark.bigquery.PartitionOverwriteMode; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.SparkBigQueryUtil; import com.google.cloud.spark.bigquery.SupportedCustomDataType; import com.google.cloud.spark.bigquery.metrics.SparkBigQueryConnectorMetricsUtils; import com.google.cloud.spark.bigquery.util.HdfsUtils; import com.google.common.collect.Streams; import java.io.IOException; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.function.Function; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.spark.SparkContext; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class BigQueryWriteHelper { private static final Logger logger = LoggerFactory.getLogger(BigQueryWriteHelper.class); private final BigQueryClient bigQueryClient; private final SaveMode saveMode; private final SparkBigQueryConfig config; private final Dataset data; private final Optional tableInfo; private final Configuration conf; private final Path gcsPath; private final Optional createTemporaryPathDeleter; private final Schema tableSchema; private final JobInfo.WriteDisposition writeDisposition; private Optional temporaryTableId = Optional.empty(); private final SparkContext sparkContext; public BigQueryWriteHelper( BigQueryClient bigQueryClient, SQLContext sqlContext, SaveMode saveMode, SparkBigQueryConfig config, Dataset data, Optional tableInfo) { this.bigQueryClient = bigQueryClient; verifySaveMode(saveMode); this.saveMode = saveMode; this.config = config; this.data = data; this.tableInfo = tableInfo; this.conf = sqlContext.sparkContext().hadoopConfiguration(); this.gcsPath = SparkBigQueryUtil.createGcsPath(config, conf, sqlContext.sparkContext().applicationId()); this.createTemporaryPathDeleter = config.getTemporaryGcsBucket().map(unused -> new IntermediateDataCleaner(gcsPath, conf)); Schema schema = SchemaConverters.from(SchemaConvertersConfiguration.from(config)) .toBigQuerySchema(data.schema()); if (tableInfo.isPresent()) { schema = BigQueryUtil.adjustSchemaIfNeeded( schema, tableInfo.get().getDefinition().getSchema(), config .getLoadSchemaUpdateOptions() .contains(JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION)); } this.tableSchema = schema; this.writeDisposition = SparkBigQueryUtil.saveModeToWriteDisposition(saveMode); this.sparkContext = sqlContext.sparkContext(); } public void writeDataFrameToBigQuery() { // If the CreateDisposition is CREATE_NEVER, and the table does not exist, // there's no point in writing the data to GCS in the first place as it going // to file on the BigQuery side. if (config .getCreateDisposition() .map(cd -> !tableExists() && cd == JobInfo.CreateDisposition.CREATE_NEVER) .orElse(false)) { throw new BigQueryConnectorException( String.format( "For table %s Create Disposition is CREATE_NEVER and the table does not exists. Aborting the insert", friendlyTableName())); } try { // based on pmkc's suggestion at https://git.io/JeWRt createTemporaryPathDeleter.ifPresent( cleaner -> Runtime.getRuntime().addShutdownHook(cleaner)); String format = config.getIntermediateFormat().getDataSource(); data.write().format(format).save(gcsPath.toString()); if (writeDisposition == JobInfo.WriteDisposition.WRITE_TRUNCATE && config.getPartitionOverwriteModeValue() == PartitionOverwriteMode.DYNAMIC && bigQueryClient.tableExists(config.getTableId()) && bigQueryClient.isTablePartitioned(config.getTableId())) { temporaryTableId = Optional.of( bigQueryClient .createTempTableAfterCheckingSchema( config.getTableId(), tableSchema, config.getEnableModeCheckForSchemaFields()) .getTableId()); loadDataToBigQuery(); Job queryJob = bigQueryClient.overwriteDestinationWithTemporaryDynamicPartitons( temporaryTableId.get(), config.getTableId()); bigQueryClient.waitForJob(queryJob); } else { loadDataToBigQuery(); } updateMetadataIfNeeded(); } catch (Exception e) { throw new BigQueryConnectorException("Failed to write to BigQuery", e); } finally { cleanTemporaryGcsPathIfNeeded(); } } void loadDataToBigQuery() throws IOException { FileSystem fs = gcsPath.getFileSystem(conf); FormatOptions formatOptions = config.getIntermediateFormat().getFormatOptions(); String suffix = "." + formatOptions.getType().toLowerCase(); List sourceUris = SparkBigQueryUtil.optimizeLoadUriListForSpark( Streams.stream(HdfsUtils.toJavaUtilIterator(fs.listFiles(gcsPath, false))) .map(file -> file.getPath().toString()) .filter(path -> path.toLowerCase().endsWith(suffix)) .collect(Collectors.toList())); // Solving Issue #248 List optimizedSourceUris = SparkBigQueryUtil.optimizeLoadUriListForSpark(sourceUris); JobInfo.WriteDisposition writeDisposition = SparkBigQueryUtil.saveModeToWriteDisposition(saveMode); TableId destinationTableId = temporaryTableId.orElse(config.getTableId()); JobStatistics.LoadStatistics loadStatistics = bigQueryClient.loadDataIntoTable( config, optimizedSourceUris, formatOptions, writeDisposition, Optional.of(tableSchema), destinationTableId); long currentTimeMillis = System.currentTimeMillis(); SparkBigQueryConnectorMetricsUtils.postWriteSessionMetrics( currentTimeMillis, SparkBigQueryConfig.WriteMethod.INDIRECT, loadStatistics.getOutputBytes(), Optional.of(config.getIntermediateFormat()), sparkContext); } String friendlyTableName() { return BigQueryUtil.friendlyTableName(config.getTableId()); } void updateMetadataIfNeeded() { updateTableMetadataIfNeeded(data.schema(), config, bigQueryClient); } public static void updateTableMetadataIfNeeded( StructType sparkSchema, SparkBigQueryConfig config, BigQueryClient bigQueryClient) { Map fieldsToUpdate = Stream.of(sparkSchema.fields()) .filter( field -> { Optional supportedCustomDataType = SupportedCustomDataType.of(field.dataType()); return supportedCustomDataType.isPresent() || SchemaConverters.getDescriptionOrCommentOfField( field, supportedCustomDataType) .isPresent(); }) .collect(Collectors.toMap(StructField::name, Function.identity())); if (!fieldsToUpdate.isEmpty() || !config.getBigQueryTableLabels().isEmpty()) { TableInfo originalTableInfo = bigQueryClient.getTable(config.getTableIdWithoutThePartition()); TableInfo.Builder updatedTableInfo = originalTableInfo.toBuilder(); if (!fieldsToUpdate.isEmpty()) { logger.debug("updating schema, found fields to update: {}", fieldsToUpdate.keySet()); TableDefinition originalTableDefinition = originalTableInfo.getDefinition(); Schema originalSchema = originalTableDefinition.getSchema(); Schema updatedSchema = Schema.of( originalSchema.getFields().stream() .map( field -> Optional.ofNullable(fieldsToUpdate.get(field.getName())) .map(sparkSchemaField -> updatedField(field, sparkSchemaField)) .orElse(field)) .collect(Collectors.toList())); updatedTableInfo.setDefinition( originalTableDefinition.toBuilder().setSchema(updatedSchema).build()); } if (!config.getBigQueryTableLabels().isEmpty()) { updatedTableInfo.setLabels(config.getBigQueryTableLabels()).build(); } bigQueryClient.update(updatedTableInfo.build()); } } static Field updatedField(Field field, StructField sparkSchemaField) { Field.Builder newField = field.toBuilder(); Optional bqDescription = SchemaConverters.getDescriptionOrCommentOfField( sparkSchemaField, SupportedCustomDataType.of(sparkSchemaField.dataType())); bqDescription.ifPresent(newField::setDescription); return newField.build(); } void cleanTemporaryGcsPathIfNeeded() { // TODO(davidrab): add flag to disable the deletion? logger.info("Cleaning temporary GCS path"); createTemporaryPathDeleter.ifPresent(IntermediateDataCleaner::deletePath); } static void verifySaveMode(SaveMode saveMode) { if (saveMode == SaveMode.ErrorIfExists || saveMode == SaveMode.Ignore) { throw new UnsupportedOperationException("SaveMode " + saveMode + " is not supported"); } } private boolean tableExists() { return tableInfo.isPresent(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/CreatableRelationProviderHelper.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write; import static com.google.cloud.spark.bigquery.SparkBigQueryUtil.scalaMapToJavaMap; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.spark.bigquery.DataSourceVersion; import com.google.cloud.spark.bigquery.InjectorBuilder; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.write.context.BigQueryDataSourceWriterModule; import com.google.common.annotations.VisibleForTesting; import com.google.inject.Injector; import java.util.Map; import java.util.UUID; import org.apache.spark.sql.*; import org.apache.spark.sql.sources.BaseRelation; import org.apache.spark.sql.types.StructType; public class CreatableRelationProviderHelper { public BaseRelation createRelation( SQLContext sqlContext, SaveMode saveMode, scala.collection.immutable.Map parameters, Dataset data, Map customDefaults) { Map properties = scalaMapToJavaMap(parameters); return createRelation(sqlContext, saveMode, properties, data, customDefaults); } public BaseRelation createRelation( SQLContext sqlContext, SaveMode saveMode, Map parameters, Dataset data, Map customDefaults) { BigQueryInsertableRelationBase relation = createBigQueryInsertableRelation(sqlContext, data, parameters, saveMode, customDefaults); switch (saveMode) { case Append: relation.insert(data, /* overwrite */ false); break; case Overwrite: relation.insert(data, /* overwrite */ true); break; case ErrorIfExists: if (!relation.exists()) { relation.insert(data, /* overwrite */ false); break; } else { throw new IllegalArgumentException( "SaveMode is set to ErrorIfExists and Table " + BigQueryUtil.friendlyTableName(relation.getTableId()) + "already exists. Did you want to add data to the table by setting " + "the SaveMode to Append? Example: " + "df.write.format.options.mode(SaveMode.Append).save()"); } case Ignore: if (!relation.exists()) { relation.insert(data, /* overwrite */ false); break; } } return relation; } @VisibleForTesting BigQueryInsertableRelationBase createBigQueryInsertableRelation( SQLContext sqlContext, Dataset data, Map properties, SaveMode saveMode, Map customDefaults) { Injector injector = new InjectorBuilder() .withDataSourceVersion(DataSourceVersion.V1) .withSpark(sqlContext.sparkSession()) .withSchema(data.schema()) .withOptions(properties) .withCustomDefaults(customDefaults) .withTableIsMandatory(true) .build(); return createBigQueryInsertableRelationInternal(data.schema(), saveMode, injector); } public BigQueryInsertableRelationBase createBigQueryInsertableRelation( SQLContext sqlContext, StructType schema, SaveMode saveMode, SparkBigQueryConfig config) { Injector injector = new InjectorBuilder() .withDataSourceVersion(DataSourceVersion.V1) .withSpark(sqlContext.sparkSession()) .withSchema(schema) .withConfig(config) .withTableIsMandatory(true) .build(); return createBigQueryInsertableRelationInternal(schema, saveMode, injector); } public BigQueryInsertableRelationBase createBigQueryInsertableRelationFromInjector( StructType schema, SaveMode saveMode, Injector injector) { return createBigQueryInsertableRelationInternal(schema, saveMode, injector); } private BigQueryInsertableRelationBase createBigQueryInsertableRelationInternal( StructType schema, SaveMode saveMode, Injector injector) { SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class); BigQueryClient bigQueryClient = injector.getInstance(BigQueryClient.class); SQLContext sqlContext = injector.getInstance(SparkSession.class).sqlContext(); SparkBigQueryConfig.WriteMethod writeMethod = config.getWriteMethod(); if (writeMethod == SparkBigQueryConfig.WriteMethod.INDIRECT) { return new BigQueryDeprecatedIndirectInsertableRelation(bigQueryClient, sqlContext, config); } // Need DataSourceWriterContext Injector writerInjector = injector.createChildInjector( new BigQueryDataSourceWriterModule( config, UUID.randomUUID().toString(), schema, saveMode)); return new BigQueryDataSourceWriterInsertableRelation( bigQueryClient, sqlContext, config, writerInjector); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/DataSourceWriterContextPartitionHandler.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.write; import com.google.cloud.spark.bigquery.write.context.DataWriterContext; import com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory; import com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext; import com.google.common.collect.ImmutableList; import com.google.common.collect.Iterators; import java.io.Serializable; import java.util.Iterator; import java.util.Optional; import org.apache.spark.TaskContext; import org.apache.spark.api.java.function.Function2; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSqlUtils; import org.apache.spark.sql.catalyst.InternalRow; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class DataSourceWriterContextPartitionHandler implements Function2, Iterator>, Serializable { private static final long serialVersionUID = 1427566429084782311L; private static Logger logger = LoggerFactory.getLogger(DataSourceWriterContextPartitionHandler.class); private final DataWriterContextFactory dataWriterContextFactory; private long epoch; private long taskId; public DataSourceWriterContextPartitionHandler( DataWriterContextFactory dataWriterContextFactory, long epoch) { this.dataWriterContextFactory = dataWriterContextFactory; this.epoch = epoch; TaskContext tc = TaskContext.get(); this.taskId = tc != null ? tc.taskAttemptId() : 0; } @Override public Iterator call(Integer partitionId, Iterator rowIterator) throws Exception { try (DataWriterContext dataWriterContext = dataWriterContextFactory.createDataWriterContext(partitionId, taskId, epoch)) { try { while (rowIterator.hasNext()) { Row row = rowIterator.next(); InternalRow internalRow = SparkSqlUtils.getInstance().rowToInternalRow(row); dataWriterContext.write(internalRow); } return Iterators.forArray(dataWriterContext.commit()); } catch (Exception e) { logger.warn( "Encountered error writing partition {} in task id {} for epoch {}. Calling DataWriter.abort()", partitionId, taskId, epoch, e); dataWriterContext.abort(); return ImmutableList.of(writerCommitMessageWithError(e)) .iterator(); } } } private static WriterCommitMessageContext writerCommitMessageWithError(Exception e) { return new WriterCommitMessageContext() { @Override public Optional getError() { return Optional.of(e); } }; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/IntermediateDataCleaner.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Responsible for recursively deleting the intermediate path. Implementing Runnable in order to act * as shutdown hook. */ public class IntermediateDataCleaner extends Thread { private static final Logger logger = LoggerFactory.getLogger(IntermediateDataCleaner.class); /** the path to delete */ private final Path path; /** the hadoop configuration */ private final Configuration conf; public IntermediateDataCleaner(Path path, Configuration conf) { this.path = path; this.conf = conf; } @Override public void run() { deletePath(); } public void deletePath() { try { logger.info("Deleting path " + path + " if it exists"); // Create a copy of the config to avoid polluting the global state Configuration cleanConf = new Configuration(conf); // Force a fresh instance that isn't already closed by Spark String scheme = path.toUri().getScheme(); if (scheme != null) { cleanConf.set("fs." + scheme + ".impl.disable.cache", "true"); } // Use the specific URI to ensure GCS is targeted FileSystem fs = FileSystem.get(path.toUri(), cleanConf); if (pathExists(fs, path)) { fs.delete(path, true); } logger.info("Path " + path + " no longer exists)"); } catch (Exception e) { logger.error("Failed to delete path " + path, e); } } public void deleteEpochPath(long epochId) { Path epochPath = new Path(path + "/" + epochId); try { logger.info("Deleting epoch path " + epochPath + " if it exists"); FileSystem fs = epochPath.getFileSystem(conf); if (pathExists(fs, epochPath)) { fs.delete(epochPath, true); } logger.info("Path " + epochPath + " no longer exists)"); } catch (Exception e) { logger.error("Failed to delete path " + epochPath, e); } } // fs.exists can throw exception on missing path private boolean pathExists(FileSystem fs, Path path) { try { return fs.exists(path); } catch (Exception e) { return false; } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/AvroIntermediateRecordWriter.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import java.io.IOException; import java.io.OutputStream; import org.apache.avro.Schema; import org.apache.avro.file.DataFileWriter; import org.apache.avro.generic.GenericDatumWriter; import org.apache.avro.generic.GenericRecord; import org.apache.avro.io.DatumWriter; public class AvroIntermediateRecordWriter implements IntermediateRecordWriter { private final OutputStream outputStream; private final DatumWriter writer; private final DataFileWriter dataFileWriter; AvroIntermediateRecordWriter(Schema schema, OutputStream outputStream) throws IOException { this.outputStream = outputStream; this.writer = new GenericDatumWriter<>(schema); this.dataFileWriter = new DataFileWriter<>(writer); this.dataFileWriter.create(schema, outputStream); } @Override public void write(GenericRecord record) throws IOException { dataFileWriter.append(record); } @Override public void close() throws IOException { try { dataFileWriter.flush(); } finally { dataFileWriter.close(); } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDataSourceWriterModule.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import com.google.api.gax.retrying.RetrySettings; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.SparkBigQueryUtil; import com.google.cloud.spark.bigquery.write.IntermediateDataCleaner; import com.google.inject.Binder; import com.google.inject.Module; import com.google.inject.Provides; import com.google.inject.Singleton; import java.io.IOException; import java.util.Optional; import org.apache.hadoop.fs.Path; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.types.StructType; public class BigQueryDataSourceWriterModule implements Module { private final SparkBigQueryConfig tableConfig; private final String writeUUID; private final StructType sparkSchema; private final SaveMode mode; public BigQueryDataSourceWriterModule( SparkBigQueryConfig tableConfig, String writeUUID, StructType sparkSchema, SaveMode mode) { this.tableConfig = tableConfig; this.writeUUID = writeUUID; this.sparkSchema = sparkSchema; this.mode = mode; } @Override public void configure(Binder binder) { // empty } @Singleton @Provides public BigQueryDirectDataSourceWriterContext provideDirectDataSourceWriterContext( BigQueryClient bigQueryClient, BigQueryClientFactory bigQueryWriteClientFactory, SparkSession spark) { TableId tableId = tableConfig.getTableId(); RetrySettings bigqueryDataWriteHelperRetrySettings = tableConfig.getBigqueryDataWriteHelperRetrySettings(); return new BigQueryDirectDataSourceWriterContext( bigQueryClient, bigQueryWriteClientFactory, tableId, writeUUID, mode, sparkSchema, bigqueryDataWriteHelperRetrySettings, com.google.common.base.Optional.fromJavaUtil(tableConfig.getTraceId()), tableConfig.getEnableModeCheckForSchemaFields(), tableConfig.getBigQueryTableLabels(), SchemaConvertersConfiguration.from(tableConfig), tableConfig.getKmsKeyName(), // needs to be serializable tableConfig.isWriteAtLeastOnce() && !mode.equals( SaveMode .Overwrite), // writeAtLeastOnce mode is currently not supported in OverWrite // mode. tableConfig.getPartitionOverwriteModeValue(), tableConfig.getClusteredFields(), spark.sparkContext()); } @Singleton @Provides public BigQueryIndirectDataSourceWriterContext provideIndirectDataSourceWriterContext( BigQueryClient bigQueryClient, SparkSession spark) throws IOException { Path gcsPath = SparkBigQueryUtil.createGcsPath( tableConfig, spark.sparkContext().hadoopConfiguration(), spark.sparkContext().applicationId()); Optional intermediateDataCleaner = tableConfig .getTemporaryGcsBucket() .map( ignored -> new IntermediateDataCleaner( gcsPath, spark.sparkContext().hadoopConfiguration())); // based on pmkc's suggestion at https://git.io/JeWRt intermediateDataCleaner.ifPresent(cleaner -> Runtime.getRuntime().addShutdownHook(cleaner)); return new BigQueryIndirectDataSourceWriterContext( bigQueryClient, tableConfig, spark.sparkContext().hadoopConfiguration(), sparkSchema, writeUUID, mode, gcsPath, intermediateDataCleaner, spark.sparkContext()); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectDataSourceWriterContext.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import static com.google.cloud.spark.bigquery.ProtobufUtils.toProtoSchema; import com.google.api.gax.retrying.RetrySettings; import com.google.cloud.bigquery.Job; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryConnectorException; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.bigquery.connector.common.ComparisonResult; import com.google.cloud.bigquery.storage.v1.BatchCommitWriteStreamsRequest; import com.google.cloud.bigquery.storage.v1.BatchCommitWriteStreamsResponse; import com.google.cloud.bigquery.storage.v1.BigQueryWriteClient; import com.google.cloud.bigquery.storage.v1.ProtoSchema; import com.google.cloud.spark.bigquery.PartitionOverwriteMode; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.metrics.SparkBigQueryConnectorMetricsUtils; import com.google.common.base.Optional; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.util.Arrays; import org.apache.spark.SparkContext; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class BigQueryDirectDataSourceWriterContext implements DataSourceWriterContext { final Logger logger = LoggerFactory.getLogger(BigQueryDirectDataSourceWriterContext.class); private final BigQueryClient bigQueryClient; private final BigQueryClientFactory writeClientFactory; private final TableId destinationTableId; private final StructType sparkSchema; private final ProtoSchema protoSchema; private final String writeUUID; private final RetrySettings bigqueryDataWriterHelperRetrySettings; private final Optional traceId; private final boolean enableModeCheckForSchemaFields; private final ImmutableMap tableLabels; private final BigQueryTable tableToWrite; private final String tablePathForBigQueryStorage; private final SchemaConvertersConfiguration schemaConvertersConfiguration; private final Optional destinationTableKmsKeyName; private final boolean writeAtLeastOnce; private BigQueryWriteClient writeClient; private Optional tableInfo = Optional.absent(); private PartitionOverwriteMode overwriteMode; enum WritingMode { IGNORE_INPUTS, APPEND_AT_LEAST_ONCE, OVERWRITE, ALL_ELSE } private WritingMode writingMode = WritingMode.ALL_ELSE; private final SparkContext sparkContext; public BigQueryDirectDataSourceWriterContext( BigQueryClient bigQueryClient, BigQueryClientFactory bigQueryWriteClientFactory, TableId destinationTableId, String writeUUID, SaveMode saveMode, StructType sparkSchema, RetrySettings bigqueryDataWriterHelperRetrySettings, Optional traceId, boolean enableModeCheckForSchemaFields, ImmutableMap tableLabels, SchemaConvertersConfiguration schemaConvertersConfiguration, java.util.Optional destinationTableKmsKeyName, boolean writeAtLeastOnce, PartitionOverwriteMode overwriteMode, java.util.Optional> clusteredFields, SparkContext sparkContext) throws IllegalArgumentException { this.bigQueryClient = bigQueryClient; this.writeClientFactory = bigQueryWriteClientFactory; this.destinationTableId = destinationTableId; this.writeUUID = writeUUID; this.sparkSchema = sparkSchema; this.bigqueryDataWriterHelperRetrySettings = bigqueryDataWriterHelperRetrySettings; this.traceId = traceId; this.enableModeCheckForSchemaFields = enableModeCheckForSchemaFields; this.tableLabels = tableLabels; this.schemaConvertersConfiguration = schemaConvertersConfiguration; this.destinationTableKmsKeyName = Optional.fromJavaUtil(destinationTableKmsKeyName); this.writeAtLeastOnce = writeAtLeastOnce; this.sparkContext = sparkContext; Schema bigQuerySchema = SchemaConverters.from(this.schemaConvertersConfiguration).toBigQuerySchema(sparkSchema); try { this.protoSchema = toProtoSchema(sparkSchema); } catch (IllegalArgumentException e) { throw new BigQueryConnectorException.InvalidSchemaException( "Could not convert Spark schema to protobuf descriptor", e); } this.tableToWrite = getOrCreateTable(saveMode, destinationTableId, bigQuerySchema, clusteredFields); this.tablePathForBigQueryStorage = bigQueryClient.createTablePathForBigQueryStorage(tableToWrite.getTableId()); if (!writingMode.equals(WritingMode.IGNORE_INPUTS)) { this.writeClient = writeClientFactory.getBigQueryWriteClient(); } this.overwriteMode = overwriteMode; } /** * This function determines whether the destination table exists: if it doesn't, we will create a * table and Spark will directly write to it. * * @param saveMode the SaveMode supplied by the user. * @param destinationTableId the TableId, as was supplied by the user * @param bigQuerySchema the bigQuery schema * @return The TableId to which Spark will do the writing: whether that is the destinationTableID * or the temporaryTableId. */ private BigQueryTable getOrCreateTable( SaveMode saveMode, TableId destinationTableId, Schema bigQuerySchema, java.util.Optional> clusteredFields) throws IllegalArgumentException { if (bigQueryClient.tableExists(destinationTableId)) { TableInfo destinationTable = bigQueryClient.getTable(destinationTableId); Schema tableSchema = destinationTable.getDefinition().getSchema(); ComparisonResult schemaWritableResult = BigQueryUtil.schemaWritable( bigQuerySchema, // sourceSchema tableSchema, // destinationSchema false, // regardFieldOrder enableModeCheckForSchemaFields); Preconditions.checkArgument( schemaWritableResult.valuesAreEqual(), new BigQueryConnectorException.InvalidSchemaException( "Destination table's schema is not compatible with dataframe's schema. " + schemaWritableResult.makeMessage())); switch (saveMode) { case Append: if (writeAtLeastOnce) { writingMode = WritingMode.APPEND_AT_LEAST_ONCE; return new BigQueryTable( bigQueryClient.createTempTable(destinationTableId, tableSchema).getTableId(), true); } break; case Overwrite: writingMode = WritingMode.OVERWRITE; return new BigQueryTable( bigQueryClient.createTempTable(destinationTableId, tableSchema).getTableId(), true); case Ignore: writingMode = WritingMode.IGNORE_INPUTS; break; case ErrorIfExists: throw new IllegalArgumentException("Table already exists in BigQuery"); } return new BigQueryTable(destinationTable.getTableId(), false); } else { return new BigQueryTable( bigQueryClient .createTable( destinationTableId, bigQuerySchema, BigQueryClient.CreateTableOptions.of( destinationTableKmsKeyName.toJavaUtil(), tableLabels, clusteredFields)) .getTableId(), true); } } @Override public DataWriterContextFactory createWriterContextFactory() { return new BigQueryDirectDataWriterContextFactory( writeClientFactory, tablePathForBigQueryStorage, sparkSchema, protoSchema, writingMode.equals(WritingMode.IGNORE_INPUTS), bigqueryDataWriterHelperRetrySettings, traceId, writeAtLeastOnce); } @Override public void onDataWriterCommit(WriterCommitMessageContext message) {} /** * This function will determine, based on the WritingMode: if in IGNORE_INPUTS mode, no work is to * be done; otherwise all streams will be batch committed using the BigQuery Storage Write API, * and then: if in OVERWRITE mode, the overwriteDestinationWithTemporary function from * BigQueryClient will be called to replace the destination table with all the data from the * temporary table; if in OVERWRITE mode with dynamic partitions enabled, * overwriteDestinationWithTemporaryDynamicPartitons from BigQueryClient will be called to replace * the required partitions;if in ALL_ELSE mode no more work needs to be done. * * @see WritingMode * @see BigQueryClient#overwriteDestinationWithTemporary(TableId temporaryTableId, TableId * destinationTableId) * @param messages the BigQueryWriterCommitMessage array returned by the BigQueryDataWriter's. */ @Override public void commit(WriterCommitMessageContext[] messages) { if (writingMode.equals(WritingMode.IGNORE_INPUTS)) return; logger.info( "BigQuery DataSource writer {} committed with messages:\n{}", writeUUID, Arrays.toString(messages)); long bytesWritten = 0; if (!writeAtLeastOnce) { BatchCommitWriteStreamsRequest.Builder batchCommitWriteStreamsRequest = BatchCommitWriteStreamsRequest.newBuilder().setParent(tablePathForBigQueryStorage); for (WriterCommitMessageContext message : messages) { bytesWritten += ((BigQueryDirectWriterCommitMessageContext) message).getBytesWritten(); batchCommitWriteStreamsRequest.addWriteStreams( ((BigQueryDirectWriterCommitMessageContext) message).getWriteStreamName()); } BatchCommitWriteStreamsResponse batchCommitWriteStreamsResponse = writeClient.batchCommitWriteStreams(batchCommitWriteStreamsRequest.build()); if (!batchCommitWriteStreamsResponse.hasCommitTime()) { throw new BigQueryConnectorException( "DataSource writer failed to batch commit its BigQuery write-streams"); } logger.info( "BigQuery DataSource writer has committed at time: {}", batchCommitWriteStreamsResponse.getCommitTime()); } if (writingMode.equals(WritingMode.APPEND_AT_LEAST_ONCE) || writingMode.equals(WritingMode.OVERWRITE)) { Job queryJob = (writingMode.equals(WritingMode.OVERWRITE)) ? overwriteMode == PartitionOverwriteMode.STATIC ? bigQueryClient.overwriteDestinationWithTemporary( tableToWrite.getTableId(), destinationTableId) : bigQueryClient.overwriteDestinationWithTemporaryDynamicPartitons( tableToWrite.getTableId(), destinationTableId) : bigQueryClient.appendDestinationWithTemporary( tableToWrite.getTableId(), destinationTableId); bigQueryClient.waitForJob(queryJob); Preconditions.checkState( bigQueryClient.deleteTable(tableToWrite.getTableId()), new BigQueryConnectorException( String.format("Could not delete temporary table %s from BigQuery", tableToWrite))); } if (!tableLabels.isEmpty()) { TableInfo originalTableInfo = bigQueryClient.getTable(destinationTableId); TableInfo.Builder updatedTableInfo = originalTableInfo.toBuilder(); updatedTableInfo.setLabels(tableLabels); bigQueryClient.update(updatedTableInfo.build()); } long currentTimeMillis = System.currentTimeMillis(); SparkBigQueryConnectorMetricsUtils.postWriteSessionMetrics( currentTimeMillis, SparkBigQueryConfig.WriteMethod.DIRECT, bytesWritten, java.util.Optional.empty(), sparkContext); } /** * If not in WritingMode IGNORE_INPUTS, the BigQuery Storage Write API WriteClient is shut down. * * @see BigQueryWriteClient * @param messages the BigQueryWriterCommitMessage array returned by the BigQueryDataWriter's. */ @Override public void abort(WriterCommitMessageContext[] messages) { logger.warn("BigQuery Data Source writer {} aborted", writeUUID); if (writingMode.equals(WritingMode.IGNORE_INPUTS)) return; // Deletes the preliminary table we wrote to (if it exists): if (tableToWrite.toDeleteOnAbort()) { bigQueryClient.deleteTable(tableToWrite.getTableId()); } } @Override public void setTableInfo(TableInfo tableInfo) { this.tableInfo = Optional.fromNullable(tableInfo); } // Used for the getOrCreateTable output, to indicate if the table should be deleted on abort static class BigQueryTable { private final TableId tableId; private final boolean toDeleteOnAbort; public BigQueryTable(TableId tableId, boolean toDeleteOnAbort) { this.tableId = tableId; this.toDeleteOnAbort = toDeleteOnAbort; } public TableId getTableId() { return tableId; } public boolean toDeleteOnAbort() { return toDeleteOnAbort; } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectDataWriterContext.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import static com.google.cloud.spark.bigquery.ProtobufUtils.ProtobufSchemaFieldCacheEntry; import static com.google.cloud.spark.bigquery.ProtobufUtils.buildSingleRowMessage; import static com.google.cloud.spark.bigquery.ProtobufUtils.toDescriptor; import com.google.api.gax.retrying.RetrySettings; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryConnectorException; import com.google.cloud.bigquery.connector.common.BigQueryDirectDataWriterHelper; import com.google.cloud.bigquery.connector.common.WriteStreamStatistics; import com.google.cloud.bigquery.storage.v1.ProtoSchema; import com.google.common.base.Optional; import com.google.protobuf.ByteString; import com.google.protobuf.Descriptors; import com.google.protobuf.DynamicMessage; import java.io.IOException; import java.util.HashMap; import java.util.Map; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class BigQueryDirectDataWriterContext implements DataWriterContext { final Logger logger = LoggerFactory.getLogger(BigQueryDirectDataWriterContext.class); private final int partitionId; private final long taskId; private final long epochId; private final String tablePath; private final StructType sparkSchema; private final Descriptors.Descriptor schemaDescriptor; private final Map fieldIndexToEntryMap; private final DynamicMessage.Builder messageBuilder; /** * A helper object to assist the BigQueryDataWriter with all the writing: essentially does all the * interaction with BigQuery Storage Write API. */ private BigQueryDirectDataWriterHelper writerHelper; public BigQueryDirectDataWriterContext( int partitionId, long taskId, long epochId, BigQueryClientFactory writeClientFactory, String tablePath, StructType sparkSchema, ProtoSchema protoSchema, RetrySettings bigqueryDataWriterHelperRetrySettings, Optional traceId, boolean writeAtLeastOnce) { this.partitionId = partitionId; this.taskId = taskId; this.epochId = epochId; this.tablePath = tablePath; this.sparkSchema = sparkSchema; try { this.schemaDescriptor = toDescriptor(sparkSchema); } catch (Descriptors.DescriptorValidationException e) { throw new BigQueryConnectorException.InvalidSchemaException( "Could not convert spark-schema to descriptor object", e); } this.fieldIndexToEntryMap = new HashMap<>(); this.messageBuilder = DynamicMessage.newBuilder(this.schemaDescriptor); this.writerHelper = new BigQueryDirectDataWriterHelper( writeClientFactory, tablePath, protoSchema, bigqueryDataWriterHelperRetrySettings, traceId, partitionId, writeAtLeastOnce); } @Override public void write(InternalRow record) throws IOException { ByteString message = buildSingleRowMessage( sparkSchema, schemaDescriptor, record, java.util.Optional.of(fieldIndexToEntryMap), messageBuilder) .toByteString(); writerHelper.addRow(message); } @Override public WriterCommitMessageContext commit() throws IOException { logger.debug("Data Writer {} finalizeStream()", partitionId); WriteStreamStatistics stats = writerHelper.finalizeStream(); String writeStreamName = writerHelper.getWriteStreamName(); logger.debug( "Data Writer {}'s write-stream has finalized with row count: {}", partitionId, stats.getRowCount()); return new BigQueryDirectWriterCommitMessageContext( writeStreamName, partitionId, taskId, epochId, tablePath, stats.getRowCount(), stats.getBytesWritten()); } @Override public void abort() throws IOException { logger.debug("Data Writer {} abort()", partitionId); writerHelper.abort(); } @Override public void close() throws IOException { // empty } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectDataWriterContextFactory.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import com.google.api.gax.retrying.RetrySettings; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.storage.v1.ProtoSchema; import com.google.common.base.Optional; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; public class BigQueryDirectDataWriterContextFactory implements DataWriterContextFactory { private final BigQueryClientFactory writeClientFactory; private final String tablePath; private final StructType sparkSchema; private final ProtoSchema protoSchema; private final boolean ignoreInputs; private final RetrySettings bigqueryDataWriterHelperRetrySettings; private final Optional traceId; private final boolean writeAtLeastOnce; public BigQueryDirectDataWriterContextFactory( BigQueryClientFactory writeClientFactory, String tablePath, StructType sparkSchema, ProtoSchema protoSchema, boolean ignoreInputs, RetrySettings bigqueryDataWriterHelperRetrySettings, Optional traceId, boolean writeAtLeastOnce) { this.writeClientFactory = writeClientFactory; this.tablePath = tablePath; this.sparkSchema = sparkSchema; this.protoSchema = protoSchema; this.ignoreInputs = ignoreInputs; this.bigqueryDataWriterHelperRetrySettings = bigqueryDataWriterHelperRetrySettings; this.traceId = traceId; this.writeAtLeastOnce = writeAtLeastOnce; } /** * If ignoreInputs is true, return a NoOpDataWriter, a stub class that performs no operations upon * the call of its methods; otherwise return BigQueryDataWriter. * * @see NoOpDataWriterContext * @see BigQueryDirectDataWriterContext * @param partitionId The partitionId of the DataWriter to be created * @param taskId the taskId * @param epochId the epochId * @return The DataWriter to be used. */ @Override public DataWriterContext createDataWriterContext( int partitionId, long taskId, long epochId) { if (ignoreInputs) { return new NoOpDataWriterContext(); } return new BigQueryDirectDataWriterContext( partitionId, taskId, epochId, writeClientFactory, tablePath, sparkSchema, protoSchema, bigqueryDataWriterHelperRetrySettings, traceId, writeAtLeastOnce); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectWriterCommitMessageContext.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; public class BigQueryDirectWriterCommitMessageContext implements WriterCommitMessageContext { private static final long serialVersionUID = -1562914502592461805L; private final String writeStreamName; private final int partitionId; private final long taskId; private final long epochId; private final String tablePath; private final long rowCount; private final long bytesWritten; public BigQueryDirectWriterCommitMessageContext( String writeStreamName /*List writeStreamNames*/, int partitionId, long taskId, long epochId, String tablePath, long rowCount, long bytesWritten) { this.writeStreamName = writeStreamName; this.partitionId = partitionId; this.taskId = taskId; this.epochId = epochId; this.tablePath = tablePath; this.rowCount = rowCount; this.bytesWritten = bytesWritten; } public String getWriteStreamName() { return writeStreamName; } public int getPartitionId() { return partitionId; } public long getTaskId() { return taskId; } public long getEpochId() { return epochId; } public String getTablePath() { return tablePath; } public long getRowCount() { return rowCount; } public long getBytesWritten() { return bytesWritten; } @Override public String toString() { return "BigQueryWriterCommitMessage{" + "partitionId=" + partitionId + ", taskId=" + taskId + ", epochId=" + epochId + ", tableId='" + tablePath + '\'' + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryIndirectDataSourceWriterContext.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import com.google.cloud.bigquery.FormatOptions; import com.google.cloud.bigquery.Job; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.JobStatistics; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.spark.bigquery.AvroSchemaConverter; import com.google.cloud.spark.bigquery.PartitionOverwriteMode; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.SparkBigQueryUtil; import com.google.cloud.spark.bigquery.metrics.SparkBigQueryConnectorMetricsUtils; import com.google.cloud.spark.bigquery.write.BigQueryWriteHelper; import com.google.cloud.spark.bigquery.write.IntermediateDataCleaner; import java.io.IOException; import java.io.UncheckedIOException; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.beam.sdk.io.hadoop.SerializableConfiguration; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.Path; import org.apache.spark.SparkContext; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * A DataSourceWriter implemented by first writing the DataFrame's data into GCS in an intermediate * format, and then triggering a BigQuery load job on this data. Hence the "indirect" - the data * goes through an intermediate storage. */ public class BigQueryIndirectDataSourceWriterContext implements DataSourceWriterContext { private static final Logger logger = LoggerFactory.getLogger(BigQueryIndirectDataSourceWriterContext.class); private final BigQueryClient bigQueryClient; private final SparkBigQueryConfig config; private final Configuration hadoopConfiguration; private final StructType sparkSchema; private final String writeUUID; private final SaveMode saveMode; private final Path gcsPath; private final Optional intermediateDataCleaner; private Optional tableInfo = Optional.empty(); private Optional temporaryTableId = Optional.empty(); private final JobInfo.WriteDisposition writeDisposition; private final SparkContext sparkContext; public BigQueryIndirectDataSourceWriterContext( BigQueryClient bigQueryClient, SparkBigQueryConfig config, Configuration hadoopConfiguration, StructType sparkSchema, String writeUUID, SaveMode saveMode, Path gcsPath, Optional intermediateDataCleaner, SparkContext sparkContext) { this.bigQueryClient = bigQueryClient; this.config = config; this.hadoopConfiguration = hadoopConfiguration; this.sparkSchema = sparkSchema; this.writeUUID = writeUUID; this.saveMode = saveMode; this.gcsPath = gcsPath; this.intermediateDataCleaner = intermediateDataCleaner; this.writeDisposition = SparkBigQueryUtil.saveModeToWriteDisposition(saveMode); this.sparkContext = sparkContext; } @Override public DataWriterContextFactory createWriterContextFactory() { org.apache.avro.Schema avroSchema = AvroSchemaConverter.sparkSchemaToAvroSchema(sparkSchema); return new BigQueryIndirectDataWriterContextFactory( new SerializableConfiguration(hadoopConfiguration), gcsPath.toString(), sparkSchema, avroSchema.toString()); } @Override public void onDataStreamingWriterCommit(long epochId, WriterCommitMessageContext[] messages) { commitMessages(messages, epochId); } @Override public void onDataStreamingWriterAbort(long epochId, WriterCommitMessageContext[] messages) { try { logger.warn( "Aborting epoch {} from streaming write {} for table {}", epochId, writeUUID, BigQueryUtil.friendlyTableName(config.getTableId())); } finally { cleanTemporaryGcsPathIfNeeded(epochId); } } @Override public void commit(WriterCommitMessageContext[] messages) { commitMessages(messages, 0); } @Override public void abort(WriterCommitMessageContext[] messages) { try { logger.warn( "Aborting write {} for table {}", writeUUID, BigQueryUtil.friendlyTableName(config.getTableId())); } finally { cleanTemporaryGcsPathIfNeeded(0); } } @Override public void setTableInfo(TableInfo tableInfo) { this.tableInfo = Optional.ofNullable(tableInfo); } private void commitMessages(WriterCommitMessageContext[] messages, long epochId) { logger.info( "Data has been successfully written to GCS. Going to load {} files to BigQuery", messages.length); try { List sourceUris = Stream.of(messages) .map(msg -> ((BigQueryIndirectWriterCommitMessageContext) msg).getUri()) .collect(Collectors.toList()); Schema schema = SchemaConverters.from(SchemaConvertersConfiguration.from(config)) .toBigQuerySchema(sparkSchema); if (tableInfo.isPresent()) { schema = BigQueryUtil.adjustSchemaIfNeeded( schema, tableInfo.get().getDefinition().getSchema(), config .getLoadSchemaUpdateOptions() .contains(JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION)); } if (writeDisposition == JobInfo.WriteDisposition.WRITE_TRUNCATE && config.getPartitionOverwriteModeValue() == PartitionOverwriteMode.DYNAMIC && bigQueryClient.tableExists(config.getTableId()) && bigQueryClient.isTablePartitioned(config.getTableId())) { temporaryTableId = Optional.of( bigQueryClient .createTempTableAfterCheckingSchema( config.getTableId(), schema, config.getEnableModeCheckForSchemaFields()) .getTableId()); loadDataToBigQuery(sourceUris, schema); Job queryJob = bigQueryClient.overwriteDestinationWithTemporaryDynamicPartitons( temporaryTableId.get(), config.getTableId()); bigQueryClient.waitForJob(queryJob); } else { loadDataToBigQuery(sourceUris, schema); } if (writeDisposition == JobInfo.WriteDisposition.WRITE_TRUNCATE) { updateMetadataIfNeeded(); } } catch (IOException e) { throw new UncheckedIOException(e); } finally { cleanTemporaryGcsPathIfNeeded(epochId); } logger.info("Data has been successfully loaded to BigQuery"); } void loadDataToBigQuery(List sourceUris, Schema schema) throws IOException { // Solving Issue #248 List optimizedSourceUris = SparkBigQueryUtil.optimizeLoadUriListForSpark(sourceUris); TableId destinationTableId = temporaryTableId.orElse(config.getTableId()); JobStatistics.LoadStatistics loadStatistics = bigQueryClient.loadDataIntoTable( config, optimizedSourceUris, FormatOptions.avro(), writeDisposition, Optional.of(schema), destinationTableId); long currentTimeMillis = System.currentTimeMillis(); SparkBigQueryConnectorMetricsUtils.postWriteSessionMetrics( currentTimeMillis, SparkBigQueryConfig.WriteMethod.INDIRECT, loadStatistics.getOutputBytes(), Optional.of(config.getIntermediateFormat()), sparkContext); } void updateMetadataIfNeeded() { BigQueryWriteHelper.updateTableMetadataIfNeeded(sparkSchema, config, bigQueryClient); } void cleanTemporaryGcsPathIfNeeded(long epochId) { intermediateDataCleaner.ifPresent(cleaner -> cleaner.deleteEpochPath(epochId)); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryIndirectDataWriterContext.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import com.google.cloud.spark.bigquery.AvroSchemaConverter; import java.io.IOException; import org.apache.avro.Schema; import org.apache.avro.generic.GenericRecord; import org.apache.hadoop.fs.FSDataOutputStream; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; class BigQueryIndirectDataWriterContext implements DataWriterContext { private static final Logger logger = LoggerFactory.getLogger(BigQueryIndirectDataWriterContext.class); Path path; FileSystem fs; FSDataOutputStream outputStream; StructType sparkSchema; Schema avroSchema; IntermediateRecordWriter intermediateRecordWriter; private int partitionId; protected BigQueryIndirectDataWriterContext( int partitionId, Path path, FileSystem fs, StructType sparkSchema, Schema avroSchema, IntermediateRecordWriter intermediateRecordWriter) { this.partitionId = partitionId; this.path = path; this.fs = fs; this.sparkSchema = sparkSchema; this.avroSchema = avroSchema; this.intermediateRecordWriter = intermediateRecordWriter; } @Override public void write(InternalRow record) throws IOException { GenericRecord avroRecord = AvroSchemaConverter.sparkRowToAvroGenericData(record, sparkSchema, avroSchema); intermediateRecordWriter.write(avroRecord); } @Override public WriterCommitMessageContext commit() throws IOException { intermediateRecordWriter.close(); return new BigQueryIndirectWriterCommitMessageContext(path.toString()); } @Override public void abort() throws IOException { logger.warn( "Writing of partition {} has been aborted, attempting to delete {}", partitionId, path); fs.delete(path, false); } @Override public void close() throws IOException { // empty } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryIndirectDataWriterContextFactory.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import java.io.IOException; import java.io.UncheckedIOException; import java.util.UUID; import org.apache.avro.Schema; import org.apache.beam.sdk.io.hadoop.SerializableConfiguration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; class BigQueryIndirectDataWriterContextFactory implements DataWriterContextFactory { SerializableConfiguration conf; String gcsDirPath; StructType sparkSchema; String avroSchemaJson; public BigQueryIndirectDataWriterContextFactory( SerializableConfiguration conf, String gcsDirPath, StructType sparkSchema, String avroSchemaJson) { this.conf = conf; this.gcsDirPath = gcsDirPath; this.sparkSchema = sparkSchema; this.avroSchemaJson = avroSchemaJson; } @Override public DataWriterContext createDataWriterContext( int partitionId, long taskId, long epochId) { try { Schema avroSchema = new Schema.Parser().parse(avroSchemaJson); UUID uuid = new UUID(taskId, epochId); String fileName = String.format("part-%06d-%s.avro", partitionId, uuid); Path path = new Path(gcsDirPath + "/" + epochId, fileName); FileSystem fs = path.getFileSystem(conf.get()); IntermediateRecordWriter intermediateRecordWriter = new AvroIntermediateRecordWriter(avroSchema, fs.create(path)); return new BigQueryIndirectDataWriterContext( partitionId, path, fs, sparkSchema, avroSchema, intermediateRecordWriter); } catch (IOException e) { throw new UncheckedIOException(e); } } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryIndirectWriterCommitMessageContext.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; class BigQueryIndirectWriterCommitMessageContext implements WriterCommitMessageContext { private static final long serialVersionUID = -6646939344980582239L; private final String uri; public BigQueryIndirectWriterCommitMessageContext(String uri) { this.uri = uri; } public String getUri() { return uri; } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/DataSourceWriterContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.write.context; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.spark.bigquery.DataSourceVersion; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.common.collect.ImmutableMap; import com.google.inject.Injector; import java.util.Map; import java.util.Optional; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.types.StructType; public interface DataSourceWriterContext { DataWriterContextFactory createWriterContextFactory(); default boolean useCommitCoordinator() { return true; } default void onDataWriterCommit(WriterCommitMessageContext message) {} default void onDataStreamingWriterCommit(long epochId, WriterCommitMessageContext[] messages) {} default void onDataStreamingWriterAbort(long epochId, WriterCommitMessageContext[] messages) {} void commit(WriterCommitMessageContext[] messages); void abort(WriterCommitMessageContext[] messages); void setTableInfo(TableInfo tableInfo); static Optional create( Injector injector, String writeUUID, StructType schema, SaveMode mode, Map options) { SparkBigQueryConfig tableConfig = injector.getInstance(SparkBigQueryConfig.class); if (tableConfig.getTableId() == null) { // the config was created for the catalog, we need to parse the tableId from the options SparkSession spark = injector.getInstance(SparkSession.class); tableConfig = SparkBigQueryConfig.from( options, ImmutableMap.of(), DataSourceVersion.V2, spark, Optional.of(schema), true /* tableIsMandatory */); } Injector writerInjector = injector.createChildInjector( new BigQueryDataSourceWriterModule(tableConfig, writeUUID, schema, mode)); // first verify if we need to do anything at all, based on the table existence and the save // mode. BigQueryClient bigQueryClient = writerInjector.getInstance(BigQueryClient.class); TableId tableId = tableConfig.getTableId(); TableInfo table = bigQueryClient.getTable(tableId); if (table != null) { // table already exists if (mode == SaveMode.Ignore) { return Optional.empty(); } if (mode == SaveMode.ErrorIfExists) { throw new IllegalArgumentException( String.format( "SaveMode is set to ErrorIfExists and table '%s' already exists. Did you want " + "to add data to the table by setting the SaveMode to Append? Example: " + "df.write.format.options.mode(\"append\").save()", BigQueryUtil.friendlyTableName(table.getTableId()))); } } else { // table does not exist // If the CreateDisposition is CREATE_NEVER, and the table does not exist, // there's no point in writing the data to GCS in the first place as it going // to fail on the BigQuery side. boolean createNever = tableConfig .getCreateDisposition() .map(createDisposition -> createDisposition == JobInfo.CreateDisposition.CREATE_NEVER) .orElse(false); if (createNever) { throw new IllegalArgumentException( String.format( "For table %s Create Disposition is CREATE_NEVER and the table does not exists." + " Aborting the insert", BigQueryUtil.friendlyTableName(tableId))); } } DataSourceWriterContext dataSourceWriterContext = null; switch (tableConfig.getWriteMethod()) { case DIRECT: dataSourceWriterContext = writerInjector.getInstance(BigQueryDirectDataSourceWriterContext.class); break; case INDIRECT: dataSourceWriterContext = writerInjector.getInstance(BigQueryIndirectDataSourceWriterContext.class); break; } dataSourceWriterContext.setTableInfo(table); return Optional.of(dataSourceWriterContext); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/DataWriterContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.write.context; import java.io.Closeable; import java.io.IOException; /** * An internal version to Spark DataSource DataWriter interface * * @param */ public interface DataWriterContext extends Closeable { void write(T row) throws IOException; WriterCommitMessageContext commit() throws IOException; void abort() throws IOException; } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/DataWriterContextFactory.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.write.context; import java.io.Serializable; public interface DataWriterContextFactory extends Serializable { DataWriterContext createDataWriterContext(int partitionId, long taskId, long epochId); } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/IntermediateRecordWriter.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import java.io.Closeable; import java.io.IOException; import org.apache.avro.generic.GenericRecord; public interface IntermediateRecordWriter extends Closeable { void write(GenericRecord avroRecord) throws IOException; } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/NoOpDataWriterContext.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write.context; import java.io.IOException; import org.apache.spark.sql.catalyst.InternalRow; public class NoOpDataWriterContext implements DataWriterContext { @Override public void write(InternalRow record) throws IOException {} @Override public WriterCommitMessageContext commit() throws IOException { return null; } @Override public void abort() throws IOException {} @Override public void close() throws IOException { // empty } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/WriterCommitMessageContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.write.context; import java.io.Serializable; import java.util.Optional; public interface WriterCommitMessageContext extends Serializable { default Optional getError() { return Optional.empty(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/org/apache/spark/sql/Scala213SparkSqlUtils.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package org.apache.spark.sql; import java.util.List; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.analysis.SimpleAnalyzer$; import org.apache.spark.sql.catalyst.encoders.ExpressionEncoder; import org.apache.spark.sql.catalyst.encoders.RowEncoder; import org.apache.spark.sql.catalyst.expressions.Attribute; import org.apache.spark.sql.catalyst.expressions.AttributeReference; import org.apache.spark.sql.catalyst.expressions.NamedExpression; import org.apache.spark.sql.types.StructType; import scala.collection.JavaConverters; import scala.collection.mutable.ListBuffer; public class Scala213SparkSqlUtils extends SparkSqlUtils { @Override public boolean supportsScalaVersion(String scalaVersion) { return scalaVersion.compareTo("2.13") >= 0; } @Override public InternalRow rowToInternalRow(Row row) { return InternalRow.fromSeq(row.toSeq()); } // This method relies on the scala.Seq alias, which is different in Scala 2.12 and 2.13. In Scala // 2.12 scala.Seq points to scala.collection.Seq whereas in Scala 2.13 it points to // scala.collection.immutable.Seq. @Override public ExpressionEncoder createExpressionEncoder(StructType schema) { List attributes = JavaConverters.asJavaCollection(toAttributes(schema)).stream() .map(Attribute::toAttribute) .collect(Collectors.toList()); ExpressionEncoder expressionEncoder = RowEncoder.apply(schema) .resolveAndBind( JavaConverters.asScalaIteratorConverter(attributes.iterator()).asScala().toSeq(), SimpleAnalyzer$.MODULE$); return expressionEncoder; } // `toAttributes` is protected[sql] starting spark 3.2.0, so we need this call to be in the same // package. Since Scala 2.13/Spark 3.3 forbids it, the implementation has been ported to Java public static scala.collection.immutable.Seq toAttributes(StructType schema) { return JavaConverters.asScalaBuffer( Stream.of(schema.fields()) .map( field -> new AttributeReference( field.name(), field.dataType(), field.nullable(), field.metadata(), NamedExpression.newExprId(), new ListBuffer().toStream())) .collect(Collectors.toList())) .toSeq(); } } ================================================ FILE: spark-bigquery-connector-common/src/main/java/org/apache/spark/sql/SparkSqlUtils.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package org.apache.spark.sql; import com.google.common.collect.Streams; import java.util.ServiceLoader; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.encoders.ExpressionEncoder; import org.apache.spark.sql.types.StructType; public abstract class SparkSqlUtils { private static SparkSqlUtils instance; public static SparkSqlUtils getInstance() { String scalaVersion = scala.util.Properties.versionNumberString(); if (instance == null) { ServiceLoader serviceLoader = ServiceLoader.load(SparkSqlUtils.class); instance = Streams.stream(serviceLoader.iterator()) .filter(s -> s.supportsScalaVersion(scalaVersion)) .findFirst() .orElseThrow( () -> new IllegalArgumentException( String.format( "Could not load instance of '%', please check the META-INF/services directory in the connector's jar", SparkSqlUtils.class.getCanonicalName()))); } return instance; } public abstract boolean supportsScalaVersion(String scalaVersion); public abstract InternalRow rowToInternalRow(Row row); public abstract ExpressionEncoder createExpressionEncoder(StructType schema); } ================================================ FILE: spark-bigquery-connector-common/src/main/resources/META-INF/services/io.openlineage.spark.extension.OpenLineageExtensionProvider ================================================ com.google.cloud.spark.bigquery.SparkBigQueryLineageProvider ================================================ FILE: spark-bigquery-connector-common/src/main/resources/META-INF/services/org.apache.spark.sql.SparkSqlUtils ================================================ org.apache.spark.sql.Scala213SparkSqlUtils ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/AvroSchemaConverterTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.common.collect.ImmutableList; import java.math.BigDecimal; import java.nio.ByteBuffer; import org.apache.avro.Conversions; import org.apache.avro.LogicalTypes; import org.apache.avro.Schema; import org.apache.avro.SchemaBuilder; import org.apache.avro.generic.GenericData; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.expressions.GenericInternalRow; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.Decimal; import org.apache.spark.sql.types.StructType; import org.junit.Test; public class AvroSchemaConverterTest { @Test public void testSchemaConversion() { StructType sparkSchema = TestConstants.ALL_TYPES_TABLE_SCHEMA; Schema avroSchema = AvroSchemaConverter.sparkSchemaToAvroSchema(sparkSchema); Schema.Field[] fields = avroSchema.getFields().toArray(new Schema.Field[avroSchema.getFields().size()]); checkField(fields[0], "int_req", Schema.create(Schema.Type.LONG)); checkField(fields[1], "int_null", nullable(Schema.Type.LONG)); checkField(fields[2], "bl", nullable(Schema.Type.BOOLEAN)); checkField(fields[3], "str", nullable(Schema.Type.STRING)); checkField( fields[4], "day", nullable(LogicalTypes.date().addToSchema(SchemaBuilder.builder().intType()))); checkField( fields[5], "ts", nullable(LogicalTypes.timestampMicros().addToSchema(SchemaBuilder.builder().longType()))); checkField(fields[6], "dt", nullable(Schema.Type.STRING)); checkField(fields[7], "tm", nullable(Schema.Type.LONG)); checkField(fields[8], "binary", nullable(Schema.Type.BYTES)); checkField(fields[9], "float", nullable(Schema.Type.DOUBLE)); checkField( fields[10], "nums", nullable( Schema.createRecord( "nums", null, null, false, ImmutableList.of( new Schema.Field("min", nullable(numericDecimal("min")), null, (Object) null), new Schema.Field("max", nullable(numericDecimal("max")), null, (Object) null), new Schema.Field("pi", nullable(numericDecimal("pi")), null, (Object) null), new Schema.Field( "big_pi", nullable(numericDecimal("big_pi")), null, (Object) null))))); checkField( fields[11], "big_numeric_nums", nullable( Schema.createRecord( "big_numeric_nums", null, null, false, ImmutableList.of( new Schema.Field( "min", nullable(bignumericDecimal("min")), null, (Object) null), new Schema.Field( "max", nullable(bignumericDecimal("max")), null, (Object) null))))); checkField(fields[12], "int_arr", nullable(Schema.createArray(nullable(Schema.Type.LONG)))); checkField( fields[13], "int_struct_arr", nullable( Schema.createArray( nullable( Schema.createRecord( "int_struct_arr", null, null, false, ImmutableList.of( new Schema.Field( "i", nullable(Schema.Type.LONG), null, (Object) null))))))); checkField( fields[14], "str_json", nullable(SchemaBuilder.builder().stringBuilder().prop("sqlType", "JSON").endString())); } @Test public void testConvertIntegers() { InternalRow row = new GenericInternalRow( new Object[] { Byte.valueOf("0"), Short.valueOf("1"), Integer.valueOf(2), Long.valueOf(3) }); StructType sparkSchema = DataTypes.createStructType( ImmutableList.of( DataTypes.createStructField("byte_f", DataTypes.ByteType, false), DataTypes.createStructField("short_f", DataTypes.ShortType, false), DataTypes.createStructField("int_f", DataTypes.IntegerType, false), DataTypes.createStructField("long_f", DataTypes.LongType, false))); Schema avroSchema = SchemaBuilder.record("root") .fields() // .name("byte_f") .type(SchemaBuilder.builder().longType()) .noDefault() // .name("short_f") .type(SchemaBuilder.builder().longType()) .noDefault() // .name("int_f") .type(SchemaBuilder.builder().longType()) .noDefault() // .name("long_f") .type(SchemaBuilder.builder().longType()) .noDefault() // .endRecord(); GenericData.Record result = AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema); assertThat(result.getSchema()).isEqualTo(avroSchema); assertThat(result.get(0)).isEqualTo(Long.valueOf(0)); assertThat(result.get(1)).isEqualTo(Long.valueOf(1)); assertThat(result.get(2)).isEqualTo(Long.valueOf(2)); assertThat(result.get(3)).isEqualTo(Long.valueOf(3)); } @Test public void testConvertNull() { InternalRow row = new GenericInternalRow(new Object[] {null}); StructType sparkSchema = DataTypes.createStructType( ImmutableList.of(DataTypes.createStructField("null_f", DataTypes.LongType, true))); Schema avroSchema = SchemaBuilder.record("root") .fields() // .name("long_f") .type( SchemaBuilder.unionOf() .type(SchemaBuilder.builder().longType()) .and() .nullType() .endUnion()) .noDefault() // .endRecord(); GenericData.Record result = AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema); assertThat(result.getSchema()).isEqualTo(avroSchema); assertThat(result.get(0)).isNull(); } @Test public void testConvertNullable() { InternalRow row = new GenericInternalRow(new Object[] {Long.valueOf(0)}); StructType sparkSchema = DataTypes.createStructType( ImmutableList.of(DataTypes.createStructField("null_f", DataTypes.LongType, true))); Schema avroSchema = SchemaBuilder.record("root") .fields() // .name("long_f") .type( SchemaBuilder.unionOf() .type(SchemaBuilder.builder().longType()) .and() .nullType() .endUnion()) .noDefault() // .endRecord(); GenericData.Record result = AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema); assertThat(result.getSchema()).isEqualTo(avroSchema); assertThat(result.get(0)).isEqualTo(Long.valueOf(0)); } @Test public void testConvertDecimal() { InternalRow row = new GenericInternalRow( new Object[] { Decimal.apply(BigDecimal.valueOf(123.456), BigQueryUtil.DEFAULT_NUMERIC_PRECISION, 3) }); StructType sparkSchema = DataTypes.createStructType( ImmutableList.of( DataTypes.createStructField( "decimal_f", DataTypes.createDecimalType(BigQueryUtil.DEFAULT_NUMERIC_PRECISION, 3), false))); Schema avroSchema = SchemaBuilder.record("root") .fields() // .name("decimal_f") .type(numericDecimal("decimal_f")) .noDefault() // .endRecord(); GenericData.Record result = AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema); assertThat(result.getSchema()).isEqualTo(avroSchema); Conversions.DecimalConversion decimalConversion = new Conversions.DecimalConversion(); assertThat( decimalConversion.fromBytes( (ByteBuffer) result.get(0), avroSchema.getField("decimal_f").schema(), LogicalTypes.decimal(BigQueryUtil.DEFAULT_NUMERIC_PRECISION, 3))) .isEqualTo(BigDecimal.valueOf(123.456)); } @Test public void testConvertDoubles() { InternalRow row = new GenericInternalRow(new Object[] {Float.valueOf("0.0"), Double.valueOf("1.1")}); StructType sparkSchema = DataTypes.createStructType( ImmutableList.of( DataTypes.createStructField("float_f", DataTypes.FloatType, false), DataTypes.createStructField("double_f", DataTypes.DoubleType, false))); Schema avroSchema = SchemaBuilder.record("root") .fields() // .name("float_f") .type(SchemaBuilder.builder().doubleType()) .noDefault() // .name("double_f") .type(SchemaBuilder.builder().doubleType()) .noDefault() // .endRecord(); GenericData.Record result = AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema); assertThat(result.getSchema()).isEqualTo(avroSchema); assertThat(result.get(0)).isEqualTo(Double.valueOf(0.0)); assertThat(result.get(1)).isEqualTo(Double.valueOf(1.1)); } @Test public void testConvertDateTime() { InternalRow row = new GenericInternalRow(new Object[] {Integer.valueOf(15261), Long.valueOf(1318608914000L)}); StructType sparkSchema = DataTypes.createStructType( ImmutableList.of( DataTypes.createStructField("date_f", DataTypes.DateType, false), DataTypes.createStructField("ts_f", DataTypes.TimestampType, false))); Schema avroSchema = SchemaBuilder.record("root") .fields() // .name("date_f") .type(LogicalTypes.date().addToSchema(SchemaBuilder.builder().intType())) .noDefault() // .name("ts_f") .type(LogicalTypes.timestampMicros().addToSchema(SchemaBuilder.builder().longType())) .noDefault() // .endRecord(); GenericData.Record result = AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema); assertThat(result.getSchema()).isEqualTo(avroSchema); assertThat(result.get(0)).isEqualTo(15261); assertThat(result.get(1)).isEqualTo(1318608914000L); } @Test public void testComparisonToSparkAvro() {} private void checkField(Schema.Field field, String name, Schema schema) { assertThat(field.name()).isEqualTo(name); assertThat(field.schema()).isEqualTo(schema); } private Schema numericDecimal(String name) { return LogicalTypes.decimal(38, 9).addToSchema(SchemaBuilder.builder().bytesType()); } private Schema bignumericDecimal(String name) { return LogicalTypes.decimal(38, 38).addToSchema(SchemaBuilder.builder().bytesType()); } Schema nullable(Schema schema) { return Schema.createUnion(schema, Schema.create(Schema.Type.NULL)); } Schema nullable(Schema.Type type) { return nullable(Schema.create(type)); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/BigQueryRelationProviderTestBase.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; // Google Truth import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.validateMockitoUsage; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import com.google.api.client.util.Base64; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.Table; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation; import com.google.common.base.Throwables; // For getting root cause import com.google.inject.Binder; import com.google.inject.Guice; import com.google.inject.Injector; import com.google.inject.Module; import java.util.HashMap; import java.util.Map; import java.util.Optional; import java.util.function.Supplier; import org.apache.hadoop.conf.Configuration; import org.apache.spark.SparkContext; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.sources.BaseRelation; import org.apache.spark.sql.types.StructType; import org.junit.After; import org.junit.Assert; // For fail() import org.junit.Before; import org.junit.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; public abstract class BigQueryRelationProviderTestBase { private static final TableId ID = TableId.of("testproject", "test_dataset", "test_table"); private static final String TABLE_NAME_FULL = "testproject:test_dataset.test_table"; private static final TableInfo TABLE_INFO = TableInfo.of( ID, StandardTableDefinition.newBuilder() .setSchema(Schema.of(Field.of("foo", LegacySQLTypeName.STRING))) .setNumBytes(42L) .build()); @Mock private SQLContext sqlCtx; @Mock private SparkContext sc; private Configuration hadoopConf; @Mock private SparkBigQueryConfig config; @Mock private BigQueryClient.ReadTableOptions readTableOptions; @Mock private BigQueryClient bigQueryClient; @Mock private BigQueryClientFactory bigQueryReadClientFactory; private BigQueryRelationProviderBase provider; @Mock private Table tableMock; private SparkSession sparkSession; @Before public void setUp() { MockitoAnnotations.initMocks(this); hadoopConf = new Configuration(false); when(config.getTableId()).thenReturn(ID); when(config.toReadTableOptions()).thenReturn(readTableOptions); final Injector injector = Guice.createInjector( new Module() { @Override public void configure(Binder binder) { binder.bind(SparkBigQueryConfig.class).toInstance(config); binder.bind(BigQueryClient.class).toInstance(bigQueryClient); binder.bind(BigQueryClientFactory.class).toInstance(bigQueryReadClientFactory); binder .bind( com.google.cloud.bigquery.connector.common.LoggingBigQueryTracerFactory .class) .toInstance( new com.google.cloud.bigquery.connector.common .LoggingBigQueryTracerFactory()); } }); GuiceInjectorCreator injectorCreator = new GuiceInjectorCreator() { @Override public Injector createGuiceInjector( SQLContext sqlContext, Map parameters, Optional schema) { return injector; } }; provider = createProvider(() -> injectorCreator); when(tableMock.getTableId()).thenReturn(TABLE_INFO.getTableId()); when(tableMock.getDefinition()).thenReturn(TABLE_INFO.getDefinition()); sparkSession = SparkSession.builder() .master("local[*]") .appName("BigQueryRelationProviderSuiteApp") .getOrCreate(); when(sqlCtx.sparkContext()).thenReturn(sc); when(sc.hadoopConfiguration()).thenReturn(hadoopConf); when(sc.version()).thenReturn("2.4.0"); when(sqlCtx.sparkSession()).thenReturn(sparkSession); when(sqlCtx.getAllConfs()).thenReturn(scala.collection.immutable.Map$.MODULE$.empty()); } @After public void tearDown() { validateMockitoUsage(); if (sparkSession != null) { sparkSession.stop(); } } @Test public void tableExists() { when(bigQueryClient.getReadTable(any(BigQueryClient.ReadTableOptions.class))) .thenReturn(tableMock); Map params = new HashMap<>(); params.put("table", TABLE_NAME_FULL); params.put("parentProject", ID.getProject()); BaseRelation relation = provider.createRelation(sqlCtx, params); assertThat(relation).isNotNull(); assertThat(relation).isInstanceOf(DirectBigQueryRelation.class); verify(bigQueryClient).getReadTable(any(BigQueryClient.ReadTableOptions.class)); } @Test public void tableDoesNotExist() { when(bigQueryClient.getReadTable(any(BigQueryClient.ReadTableOptions.class))).thenReturn(null); Map params = new HashMap<>(); params.put("table", TABLE_NAME_FULL); params.put("parentProject", ID.getProject()); try { provider.createRelation(sqlCtx, params); Assert.fail("Expected a RuntimeException to be thrown"); } catch (RuntimeException e) { assertThat(e) .hasMessageThat() .contains("Table " + BigQueryUtil.friendlyTableName(ID) + " not found"); } verify(bigQueryClient).getReadTable(any(BigQueryClient.ReadTableOptions.class)); } // Example of using @Test(expected) if only the exception type is of interest @Test(expected = RuntimeException.class) public void tableDoesNotExistWithExpectedExceptionAnnotation() { when(bigQueryClient.getReadTable(any(BigQueryClient.ReadTableOptions.class))).thenReturn(null); Map params = new HashMap<>(); params.put("table", TABLE_NAME_FULL); params.put("parentProject", ID.getProject()); provider.createRelation(sqlCtx, params); } @Test public void credentialsParameterIsUsedToInitializeBigQueryOptions() { BigQueryRelationProviderBase defaultProvider = createProvider(); String invalidCredentials = Base64.encodeBase64String("{}".getBytes()); Map params = new HashMap<>(); params.put("parentProject", ID.getProject()); params.put("credentials", invalidCredentials); params.put("table", TABLE_NAME_FULL); try { defaultProvider.createRelation(sqlCtx, params); Assert.fail("Expected an Exception to be thrown due to invalid credentials"); } catch (Exception e) { // Check the root cause or the direct message Throwable rootCause = Throwables.getRootCause(e); String rootCauseMessage = rootCause.getMessage() != null ? rootCause.getMessage() : ""; String directMessage = e.getMessage() != null ? e.getMessage() : ""; assertThat( directMessage.contains("Failed to create Credentials from key") || rootCauseMessage.contains("Failed to create Credentials from key") || directMessage.contains("Invalid credentials") || rootCauseMessage.contains("Invalid credentials")) .isTrue(); } } abstract BigQueryRelationProviderBase createProvider( Supplier injectorCreator); abstract BigQueryRelationProviderBase createProvider(); } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/BigQueryRelationTest.java ================================================ /* * Copyright 2023 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.ViewDefinition; import com.google.common.collect.ImmutableMap; import java.util.Optional; import org.apache.hadoop.conf.Configuration; import org.apache.spark.sql.internal.SQLConf; import org.junit.Test; public class BigQueryRelationTest { @Test public void testCreateTableNameForLogging_withTable() { BigQueryRelation relation = new BigQueryRelation( SparkBigQueryConfig.from( ImmutableMap.of("path", "dataset.table"), ImmutableMap.of(), new Configuration(), ImmutableMap.of(), 1, new SQLConf(), "1.2.3", Optional.empty(), /* tableIsMandatory */ true), TableInfo.of( TableId.of("should", "not_be", "seen"), ViewDefinition.of("SELECT foo FROM bar")), null); String result = relation.getTableNameForLogging(); assertThat(result).isEqualTo("dataset.table"); } @Test public void testCreateTableNameForLogging_fromQuery() { BigQueryRelation relation = new BigQueryRelation( SparkBigQueryConfig.from( ImmutableMap.of("query", "SELECT foo FROM bar", "dataset", "dataset"), ImmutableMap.of(), new Configuration(), ImmutableMap.of(), 1, new SQLConf(), "1.2.3", Optional.empty(), /* tableIsMandatory */ true), TableInfo.of( TableId.of("project", "dataset", "_bqc_UUID"), StandardTableDefinition.of(Schema.of(Field.of("foo", LegacySQLTypeName.STRING)))), null); String result = relation.getTableNameForLogging(); assertThat(result).isEqualTo("project.dataset._bqc_UUID created from \"SELECT foo FROM bar\""); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/DataSourceOptions.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import java.util.HashMap; import java.util.Locale; import java.util.Map; class DataSourceOptions { private final Map keyLowerCasedMap; public DataSourceOptions(Map originalMap) { keyLowerCasedMap = new HashMap<>(originalMap.size()); for (Map.Entry entry : originalMap.entrySet()) { keyLowerCasedMap.put(entry.getKey().toLowerCase(Locale.ENGLISH), entry.getValue()); } } public Map asMap() { return new HashMap<>(keyLowerCasedMap); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/InjectorBuilderTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.bigquery.connector.common.UserAgentProvider; import com.google.common.collect.ImmutableMap; import com.google.inject.Injector; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.types.StructType; import org.junit.Test; public class InjectorBuilderTest { @Test public void testDefaults() { SparkSession unused = SparkSession.builder().master("local[1]").getOrCreate(); Injector injector = new InjectorBuilder().withOptions(ImmutableMap.of("table", "foo.bar")).build(); SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class); assertThat(config.getTableId().getTable()).isEqualTo("bar"); UserAgentProvider userAgentProvider = injector.getInstance(UserAgentProvider.class); assertThat(userAgentProvider.getUserAgent()).contains("v2"); } @Test public void testParams() { SparkSession spark = SparkSession.builder().master("local[1]").appName("test").getOrCreate(); ImmutableMap options = ImmutableMap.builder() .put("table", "foo.bar") .put("GPN", "testUser") .build(); Injector injector = new InjectorBuilder() .withOptions(options) .withCustomDefaults(ImmutableMap.of("writeMethod", "INDIRECT")) .withSpark(spark) .withDataSourceVersion(DataSourceVersion.V1) .withSchema(new StructType()) .withTableIsMandatory(false) .build(); SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class); assertThat(config.getTableId().getTable()).isEqualTo("bar"); assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.INDIRECT); UserAgentProvider userAgentProvider = injector.getInstance(UserAgentProvider.class); assertThat(userAgentProvider.getUserAgent()).contains("v1"); assertThat(userAgentProvider.getUserAgent()).contains("(GPN:testUser)"); } @Test public void testConnectorInfo() { SparkSession.builder() .master("local[1]") .config("spark.driver.bindAddress", "127.0.0.1") .getOrCreate(); ImmutableMap options = ImmutableMap.builder() .put("table", "foo.bar") .put("GPN", "testUser") .build(); Injector injector = new InjectorBuilder().withOptions(options).build(); SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class); assertThat(config.getTableId().getTable()).isEqualTo("bar"); UserAgentProvider userAgentProvider = injector.getInstance(UserAgentProvider.class); assertThat(userAgentProvider.getConnectorInfo()).contains("v2"); assertThat(userAgentProvider.getConnectorInfo()).contains("testUser"); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/MockResponsesBatch.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import java.util.Iterator; import java.util.LinkedList; import java.util.Queue; class MockResponsesBatch implements Iterator { private Queue responses = new LinkedList<>(); void addResponse(ReadRowsResponse response) { responses.add(response); } void addException(RuntimeException exception) { responses.add(exception); } @Override public boolean hasNext() { return !responses.isEmpty(); } @Override public ReadRowsResponse next() { Object next = responses.poll(); if (next instanceof ReadRowsResponse) { return (ReadRowsResponse) next; } else if (next instanceof RuntimeException) { throw (RuntimeException) next; } return null; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/MockSparkBigQueryPushdown.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown; import org.apache.spark.sql.SparkSession; public class MockSparkBigQueryPushdown implements SparkBigQueryPushdown { public static boolean enabledWasCalled = false; public static boolean disabledWasCalled = false; @Override public boolean supportsSparkVersion(String sparkVersion) { return true; } @Override public void enable(SparkSession spark) { enabledWasCalled = true; } @Override public void disable(SparkSession spark) { disabledWasCalled = true; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/OptimizeLoadUriListTest.java ================================================ /* * Copyright 2020 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; import java.util.stream.IntStream; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; @RunWith(Parameterized.class) public class OptimizeLoadUriListTest { private List input; private List expected; public OptimizeLoadUriListTest(List input, List expected) { this.input = input; this.expected = expected; } @Parameterized.Parameters(name = "{index}: Should get {1}") public static Iterable data() { return Arrays.asList( new Object[] { // input 1 Arrays.asList( "gs://bucket/path/to/part-00000-bc3a92eb-414e-4110-9fd4-70cc41e6c43b-c000.csv", "gs://bucket/path/to/part-00001-bc3a92eb-414e-4110-9fd4-70cc41e6c43b-c000.csv"), // output 1 Arrays.asList( "gs://bucket/path/to/part-00000-bc3a92eb-414e-4110-9fd4-70cc41e6c43b-c000.csv", "gs://bucket/path/to/part-00001-bc3a92eb-414e-4110-9fd4-70cc41e6c43b-c000.csv") }, new Object[] { // input 2 Arrays.asList( "gs://bucket/path/to/part-00000-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00001-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00002-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00003-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00004-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00005-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00006-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00007-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00008-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00009-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00010-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro"), // output 2 Arrays.asList( "gs://bucket/path/to/part-0000*-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro", "gs://bucket/path/to/part-00010-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro") }, new Object[] { // input 3 IntStream.range(100, 200) .mapToObj( i -> String.format( "gs://bucket/path/to/part-00%d-5ef57800-1b61-4b15-af3c-f766f84d179c-c000.snappy.parquet", i)) .collect(Collectors.toList()), // output 3 Arrays.asList( "gs://bucket/path/to/part-001*-5ef57800-1b61-4b15-af3c-f766f84d179c-c000.snappy.parquet") }, new Object[] { // input 4 IntStream.range(100, 211) .mapToObj( i -> String.format( "gs://bucket/path/to/part-00%s-2a70634c-f292-46f4-ba71-36a4af58f777-c000.json", i)) .collect(Collectors.toList()), // output 4 Arrays.asList( "gs://bucket/path/to/part-001*-2a70634c-f292-46f4-ba71-36a4af58f777-c000.json", "gs://bucket/path/to/part-0020*-2a70634c-f292-46f4-ba71-36a4af58f777-c000.json", "gs://bucket/path/to/part-00210-2a70634c-f292-46f4-ba71-36a4af58f777-c000.json") }, new Object[] { // size of 1 // input 5 Arrays.asList( "gs://bucket/path/to/part-00000-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro"), // output 5 Arrays.asList( "gs://bucket/path/to/part-00000-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro") }, new Object[] { // empty // input 6 Arrays.asList(), // output 6 Arrays.asList() }); } @Test public void test() { List actual = SparkBigQueryUtil.optimizeLoadUriListForSpark(input); assertThat(actual).containsExactlyElementsIn(expected); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/ProtobufUtilsTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.cloud.spark.bigquery.ProtobufUtils.buildDescriptorProtoWithFields; import static com.google.cloud.spark.bigquery.ProtobufUtils.buildSingleRowMessage; import static com.google.cloud.spark.bigquery.ProtobufUtils.toDescriptor; import static com.google.cloud.spark.bigquery.ProtobufUtils.toProtoRows; import static com.google.cloud.spark.bigquery.ProtobufUtils.toProtoSchema; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.fail; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.storage.v1.ProtoRows; import com.google.cloud.bigquery.storage.v1.ProtoSchema; import com.google.cloud.bigquery.storage.v1.ProtoSchemaConverter; import com.google.protobuf.DescriptorProtos; import com.google.protobuf.Descriptors; import com.google.protobuf.DynamicMessage; import com.google.protobuf.Message; import java.math.BigDecimal; import java.math.MathContext; import java.util.HashMap; import java.util.Map; import java.util.Optional; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.expressions.GenericInternalRow; import org.apache.spark.sql.catalyst.util.ArrayData; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.Decimal; import org.apache.spark.sql.types.DecimalType; import org.apache.spark.sql.types.Metadata; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.apache.spark.unsafe.types.UTF8String; import org.junit.AssumptionViolatedException; import org.junit.Test; public class ProtobufUtilsTest { // Numeric is a fixed precision Decimal Type with 38 digits of precision and 9 digits of scale. // See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#numeric-type private static final int BQ_NUMERIC_PRECISION = 38; private static final int BQ_NUMERIC_SCALE = 9; private static final int BQ_BIGNUMERIC_SCALE = 38; private static final DecimalType NUMERIC_SPARK_TYPE = DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE); private static final DecimalType BIGNUMERIC_SPARK_TYPE = DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE); // The maximum nesting depth of a BigQuery RECORD: private static final int MAX_BIGQUERY_NESTED_DEPTH = 15; @Test public void testBigQueryRecordToDescriptor() throws Exception { DescriptorProtos.DescriptorProto expected = NESTED_STRUCT_DESCRIPTOR.setName("Struct").build(); DescriptorProtos.DescriptorProto converted = buildDescriptorProtoWithFields( DescriptorProtos.DescriptorProto.newBuilder().setName("Struct"), BIGQUERY_NESTED_STRUCT_FIELD.getSubFields(), 0); assertThat(converted).isEqualTo(expected); } @Test public void testBigQueryToProtoSchema() throws Exception { ProtoSchema converted = toProtoSchema(BIG_BIGQUERY_SCHEMA); ProtoSchema expected = ProtoSchemaConverter.convert( Descriptors.FileDescriptor.buildFrom( DescriptorProtos.FileDescriptorProto.newBuilder() .addMessageType( DescriptorProtos.DescriptorProto.newBuilder() .addField(PROTO_INTEGER_FIELD.clone().setNumber(1)) .addField(PROTO_STRING_FIELD.clone().setNumber(2)) .addField(PROTO_ARRAY_FIELD.clone().setNumber(3)) .addNestedType(NESTED_STRUCT_DESCRIPTOR.clone()) .addField(PROTO_STRUCT_FIELD.clone().setNumber(4)) .addField(PROTO_DOUBLE_FIELD.clone().setName("Float").setNumber(5)) .addField(PROTO_BOOLEAN_FIELD.clone().setNumber(6)) .addField(PROTO_BYTES_FIELD.clone().setNumber(7)) .addField(PROTO_DATE_FIELD.clone().setNumber(8)) .addField( PROTO_STRING_FIELD.clone().setName("Numeric").setNumber(9)) .addField( PROTO_STRING_FIELD.clone().setName("BigNumeric").setNumber(10)) .addField( PROTO_INTEGER_FIELD.clone().setName("TimeStamp").setNumber(11)) .setName("Schema") .build()) .build(), new Descriptors.FileDescriptor[] {}) .getMessageTypes() .get(0)); for (int i = 0; i < expected.getProtoDescriptor().getFieldList().size(); i++) { assertThat(converted.getProtoDescriptor().getField(i)) .isEqualTo(expected.getProtoDescriptor().getField(i)); } } @Test public void testSparkStructRowToDynamicMessage() throws Exception { Map fieldIndexToEntryMap = new HashMap<>(); StructType schema = new StructType().add(SPARK_NESTED_STRUCT_FIELD); Descriptors.Descriptor schemaDescriptor = toDescriptor(schema); Message converted = buildSingleRowMessage( schema, schemaDescriptor, STRUCT_INTERNAL_ROW, Optional.of(fieldIndexToEntryMap), DynamicMessage.newBuilder(schemaDescriptor)); DynamicMessage expected = StructRowMessage; assertThat(converted.toString()).isEqualTo(expected.toString()); assertThat(!fieldIndexToEntryMap.isEmpty()); Message convertedSecond = buildSingleRowMessage( schema, schemaDescriptor, STRUCT_INTERNAL_ROW, Optional.of(fieldIndexToEntryMap), DynamicMessage.newBuilder(schemaDescriptor)); assertThat(convertedSecond.toString()).isEqualTo(expected.toString()); } private InternalRow getDummyRow() { return new GenericInternalRow( new Object[] { 1, UTF8String.fromString("A"), ArrayData.toArrayData(new int[] {0, 1, 2}), INTERNAL_STRUCT_DATA, 3.14, true, new byte[] {11, 0x7F}, 1594080000000L, 1594080000000L, Decimal.apply( new BigDecimal( "-99999999999999999999999999999.999999999", new MathContext(BQ_NUMERIC_PRECISION)), BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE), Decimal.apply(new BigDecimal("0.78960446186580977117854925043439539146")) }); } @Test public void testSparkRowToProtoRow() throws Exception { ProtoRows converted = toProtoRows(BIG_SPARK_SCHEMA, new InternalRow[] {getDummyRow(), getDummyRow()}); ProtoRows expected = MY_PROTO_ROWS; assertThat(converted.getSerializedRows(0).toByteArray()) .isEqualTo(expected.getSerializedRows(0).toByteArray()); assertThat(converted.getSerializedRows(1).toByteArray()) .isEqualTo(expected.getSerializedRows(0).toByteArray()); } @Test public void testSettingARequiredFieldAsNull() throws Exception { try { ProtoRows converted = toProtoRows( new StructType() .add(new StructField("String", DataTypes.StringType, false, Metadata.empty())), new InternalRow[] {new GenericInternalRow(new Object[] {null})}); fail("Convert did not assert field's /'Required/' status"); } catch (Exception ignored) { } try { ProtoRows converted = toProtoRows( new StructType() .add(new StructField("String", DataTypes.StringType, true, Metadata.empty())), new InternalRow[] {new GenericInternalRow(new Object[] {null})}); } catch (Exception e) { fail("A nullable field could not be set to null."); } } public final StructType MY_STRUCT = DataTypes.createStructType( new StructField[] { new StructField("Number", DataTypes.IntegerType, true, Metadata.empty()), new StructField("String", DataTypes.StringType, true, Metadata.empty()) }); public final StructField SPARK_INTEGER_FIELD = new StructField("Number", DataTypes.IntegerType, true, Metadata.empty()); public final StructField SPARK_STRING_FIELD = new StructField("String", DataTypes.StringType, false, Metadata.empty()); public final StructField SPARK_NESTED_STRUCT_FIELD = new StructField("Struct", MY_STRUCT, true, Metadata.empty()); public final StructField SPARK_ARRAY_FIELD = new StructField( "Array", DataTypes.createArrayType(DataTypes.IntegerType), true, Metadata.empty()); public final StructField SPARK_DOUBLE_FIELD = new StructField("Float", DataTypes.DoubleType, true, Metadata.empty()); public final StructField SPARK_BOOLEAN_FIELD = new StructField("Boolean", DataTypes.BooleanType, true, Metadata.empty()); public final StructField SPARK_BINARY_FIELD = new StructField("Binary", DataTypes.BinaryType, true, Metadata.empty()); public final StructField SPARK_DATE_FIELD = new StructField("Date", DataTypes.DateType, true, Metadata.empty()); public final StructField SPARK_TIMESTAMP_FIELD = new StructField("TimeStamp", DataTypes.TimestampType, true, Metadata.empty()); public final StructField SPARK_NUMERIC_FIELD = new StructField("Numeric", NUMERIC_SPARK_TYPE, true, Metadata.empty()); public final StructField SPARK_BIGNUMERIC_FIELD = new StructField("BigNumeric", BIGNUMERIC_SPARK_TYPE, true, Metadata.empty()); public final StructType BIG_SPARK_SCHEMA = new StructType() .add(SPARK_INTEGER_FIELD) .add(SPARK_STRING_FIELD) .add(SPARK_ARRAY_FIELD) .add(SPARK_NESTED_STRUCT_FIELD) .add(SPARK_DOUBLE_FIELD) .add(SPARK_BOOLEAN_FIELD) .add(SPARK_BINARY_FIELD) .add(SPARK_DATE_FIELD) .add(SPARK_TIMESTAMP_FIELD) .add(SPARK_NUMERIC_FIELD) .add(SPARK_BIGNUMERIC_FIELD); public final Field BIGQUERY_INTEGER_FIELD = Field.newBuilder("Number", LegacySQLTypeName.INTEGER).setMode(Field.Mode.NULLABLE).build(); public final Field BIGQUERY_STRING_FIELD = Field.newBuilder("String", LegacySQLTypeName.STRING).setMode(Field.Mode.REQUIRED).build(); public final Field BIGQUERY_NESTED_STRUCT_FIELD = Field.newBuilder( "Struct", LegacySQLTypeName.RECORD, Field.newBuilder("Number", LegacySQLTypeName.INTEGER) .setMode(Field.Mode.NULLABLE) .build(), Field.newBuilder("String", LegacySQLTypeName.STRING) .setMode(Field.Mode.NULLABLE) .build()) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_ARRAY_FIELD = Field.newBuilder("Array", LegacySQLTypeName.INTEGER).setMode(Field.Mode.REPEATED).build(); public final Field BIGQUERY_FLOAT_FIELD = Field.newBuilder("Float", LegacySQLTypeName.FLOAT).setMode(Field.Mode.NULLABLE).build(); public final Field BIGQUERY_BOOLEAN_FIELD = Field.newBuilder("Boolean", LegacySQLTypeName.BOOLEAN).setMode(Field.Mode.NULLABLE).build(); public final Field BIGQUERY_BYTES_FIELD = Field.newBuilder("Binary", LegacySQLTypeName.BYTES).setMode(Field.Mode.NULLABLE).build(); public final Field BIGQUERY_DATE_FIELD = Field.newBuilder("Date", LegacySQLTypeName.DATE).setMode(Field.Mode.NULLABLE).build(); public final Field BIGQUERY_TIMESTAMP_FIELD = Field.newBuilder("TimeStamp", LegacySQLTypeName.TIMESTAMP) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_NUMERIC_FIELD = Field.newBuilder("Numeric", LegacySQLTypeName.NUMERIC).setMode(Field.Mode.REQUIRED).build(); public final Field BIGQUERY_BIGNUMERIC_FIELD = Field.newBuilder("BigNumeric", LegacySQLTypeName.BIGNUMERIC) .setMode(Field.Mode.REQUIRED) .build(); public final Schema BIG_BIGQUERY_SCHEMA = Schema.of( BIGQUERY_INTEGER_FIELD, BIGQUERY_STRING_FIELD, BIGQUERY_ARRAY_FIELD, BIGQUERY_NESTED_STRUCT_FIELD, BIGQUERY_FLOAT_FIELD, BIGQUERY_BOOLEAN_FIELD, BIGQUERY_BYTES_FIELD, BIGQUERY_DATE_FIELD, BIGQUERY_NUMERIC_FIELD, BIGQUERY_BIGNUMERIC_FIELD, BIGQUERY_TIMESTAMP_FIELD); public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_INTEGER_FIELD = DescriptorProtos.FieldDescriptorProto.newBuilder() .setName("Number") .setNumber(1) .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL); public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_STRING_FIELD = DescriptorProtos.FieldDescriptorProto.newBuilder() .setName("String") .setNumber(1) .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING) .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_REQUIRED); public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_ARRAY_FIELD = DescriptorProtos.FieldDescriptorProto.newBuilder() .setName("Array") .setNumber(1) .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64) .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_REPEATED); public final DescriptorProtos.DescriptorProto.Builder NESTED_STRUCT_DESCRIPTOR = DescriptorProtos.DescriptorProto.newBuilder() .setName("STRUCT4") .addField(PROTO_INTEGER_FIELD.clone()) .addField( PROTO_STRING_FIELD .clone() .setNumber(2) .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL)); public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_STRUCT_FIELD = DescriptorProtos.FieldDescriptorProto.newBuilder() .setName("Struct") .setNumber(1) .setTypeName("STRUCT4") .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL); public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_DOUBLE_FIELD = DescriptorProtos.FieldDescriptorProto.newBuilder() .setName("Double") .setNumber(1) .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_DOUBLE) .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL); public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_BOOLEAN_FIELD = DescriptorProtos.FieldDescriptorProto.newBuilder() .setName("Boolean") .setNumber(1) .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_BOOL) .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL); public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_BYTES_FIELD = DescriptorProtos.FieldDescriptorProto.newBuilder() .setName("Binary") .setNumber(1) .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_BYTES) .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL); public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_DATE_FIELD = DescriptorProtos.FieldDescriptorProto.newBuilder() .setName("Date") .setNumber(1) .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT32) .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL); public final InternalRow INTERNAL_STRUCT_DATA = new GenericInternalRow(new Object[] {1, UTF8String.fromString("A")}); public final InternalRow STRUCT_INTERNAL_ROW = new GenericInternalRow(new Object[] {INTERNAL_STRUCT_DATA}); public Descriptors.Descriptor STRUCT_SCHEMA_DESCRIPTOR = createStructSchemaDescriptor(); public Descriptors.Descriptor createStructSchemaDescriptor() { try { return toDescriptor(new StructType().add(SPARK_NESTED_STRUCT_FIELD)); } catch (Descriptors.DescriptorValidationException e) { throw new AssumptionViolatedException("Could not create STRUCT_SCHEMA_DESCRIPTOR", e); } } Descriptors.Descriptor STRUCT_DESCRIPTOR = createStructDescriptor(); public Descriptors.Descriptor createStructDescriptor() throws AssumptionViolatedException { try { return toDescriptor(MY_STRUCT); } catch (Descriptors.DescriptorValidationException e) { throw new AssumptionViolatedException("Could not create STRUCT_DESCRIPTOR.", e); } } public DynamicMessage StructRowMessage = DynamicMessage.newBuilder(STRUCT_SCHEMA_DESCRIPTOR) .setField( STRUCT_SCHEMA_DESCRIPTOR.findFieldByNumber(1), buildSingleRowMessage( MY_STRUCT, STRUCT_DESCRIPTOR, INTERNAL_STRUCT_DATA, /*fieldIndexToEntryMap*/ Optional.empty(), DynamicMessage.newBuilder(STRUCT_DESCRIPTOR))) .build(); public Descriptors.Descriptor BIG_SCHEMA_ROW_DESCRIPTOR = createBigSchemaRowDescriptor(); public Descriptors.Descriptor createBigSchemaRowDescriptor() { try { return toDescriptor(BIG_SPARK_SCHEMA); } catch (Descriptors.DescriptorValidationException e) { throw new AssumptionViolatedException("Could not create BIG_SCHEMA_ROW_DESCRIPTOR", e); } } public ProtoRows MY_PROTO_ROWS = ProtoRows.newBuilder() .addSerializedRows( DynamicMessage.newBuilder(BIG_SCHEMA_ROW_DESCRIPTOR) .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(1), 1L) .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(2), "A") .addRepeatedField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(3), 0L) .addRepeatedField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(3), 1L) .addRepeatedField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(3), 2L) .setField( BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(4), buildSingleRowMessage( MY_STRUCT, STRUCT_DESCRIPTOR, INTERNAL_STRUCT_DATA, /*fieldIndexToEntryMap*/ Optional.empty(), DynamicMessage.newBuilder(STRUCT_DESCRIPTOR))) .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(5), 3.14) .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(6), true) .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(7), new byte[] {11, 0x7F}) .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(8), 647133184) .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(9), 1594080000000L) .setField( BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(10), "-99999999999999999999999999999.999999999") .setField( BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(11), "0.78960446186580977117854925043439539146") .build() .toByteString()) .build(); } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SchemaConverterTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.cloud.spark.bigquery.SchemaConverters.*; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertThrows; import static org.junit.Assert.fail; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.Field.Mode; import com.google.cloud.bigquery.FieldList; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.TimePartitioning; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import java.util.Optional; import org.apache.spark.ml.linalg.SQLDataTypes; import org.apache.spark.sql.types.*; import org.junit.Test; public class SchemaConverterTest { // Numeric is a fixed precision Decimal Type with 38 digits of precision and 9 digits of scale. // See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#numeric-type private static final int BQ_NUMERIC_PRECISION = 38; private static final int BQ_NUMERIC_SCALE = 9; private static final int BQ_BIGNUMERIC_SCALE = 38; private static final DecimalType NUMERIC_SPARK_TYPE = DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE); private static final DecimalType BIGNUMERIC_SPARK_TYPE = DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE); // The maximum nesting depth of a BigQuery RECORD: private static final int MAX_BIGQUERY_NESTED_DEPTH = 15; private static final SchemaConvertersConfiguration SCHEMA_CONVERTERS_CONFIGURATION = SchemaConvertersConfiguration.from(new SparkBigQueryConfig()); /* BigQuery -> Spark tests, translated from SchemaConvertersSuite.scala */ @Test public void testEmptySchemaBigQueryToSparkConversion() throws Exception { Schema bqSchema = Schema.of(); StructType expected = new StructType(); StructType result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toSpark(bqSchema); assertThat(result).isEqualTo(expected); } @Test public void testSingleFieldSchemaBigQueryToSparkConversion() throws Exception { Schema bqSchema = Schema.of(Field.of("foo", LegacySQLTypeName.STRING)); StructType expected = new StructType().add(new StructField("foo", DataTypes.StringType, true, Metadata.empty())); StructType result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toSpark(bqSchema); assertThat(result).isEqualTo(expected); } @Test public void testFullFieldSchemaBigQueryToSparkConversion() throws Exception { Schema bqSchema = BIG_BIGQUERY_SCHEMA2; StructType expected = BIG_SPARK_SCHEMA2; StructType result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toSpark(bqSchema); assertThat(result).isEqualTo(expected); } @Test public void testFieldHasDescriptionBigQueryToSpark() throws Exception { Schema bqSchema = Schema.of( Field.newBuilder("name", LegacySQLTypeName.STRING) .setDescription("foo") .setMode(Field.Mode.NULLABLE) .build()); StructType expected = new StructType() .add( new StructField( "name", DataTypes.StringType, true, new MetadataBuilder() .putString("description", "foo") .putString("comment", "foo") .build())); StructType result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toSpark(bqSchema); assertThat(result).isEqualTo(expected); } @Test public void testGetSchemaWithPseudoColumns() throws Exception { Schema result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .getSchemaWithPseudoColumns(buildTableInfo(BIG_BIGQUERY_SCHEMA2, null)); assertThat(result).isEqualTo(BIG_BIGQUERY_SCHEMA2); result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .getSchemaWithPseudoColumns( buildTableInfo( BIG_BIGQUERY_SCHEMA2, TimePartitioning.newBuilder(TimePartitioning.Type.DAY) .setField("foo") .build())); assertThat(result).isEqualTo(BIG_BIGQUERY_SCHEMA2); result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .getSchemaWithPseudoColumns( buildTableInfo( BIG_BIGQUERY_SCHEMA2, TimePartitioning.of(TimePartitioning.Type.DAY))); assertThat(result).isEqualTo(BIG_BIGQUERY_SCHEMA2_WITH_PSEUDO_COLUMNS); } @Test public void testGetSchemaWithPseudoColumnsOfNoneDailyPartitioning() throws Exception { Schema result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .getSchemaWithPseudoColumns( buildTableInfo( BIG_BIGQUERY_SCHEMA2, TimePartitioning.of(TimePartitioning.Type.HOUR))); Schema bigSchema2withJustPartitionTimePseudoColumn = Schema.of( BIG_BIGQUERY_SCHEMA2_WITH_PSEUDO_COLUMNS.getFields().stream() .filter(field -> !field.getName().equals("_PARTITIONDATE")) .toArray(Field[]::new)); assertThat(result).isEqualTo(bigSchema2withJustPartitionTimePseudoColumn); } public TableInfo buildTableInfo(Schema schema, TimePartitioning timePartitioning) { return TableInfo.of( TableId.of("project", "dataset", "table"), StandardTableDefinition.newBuilder() .setSchema(schema) .setTimePartitioning(timePartitioning) .build()); } /* Spark -> BigQuery conversion tests: */ @Test public void testSparkToBQSchema() throws Exception { StructType schema = BIG_SPARK_SCHEMA; Schema expected = BIG_BIGQUERY_SCHEMA; Schema converted = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toBigQuerySchema(schema); for (int i = 0; i < expected.getFields().size(); i++) { if (i == 8) continue; // FIXME: delete this line when Timestamp conversion can be restored. assertThat(converted.getFields().get(i)).isEqualTo(expected.getFields().get(i)); } } @Test public void testDecimalTypeConversionFromSparkToBigQuery() throws Exception { VerifyDecimalConversion(10, 0, LegacySQLTypeName.NUMERIC); VerifyDecimalConversion(20, 9, LegacySQLTypeName.NUMERIC); VerifyDecimalConversion(38, 9, LegacySQLTypeName.NUMERIC); VerifyDecimalConversion(38, 4, LegacySQLTypeName.BIGNUMERIC); VerifyDecimalConversion(38, 10, LegacySQLTypeName.BIGNUMERIC); VerifyDecimalConversion(20, 15, LegacySQLTypeName.BIGNUMERIC); VerifyDecimalConversion(38, 38, LegacySQLTypeName.BIGNUMERIC); } private void VerifyDecimalConversion(int precision, int scale, LegacySQLTypeName expectedType) { Field field = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .createBigQueryColumn( simpleStructField("foo", DataTypes.createDecimalType(precision, scale)), 1); assertThat(field.getType()).isEqualTo(expectedType); assertThat(field.getPrecision()).isEqualTo(precision); assertThat(field.getScale()).isEqualTo(scale); } private Field getKeyValueRepeatedField() { return Field.newBuilder( "foo", LegacySQLTypeName.RECORD, Field.newBuilder("key", LegacySQLTypeName.INTEGER).setMode(Mode.REQUIRED).build(), Field.of("value", LegacySQLTypeName.STRING)) .setMode(Mode.REPEATED) .build(); } @Test public void testFailureOnTooWideBigNumericConversion() throws Exception { assertThrows( IllegalArgumentException.class, () -> { SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .convert( Field.newBuilder("foo", LegacySQLTypeName.BIGNUMERIC) .setPrecision(60L) .setScale(30L) .build()); }); } @Test public void testTimeTypesConversions() throws Exception { // FIXME: restore this check when the Vortex team adds microsecond precision, and Timestamp // conversion can be fixed. // assertThat(toBigQueryType(DataTypes.TimestampType)).isEqualTo(LegacySQLTypeName.TIMESTAMP); assertThat( SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .toBigQueryType(DataTypes.DateType, Metadata.empty())) .isEqualTo(LegacySQLTypeName.DATE); } @Test public void testDescriptionConversion() throws Exception { String description = "I love bananas"; Field result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .createBigQueryColumn( new StructField( "Field", DataTypes.IntegerType, true, new MetadataBuilder().putString("description", description).build()), 0); assertThat(result.getDescription()).isEqualTo(description); } @Test public void testDescriptionConversionForSparkML() throws Exception { String description = "I love bananas"; Field result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .createBigQueryColumn( new StructField( "Field", SQLDataTypes.MatrixType(), true, new MetadataBuilder().putString("description", description).build()), 0); assertThat(result.getDescription()) .isEqualTo(description + " " + SupportedCustomDataType.SPARK_ML_MATRIX.getTypeMarker()); } @Test public void testSparkMLConversionNoDescription() throws Exception { Field result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .createBigQueryColumn( new StructField("Field", SQLDataTypes.MatrixType(), true, Metadata.empty()), 0); assertThat(result.getDescription()) .isEqualTo(SupportedCustomDataType.SPARK_ML_MATRIX.getTypeMarker()); } @Test public void testNoDescriptionConversion() throws Exception { Field result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .createBigQueryColumn( new StructField("Field", DataTypes.IntegerType, true, Metadata.empty()), 0); assertThat(result.getDescription()).isNull(); } @Test public void testCommentConversion() throws Exception { StructField field = StructField.apply( "foo", DataTypes.StringType, true, new MetadataBuilder().putString("comment", "bar").build()); Optional convertedComment = SchemaConverters.getDescriptionOrCommentOfField(field, Optional.empty()); assertThat(convertedComment).isEqualTo(Optional.of("bar")); } @Test public void testMaximumNestingDepthError() throws Exception { StructType inner = new StructType(); StructType superRecursiveSchema = inner; for (int i = 0; i < MAX_BIGQUERY_NESTED_DEPTH + 1; i++) { StructType outer = new StructType() .add(new StructField("struct" + i, superRecursiveSchema, true, Metadata.empty())); superRecursiveSchema = outer; } try { SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .createBigQueryColumn(superRecursiveSchema.fields()[0], 0); fail("Did not detect super-recursive schema of depth = 16."); } catch (IllegalArgumentException e) { } } @Test public void testGetCustomDataType() { Field.Builder field = Field.newBuilder( "test", LegacySQLTypeName.RECORD, Field.of("sub", LegacySQLTypeName.INTEGER)); // no description SchemaConverters sc = from(SCHEMA_CONVERTERS_CONFIGURATION); assertThat(sc.getCustomDataType(field.build()).isPresent()).isFalse(); // empty marker assertThat(sc.getCustomDataType(field.setDescription("foo").build()).isPresent()).isFalse(); // only marker assertThat(sc.getCustomDataType(field.setDescription("{spark.type=vector}").build())) .isEqualTo(Optional.of(SQLDataTypes.VectorType())); // description and marker assertThat(sc.getCustomDataType(field.setDescription("foo {spark.type=matrix}").build())) .isEqualTo(Optional.of(SQLDataTypes.MatrixType())); } @Test public void testConvertBigQueryMapToSparkMap_not_repeated() { Optional field = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .convertMap( Field.newBuilder("foo", LegacySQLTypeName.INTEGER).setMode(Mode.REQUIRED).build(), Metadata.empty()); assertThat(field).isEqualTo(Optional.empty()); } @Test public void testConvertBigQueryMapToSparkMap_not_record() { Optional field = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .convertMap( Field.newBuilder("foo", LegacySQLTypeName.INTEGER).setMode(Mode.REPEATED).build(), Metadata.empty()); assertThat(field).isEqualTo(Optional.empty()); } @Test public void testConvertBigQueryMapToSparkMap_wrong_record_size() { Optional field = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .convertMap( Field.newBuilder( "foo", LegacySQLTypeName.RECORD, Field.of("foo", LegacySQLTypeName.INTEGER)) .setMode(Mode.REPEATED) .build(), Metadata.empty()); assertThat(field).isEqualTo(Optional.empty()); } @Test public void testConvertBigQueryMapToSparkMap_wrong_record_fields() { Optional field = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .convertMap( Field.newBuilder( "foo", LegacySQLTypeName.RECORD, Field.of("foo", LegacySQLTypeName.INTEGER), Field.of("bar", LegacySQLTypeName.INTEGER)) .setMode(Mode.REPEATED) .build(), Metadata.empty()); assertThat(field).isEqualTo(Optional.empty()); } @Test public void testConvertBigQueryMapToSparkMap_with_actual_map() { Optional fieldOpt = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION) .convertMap(getKeyValueRepeatedField(), Metadata.empty()); MapType longToStringMapType = DataTypes.createMapType(DataTypes.LongType, DataTypes.StringType); assertThat(fieldOpt.isPresent()).isTrue(); StructField field = fieldOpt.get(); assertThat(field.dataType()).isEqualTo(longToStringMapType); assertThat(field.name()).isEqualTo("foo"); } @Test public void testConvertSparkMapToBigQueryMap_nested() { MapType sparkNestedMapType = DataTypes.createMapType( DataTypes.IntegerType, new StructType().add("v", DataTypes.IntegerType, false), true); Field bigQueryType = SchemaConverters.from(SchemaConvertersConfiguration.of(false)) .createBigQueryColumn(simpleStructField("nestedMap", sparkNestedMapType), 2); assertThat(bigQueryType.getType()).isEqualTo(LegacySQLTypeName.RECORD); FieldList subFields = bigQueryType.getSubFields(); assertThat(subFields.size()).isEqualTo(2); assertThat(subFields.get(0)) .isEqualTo( Field.newBuilder("key", LegacySQLTypeName.INTEGER).setMode(Mode.REQUIRED).build()); assertThat(subFields.get(1)) .isEqualTo( Field.newBuilder( "value", LegacySQLTypeName.RECORD, FieldList.of( Field.newBuilder("v", LegacySQLTypeName.INTEGER) .setMode(Mode.REQUIRED) .build())) .setMode(Mode.NULLABLE) .build()); } @Test public void testConvertBigQueryMapToSparkMap_nested() { Field bigQueryNestedMapField = Field.newBuilder( "map_complex", LegacySQLTypeName.RECORD, FieldList.of( Field.newBuilder("key", LegacySQLTypeName.STRING) .setMode(Mode.REQUIRED) .build(), Field.newBuilder( "value", LegacySQLTypeName.RECORD, FieldList.of( Field.newBuilder("v", LegacySQLTypeName.INTEGER) .setMode(Mode.REQUIRED) .build())) .setMode(Mode.NULLABLE) .build())) .setMode(Field.Mode.REPEATED) .build(); Optional sparkField = SchemaConverters.from(SchemaConvertersConfiguration.of(true)) .convertMap(bigQueryNestedMapField, Metadata.empty()); assertThat(sparkField.isPresent()).isTrue(); StructField sparkMap = sparkField.get(); MapType sparkNestedMapType = DataTypes.createMapType( DataTypes.StringType, new StructType().add("v", DataTypes.LongType, false), true); assertThat(sparkMap.dataType()).isEqualTo(sparkNestedMapType); } @Test public void testConvertBigQueryMapToSparkMap_mapTypeConversionDisabled() { Optional fieldOpt = SchemaConverters.from(SchemaConvertersConfiguration.of(false)) .convertMap(getKeyValueRepeatedField(), Metadata.empty()); assertThat(fieldOpt.isPresent()).isFalse(); } @Test public void testConvertBigQueryToSparkArray_mapTypeConversionDisabled() { StructField field = SchemaConverters.from(SchemaConvertersConfiguration.of(false)) .convert(getKeyValueRepeatedField()); StructType elementType = new StructType() .add("key", DataTypes.LongType, false) .add("value", DataTypes.StringType, true); ArrayType arrayType = new ArrayType(elementType, true); assertThat(field.dataType()).isEqualTo(arrayType); assertThat(field.name()).isEqualTo("foo"); } @Test public void testCreateDecimalTypeFromNumericField() throws Exception { // new builder instance is needed for each test assertDecimal(numeric(), 38, 9); assertDecimal(numeric().setPrecision(20L), 20, 0); assertDecimal(numeric().setPrecision(30L), 30, 1); assertDecimal(numeric().setScale(5L), 34, 5); assertDecimal(numeric().setPrecision(20L).setScale(5L), 20, 5); } @Test public void testCreateDecimalTypeFromCustomBigNumericField() throws Exception { Field customBigNumeric = Field.newBuilder("foo", LegacySQLTypeName.BIGNUMERIC).build(); StructField field = SchemaConverters.from(SchemaConvertersConfiguration.of(false, 38, 10)) .convert(customBigNumeric); assertThat(field.dataType()).isEqualTo(DataTypes.createDecimalType(38, 10)); } @Test public void testCreateDecimalTypeFromCustomBigNumericField_wide() throws Exception { Field customBigNumeric = Field.newBuilder("foo", LegacySQLTypeName.BIGNUMERIC).build(); assertThrows( IllegalArgumentException.class, () -> { SchemaConverters.from(SchemaConvertersConfiguration.of(false, 40, 10)) .convert(customBigNumeric); }); } private Field.Builder numeric() { return Field.newBuilder("foo", LegacySQLTypeName.NUMERIC); } private void assertDecimal(Field.Builder numeric, int expectedPrecision, int expectedScale) { DecimalType decimalType = SchemaConverters.createDecimalTypeFromNumericField( numeric.build(), LegacySQLTypeName.NUMERIC, BigQueryUtil.DEFAULT_NUMERIC_PRECISION, BigQueryUtil.DEFAULT_NUMERIC_SCALE); assertThat(decimalType.precision()).isEqualTo(expectedPrecision); assertThat(decimalType.scale()).isEqualTo(expectedScale); } public final StructType MY_STRUCT = DataTypes.createStructType( new StructField[] { new StructField("Number", DataTypes.IntegerType, true, Metadata.empty()), new StructField("String", DataTypes.StringType, true, Metadata.empty()) }); public final StructField SPARK_INTEGER_FIELD = new StructField("Number", DataTypes.IntegerType, true, Metadata.empty()); public final StructField SPARK_STRING_FIELD = new StructField("String", DataTypes.StringType, false, Metadata.empty()); public final StructField SPARK_NESTED_STRUCT_FIELD = new StructField("Struct", MY_STRUCT, true, Metadata.empty()); public final StructField SPARK_ARRAY_FIELD = new StructField( "Array", DataTypes.createArrayType(DataTypes.IntegerType), true, Metadata.empty()); public final StructField SPARK_DOUBLE_FIELD = new StructField("Float", DataTypes.DoubleType, true, Metadata.empty()); public final StructField SPARK_BOOLEAN_FIELD = new StructField("Boolean", DataTypes.BooleanType, true, Metadata.empty()); public final StructField SPARK_BINARY_FIELD = new StructField("Binary", DataTypes.BinaryType, true, Metadata.empty()); public final StructField SPARK_DATE_FIELD = new StructField("Date", DataTypes.DateType, true, Metadata.empty()); public final StructField SPARK_TIMESTAMP_FIELD = new StructField("TimeStamp", DataTypes.TimestampType, true, Metadata.empty()); public final StructField SPARK_MAP_FIELD = new StructField( "map_f", DataTypes.createMapType(DataTypes.StringType, DataTypes.LongType), false, Metadata.empty()); public final StructField SPARK_JSON_FIELD = new StructField( "json_f", DataTypes.StringType, true, Metadata.fromJson("{\"sqlType\":\"JSON\"}")); public final StructType BIG_SPARK_SCHEMA = new StructType() .add(SPARK_INTEGER_FIELD) .add(SPARK_STRING_FIELD) .add(SPARK_ARRAY_FIELD) .add(SPARK_NESTED_STRUCT_FIELD) .add(SPARK_DOUBLE_FIELD) .add(SPARK_BOOLEAN_FIELD) .add(SPARK_BINARY_FIELD) .add(SPARK_DATE_FIELD) .add(SPARK_TIMESTAMP_FIELD) .add(SPARK_JSON_FIELD) .add(SPARK_MAP_FIELD); public final Field BIGQUERY_INTEGER_FIELD = Field.newBuilder("Number", LegacySQLTypeName.INTEGER, (FieldList) null) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_STRING_FIELD = Field.newBuilder("String", LegacySQLTypeName.STRING, (FieldList) null) .setMode(Field.Mode.REQUIRED) .build(); public final Field BIGQUERY_NESTED_STRUCT_FIELD = Field.newBuilder( "Struct", LegacySQLTypeName.RECORD, Field.newBuilder("Number", LegacySQLTypeName.INTEGER, (FieldList) null) .setMode(Field.Mode.NULLABLE) .build(), Field.newBuilder("String", LegacySQLTypeName.STRING, (FieldList) null) .setMode(Field.Mode.NULLABLE) .build()) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_ARRAY_FIELD = Field.newBuilder("Array", LegacySQLTypeName.INTEGER, (FieldList) null) .setMode(Field.Mode.REPEATED) .build(); public final Field BIGQUERY_FLOAT_FIELD = Field.newBuilder("Float", LegacySQLTypeName.FLOAT, (FieldList) null) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_BOOLEAN_FIELD = Field.newBuilder("Boolean", LegacySQLTypeName.BOOLEAN, (FieldList) null) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_BYTES_FIELD = Field.newBuilder("Binary", LegacySQLTypeName.BYTES, (FieldList) null) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_DATE_FIELD = Field.newBuilder("Date", LegacySQLTypeName.DATE, (FieldList) null) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_TIMESTAMP_FIELD = Field.newBuilder("TimeStamp", LegacySQLTypeName.TIMESTAMP, (FieldList) null) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_JSON_FIELD = Field.newBuilder("json_f", LegacySQLTypeName.JSON, (FieldList) null) .setMode(Field.Mode.NULLABLE) .build(); public final Field BIGQUERY_MAP_FIELD = Field.newBuilder( "map_f", LegacySQLTypeName.RECORD, FieldList.of( Field.newBuilder("key", LegacySQLTypeName.STRING).setMode(Mode.REQUIRED).build(), Field.newBuilder("value", LegacySQLTypeName.INTEGER) .setMode(Mode.NULLABLE) .build())) .setMode(Field.Mode.REPEATED) .build(); public final Schema BIG_BIGQUERY_SCHEMA = Schema.of( BIGQUERY_INTEGER_FIELD, BIGQUERY_STRING_FIELD, BIGQUERY_ARRAY_FIELD, BIGQUERY_NESTED_STRUCT_FIELD, BIGQUERY_FLOAT_FIELD, BIGQUERY_BOOLEAN_FIELD, BIGQUERY_BYTES_FIELD, BIGQUERY_DATE_FIELD, BIGQUERY_TIMESTAMP_FIELD, BIGQUERY_JSON_FIELD, BIGQUERY_MAP_FIELD); public final StructType BIG_SPARK_SCHEMA2 = new StructType() .add(new StructField("foo", DataTypes.StringType, true, Metadata.empty())) .add(new StructField("bar", DataTypes.LongType, true, Metadata.empty())) .add(new StructField("required", DataTypes.BooleanType, false, Metadata.empty())) .add( new StructField( "binary_arr", DataTypes.createArrayType(DataTypes.BinaryType, true), true, Metadata.empty())) .add(new StructField("float", DataTypes.DoubleType, true, Metadata.empty())) .add( new StructField( "numeric", DataTypes.createDecimalType(38, 9), true, Metadata.empty())) .add( new StructField( "big_numeric", DataTypes.createDecimalType(38, 38), true, Metadata.empty())) .add(new StructField("date", DataTypes.DateType, true, Metadata.empty())) .add( new StructField( "times", new StructType() .add(new StructField("time", DataTypes.LongType, true, Metadata.empty())) .add( new StructField( "timestamp", DataTypes.TimestampType, true, Metadata.empty())) .add( new StructField( "datetime", DataTypes.StringType, true, Metadata.empty())), true, Metadata.empty())) .add(SPARK_JSON_FIELD) .add(SPARK_MAP_FIELD); public final Schema BIG_BIGQUERY_SCHEMA2 = Schema.of( Field.of("foo", LegacySQLTypeName.STRING), Field.of("bar", LegacySQLTypeName.INTEGER), Field.newBuilder("required", LegacySQLTypeName.BOOLEAN) .setMode(Field.Mode.REQUIRED) .build(), Field.newBuilder("binary_arr", LegacySQLTypeName.BYTES) .setMode(Field.Mode.REPEATED) .build(), Field.of("float", LegacySQLTypeName.FLOAT), Field.newBuilder("numeric", LegacySQLTypeName.NUMERIC) .setPrecision(new Long(BQ_NUMERIC_PRECISION)) .setScale(new Long(BQ_NUMERIC_SCALE)) .build(), Field.newBuilder("big_numeric", LegacySQLTypeName.BIGNUMERIC) .setPrecision(new Long(BQ_NUMERIC_PRECISION)) .setScale(new Long(BQ_BIGNUMERIC_SCALE)) .build(), Field.of("date", LegacySQLTypeName.DATE), Field.of( "times", LegacySQLTypeName.RECORD, Field.of("time", LegacySQLTypeName.TIME), Field.of("timestamp", LegacySQLTypeName.TIMESTAMP), Field.of("datetime", LegacySQLTypeName.DATETIME)), BIGQUERY_JSON_FIELD, BIGQUERY_MAP_FIELD); public final Schema BIG_BIGQUERY_SCHEMA2_WITH_PSEUDO_COLUMNS = Schema.of( Field.of("foo", LegacySQLTypeName.STRING), Field.of("bar", LegacySQLTypeName.INTEGER), Field.newBuilder("required", LegacySQLTypeName.BOOLEAN) .setMode(Field.Mode.REQUIRED) .build(), Field.newBuilder("binary_arr", LegacySQLTypeName.BYTES) .setMode(Field.Mode.REPEATED) .build(), Field.of("float", LegacySQLTypeName.FLOAT), Field.newBuilder("numeric", LegacySQLTypeName.NUMERIC) .setPrecision(new Long(BQ_NUMERIC_PRECISION)) .setScale(new Long(BQ_NUMERIC_SCALE)) .build(), Field.newBuilder("big_numeric", LegacySQLTypeName.BIGNUMERIC) .setPrecision(new Long(BQ_NUMERIC_PRECISION)) .setScale(new Long(BQ_BIGNUMERIC_SCALE)) .build(), Field.of("date", LegacySQLTypeName.DATE), Field.of( "times", LegacySQLTypeName.RECORD, Field.of("time", LegacySQLTypeName.TIME), Field.of("timestamp", LegacySQLTypeName.TIMESTAMP), Field.of("datetime", LegacySQLTypeName.DATETIME)), BIGQUERY_JSON_FIELD, BIGQUERY_MAP_FIELD, Field.newBuilder("_PARTITIONTIME", LegacySQLTypeName.TIMESTAMP) .setMode(Field.Mode.NULLABLE) .build(), Field.newBuilder("_PARTITIONDATE", LegacySQLTypeName.DATE) .setMode(Field.Mode.NULLABLE) .build()); private StructField simpleStructField(String name, DataType dataType) { return StructField.apply(name, dataType, /* nullable */ true, Metadata.empty()); } /* TODO: translate BigQuery to Spark row conversion tests, from SchemaIteratorSuite.scala private final List BIG_SCHEMA_NAMES_INORDER = Arrays.asList( new String[]{"Number", "String", "Array", "Struct", "Float", "Boolean", "Numeric"}); private final org.apache.avro.Schema AVRO_SCHEMA = createAvroSchema(); private final org.apache.avro.Schema createAvroSchema() throws AssumptionViolatedException { try { org.apache.avro.Schema avroSchema = new org.apache.avro.Schema.Parser(). parse(this.getClass().getResourceAsStream("/alltypes.avroschema.json")); return avroSchema; } catch (IOException e) { throw new AssumptionViolatedException("Could not create AVRO_SCHEMA", e); } } */ } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SparkBigQueryConfigTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.cloud.spark.bigquery.SparkBigQueryConfig.BIGQUERY_JOB_LABEL_PREFIX; import static com.google.cloud.spark.bigquery.SparkBigQueryConfig.BIGQUERY_TABLE_LABEL_PREFIX; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertThrows; import static org.junit.Assert.fail; import com.google.auth.oauth2.ImpersonatedCredentials; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.QueryJobConfiguration.Priority; import com.google.cloud.bigquery.RangePartitioning; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TimePartitioning; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectOutputStream; import java.nio.charset.StandardCharsets; import java.util.Arrays; import java.util.Base64; import java.util.HashMap; import java.util.Locale; import java.util.Map; import java.util.Optional; import java.util.OptionalInt; import java.util.OptionalLong; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.security.UserGroupInformation; import org.apache.spark.sql.internal.SQLConf; import org.junit.Assert; import org.junit.Test; public class SparkBigQueryConfigTest { public static final int DEFAULT_PARALLELISM = 10; public static final String SPARK_VERSION = "2.4.0"; private static ImmutableMap build; ImmutableMap defaultOptions = ImmutableMap.of("table", "dataset.table"); // "project", "test_project"); // to remove the need for default project ImmutableMap defaultGlobalOptions = ImmutableMap.of("spark.executor.cores", "1"); @Test public void testSerializability() throws IOException { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions(defaultOptions); // test to make sure all members can be serialized. new ObjectOutputStream(new ByteArrayOutputStream()) .writeObject( SparkBigQueryConfig.from( options.asMap(), ImmutableMap.of(), hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true)); } @Test public void testDefaults() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions(defaultOptions); SparkBigQueryConfig config = SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTableId()).isEqualTo(TableId.of("dataset", "table")); assertThat(config.getFilter()).isEqualTo(Optional.empty()); assertThat(config.getSchema()).isEqualTo(Optional.empty()); assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.empty()); assertThat(config.getPreferredMinParallelism()).isEqualTo(OptionalInt.empty()); assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.empty()); assertThat(config.getIntermediateFormat()) .isEqualTo(SparkBigQueryConfig.DEFAULT_INTERMEDIATE_FORMAT); assertThat(config.getReadDataFormat()).isEqualTo(SparkBigQueryConfig.DEFAULT_READ_DATA_FORMAT); assertThat(config.getMaterializationProject()).isEqualTo(Optional.empty()); assertThat(config.getMaterializationDataset()).isEqualTo(Optional.empty()); assertThat(config.getPartitionField()).isEqualTo(Optional.empty()); assertThat(config.getPartitionExpirationMs()).isEqualTo(OptionalLong.empty()); assertThat(config.getPartitionRequireFilter()).isEqualTo(Optional.empty()); assertThat(config.getPartitionType()).isEqualTo(Optional.empty()); assertThat(config.getPartitionRange()).isEqualTo(Optional.empty()); assertThat(config.getClusteredFields()).isEqualTo(Optional.empty()); assertThat(config.getCreateDisposition()).isEqualTo(Optional.empty()); assertThat(config.getLoadSchemaUpdateOptions()).isEqualTo(ImmutableList.of()); assertThat(config.getMaxReadRowsRetries()).isEqualTo(3); assertThat(config.isUseAvroLogicalTypes()).isFalse(); assertThat(config.getDecimalTargetTypes()).isEmpty(); assertThat(config.getBigQueryClientConnectTimeout()).isEqualTo(60 * 1000); assertThat(config.getBigQueryClientReadTimeout()).isEqualTo(60 * 1000); assertThat(config.getBigQueryClientRetrySettings().getMaxAttempts()).isEqualTo(10); assertThat(config.getArrowCompressionCodec()) .isEqualTo(CompressionCodec.COMPRESSION_UNSPECIFIED); assertThat(config.getResponseCompressionCodec()) .isEqualTo(ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED); assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.INDIRECT); assertThat(config.getCacheExpirationTimeInMinutes()) .isEqualTo(SparkBigQueryConfig.DEFAULT_CACHE_EXPIRATION_IN_MINUTES); assertThat(config.getTraceId().isPresent()).isTrue(); assertThat(config.getTraceId().get().startsWith("Spark:traceApplicationName:")); assertThat(config.getBigQueryJobLabels()).isEmpty(); assertThat(config.getEnableModeCheckForSchemaFields()).isTrue(); assertThat(config.getQueryJobPriority()).isEqualTo(SparkBigQueryConfig.DEFAULT_JOB_PRIORITY); assertThat(config.getKmsKeyName()).isEqualTo(Optional.empty()); assertThat(config.getAllowMapTypeConversion()).isTrue(); assertThat(config.getBigQueryJobTimeoutInMinutes()).isEqualTo(6 * 60); assertThat(config.getGpn()).isEmpty(); assertThat(config.getSnapshotTimeMillis()).isEmpty(); } @Test public void testConfigFromOptions() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions( ImmutableMap.builder() .put("table", "test_t") .put("dataset", "test_d") .put("project", "test_p") .put("filter", "test > 0") .put("parentProject", "test_pp") .put("maxParallelism", "99") .put("preferredMinParallelism", "10") .put("viewsEnabled", "true") .put("viewMaterializationProject", "vmp") .put("viewMaterializationDataset", "vmd") .put("materializationExpirationTimeInMinutes", "100") .put("readDataFormat", "ARROW") .put("optimizedEmptyProjection", "false") .put("createDisposition", "CREATE_NEVER") .put("temporaryGcsBucket", "some_bucket") .put("intermediateFormat", "ORC") .put("useAvroLogicalTypes", "true") .put("decimalTargetTypes", "NUMERIC,BIGNUMERIC") .put("partitionRequireFilter", "true") .put("partitionType", "HOUR") .put("partitionField", "some_field") .put("partitionExpirationMs", "999") .put("clusteredFields", "field1,field2") .put("allowFieldAddition", "true") .put("allowFieldRelaxation", "true") .put("httpConnectTimeout", "10000") .put("httpReadTimeout", "20000") .put("httpMaxRetry", "5") .put("arrowCompressionCodec", "ZSTD") .put("responseCompressionCodec", "RESPONSE_COMPRESSION_CODEC_LZ4") .put("writeMethod", "direct") .put("cacheExpirationTimeInMinutes", "100") .put("traceJobId", "traceJobId") .put("traceApplicationName", "traceApplicationNameTest") .put("bigQueryJobLabel.foo", "bar") .put("enableModeCheckForSchemaFields", "false") .put("queryJobPriority", "batch") .put("destinationTableKmsKeyName", "some/key/name") .put("allowMapTypeConversion", "false") .put("bigQueryJobTimeoutInMinutes", "30") .put("GPN", "testUser") .put("snapshotTimeMillis", "123456789") .build()); SparkBigQueryConfig config = SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTableId()).isEqualTo(TableId.of("test_p", "test_d", "test_t")); assertThat(config.getFilter()).isEqualTo(Optional.of("test > 0")); assertThat(config.getSchema()).isEqualTo(Optional.empty()); assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.of(99)); assertThat(config.getPreferredMinParallelism()).isEqualTo(OptionalInt.of(10)); assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.of("some_bucket")); assertThat(config.getIntermediateFormat()) .isEqualTo(SparkBigQueryConfig.IntermediateFormat.ORC); assertThat(config.getReadDataFormat()).isEqualTo(DataFormat.ARROW); assertThat(config.getMaterializationProject()).isEqualTo(Optional.of("vmp")); assertThat(config.getMaterializationDataset()).isEqualTo(Optional.of("vmd")); assertThat(config.getMaterializationExpirationTimeInMinutes()).isEqualTo(100); assertThat(config.getPartitionType()).isEqualTo(Optional.of(TimePartitioning.Type.HOUR)); assertThat(config.getPartitionField()).isEqualTo(Optional.of("some_field")); assertThat(config.getPartitionExpirationMs()).isEqualTo(OptionalLong.of(999)); assertThat(config.getPartitionRequireFilter()).isEqualTo(Optional.of(true)); assertThat(config.getClusteredFields().get()).isEqualTo(ImmutableList.of("field1", "field2")); assertThat(config.getCreateDisposition()) .isEqualTo(Optional.of(JobInfo.CreateDisposition.CREATE_NEVER)); assertThat(config.getLoadSchemaUpdateOptions()) .isEqualTo( ImmutableList.of( JobInfo.SchemaUpdateOption.ALLOW_FIELD_ADDITION, JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION)); assertThat(config.getMaxReadRowsRetries()).isEqualTo(3); assertThat(config.isUseAvroLogicalTypes()).isTrue(); assertThat(config.getDecimalTargetTypes()).isEqualTo(ImmutableList.of("NUMERIC", "BIGNUMERIC")); assertThat(config.getBigQueryClientConnectTimeout()).isEqualTo(10000); assertThat(config.getBigQueryClientReadTimeout()).isEqualTo(20000); assertThat(config.getBigQueryClientRetrySettings().getMaxAttempts()).isEqualTo(5); assertThat(config.getArrowCompressionCodec()).isEqualTo(CompressionCodec.ZSTD); assertThat(config.getResponseCompressionCodec()) .isEqualTo(ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_LZ4); assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.DIRECT); assertThat(config.getCacheExpirationTimeInMinutes()).isEqualTo(100); assertThat(config.getTraceId()) .isEqualTo(Optional.of("Spark:traceApplicationNameTest:traceJobId")); assertThat(config.getBigQueryJobLabels()).hasSize(1); assertThat(config.getBigQueryJobLabels()).containsEntry("foo", "bar"); assertThat(config.getEnableModeCheckForSchemaFields()).isFalse(); assertThat(config.getQueryJobPriority()).isEqualTo(Priority.valueOf("BATCH")); assertThat(config.getKmsKeyName()).isEqualTo(Optional.of("some/key/name")); assertThat(config.getAllowMapTypeConversion()).isFalse(); assertThat(config.getBigQueryJobTimeoutInMinutes()).isEqualTo(30); assertThat(config.getGpn().get()).isEqualTo("testUser"); assertThat(config.getSnapshotTimeMillis()).hasValue(123456789L); BigQueryUtil.verifySerialization(config); } @Test public void testConfigFromOptions_rangePartitioning() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions( ImmutableMap.builder() .put("table", "test_t") .put("dataset", "test_d") .put("project", "test_p") .put("partitionRangeStart", "1") .put("partitionRangeEnd", "20") .put("partitionRangeInterval", "2") .put("partitionField", "some_field") .build()); SparkBigQueryConfig config = SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true); RangePartitioning.Range expectedRange = RangePartitioning.Range.newBuilder().setStart(1L).setEnd(20L).setInterval(2L).build(); assertThat(config.getTableId()).isEqualTo(TableId.of("test_p", "test_d", "test_t")); assertThat(config.getPartitionRange()).isEqualTo(Optional.of(expectedRange)); assertThat(config.getPartitionField()).isEqualTo(Optional.of("some_field")); } @Test public void testCacheExpirationSetToZero() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions( ImmutableMap.builder() .put("table", "test_t") .put("dataset", "test_d") .put("project", "test_p") .put("cacheExpirationTimeInMinutes", "0") .build()); SparkBigQueryConfig config = SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getCacheExpirationTimeInMinutes()).isEqualTo(0); } @Test public void testCacheExpirationSetToNegative() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions( ImmutableMap.builder() .put("table", "test_t") .put("dataset", "test_d") .put("project", "test_p") .put("cacheExpirationTimeInMinutes", "-1") .build()); IllegalArgumentException exception = Assert.assertThrows( IllegalArgumentException.class, () -> SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true)); assertThat(exception) .hasMessageThat() .contains( "cacheExpirationTimeInMinutes must have a positive value, the configured value is -1"); } @Test public void testInvalidCompressionCodec() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions( ImmutableMap.builder() .put("table", "test_t") .put("dataset", "test_d") .put("project", "test_p") .put("arrowCompressionCodec", "randomCompression") .put("responseCompressionCodec", "randomCompression") .build()); IllegalArgumentException exception = Assert.assertThrows( IllegalArgumentException.class, () -> SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true)); assertThat(exception) .hasMessageThat() .contains( "Compression codec 'RANDOMCOMPRESSION' for Arrow is not supported." + " Supported formats are " + Arrays.toString(CompressionCodec.values())); } @Test public void testConfigFromGlobalOptions() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions( ImmutableMap.builder().put("table", "dataset.table").build()); ImmutableMap globalOptions = ImmutableMap.builder() .put("viewsEnabled", "true") .put("spark.datasource.bigquery.temporaryGcsBucket", "bucket") .put("bigQueryStorageGrpcEndpoint", "bqsge") .put("bigQueryHttpEndpoint", "bqhe") .put("bqEncodedCreateReadSessionRequest", "ec") .put("writeMethod", "direct") .putAll(defaultGlobalOptions) .build(); SparkBigQueryConfig config = SparkBigQueryConfig.from( options.asMap(), globalOptions, hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true); assertThat(config.isViewsEnabled()).isTrue(); assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.of("bucket")); assertThat(config.toReadSessionCreatorConfig().getBigQueryStorageGrpcEndpoint().get()) .isEqualTo("bqsge"); assertThat(config.toReadSessionCreatorConfig().getBigQueryHttpEndpoint().get()) .isEqualTo("bqhe"); assertThat(config.toReadSessionCreatorConfig().getRequestEncodedBase().get()).isEqualTo("ec"); assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.DIRECT); } @Test public void testGetTableIdWithoutThePartition_PartitionExists() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions( ImmutableMap.of("table", "dataset.table", "datePartition", "20201010")); SparkBigQueryConfig config = SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTableId().getTable()).isEqualTo("table$20201010"); assertThat(config.getTableIdWithoutThePartition().getTable()).isEqualTo("table"); assertThat(config.getTableIdWithoutThePartition().getDataset()) .isEqualTo(config.getTableId().getDataset()); assertThat(config.getTableIdWithoutThePartition().getProject()) .isEqualTo(config.getTableId().getProject()); } @Test public void testGetTableIdWithoutThePartition_PartitionMissing() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions(defaultOptions); SparkBigQueryConfig config = SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, hadoopConfiguration, ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTableIdWithoutThePartition().getTable()) .isEqualTo(config.getTableId().getTable()); assertThat(config.getTableIdWithoutThePartition().getDataset()) .isEqualTo(config.getTableId().getDataset()); assertThat(config.getTableIdWithoutThePartition().getProject()) .isEqualTo(config.getTableId().getProject()); } @Test public void testQueryMatching() { assertThat(SparkBigQueryConfig.isQuery("table")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("dataset.table")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("project.dataset.table")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("select a,b from table")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("SELECT\n a,b\nfrom table")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("SELECT\ta,b from table")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("WITH bar AS (SELECT * FROM foo)\nSELECT * FROM bar")) .isTrue(); assertThat(SparkBigQueryConfig.isQuery("select--comment\n* from table")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("select col1 -- comment\nfrom table")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("select col1 from table -- comment")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("# a comment\nSELECT * from a\nLIMIT 10")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("SELECT\n*\nfrom\ntable")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("SELECT\t*\tfrom\ttable")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("SELECT(COUNT(*))FROM`project.dataset.table`")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("select'asdf'")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("SELECT/**/*/**/FROM/**/table")).isTrue(); } @Test public void testQueryMatchingWithSpacedTables() { assertThat(SparkBigQueryConfig.isQuery("my table")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("dataset.my table")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("project.dataset.my table")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("project.my dataset.my table")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("`project.dataset.my table`")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("dataset.table_from_somewhere")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("dataset.show_all_unions")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("from")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("where")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("dataset.from")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("select * from `dataset.my table`")).isTrue(); assertThat( SparkBigQueryConfig.isQuery( "select field from `project.dataset.my table` where id > 10")) .isTrue(); assertThat( SparkBigQueryConfig.isQuery( "WITH subset AS (SELECT * FROM `dataset.my table`)\nSELECT * FROM subset")) .isTrue(); assertThat(SparkBigQueryConfig.isQuery("/* Query for marketing */ SELECT * FROM my_table")) .isTrue(); assertThat(SparkBigQueryConfig.isQuery("\n-- Query for marketing\nSELECT * FROM my_table")) .isTrue(); assertThat(SparkBigQueryConfig.isQuery("orders from 2023")).isTrue(); assertThat(SparkBigQueryConfig.isQuery("`orders from 2023`")).isFalse(); assertThat(SparkBigQueryConfig.isQuery("`my_project.my_dataset.sales group by product`")) .isFalse(); } @Test public void testJobLabelOverride() { ImmutableMap globalOptions = ImmutableMap.builder() .put("bigQueryJobLabel.foo", "1") .put("bigQueryJobLabel.bar", "1") .putAll(defaultGlobalOptions) .build(); ImmutableMap options = ImmutableMap.builder() .put("bigQueryJobLabel.foo", "2") .put("bigQueryJobLabel.baz", "2") .build(); Map labels = SparkBigQueryConfig.parseBigQueryLabels(globalOptions, options, BIGQUERY_JOB_LABEL_PREFIX); assertThat(labels).hasSize(3); assertThat(labels).containsEntry("foo", "2"); assertThat(labels).containsEntry("bar", "1"); assertThat(labels).containsEntry("baz", "2"); } @Test public void testTableLabelOverride() { ImmutableMap globalOptions = ImmutableMap.builder() .put("bigQueryTableLabel.foo", "1") .put("bigQueryTableLabel.bar", "1") .putAll(defaultGlobalOptions) .build(); ImmutableMap options = ImmutableMap.builder() .put("bigQueryTableLabel.foo", "2") .put("bigQueryTableLabel.baz", "2") .build(); Map labels = SparkBigQueryConfig.parseBigQueryLabels( globalOptions, options, BIGQUERY_TABLE_LABEL_PREFIX); assertThat(labels).hasSize(3); assertThat(labels).containsEntry("foo", "2"); assertThat(labels).containsEntry("bar", "1"); assertThat(labels).containsEntry("baz", "2"); } @Test public void testCustomDefaults() { Configuration hadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions(defaultOptions); SparkBigQueryConfig config = SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, hadoopConfiguration, ImmutableMap.of("writeMethod", "INDIRECT"), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.INDIRECT); } // ported from SparkBigQueryConfigSuite.scala static Configuration hadoopConfiguration = new Configuration(); static { hadoopConfiguration.set( SparkBigQueryConfig.GCS_CONFIG_CREDENTIALS_FILE_PROPERTY, "hadoop_cfile"); hadoopConfiguration.set(SparkBigQueryConfig.GCS_CONFIG_PROJECT_ID_PROPERTY, "hadoop_project"); } static ImmutableMap parameters = ImmutableMap.of("table", "dataset.table"); static ImmutableMap emptyMap = ImmutableMap.of(); static String sparkVersion = "2.4.0"; private static Map asDataSourceOptionsMap(Map map) { Map result = new HashMap<>(); result.putAll(map); for (Map.Entry entry : map.entrySet()) { result.put(entry.getKey().toLowerCase(Locale.US), entry.getValue()); } return ImmutableMap.copyOf(result); } private Map withParameter(String key, String value) { return ImmutableMap.builder().putAll(parameters).put(key, value).build(); } private Map withParameters( String key1, String value1, String key2, String value2) { return ImmutableMap.builder() .putAll(parameters) .put(key1, value1) .put(key2, value2) .build(); } @Test public void testTakingCredentialsFileFromGcsHadoopConfig() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(parameters), defaultGlobalOptions, // allConf hadoopConfiguration, emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getCredentialsFile()).isEqualTo(Optional.of("hadoop_cfile")); } @Test public void testTakingCredentialsFilefromTheProperties() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("credentialsFile", "cfile")), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getCredentialsFile()).isEqualTo(Optional.of("cfile")); } @Test public void testNoCredentialsFileIsProvided() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(parameters), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getCredentialsFile().isPresent()).isFalse(); } @Test public void testTakingProjectIdFromGcsHadoopConfig() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(parameters), defaultGlobalOptions, // allConf hadoopConfiguration, emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTableId().getProject()).isEqualTo("hadoop_project"); } @Test public void testTakingProjectIdFromTheProperties() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("project", "pid")), defaultGlobalOptions, // allConf hadoopConfiguration, emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTableId().getProject()).isEqualTo("pid"); } @Test public void testNoProjectIdIsProvided() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(parameters), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTableId().getProject()).isNull(); } @Test public void testInvalidDataFormat() { try { SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("readDataFormat", "abc")), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); fail("Should throw Exception"); } catch (Exception e) { assertThat(e.getMessage()) .isEqualTo("Data read format 'ABC' is not supported. Supported formats are 'ARROW,AVRO'"); } } @Test public void testDataFormatNoValueIsSet() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(parameters), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getReadDataFormat()).isEqualTo(DataFormat.ARROW); } @Test public void testSetReadDataFormatAsAvro() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("readDataFormat", "Avro")), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getReadDataFormat()).isEqualTo(DataFormat.AVRO); } @Test public void testGetAnyOptionWithFallbackOnlyNewConfigExist() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("materializationProject", "foo")), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getMaterializationProject()).isEqualTo(Optional.of("foo")); } @Test public void testKmsKeyPropagationToReadTableOptions() { String kmsKeyName = "projects/p/locations/l/keyRings/k/cryptoKeys/c"; DataSourceOptions options = new DataSourceOptions( ImmutableMap.of("table", "dataset.table", "destinationTableKmsKeyName", kmsKeyName)); SparkBigQueryConfig config = SparkBigQueryConfig.from( options.asMap(), defaultGlobalOptions, new Configuration(), ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), true); assertThat(config.getKmsKeyName()).isEqualTo(Optional.of(kmsKeyName)); assertThat(config.toReadTableOptions().getKmsKeyName()).isEqualTo(Optional.of(kmsKeyName)); } @Test public void testGetAnyOptionWithFallbackBothConfigsExist() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap( withParameters( "materializationProject", "foo", "viewMaterializationProject", "bar")), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getMaterializationProject()).isEqualTo(Optional.of("foo")); } @Test public void testGetAnyOptionWithFallbackOnlyFallbackExists() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("viewMaterializationProject", "bar")), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getMaterializationProject()).isEqualTo(Optional.of("bar")); } @Test public void testGetAnyOptionWithFallbackNoConfigExists() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(parameters), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getMaterializationProject()).isEqualTo(Optional.empty()); } @Test public void testMaxParallelismOnlyNewConfigExist() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("maxParallelism", "3")), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.of(3)); } @Test public void testMaxParallelismBothConfigsExist() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameters("maxParallelism", "3", "parallelism", "10")), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.of(3)); } @Test public void testMaxParallelismOnlyOldConfigExists() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("parallelism", "10")), defaultGlobalOptions, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.of(10)); } @Test public void testMaxParallelismNoConfigExists() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(parameters), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.empty()); } @Test public void testLoadSchemaUpdateOptionAllowFieldAddition() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("allowFieldAddition", "true")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getLoadSchemaUpdateOptions()) .contains(JobInfo.SchemaUpdateOption.ALLOW_FIELD_ADDITION); } @Test public void testLoadSchemaUpdateOptionAllowFieldRelaxation() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("allowFieldRelaxation", "true")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getLoadSchemaUpdateOptions()) .contains(JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION); } @Test public void testLoadSchemaUpdateOptionBoth() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap( withParameters("allowFieldAddition", "true", "allowFieldRelaxation", "true")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getLoadSchemaUpdateOptions()) .containsAtLeast( JobInfo.SchemaUpdateOption.ALLOW_FIELD_ADDITION, JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION); } @Test public void testLoadSchemaUpdateOptionNone() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(parameters), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getLoadSchemaUpdateOptions()).isEmpty(); } @Test public void testNormalizeAllConf() { Map originalConf = ImmutableMap.of( "key1", "val1", "spark.datasource.bigquery.key2", "val2", "key3", "val3", "spark.datasource.bigquery.key3", "external val3"); Map normalizedConf = SparkBigQueryConfig.normalizeConf(originalConf); assertThat(normalizedConf.get("key1")).isEqualTo("val1"); assertThat(normalizedConf.get("key2")).isEqualTo("val2"); assertThat(normalizedConf.get("key3")).isEqualTo("external val3"); } @Test public void testSetPersistentGcsPath() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("persistentGcsPath", "/persistent/path")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getPersistentGcsPath()).isEqualTo(Optional.of("/persistent/path")); } @Test public void testSetPersistentGcsBucket() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("persistentGcsBucket", "foo")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getPersistentGcsBucket()).isEqualTo(Optional.of("foo")); } @Test public void testSetPersistentGcsBucketWithPrefix() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("persistentGcsBucket", "gs://foo")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getPersistentGcsBucket()).isEqualTo(Optional.of("foo")); } @Test public void testSetTemporaryGcsBucket() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("temporaryGcsBucket", "foo")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.of("foo")); } @Test public void testSetTemporaryGcsBucketWithPrefix() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("temporaryGcsBucket", "gs://foo")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.of("foo")); } @Test public void testBqChannelPoolSize() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("bqChannelPoolSize", "4")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults, 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getChannelPoolSize()).isEqualTo(4); } @Test public void testBqFlowControWindow() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("bqFlowControlWindowBytes", "12345")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getFlowControlWindowBytes()).isEqualTo(Optional.of(12345)); } @Test public void testBadCredentials() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap( withParameter( "credentials", Base64.getEncoder().encodeToString("{}".getBytes(StandardCharsets.UTF_8)))), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); Exception e = assertThrows(Exception.class, () -> config.createCredentials()); assertThat(e.getMessage()).contains("Failed to create Credentials from key"); } @Test public void testImpersonationGlobal() { String sa = "abc@example.iam.gserviceaccount.com"; SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("gcpImpersonationServiceAccount", sa)), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); ImpersonatedCredentials credentials = (ImpersonatedCredentials) config.createCredentials(); assertThat(credentials.getAccount()).isEqualTo(sa); } @Test public void testImpersonationGlobalForUser() { String user = "bob"; String sa = "bob@example.iam.gserviceaccount.com"; UserGroupInformation ugi = UserGroupInformation.createRemoteUser(user); ugi.doAs( (java.security.PrivilegedAction) () -> { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap( withParameter("gcpImpersonationServiceAccountForUser." + user, sa)), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); ImpersonatedCredentials credentials = (ImpersonatedCredentials) config.createCredentials(); assertThat(credentials.getAccount()).isEqualTo(sa); return null; }); } @Test public void testImpersonationGlobalForGroup() { String user = "bob"; String[] groups = new String[] {"datascience"}; String sa = "datascience-team@example.iam.gserviceaccount.com"; UserGroupInformation ugi = UserGroupInformation.createUserForTesting(user, groups); ugi.doAs( (java.security.PrivilegedAction) () -> { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap( withParameter("gcpImpersonationServiceAccountForGroup." + groups[0], sa)), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); ImpersonatedCredentials credentials = (ImpersonatedCredentials) config.createCredentials(); assertThat(credentials.getAccount()).isEqualTo(sa); return null; }); } @Test public void testMissingAvroMessage() { Exception cause = new Exception("test"); IllegalStateException before24 = SparkBigQueryConfig.IntermediateFormat.missingAvroException("2.3.5", cause); assertThat(before24.getMessage()).contains("com.databricks:spark-avro_2.11:4.0.0"); IllegalStateException after24 = SparkBigQueryConfig.IntermediateFormat.missingAvroException("2.4.8", cause); assertThat(after24.getMessage()).contains("org.apache.spark:spark-avro_2.13:2.4.8"); } @Test public void testEnableListInferenceWithDefaultIntermediateFormat() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(withParameter("enableListInference", "true")), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getIntermediateFormat()) .isEqualTo(SparkBigQueryConfig.IntermediateFormat.PARQUET_LIST_INFERENCE_ENABLED); } @Test public void testSystemBucketAsDefaultTemporaryGcsBucket() { Configuration hadoopConfiguration = new Configuration(); hadoopConfiguration.set("fs.gs.system.bucket", "foo"); SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap(defaultOptions), emptyMap, // allConf hadoopConfiguration, emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTemporaryGcsBucket()).hasValue("foo"); } @Test public void testLoadFromQueryConfig() { SparkBigQueryConfig config = SparkBigQueryConfig.from( asDataSourceOptionsMap( ImmutableMap.of( // "query", "SELECT * FROM foo", // "materializationDataset", "materializationDataset" // )), emptyMap, // allConf new Configuration(), emptyMap, // customDefaults 1, new SQLConf(), sparkVersion, /* schema */ Optional.empty(), /* tableIsMandatory */ true); assertThat(config.getTableId()).isNotNull(); assertThat(config.getTableId().getTable()).isEqualTo("QUERY"); } @Test public void testCatalogProjectId() { Map optionsWithProject = new HashMap<>(); optionsWithProject.put("projectId", "my-catalog-project"); optionsWithProject.put("table", "dataset.table"); SparkBigQueryConfig configWithProject = SparkBigQueryConfig.from( optionsWithProject, defaultGlobalOptions, new Configuration(), ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), true); assertThat(configWithProject.getCatalogProjectId()).hasValue("my-catalog-project"); SparkBigQueryConfig configWithoutProject = SparkBigQueryConfig.from( defaultOptions, defaultGlobalOptions, new Configuration(), ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), true); assertThat(configWithoutProject.getCatalogProjectId()).isEmpty(); } @Test public void testCatalogLocation() { Map optionsWithLocation = new HashMap<>(); optionsWithLocation.put("bigquery_location", "US"); optionsWithLocation.put("table", "dataset.table"); SparkBigQueryConfig configWithLocation = SparkBigQueryConfig.from( optionsWithLocation, defaultGlobalOptions, new Configuration(), ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), true); assertThat(configWithLocation.getCatalogLocation()).hasValue("US"); SparkBigQueryConfig configWithoutLocation = SparkBigQueryConfig.from( defaultOptions, defaultGlobalOptions, new Configuration(), ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), true); assertThat(configWithoutLocation.getCatalogLocation()).isEmpty(); } @Test public void testCatalogProjectIdAndLocation() { Map optionsWithProjectAndLocation = new HashMap<>(); optionsWithProjectAndLocation.put("projectId", "my-catalog-project"); optionsWithProjectAndLocation.put("bigquery_location", "EU"); optionsWithProjectAndLocation.put("table", "dataset.table"); SparkBigQueryConfig config = SparkBigQueryConfig.from( optionsWithProjectAndLocation, defaultGlobalOptions, new Configuration(), ImmutableMap.of(), DEFAULT_PARALLELISM, new SQLConf(), SPARK_VERSION, Optional.empty(), true); assertThat(config.getCatalogProjectId()).hasValue("my-catalog-project"); assertThat(config.getCatalogLocation()).hasValue("EU"); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SparkBigQueryProxyAndHttpConfigTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertThrows; import com.google.api.client.http.apache.v2.ApacheHttpTransport; import com.google.api.core.ApiFunction; import com.google.auth.http.HttpTransportFactory; import com.google.cloud.bigquery.connector.common.BigQueryProxyTransporterBuilder; import com.google.common.collect.ImmutableMap; import io.grpc.ManagedChannelBuilder; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectOutputStream; import java.net.URI; import java.net.URISyntaxException; import java.util.*; import org.apache.hadoop.conf.Configuration; import org.apache.spark.sql.internal.SQLConf; import org.junit.Test; public class SparkBigQueryProxyAndHttpConfigTest { private final ImmutableMap defaultOptions = ImmutableMap.builder() .put("proxyAddress", "http://bq-connector-host:1234") .put("proxyUsername", "bq-connector-user") .put("proxyPassword", "bq-connector-password") .put("httpMaxRetry", "10") .put("httpConnectTimeout", "10000") .put("httpReadTimeout", "20000") .build(); private final ImmutableMap defaultGlobalOptions = ImmutableMap.builder() .put("spark.datasource.bigquery.proxyAddress", "http://bq-connector-host-global:1234") .put("spark.datasource.bigquery.proxyUsername", "bq-connector-user-global") .put("spark.datasource.bigquery.proxyPassword", "bq-connector-password-global") .put("spark.datasource.bigquery.httpMaxRetry", "20") .put("spark.datasource.bigquery.httpConnectTimeout", "20000") .put("spark.datasource.bigquery.httpReadTimeout", "30000") .build(); private final Configuration defaultHadoopConfiguration = getHadoopConfiguration(); private Configuration getHadoopConfiguration() { Configuration hadoopConfiguration = new Configuration(); hadoopConfiguration.set("fs.gs.proxy.address", "http://bq-connector-host-hadoop:1234"); hadoopConfiguration.set("fs.gs.proxy.username", "bq-connector-user-hadoop"); hadoopConfiguration.set("fs.gs.proxy.password", "bq-connector-password-hadoop"); hadoopConfiguration.set("fs.gs.http.max.retry", "30"); hadoopConfiguration.set("fs.gs.http.connect-timeout", "30000"); hadoopConfiguration.set("fs.gs.http.read-timeout", "40000"); return hadoopConfiguration; } private static final Optional optionalProxyURI = Optional.of(URI.create("http://bq-connector-transporter-builder-host:1234")); private static final Optional optionalProxyUserName = Optional.of("transporter-builder-user"); private static final Optional optionalProxyPassword = Optional.of("transporter-builder-password"); @Test public void testSerializability() throws IOException { DataSourceOptions options = new DataSourceOptions(defaultOptions); // test to make sure all members can be serialized. new ObjectOutputStream(new ByteArrayOutputStream()) .writeObject( SparkBigQueryProxyAndHttpConfig.from( options.asMap(), defaultGlobalOptions, defaultHadoopConfiguration)); } @Test public void testConfigFromOptions() throws URISyntaxException { Configuration emptyHadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions(defaultOptions); SparkBigQueryProxyAndHttpConfig config = SparkBigQueryProxyAndHttpConfig.from( options.asMap(), ImmutableMap.of(), // empty globalOptions emptyHadoopConfiguration); assertThat(config.getProxyUri()) .isEqualTo(Optional.of(getURI("http", "bq-connector-host", 1234))); assertThat(config.getProxyUsername()).isEqualTo(Optional.of("bq-connector-user")); assertThat(config.getProxyPassword()).isEqualTo(Optional.of("bq-connector-password")); assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(10)); assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(10000)); assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(20000)); } @Test public void testConfigFromGlobalOptions() throws URISyntaxException { Configuration emptyHadoopConfiguration = new Configuration(); ImmutableMap globalOptions = SparkBigQueryConfig.normalizeConf(defaultGlobalOptions); SparkBigQueryProxyAndHttpConfig config = SparkBigQueryProxyAndHttpConfig.from( ImmutableMap.of(), // empty options globalOptions, emptyHadoopConfiguration); assertThat(config.getProxyUri()) .isEqualTo(Optional.of(getURI("http", "bq-connector-host-global", 1234))); assertThat(config.getProxyUsername()).isEqualTo(Optional.of("bq-connector-user-global")); assertThat(config.getProxyPassword()).isEqualTo(Optional.of("bq-connector-password-global")); assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(20)); assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(20000)); assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(30000)); } @Test public void testConfigFromHadoopConfigurationOptions() throws URISyntaxException { SparkBigQueryProxyAndHttpConfig config = SparkBigQueryProxyAndHttpConfig.from( ImmutableMap.of(), // empty options ImmutableMap.of(), // empty global options defaultHadoopConfiguration); assertThat(config.getProxyUri()) .isEqualTo(Optional.of(getURI("http", "bq-connector-host-hadoop", 1234))); assertThat(config.getProxyUsername()).isEqualTo(Optional.of("bq-connector-user-hadoop")); assertThat(config.getProxyPassword()).isEqualTo(Optional.of("bq-connector-password-hadoop")); assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(30)); assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(30000)); assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(40000)); } @Test public void testConfigWithAllThreeParameters() throws URISyntaxException { DataSourceOptions options = new DataSourceOptions(defaultOptions); ImmutableMap globalOptions = SparkBigQueryConfig.normalizeConf(defaultGlobalOptions); SparkBigQueryProxyAndHttpConfig config = SparkBigQueryProxyAndHttpConfig.from( options.asMap(), globalOptions, defaultHadoopConfiguration); assertThat(config.getProxyUri()) .isEqualTo(Optional.of(getURI("http", "bq-connector-host", 1234))); assertThat(config.getProxyUsername()).isEqualTo(Optional.of("bq-connector-user")); assertThat(config.getProxyPassword()).isEqualTo(Optional.of("bq-connector-password")); assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(10)); assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(10000)); assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(20000)); } @Test public void testConfigWithGlobalParametersAndHadoopConfig() throws URISyntaxException { ImmutableMap globalOptions = SparkBigQueryConfig.normalizeConf(defaultGlobalOptions); SparkBigQueryProxyAndHttpConfig config = SparkBigQueryProxyAndHttpConfig.from( ImmutableMap.of(), // empty options globalOptions, defaultHadoopConfiguration); assertThat(config.getProxyUri()) .isEqualTo(Optional.of(getURI("http", "bq-connector-host-global", 1234))); assertThat(config.getProxyUsername()).isEqualTo(Optional.of("bq-connector-user-global")); assertThat(config.getProxyPassword()).isEqualTo(Optional.of("bq-connector-password-global")); assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(20)); assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(20000)); assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(30000)); } @Test public void testConfigViaSparkBigQueryConfigWithAllThreeParameters() throws URISyntaxException { HashMap sparkConfigOptions = new HashMap<>(defaultOptions); sparkConfigOptions.put("table", "dataset.table"); ImmutableMap globalOptions = SparkBigQueryConfig.normalizeConf(defaultGlobalOptions); DataSourceOptions options = new DataSourceOptions(sparkConfigOptions); SparkBigQueryConfig sparkConfig = SparkBigQueryConfig.from( options.asMap(), globalOptions, defaultHadoopConfiguration, ImmutableMap.of(), 10, new SQLConf(), "2.4.0", Optional.empty(), /* tableIsMandatory */ true); SparkBigQueryProxyAndHttpConfig config = (SparkBigQueryProxyAndHttpConfig) sparkConfig.getBigQueryProxyConfig(); assertThat(config.getProxyUri()) .isEqualTo(Optional.of(getURI("http", "bq-connector-host", 1234))); assertThat(config.getProxyUsername()).isEqualTo(Optional.of("bq-connector-user")); assertThat(config.getProxyPassword()).isEqualTo(Optional.of("bq-connector-password")); assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(10)); assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(10000)); assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(20000)); } @Test public void testConfigViaSparkBigQueryConfigWithGlobalOptionsAndHadoopConfiguration() throws URISyntaxException { HashMap sparkConfigOptions = new HashMap<>(); sparkConfigOptions.put("table", "dataset.table"); ImmutableMap globalOptions = SparkBigQueryConfig.normalizeConf(defaultGlobalOptions); DataSourceOptions options = new DataSourceOptions(sparkConfigOptions); SparkBigQueryConfig sparkConfig = SparkBigQueryConfig.from( options.asMap(), // contains only one key "table" globalOptions, defaultHadoopConfiguration, ImmutableMap.of(), 10, new SQLConf(), "2.4.0", Optional.empty(), /* tableIsMandatory */ true); SparkBigQueryProxyAndHttpConfig config = (SparkBigQueryProxyAndHttpConfig) sparkConfig.getBigQueryProxyConfig(); assertThat(config.getProxyUri()) .isEqualTo(Optional.of(getURI("http", "bq-connector-host-global", 1234))); assertThat(config.getProxyUsername()).isEqualTo(Optional.of("bq-connector-user-global")); assertThat(config.getProxyPassword()).isEqualTo(Optional.of("bq-connector-password-global")); assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(20)); assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(20000)); assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(30000)); } @Test public void testConfigViaSparkBigQueryConfigWithHadoopConfiguration() throws URISyntaxException { HashMap sparkConfigOptions = new HashMap<>(); sparkConfigOptions.put("table", "dataset.table"); DataSourceOptions options = new DataSourceOptions(sparkConfigOptions); SparkBigQueryConfig sparkConfig = SparkBigQueryConfig.from( options.asMap(), // contains only one key "table" ImmutableMap.of(), // empty global options, defaultHadoopConfiguration, ImmutableMap.of(), 10, new SQLConf(), "2.4.0", Optional.empty(), /* tableIsMandatory */ true); SparkBigQueryProxyAndHttpConfig config = (SparkBigQueryProxyAndHttpConfig) sparkConfig.getBigQueryProxyConfig(); assertThat(config.getProxyUri()) .isEqualTo(Optional.of(getURI("http", "bq-connector-host-hadoop", 1234))); assertThat(config.getProxyUsername()).isEqualTo(Optional.of("bq-connector-user-hadoop")); assertThat(config.getProxyPassword()).isEqualTo(Optional.of("bq-connector-password-hadoop")); assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(30)); assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(30000)); assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(40000)); } @Test public void testWhenProxyIsNotSetAndUserNamePasswordAreNotNull() { ImmutableMap optionsMap = ImmutableMap.builder() .put("proxyUsername", "bq-connector-user") .put("proxyPassword", "bq-connector-password") .build(); Configuration emptyHadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions(optionsMap); IllegalArgumentException exception = assertThrows( IllegalArgumentException.class, () -> SparkBigQueryProxyAndHttpConfig.from( options.asMap(), ImmutableMap.of(), emptyHadoopConfiguration)); assertThat(exception) .hasMessageThat() .contains( "Please set proxyAddress in order to use a proxy. " + "Setting proxyUsername or proxyPassword is not enough"); } @Test public void testWhenProxyIsSetAndUserNameIsNull() { ImmutableMap optionsMap = ImmutableMap.builder() .put("proxyAddress", "http://bq-connector-host:1234") .put("proxyPassword", "bq-connector-password") .build(); Configuration emptyHadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions(optionsMap); IllegalArgumentException exception = assertThrows( IllegalArgumentException.class, () -> SparkBigQueryProxyAndHttpConfig.from( options.asMap(), ImmutableMap.of(), emptyHadoopConfiguration)); assertThat(exception) .hasMessageThat() .contains("Both proxyUsername and proxyPassword should be defined or not defined together"); } @Test public void testWhenProxyIsSetAndPasswordIsNull() { ImmutableMap optionsMap = ImmutableMap.builder() .put("proxyAddress", "http://bq-connector-host:1234") .put("proxyUsername", "bq-connector-user") .build(); Configuration emptyHadoopConfiguration = new Configuration(); DataSourceOptions options = new DataSourceOptions(optionsMap); IllegalArgumentException exception = assertThrows( IllegalArgumentException.class, () -> SparkBigQueryProxyAndHttpConfig.from( options.asMap(), ImmutableMap.of(), emptyHadoopConfiguration)); assertThat(exception) .hasMessageThat() .contains("Both proxyUsername and proxyPassword should be defined or not defined together"); } @Test public void testParseProxyAddress() throws Exception { // map of input string v/s expected return HashMap inputOutputMap = new HashMap<>(); inputOutputMap.put("bq-connector-host:1234", getURI(null, "bq-connector-host", 1234)); inputOutputMap.put("http://bq-connector-host:1234", getURI("http", "bq-connector-host", 1234)); inputOutputMap.put( "https://bq-connector-host:1234", getURI("https", "bq-connector-host", 1234)); for (Map.Entry entry : inputOutputMap.entrySet()) { String address = entry.getKey(); URI expectedUri = entry.getValue(); URI uri = SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address); assertThat(uri).isEqualTo(expectedUri); } } @Test public void testParseProxyAddressIllegalPath() { ArrayList addresses = new ArrayList<>(); addresses.add("bq-connector-host-with-illegal-char^:1234"); addresses.add("bq-connector-host:1234/some/path"); for (String address : addresses) { IllegalArgumentException exception = assertThrows( IllegalArgumentException.class, () -> SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address)); assertThat(exception) .hasMessageThat() .isEqualTo(String.format("Invalid proxy address '%s'.", address)); } } @Test public void testParseProxyAddressNoPort() { ArrayList addresses = new ArrayList<>(); addresses.add("bq-connector-host"); addresses.add("http://bq-connector-host"); addresses.add("https://bq-connector-host"); for (String address : addresses) { IllegalArgumentException exception = assertThrows( IllegalArgumentException.class, () -> SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address)); assertThat(exception) .hasMessageThat() .isEqualTo(String.format("Proxy address '%s' has no port.", address)); } } @Test public void testParseProxyAddressWrongScheme() { ArrayList addresses = new ArrayList<>(); addresses.add("socks5://bq-connector-host:1234"); addresses.add("htt://bq-connector-host:1234"); // a missing p in http for (String address : addresses) { IllegalArgumentException exception = assertThrows( IllegalArgumentException.class, () -> SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address)); assertThat(exception) .hasMessageThat() .contains(String.format("Proxy address '%s' has invalid scheme", address)); } } @Test public void testParseProxyAddressNoHost() { String address = ":1234"; IllegalArgumentException exception = assertThrows( IllegalArgumentException.class, () -> SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address)); assertThat(exception) .hasMessageThat() .isEqualTo(String.format("Proxy address '%s' has no host.", address)); } private URI getURI(String scheme, String host, int port) throws URISyntaxException { return new URI(scheme, null, host, port, null, null, null); } @Test public void testBigQueryProxyTransporterBuilder() { ApiFunction apiFunction = BigQueryProxyTransporterBuilder.createGrpcChannelConfigurator( optionalProxyURI, optionalProxyUserName, optionalProxyPassword); assertThat(apiFunction.apply(ManagedChannelBuilder.forTarget("test-target"))) .isInstanceOf(ManagedChannelBuilder.class); HttpTransportFactory httpTransportFactory = BigQueryProxyTransporterBuilder.createHttpTransportFactory( optionalProxyURI, optionalProxyUserName, optionalProxyPassword); assertThat(httpTransportFactory.create()).isInstanceOf(ApacheHttpTransport.class); } @Test public void testBigQueryProxyTransporterBuilderWithErrors() { IllegalArgumentException exceptionWithPasswordHttp = assertThrows( IllegalArgumentException.class, () -> BigQueryProxyTransporterBuilder.createHttpTransportFactory( optionalProxyURI, Optional.empty(), optionalProxyPassword)); IllegalArgumentException exceptionWithUserNameHttp = assertThrows( IllegalArgumentException.class, () -> BigQueryProxyTransporterBuilder.createHttpTransportFactory( optionalProxyURI, optionalProxyUserName, Optional.empty())); IllegalArgumentException exceptionWithPasswordGrpc = assertThrows( IllegalArgumentException.class, () -> BigQueryProxyTransporterBuilder.createGrpcChannelConfigurator( optionalProxyURI, Optional.empty(), optionalProxyPassword)); IllegalArgumentException exceptionWithUserNameGrpc = assertThrows( IllegalArgumentException.class, () -> BigQueryProxyTransporterBuilder.createGrpcChannelConfigurator( optionalProxyURI, optionalProxyUserName, Optional.empty())); Arrays.asList( exceptionWithPasswordHttp, exceptionWithUserNameHttp, exceptionWithPasswordGrpc, exceptionWithUserNameGrpc) .stream() .forEach( exception -> assertThat(exception) .hasMessageThat() .contains( "Both proxyUsername and proxyPassword should be defined or not defined together")); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SparkBigQueryUtilTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertThrows; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.TimePartitioning; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.sql.Date; import java.sql.Timestamp; import java.time.Instant; import java.time.LocalDate; import java.util.TimeZone; import org.apache.spark.SparkConf; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.internal.SQLConf; import org.apache.spark.sql.sources.Filter; import org.apache.spark.sql.sources.IsNotNull; import org.apache.spark.sql.types.Metadata; import org.junit.Test; public class SparkBigQueryUtilTest { private SQLConf sqlConf; @Test public void testGetJobIdInternal_hasTagsAndAppId() { String jobId = SparkBigQueryUtil.getJobIdInternal( "dataproc_hash_2cc09905-1a77-3473-9070-d067ea047f4f,dataproc_job_56324553ed9110908c83b6317f4faab,dataproc_master_index_0,dataproc_uuid_4342a069-0b69-504e-bea4-44986422f720", "application_1646959792249_0001"); assertThat(jobId).isEqualTo("dataproc_job_56324553ed9110908c83b6317f4faab"); } @Test public void testGetJobIdInternal_missingTags_hasAppId() { String jobId = SparkBigQueryUtil.getJobIdInternal("missing", "application_1646959792249_0001"); assertThat(jobId).isEqualTo("application_1646959792249_0001"); } @Test public void testGetJobIdInternal_missingBoth() { String jobId = SparkBigQueryUtil.getJobIdInternal("missing", ""); assertThat(jobId).isEqualTo(""); } @Test public void testSaveModeToWriteDisposition() { assertThat(SparkBigQueryUtil.saveModeToWriteDisposition(SaveMode.ErrorIfExists)) .isEqualTo(JobInfo.WriteDisposition.WRITE_EMPTY); assertThat(SparkBigQueryUtil.saveModeToWriteDisposition(SaveMode.Append)) .isEqualTo(JobInfo.WriteDisposition.WRITE_APPEND); assertThat(SparkBigQueryUtil.saveModeToWriteDisposition(SaveMode.Ignore)) .isEqualTo(JobInfo.WriteDisposition.WRITE_APPEND); assertThat(SparkBigQueryUtil.saveModeToWriteDisposition(SaveMode.Overwrite)) .isEqualTo(JobInfo.WriteDisposition.WRITE_TRUNCATE); assertThrows( IllegalArgumentException.class, () -> SparkBigQueryUtil.saveModeToWriteDisposition(null)); } @Test public void testParseSimpleTableId() { SparkSession spark = SparkSession.builder().master("local").getOrCreate(); ImmutableMap options = ImmutableMap.of("table", "dataset.table"); TableId tableId = SparkBigQueryUtil.parseSimpleTableId(spark, options); assertThat(tableId.getDataset()).isEqualTo("dataset"); assertThat(tableId.getTable()).isEqualTo("table"); } @Test public void testIsJson_SqlTypeJson() { Metadata metadata = Metadata.fromJson("{\"sqlType\":\"JSON\"}"); assertThat(SparkBigQueryUtil.isJson(metadata)).isTrue(); } @Test public void testIsJson_SqlTypeOther() { Metadata metadata = Metadata.fromJson("{\"sqlType\":\"OTHER\"}"); assertThat(SparkBigQueryUtil.isJson(metadata)).isFalse(); } @Test public void testIsJson_NoSqlType() { Metadata metadata = Metadata.empty(); assertThat(SparkBigQueryUtil.isJson(metadata)).isFalse(); } @Test public void testExtractPartitionFilters_no_match() { ImmutableList filters = SparkBigQueryUtil.extractPartitionAndClusteringFilters( TableInfo.of( TableId.of("dataset", "table"), StandardTableDefinition.newBuilder() .setTimePartitioning( TimePartitioning.newBuilder(TimePartitioning.Type.DAY) .setField("foo") .build()) .build()), ImmutableList.of(IsNotNull.apply("bar"))); assertThat(filters).isEmpty(); } @Test public void testExtractPartitionFilters_has_match() { ImmutableList filters = SparkBigQueryUtil.extractPartitionAndClusteringFilters( TableInfo.of( TableId.of("dataset", "table"), StandardTableDefinition.newBuilder() .setTimePartitioning( TimePartitioning.newBuilder(TimePartitioning.Type.DAY) .setField("foo") .build()) .build()), ImmutableList.of(IsNotNull.apply("foo"))); assertThat(filters).hasSize(1); assertThat(filters.get(0).references()).asList().containsExactly("foo"); } @Test public void testExtractJobLabels_no_labels() { ImmutableMap labels = SparkBigQueryUtil.extractJobLabels(new SparkConf()); assertThat(labels).isEmpty(); } @Test public void testExtractJobLabels_with_labels() { SparkConf sparkConf = new SparkConf(); sparkConf.set( "spark.yarn.tags", "dataproc_hash_d371badb-9112-3812-8284-ee81f54d3558,dataproc_job_d8f27392957446dbbd7dc28df568e4eb,dataproc_master_index_0,dataproc_uuid_df379ef3-eeda-3234-8941-e1a36a1959a3"); ImmutableMap labels = SparkBigQueryUtil.extractJobLabels(sparkConf); assertThat(labels).hasSize(2); assertThat(labels).containsEntry("dataproc_job_id", "d8f27392957446dbbd7dc28df568e4eb"); assertThat(labels).containsEntry("dataproc_job_uuid", "df379ef3-eeda-3234-8941-e1a36a1959a3"); } @Test public void testSparkDateToBigQuery() { assertThat(SparkBigQueryUtil.sparkDateToBigQuery(16929L)).isEqualTo(16929L); assertThat(SparkBigQueryUtil.sparkDateToBigQuery(Date.valueOf("2016-05-08"))).isEqualTo(16929); assertThat(SparkBigQueryUtil.sparkDateToBigQuery(LocalDate.of(2016, 5, 8))).isEqualTo(16929); } @Test public void testSparkTimestampToBigQuery() { TimeZone.setDefault(TimeZone.getTimeZone("UTC")); assertThat(SparkBigQueryUtil.sparkTimestampToBigQuery(10L)).isEqualTo(10L); assertThat( SparkBigQueryUtil.sparkTimestampToBigQuery(Timestamp.valueOf("2016-05-08 00:00:01.01"))) .isEqualTo(1462665601010000L); assertThat( SparkBigQueryUtil.sparkTimestampToBigQuery(Instant.parse("2016-05-08T00:00:01.010Z"))) .isEqualTo(1462665601010000L); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SparkFilterUtilsTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.bigquery.storage.v1.DataFormat; import java.sql.Date; import java.sql.Timestamp; import java.text.ParseException; import java.time.Instant; import java.time.LocalDate; import java.time.LocalDateTime; import java.time.ZoneOffset; import java.util.ArrayList; import java.util.Arrays; import java.util.Optional; import java.util.TimeZone; import org.apache.spark.sql.sources.*; import org.junit.After; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; @RunWith(Parameterized.class) public class SparkFilterUtilsTest { private static final TimeZone DEFAULT_TZ = TimeZone.getDefault(); private static final DataFormat ARROW = DataFormat.ARROW; private static final DataFormat AVRO = DataFormat.AVRO; @Parameterized.Parameters(name = "{index}: dataFormat={0}, pushAllFilters={1}") public static Iterable data() { return Arrays.asList( new Object[] {AVRO, false}, new Object[] {AVRO, true}, new Object[] {ARROW, false}, new Object[] {ARROW, true}); } private DataFormat dataFormat; private boolean pushAllFilters; public SparkFilterUtilsTest(DataFormat dataFormat, boolean pushAllFilters) { this.dataFormat = dataFormat; this.pushAllFilters = pushAllFilters; } @After public void resetDefaultTimeZone() { TimeZone.setDefault(DEFAULT_TZ); } @Test public void testValidFilters() { ArrayList validFilters = new ArrayList( Arrays.asList( EqualTo.apply("foo", "manatee"), EqualNullSafe.apply("foo", "manatee"), GreaterThan.apply("foo", "aardvark"), GreaterThanOrEqual.apply("bar", 2), LessThan.apply("foo", "zebra"), LessThanOrEqual.apply("bar", 1), In.apply("foo", new Object[] {1, 2, 3}), IsNull.apply("foo"), IsNotNull.apply("foo"), And.apply(IsNull.apply("foo"), IsNotNull.apply("bar")), Not.apply(IsNull.apply("foo")), StringStartsWith.apply("foo", "abc"), StringEndsWith.apply("foo", "def"), StringContains.apply("foo", "abcdef"))); if (dataFormat != ARROW || pushAllFilters) { // If pushAllFilters isn't true, the following filter can't be handled for ARROW. validFilters.add(Or.apply(IsNull.apply("foo"), IsNotNull.apply("foo"))); } validFilters.forEach( f -> assertThat(SparkFilterUtils.unhandledFilters(pushAllFilters, dataFormat, f)).isEmpty()); } @Test public void testMultipleValidFiltersAreHandled() { Filter valid1 = EqualTo.apply("foo", "bar"); Filter valid2 = EqualTo.apply("bar", 1); assertThat(SparkFilterUtils.unhandledFilters(pushAllFilters, dataFormat, valid1, valid2)) .isEmpty(); } @Test public void testInvalidFilters() { Filter valid1 = EqualTo.apply("foo", "bar"); Filter valid2 = EqualTo.apply("bar", 1); Filter valid3 = EqualNullSafe.apply("foo", "bar"); Filter avroValid = Or.apply(IsNull.apply("foo"), IsNotNull.apply("foo")); Iterable unhandled = SparkFilterUtils.unhandledFilters( pushAllFilters, dataFormat, valid1, valid2, valid3, avroValid); if (pushAllFilters) { assertThat(unhandled).isEmpty(); } else if (dataFormat == AVRO) { assertThat(unhandled).isEmpty(); } else { assertThat(unhandled).containsExactly(avroValid); } } @Test public void testNewFilterBehaviourWithFilterOption() { if (dataFormat == ARROW && !pushAllFilters) { // If pushAllFilters isn't true, the following test won't pass for ARROW. return; } checkFilters( pushAllFilters, dataFormat, "(f>1)", "(f>1) AND (`a` > 2)", Optional.of("f>1"), GreaterThan.apply("a", 2)); } @Test public void testNewFilterBehaviourNoFilterOption() { if (dataFormat == ARROW && !pushAllFilters) { // If pushAllFilters isn't true, the following test won't pass for ARROW. return; } checkFilters( pushAllFilters, dataFormat, "", "(`a` > 2)", Optional.empty(), GreaterThan.apply("a", 2)); } private void checkFilters( boolean pushAllFilters, DataFormat readDateFormat, String resultWithoutFilters, String resultWithFilters, Optional configFilter, Filter... filters) { String result1 = SparkFilterUtils.getCompiledFilter(pushAllFilters, readDateFormat, configFilter); assertThat(result1).isEqualTo(resultWithoutFilters); String result2 = SparkFilterUtils.getCompiledFilter(pushAllFilters, readDateFormat, configFilter, filters); assertThat(result2).isEqualTo(resultWithFilters); } @Test public void testStringFilters() { assertThat(SparkFilterUtils.compileFilter(StringStartsWith.apply("foo", "bar"))) .isEqualTo("`foo` LIKE 'bar%'"); assertThat(SparkFilterUtils.compileFilter(StringEndsWith.apply("foo", "bar"))) .isEqualTo("`foo` LIKE '%bar'"); assertThat(SparkFilterUtils.compileFilter(StringContains.apply("foo", "bar"))) .isEqualTo("`foo` LIKE '%bar%'"); assertThat(SparkFilterUtils.compileFilter(StringStartsWith.apply("foo", "b'ar"))) .isEqualTo("`foo` LIKE 'b\\'ar%'"); assertThat(SparkFilterUtils.compileFilter(StringEndsWith.apply("foo", "b'ar"))) .isEqualTo("`foo` LIKE '%b\\'ar'"); assertThat(SparkFilterUtils.compileFilter(StringContains.apply("foo", "b'ar"))) .isEqualTo("`foo` LIKE '%b\\'ar%'"); } @Test public void testNumericAndNullFilters() { assertThat(SparkFilterUtils.compileFilter(EqualTo.apply("foo", 1))).isEqualTo("`foo` = 1"); assertThat(SparkFilterUtils.compileFilter(EqualNullSafe.apply("foo", 1))) .isEqualTo( "(`foo` IS NULL AND 1 IS NULL) OR (`foo` IS NOT NULL AND 1 IS NOT NULL AND `foo` = 1)"); assertThat(SparkFilterUtils.compileFilter(GreaterThan.apply("foo", 2))).isEqualTo("`foo` > 2"); assertThat(SparkFilterUtils.compileFilter(GreaterThanOrEqual.apply("foo", 3))) .isEqualTo("`foo` >= 3"); assertThat(SparkFilterUtils.compileFilter(LessThan.apply("foo", 4))).isEqualTo("`foo` < 4"); assertThat(SparkFilterUtils.compileFilter(LessThanOrEqual.apply("foo", 5))) .isEqualTo("`foo` <= 5"); assertThat(SparkFilterUtils.compileFilter(In.apply("foo", new Object[] {6, 7, 8}))) .isEqualTo("`foo` IN (6, 7, 8)"); assertThat(SparkFilterUtils.compileFilter(IsNull.apply("foo"))).isEqualTo("`foo` IS NULL"); assertThat(SparkFilterUtils.compileFilter(IsNotNull.apply("foo"))) .isEqualTo("`foo` IS NOT NULL"); assertThat( SparkFilterUtils.compileFilter(And.apply(IsNull.apply("foo"), IsNotNull.apply("bar")))) .isEqualTo("(`foo` IS NULL) AND (`bar` IS NOT NULL)"); assertThat( SparkFilterUtils.compileFilter(Or.apply(IsNull.apply("foo"), IsNotNull.apply("bar")))) .isEqualTo("(`foo` IS NULL) OR (`bar` IS NOT NULL)"); assertThat(SparkFilterUtils.compileFilter(Not.apply(IsNull.apply("foo")))) .isEqualTo("NOT (`foo` IS NULL)"); } @Test public void testDateFilters() throws ParseException { assertThat( SparkFilterUtils.compileFilter( In.apply( "datefield", new Object[] {Date.valueOf("2020-09-01"), Date.valueOf("2020-11-03")}))) .isEqualTo("`datefield` IN (DATE '2020-09-01', DATE '2020-11-03')"); } @Test public void testDateFilters_java8Time() { assertThat( SparkFilterUtils.compileFilter( In.apply( "datefield", new Object[] {LocalDate.of(2020, 9, 1), LocalDate.of(2020, 11, 3)}))) .isEqualTo("`datefield` IN (DATE '2020-09-01', DATE '2020-11-03')"); } @Test public void testTimestampFilters() throws ParseException { TimeZone.setDefault(TimeZone.getTimeZone("UTC")); Timestamp ts1 = Timestamp.valueOf("2008-12-25 15:30:00"); Timestamp ts2 = Timestamp.valueOf("2020-01-25 02:10:10"); assertThat(SparkFilterUtils.compileFilter(In.apply("tsfield", new Object[] {ts1, ts2}))) .isEqualTo( "`tsfield` IN (TIMESTAMP '2008-12-25T15:30:00Z', TIMESTAMP '2020-01-25T02:10:10Z')"); } @Test public void testTimestampFilters_java8Time() { Instant ts1 = LocalDateTime.of(2008, 12, 25, 15, 30, 0).toInstant(ZoneOffset.UTC); Instant ts2 = LocalDateTime.of(2020, 1, 25, 2, 10, 10).toInstant(ZoneOffset.UTC); assertThat(SparkFilterUtils.compileFilter(In.apply("tsfield", new Object[] {ts1, ts2}))) .isEqualTo( "`tsfield` IN (TIMESTAMP '2008-12-25T15:30:00Z', TIMESTAMP '2020-01-25T02:10:10Z')"); } @Test public void testTimestampFilters_timezone() { TimeZone.setDefault(TimeZone.getTimeZone("UTC")); Filter part1 = IsNotNull.apply("t1"); Filter part2 = GreaterThanOrEqual.apply("t1", Timestamp.valueOf("2023-01-09 10:00:00.123456")); Filter part3 = LessThanOrEqual.apply("t1", Timestamp.valueOf("2023-01-09 10:00:00.456789")); checkFilters( pushAllFilters, dataFormat, "", "(`t1` <= TIMESTAMP '2023-01-09T10:00:00.456789Z') AND (`t1` >= TIMESTAMP '2023-01-09T10:00:00.123456Z') AND (`t1` IS NOT NULL)", Optional.empty(), part1, part2, part3); // should give same results regardless of local timezone TimeZone.setDefault(TimeZone.getTimeZone("PST")); checkFilters( pushAllFilters, dataFormat, "", "(`t1` <= TIMESTAMP '2023-01-09T10:00:00.456789Z') AND (`t1` >= TIMESTAMP '2023-01-09T10:00:00.123456Z') AND (`t1` IS NOT NULL)", Optional.empty(), part1, part2, part3); } @Test public void testFiltersWithNestedOrAnd_1() { if (dataFormat == ARROW && !pushAllFilters) { // If pushAllFilters isn't true, the following test won't pass for ARROW. return; } // original query // (c1 >= 500 or c1 <= 70 or c1 >= 900 or c3 <= 50) and // (c1 >= 100 or c1 <= 700 or c2 <= 900) and // (c1 >= 5000 or c1 <= 701) Filter part1 = Or.apply( Or.apply(GreaterThanOrEqual.apply("c1", 500), LessThanOrEqual.apply("c1", 70)), Or.apply(GreaterThanOrEqual.apply("c1", 900), LessThanOrEqual.apply("c3", 50))); Filter part2 = Or.apply( Or.apply(GreaterThanOrEqual.apply("c1", 100), LessThanOrEqual.apply("c1", 700)), LessThanOrEqual.apply("c2", 900)); Filter part3 = Or.apply(GreaterThanOrEqual.apply("c1", 5000), LessThanOrEqual.apply("c1", 701)); checkFilters( pushAllFilters, dataFormat, "", "(((`c1` >= 100) OR (`c1` <= 700)) OR (`c2` <= 900)) " + "AND (((`c1` >= 500) OR (`c1` <= 70)) OR ((`c1` >= 900) OR " + "(`c3` <= 50))) AND ((`c1` >= 5000) OR (`c1` <= 701))", Optional.empty(), part1, part2, part3); } @Test public void testFiltersWithNestedOrAnd_2() { if (dataFormat == ARROW && !pushAllFilters) { // If pushAllFilters isn't true, the following test won't pass for ARROW. return; } // original query // (c1 >= 500 and c2 <= 300) or (c1 <= 800 and c3 >= 230) Filter filter = Or.apply( And.apply(GreaterThanOrEqual.apply("c1", 500), LessThanOrEqual.apply("c2", 300)), And.apply(LessThanOrEqual.apply("c1", 800), GreaterThanOrEqual.apply("c3", 230))); checkFilters( pushAllFilters, dataFormat, "", "(((`c1` >= 500) AND (`c2` <= 300)) OR ((`c1` <= 800) AND (`c3` >= 230)))", Optional.empty(), filter); } @Test public void testFiltersWithNestedOrAnd_3() { if (dataFormat == ARROW && !pushAllFilters) { // If pushAllFilters isn't true, the following test won't pass for ARROW. return; } // original query // (((c1 >= 500 or c1 <= 70) and // (c1 >= 900 or (c3 <= 50 and (c2 >= 20 or c3 > 200))))) and // (((c1 >= 5000 or c1 <= 701) and (c2 >= 150 or c3 >= 100)) or // ((c1 >= 50 or c1 <= 71) and (c2 >= 15 or c3 >= 10))) Filter part1 = Or.apply(GreaterThanOrEqual.apply("c1", 500), LessThanOrEqual.apply("c1", 70)); Filter part2 = Or.apply( GreaterThanOrEqual.apply("c1", 900), And.apply( LessThanOrEqual.apply("c3", 50), Or.apply(GreaterThanOrEqual.apply("c2", 20), GreaterThan.apply("c3", 200)))); Filter part3 = Or.apply( And.apply( Or.apply(GreaterThanOrEqual.apply("c1", 5000), LessThanOrEqual.apply("c1", 701)), Or.apply(GreaterThanOrEqual.apply("c2", 150), GreaterThanOrEqual.apply("c3", 100))), And.apply( Or.apply(GreaterThanOrEqual.apply("c1", 50), LessThanOrEqual.apply("c1", 71)), Or.apply(GreaterThanOrEqual.apply("c2", 15), GreaterThanOrEqual.apply("c3", 10)))); checkFilters( pushAllFilters, dataFormat, "", "((((`c1` >= 5000) OR (`c1` <= 701)) AND " + "((`c2` >= 150) OR (`c3` >= 100))) OR (((`c1` >= 50) OR " + "(`c1` <= 71)) AND ((`c2` >= 15) OR (`c3` >= 10)))) AND " + "((`c1` >= 500) OR (`c1` <= 70)) AND ((`c1` >= 900) OR " + "((`c3` <= 50) AND ((`c2` >= 20) OR (`c3` > 200))))", Optional.empty(), part1, part2, part3); } @Test public void testFiltersWithNestedOrAnd_4() { if (dataFormat == ARROW && !pushAllFilters) { // If pushAllFilters isn't true, the following test won't pass for ARROW. return; } Filter part1 = Or.apply( Not.apply(EqualNullSafe.apply("c1", 500)), Not.apply(EqualNullSafe.apply("c2", 500))); Filter part2 = EqualNullSafe.apply("c1", 500); Filter part3 = EqualNullSafe.apply("c2", 500); checkFilters( pushAllFilters, dataFormat, "", "((NOT ((`c1` IS NULL AND 500 IS NULL) OR (`c1` IS NOT NULL " + "AND 500 IS NOT NULL AND `c1` = 500))) " + "OR (NOT ((`c2` IS NULL AND 500 IS NULL) OR (`c2` IS NOT NULL " + "AND 500 IS NOT NULL AND `c2` = 500)))) " + "AND ((`c1` IS NULL AND 500 IS NULL) OR (`c1` IS NOT NULL " + "AND 500 IS NOT NULL AND `c1` = 500)) " + "AND ((`c2` IS NULL AND 500 IS NULL) OR (`c2` IS NOT NULL " + "AND 500 IS NOT NULL AND `c2` = 500))", Optional.empty(), part1, part2, part3); } @Test public void testQuote() { assertThat(SparkFilterUtils.quote("foo")).isEqualTo("`foo`"); assertThat(SparkFilterUtils.quote("foo.bar")).isEqualTo("`foo`.`bar`"); assertThat(SparkFilterUtils.quote("foo.bar.baz")).isEqualTo("`foo`.`bar`.`baz`"); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SupportedCustomDataTypeTest.java ================================================ /* * Copyright 2020 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; import java.util.Optional; import org.apache.spark.ml.linalg.SQLDataTypes; import org.junit.Test; public class SupportedCustomDataTypeTest { @Test public void testVector() throws Exception { Optional vector = SupportedCustomDataType.of(SQLDataTypes.VectorType()); assertThat(vector.isPresent()).isTrue(); } @Test public void testMatrix() throws Exception { Optional matrix = SupportedCustomDataType.of(SQLDataTypes.MatrixType()); assertThat(matrix.isPresent()).isTrue(); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/TestConstants.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static org.apache.spark.sql.functions.array; import static org.apache.spark.sql.functions.from_utc_timestamp; import static org.apache.spark.sql.functions.lit; import static org.apache.spark.sql.functions.struct; import static org.apache.spark.sql.functions.to_date; import com.google.common.collect.ImmutableList; import java.util.List; import java.util.TimeZone; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.spark.sql.Column; import org.apache.spark.sql.types.ArrayType; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.DecimalType; import org.apache.spark.sql.types.Metadata; import org.apache.spark.sql.types.MetadataBuilder; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; public class TestConstants { public static int BIG_NUMERIC_COLUMN_POSITION = 11; public static String ALL_TYPES_TABLE_QUERY_TEMPLATE = // Use DDL to support required fields Stream.of( "create table %s.%s (", "int_req int64 not null,", "int_null int64,", "bl bool,", "str string,", "day date,", "ts timestamp,", "dt datetime,", "tm time,", "binary bytes,", "float float64,", "nums struct,", "big_numeric_nums struct,", "int_arr array,", "int_struct_arr array>", ") as", "", "select", "42 as int_req,", "null as int_null,", "true as bl,", "\"string\" as str,", "cast(\"2019-03-18\" as date) as day,", "cast(\"2019-03-18T01:23:45.678901\" as timestamp) as ts,", "cast(\"2019-03-18T01:23:45.678901\" as datetime) as dt,", "cast(\"01:23:45.678901\" as time) as tm,", "cast(\"bytes\" as bytes) as binary,", "4.2 as float,", "struct(", " cast(\"-99999999999999999999999999999.999999999\" as numeric) as min,", " cast(\"99999999999999999999999999999.999999999\" as numeric) as max,", " cast(3.14 as numeric) as pi,", " cast(\"31415926535897932384626433832.795028841\" as numeric) as big_pi", ") as nums,", "struct(", " cast(\"-578960446186580977117854925043439539266.34992332820282019728792003956564819968\" as bignumeric) as min,", " cast(\"578960446186580977117854925043439539266.34992332820282019728792003956564819967\" as bignumeric) as max", ") as big_numeric_nums,", "[1, 2, 3] as int_arr,", "[(select as struct 1)] as int_struct_arr") .collect(Collectors.joining("\n")); public static int ALL_TYPES_TABLE_SIZE = 224; public static String STRUCT_COLUMN_ORDER_TEST_TABLE_QUERY_TEMPLATE = // Use DDL to support required fields Stream.of( "create table %s (", "TypeDebugging.typeDebug.str string,", "nums struct <", " num1 int64,", " num2 int64,", " num3 int64,", " stringStructArr array >", " >", ")", "as", "select", "\"outer_string\" as str,", "struct(", " 1 as num1,", " 2 as num2,", " 3 as num3,", " [", " struct(\"0:str1\" as str1, \"0:str2\" as str2, \"0:str3\" as str3),", " struct(\"1:str1\" as str1, \"1:str2\" as str2, \"1:str3\" as str3)", " ] as stringStructArr", ") as nums") .collect(Collectors.joining("\n")); public static ColumnOrderTestClass STRUCT_COLUMN_ORDER_TEST_TABLE_COLS = new ColumnOrderTestClass( new NumStruct( 3L, 2L, 1L, ImmutableList.of( new StringStruct("0:str3", "0:str1", "0:str2"), new StringStruct("1:str3", "1:str1", "1:str2"))), "outer_string"); private static DecimalType BQ_NUMERIC = DataTypes.createDecimalType(38, 9); private static DecimalType BQ_BIGNUMERIC = DataTypes.createDecimalType(38, 38); public static StructType ALL_TYPES_TABLE_SCHEMA = new StructType( copy( new StructField("int_req", DataTypes.LongType, false, Metadata.empty()), new StructField("int_null", DataTypes.LongType, true, Metadata.empty()), new StructField("bl", DataTypes.BooleanType, true, Metadata.empty()), new StructField("str", DataTypes.StringType, true, Metadata.empty()), new StructField("day", DataTypes.DateType, true, Metadata.empty()), new StructField("ts", DataTypes.TimestampType, true, Metadata.empty()), new StructField("dt", DataTypes.StringType, true, Metadata.empty()), new StructField("tm", DataTypes.LongType, true, Metadata.empty()), new StructField("binary", DataTypes.BinaryType, true, Metadata.empty()), new StructField("float", DataTypes.DoubleType, true, Metadata.empty()), new StructField( "nums", new StructType( copy( new StructField("min", BQ_NUMERIC, true, Metadata.empty()), new StructField("max", BQ_NUMERIC, true, Metadata.empty()), new StructField("pi", BQ_NUMERIC, true, Metadata.empty()), new StructField("big_pi", BQ_NUMERIC, true, Metadata.empty()))), true, Metadata.empty()), new StructField( "big_numeric_nums", new StructType( copy( new StructField("min", BQ_BIGNUMERIC, true, Metadata.empty()), new StructField("max", BQ_BIGNUMERIC, true, Metadata.empty()))), true, Metadata.empty()), new StructField( "int_arr", new ArrayType(DataTypes.LongType, true), true, Metadata.empty()), new StructField( "int_struct_arr", new ArrayType( new StructType( copy(new StructField("i", DataTypes.LongType, true, Metadata.empty()))), true), true, Metadata.empty()), new StructField( "str_json", DataTypes.StringType, true, new MetadataBuilder().putString("sqlType", "JSON").build()))); public static Column[] ALL_TYPES_TABLE_COLS = new Column[] { lit(42L), lit(null), lit(true), lit("string"), to_date(lit("2019-03-18")), from_utc_timestamp(lit("2019-03-18T01:23:45.678901"), TimeZone.getDefault().getID()), lit("2019-03-18T01:23:45.678901"), lit(5025678901L), lit("bytes").cast("BINARY"), lit(4.2), struct( lit("-99999999999999999999999999999.999999999").cast(BQ_NUMERIC), lit("99999999999999999999999999999.999999999").cast(BQ_NUMERIC), lit(3.14).cast(BQ_NUMERIC), lit("31415926535897932384626433832.795028841").cast(BQ_NUMERIC)), struct( lit("-0.34992332820282019728792003956564819968"), lit("0.34992332820282019728792003956564819967")), array(lit(1), lit(2), lit(3)), array(struct(lit(1))) }; private TestConstants() {} private static T[] copy(T... elements) { return elements; } public static class StringStruct { private String str3; private String str1; private String str2; public StringStruct(String str3, String str1, String str2) { this.str3 = str3; this.str1 = str1; this.str2 = str2; } public String getStr3() { return str3; } public void setStr3(String str3) { this.str3 = str3; } public String getStr1() { return str1; } public void setStr1(String str1) { this.str1 = str1; } public String getStr2() { return str2; } public void setStr2(String str2) { this.str2 = str2; } } public static class NumStruct { private Long num3; private Long num2; private Long num1; private List stringStructArr; public NumStruct(Long num3, Long num2, Long num1, List stringStructArr) { this.num3 = num3; this.num2 = num2; this.num1 = num1; this.stringStructArr = stringStructArr; } public Long getNum3() { return num3; } public void setNum3(Long num3) { this.num3 = num3; } public Long getNum2() { return num2; } public void setNum2(Long num2) { this.num2 = num2; } public Long getNum1() { return num1; } public void setNum1(Long num1) { this.num1 = num1; } public List getStringStructArr() { return stringStructArr; } public void setStringStructArr(List stringStructArr) { this.stringStructArr = stringStructArr; } } public static class ColumnOrderTestClass { private NumStruct nums; private String str; public ColumnOrderTestClass(NumStruct nums, String str) { this.nums = nums; this.str = str; } public NumStruct getNums() { return nums; } public void setNums(NumStruct nums) { this.nums = nums; } public String getStr() { return str; } public void setStr(String str) { this.str = str; } } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/AcceptanceTestConstants.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import com.google.common.base.Preconditions; public class AcceptanceTestConstants { public static final String REGION = "us-west1"; public static final String DATAPROC_ENDPOINT = REGION + "-dataproc.googleapis.com:443"; public static final String PROJECT_ID = Preconditions.checkNotNull( System.getenv("GOOGLE_CLOUD_PROJECT"), "Please set the 'GOOGLE_CLOUD_PROJECT' environment variable"); public static final String SERVERLESS_NETWORK_URI = Preconditions.checkNotNull( System.getenv("SERVERLESS_NETWORK_URI"), "Please set the 'SERVERLESS_NETWORK_URI' environment variable"); public static final String CONNECTOR_JAR_DIRECTORY = "target"; public static final String MIN_BIG_NUMERIC = "-0.34992332820282019728792003956564819968"; public static final String MAX_BIG_NUMERIC = "0.34992332820282019728792003956564819967"; public static final String BIGNUMERIC_TABLE_QUERY_TEMPLATE = "create table %s.%s (\n" + " min bignumeric(38,38),\n" + " max bignumeric(38,38)\n" + " ) \n" + " as \n" + " select \n" + " cast(\"" + MIN_BIG_NUMERIC + "\" as bignumeric) as min,\n" + " cast(\"" + MAX_BIG_NUMERIC + "\" as bignumeric) as max"; protected static final long SERVERLESS_BATCH_TIMEOUT_IN_SECONDS = 600; } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/AcceptanceTestContext.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class AcceptanceTestContext { final String testId; final String clusterId; final String connectorJarUri; final String testBaseGcsDir; final String bqDataset; final String bqTable; final String bqStreamTable; public AcceptanceTestContext( String testId, String clusterId, String testBaseGcsDir, String connectorJarUri) { this.testId = testId; this.clusterId = clusterId; this.testBaseGcsDir = testBaseGcsDir; this.connectorJarUri = connectorJarUri; this.bqDataset = "bq_acceptance_test_dataset_" + testId.replace("-", "_"); this.bqTable = "bq_acceptance_test_table_" + testId.replace("-", "_"); this.bqStreamTable = "bq_write_stream_test_table_" + testId.replace("-", "_"); } public String getScriptUri(String testName) { return testBaseGcsDir + "/" + testName + "/script.py"; } public String getResultsDirUri(String testName) { return testBaseGcsDir + "/" + testName + "/results"; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/AcceptanceTestUtils.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import com.google.cloud.WriteChannel; import com.google.cloud.bigquery.BigQuery; import com.google.cloud.bigquery.BigQuery.DatasetDeleteOption; import com.google.cloud.bigquery.BigQueryOptions; import com.google.cloud.bigquery.DatasetId; import com.google.cloud.bigquery.DatasetInfo; import com.google.cloud.bigquery.QueryJobConfiguration; import com.google.cloud.storage.*; import com.google.common.io.ByteStreams; import java.io.*; import java.net.URI; import java.nio.ByteBuffer; import java.nio.MappedByteBuffer; import java.nio.channels.FileChannel; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.attribute.FileTime; import java.util.Comparator; import java.util.function.Predicate; import java.util.stream.StreamSupport; public class AcceptanceTestUtils { // must be set in order to run the acceptance test static final String BUCKET = System.getenv("ACCEPTANCE_TEST_BUCKET"); private static final BigQuery bq = BigQueryOptions.getDefaultInstance().getService(); static Storage storage = new StorageOptions.DefaultStorageFactory().create(StorageOptions.getDefaultInstance()); public static Path getArtifact(Path targetDir, String prefix, String suffix) { Predicate prefixSuffixChecker = prefixSuffixChecker(prefix, suffix); try { return Files.list(targetDir) .filter(Files::isRegularFile) .filter(prefixSuffixChecker) .max(Comparator.comparing(AcceptanceTestUtils::lastModifiedTime)) .get(); } catch (IOException e) { throw new UncheckedIOException(e.getMessage(), e); } } private static Predicate prefixSuffixChecker(final String prefix, final String suffix) { return path -> { String name = path.toFile().getName(); return name.startsWith(prefix) && name.endsWith(suffix) && name.indexOf("-javadoc") == -1; }; } private static FileTime lastModifiedTime(Path path) { try { return Files.getLastModifiedTime(path); } catch (IOException e) { throw new UncheckedIOException(e.getMessage(), e); } } public static BlobId copyToGcs(Path source, String destinationUri, String contentType) throws Exception { File sourceFile = source.toFile(); try (FileInputStream sourceInputStream = new FileInputStream(sourceFile)) { FileChannel sourceFileChannel = sourceInputStream.getChannel(); MappedByteBuffer sourceContent = sourceFileChannel.map(FileChannel.MapMode.READ_ONLY, 0, sourceFile.length()); return uploadToGcs(sourceContent, destinationUri, contentType); } catch (IOException e) { throw new UncheckedIOException( String.format("Failed to write '%s' to '%s'", source, destinationUri), e); } } public static BlobId uploadToGcs(InputStream source, String destinationUri, String contentType) throws Exception { try { ByteBuffer sourceContent = ByteBuffer.wrap(ByteStreams.toByteArray(source)); return uploadToGcs(sourceContent, destinationUri, contentType); } catch (IOException e) { throw new UncheckedIOException(String.format("Failed to write to '%s'", destinationUri), e); } } public static BlobId uploadToGcs(ByteBuffer content, String destinationUri, String contentType) throws Exception { URI uri = new URI(destinationUri); BlobId blobId = BlobId.of(uri.getAuthority(), uri.getPath().substring(1)); BlobInfo blobInfo = BlobInfo.newBuilder(blobId).setContentType(contentType).build(); try (WriteChannel writer = storage.writer(blobInfo)) { writer.write(content); } catch (IOException e) { throw new UncheckedIOException(String.format("Failed to write to '%s'", destinationUri), e); } return blobId; } public static String createTestBaseGcsDir(String testId) { return String.format("gs://%s/tests/%s", BUCKET, testId); } public static String getCsv(String resultsDirUri) throws Exception { URI uri = new URI(resultsDirUri); Blob csvBlob = StreamSupport.stream( storage .list( uri.getAuthority(), Storage.BlobListOption.prefix(uri.getPath().substring(1))) .iterateAll() .spliterator(), false) .filter(blob -> blob.getName().endsWith("csv")) .findFirst() .get(); return new String(storage.readAllBytes(csvBlob.getBlobId()), StandardCharsets.UTF_8); } public static void deleteGcsDir(String testBaseGcsDir) throws Exception { URI uri = new URI(testBaseGcsDir); BlobId[] blobIds = StreamSupport.stream( storage .list( uri.getAuthority(), Storage.BlobListOption.prefix(uri.getPath().substring(1))) .iterateAll() .spliterator(), false) .map(Blob::getBlobId) .toArray(BlobId[]::new); if (blobIds.length > 1) { storage.delete(blobIds); } } public static void createBqDataset(String dataset) { DatasetId datasetId = DatasetId.of(dataset); bq.create(DatasetInfo.of(datasetId)); } public static int getNumOfRowsOfBqTable(String dataset, String table) { return bq.getTable(dataset, table).getNumRows().intValue(); } public static void runBqQuery(String query) throws Exception { bq.query(QueryJobConfiguration.of(query)); } public static void deleteBqDatasetAndTables(String dataset) { bq.delete(DatasetId.of(dataset), DatasetDeleteOption.deleteContents()); } static void uploadConnectorJar(String targetDir, String prefix, String connectorJarUri) throws Exception { Path targetDirPath = Paths.get(targetDir); Path assemblyJar = AcceptanceTestUtils.getArtifact(targetDirPath, prefix, ".jar"); AcceptanceTestUtils.copyToGcs(assemblyJar, connectorJarUri, "application/java-archive"); } public static String generateClusterName(String testId) { return String.format("sbc-acceptance-%s", testId); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/BigNumericDataprocServerlessAcceptanceTestBase.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.dataproc.v1.Batch; import com.google.cloud.dataproc.v1.Batch.State; import java.io.FileInputStream; import java.io.InputStream; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Arrays; import org.junit.Test; /** * Tests the correct behavior of the python support lib and the BigNumeric python custom data type */ public class BigNumericDataprocServerlessAcceptanceTestBase extends DataprocServerlessAcceptanceTestBase { public BigNumericDataprocServerlessAcceptanceTestBase( String connectorJarPrefix, String s8sImageVersion) { super(connectorJarPrefix, s8sImageVersion); } @Test public void testBatch() throws Exception { Path pythonLibTargetDir = Paths.get("../../spark-bigquery-python-lib/target"); Path pythonLibZip = AcceptanceTestUtils.getArtifact(pythonLibTargetDir, "spark-bigquery", ".zip"); String zipFileUri = context.testBaseGcsDir + "/" + testName + "/big_numeric_acceptance_test.zip"; try (InputStream pythonLib = new FileInputStream(pythonLibZip.toFile())) { AcceptanceTestUtils.uploadToGcs(pythonLib, zipFileUri, "application/zip"); } runBqQuery( String.format( AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE, context.bqDataset, context.bqTable)); String tableName = context.bqDataset + "." + context.bqTable; Batch batch = createAndRunPythonBatch( context, testName, "big_numeric.py", zipFileUri, Arrays.asList(tableName, context.getResultsDirUri(testName))); assertThat(batch.getState()).isEqualTo(State.SUCCEEDED); String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + "," + MAX_BIG_NUMERIC); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/DataprocAcceptanceTestBase.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.DATAPROC_ENDPOINT; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.PROJECT_ID; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.REGION; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assume.assumeTrue; import com.google.cloud.dataproc.v1.*; import com.google.common.collect.ImmutableList; import java.io.FileInputStream; import java.nio.file.Path; import java.nio.file.Paths; import java.time.Duration; import java.util.Arrays; import java.util.List; import java.util.Map; import java.util.concurrent.CompletableFuture; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors; import org.junit.Test; public class DataprocAcceptanceTestBase { private static final long TIMEOUT_IN_SECONDS = 180; protected static final ClusterProperty DISABLE_CONSCRYPT = ClusterProperty.of("dataproc:dataproc.conscrypt.provider.enable", "false", "nc"); protected static final ImmutableList DISABLE_CONSCRYPT_LIST = ImmutableList.builder().add(DISABLE_CONSCRYPT).build(); private AcceptanceTestContext context; private boolean sparkStreamingSupported; protected DataprocAcceptanceTestBase(AcceptanceTestContext context) { this(context, true); } protected DataprocAcceptanceTestBase( AcceptanceTestContext context, boolean sparkStreamingSupported) { this.context = context; this.sparkStreamingSupported = sparkStreamingSupported; } protected static AcceptanceTestContext setup( String dataprocImageVersion, String connectorJarPrefix, List clusterProperties) throws Exception { String clusterPropertiesMarkers = clusterProperties.isEmpty() ? "" : clusterProperties.stream() .map(ClusterProperty::getMarker) .collect(Collectors.joining("-", "-", "")); String testId = String.format( "%s-%s%s%s", System.currentTimeMillis(), dataprocImageVersion.charAt(0), dataprocImageVersion.charAt(2), clusterPropertiesMarkers); Map properties = clusterProperties.stream() .collect(Collectors.toMap(ClusterProperty::getKey, ClusterProperty::getValue)); String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId); String connectorJarUri = testBaseGcsDir + "/connector.jar"; uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, connectorJarUri); String clusterName = createClusterIfNeeded(dataprocImageVersion, testId, properties, connectorJarUri); AcceptanceTestContext acceptanceTestContext = new AcceptanceTestContext(testId, clusterName, testBaseGcsDir, connectorJarUri); createBqDataset(acceptanceTestContext.bqDataset); return acceptanceTestContext; } protected static void tearDown(AcceptanceTestContext context) throws Exception { if (context != null) { terminateCluster(context.clusterId); AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir); deleteBqDatasetAndTables(context.bqDataset); } } protected static String createClusterIfNeeded( String dataprocImageVersion, String testId, Map properties, String connectorJarUri) throws Exception { String clusterName = generateClusterName(testId); cluster( client -> client .createClusterAsync( PROJECT_ID, REGION, createCluster(clusterName, dataprocImageVersion, properties, connectorJarUri)) .get()); return clusterName; } protected static void terminateCluster(String clusterName) throws Exception { cluster(client -> client.deleteClusterAsync(PROJECT_ID, REGION, clusterName).get()); } private static void cluster(ThrowingConsumer command) throws Exception { try (ClusterControllerClient clusterControllerClient = ClusterControllerClient.create( ClusterControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) { command.accept(clusterControllerClient); } } private static Cluster createCluster( String clusterName, String dataprocImageVersion, Map properties, String connectorJarUri) { return Cluster.newBuilder() .setClusterName(clusterName) .setProjectId(PROJECT_ID) .setConfig( ClusterConfig.newBuilder() .setGceClusterConfig( GceClusterConfig.newBuilder() .setNetworkUri("default") .setInternalIpOnly(false) .setZoneUri(REGION + "-a") .putMetadata("SPARK_BQ_CONNECTOR_URL", connectorJarUri)) .setMasterConfig( InstanceGroupConfig.newBuilder() .setNumInstances(1) .setMachineTypeUri("n1-standard-4") .setDiskConfig( DiskConfig.newBuilder() .setBootDiskType("pd-standard") .setBootDiskSizeGb(300) .setNumLocalSsds(0))) .setWorkerConfig( InstanceGroupConfig.newBuilder() .setNumInstances(2) .setMachineTypeUri("n1-standard-4") .setDiskConfig( DiskConfig.newBuilder() .setBootDiskType("pd-standard") .setBootDiskSizeGb(300) .setNumLocalSsds(0))) .setSoftwareConfig( SoftwareConfig.newBuilder() .setImageVersion(dataprocImageVersion) .putAllProperties(properties))) .build(); } @Test public void testRead() throws Exception { String testName = "test-read"; Job result = createAndRunPythonJob( testName, "read_shakespeare.py", null, Arrays.asList(context.getResultsDirUri(testName))); assertThat(result.getStatus().getState()).isEqualTo(JobStatus.State.DONE); String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); assertThat(output.trim()).isEqualTo("spark,10"); } @Test public void writeStream() throws Exception { // TODO: Should be removed once streaming is supported in DSv2 assumeTrue("Spark streaming is not supported by this connector", sparkStreamingSupported); String testName = "write-stream-test"; String jsonFileName = "write_stream_data.json"; String jsonFileUri = context.testBaseGcsDir + "/" + testName + "/json/" + jsonFileName; AcceptanceTestUtils.uploadToGcs( getClass().getResourceAsStream("/acceptance/" + jsonFileName), jsonFileUri, "application/json"); Job result = createAndRunPythonJob( testName, "write_stream.py", null, Arrays.asList( context.testBaseGcsDir + "/" + testName + "/json/", context.bqDataset, context.bqStreamTable, AcceptanceTestUtils.BUCKET)); assertThat(result.getStatus().getState()).isEqualTo(JobStatus.State.DONE); int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable); assertThat(numOfRows == 2); } @Test public void testBigNumeric() throws Exception { String testName = "test-big-numeric"; Path pythonLibTargetDir = Paths.get("../../spark-bigquery-python-lib/target"); Path pythonLibZip = AcceptanceTestUtils.getArtifact(pythonLibTargetDir, "spark-bigquery", ".zip"); String zipFileUri = context.testBaseGcsDir + "/" + testName + "/big_numeric_acceptance_test.zip"; AcceptanceTestUtils.uploadToGcs( new FileInputStream(pythonLibZip.toFile()), zipFileUri, "application/zip"); runBqQuery( String.format( AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE, context.bqDataset, context.bqTable)); String tableName = context.bqDataset + "." + context.bqTable; Job result = createAndRunPythonJob( testName, "big_numeric.py", zipFileUri, Arrays.asList(tableName, context.getResultsDirUri(testName))); assertThat(result.getStatus().getState()).isEqualTo(JobStatus.State.DONE); String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + "," + MAX_BIG_NUMERIC); } private Job createAndRunPythonJob( String testName, String pythonFile, String pythonZipUri, List args) throws Exception { AcceptanceTestUtils.uploadToGcs( getClass().getResourceAsStream("/acceptance/" + pythonFile), context.getScriptUri(testName), "text/x-python"); Job job = Job.newBuilder() .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId)) .setPysparkJob(createPySparkJobBuilder(testName, pythonZipUri, args)) .build(); return runAndWait(job, Duration.ofSeconds(TIMEOUT_IN_SECONDS)); } private PySparkJob.Builder createPySparkJobBuilder( String testName, String pythonZipUri, List args) { PySparkJob.Builder builder = PySparkJob.newBuilder() .setMainPythonFileUri(context.getScriptUri(testName)) .addJarFileUris(context.connectorJarUri); if (pythonZipUri != null && pythonZipUri.length() != 0) { builder.addPythonFileUris(pythonZipUri); builder.addFileUris(pythonZipUri); } if (args != null && args.size() != 0) { builder.addAllArgs(args); } return builder; } private Job runAndWait(Job job, Duration timeout) throws Exception { try (JobControllerClient jobControllerClient = JobControllerClient.create( JobControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) { Job request = jobControllerClient.submitJob(PROJECT_ID, REGION, job); String jobId = request.getReference().getJobId(); CompletableFuture finishedJobFuture = CompletableFuture.supplyAsync( () -> waitForJobCompletion(jobControllerClient, PROJECT_ID, REGION, jobId)); Job jobInfo = finishedJobFuture.get(timeout.getSeconds(), TimeUnit.SECONDS); return jobInfo; } } Job waitForJobCompletion( JobControllerClient jobControllerClient, String projectId, String region, String jobId) { while (true) { // Poll the service periodically until the Job is in a finished state. Job jobInfo = jobControllerClient.getJob(projectId, region, jobId); switch (jobInfo.getStatus().getState()) { case DONE: case CANCELLED: case ERROR: return jobInfo; default: try { // Wait a second in between polling attempts. TimeUnit.SECONDS.sleep(1); } catch (InterruptedException e) { throw new RuntimeException(e); } } } } @FunctionalInterface private interface ThrowingConsumer { void accept(T t) throws Exception; } protected static class ClusterProperty { private String key; private String value; private String marker; private ClusterProperty(String key, String value, String marker) { this.key = key; this.value = value; this.marker = marker; } protected static ClusterProperty of(String key, String value, String marker) { return new ClusterProperty(key, value, marker); } public String getKey() { return key; } public String getValue() { return value; } public String getMarker() { return marker; } } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/DataprocServerlessAcceptanceTestBase.java ================================================ /* * Copyright 2022 Google LLC * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar; import com.google.api.gax.longrunning.OperationFuture; import com.google.api.gax.longrunning.OperationTimedPollAlgorithm; import com.google.api.gax.retrying.RetrySettings; import com.google.api.gax.retrying.TimedRetryAlgorithm; import com.google.cloud.dataproc.v1.Batch; import com.google.cloud.dataproc.v1.BatchControllerClient; import com.google.cloud.dataproc.v1.BatchControllerSettings; import com.google.cloud.dataproc.v1.BatchOperationMetadata; import com.google.cloud.dataproc.v1.CreateBatchRequest; import com.google.cloud.dataproc.v1.EnvironmentConfig; import com.google.cloud.dataproc.v1.ExecutionConfig; import com.google.cloud.dataproc.v1.PySparkBatch; import com.google.cloud.dataproc.v1.RuntimeConfig; import java.util.List; import java.util.Locale; import java.util.concurrent.TimeUnit; import org.junit.After; import org.junit.Before; import org.threeten.bp.Duration; public class DataprocServerlessAcceptanceTestBase { BatchControllerClient batchController; String testName = getClass() .getSimpleName() .substring(0, getClass().getSimpleName().length() - 32) .toLowerCase(Locale.ENGLISH); String testId = String.format("%s-%s", testName, System.currentTimeMillis()); String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId); String connectorJarUri = testBaseGcsDir + "/connector.jar"; AcceptanceTestContext context = new AcceptanceTestContext( testId, generateClusterName(testId), testBaseGcsDir, connectorJarUri); private final String connectorJarPrefix; private final String s8sImageVersion; public DataprocServerlessAcceptanceTestBase(String connectorJarPrefix, String s8sImageVersion) { this.connectorJarPrefix = connectorJarPrefix; this.s8sImageVersion = s8sImageVersion; } @Before public void createBatchControllerClient() throws Exception { uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, context.connectorJarUri); createBqDataset(context.bqDataset); BatchControllerSettings.Builder batchControllerSettingsBuilder = BatchControllerSettings.newBuilder().setEndpoint(AcceptanceTestConstants.DATAPROC_ENDPOINT); TimedRetryAlgorithm timedRetryAlgorithm = OperationTimedPollAlgorithm.create( RetrySettings.newBuilder() .setInitialRetryDelay(Duration.ofMillis(5000L)) .setRetryDelayMultiplier(1) .setMaxRetryDelay(Duration.ofMillis(45000L)) .setInitialRpcTimeout(Duration.ZERO) .setRpcTimeoutMultiplier(1.0) .setMaxRpcTimeout(Duration.ofMillis(600000L)) .setTotalTimeout(Duration.ofMillis(600000L)) .build()); batchControllerSettingsBuilder .createBatchOperationSettings() .setPollingAlgorithm(timedRetryAlgorithm); batchController = BatchControllerClient.create(batchControllerSettingsBuilder.build()); } @After public void tearDown() throws Exception { batchController.close(); AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir); deleteBqDatasetAndTables(context.bqDataset); } protected Batch createAndRunPythonBatch( AcceptanceTestContext context, String testName, String pythonFile, String pythonZipUri, List args) throws Exception { AcceptanceTestUtils.uploadToGcs( DataprocServerlessAcceptanceTestBase.class.getResourceAsStream("/acceptance/" + pythonFile), context.getScriptUri(testName), "text/x-python"); String parent = String.format( "projects/%s/locations/%s", AcceptanceTestConstants.PROJECT_ID, AcceptanceTestConstants.REGION); Batch batch = Batch.newBuilder() .setName(parent + "/batches/" + context.clusterId) .setPysparkBatch(createPySparkBatchBuilder(context, testName, pythonZipUri, args)) .setRuntimeConfig( RuntimeConfig.newBuilder() .setVersion(s8sImageVersion) .putProperties("dataproc.sparkBqConnector.uri", connectorJarUri)) .setEnvironmentConfig( EnvironmentConfig.newBuilder() .setExecutionConfig( ExecutionConfig.newBuilder() .setNetworkUri(AcceptanceTestConstants.SERVERLESS_NETWORK_URI))) .build(); OperationFuture batchAsync = batchController.createBatchAsync( CreateBatchRequest.newBuilder() .setParent(parent) .setBatchId(context.clusterId) .setBatch(batch) .build()); return batchAsync.get( AcceptanceTestConstants.SERVERLESS_BATCH_TIMEOUT_IN_SECONDS, TimeUnit.SECONDS); } protected PySparkBatch.Builder createPySparkBatchBuilder( AcceptanceTestContext context, String testName, String pythonZipUri, List args) { PySparkBatch.Builder builder = PySparkBatch.newBuilder() .setMainPythonFileUri(context.getScriptUri(testName)) .addJarFileUris(context.connectorJarUri); if (pythonZipUri != null && pythonZipUri.length() != 0) { builder.addPythonFileUris(pythonZipUri); builder.addFileUris(pythonZipUri); } if (args != null && args.size() != 0) { builder.addAllArgs(args); } return builder; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/ReadSheakspeareDataprocServerlessAcceptanceTestBase.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.dataproc.v1.Batch; import com.google.cloud.dataproc.v1.Batch.State; import java.util.Arrays; import org.junit.Test; /** Tests basic functionality of the connector by reading a BigQuery table */ public class ReadSheakspeareDataprocServerlessAcceptanceTestBase extends DataprocServerlessAcceptanceTestBase { public ReadSheakspeareDataprocServerlessAcceptanceTestBase( String connectorJarPrefix, String s8sImageVersion) { super(connectorJarPrefix, s8sImageVersion); } @Test public void testBatch() throws Exception { Batch batch = createAndRunPythonBatch( context, testName, "read_shakespeare.py", null, Arrays.asList(context.getResultsDirUri(testName))); assertThat(batch.getState()).isEqualTo(State.SUCCEEDED); String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); assertThat(output.trim()).isEqualTo("spark,10"); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/WriteStreamDataprocServerlessAcceptanceTestBase.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.dataproc.v1.Batch; import com.google.cloud.dataproc.v1.Batch.State; import java.util.Arrays; import org.junit.Test; /** Test the writeStream support on an actual cluster. */ public class WriteStreamDataprocServerlessAcceptanceTestBase extends DataprocServerlessAcceptanceTestBase { public WriteStreamDataprocServerlessAcceptanceTestBase( String connectorJarPrefix, String s8sImageVersion) { super(connectorJarPrefix, s8sImageVersion); } @Test public void testBatch() throws Exception { String testName = "write-stream-test"; String jsonFileName = "write_stream_data.json"; String jsonFileUri = context.testBaseGcsDir + "/" + testName + "/json/" + jsonFileName; AcceptanceTestUtils.uploadToGcs( getClass().getResourceAsStream("/acceptance/" + jsonFileName), jsonFileUri, "application/json"); Batch batch = createAndRunPythonBatch( context, testName, "write_stream.py", null, Arrays.asList( context.testBaseGcsDir + "/" + testName + "/json/", context.bqDataset, context.bqStreamTable, AcceptanceTestUtils.BUCKET)); assertThat(batch.getState()).isEqualTo(State.SUCCEEDED); int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable); assertThat(numOfRows).isEqualTo(2); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/direct/Scala213BigQueryRDDTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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 exss or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.cloud.spark.bigquery.direct; import static com.google.common.truth.Truth.assertThat; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.catalyst.InternalRow; import org.junit.Test; public class Scala213BigQueryRDDTest { @Test public void testCreateScala213BigQueryRDD() throws Exception { SparkSession sparkSession = SparkSession.builder().master("local").appName(getClass().getName()).getOrCreate(); BigQueryRDDFactory factory = new BigQueryRDDFactory( null /* bigQueryClient */, null /* bigQueryReadClientFactory */, null /* bigQueryTracerFactory */, null /* options */, sparkSession.sqlContext()); RDD result = factory.createRDD( sparkSession.sqlContext(), null /* Partition[] */, null /* ReadSession */, null /* Schema */, null /* columnsInOrder */, null /* options */, null /* bigQueryReadClientFactory */, null /* bigQueryTracerFactory */); assertThat(result).isInstanceOf(Scala213BigQueryRDD.class); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/CatalogIntegrationTestBase.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.bigquery.BigQuery; import com.google.cloud.bigquery.Dataset; import com.google.cloud.bigquery.DatasetId; import com.google.cloud.bigquery.QueryJobConfiguration; import com.google.cloud.bigquery.Table; import com.google.cloud.bigquery.TableId; import java.util.List; import java.util.stream.Collectors; import org.apache.spark.sql.Row; import org.apache.spark.sql.RowFactory; import org.apache.spark.sql.SparkSession; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.ClassRule; import org.junit.Ignore; import org.junit.Test; public class CatalogIntegrationTestBase { public static final String DEFAULT_NAMESPACE = "default"; @ClassRule public static TestDataset testDataset = new TestDataset(); BigQuery bigquery = IntegrationTestUtils.getBigquery(); protected SparkSession spark; private static SparkSession globalSpark; private String testTable; @BeforeClass public static void setupGlobalSpark() { globalSpark = SparkSession.builder() .appName("catalog test") .master("local[*]") .config("spark.sql.legacy.createHiveTableByDefault", "false") .config("spark.sql.sources.default", "bigquery") .config("spark.datasource.bigquery.writeMethod", "direct") .config("spark.sql.defaultCatalog", "bigquery") .config("spark.sql.catalog.bigquery", "com.google.cloud.spark.bigquery.BigQueryCatalog") .getOrCreate(); } @AfterClass public static void teardownGlobalSpark() { if (globalSpark != null) { globalSpark.stop(); globalSpark = null; } } @Before public void setupSparkSession() { // We use newSession() to ensure that each test gets a fresh SparkSession with // isolated // SQL configurations (including catalog configs), preventing tests from // interfering with // each other's state. The underlying SparkContext is reused. spark = globalSpark.newSession(); } @After public void teardownSparkSession() { spark = null; } @Before public void renameTestTable() { testTable = String.format( "test_%s_%s", Long.toHexString(System.currentTimeMillis()), Long.toHexString(System.nanoTime())); } @After public void cleanTestTable() throws Exception { Table table = bigquery.getTable(TableId.of("default", testTable)); if (table != null) { table.delete(); } } @Test public void testCreateTableInDefaultNamespace() throws Exception { internalTestCreateTable(DEFAULT_NAMESPACE); } @Test public void testCreateTableInCustomNamespace() throws Exception { internalTestCreateTable(testDataset.testDataset); } private void internalTestCreateTable(String dataset) throws InterruptedException { assertThat(bigquery.getDataset(DatasetId.of(dataset))).isNotNull(); spark.sql("CREATE TABLE " + fullTableName(dataset) + "(id int, data string);"); Table table = bigquery.getTable(TableId.of(dataset, testTable)); assertThat(table).isNotNull(); assertThat(selectCountStarFrom(dataset, testTable)).isEqualTo(0L); } @Test public void testCreateTableAndInsertInDefaultNamespace() throws Exception { internalTestCreateTableAndInsert(DEFAULT_NAMESPACE); } @Test public void testCreateTableAndInsertInCustomNamespace() throws Exception { internalTestCreateTableAndInsert(testDataset.testDataset); } private void internalTestCreateTableAndInsert(String dataset) throws InterruptedException { assertThat(bigquery.getDataset(DatasetId.of(dataset))).isNotNull(); spark.sql("CREATE TABLE " + fullTableName(dataset) + "(id int, data string);"); spark.sql(String.format("INSERT INTO `%s`.`%s` VALUES (1, 'foo');", dataset, testTable)); Table table = bigquery.getTable(TableId.of(dataset, testTable)); assertThat(table).isNotNull(); assertThat(selectCountStarFrom(dataset, testTable)).isEqualTo(1L); } @Test public void testCreateTableAsSelectInDefaultNamespace() throws Exception { internalTestCreateTableAsSelect(DEFAULT_NAMESPACE); } @Test public void testCreateTableAsSelectInCustomNamespace() throws Exception { internalTestCreateTableAsSelect(testDataset.testDataset); } private void internalTestCreateTableAsSelect(String dataset) throws InterruptedException { assertThat(bigquery.getDataset(DatasetId.of(dataset))).isNotNull(); spark.sql("CREATE TABLE " + fullTableName(dataset) + " AS SELECT 1 AS id, 'foo' AS data;"); Table table = bigquery.getTable(TableId.of(dataset, testTable)); assertThat(table).isNotNull(); assertThat(selectCountStarFrom(dataset, testTable)).isEqualTo(1L); } @Test @Ignore("unsupported") public void testCreateTableWithExplicitTargetInDefaultNamespace() throws Exception { internalTestCreateTableWithExplicitTarget(DEFAULT_NAMESPACE); } @Test @Ignore("unsupported") public void testCreateTableWithExplicitTargetInCustomNamespace() throws Exception { internalTestCreateTableWithExplicitTarget(testDataset.testDataset); } private void internalTestCreateTableWithExplicitTarget(String dataset) throws InterruptedException { assertThat(bigquery.getDataset(DatasetId.of(dataset))).isNotNull(); spark.sql( "CREATE TABLE " + fullTableName(dataset) + " OPTIONS (table='bigquery-public-data.samples.shakespeare')"); List result = spark .sql( "SELECT word, SUM(word_count) FROM " + fullTableName(dataset) + " WHERE word='spark' GROUP BY word;") .collectAsList(); assertThat(result).hasSize(1); Row resultRow = result.get(0); assertThat(resultRow.getString(0)).isEqualTo("spark"); assertThat(resultRow.getLong(1)).isEqualTo(10L); } private String fullTableName(String dataset) { return dataset.equals(DEFAULT_NAMESPACE) ? "`" + testTable + "`" : "`" + dataset + "`.`" + testTable + "`"; } // this is needed as with direct write the table's metadata can e updated only after few minutes. // Queries take pending data into account though. private long selectCountStarFrom(String dataset, String table) throws InterruptedException { return bigquery .query( QueryJobConfiguration.of( String.format("SELECT COUNT(*) FROM `%s`.`%s`", dataset, table))) .getValues() .iterator() .next() .get(0) .getLongValue(); } @Test public void testReadFromDifferentBigQueryProject() throws Exception { List df = spark .sql("SELECT * from `bigquery-public-data`.`samples`.`shakespeare` WHERE word='spark'") .collectAsList(); assertThat(df).hasSize(9); } @Test public void testListNamespaces() throws Exception { String database = String.format("show_databases_test_%s_%s", System.currentTimeMillis(), System.nanoTime()); DatasetId datasetId = DatasetId.of(database); bigquery.create(Dataset.newBuilder(datasetId).build()); List databases = spark.sql("SHOW DATABASES").collectAsList(); assertThat(databases).contains(RowFactory.create(database)); bigquery.delete(datasetId); } @Test public void testCreateNamespace() throws Exception { String database = String.format("create_database_test_%s_%s", System.currentTimeMillis(), System.nanoTime()); DatasetId datasetId = DatasetId.of(database); spark.sql("CREATE DATABASE " + database + ";"); Dataset dataset = bigquery.getDataset(datasetId); assertThat(dataset).isNotNull(); bigquery.delete(datasetId); } @Test public void testCreateNamespaceWithLocation() throws Exception { String database = String.format("create_database_test_%s_%s", System.currentTimeMillis(), System.nanoTime()); DatasetId datasetId = DatasetId.of(database); spark.sql( "CREATE DATABASE " + database + " COMMENT 'foo' WITH DBPROPERTIES (bigquery_location = 'us-east1');"); Dataset dataset = bigquery.getDataset(datasetId); assertThat(dataset).isNotNull(); assertThat(dataset.getLocation()).isEqualTo("us-east1"); assertThat(dataset.getDescription()).isEqualTo("foo"); bigquery.delete(datasetId); } @Test public void testDropDatabase() { String database = String.format("drop_database_test_%s_%s", System.currentTimeMillis(), System.nanoTime()); DatasetId datasetId = DatasetId.of(database); bigquery.create(Dataset.newBuilder(datasetId).build()); spark.sql("DROP DATABASE " + database + ";"); Dataset dataset = bigquery.getDataset(datasetId); assertThat(dataset).isNull(); } @Test public void testCatalogInitializationWithProject() { try { spark .conf() .set( "spark.sql.catalog.public_catalog", "com.google.cloud.spark.bigquery.BigQueryCatalog"); // Use 'projectId' instead of 'project' - this is the correct property name spark.conf().set("spark.sql.catalog.public_catalog.projectId", "bigquery-public-data"); // Add a small delay to ensure catalog is fully initialized Thread.sleep(2000); // Verify catalog is accessible before querying try { spark.sql("USE public_catalog"); } catch (Exception e) { // Catalog might not support USE, that's okay } List rows = spark.sql("SHOW DATABASES IN public_catalog").collectAsList(); List databaseNames = rows.stream().map(row -> row.getString(0)).collect(Collectors.toList()); assertThat(databaseNames).contains("samples"); List data = spark.sql("SELECT * FROM public_catalog.samples.shakespeare LIMIT 10").collectAsList(); assertThat(data).hasSize(10); } catch (Exception e) { // Log the full stack trace to help debug cloud build failures e.printStackTrace(); throw new RuntimeException("Test failed with detailed error", e); } finally { // Clean up catalog configuration to avoid interference with other tests try { spark.conf().unset("spark.sql.catalog.public_catalog"); spark.conf().unset("spark.sql.catalog.public_catalog.projectId"); } catch (Exception ignored) { } } } @Test public void testCreateCatalogWithLocation() throws Exception { String database = String.format("create_db_with_location_%s", System.nanoTime()); DatasetId datasetId = DatasetId.of(database); try { spark .conf() .set( "spark.sql.catalog.test_location_catalog", "com.google.cloud.spark.bigquery.BigQueryCatalog"); spark.conf().set("spark.sql.catalog.test_location_catalog.bigquery_location", "EU"); // Add delay for catalog initialization Thread.sleep(2000); spark.sql("CREATE DATABASE test_location_catalog." + database); Dataset dataset = bigquery.getDataset(datasetId); assertThat(dataset).isNotNull(); assertThat(dataset.getLocation()).isEqualTo("EU"); } finally { bigquery.delete(datasetId, BigQuery.DatasetDeleteOption.deleteContents()); // Clean up catalog configuration try { spark.conf().unset("spark.sql.catalog.test_location_catalog"); spark.conf().unset("spark.sql.catalog.test_location_catalog.bigquery_location"); } catch (Exception ignored) { } } } @Test public void testCreateTableAsSelectWithProjectAndLocation() { String database = String.format("ctas_db_with_location_%s", System.nanoTime()); String newTable = "ctas_table_from_public"; DatasetId datasetId = DatasetId.of(database); try { spark .conf() .set( "spark.sql.catalog.public_catalog", "com.google.cloud.spark.bigquery.BigQueryCatalog"); // Use 'projectId' instead of 'project' spark.conf().set("spark.sql.catalog.public_catalog.projectId", "bigquery-public-data"); spark .conf() .set( "spark.sql.catalog.test_catalog_as_select", "com.google.cloud.spark.bigquery.BigQueryCatalog"); spark.conf().set("spark.sql.catalog.test_catalog_as_select.bigquery_location", "EU"); // Add delay for catalog initialization Thread.sleep(2000); spark.sql("CREATE DATABASE test_catalog_as_select." + database); // Add another small delay after database creation Thread.sleep(1000); spark.sql( "CREATE TABLE test_catalog_as_select." + database + "." + newTable + " AS SELECT * FROM public_catalog.samples.shakespeare LIMIT 10"); Dataset dataset = bigquery.getDataset(datasetId); assertThat(dataset).isNotNull(); assertThat(dataset.getLocation()).isEqualTo("EU"); Table table = bigquery.getTable(TableId.of(datasetId.getDataset(), newTable)); assertThat(table).isNotNull(); } catch (Exception e) { e.printStackTrace(); throw new RuntimeException("Test failed with detailed error", e); } finally { bigquery.delete(datasetId, BigQuery.DatasetDeleteOption.deleteContents()); // Clean up catalog configurations try { spark.conf().unset("spark.sql.catalog.public_catalog"); spark.conf().unset("spark.sql.catalog.public_catalog.projectId"); spark.conf().unset("spark.sql.catalog.test_catalog_as_select"); spark.conf().unset("spark.sql.catalog.test_catalog_as_select.bigquery_location"); } catch (Exception ignored) { } } } private static SparkSession createSparkSession() { return SparkSession.builder() .appName("catalog test") .master("local[*]") .config("spark.sql.legacy.createHiveTableByDefault", "false") .config("spark.sql.sources.default", "bigquery") .config("spark.datasource.bigquery.writeMethod", "direct") .config("spark.sql.defaultCatalog", "bigquery") .config("spark.sql.catalog.bigquery", "com.google.cloud.spark.bigquery.BigQueryCatalog") .getOrCreate(); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/IntegrationTestUtils.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.common.truth.Truth.assertThat; import static com.google.common.truth.Truth.assertWithMessage; import com.google.cloud.bigquery.BigQuery; import com.google.cloud.bigquery.BigQueryOptions; import com.google.cloud.bigquery.DatasetId; import com.google.cloud.bigquery.DatasetInfo; import com.google.cloud.bigquery.ExternalTableDefinition; import com.google.cloud.bigquery.FormatOptions; import com.google.cloud.bigquery.Table; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.TableResult; import com.google.cloud.bigquery.ViewDefinition; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.google.common.collect.ImmutableMap; import java.util.Optional; import java.util.concurrent.TimeUnit; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.types.Metadata; import org.apache.spark.sql.types.MetadataBuilder; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class IntegrationTestUtils { static Logger logger = LoggerFactory.getLogger(IntegrationTestUtils.class); private static Cache destinationTableCache = CacheBuilder.newBuilder().expireAfterWrite(15, TimeUnit.MINUTES).maximumSize(1000).build(); public static BigQuery getBigquery() { return BigQueryOptions.getDefaultInstance().getService(); } private static BigQueryClient getBigQueryClient() { return new BigQueryClient( getBigquery(), Optional.empty(), Optional.empty(), destinationTableCache, ImmutableMap.of(), SparkBigQueryConfig.DEFAULT_JOB_PRIORITY, Optional.empty(), 6 * 60); } public static void createDataset(String dataset) { BigQuery bq = getBigquery(); DatasetId datasetId = DatasetId.of(dataset); logger.warn("Creating test dataset: {}", datasetId); bq.create(DatasetInfo.of(datasetId)); } public static TableResult runQuery(String query) { return getBigQueryClient().query(query); } public static void runQuery(String query, Object... args) { getBigQueryClient().query(String.format(query, args)); } public static Iterable

listTables(DatasetId datasetId, TableDefinition.Type... types) { return getBigQueryClient().listTables(datasetId, types); } public static void createBigLakeTable( String dataset, String table, StructType schema, String sourceURI, FormatOptions formatOptions) { BigQuery bq = getBigquery(); TableId tableId = TableId.of(dataset, table); TableInfo tableInfo = TableInfo.newBuilder( tableId, ExternalTableDefinition.newBuilder( sourceURI, SchemaConverters.from(SchemaConvertersConfiguration.createDefault()) .toBigQuerySchema(schema), formatOptions) .setConnectionId(TestConstants.BIGLAKE_CONNECTION_ID) .build()) .build(); bq.create(tableInfo); } public static void deleteDatasetAndTables(String dataset) { BigQuery bq = getBigquery(); logger.warn("Deleting test dataset '{}' and its contents", dataset); bq.delete(DatasetId.of(dataset), BigQuery.DatasetDeleteOption.deleteContents()); } static Metadata metadata(String key, String value) { MetadataBuilder metadata = new MetadataBuilder(); metadata.putString(key, value); return metadata.build(); } static SparkSession getOrCreateSparkSession(String applicationName) { return SparkSession.builder().appName(applicationName).master("local").getOrCreate(); } static void createView(String dataset, String view) { BigQuery bq = getBigquery(); String query = "SELECT * FROM `bigquery-public-data.samples.shakespeare`"; TableId tableId = TableId.of(dataset, view); ViewDefinition viewDefinition = ViewDefinition.newBuilder(query).setUseLegacySql(false).build(); bq.create(TableInfo.of(tableId, viewDefinition)); } public static void compareRows(Row row, Row expected) { for (int i = 0; i < expected.length(); i++) { // if (i == TestConstants.BIG_NUMERIC_COLUMN_POSITION) { // TODO: Restore this code after // https://github.com/GoogleCloudDataproc/spark-bigquery-connector/issues/446 // is fixed // // for (int j = 0; j < 2; j++) { // String bigNumericString = getBigNumericString(row, i, j); // String expectedBigNumericString = getBigNumericString(expected, i, j); // assertThat(bigNumericString).isEqualTo(expectedBigNumericString); // } // } else { Object value = row.get(i); assertWithMessage("value of field " + expected.schema().fields()[i]) .that(value) .isEqualTo(expected.get(i)); // } } } public static void compareBigNumericDataSetSchema( StructType actualSchema, StructType expectedSchema) { StructField[] actualFields = actualSchema.fields(); StructField[] expectedFields = expectedSchema.fields(); for (int i = 0; i < actualFields.length; i++) { StructField actualField = actualFields[i]; StructField expectedField = expectedFields[i]; assertThat(actualField).isEqualTo(expectedField); // TODO: Restore this code after // https://github.com/GoogleCloudDataproc/spark-bigquery-connector/issues/446 // is fixed // // if (i == TestConstants.BIG_NUMERIC_COLUMN_POSITION) { // for (int j = 0; j < 2; j++) { // DataType actualFieldDataType = ((StructType) actualField.dataType()).fields()[j] // .dataType(); // DataType expectedFieldDataType = ((StructType) expectedField.dataType()).fields()[j] // .dataType(); // assertThat(actualFieldDataType).isEqualTo(DataTypes.StringType); // assertThat(expectedFieldDataType).isEqualTo(BigQueryDataTypes.BigNumericType); // } // // } else { // assertThat(actualField).isEqualTo(expectedField); // } } } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/OpenLineageIntegrationTestBase.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.common.truth.Truth.assertThat; import java.io.File; import java.io.FileNotFoundException; import java.io.PrintWriter; import java.util.ArrayList; import java.util.List; import java.util.Scanner; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.SparkSession; import org.json.JSONObject; import org.junit.After; import org.junit.Before; import org.junit.ClassRule; import org.junit.Test; import org.junit.rules.ExternalResource; public class OpenLineageIntegrationTestBase { @ClassRule public static TestDataset testDataset = new TestDataset(); @ClassRule public static CustomSessionFactory sessionFactory = new CustomSessionFactory(); protected SparkSession spark; protected String testTable; protected File lineageFile; public OpenLineageIntegrationTestBase() { this.spark = sessionFactory.spark; this.lineageFile = sessionFactory.lineageFile; } @Before public void createTestTable() { testTable = "test_" + System.nanoTime(); } @After public void clearLineageFile() throws FileNotFoundException { PrintWriter pw = new PrintWriter(lineageFile); pw.close(); } protected static class CustomSessionFactory extends ExternalResource { SparkSession spark; File lineageFile; @Override protected void before() throws Throwable { lineageFile = File.createTempFile("openlineage_test_" + System.nanoTime(), ".log"); lineageFile.deleteOnExit(); spark = SparkSession.builder() .master("local") .appName("openlineage_test_bigquery_connector") .config("spark.ui.enabled", "false") .config("spark.default.parallelism", 20) .config("spark.extraListeners", "io.openlineage.spark.agent.OpenLineageSparkListener") .config("spark.openlineage.transport.type", "file") .config("spark.openlineage.transport.location", lineageFile.getAbsolutePath()) .getOrCreate(); spark.sparkContext().setLogLevel("WARN"); } } private List parseEventLogs(File file) throws Exception { // Adding a 1-second cushion, as it takes some time for all OpenLineage events to be emitted and // saved to the file Thread.sleep(1000); List eventList; try (Scanner scanner = new Scanner(file)) { eventList = new ArrayList<>(); while (scanner.hasNextLine()) { String line = scanner.nextLine(); JSONObject event = new JSONObject(line); if (!event.getJSONArray("inputs").isEmpty() && !event.getJSONArray("outputs").isEmpty()) { eventList.add(event); } } } return eventList; } private String getFieldName(JSONObject event, String field) { JSONObject eventField = (JSONObject) event.getJSONArray(field).get(0); return eventField.getString("name"); } @Test public void testLineageEvent() throws Exception { String fullTableName = TestConstants.PROJECT_ID + "." + testDataset.toString() + "." + testTable; Dataset readDF = spark.read().format("bigquery").option("table", TestConstants.SHAKESPEARE_TABLE).load(); readDF.createOrReplaceTempView("words"); Dataset writeDF = spark.sql("SELECT word, SUM(word_count) AS word_count FROM words GROUP BY word"); writeDF .write() .format("bigquery") .mode(SaveMode.Append) .option("table", fullTableName) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", "direct") .save(); List eventList = parseEventLogs(lineageFile); assertThat(eventList) .isNotEmpty(); // check if there is at least one event with both input and output eventList.forEach( (event) -> { // check if each of these events have the correct input and output assertThat(getFieldName(event, "inputs")).matches(TestConstants.SHAKESPEARE_TABLE); assertThat(getFieldName(event, "outputs")).matches(fullTableName); }); } @Test public void testLineageEventWithQueryInput() throws Exception { String fullTableName = TestConstants.PROJECT_ID + "." + testDataset.toString() + "." + testTable; Dataset readDF = spark .read() .format("bigquery") .option("viewsEnabled", true) .option("materializationDataset", testDataset.toString()) .option("query", "SELECT * FROM `bigquery-public-data.samples.shakespeare`") .load(); readDF.createOrReplaceTempView("words"); Dataset writeDF = spark.sql("SELECT word, SUM(word_count) AS word_count FROM words GROUP BY word"); writeDF .write() .format("bigquery") .mode(SaveMode.Append) .option("table", fullTableName) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", "direct") .save(); List eventList = parseEventLogs(lineageFile); assertThat(eventList) .isNotEmpty(); // check if there is at least one event with both input and output eventList.forEach( (event) -> { // check if each of these events have the correct input and output assertThat(getFieldName(event, "inputs")).matches(TestConstants.SHAKESPEARE_TABLE); assertThat(getFieldName(event, "outputs")).matches(fullTableName); }); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/ReadByFormatIntegrationTestBase.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.cloud.spark.bigquery.integration.TestConstants.GA4_TABLE; import static com.google.common.truth.Truth.assertThat; import static org.apache.spark.sql.functions.col; import static org.apache.spark.sql.functions.concat; import static org.apache.spark.sql.functions.lit; import static org.apache.spark.sql.functions.row_number; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assume.assumeThat; import static org.junit.Assume.assumeTrue; import com.google.cloud.bigquery.BigQuery; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.FieldList; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.spark.bigquery.integration.model.ColumnOrderTestClass; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Iterators; import java.time.LocalDateTime; import java.util.Arrays; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.Set; import java.util.stream.Collectors; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Encoders; import org.apache.spark.sql.Row; import org.apache.spark.sql.expressions.Window; import org.apache.spark.sql.expressions.WindowSpec; import org.apache.spark.sql.types.DataType; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.junit.Test; public class ReadByFormatIntegrationTestBase extends SparkBigQueryIntegrationTestBase { private static final int LARGE_TABLE_NUMBER_OF_PARTITIONS = 138; protected final String dataFormat; protected final boolean userProvidedSchemaAllowed; protected Optional timeStampNTZType; public ReadByFormatIntegrationTestBase(String dataFormat) { this(dataFormat, true, Optional.empty()); } public ReadByFormatIntegrationTestBase(String dataFormat, boolean userProvidedSchemaAllowed) { this(dataFormat, userProvidedSchemaAllowed, Optional.empty()); } public ReadByFormatIntegrationTestBase( String dataFormat, boolean userProvidedSchemaAllowed, DataType timestampNTZType) { this(dataFormat, userProvidedSchemaAllowed, Optional.of(timestampNTZType)); } public ReadByFormatIntegrationTestBase( String dataFormat, boolean userProvidedSchemaAllowed, Optional timestampNTZType) { super(); this.dataFormat = dataFormat; this.userProvidedSchemaAllowed = userProvidedSchemaAllowed; this.timeStampNTZType = timestampNTZType; } @Test public void testViewWithDifferentColumnsForSelectAndFilter() { Dataset df = getViewDataFrame(); // filer and select are pushed down to BQ List result = df.select("corpus").filter("word = 'spark'").collectAsList(); assertThat(result).hasSize(9); List filteredResult = result.stream() .filter(row -> "hamlet".equals(row.getString(0))) .collect(Collectors.toList()); assertThat(filteredResult).hasSize(1); } @Test public void testCachedViewWithDifferentColumnsForSelectAndFilter() { Dataset df = getViewDataFrame(); Dataset cachedDF = df.cache(); // filter and select are run on the spark side as the view was cached List result = cachedDF.select("corpus").filter("word = 'spark'").collectAsList(); assertThat(result).hasSize(9); List filteredResult = result.stream() .filter(row -> "hamlet".equals(row.getString(0))) .collect(Collectors.toList()); assertThat(filteredResult).hasSize(1); } @Test public void testOutOfOrderColumns() { Row row = spark .read() .format("bigquery") .option("table", TestConstants.SHAKESPEARE_TABLE) .option("readDataFormat", dataFormat) .load() .select("word_count", "word") .head(); assertThat(row.get(0)).isInstanceOf(Long.class); assertThat(row.get(1)).isInstanceOf(String.class); } @Test public void testSelectAllColumnsFromATable() { Row row = spark .read() .format("bigquery") .option("table", TestConstants.SHAKESPEARE_TABLE) .option("readDataFormat", dataFormat) .load() .select("word_count", "word", "corpus", "corpus_date") .head(); assertThat(row.get(0)).isInstanceOf(Long.class); assertThat(row.get(1)).isInstanceOf(String.class); assertThat(row.get(2)).isInstanceOf(String.class); assertThat(row.get(3)).isInstanceOf(Long.class); } @Test public void testNumberOfPartitions() { Dataset df = spark .read() .format("bigquery") .option("table", TestConstants.LARGE_TABLE) .option("maxParallelism", "5") .option("preferredMinParallelism", "5") .option("readDataFormat", dataFormat) .load(); assertThat(df.rdd().getNumPartitions()).isEqualTo(5); } @Test public void testDefaultNumberOfPartitions() { Dataset df = spark .read() .format("bigquery") .option("table", TestConstants.LARGE_TABLE) .option("readDataFormat", dataFormat) .load(); assertThat(df.rdd().getNumPartitions()).isEqualTo(LARGE_TABLE_NUMBER_OF_PARTITIONS); } @Test(timeout = 300_000) public void testBalancedPartitions() { // Select first partition Dataset df = spark .read() .format("bigquery") .option("maxParallelism", "5") .option("preferredMinParallelism", "5") .option("readDataFormat", dataFormat) .option("filter", "year > 2000") .load(TestConstants.LARGE_TABLE) .select(TestConstants.LARGE_TABLE_FIELD); // minimize payload long sizeOfFirstPartition = df.rdd() .toJavaRDD() .mapPartitions(rows -> Arrays.asList(Iterators.size(rows)).iterator()) .collect() .get(0) .longValue(); // Since we are only reading from a single stream, we can expect to get // at least as many rows // in that stream as a perfectly uniform distribution would command. // Note that the assertion // is on a range of rows because rows are assigned to streams on the // server-side in // indivisible units of many rows. long idealPartitionSize = TestConstants.LARGE_TABLE_NUM_ROWS / df.rdd().getNumPartitions(); assertThat(sizeOfFirstPartition).isAtLeast((int) (idealPartitionSize * 0.9)); assertThat(sizeOfFirstPartition).isAtMost((int) (idealPartitionSize * 1.1)); } @Test public void testKeepingFiltersBehaviour() { Set newBehaviourWords = extractWords( spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("filter", "length(word) = 1") .option("combinePushedDownFilters", "true") .option("readDataFormat", dataFormat) .load()); Set oldBehaviourWords = extractWords( spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("filter", "length(word) = 1") .option("combinePushedDownFilters", "false") .option("readDataFormat", dataFormat) .load()); assertThat(newBehaviourWords).isEqualTo(oldBehaviourWords); } @Test public void testColumnOrderOfStruct() { assumeTrue("user provided schema is not allowed for this connector", userProvidedSchemaAllowed); StructType schema = Encoders.bean(ColumnOrderTestClass.class).schema(); Dataset dataset = spark .read() .schema(schema) .option("dataset", testDataset.toString()) .option("table", TestConstants.STRUCT_COLUMN_ORDER_TEST_TABLE_NAME) .format("bigquery") .option("readDataFormat", dataFormat) .load() .as(Encoders.bean(ColumnOrderTestClass.class)); ColumnOrderTestClass row = dataset.head(); assertThat(row).isEqualTo(TestConstants.STRUCT_COLUMN_ORDER_TEST_TABLE_COLS); } @Test public void testConvertBigQueryMapToSparkMap() throws Exception { BigQuery bigQuery = IntegrationTestUtils.getBigquery(); bigQuery.create( TableInfo.newBuilder( TableId.of(testDataset.toString(), testTable), StandardTableDefinition.of( Schema.of( Field.newBuilder( "map_field", LegacySQLTypeName.RECORD, FieldList.of( Field.newBuilder("key", LegacySQLTypeName.STRING) .setMode(Field.Mode.REQUIRED) .build(), Field.of("value", LegacySQLTypeName.INTEGER))) .setMode(Field.Mode.REPEATED) .build()))) .build()); IntegrationTestUtils.runQuery( String.format( "INSERT INTO %s.%s VALUES " + "([STRUCT('a' as key, 1 as value),STRUCT('b' as key, 2 as value)])," + "([STRUCT('c' as key, 3 as value)])", testDataset, testTable)); Dataset df = spark.read().format("bigquery").load(String.format("%s.%s", testDataset, testTable)); StructType schema = df.schema(); assertThat(schema.size()).isEqualTo(1); StructField mapField = schema.apply("map_field"); assertThat(mapField).isNotNull(); assertThat(mapField.dataType()) .isEqualTo(DataTypes.createMapType(DataTypes.StringType, DataTypes.LongType)); List rowList = df.collectAsList(); assertThat(rowList).hasSize(2); List> result = rowList.stream().map(row -> scalaMapToJavaMap(row.getMap(0))).collect(Collectors.toList()); assertThat(result).contains(ImmutableMap.of("a", Long.valueOf(1), "b", Long.valueOf(2))); assertThat(result).contains(ImmutableMap.of("c", Long.valueOf(3))); } @Test public void testTimestampNTZReadFromBigQuery() { assumeThat(timeStampNTZType.isPresent(), is(true)); BigQuery bigQuery = IntegrationTestUtils.getBigquery(); LocalDateTime dateTime = LocalDateTime.of(2023, 9, 18, 14, 30, 15, 234 * 1_000_000); bigQuery.create( TableInfo.newBuilder( TableId.of(testDataset.toString(), testTable), StandardTableDefinition.of(Schema.of(Field.of("foo", LegacySQLTypeName.DATETIME)))) .build()); IntegrationTestUtils.runQuery( String.format( "INSERT INTO %s.%s (foo) VALUES " + "('%s')", testDataset, testTable, dateTime)); Dataset df = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); StructType schema = df.schema(); assertThat(schema.apply("foo").dataType()).isEqualTo(timeStampNTZType.get()); Row row = df.head(); assertThat(row.get(0)).isEqualTo(dateTime); } @Test public void testWindowFunctionPartitionBy() { WindowSpec windowSpec = Window.partitionBy("user_pseudo_id", "event_timestamp", "event_name") .orderBy("event_bundle_sequence_id"); Dataset df = spark .read() .format("bigquery") .option("table", GA4_TABLE) .option("readDataFormat", dataFormat) .load() .withColumn("row_num", row_number().over(windowSpec)); Dataset selectedDF = df.select("user_pseudo_id", "event_name", "event_timestamp", "row_num"); assertThat(selectedDF.columns().length).isEqualTo(4); assertThat( Arrays.stream(df.schema().fields()) .filter(field -> field.name().equals("row_num")) .count()) .isEqualTo(1); assertThat(selectedDF.head().get(3)).isEqualTo(1); } @Test public void testWindowFunctionPartitionByWithArray() { assumeTrue("This test only works for AVRO dataformat", dataFormat.equals("AVRO")); WindowSpec windowSpec = Window.partitionBy(concat(col("user_pseudo_id"), col("event_timestamp"), col("event_name"))) .orderBy(lit("window_ordering")); Dataset df = spark .read() .format("bigquery") .option("table", GA4_TABLE) .option("readDataFormat", dataFormat) .load() .withColumn("row_num", row_number().over(windowSpec)); Dataset selectedDF = df.select("user_pseudo_id", "event_name", "event_timestamp", "event_params", "row_num"); assertThat(selectedDF.columns().length).isEqualTo(5); assertThat( Arrays.stream(df.schema().fields()) .filter(field -> field.name().equals("row_num")) .count()) .isEqualTo(1); assertThat(selectedDF.head().get(4)).isEqualTo(1); } static Map scalaMapToJavaMap(scala.collection.Map map) { ImmutableMap.Builder result = ImmutableMap.builder(); map.foreach(entry -> result.put(entry._1(), entry._2())); return result.build(); } Dataset getViewDataFrame() { return spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", TestConstants.SHAKESPEARE_VIEW) .option("viewsEnabled", "true") .option("viewMaterializationProject", System.getenv("GOOGLE_CLOUD_PROJECT")) .option("viewMaterializationDataset", testDataset.toString()) .option("readDataFormat", dataFormat) .load(); } Dataset readAllTypesTable() { return spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", TestConstants.ALL_TYPES_TABLE_NAME) .load(); } protected Set extractWords(Dataset df) { return ImmutableSet.copyOf( df.select("word").where("corpus_date = 0").as(Encoders.STRING()).collectAsList()); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/ReadFromQueryIntegrationTestBase.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertThrows; import com.google.cloud.bigquery.BigQuery; import com.google.cloud.bigquery.BigQueryOptions; import com.google.cloud.bigquery.DatasetId; import com.google.cloud.bigquery.JobConfiguration; import com.google.cloud.bigquery.JobInfo; import com.google.cloud.bigquery.QueryJobConfiguration; import com.google.cloud.bigquery.Table; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.spark.bigquery.events.BigQueryJobCompletedEvent; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.inject.ProvisionException; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.stream.StreamSupport; import org.apache.spark.scheduler.SparkListener; import org.apache.spark.scheduler.SparkListenerEvent; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Encoders; import org.apache.spark.sql.Row; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.StructType; import org.junit.After; import org.junit.Before; import org.junit.Test; class ReadFromQueryIntegrationTestBase extends SparkBigQueryIntegrationTestBase { private BigQuery bq; private final boolean isDsv2OnSpark3AndAbove; private TestBigQueryJobCompletionListener listener = new TestBigQueryJobCompletionListener(); @Before public void addListener() { listener.reset(); spark.sparkContext().addSparkListener(listener); } @After public void removeListener() { spark.sparkContext().removeSparkListener(listener); } protected ReadFromQueryIntegrationTestBase() { this(false); } protected ReadFromQueryIntegrationTestBase(boolean isDsv2OnSpark3AndAbove) { super(); this.bq = BigQueryOptions.getDefaultInstance().getService(); this.isDsv2OnSpark3AndAbove = isDsv2OnSpark3AndAbove; } @Test public void testReadFromQuery_nomMterializationDataset() { // the query suffix is to make sure that each format will have // a different table created due to the destination table cache String random = String.valueOf(System.nanoTime()); String query = String.format( "SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'", random, random); internalTestReadFromQueryWithAdditionalOptions(query, Collections.emptyMap()); } private void internalTestReadFromQueryToMaterializationDataset(String query) { Map additionalOptions = ImmutableMap.of("materializationDataset", testDataset.toString()); internalTestReadFromQueryWithAdditionalOptions(query, additionalOptions); } private void internalTestReadFromQueryWithAdditionalOptions( String query, Map additionalOptions) { Dataset df = spark .read() .format("bigquery") .option("viewsEnabled", true) .options(additionalOptions) .load(query); validateResult(df); // validate event publishing List jobInfos = listener.getJobInfos(); assertThat(jobInfos).hasSize(1); JobInfo jobInfo = jobInfos.iterator().next(); assertThat(((QueryJobConfiguration) jobInfo.getConfiguration()).getQuery()).isEqualTo(query); } @Test public void testReadFromQuery() { // the query suffix is to make sure that each format will have // a different table created due to the destination table cache String random = String.valueOf(System.nanoTime()); String query = String.format( "SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'", random, random); internalTestReadFromQueryToMaterializationDataset(query); } @Test public void testReadFromQueryWithNewLine() { // the query suffix is to make sure that each format will have // a different table created due to the destination table cache String random = String.valueOf(System.nanoTime()); String query = String.format( "SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare`\n" + "WHERE word='spark' AND '%s'='%s'", random, random); internalTestReadFromQueryToMaterializationDataset(query); } @Test public void testQueryOption() { // the query suffix is to make sure that each format will have // a different table created due to the destination table cache String random = String.valueOf(System.nanoTime()); String query = String.format( "SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'", random, random); Dataset df = spark .read() .format("bigquery") .option("viewsEnabled", true) .option("materializationDataset", testDataset.toString()) .option("query", query) .load(); StructType expectedSchema = DataTypes.createStructType( ImmutableList.of( DataTypes.createStructField("corpus", DataTypes.StringType, true), DataTypes.createStructField("word_count", DataTypes.LongType, true))); assertThat(df.schema()).isEqualTo(expectedSchema); if (isDsv2OnSpark3AndAbove) { Iterable
tablesInDataset = IntegrationTestUtils.listTables( DatasetId.of(testDataset.toString()), TableDefinition.Type.TABLE, TableDefinition.Type.MATERIALIZED_VIEW); assertThat( StreamSupport.stream(tablesInDataset.spliterator(), false) .noneMatch(table -> table.getTableId().getTable().startsWith("_bqc_"))) .isTrue(); } validateResult(df); } @Test public void testMaterializtionToAutoGeneratedTable() { // the query suffix is to make sure that each format will have // a different table created due to the destination table cache String random = String.valueOf(System.nanoTime()); String query = String.format( "SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'", random, random); Dataset df = spark.read().format("bigquery").option("viewsEnabled", true).option("query", query).load(); StructType expectedSchema = DataTypes.createStructType( ImmutableList.of( DataTypes.createStructField("corpus", DataTypes.StringType, true), DataTypes.createStructField("word_count", DataTypes.LongType, true))); assertThat(df.schema()).isEqualTo(expectedSchema); validateResult(df); } private void validateResult(Dataset df) { long totalRows = df.count(); assertThat(totalRows).isEqualTo(9); List corpuses = df.select("corpus").as(Encoders.STRING()).collectAsList(); List expectedCorpuses = Arrays.asList( "2kinghenryvi", "3kinghenryvi", "allswellthatendswell", "hamlet", "juliuscaesar", "kinghenryv", "kinglear", "periclesprinceoftyre", "troilusandcressida"); assertThat(corpuses).containsExactlyElementsIn(expectedCorpuses); } @Test public void testBadQuery() { String badSql = "SELECT bogus_column FROM `bigquery-public-data.samples.shakespeare`"; // v1 throws BigQueryConnectorException // v2 throws Guice ProviderException, as the table is materialized in teh module assertThrows( RuntimeException.class, () -> { spark .read() .format("bigquery") .option("viewsEnabled", true) .option("materializationDataset", testDataset.toString()) .load(badSql); }); } @Test public void testQueryJobPriority() { String random = String.valueOf(System.nanoTime()); String query = String.format( "SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'", random, random); Dataset df = spark .read() .format("bigquery") .option("viewsEnabled", true) .option("materializationDataset", testDataset.toString()) .option("queryJobPriority", "batch") .load(query); validateResult(df); } @Test public void testReadFromLongQueryWithBigQueryJobTimeout() { String query = "SELECT * FROM `largesamples.wikipedia_pageviews_201001`"; assertThrows( RuntimeException.class, () -> { try { spark .read() .format("bigquery") .option("viewsEnabled", true) .option("materializationDataset", testDataset.toString()) .option("bigQueryJobTimeoutInMinutes", "1") .load(query) .show(); } catch (Exception e) { throw e; } }); } @Test public void testReadWithNamedParameters() { listener.reset(); String namedParamQuery = "SELECT word, word_count FROM `bigquery-public-data.samples.shakespeare`" + " WHERE corpus = @corpus AND word_count >= @min_word_count ORDER BY word_count DESC"; Dataset df = spark .read() .format("bigquery") .option("query", namedParamQuery) .option("viewsEnabled", "true") .option("materializationDataset", testDataset.toString()) .option("NamedParameters.corpus", "STRING:romeoandjuliet") .option("NamedParameters.min_word_count", "INT64:250") .load(); StructType expectedSchema = DataTypes.createStructType( ImmutableList.of( DataTypes.createStructField("word", DataTypes.StringType, true), DataTypes.createStructField("word_count", DataTypes.LongType, true))); assertThat(df.schema()).isEqualTo(expectedSchema); assertThat(df.count()).isGreaterThan(0L); List jobInfos = listener.getJobInfos(); assertThat(jobInfos).hasSize(1); JobInfo jobInfo = jobInfos.iterator().next(); assertThat(jobInfo.getConfiguration().getType()).isEqualTo(JobConfiguration.Type.QUERY); QueryJobConfiguration queryConfig = jobInfo.getConfiguration(); assertThat(queryConfig.getQuery()).isEqualTo(namedParamQuery); } @Test public void testReadWithPositionalParameters() { listener.reset(); String positionalParamQuery = "SELECT word, word_count FROM `bigquery-public-data.samples.shakespeare`" + " WHERE corpus = ? AND word_count >= ? ORDER BY word_count DESC"; Dataset df = spark .read() .format("bigquery") .option("query", positionalParamQuery) // Use hardcoded query .option("viewsEnabled", "true") .option("materializationDataset", testDataset.toString()) .option("PositionalParameters.1", "STRING:romeoandjuliet") .option("PositionalParameters.2", "INT64:250") .load(); StructType expectedSchema = DataTypes.createStructType( ImmutableList.of( DataTypes.createStructField("word", DataTypes.StringType, true), DataTypes.createStructField("word_count", DataTypes.LongType, true))); assertThat(df.schema()).isEqualTo(expectedSchema); assertThat(df.count()).isGreaterThan(0L); List jobInfos = listener.getJobInfos(); assertThat(jobInfos).hasSize(1); JobInfo jobInfo = jobInfos.iterator().next(); assertThat(jobInfo.getConfiguration().getType()).isEqualTo(JobConfiguration.Type.QUERY); QueryJobConfiguration queryConfig = jobInfo.getConfiguration(); assertThat(queryConfig.getQuery()).isEqualTo(positionalParamQuery); } @Test public void testReadWithMixedParametersFails() { String queryForFailure = "SELECT word, word_count FROM `bigquery-public-data.samples.shakespeare`" + " WHERE corpus = @corpus AND word_count >= @min_word_count ORDER BY word_count DESC"; Exception thrown = assertThrows( Exception.class, () -> { spark .read() .format("bigquery") .option("query", queryForFailure) .option("viewsEnabled", "true") .option("materializationDataset", testDataset.toString()) .option("NamedParameters.corpus", "STRING:whatever") .option("PositionalParameters.1", "INT64:100") .load() .show(); }); Throwable cause = thrown; if (cause instanceof ProvisionException && cause.getCause() != null) { cause = cause.getCause(); } assertThat(cause).isInstanceOf(IllegalArgumentException.class); assertThat(cause) .hasMessageThat() .contains("Cannot mix NamedParameters.* and PositionalParameters.* options."); assertThat(listener.getJobInfos()).isEmpty(); } @Test public void testReadFromQueryWithKmsKey() { String random = String.valueOf(System.nanoTime()); String query = String.format( "SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'", random, random); String envKmsKey = System.getenv("BIGQUERY_KMS_KEY_NAME"); String kmsKeyName = envKmsKey != null ? envKmsKey : "projects/p/locations/l/keyRings/k/cryptoKeys/c"; spark .read() .format("bigquery") .option("viewsEnabled", true) .option("materializationDataset", testDataset.toString()) .option("destinationTableKmsKeyName", kmsKeyName) .load(query) .collect(); // validate event publishing List jobInfos = listener.getJobInfos(); assertThat(jobInfos).hasSize(1); JobInfo jobInfo = jobInfos.iterator().next(); assertThat( ((QueryJobConfiguration) jobInfo.getConfiguration()) .getDestinationEncryptionConfiguration() .getKmsKeyName()) .isEqualTo(kmsKeyName + "/cryptoKeyVersions/1"); } } class TestBigQueryJobCompletionListener extends SparkListener { private List jobInfos = new ArrayList<>(); @Override public void onOtherEvent(SparkListenerEvent event) { if (event instanceof BigQueryJobCompletedEvent) { jobInfos.add(((BigQueryJobCompletedEvent) event).getJobInfo()); } } public ImmutableList getJobInfos() { return ImmutableList.copyOf(jobInfos); } public void reset() { jobInfos.clear(); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/ReadIntegrationTestBase.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.cloud.spark.bigquery.integration.TestConstants.ALL_TYPES_TABLE_SCHEMA; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertThrows; import static org.junit.Assume.assumeTrue; import com.google.cloud.bigquery.BigQuery; import com.google.cloud.bigquery.BigQueryOptions; import com.google.cloud.bigquery.FormatOptions; import com.google.cloud.bigquery.Table; import com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.sql.Timestamp; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Optional; import java.util.Set; import java.util.TimeZone; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Encoders; import org.apache.spark.sql.Row; import org.apache.spark.sql.types.DataType; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.Metadata; import org.apache.spark.sql.types.MetadataBuilder; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.hamcrest.CoreMatchers; import org.junit.After; import org.junit.Assume; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import scala.collection.immutable.HashMap; public class ReadIntegrationTestBase extends SparkBigQueryIntegrationTestBase { private static final TimeZone DEFAULT_TZ = TimeZone.getDefault(); private static final Map> FILTER_DATA = ImmutableMap.>builder() .put("word_count == 4", ImmutableList.of("'A", "'But", "'Faith")) .put("word_count > 3", ImmutableList.of("'", "''Tis", "'A")) .put("word_count >= 2", ImmutableList.of("'", "''Lo", "''O")) .put("word_count < 3", ImmutableList.of("''All", "''Among", "''And")) .put("word_count <= 5", ImmutableList.of("'", "''All", "''Among")) .put("word_count in(8, 9)", ImmutableList.of("'", "'Faith", "'Tis")) .put("word_count is null", ImmutableList.of()) .put("word_count is not null", ImmutableList.of("'", "''All", "''Among")) .put( "word_count == 4 and corpus == 'twelfthnight'", ImmutableList.of("'Thou", "'em", "Art")) .put( "word_count == 4 or corpus > 'twelfthnight'", ImmutableList.of("'", "''Tis", "''twas")) .put("not word_count in(8, 9)", ImmutableList.of("'", "''All", "''Among")) .put("corpus like 'king%'", ImmutableList.of("'", "'A", "'Affectionate")) .put("corpus like '%kinghenryiv'", ImmutableList.of("'", "'And", "'Anon")) .put("corpus like '%king%'", ImmutableList.of("'", "'A", "'Affectionate")) .build(); protected final String PROJECT_ID = Preconditions.checkNotNull( System.getenv("GOOGLE_CLOUD_PROJECT"), "Please set the GOOGLE_CLOUD_PROJECT env variable in order to read views"); private static final StructType SHAKESPEARE_TABLE_SCHEMA_WITH_METADATA_COMMENT = new StructType( Stream.of(TestConstants.SHAKESPEARE_TABLE_SCHEMA.fields()) .map( field -> { Metadata metadata = new MetadataBuilder() .withMetadata(field.metadata()) .putString("comment", field.metadata().getString("description")) .build(); return new StructField( field.name(), field.dataType(), field.nullable(), metadata); }) .toArray(StructField[]::new)); private static final String LARGE_TABLE = "bigquery-public-data.samples.natality"; private static final String LARGE_TABLE_FIELD = "is_male"; private static final long LARGE_TABLE_NUM_ROWS = 33271914L; private static final String NON_EXISTENT_TABLE = "non-existent.non-existent.non-existent"; private static final String ALL_TYPES_TABLE_NAME = "all_types"; protected StructType allTypesTableSchema; protected final boolean userProvidedSchemaAllowed; protected List gcsObjectsToClean = new ArrayList<>(); BigQuery bigQuery = BigQueryOptions.getDefaultInstance().getService(); public ReadIntegrationTestBase() { this(true, Optional.empty()); } public ReadIntegrationTestBase(boolean userProvidedSchemaAllowed) { this(userProvidedSchemaAllowed, Optional.empty()); } public ReadIntegrationTestBase(boolean userProvidedSchemaAllowed, DataType timestampNTZType) { this(userProvidedSchemaAllowed, Optional.of(timestampNTZType)); } public ReadIntegrationTestBase( boolean userProvidedSchemaAllowed, Optional timeStampNTZType) { super(); this.userProvidedSchemaAllowed = userProvidedSchemaAllowed; intializeSchema(timeStampNTZType); } private void intializeSchema(Optional timeStampNTZType) { if (!timeStampNTZType.isPresent()) { allTypesTableSchema = ALL_TYPES_TABLE_SCHEMA; return; } allTypesTableSchema = new StructType(); for (StructField field : ALL_TYPES_TABLE_SCHEMA.fields()) { DataType dateTimeType = field.name().equals("dt") ? timeStampNTZType.get() : field.dataType(); allTypesTableSchema = allTypesTableSchema.add(field.name(), dateTimeType, field.nullable(), field.metadata()); } } @Before public void clearGcsObjectsToCleanList() { gcsObjectsToClean.clear(); } @After public void cleanGcsObjects() throws Exception { for (String object : gcsObjectsToClean) { AcceptanceTestUtils.deleteGcsDir(object); } } @After public void resetDefaultTimeZone() { TimeZone.setDefault(DEFAULT_TZ); } /** * Generate a test to verify that the given DataFrame is equal to a known result and contains * Nullable Schema. */ private void testShakespeare(Dataset df) { assertThat(df.schema()).isEqualTo(SHAKESPEARE_TABLE_SCHEMA_WITH_METADATA_COMMENT); assertThat(df.count()).isEqualTo(TestConstants.SHAKESPEARE_TABLE_NUM_ROWS); List firstWords = Arrays.asList( (String[]) df.select("word") .where("word >= 'a' AND word not like '%\\'%'") .distinct() .as(Encoders.STRING()) .sort("word") .take(3)); assertThat(firstWords).containsExactly("a", "abaissiez", "abandon"); } @Test public void testReadWithOption() { testShakespeare( spark.read().format("bigquery").option("table", TestConstants.SHAKESPEARE_TABLE).load()); } @Test public void testReadWithSimplifiedApi() { testShakespeare(spark.read().format("bigquery").load(TestConstants.SHAKESPEARE_TABLE)); } @Test @Ignore("DSv2 only") public void testReadCompressed() { Dataset df = spark .read() .format("bigquery") .option("table", TestConstants.SHAKESPEARE_TABLE) .option("bqEncodedCreateReadSessionRequest", "EgZCBBoCEAI=") .load(); // Test early termination succeeds df.head(); testShakespeare(df); } @Test @Ignore("DSv2 only") public void testReadCompressedWith1BackgroundThreads() { Dataset df = spark .read() .format("bigquery") .option("table", TestConstants.SHAKESPEARE_TABLE) .option("bqEncodedCreateReadSessionRequest", "EgZCBBoCEAI=") .option("bqBackgroundThreadsPerStream", "1") .load(); // Test early termination succeeds df.head(); testShakespeare(df); } @Test @Ignore("DSv2 only") public void testReadCompressedWith4BackgroundThreads() { Dataset df = spark .read() .format("bigquery") .option("table", TestConstants.SHAKESPEARE_TABLE) .option("bqEncodedCreateReadSessionRequest", "EgZCBBoCEAI=") .option("bqBackgroundThreadsPerStream", "4") .load(); // Test early termination succeeds df.head(); testShakespeare(df); } @Test public void testReadSchemaPruned() { Row res = readAllTypesTable() .select("str", "nested_struct.str", "nested_struct.inner_struct.str") .collectAsList() .get(0); assertThat(res.get(0)).isEqualTo("string"); assertThat(res.get(1)).isEqualTo("stringa"); assertThat(res.get(2)).isEqualTo("stringaa"); } @Test public void testFilters() { Dataset df = spark.read().format("bigquery").load(TestConstants.SHAKESPEARE_TABLE); assertThat(df.schema()).isEqualTo(SHAKESPEARE_TABLE_SCHEMA_WITH_METADATA_COMMENT); assertThat(df.count()).isEqualTo(TestConstants.SHAKESPEARE_TABLE_NUM_ROWS); FILTER_DATA.forEach( (condition, expectedElements) -> { List firstWords = Arrays.asList( (String[]) df.select("word") .where(condition) .distinct() .as(Encoders.STRING()) .sort("word") .take(3)); assertThat(firstWords).containsExactlyElementsIn(expectedElements); }); } Dataset readAllTypesTable() { return spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", ALL_TYPES_TABLE_NAME) .load(); } @Test public void testCountWithFilters() { long countResults = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", "ARROW") .load() .where("word_count = 1 OR corpus_date = 0") .count(); long countAfterCollect = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", "ARROW") .load() .where("word_count = 1 OR corpus_date = 0") .collectAsList() .size(); assertThat(countResults).isEqualTo(countAfterCollect); } @Test public void testKnownSizeInBytes() { Dataset allTypesTable = readAllTypesTable(); long actualTableSize = allTypesTable.queryExecution().analyzed().stats().sizeInBytes().longValue(); assertThat(actualTableSize).isEqualTo(TestConstants.ALL_TYPES_TABLE_SIZE); } @Test public void testKnownSchema() { Dataset allTypesTable = readAllTypesTable(); assertThat(allTypesTable.schema()).isEqualTo(allTypesTableSchema); } @Test public void testUserDefinedSchema() { assumeTrue("user provided schema is not allowed for this connector", userProvidedSchemaAllowed); // TODO(pmkc): consider a schema that wouldn't cause cast errors if read. StructType expectedSchema = new StructType( new StructField[] { new StructField("whatever", DataTypes.ByteType, true, Metadata.empty()) }); Dataset table = spark .read() .schema(expectedSchema) .format("bigquery") .option("table", TestConstants.SHAKESPEARE_TABLE) .load(); assertThat(expectedSchema).isEqualTo(table.schema()); } @Test public void testNonExistentSchema() { assertThrows( "Trying to read a non existing table should throw an exception", RuntimeException.class, () -> { spark.read().format("bigquery").option("table", NON_EXISTENT_TABLE).load(); }); } @Test(timeout = 10_000) // 10 seconds public void testHeadDoesNotTimeoutAndOOM() { spark .read() .format("bigquery") .option("table", LARGE_TABLE) .load() .select(LARGE_TABLE_FIELD) .head(); } @Test public void testUnhandledFilterOnStruct() { // Test fails on Spark 4.0.0 Assume.assumeThat(spark.version(), CoreMatchers.startsWith("3.")); Dataset df = spark .read() .format("bigquery") .option("table", "bigquery-public-data:samples.github_nested") .option("filter", "url like '%spark'") .load(); List result = df.select("url").where("repository is not null").collectAsList(); assertThat(result).hasSize(85); } @Test public void testQueryMaterializedView() { Dataset df = spark .read() .format("bigquery") .option("table", "bigquery-public-data:bigqueryml_ncaa.cume_games_view") .option("viewsEnabled", "true") .option("viewMaterializationProject", PROJECT_ID) .option("viewMaterializationDataset", testDataset.toString()) .load(); assertThat(df.count()).isGreaterThan(1); } @Test public void testQueryMaterializedView_noMaterializationDataset() { Dataset df = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", TestConstants.SHAKESPEARE_VIEW) .option("viewsEnabled", "true") .load(); assertThat(df.count()).isGreaterThan(1); } @Test public void testOrAcrossColumnsAndFormats() { List avroResults = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("filter", "word_count = 1 OR corpus_date = 0") .option("readDataFormat", "AVRO") .load() .collectAsList(); List arrowResults = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", "ARROW") .load() .where("word_count = 1 OR corpus_date = 0") .collectAsList(); assertThat(avroResults).isEqualTo(arrowResults); } @Test public void testArrowResponseCompressionCodec() { List avroResultsUncompressed = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("filter", "word_count = 1 OR corpus_date = 0") .option("readDataFormat", "AVRO") .load() .collectAsList(); List arrowResultsUncompressed = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", "ARROW") .load() .where("word_count = 1 OR corpus_date = 0") .collectAsList(); List arrowResultsWithLZ4ResponseCompression = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", "ARROW") .option("responseCompressionCodec", "RESPONSE_COMPRESSION_CODEC_LZ4") .load() .where("word_count = 1 OR corpus_date = 0") .collectAsList(); assertThat(avroResultsUncompressed).isEqualTo(arrowResultsWithLZ4ResponseCompression); assertThat(arrowResultsUncompressed).isEqualTo(arrowResultsWithLZ4ResponseCompression); } @Test public void testAvroResponseCompressionCodec() { List arrowResultsUncompressed = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("filter", "word_count = 1 OR corpus_date = 0") .option("readDataFormat", "ARROW") .load() .collectAsList(); List avroResultsUncompressed = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", "AVRO") .load() .where("word_count = 1 OR corpus_date = 0") .collectAsList(); List avroResultsWithLZ4ResponseCompression = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", "AVRO") .option("responseCompressionCodec", "RESPONSE_COMPRESSION_CODEC_LZ4") .load() .where("word_count = 1 OR corpus_date = 0") .collectAsList(); assertThat(arrowResultsUncompressed).isEqualTo(avroResultsWithLZ4ResponseCompression); assertThat(avroResultsUncompressed).isEqualTo(avroResultsWithLZ4ResponseCompression); } @Test public void testArrowCompressionCodec() { List avroResults = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("filter", "word_count = 1 OR corpus_date = 0") .option("readDataFormat", "AVRO") .load() .collectAsList(); List arrowResultsForZstdCodec = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", "ARROW") .option("arrowCompressionCodec", "ZSTD") .load() .where("word_count = 1 OR corpus_date = 0") .collectAsList(); assertThat(avroResults).isEqualTo(arrowResultsForZstdCodec); List arrowResultsForLZ4FrameCodec = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", "ARROW") .option("arrowCompressionCodec", "LZ4_FRAME") .load() .where("word_count = 1 OR corpus_date = 0") .collectAsList(); assertThat(avroResults).isEqualTo(arrowResultsForLZ4FrameCodec); } private void uploadFileToGCS(String resourceName, String destinationURI, String contentType) { try { AcceptanceTestUtils.uploadToGcs( getClass().getResourceAsStream("/integration/" + resourceName), destinationURI, contentType); } catch (Exception e) { throw new RuntimeException(e); } } @Test public void testReadFromBigLakeTable_csv() { testBigLakeTable(FormatOptions.csv(), TestConstants.SHAKESPEARE_CSV_FILENAME, "text/csv"); } @Test public void testReadFromBigLakeTable_json() { testBigLakeTable( FormatOptions.json(), TestConstants.SHAKESPEARE_JSON_FILENAME, "application/json"); } @Test public void testReadFromBigLakeTable_parquet() { testBigLakeTable( FormatOptions.parquet(), TestConstants.SHAKESPEARE_PARQUET_FILENAME, "application/octet-stream"); } @Test public void testReadFromBigLakeTable_avro() { testBigLakeTable( FormatOptions.avro(), TestConstants.SHAKESPEARE_AVRO_FILENAME, "application/octet-stream"); } private void testBigLakeTable(FormatOptions formatOptions, String dataFileName, String mimeType) { String table = testTable + "_" + formatOptions.getType().toLowerCase(Locale.US); String sourceUri = String.format("gs://%s/%s/%s", TestConstants.TEMPORARY_GCS_BUCKET, table, dataFileName); uploadFileToGCS(dataFileName, sourceUri, mimeType); this.gcsObjectsToClean.add(sourceUri); IntegrationTestUtils.createBigLakeTable( testDataset.toString(), table, TestConstants.SHAKESPEARE_TABLE_SCHEMA, sourceUri, formatOptions); Dataset df = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", table) .load(); testShakespeare(df); } @Test public void testReadFromTableSnapshot() { String snapshot = String.format("%s.%s.%s_snapshot", TestConstants.PROJECT_ID, testDataset, testTable); String allTypes = String.format( "%s.%s.%s", TestConstants.PROJECT_ID, testDataset, TestConstants.ALL_TYPES_TABLE_NAME); IntegrationTestUtils.runQuery( String.format("CREATE SNAPSHOT TABLE `%s` CLONE `%s`", snapshot, allTypes)); Row[] allTypesRows = (Row[]) spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", allTypes) .load() .collect(); Row[] snapshotRows = (Row[]) spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", snapshot) .load() .collect(); assertThat(snapshotRows).isEqualTo(allTypesRows); } @Test public void testReadFromTableWithSpacesInName() { String tableNameWithSpaces = testTable + " with spaces"; String tableIdForBqSql = String.format("`%s`.`%s`", testDataset.toString(), tableNameWithSpaces); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE %s (id INT64, data STRING) AS " + "SELECT * FROM UNNEST([(1, 'foo'), (2, 'bar'), (3, 'baz')])", tableIdForBqSql)); String tableIdForConnector = String.format("%s.%s", testDataset.toString(), tableNameWithSpaces); Dataset df = spark.read().format("bigquery").load(tableIdForConnector); StructType expectedSchema = new StructType() .add("id", DataTypes.LongType, true) .add("data", DataTypes.StringType, true); assertThat(df.schema()).isEqualTo(expectedSchema); assertThat(df.count()).isEqualTo(3); Dataset filteredDf = spark.read().format("bigquery").option("filter", "id > 1").load(tableIdForConnector); assertThat(filteredDf.count()).isEqualTo(2); List rows = filteredDf.sort("id").collectAsList(); assertThat(rows.get(0).getLong(0)).isEqualTo(2); assertThat(rows.get(0).getString(1)).isEqualTo("bar"); } /** * Setting the CreateReadSession timeout to 1000 seconds, which should create the read session * since the timeout is more and data is less */ @Test public void testCreateReadSessionTimeout() { assertThat( spark .read() .format("bigquery") .option("table", TestConstants.SHAKESPEARE_TABLE) .option("createReadSessionTimeoutInSeconds", 1000) .load() .collectAsList() .size()) .isEqualTo(TestConstants.SHAKESPEARE_TABLE_NUM_ROWS); } /** * Setting the CreateReadSession timeout to 1 second, to read the * `bigquery-public-data.wikipedia.pageviews_2021` table. Should throw run time, * DeadlineExceededException */ @Test @Ignore("Test has become flaky") public void testCreateReadSessionTimeoutWithLessTimeOnHugeData() { Dataset df = spark .read() .format("bigquery") .option("table", TestConstants.PUBLIC_DATA_WIKIPEDIA_PAGEVIEWS_2021) .option("createReadSessionTimeoutInSeconds", 1) .option("preferredMinParallelism", "9000") .load(); assertThrows( "DEADLINE_EXCEEDED: deadline exceeded ", com.google.api.gax.rpc.DeadlineExceededException.class, () -> { df.where( "views>1000 AND title='Google' AND DATE(datehour) BETWEEN DATE('2021-01-01') AND" + " DATE('2021-07-01')") .collect(); }); } @Test public void testNestedFieldProjection() throws Exception { Dataset githubNestedDF = spark.read().format("bigquery").load("bigquery-public-data:samples.github_nested"); List repositoryUrlRows = githubNestedDF .filter( "repository.has_downloads = true AND url =" + " 'https://github.com/googleapi/googleapi'") .select("repository.url") .collectAsList(); assertThat(repositoryUrlRows).hasSize(4); Set uniqueUrls = repositoryUrlRows.stream().map(row -> row.getString(0)).collect(Collectors.toSet()); assertThat(uniqueUrls).hasSize(1); assertThat(uniqueUrls).contains("https://github.com/googleapi/googleapi"); } @Test public void testReadFilteredTimestampField() { TimeZone.setDefault(TimeZone.getTimeZone("PST")); spark.conf().set("spark.sql.session.timeZone", "UTC"); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` AS\n" + "SELECT TIMESTAMP(\"2023-01-09 10:00:00\") as eventTime;", testDataset, testTable)); Dataset df = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); Dataset filteredDF = df.where(df.apply("eventTime").between("2023-01-09 10:00:00", "2023-01-09 10:00:00")); List result = filteredDF.collectAsList(); assertThat(result).hasSize(1); Row head = result.get(0); assertThat(head.get(head.fieldIndex("eventTime"))) .isEqualTo(Timestamp.valueOf("2023-01-09 02:00:00")); } @Test public void testPushDateTimePredicate() { IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) " + "AS SELECT * FROM UNNEST([(1, DATETIME '2023-09-25 1:00:00'), " + "(2, DATETIME '2023-09-29 10:00:00'), (3, DATETIME '2023-10-30 17:30:00')])", testDataset, testTable, "orderId", "orderDateTime")); Dataset df = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load() .where("orderDateTime < '2023-10-25 10:00:00'"); assertThat(df.count()).isEqualTo(2); } @Test public void testPseudoColumnsRuntimeFilteringDate() { IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INT64) PARTITION BY _PARTITIONDATE ", testDataset, testTable, "orderId")); IntegrationTestUtils.runQuery( String.format( "INSERT INTO `%s.%s` (%s, _PARTITIONTIME) VALUES " + "(101, \"2024-01-05 00:00:00 UTC\")," + "(102, \"2024-01-05 00:00:00 UTC\")," + "(201, \"2024-01-10 00:00:00 UTC\")," + "(202, \"2024-01-10 00:00:00 UTC\");", testDataset, testTable, "orderId")); String dt = "2024-01-05"; Dataset df = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .option("filter", "_PARTITIONDATE = '" + dt + "'") .load() .select("orderId"); List rows = df.join(df, "orderId").orderBy("orderId").collectAsList(); assertThat(rows.size()).isEqualTo(2); assertThat(rows.get(0).getLong(0)).isEqualTo(101); assertThat(rows.get(1).getLong(0)).isEqualTo(102); } @Test public void testPseudoColumnsRuntimeFilteringHour() { IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INT64) PARTITION BY TIMESTAMP_TRUNC(_PARTITIONTIME, HOUR) ", testDataset, testTable, "orderId")); IntegrationTestUtils.runQuery( String.format( "INSERT INTO `%s.%s` (%s, _PARTITIONTIME) VALUES " + "(101, \"2024-01-05 18:00:00 UTC\")," + "(102, \"2024-01-05 18:00:00 UTC\")," + "(201, \"2024-01-10 06:00:00 UTC\")," + "(202, \"2024-01-10 08:00:00 UTC\");", testDataset, testTable, "orderId")); String dt = "2024-01-05 18:00:00 UTC"; Dataset df = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .option("filter", "_PARTITIONTIME = '" + dt + "'") .load() .select("orderId"); List rows = df.join(df, "orderId").orderBy("orderId").collectAsList(); assertThat(rows.size()).isEqualTo(2); assertThat(rows.get(0).getLong(0)).isEqualTo(101); assertThat(rows.get(1).getLong(0)).isEqualTo(102); } @Test public void testExecuteCommand() throws Exception { Dataset output = spark.executeCommand( "bigquery", String.format( "CREATE TABLE %s.%s AS SELECT 1 AS `id`, 'foo' AS `name`", testDataset.testDataset, testTable), new HashMap<>()); assertThat(output.count()).isEqualTo(0L); Table table = bigQuery.getTable(testDataset.testDataset, testTable); assertThat(table).isNotNull(); assertThat(table.getDefinition().getSchema().getFields()).hasSize(2); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/SparkBigQueryIntegrationTestBase.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import java.util.UUID; import org.apache.spark.sql.SparkSession; import org.junit.Before; import org.junit.ClassRule; import org.junit.rules.ExternalResource; public class SparkBigQueryIntegrationTestBase { @ClassRule public static SparkFactory sparkFactory = new SparkFactory(); @ClassRule public static TestDataset testDataset = new TestDataset(); protected SparkSession spark; protected String testTable; public SparkBigQueryIntegrationTestBase() { this.spark = sparkFactory.spark; } @Before public void createTestTable() { testTable = "test_" + System.nanoTime(); } protected static class SparkFactory extends ExternalResource { SparkSession spark; @Override protected void before() throws Throwable { String appName = "integration-test-" + UUID.randomUUID(); spark = SparkSession.builder() .master("local") .appName(appName) .config("spark.hadoop.google.cloud.appName.v2", appName) .config("spark.ui.enabled", "false") .config("spark.default.parallelism", 20) .getOrCreate(); // reducing test's logs spark.sparkContext().setLogLevel("WARN"); } } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/TestConstants.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.cloud.spark.bigquery.integration.IntegrationTestUtils.metadata; import static org.apache.spark.sql.functions.array; import static org.apache.spark.sql.functions.from_utc_timestamp; import static org.apache.spark.sql.functions.lit; import static org.apache.spark.sql.functions.struct; import static org.apache.spark.sql.functions.to_date; import static org.apache.spark.sql.types.DataTypes.BinaryType; import static org.apache.spark.sql.types.DataTypes.BooleanType; import static org.apache.spark.sql.types.DataTypes.ByteType; import static org.apache.spark.sql.types.DataTypes.DateType; import static org.apache.spark.sql.types.DataTypes.DoubleType; import static org.apache.spark.sql.types.DataTypes.IntegerType; import static org.apache.spark.sql.types.DataTypes.LongType; import static org.apache.spark.sql.types.DataTypes.ShortType; import static org.apache.spark.sql.types.DataTypes.StringType; import static org.apache.spark.sql.types.DataTypes.TimestampType; import com.google.cloud.spark.bigquery.integration.model.ColumnOrderTestClass; import com.google.cloud.spark.bigquery.integration.model.NumStruct; import com.google.cloud.spark.bigquery.integration.model.StringStruct; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableList; import java.math.BigDecimal; import java.math.MathContext; import java.sql.Date; import java.sql.Timestamp; import java.util.Arrays; import java.util.List; import java.util.TimeZone; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.spark.sql.Column; import org.apache.spark.sql.Row; import org.apache.spark.sql.RowFactory; import org.apache.spark.sql.types.ArrayType; import org.apache.spark.sql.types.DataType; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.Decimal; import org.apache.spark.sql.types.DecimalType; import org.apache.spark.sql.types.Metadata; import org.apache.spark.sql.types.MetadataBuilder; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; public class TestConstants { static final int BQ_NUMERIC_PRECISION = 38; static final int BQ_NUMERIC_SCALE = 9; static final int BQ_BIGNUMERIC_SCALE = 38; static final DecimalType NUMERIC_SPARK_TYPE = DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE); static final DecimalType BIGNUMERIC_SPARK_TYPE = DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE); static final String SHAKESPEARE_TABLE = "bigquery-public-data.samples.shakespeare"; static final String PUBLIC_DATA_WIKIPEDIA_PAGEVIEWS_2021 = "bigquery-public-data.wikipedia.pageviews_2021"; static final long SHAKESPEARE_TABLE_NUM_ROWS = 164656L; static final String PROJECT_ID = Preconditions.checkNotNull( System.getenv("GOOGLE_CLOUD_PROJECT"), "Please set the GOOGLE_CLOUD_PROJECT env variable"); static final String TEMPORARY_GCS_BUCKET_ENV_VARIABLE = "TEMPORARY_GCS_BUCKET"; static final String BIGLAKE_CONNECTION_ID_ENV_VARIABLE = "BIGLAKE_CONNECTION_ID"; static final String TEMPORARY_GCS_BUCKET = Preconditions.checkNotNull( System.getenv(TEMPORARY_GCS_BUCKET_ENV_VARIABLE), "Please set the %s env variable to point to a write enabled GCS bucket", TEMPORARY_GCS_BUCKET_ENV_VARIABLE); static final String BIGLAKE_CONNECTION_ID = Preconditions.checkNotNull( System.getenv(BIGLAKE_CONNECTION_ID_ENV_VARIABLE), "Please set the BIGLAKE_CONNECTION_ID env variable in order to create biglake table"); static final String SHAKESPEARE_CSV_FILENAME = "shakespeare.csv"; static final String SHAKESPEARE_JSON_FILENAME = "shakespeare.json"; static final String SHAKESPEARE_AVRO_FILENAME = "shakespeare.avro"; static final String SHAKESPEARE_PARQUET_FILENAME = "shakespeare.parquet"; static final StructType SHAKESPEARE_TABLE_SCHEMA = new StructType( new StructField[] { StructField.apply( "word", DataTypes.StringType, false, metadata( "description", "A single unique word (where whitespace is the delimiter) extracted from a" + " corpus.")), StructField.apply( "word_count", DataTypes.LongType, false, metadata("description", "The number of times this word appears in this corpus.")), StructField.apply( "corpus", DataTypes.StringType, false, metadata("description", "The work from which this word was extracted.")), StructField.apply( "corpus_date", DataTypes.LongType, false, metadata("description", "The year in which this corpus was published.")) }); static final String LARGE_TABLE = "bigquery-public-data.samples.natality"; static final String LARGE_TABLE_FIELD = "is_male"; static final long LARGE_TABLE_NUM_ROWS = 33271914L; static final String LIBRARIES_PROJECTS_TABLE = "bigquery-public-data.libraries_io.projects"; static final String NON_EXISTENT_TABLE = "non-existent.non-existent.non-existent"; static final String STRUCT_COLUMN_ORDER_TEST_TABLE_NAME = "struct_column_order"; static final String ALL_TYPES_TABLE_NAME = "all_types"; static final String ALL_TYPES_VIEW_NAME = "all_types_view"; static final String SHAKESPEARE_VIEW = "shakespeare_view"; static final String DIFF_IN_SCHEMA_SRC_TABLE_NAME = "src_table"; static final String DIFF_IN_SCHEMA_SRC_TABLE_NAME_WITH_DESCRIPTION = "src_table_with_description"; static final String DIFF_IN_SCHEMA_DEST_TABLE_NAME = "dest_table"; static DataType BQ_NUMERIC = DataTypes.createDecimalType(38, 9); static DataType BQ_BIGNUMERIC = DataTypes.createDecimalType(38, 38); public static int BIG_NUMERIC_COLUMN_POSITION = 11; public static final String GA4_TABLE = "bigquery-public-data.ga4_obfuscated_sample_ecommerce.events_20210131"; public static StructType ALL_TYPES_TABLE_SCHEMA = new StructType( copy( new StructField("int_req", DataTypes.LongType, false, Metadata.empty()), new StructField("int_null", DataTypes.LongType, true, Metadata.empty()), new StructField("bl", DataTypes.BooleanType, true, Metadata.empty()), new StructField("str", DataTypes.StringType, true, Metadata.empty()), new StructField("day", DataTypes.DateType, true, Metadata.empty()), new StructField("ts", DataTypes.TimestampType, true, Metadata.empty()), new StructField("dt", DataTypes.StringType, true, Metadata.empty()), new StructField("tm", DataTypes.LongType, true, Metadata.empty()), new StructField("binary", DataTypes.BinaryType, true, Metadata.empty()), new StructField("float", DataTypes.DoubleType, true, Metadata.empty()), new StructField( "json_f", DataTypes.StringType, true, Metadata.fromJson("{\"sqlType\":\"JSON\"}")), new StructField( "nums", new StructType( copy( new StructField("min", BQ_NUMERIC, true, Metadata.empty()), new StructField("max", BQ_NUMERIC, true, Metadata.empty()), new StructField("pi", BQ_NUMERIC, true, Metadata.empty()), new StructField("big_pi", BQ_NUMERIC, true, Metadata.empty()))), true, Metadata.empty()), new StructField( "big_numeric_nums", new StructType( copy( new StructField("min", BQ_BIGNUMERIC, true, Metadata.empty()), new StructField("max", BQ_BIGNUMERIC, true, Metadata.empty()))), true, Metadata.empty()), new StructField( "int_arr", new ArrayType(DataTypes.LongType, true), true, Metadata.empty()), new StructField( "int_struct_arr", new ArrayType( new StructType( copy(new StructField("i", DataTypes.LongType, true, Metadata.empty()))), true), true, Metadata.empty()), new StructField( "nested_struct", new StructType( copy( new StructField("int_null", DataTypes.LongType, true, Metadata.empty()), new StructField("str", DataTypes.StringType, true, Metadata.empty()), new StructField( "inner_struct", new StructType( copy( new StructField( "bl", DataTypes.BooleanType, true, Metadata.empty()), new StructField( "str", DataTypes.StringType, true, Metadata.empty()), new StructField( "int_null", DataTypes.LongType, true, Metadata.empty()))), true, Metadata.empty()))), true, Metadata.empty()))); public static String ALL_TYPES_TABLE_QUERY_TEMPLATE = // Use DDL to support required fields Stream.of( "create table %s.%s (", "int_req int64 not null,", "int_null int64,", "bl bool,", "str string,", "day date,", "ts timestamp,", "dt datetime,", "tm time,", "binary bytes,", "float float64,", "json_f json,", "nums struct,", "big_numeric_nums struct,", "int_arr array,", "int_struct_arr array>,", "nested_struct struct>", ") as", "", "select", "42 as int_req,", "null as int_null,", "true as bl,", "\"string\" as str,", "cast(\"2019-03-18\" as date) as day,", "cast(\"2019-03-18T01:23:45.678901\" as timestamp) as ts,", "cast(\"2019-03-18T01:23:45.678901\" as datetime) as dt,", "cast(\"01:23:45.678901\" as time) as tm,", "cast(\"bytes\" as bytes) as binary,", "4.2 as float,", "JSON \'{\"json\":\"true\"}\' as json_f,", "struct(", " cast(\"-99999999999999999999999999999.999999999\" as numeric) as min,", " cast(\"99999999999999999999999999999.999999999\" as numeric) as max,", " cast(3.14 as numeric) as pi,", " cast(\"31415926535897932384626433832.795028841\" as numeric) as big_pi", ") as nums,", "struct(", "cast(\"-0.34992332820282019728792003956564819968\" as bignumeric) as min,", "cast(\"0.34992332820282019728792003956564819967\" as bignumeric) as max", ") as big_numeric_nums,", "[1, 2, 3] as int_arr,", "[(select as struct 1)] as int_struct_arr,", "struct(", " 1 as int_null,", " \"stringa\" as str,", " struct( true as bl, \"stringaa\" as str, 11 as int_null) ", ") as nested_struct") .collect(Collectors.joining("\n")); public static int ALL_TYPES_TABLE_SIZE = 266; static String STRUCT_COLUMN_ORDER_TEST_TABLE_QUERY_TEMPLATE = Stream.of( "create table %s.%s (", "str string,", "nums struct <", " num1 int64,", " num2 int64,", " num3 int64,", " strings array >", " >", ")", "as", "select", "\"outer_string\" as str,", "struct(", " 1 as num1,", " 2 as num2,", " 3 as num3,", " [", " struct(\"0:str1\" as str1, \"0:str2\" as str2, \"0:str3\" as str3),", " struct(\"1:str1\" as str1, \"1:str2\" as str2, \"1:str3\" as str3)", " ] as string_struct_arr", ") as nums") .collect(Collectors.joining("\n")); public static String DIFF_IN_SCHEMA_SRC_TABLE = Stream.of( "create table %s.%s (", "int_req int64 not null,", "int_null int64,", ") as", "", "select", "42 as int_req,", "null as int_null") .collect(Collectors.joining("\n")); public static String DIFF_IN_SCHEMA_SRC_TABLE_WITH_DESCRIPTION = Stream.of( "create table %s.%s (", "int_req int64 not null,", "int_null int64 OPTIONS(description='An INTEGER field with description'),", ") as", "", "select", "42 as int_req,", "null as int_null") .collect(Collectors.joining("\n")); public static String DIFF_IN_SCHEMA_DEST_TABLE = Stream.of("create table %s.%s (", "int_req int64,", "int_null int64,", ")", "") .collect(Collectors.joining("\n")); public static String DIFF_IN_SCHEMA_DEST_TABLE_WITH_NULLABLE_FIELD = Stream.of("create table %s.%s (", "int_null int64,", ")", "") .collect(Collectors.joining("\n")); public static String DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD = Stream.of("create table %s.%s (", "int_req int64 not null,", ")", "") .collect(Collectors.joining("\n")); public static String DIFF_IN_SCHEMA_DEST_TABLE_WITH_REPEATED_FIELD = Stream.of("create table %s.%s (", "int_rep ARRAY,", ")", "") .collect(Collectors.joining("\n")); public static List ALL_TYPES_TABLE_COLS = Arrays.asList( lit(42L), lit(null), lit(true), lit("string"), to_date(lit("2019-03-18")), from_utc_timestamp(lit("2019-03-18T01:23:45.678901"), TimeZone.getDefault().getID()), lit("2019-03-18T01:23:45.678901"), lit(5025678901L), lit("bytes").cast("BINARY"), lit(4.2), lit("{\"json\":\"true\"}"), struct( lit("-99999999999999999999999999999.999999999").cast(BQ_NUMERIC), lit("99999999999999999999999999999.999999999").cast(BQ_NUMERIC), lit(3.14).cast(BQ_NUMERIC), lit("31415926535897932384626433832.795028841").cast(BQ_NUMERIC)), struct( lit("-0.34992332820282019728792003956564819968").cast(BQ_BIGNUMERIC), lit("0.34992332820282019728792003956564819967").cast(BQ_BIGNUMERIC)), array(lit(1), lit(2), lit(3)), array(struct(lit(1))), struct(lit(1), lit("stringa"), struct(lit(true), lit("stringaa"), lit(11)))); public static Row ALL_TYPES_TABLE_ROW = RowFactory.create( 42L, null, true, "string", Date.valueOf("2019-03-18"), new Timestamp(1552872225000L), // 2019-03-18 01:23:45 "2019-03-18T01:23:45.678901", 5025678901L, new byte[] {98, 121, 116, 101, 115}, 4.2, "{\"json\":\"true\"}", RowFactory.create( Decimal.apply( new BigDecimal( "-99999999999999999999999999999.999999999", new MathContext(BQ_NUMERIC_PRECISION)), BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE), Decimal.apply( new BigDecimal( "99999999999999999999999999999.999999999", new MathContext(BQ_NUMERIC_PRECISION)), BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE), Decimal.apply( new BigDecimal("3.14", new MathContext(BQ_NUMERIC_PRECISION)), BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE), Decimal.apply( new BigDecimal( "31415926535897932384626433832.795028841", new MathContext(BQ_NUMERIC_PRECISION)), BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE)), RowFactory.create( Decimal.apply( new BigDecimal("-0.34992332820282019728792003956564819968"), BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE), Decimal.apply( new BigDecimal("0.34992332820282019728792003956564819967"), BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE)), new long[] {1L, 2L, 3L, 4L}, new Row[] {RowFactory.create(123L), RowFactory.create(1L)}, RowFactory.create(1L, "stringa", RowFactory.create(true, "stringaa", 11L))); private static T[] copy(T... elements) { return elements; } public static ColumnOrderTestClass STRUCT_COLUMN_ORDER_TEST_TABLE_COLS = new ColumnOrderTestClass( new NumStruct( 3L, 2L, 1L, ImmutableList.of( new StringStruct("0:str3", "0:str1", "0:str2"), new StringStruct("1:str3", "1:str1", "1:str2"))), "outer_string"); // Constants for storage api tests. public static final StructType STORAGE_API_ALL_TYPES_SCHEMA = new StructType() .add( new StructField( "int_req", IntegerType, false, new MetadataBuilder().putString("description", "required integer").build())) .add(new StructField("int_null", IntegerType, true, Metadata.empty())) .add(new StructField("long", LongType, true, Metadata.empty())) .add(new StructField("short", ShortType, true, Metadata.empty())) .add(new StructField("bytenum", ByteType, true, Metadata.empty())) .add(new StructField("bool", BooleanType, true, Metadata.empty())) .add(new StructField("str", StringType, true, Metadata.empty())) .add(new StructField("date", DateType, true, Metadata.empty())) .add(new StructField("timestamp", TimestampType, true, Metadata.empty())) .add(new StructField("binary", BinaryType, true, Metadata.empty())) .add(new StructField("float", DoubleType, true, Metadata.empty())) .add(new StructField("json_f", StringType, true, Metadata.empty())) .add( new StructField( "nums", new StructType() .add(new StructField("min", NUMERIC_SPARK_TYPE, true, Metadata.empty())) .add(new StructField("max", NUMERIC_SPARK_TYPE, true, Metadata.empty())) .add(new StructField("pi", NUMERIC_SPARK_TYPE, true, Metadata.empty())) .add(new StructField("big_pi", NUMERIC_SPARK_TYPE, true, Metadata.empty())), true, Metadata.empty())) .add( new StructField( "big_numeric_nums", new StructType() .add(new StructField("min", BQ_BIGNUMERIC, true, Metadata.empty())) .add(new StructField("max", BQ_BIGNUMERIC, true, Metadata.empty())), true, Metadata.empty())) .add(new StructField("int_arr", new ArrayType(IntegerType, true), true, Metadata.empty())) .add( new StructField( "int_struct_arr", new ArrayType( new StructType() .add(new StructField("i", IntegerType, true, Metadata.empty())), true), true, Metadata.empty())); // same as ALL_TYPES_SCHEMA, except all IntegerType's are LongType's. public static final StructType STORAGE_API_ALL_TYPES_SCHEMA_BIGQUERY_REPRESENTATION = new StructType() .add( new StructField( "int_req", LongType, false, new MetadataBuilder() .putString("description", "required integer") .putString("comment", "required integer") .build())) .add(new StructField("int_null", LongType, true, Metadata.empty())) .add(new StructField("long", LongType, true, Metadata.empty())) .add(new StructField("short", LongType, true, Metadata.empty())) .add(new StructField("bytenum", LongType, true, Metadata.empty())) .add(new StructField("bool", BooleanType, true, Metadata.empty())) .add(new StructField("str", StringType, true, Metadata.empty())) .add(new StructField("date", DateType, true, Metadata.empty())) .add(new StructField("timestamp", TimestampType, true, Metadata.empty())) .add(new StructField("binary", BinaryType, true, Metadata.empty())) .add(new StructField("float", DoubleType, true, Metadata.empty())) .add(new StructField("json_f", StringType, true, Metadata.empty())) .add( new StructField( "nums", new StructType() .add(new StructField("min", NUMERIC_SPARK_TYPE, true, Metadata.empty())) .add(new StructField("max", NUMERIC_SPARK_TYPE, true, Metadata.empty())) .add(new StructField("pi", NUMERIC_SPARK_TYPE, true, Metadata.empty())) .add(new StructField("big_pi", NUMERIC_SPARK_TYPE, true, Metadata.empty())), true, Metadata.empty())) .add( new StructField( "big_numeric_nums", new StructType() .add(new StructField("min", BQ_BIGNUMERIC, true, Metadata.empty())) .add(new StructField("max", BQ_BIGNUMERIC, true, Metadata.empty())), true, Metadata.empty())) .add(new StructField("int_arr", new ArrayType(LongType, true), true, Metadata.empty())) .add( new StructField( "int_struct_arr", new ArrayType( new StructType().add(new StructField("i", LongType, true, Metadata.empty())), true), true, Metadata.empty())); public static final Row[] STORAGE_API_ALL_TYPES_ROWS = new Row[] { RowFactory.create( 123456789, null, 123456789L, (short) 1024, (byte) 127, true, "hello", Date.valueOf("2019-03-18"), new Timestamp(1552872225000L), // 2019-03-18 01:23:45 new byte[] { 98, 121, 116, 101, 115 }, // byte[] representation of string "bytes" -> stored in BQ as Ynl0ZXM= 1.2345, "{\"json\":\"true\"}", RowFactory.create( Decimal.apply( new BigDecimal( "-99999999999999999999999999999.999999999", new MathContext(BQ_NUMERIC_PRECISION)), BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE), Decimal.apply( new BigDecimal( "99999999999999999999999999999.999999999", new MathContext(BQ_NUMERIC_PRECISION)), BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE), Decimal.apply( new BigDecimal("3.14", new MathContext(BQ_NUMERIC_PRECISION)), BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE), Decimal.apply( new BigDecimal( "31415926535897932384626433832.795028841", new MathContext(BQ_NUMERIC_PRECISION)), BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE)), RowFactory.create( Decimal.apply( new BigDecimal("-0.34992332820282019728792003956564819968"), BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE), Decimal.apply( new BigDecimal("0.34992332820282019728792003956564819967"), BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE)), new int[] {1, 2, 3, 4}, new Row[] {RowFactory.create(1), RowFactory.create(1)}) }; public static final List numStructDataset = Arrays.asList( new NumStruct( 1L, 2L, 3L, ImmutableList.of(new StringStruct("1:str3", "2:str1", "3:str2"))), new NumStruct( 2L, 3L, 4L, ImmutableList.of(new StringStruct("2:str3", "3:str1", "4:str2")))); public static final List numStructDatasetForJoin = Arrays.asList( new NumStruct( 1L, 4L, 3L, ImmutableList.of(new StringStruct("3:str3", "4:str4", "3:str3"))), new NumStruct( 3L, 5L, 6L, ImmutableList.of(new StringStruct("6:str6", "5:str5", "3:str3"))), new NumStruct( 3L, 1L, 4L, ImmutableList.of(new StringStruct("3:str3", "1:str1", "4:str4")))); public static final List numStructDatasetForWindow = Arrays.asList( new NumStruct( 1L, 3L, 4L, ImmutableList.of(new StringStruct("1:str3", "2:str1", "3:str2"))), new NumStruct( 2L, 2L, 6L, ImmutableList.of(new StringStruct("2:str3", "3:str1", "4:str2"))), new NumStruct( 1L, 3L, 5L, ImmutableList.of(new StringStruct("1:str3", "2:str1", "3:str2"))), new NumStruct( 2L, 2L, 7L, ImmutableList.of(new StringStruct("2:str3", "3:str1", "4:str2")))); } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/TestDataset.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import org.junit.rules.ExternalResource; import org.junit.runner.Description; import org.junit.runners.model.Statement; public class TestDataset extends ExternalResource { String testDataset; @Override public Statement apply(Statement base, Description description) { // using hex string to shorten the dataset name this.testDataset = String.format( "spark_bq_%x_%x_%x", System.currentTimeMillis(), System.nanoTime(), description.getClassName().hashCode()); return super.apply(base, description); } @Override protected void before() throws Throwable { IntegrationTestUtils.createDataset(testDataset); IntegrationTestUtils.runQuery( String.format( TestConstants.ALL_TYPES_TABLE_QUERY_TEMPLATE, testDataset, TestConstants.ALL_TYPES_TABLE_NAME)); IntegrationTestUtils.createView(testDataset, TestConstants.ALL_TYPES_VIEW_NAME); IntegrationTestUtils.createView(testDataset, TestConstants.SHAKESPEARE_VIEW); IntegrationTestUtils.runQuery( String.format( TestConstants.STRUCT_COLUMN_ORDER_TEST_TABLE_QUERY_TEMPLATE, testDataset, TestConstants.STRUCT_COLUMN_ORDER_TEST_TABLE_NAME)); IntegrationTestUtils.runQuery( String.format( TestConstants.DIFF_IN_SCHEMA_SRC_TABLE, testDataset, TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME)); IntegrationTestUtils.runQuery( String.format( TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_WITH_DESCRIPTION, testDataset, TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME_WITH_DESCRIPTION)); } @Override protected void after() { IntegrationTestUtils.deleteDatasetAndTables(testDataset); } @Override public String toString() { return testDataset; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/WriteIntegrationTestBase.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.common.truth.Truth.assertThat; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThrows; import static org.junit.Assert.assertTrue; import static org.junit.Assume.assumeThat; import com.google.cloud.bigquery.BigQuery; import com.google.cloud.bigquery.BigQueryOptions; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.Field.Mode; import com.google.cloud.bigquery.FieldValue; import com.google.cloud.bigquery.FieldValueList; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.QueryJobConfiguration; import com.google.cloud.bigquery.RangePartitioning; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.Table; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.TableResult; import com.google.cloud.bigquery.TimePartitioning; import com.google.cloud.spark.bigquery.PartitionOverwriteMode; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.SparkBigQueryConfig.WriteMethod; import com.google.cloud.spark.bigquery.integration.model.Data; import com.google.cloud.spark.bigquery.integration.model.Friend; import com.google.cloud.spark.bigquery.integration.model.Link; import com.google.cloud.spark.bigquery.integration.model.Person; import com.google.cloud.spark.bigquery.integration.model.RangeData; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Streams; import com.google.inject.ProvisionException; import java.io.IOException; import java.math.BigDecimal; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; import java.sql.Date; import java.sql.Timestamp; import java.time.LocalDateTime; import java.time.temporal.ChronoUnit; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.TimeZone; import java.util.concurrent.TimeoutException; import java.util.concurrent.atomic.AtomicInteger; import java.util.function.Predicate; import java.util.stream.Collectors; import org.apache.spark.ml.PipelineModel; import org.apache.spark.ml.Transformer; import org.apache.spark.ml.feature.MinMaxScaler; import org.apache.spark.ml.feature.MinMaxScalerModel; import org.apache.spark.ml.feature.VectorAssembler; import org.apache.spark.ml.linalg.SQLDataTypes; import org.apache.spark.package$; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Encoder; import org.apache.spark.sql.Encoders; import org.apache.spark.sql.Row; import org.apache.spark.sql.RowFactory; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.execution.streaming.MemoryStream; import org.apache.spark.sql.streaming.OutputMode; import org.apache.spark.sql.streaming.StreamingQuery; import org.apache.spark.sql.types.DataType; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.Decimal; import org.apache.spark.sql.types.Metadata; import org.apache.spark.sql.types.MetadataBuilder; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.hamcrest.CoreMatchers; import org.junit.After; import org.junit.Assert; import org.junit.Assume; import org.junit.Before; import org.junit.Test; import scala.Option; import scala.Some; import scala.collection.JavaConverters; abstract class WriteIntegrationTestBase extends SparkBigQueryIntegrationTestBase { private static final TimeZone DEFAULT_TZ = TimeZone.getDefault(); protected static AtomicInteger id = new AtomicInteger(0); protected final SparkBigQueryConfig.WriteMethod writeMethod; protected Class expectedExceptionOnExistingTable; protected BigQuery bq; protected Optional timeStampNTZType; public WriteIntegrationTestBase(SparkBigQueryConfig.WriteMethod writeMethod) { this(writeMethod, IllegalArgumentException.class, Optional.empty()); } public WriteIntegrationTestBase( SparkBigQueryConfig.WriteMethod writeMethod, DataType timeStampNTZType) { this(writeMethod, IllegalArgumentException.class, Optional.of(timeStampNTZType)); } public WriteIntegrationTestBase( SparkBigQueryConfig.WriteMethod writeMethod, Class expectedExceptionOnExistingTable, Optional timeStampNTZType) { super(); this.writeMethod = writeMethod; this.expectedExceptionOnExistingTable = expectedExceptionOnExistingTable; this.bq = BigQueryOptions.getDefaultInstance().getService(); this.timeStampNTZType = timeStampNTZType; } private Metadata metadata(Map map) { MetadataBuilder metadata = new MetadataBuilder(); map.forEach((key, value) -> metadata.putString(key, value)); return metadata.build(); } @Before public void createTestTableName() { // have a fresh table for each test this.testTable = "test_" + System.nanoTime(); } @After public void resetDefaultTimeZone() { TimeZone.setDefault(DEFAULT_TZ); } private String createDiffInSchemaDestTable(String schema) { String destTableName = TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_NAME + "_" + System.nanoTime(); IntegrationTestUtils.runQuery(String.format(schema, testDataset, destTableName)); return destTableName; } // Write tests. We have four save modes: Append, ErrorIfExists, Ignore and // Overwrite. For each there are two behaviours - the table exists or not. // See more at http://spark.apache.org/docs/2.3.2/api/java/org/apache/spark/sql/SaveMode.html protected Dataset initialData() { return spark .createDataset( Arrays.asList( new Person( "Abc", Arrays.asList(new Friend(10, Arrays.asList(new Link("www.abc.com"))))), // new Person( "Def", Arrays.asList(new Friend(12, Arrays.asList(new Link("www.def.com")))))), Encoders.bean(Person.class)) .toDF(); } protected Dataset additonalData() { return spark .createDataset( Arrays.asList( new Person( "Xyz", Arrays.asList(new Friend(10, Arrays.asList(new Link("www.xyz.com"))))), new Person( "Pqr", Arrays.asList(new Friend(12, Arrays.asList(new Link("www.pqr.com")))))), Encoders.bean(Person.class)) .toDF(); } protected int testTableNumberOfRows() throws InterruptedException { return testTableNumberOfRows(testTable); } protected int testTableNumberOfRows(String table) throws InterruptedException { String query = String.format("select * from %s.%s", testDataset.toString(), table); return (int) bq.query(QueryJobConfiguration.of(query)).getTotalRows(); } private StandardTableDefinition testPartitionedTableDefinition() { return bq.getTable(testDataset.toString(), testTable + "_partitioned").getDefinition(); } protected void writeToBigQueryAvroFormat( Dataset df, SaveMode mode, String writeAtLeastOnce) { writeToBigQuery(df, mode, "avro", writeAtLeastOnce); } protected void writeToBigQuery(Dataset df, SaveMode mode, String format) { writeToBigQuery(df, mode, format, "False"); } protected void writeToBigQuery( Dataset df, SaveMode mode, String format, String writeAtLeastOnce) { df.write() .format("bigquery") .mode(mode) .option("table", fullTableName()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("intermediateFormat", format) .option("writeMethod", writeMethod.toString()) .option("writeAtLeastOnce", writeAtLeastOnce) .save(); } Dataset readAllTypesTable() { return spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", TestConstants.ALL_TYPES_TABLE_NAME) .load(); } private void writeToBigQuery_AppendSaveMode_Internal(String writeAtLeastOnce) throws InterruptedException { // initial write writeToBigQueryAvroFormat(initialData(), SaveMode.Append, writeAtLeastOnce); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); // second write writeToBigQueryAvroFormat(additonalData(), SaveMode.Append, writeAtLeastOnce); assertThat(testTableNumberOfRows()).isEqualTo(4); assertThat(additionalDataValuesExist()).isTrue(); } @Test public void testWriteToBigQuery_AppendSaveMode() throws InterruptedException { writeToBigQuery_AppendSaveMode_Internal("False"); } @Test public void testWriteToBigQuery_AppendSaveMode_AtLeastOnce() throws InterruptedException { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); writeToBigQuery_AppendSaveMode_Internal("True"); } private void writeToBigQuery_WithTableLabels_Internal(String writeAtLeastOnce) { Dataset df = initialData(); df.write() .format("bigquery") .mode(SaveMode.Append) .option("table", fullTableName()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("intermediateFormat", "avro") .option("writeMethod", writeMethod.toString()) .option("writeAtLeastOnce", writeAtLeastOnce) .option("bigQueryTableLabel.alice", "bob") .option("bigQueryTableLabel.foo", "bar") .save(); Table bigQueryTable = bq.getTable(testDataset.toString(), testTable); Map tableLabels = bigQueryTable.getLabels(); assertEquals(2, tableLabels.size()); assertEquals("bob", tableLabels.get("alice")); assertEquals("bar", tableLabels.get("foo")); } @Test public void testWriteToBigQuery_WithTableLabels() { writeToBigQuery_WithTableLabels_Internal("False"); } @Test public void testWriteToBigQuery_WithTableLabels_AtLeastOnce() { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); writeToBigQuery_WithTableLabels_Internal("True"); } private void writeToBigQuery_EnableListInference_Internal(String writeAtLeastOnce) throws InterruptedException { Dataset df = initialData(); df.write() .format("bigquery") .mode(SaveMode.Append) .option("table", fullTableName()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("intermediateFormat", "parquet") .option("writeMethod", writeMethod.toString()) .option("writeAtLeastOnce", writeAtLeastOnce) .option("enableListInference", true) .save(); Dataset readDF = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); SchemaConverters sc = SchemaConverters.from(SchemaConvertersConfiguration.createDefault()); Schema initialSchema = sc.toBigQuerySchema(df.schema()); Schema readSchema = sc.toBigQuerySchema(readDF.schema()); assertEquals(initialSchema, readSchema); } @Test public void testWriteToBigQuery_EnableListInference() throws InterruptedException { writeToBigQuery_EnableListInference_Internal("False"); } @Test public void testWriteToBigQuery_EnableListInference_AtLeastOnce() throws InterruptedException { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); writeToBigQuery_EnableListInference_Internal("True"); } private void writeToBigQuery_ErrorIfExistsSaveMode_Internal(String writeAtLeastOnce) throws InterruptedException { // initial write writeToBigQueryAvroFormat(initialData(), SaveMode.ErrorIfExists, writeAtLeastOnce); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); assertThrows( expectedExceptionOnExistingTable, () -> writeToBigQueryAvroFormat(additonalData(), SaveMode.ErrorIfExists, writeAtLeastOnce)); } @Test public void testWriteToBigQuery_ErrorIfExistsSaveMode() throws InterruptedException { writeToBigQuery_ErrorIfExistsSaveMode_Internal("False"); } @Test public void testWriteToBigQuery_ErrorIfExistsSaveMode_AtLeastOnce() throws InterruptedException { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); writeToBigQuery_ErrorIfExistsSaveMode_Internal("True"); } private void writeToBigQuery_IgnoreSaveMode_Internal(String writeAtLeastOnce) throws InterruptedException { // initial write writeToBigQueryAvroFormat(initialData(), SaveMode.Ignore, writeAtLeastOnce); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); // second write writeToBigQueryAvroFormat(additonalData(), SaveMode.Ignore, writeAtLeastOnce); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); assertThat(additionalDataValuesExist()).isFalse(); } @Test public void testWriteToBigQuery_IgnoreSaveMode() throws InterruptedException { writeToBigQuery_IgnoreSaveMode_Internal("False"); } @Test public void testWriteToBigQuery_IgnoreSaveMode_AtLeastOnce() throws InterruptedException { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); writeToBigQuery_IgnoreSaveMode_Internal("True"); } private void writeToBigQuery_OverwriteSaveMode_Internal(String writeAtLeastOnce) throws InterruptedException { // initial write writeToBigQueryAvroFormat(initialData(), SaveMode.Overwrite, writeAtLeastOnce); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); // Adding a two minute cushion as the data takes some time to move from buffer to the actual // table. Without this cushion, get the following error: // "UPDATE or DELETE statement over {DestinationTable} would affect rows in the streaming // buffer, which is not supported" Thread.sleep(120 * 1000); // second write writeToBigQueryAvroFormat(additonalData(), SaveMode.Overwrite, writeAtLeastOnce); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isFalse(); assertThat(additionalDataValuesExist()).isTrue(); } @Test public void testWriteToBigQuery_OverwriteSaveMode() throws InterruptedException { writeToBigQuery_OverwriteSaveMode_Internal("False"); } @Test public void testWriteToBigQuery_OverwriteSaveMode_AtLeastOnce() throws InterruptedException { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); writeToBigQuery_OverwriteSaveMode_Internal("True"); } @Test public void testWriteToBigQuery_AvroFormat() throws InterruptedException { writeToBigQuery(initialData(), SaveMode.ErrorIfExists, "avro"); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); } private void writeToBigQuerySimplifiedApi_Internal(String writeAtLeastOnce) throws InterruptedException { initialData() .write() .format("bigquery") .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .option("writeAtLeastOnce", writeAtLeastOnce) .save(fullTableName()); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); } @Test public void testWriteToBigQuerySimplifiedApi() throws InterruptedException { writeToBigQuerySimplifiedApi_Internal("False"); } @Test public void testWriteToBigQuerySimplifiedApi_AtLeastOnce() throws InterruptedException { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); writeToBigQuerySimplifiedApi_Internal("True"); } @Test public void testWriteToBigQueryAddingTheSettingsToSparkConf() throws InterruptedException { spark.conf().set("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET); initialData() .write() .format("bigquery") .option("table", fullTableName()) .option("writeMethod", writeMethod.toString()) .save(); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); } private void directWriteToBigQueryWithDiffInSchema_Internal(String writeAtLeastOnce) throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(0); Dataset df = spark .read() .format("bigquery") .option("table", testDataset + "." + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME) .load(); df.write() .format("bigquery") .mode(SaveMode.Append) .option("writeMethod", writeMethod.toString()) .option("writeAtLeastOnce", writeAtLeastOnce) .save(testDataset + "." + destTableName); numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(1); } @Test public void testDirectWriteToBigQueryWithDiffInSchema() throws Exception { directWriteToBigQueryWithDiffInSchema_Internal("False"); } @Test public void testDirectWriteToBigQueryWithDiffInSchema_AtLeastOnce() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); directWriteToBigQueryWithDiffInSchema_Internal("True"); } private void directWriteToBigQueryWithDiffInSchemaAndDisableModeCheck_Internal( String writeAtLeastOnce) throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE); Dataset df = spark .read() .format("bigquery") .option("table", testDataset + "." + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME) .load(); df.write() .format("bigquery") .mode(SaveMode.Append) .option("writeMethod", writeMethod.toString()) .option("writeAtLeastOnce", writeAtLeastOnce) .option("enableModeCheckForSchemaFields", false) .save(testDataset + "." + destTableName); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(1); } @Test public void testDirectWriteToBigQueryWithDiffInSchemaAndDisableModeCheck() throws Exception { directWriteToBigQueryWithDiffInSchemaAndDisableModeCheck_Internal("False"); } @Test public void testDirectWriteToBigQueryWithDiffInSchemaAndDisableModeCheck_AtLeastOnce() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); directWriteToBigQueryWithDiffInSchemaAndDisableModeCheck_Internal("True"); } private void directWriteToBigQueryWithDiffInDescription_Internal(String writeAtLeastOnce) throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(0); Dataset df = spark .read() .format("bigquery") .option( "table", testDataset + "." + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME_WITH_DESCRIPTION) .load(); df.write() .format("bigquery") .mode(SaveMode.Append) .option("writeMethod", writeMethod.toString()) .option("writeAtLeastOnce", writeAtLeastOnce) .save(testDataset + "." + destTableName); numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(1); } @Test public void testDirectWriteToBigQueryWithDiffInDescription() throws Exception { directWriteToBigQueryWithDiffInDescription_Internal("False"); } @Test public void testDirectWriteToBigQueryWithDiffInDescription_AtLeastOnce() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); directWriteToBigQueryWithDiffInDescription_Internal("True"); } @Test public void testInDirectWriteToBigQueryWithDiffInSchemaAndModeCheck() throws Exception { assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE); Dataset df = spark .read() .format("bigquery") .option("table", testDataset + "." + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME) .load(); df.write() .format("bigquery") .mode(SaveMode.Append) .option("writeMethod", writeMethod.toString()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("enableModeCheckForSchemaFields", true) .save(testDataset + "." + destTableName); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(1); } @Test public void testIndirectWriteToBigQueryWithDiffInSchemaNullableFieldAndDisableModeCheck() throws Exception { assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE); Dataset df = spark .read() .format("bigquery") .option("table", testDataset + "." + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME) .load(); df.write() .format("bigquery") .mode(SaveMode.Append) .option("writeMethod", writeMethod.toString()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("enableModeCheckForSchemaFields", false) .save(testDataset + "." + destTableName); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(1); } @Test public void testInDirectWriteToBigQueryWithDiffInDescription() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE); Dataset df = spark .read() .format("bigquery") .option( "table", testDataset + "." + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME_WITH_DESCRIPTION) .load(); df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .save(testDataset + "." + destTableName); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(1); } @Test public void testInDirectWriteToBigQueryWithStreaming() throws TimeoutException, IOException { assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT)); // Skipping test for spark 4: only works for spark 3 for now. String sparkVersion = package$.MODULE$.SPARK_VERSION(); Assume.assumeThat(sparkVersion, CoreMatchers.startsWith("3.")); Path inputDir = Files.createTempDirectory("bq_integration_test_input"); Path jsonFile = inputDir.resolve("test_data_for_streaming.json"); Files.write(jsonFile, "{\"name\": \"spark\", \"age\": 100}".getBytes(StandardCharsets.UTF_8)); StructType schema = new StructType().add("name", DataTypes.StringType).add("age", DataTypes.LongType); Dataset df = spark.readStream().option("multiline", "true").schema(schema).json(inputDir.toString()); String destTableName = testDataset + "." + "test_stream_json_" + System.nanoTime(); String checkPointLocation = Files.createTempDirectory("bq_integration_test_checkpoint").toString(); StreamingQuery writeStream = df.writeStream() .format("bigquery") .outputMode(OutputMode.Append()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("checkpointLocation", checkPointLocation) .option("table", destTableName) .start(); writeStream.processAllAvailable(); writeStream.stop(); List rows = spark.read().format("bigquery").load(destTableName).collectAsList(); assertThat(rows).hasSize(1); Row row = rows.get(0); assertThat(row.getString(0)).isEqualTo("spark"); assertThat(row.getLong(1)).isEqualTo(100L); } @Test public void testInDirectWriteToBigQueryWithStreaming_AllTypes() throws IOException, TimeoutException { // Skipping test for spark 4: only works for spark 3.5 for now. String sparkVersion = package$.MODULE$.SPARK_VERSION(); Assume.assumeThat(sparkVersion, CoreMatchers.startsWith("3.5")); StructType schema = TestConstants.ALL_TYPES_TABLE_SCHEMA; Row row = TestConstants.ALL_TYPES_TABLE_ROW; List rawRows = Collections.nCopies(20, row); Dataset normalizedDF = spark.createDataFrame(rawRows, schema); List rows = normalizedDF.collectAsList(); Encoder encoder = normalizedDF.encoder(); MemoryStream memoryStream = new MemoryStream<>( 1, // id spark.sqlContext(), // sqlContext Option.apply(null), encoder // Implicit encoder passed as final arg ); memoryStream.addData(JavaConverters.asScalaBuffer(rows).toSeq()); String destTableName = testDataset + "." + "test_streaming_allTypes" + System.nanoTime(); String checkPointLocation = Files.createTempDirectory("bq_integration_test_streaming_checkpoint").toString(); StreamingQuery writeStream = memoryStream .toDF() .writeStream() .format("bigquery") .outputMode(OutputMode.Append()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("checkpointLocation", checkPointLocation) .option("table", destTableName) .start(); writeStream.processAllAvailable(); writeStream.stop(); List readRows = spark.read().format("bigquery").load(destTableName).collectAsList(); assertThat(readRows).hasSize(20); assertThat(readRows.get(0)).isEqualTo(rows.get(0)); } private void writeDFNullableToBigQueryNullable_Internal(String writeAtLeastOnce) throws Exception { String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_NULLABLE_FIELD); StructType srcSchema = structType(StructField.apply("int_null", DataTypes.IntegerType, true, Metadata.empty())); List rows = Arrays.asList(RowFactory.create(25), RowFactory.create((Object) null)); Dataset df = spark.createDataFrame(rows, srcSchema); df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .option("writeAtLeastOnce", writeAtLeastOnce) .save(testDataset + "." + destTableName); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(2); } @Test public void testWriteDFNullableToBigQueryNullable() throws Exception { writeDFNullableToBigQueryNullable_Internal("False"); } @Test public void testWriteDFNullableToBigQueryNullable_AtLeastOnce() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); writeDFNullableToBigQueryNullable_Internal("True"); } private void writeDFNullableWithNonNullDataToBigQueryRequired_Internal(String writeAtLeastOnce) throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD); StructType srcSchema = structType(StructField.apply("int_req", DataTypes.IntegerType, true, Metadata.empty())); List rows = Arrays.asList(RowFactory.create(25)); Dataset df = spark.createDataFrame(rows, srcSchema); df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .option("writeAtLeastOnce", writeAtLeastOnce) .save(testDataset + "." + destTableName); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(1); } @Test public void testWriteDFNullableWithNonNullDataToBigQueryRequired() throws Exception { writeDFNullableWithNonNullDataToBigQueryRequired_Internal("False"); } @Test public void testWriteDFNullableWithNonNullDataToBigQueryRequired_AtLeastOnce() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); writeDFNullableWithNonNullDataToBigQueryRequired_Internal("True"); } @Test public void testWriteNullableDFWithNullDataToBigQueryRequired() { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD); StructType srcSchema = structType(StructField.apply("int_req", DataTypes.IntegerType, true, Metadata.empty())); List rows = Arrays.asList(RowFactory.create((Object) null)); Dataset df = spark.createDataFrame(rows, srcSchema); Assert.assertThrows( "INVALID_ARGUMENT: Errors found while processing rows.", Exception.class, () -> df.write() .format("bigquery") .mode(SaveMode.Append) .option("writeMethod", writeMethod.toString()) .save(testDataset + "." + destTableName)); } @Test public void testWriteNullableDFToBigQueryRepeated() { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REPEATED_FIELD); StructType srcSchema = structType(StructField.apply("int_rep", DataTypes.IntegerType, true, Metadata.empty())); List rows = Arrays.asList(RowFactory.create(10)); Dataset df = spark.createDataFrame(rows, srcSchema); Assert.assertThrows( ProvisionException.class, () -> df.write() .format("bigquery") .mode(SaveMode.Append) .option("writeMethod", writeMethod.toString()) .save(testDataset + "." + destTableName)); } @Test public void testWriteRequiredDFToBigQueryNullable() throws Exception { String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_NULLABLE_FIELD); StructType srcSchema = structType(StructField.apply("int_null", DataTypes.IntegerType, false, Metadata.empty())); List rows = Arrays.asList(RowFactory.create(25)); Dataset df = spark.createDataFrame(rows, srcSchema); df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .save(testDataset + "." + destTableName); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(1); } @Test public void testWriteRequiredDFToBigQueryRequired() throws Exception { String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD); StructType srcSchema = structType(StructField.apply("int_req", DataTypes.IntegerType, false, Metadata.empty())); List rows = Arrays.asList(RowFactory.create(25)); Dataset df = spark.createDataFrame(rows, srcSchema); df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .save(testDataset + "." + destTableName); int numOfRows = testTableNumberOfRows(destTableName); assertThat(numOfRows).isEqualTo(1); } @Test public void testWriteRequiredDFToBigQueryRepeated() { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REPEATED_FIELD); StructType srcSchema = structType(StructField.apply("int_rep", DataTypes.IntegerType, false, Metadata.empty())); List rows = Arrays.asList(RowFactory.create(10)); Dataset df = spark.createDataFrame(rows, srcSchema); Assert.assertThrows( ProvisionException.class, () -> df.write() .format("bigquery") .mode(SaveMode.Append) .option("writeMethod", writeMethod.toString()) .save(testDataset + "." + destTableName)); } @Test public void testWriteRepeatedDFToBigQueryNullable() { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_NULLABLE_FIELD); StructType srcSchema = structType( StructField.apply( "int_null", DataTypes.createArrayType(DataTypes.IntegerType), true, Metadata.empty())); List rows = Arrays.asList(RowFactory.create(Arrays.asList(1, 2)), RowFactory.create((Object) null)); Dataset df = spark.createDataFrame(rows, srcSchema); Assert.assertThrows( ProvisionException.class, () -> df.write() .format("bigquery") .mode(SaveMode.Append) .option("writeMethod", writeMethod.toString()) .save(testDataset + "." + destTableName)); } @Test public void testWriteRepeatedDFToBigQueryRequired() { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD); StructType srcSchema = structType( StructField.apply( "int_req", DataTypes.createArrayType(DataTypes.IntegerType), true, Metadata.empty())); List rows = Arrays.asList(RowFactory.create(Arrays.asList(1, 2))); Dataset df = spark.createDataFrame(rows, srcSchema); Assert.assertThrows( ProvisionException.class, () -> df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .save(testDataset + "." + destTableName)); } @Test public void testWriteRepeatedDFToBigQueryRepeated() { String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REPEATED_FIELD); StructType srcSchema = structType( StructField.apply( "int_rep", DataTypes.createArrayType(DataTypes.IntegerType), true, Metadata.empty())); List rows = Arrays.asList(RowFactory.create(Arrays.asList(1, 2)), RowFactory.create((Object) null)); Dataset df = spark.createDataFrame(rows, srcSchema); df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .save(testDataset + "." + destTableName); } @Test public void testWriteToBigQueryPartitionedAndClusteredTable() { // partition write not supported in BQ Storage Write API assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); Dataset df = spark .read() .format("bigquery") .option("table", TestConstants.LIBRARIES_PROJECTS_TABLE) .load() .where("platform = 'Sublime'"); df.write() .format("bigquery") .option("table", fullTableNamePartitioned()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("partitionField", "created_timestamp") .option("clusteredFields", "platform") .option("writeMethod", writeMethod.toString()) .mode(SaveMode.Overwrite) .save(); StandardTableDefinition tableDefinition = testPartitionedTableDefinition(); assertThat(tableDefinition.getTimePartitioning().getField()).isEqualTo("created_timestamp"); assertThat(tableDefinition.getClustering().getFields()).contains("platform"); } @Test public void testWriteToBigQueryClusteredTable() { Dataset df = spark .read() .format("bigquery") .option("table", TestConstants.LIBRARIES_PROJECTS_TABLE) .load() .where("platform = 'Sublime'"); df.write() .format("bigquery") .option("table", fullTableName()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("clusteredFields", "platform") .option("writeMethod", writeMethod.toString()) .mode(SaveMode.Append) .save(); StandardTableDefinition tableDefinition = bq.getTable(testDataset.toString(), testTable).getDefinition(); assertThat(tableDefinition.getClustering().getFields()).contains("platform"); } @Test public void testWriteWithTableLabels() throws Exception { Dataset df = initialData(); spark.conf().set("bigQueryTableLabel.foo", "bar"); df.write() .format("bigquery") .option("writeMethod", writeMethod.toString()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("dataset", testDataset.toString()) .option("table", testTable) .save(); spark.conf().unset("bigQueryTableLabel.foo"); Table table = IntegrationTestUtils.getBigquery().getTable(TableId.of(testDataset.toString(), testTable)); assertThat(table).isNotNull(); Map labels = table.getLabels(); assertThat(labels).isNotNull(); assertThat(labels).containsEntry("foo", "bar"); } protected Dataset overwriteSinglePartition(StructField dateField) { // create partitioned table String tableName = fullTableNamePartitioned() + "_" + id.getAndIncrement(); TableId tableId = TableId.of(testDataset.toString(), tableName); Schema schema = Schema.of( Field.of("the_date", LegacySQLTypeName.DATE), Field.of("some_text", LegacySQLTypeName.STRING)); TimePartitioning timePartitioning = TimePartitioning.newBuilder(TimePartitioning.Type.DAY).setField("the_date").build(); StandardTableDefinition tableDefinition = StandardTableDefinition.newBuilder() .setSchema(schema) .setTimePartitioning(timePartitioning) .build(); bq.create(TableInfo.of(tableId, tableDefinition)); // entering the data try { bq.query( QueryJobConfiguration.of( String.format( "insert into `" + fullTableName() + "` (the_date, some_text) values ('2020-07-01', 'foo'), ('2020-07-02'," + " 'bar')"))); } catch (InterruptedException e) { throw new RuntimeException(e); } // overrding a single partition List rows = Arrays.asList(RowFactory.create(Date.valueOf("2020-07-01"), "baz")); StructType newDataSchema = new StructType( new StructField[] { dateField, new StructField("some_text", DataTypes.StringType, true, Metadata.empty()) }); Dataset newDataDF = spark.createDataFrame(rows, newDataSchema); newDataDF .write() .format("bigquery") .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("datePartition", "20200701") .mode("overwrite") .save(fullTableName()); Dataset resultDF = spark.read().format("bigquery").load(fullTableName()); List result = resultDF.collectAsList(); assertThat(result).hasSize(2); assertThat(result.stream().filter(row -> row.getString(1).equals("bar")).count()).isEqualTo(1); assertThat(result.stream().filter(row -> row.getString(1).equals("baz")).count()).isEqualTo(1); return resultDF; } // TODO: figure out why the table creation fails // @Test public void testOverwriteSinglePartition() { overwriteSinglePartition( new StructField("the_date", DataTypes.DateType, true, Metadata.empty())); } // TODO: figure out why the table creation fails // @Test public void testOverwriteSinglePartitionWithComment() { String comment = "the partition field"; Dataset resultDF = overwriteSinglePartition( new StructField("the_date", DataTypes.DateType, true, Metadata.empty()) .withComment(comment)); assertThat(resultDF.schema().fields()[0].getComment()).isEqualTo(Some.apply(comment)); } @Test public void testWriteToBigQueryWithDescription() { String testDescription = "test description"; String testComment = "test comment"; Metadata metadata = Metadata.fromJson("{\"description\": \"" + testDescription + "\"}"); StructType[] schemas = new StructType[] { structType(new StructField("c1", DataTypes.IntegerType, true, metadata)), structType( new StructField("c1", DataTypes.IntegerType, true, Metadata.empty()) .withComment(testComment)), structType( new StructField("c1", DataTypes.IntegerType, true, metadata) .withComment(testComment)), structType(new StructField("c1", DataTypes.IntegerType, true, Metadata.empty())) }; String[] readValues = new String[] {testDescription, testComment, testComment, null}; for (int i = 0; i < schemas.length; i++) { List data = Arrays.asList(RowFactory.create(100), RowFactory.create(200)); Dataset descriptionDF = spark.createDataFrame(data, schemas[i]); descriptionDF .write() .format("bigquery") .mode(SaveMode.Overwrite) .option("table", fullTableName() + "_" + i) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("intermediateFormat", "parquet") .option("writeMethod", writeMethod.toString()) .save(); Dataset readDF = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable + "_" + i) .load(); Optional description = SchemaConverters.getDescriptionOrCommentOfField( readDF.schema().fields()[0], Optional.empty()); if (readValues[i] != null) { assertThat(description.isPresent()).isTrue(); assertThat(description.orElse("")).isEqualTo(readValues[i]); } else { assertThat(description.isPresent()).isFalse(); } } } @Test public void testWriteEmptyDataFrame() throws Exception { Dataset df = spark.createDataFrame(Collections.emptyList(), Link.class); writeToBigQueryAvroFormat(df, SaveMode.Append, "False"); assertThat(testTableNumberOfRows()).isEqualTo(0); } protected StructType structType(StructField... fields) { return new StructType(fields); } @Test public void testPartition_Hourly() { testPartition("HOUR"); } @Test public void testPartition_Daily() { testPartition("DAY"); } @Test public void testPartition_Monthly() { testPartition("MONTH"); } @Test public void testPartition_Yearly() { testPartition("YEAR"); } private void testPartition(String partitionType) { // partition write not supported in BQ Storage Write API assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); List data = Arrays.asList( new Data("a", Timestamp.valueOf("2020-01-01 01:01:01")), new Data("b", Timestamp.valueOf("2020-01-02 02:02:02")), new Data("c", Timestamp.valueOf("2020-01-03 03:03:03"))); Dataset df = spark.createDataset(data, Encoders.bean(Data.class)).toDF(); String table = testDataset.toString() + "." + testTable + "_" + partitionType; df.write() .format("bigquery") .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("partitionField", "ts") .option("partitionType", partitionType) .option("partitionRequireFilter", "true") .option("table", table) .option("writeMethod", writeMethod.toString()) .save(); Dataset readDF = spark.read().format("bigquery").load(table); assertThat(readDF.count()).isEqualTo(3); } @Test public void testPartitionRange() { // partition write not supported in BQ Storage Write API assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); List data = Arrays.asList(new RangeData("a", 1L), new RangeData("b", 5L), new RangeData("c", 11L)); Dataset df = spark.createDataset(data, Encoders.bean(RangeData.class)).toDF(); String table = testDataset.toString() + "." + testTable + "_range"; df.write() .format("bigquery") .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("partitionField", "rng") .option("partitionRangeStart", "1") .option("partitionRangeEnd", "21") .option("partitionRangeInterval", "2") .option("partitionRequireFilter", "true") .option("table", table) .option("writeMethod", writeMethod.toString()) .save(); Dataset readDF = spark.read().format("bigquery").load(table); assertThat(readDF.count()).isEqualTo(3); Table bqTable = bq.getTable(TableId.of(testDataset.toString(), testTable + "_range")); assertThat(bqTable).isNotNull(); assertTrue(bqTable.getDefinition() instanceof StandardTableDefinition); StandardTableDefinition bqTableDef = bqTable.getDefinition(); assertThat(bqTableDef.getRangePartitioning()).isNotNull(); RangePartitioning.Range expectedRange = RangePartitioning.Range.newBuilder().setStart(1L).setEnd(21L).setInterval(2L).build(); String expectedField = "rng"; assertThat(bqTableDef.getRangePartitioning().getRange()).isEqualTo(expectedRange); assertThat(bqTableDef.getRangePartitioning().getField()).isEqualTo(expectedField); } @Test public void testCacheDataFrameInDataSource() { // It takes some time for the data to be available for read via the Storage Read API, after it // has been written // using the Storage Write API hence this test becomes flaky! // Thus ignoring this for V2 assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); Dataset allTypesTable = readAllTypesTable(); writeToBigQuery(allTypesTable, SaveMode.Overwrite, "avro", "False"); Dataset df = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .option("readDataFormat", "arrow") .load() .cache(); assertThat(df.head()).isEqualTo(allTypesTable.head()); // read from cache assertThat(df.head()).isEqualTo(allTypesTable.head()); assertThat(df.schema()).isEqualTo(allTypesTable.schema()); } @Test public void testWriteJsonToANewTable() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create("{\"key\":\"foo\",\"value\":1}"), RowFactory.create("{\"key\":\"bar\",\"value\":2}")), structType( StructField.apply( "jf", DataTypes.StringType, true, Metadata.fromJson("{\"sqlType\":\"JSON\"}")))); df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("intermediateFormat", "AVRO") .option("dataset", testDataset.toString()) .option("table", testTable) .option("writeMethod", writeMethod.toString()) .save(); Table table = bq.getTable(TableId.of(testDataset.toString(), testTable)); assertThat(table).isNotNull(); Schema schema = table.getDefinition().getSchema(); assertThat(schema).isNotNull(); assertThat(schema.getFields()).hasSize(1); assertThat(schema.getFields().get(0).getType()).isEqualTo(LegacySQLTypeName.JSON); // validating by querying a sub-field of the json Dataset resultDF = spark .read() .format("bigquery") .option("viewsEnabled", "true") .option("materializationDataset", testDataset.toString()) .load(String.format("SELECT jf.value FROM `%s.%s`", testDataset.toString(), testTable)); // collecting the data to validate its content List result = resultDF.collectAsList().stream().map(row -> row.getString(0)).collect(Collectors.toList()); assertThat(result).containsExactly("1", "2"); } @Test public void testWriteJsonToAnExistingTable() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT)); Table table = bq.create( TableInfo.of( TableId.of(testDataset.toString(), testTable), StandardTableDefinition.of(Schema.of(Field.of("jf", LegacySQLTypeName.JSON))))); assertThat(table).isNotNull(); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create("{\"key\":\"foo\",\"value\":1}"), RowFactory.create("{\"key\":\"bar\",\"value\":2}")), structType( StructField.apply( "jf", DataTypes.StringType, true, Metadata.fromJson("{\"sqlType\":\"JSON\"}")))); df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("intermediateFormat", "AVRO") .option("dataset", testDataset.toString()) .option("table", testTable) .option("writeMethod", writeMethod.toString()) .option("materializationDataset", testDataset.toString()) .save(); // validating by querying a sub-field of the json Dataset resultDF = spark .read() .format("bigquery") .option("viewsEnabled", "true") .load(String.format("SELECT jf.value FROM `%s.%s`", testDataset.toString(), testTable)); // collecting the data to validate its content List result = resultDF.collectAsList().stream().map(row -> row.getString(0)).collect(Collectors.toList()); assertThat(result).containsExactly("1", "2"); } @Test public void testWriteMapToANewTable() throws Exception { Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(ImmutableMap.of("a", new Long(1), "b", new Long(2))), RowFactory.create(ImmutableMap.of("c", new Long(3)))), structType( StructField.apply( "mf", DataTypes.createMapType(DataTypes.StringType, DataTypes.LongType), false, Metadata.empty()))); df.write() .format("bigquery") .mode(SaveMode.Append) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("intermediateFormat", "AVRO") .option("dataset", testDataset.toString()) .option("table", testTable) .option("writeMethod", writeMethod.toString()) .save(); Table table = bq.getTable(TableId.of(testDataset.toString(), testTable)); assertThat(table).isNotNull(); Schema schema = table.getDefinition().getSchema(); assertThat(schema).isNotNull(); assertThat(schema.getFields()).hasSize(1); Field mapField = schema.getFields().get(0); assertThat(mapField.getType()).isEqualTo(LegacySQLTypeName.RECORD); assertThat(mapField.getMode()).isEqualTo(Mode.REPEATED); assertThat(mapField.getSubFields()) .containsExactlyElementsIn( Arrays.asList( Field.newBuilder("key", LegacySQLTypeName.STRING).setMode(Mode.REQUIRED).build(), Field.newBuilder("value", LegacySQLTypeName.INTEGER) .setMode(Mode.NULLABLE) .build())); String sql = ("SELECT\n" + " (SELECT COUNT(f.key) FROM TABLE, UNNEST(mf) AS f) AS total_keys,\n" + " (SELECT COUNT(*) FROM TABLE) AS total_rows,\n" + " (SELECT f.value FROM TABLE, UNNEST(mf) AS f WHERE f.key='b') AS b_value;") .replaceAll("TABLE", testDataset.toString() + "." + testTable); // validating by querying a sub-field of the json Dataset resultDF = spark .read() .format("bigquery") .option("viewsEnabled", "true") .option("materializationDataset", testDataset.toString()) .load(sql); // collecting the data to validate its content Row result = resultDF.head(); assertThat(result.getLong(0)).isEqualTo(3L); assertThat(result.getLong(1)).isEqualTo(2L); assertThat(result.getLong(2)).isEqualTo(2L); } @Test public void testAllowFieldAddition() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT)); StructType initialSchema = structType( StructField.apply("value", DataTypes.StringType, true, Metadata.empty()), StructField.apply("ds", DataTypes.DateType, true, Metadata.empty())); List rows = Arrays.asList( RowFactory.create("val1", Date.valueOf("2023-04-13")), RowFactory.create("val2", Date.valueOf("2023-04-14"))); Dataset initialDF = spark.createDataFrame(rows, initialSchema); // initial write initialDF .write() .format("bigquery") .mode(SaveMode.Overwrite) .option("dataset", testDataset.toString()) .option("table", testTable) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("intermediateFormat", "avro") .option("writeMethod", writeMethod.toString()) .save(); assertThat(testTableNumberOfRows()).isEqualTo(2); StructType finalSchema = structType( StructField.apply("value", DataTypes.StringType, true, Metadata.empty()), StructField.apply("ds", DataTypes.DateType, true, Metadata.empty()), StructField.apply("new_field", DataTypes.StringType, true, Metadata.empty())); List finalRows = Arrays.asList(RowFactory.create("val3", Date.valueOf("2023-04-15"), "newVal1")); Dataset finalDF = spark.createDataFrame(finalRows, finalSchema); finalDF .write() .format("bigquery") .mode(SaveMode.Append) .option("dataset", testDataset.toString()) .option("table", testTable) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .option("allowFieldAddition", "true") .option("allowFieldRelaxation", "true") .save(); assertThat(testTableNumberOfRows()).isEqualTo(3); Dataset resultDF = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); List result = resultDF.collectAsList(); assertThat(result).hasSize(3); assertThat(result.stream().filter(row -> row.getString(2) == null).count()).isEqualTo(2); assertThat( result.stream() .filter(row -> row.getString(2) != null && row.getString(2).equals("newVal1")) .count()) .isEqualTo(1); } @Test public void testWriteToCmekManagedTable() throws Exception { String destinationTableKmsKeyName = Preconditions.checkNotNull( System.getenv("BIGQUERY_KMS_KEY_NAME"), "Please set the BIGQUERY_KMS_KEY_NAME to point to a pre-generated and configured KMS key"); Dataset df = initialData(); df.write() .format("bigquery") .mode(SaveMode.Append) .option("table", fullTableName()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .option("destinationTableKmsKeyName", destinationTableKmsKeyName) .save(); Table table = IntegrationTestUtils.getBigquery().getTable(TableId.of(testDataset.toString(), testTable)); assertThat(table).isNotNull(); assertThat(table.getEncryptionConfiguration()).isNotNull(); assertThat(table.getEncryptionConfiguration().getKmsKeyName()) .isEqualTo(destinationTableKmsKeyName); } @Test public void testWriteNumericsToWiderFields() throws Exception { IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (num NUMERIC(10,2), bignum BIGNUMERIC(20,15))", testDataset, testTable)); Decimal num = Decimal.apply("12345.6"); Decimal bignum = Decimal.apply("12345.12345"); Dataset df = spark.createDataFrame( Arrays.asList(RowFactory.create(num, bignum)), structType( StructField.apply("num", DataTypes.createDecimalType(6, 1), true, Metadata.empty()), StructField.apply( "bignum", DataTypes.createDecimalType(10, 5), true, Metadata.empty()))); df.write() .format("bigquery") .mode(SaveMode.Append) .option("dataset", testDataset.toString()) .option("table", testTable) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .save(); Dataset resultDF = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); List result = resultDF.collectAsList(); assertThat(result).hasSize(1); Row head = result.get(0); assertThat(head.getDecimal(head.fieldIndex("num"))).isEqualTo(new BigDecimal("12345.60")); assertThat(head.getDecimal(head.fieldIndex("bignum"))) .isEqualTo(new BigDecimal("12345.123450000000000")); } private void testWriteStringToTimeField_internal(SaveMode saveMode) { // not supported for indirect writes assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (name STRING, wake_up_time TIME)", testDataset, testTable)); String name = "abc"; String wakeUpTime = "10:00:00"; Dataset df = spark.createDataFrame( Arrays.asList(RowFactory.create(name, wakeUpTime)), structType( StructField.apply("name", DataTypes.StringType, true, Metadata.empty()), StructField.apply("wake_up_time", DataTypes.StringType, true, Metadata.empty()))); df.write() .format("bigquery") .mode(saveMode) .option("dataset", testDataset.toString()) .option("table", testTable) .option("writeMethod", writeMethod.toString()) .save(); Dataset resultDF = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); List result = resultDF.collectAsList(); assertThat(result).hasSize(1); Row head = result.get(0); assertThat(head.getString(head.fieldIndex("name"))).isEqualTo("abc"); assertThat(head.getLong(head.fieldIndex("wake_up_time"))).isEqualTo(36000000000L); } @Test public void testWriteStringToTimeField_OverwriteSaveMode() { testWriteStringToTimeField_internal(SaveMode.Overwrite); } @Test public void testWriteStringToTimeField_AppendSaveMode() { testWriteStringToTimeField_internal(SaveMode.Append); } private void testWriteStringToDateTimeField_internal(SaveMode saveMode) { // not supported for indirect writes assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (name STRING, datetime1 DATETIME)", testDataset, testTable)); String name = "abc"; String dateTime1 = "0001-01-01T01:22:24.999888"; Dataset df = spark.createDataFrame( Arrays.asList(RowFactory.create(name, dateTime1)), structType( StructField.apply("name", DataTypes.StringType, true, Metadata.empty()), StructField.apply("datetime1", DataTypes.StringType, true, Metadata.empty()))); df.write() .format("bigquery") .mode(saveMode) .option("dataset", testDataset.toString()) .option("table", testTable) .option("writeMethod", writeMethod.toString()) .save(); Dataset resultDF = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); List result = resultDF.collectAsList(); assertThat(result).hasSize(1); Row head = result.get(0); assertThat(head.getString(head.fieldIndex("name"))).isEqualTo("abc"); if (timeStampNTZType.isPresent()) { // For Spark 3.4+, BQ's datetime is converted to Spark's TimestampNTZ i.e. java LocalDateTime LocalDateTime expected = LocalDateTime.of(1, 1, 1, 1, 22, 24).plus(999888, ChronoUnit.MICROS); assertThat(head.get(head.fieldIndex("datetime1"))).isEqualTo(expected); } else { assertThat(head.get(head.fieldIndex("datetime1"))).isEqualTo("0001-01-01T01:22:24.999888"); } } @Test public void testWriteStringToDateTimeField_OverwriteSaveMode() { testWriteStringToDateTimeField_internal(SaveMode.Overwrite); } @Test public void testWriteStringToDateTimeField_AppendSaveMode() { testWriteStringToDateTimeField_internal(SaveMode.Append); } @Test public void testWriteToTimestampField() { // not supported for indirect writes assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (name STRING, timestamp1 TIMESTAMP)", testDataset, testTable)); String name = "abc"; // ensure timezone differences don't influence writes TimeZone.setDefault(TimeZone.getTimeZone("IST")); Timestamp timestamp1 = Timestamp.valueOf("1501-01-01 01:22:24.999888"); Dataset df = spark.createDataFrame( Arrays.asList(RowFactory.create(name, timestamp1)), structType( StructField.apply("name", DataTypes.StringType, true, Metadata.empty()), StructField.apply("timestamp1", DataTypes.TimestampType, true, Metadata.empty()))); df.write() .format("bigquery") .mode("append") .option("dataset", testDataset.toString()) .option("table", testTable) .option("writeMethod", writeMethod.toString()) .save(); // ensure timezone differences don't influence reads TimeZone.setDefault(TimeZone.getTimeZone("PST")); Dataset resultDF = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); List result = resultDF.collectAsList(); assertThat(result).hasSize(1); Row head = result.get(0); assertThat(head.getString(head.fieldIndex("name"))).isEqualTo("abc"); assertThat(head.get(head.fieldIndex("timestamp1"))).isEqualTo(timestamp1); } protected Dataset writeAndLoadDatasetOverwriteDynamicPartition( Dataset df, boolean isPartitioned) { df.write() .format("bigquery") .mode(SaveMode.Overwrite) .option("dataset", testDataset.toString()) .option("table", testTable) .option("writeMethod", writeMethod.toString()) .option( "spark.sql.sources.partitionOverwriteMode", PartitionOverwriteMode.DYNAMIC.toString()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .save(); if (isPartitioned) { IntegrationTestUtils.runQuery( String.format( "ALTER TABLE %s.%s SET OPTIONS (require_partition_filter = false)", testDataset, testTable)); } return spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); } @Test public void testOverwriteDynamicPartition_partitionTimestampByHour() { String orderId = "order_id"; String orderDateTime = "order_date_time"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) " + "PARTITION BY timestamp_trunc(order_date_time, HOUR) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, TIMESTAMP '2023-09-28 1:00:00 UTC'), " + "(2, TIMESTAMP '2023-09-28 10:00:00 UTC'), (3, TIMESTAMP '2023-09-28 10:30:00 UTC')]) ", testDataset, testTable, orderId, orderDateTime)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, Timestamp.valueOf("2023-09-28 10:15:00")), RowFactory.create(20, Timestamp.valueOf("2023-09-30 12:00:00"))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-09-28 1:00:00")); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-09-28 10:15:00")); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.getTimestamp(row3.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-09-30 12:00:00")); } @Test public void testOverwriteDynamicPartition_partitionTimestampByDay() { String orderId = "order_id"; String orderDateTime = "order_date_time"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) " + "PARTITION BY DATE(order_date_time) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, TIMESTAMP '2023-09-28 1:00:00 UTC'), " + "(2, TIMESTAMP '2023-09-29 10:00:00 UTC'), (3, TIMESTAMP '2023-09-29 17:00:00 UTC')])", testDataset, testTable, orderId, orderDateTime)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, Timestamp.valueOf("2023-09-29 2:00:00")), RowFactory.create(20, Timestamp.valueOf("2023-09-30 12:00:00"))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-09-28 1:00:00")); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-09-29 2:00:00")); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.getTimestamp(row3.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-09-30 12:00:00")); } @Test public void testOverwriteDynamicPartition_partitionTimestampByMonth() { String orderId = "order_id"; String orderDateTime = "order_date_time"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) " + "PARTITION BY timestamp_trunc(order_date_time, MONTH) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, TIMESTAMP '2023-09-28 1:00:00 UTC'), " + "(2, TIMESTAMP '2023-10-20 10:00:00 UTC'), (3, TIMESTAMP '2023-10-25 12:00:00 UTC')])", testDataset, testTable, orderId, orderDateTime)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, Timestamp.valueOf("2023-10-29 2:00:00")), RowFactory.create(20, Timestamp.valueOf("2023-11-30 12:00:00"))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-09-28 1:00:00")); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-10-29 2:00:00")); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.getTimestamp(row3.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-11-30 12:00:00")); } @Test public void testOverwriteDynamicPartition_partitionTimestampByYear() { String orderId = "order_id"; String orderDateTime = "order_date_time"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) " + "PARTITION BY timestamp_trunc(order_date_time, YEAR) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, TIMESTAMP '2022-09-28 1:00:00 UTC'), " + "(2, TIMESTAMP '2023-10-20 10:00:00 UTC'), (2, TIMESTAMP '2023-10-25 12:00:00 UTC')])", testDataset, testTable, orderId, orderDateTime)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, Timestamp.valueOf("2023-10-29 2:00:00")), RowFactory.create(20, Timestamp.valueOf("2024-11-30 12:00:00"))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2022-09-28 1:00:00")); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-10-29 2:00:00")); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.getTimestamp(row3.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2024-11-30 12:00:00")); } @Test public void testOverwriteDynamicPartition_partitionDateByDay() { String orderId = "order_id"; String orderDate = "order_date"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s DATE) " + "PARTITION BY order_date OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, DATE('2023-09-28')), (2, DATE('2023-09-29'))])", testDataset, testTable, orderId, orderDate)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, Date.valueOf("2023-09-29")), RowFactory.create(20, Date.valueOf("2023-09-30"))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDate, DataTypes.DateType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.getDate(row1.fieldIndex(orderDate))).isEqualTo(Date.valueOf("2023-09-28")); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.getDate(row2.fieldIndex(orderDate))).isEqualTo(Date.valueOf("2023-09-29")); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.getDate(row3.fieldIndex(orderDate))).isEqualTo(Date.valueOf("2023-09-30")); } @Test public void testOverwriteDynamicPartition_partitionDateByMonth() { String orderId = "order_id"; String orderDate = "order_date"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s DATE) " + "PARTITION BY DATE_TRUNC(order_date, MONTH) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, DATE('2023-09-28')), " + "(2, DATE('2023-10-29')), (2, DATE('2023-10-28'))])", testDataset, testTable, orderId, orderDate)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, Date.valueOf("2023-10-20")), RowFactory.create(20, Date.valueOf("2023-11-30"))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDate, DataTypes.DateType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.getDate(row1.fieldIndex(orderDate))).isEqualTo(Date.valueOf("2023-09-28")); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.getDate(row2.fieldIndex(orderDate))).isEqualTo(Date.valueOf("2023-10-20")); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.getDate(row3.fieldIndex(orderDate))).isEqualTo(Date.valueOf("2023-11-30")); } @Test public void testOverwriteDynamicPartition_partitionDateByYear() { String orderId = "order_id"; String orderDate = "order_date"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s DATE) " + "PARTITION BY DATE_TRUNC(order_date, YEAR) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, DATE('2022-09-28')), " + "(2, DATE('2023-10-29')), (2, DATE('2023-11-28'))])", testDataset, testTable, orderId, orderDate)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, Date.valueOf("2023-10-20")), RowFactory.create(20, Date.valueOf("2024-11-30"))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDate, DataTypes.DateType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.getDate(row1.fieldIndex(orderDate))).isEqualTo(Date.valueOf("2022-09-28")); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.getDate(row2.fieldIndex(orderDate))).isEqualTo(Date.valueOf("2023-10-20")); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.getDate(row3.fieldIndex(orderDate))).isEqualTo(Date.valueOf("2024-11-30")); } @Test public void testOverwriteDynamicPartition_partitionDateTimeByHour() { assumeThat(timeStampNTZType.isPresent(), is(true)); String orderId = "order_id"; String orderDateTime = "order_date_time"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) " + "PARTITION BY timestamp_trunc(order_date_time, HOUR) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, DATETIME '2023-09-28 1:00:00'), " + "(2, DATETIME '2023-09-28 10:00:00'), (3, DATETIME '2023-09-28 10:30:00')])", testDataset, testTable, orderId, orderDateTime)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, LocalDateTime.of(2023, 9, 28, 10, 15, 0)), RowFactory.create(20, LocalDateTime.of(2023, 9, 30, 12, 0, 0))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDateTime, timeStampNTZType.get(), true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.get(row1.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-09-28T01:00"); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.get(row2.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-09-28T10:15"); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.get(row3.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-09-30T12:00"); } @Test public void testOverwriteDynamicPartition_partitionDateTimeByDay() { assumeThat(timeStampNTZType.isPresent(), is(true)); String orderId = "order_id"; String orderDateTime = "order_date_time"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) " + "PARTITION BY timestamp_trunc(order_date_time, DAY) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, DATETIME '2023-09-28 1:00:00'), " + "(2, DATETIME '2023-09-29 10:00:00'), (3, DATETIME '2023-09-29 17:30:00')])", testDataset, testTable, orderId, orderDateTime)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, LocalDateTime.of(2023, 9, 29, 10, 15, 0)), RowFactory.create(20, LocalDateTime.of(2023, 9, 30, 12, 0, 0))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDateTime, timeStampNTZType.get(), true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.get(row1.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-09-28T01:00"); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.get(row2.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-09-29T10:15"); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.get(row3.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-09-30T12:00"); } @Test public void testOverwriteDynamicPartition_partitionDateTimeByMonth() { assumeThat(timeStampNTZType.isPresent(), is(true)); String orderId = "order_id"; String orderDateTime = "order_date_time"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) " + "PARTITION BY timestamp_trunc(order_date_time, MONTH) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, DATETIME '2023-09-28 1:00:00'), " + "(2, DATETIME '2023-10-29 10:00:00'), (3, DATETIME '2023-10-29 17:30:00')])", testDataset, testTable, orderId, orderDateTime)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, LocalDateTime.of(2023, 10, 20, 10, 15, 0)), RowFactory.create(20, LocalDateTime.of(2023, 11, 30, 12, 0, 0))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDateTime, timeStampNTZType.get(), true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.get(row1.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-09-28T01:00"); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.get(row2.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-10-20T10:15"); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.get(row3.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-11-30T12:00"); } @Test public void testOverwriteDynamicPartition_partitionDateTimeByYear() { assumeThat(timeStampNTZType.isPresent(), is(true)); String orderId = "order_id"; String orderDateTime = "order_date_time"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) " + "PARTITION BY timestamp_trunc(order_date_time, YEAR) OPTIONS (require_partition_filter = true) " + "AS SELECT * FROM UNNEST([(1, DATETIME '2022-09-28 1:00:00'), " + "(2, DATETIME '2023-10-29 10:00:00'), (3, DATETIME '2023-11-29 17:30:00')])", testDataset, testTable, orderId, orderDateTime)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, LocalDateTime.of(2023, 10, 20, 10, 15, 0)), RowFactory.create(20, LocalDateTime.of(2024, 11, 30, 12, 0, 0))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDateTime, timeStampNTZType.get(), true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1); assertThat(row1.get(row1.fieldIndex(orderDateTime)).toString()).isEqualTo("2022-09-28T01:00"); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10); assertThat(row2.get(row2.fieldIndex(orderDateTime)).toString()).isEqualTo("2023-10-20T10:15"); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20); assertThat(row3.get(row3.fieldIndex(orderDateTime)).toString()).isEqualTo("2024-11-30T12:00"); } @Test public void testOverwriteDynamicPartition_noTimePartitioning() { String orderId = "order_id"; String orderDateTime = "order_date_time"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) " + "AS SELECT * FROM UNNEST([(1, TIMESTAMP '2023-09-28 1:00:00 UTC'), " + "(2, TIMESTAMP '2023-09-29 10:00:00 UTC'), (3, TIMESTAMP '2023-09-29 17:00:00 UTC')])", testDataset, testTable, orderId, orderDateTime)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(10, Timestamp.valueOf("2023-09-29 2:00:00")), RowFactory.create(20, Timestamp.valueOf("2023-09-30 12:00:00"))), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, false); assertThat(result.count()).isEqualTo(2); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(10); assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-09-29 2:00:00")); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(20); assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime))) .isEqualTo(Timestamp.valueOf("2023-09-30 12:00:00")); } @Test public void testOverwriteDynamicPartition_rangePartitioned() { String orderId = "order_id"; String orderCount = "order_count"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) " + "PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)" + "AS SELECT * FROM UNNEST([(1, 1000), " + "(8, 1005), ( 21, 1010), (83, 1020)])", testDataset, testTable, orderId, orderCount)); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create(4, 2000), RowFactory.create(20, 2050), RowFactory.create(85, 3000), RowFactory.create(90, 3050)), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(5); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); Row row4 = rows.get(3); Row row5 = rows.get(4); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(4); assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2000); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(20); assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2050); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(21); assertThat(row3.getLong(row3.fieldIndex(orderCount))).isEqualTo(1010); assertThat(row4.getLong(row4.fieldIndex(orderId))).isEqualTo(85); assertThat(row4.getLong(row4.fieldIndex(orderCount))).isEqualTo(3000); assertThat(row5.getLong(row5.fieldIndex(orderId))).isEqualTo(90); assertThat(row5.getLong(row5.fieldIndex(orderCount))).isEqualTo(3050); } @Test public void testOverwriteDynamicPartition_rangePartitionedOutsideRangeLessThanStart() { String orderId = "order_id"; String orderCount = "order_count"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) " + "PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)" + "AS SELECT * FROM UNNEST([(1, 1000), " + "(2, 1005), ( 150, 1010)])", testDataset, testTable, orderId, orderCount)); Dataset df = spark.createDataFrame( Arrays.asList(RowFactory.create(4, 2000), RowFactory.create(-10, 2050)), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(2); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(-10); assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2050); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(4); assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2000); } @Test public void testOverwriteDynamicPartition_rangePartitionedOutsideRangeGreaterThanEnd() { String orderId = "order_id"; String orderCount = "order_count"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) " + "PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)" + "AS SELECT * FROM UNNEST([(1, 1000), " + "(2, 1005), ( -1, 1010)])", testDataset, testTable, orderId, orderCount)); Dataset df = spark.createDataFrame( Arrays.asList(RowFactory.create(4, 2000), RowFactory.create(105, 2050)), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(2); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(4); assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2000); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(105); assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2050); } @Test public void testOverwriteDynamicPartition_rangePartitionedBoundaryCondition() { String orderId = "order_id"; String orderCount = "order_count"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) " + "PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)" + "AS SELECT * FROM UNNEST([(1, 1000), " + "(11, 1005), ( 100, 1010)])", testDataset, testTable, orderId, orderCount)); Dataset df = spark.createDataFrame( Arrays.asList(RowFactory.create(-1, 2000), RowFactory.create(5, 2050)), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId)))); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(-1); assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2000); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(5); assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2050); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(11); assertThat(row3.getLong(row3.fieldIndex(orderCount))).isEqualTo(1005); } @Test public void testOverwriteDynamicPartition_rangePartitionedWithNulls() { String orderId = "order_id"; String orderCount = "order_count"; TimeZone.setDefault(TimeZone.getTimeZone("UTC")); IntegrationTestUtils.runQuery( String.format( "CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) " + "PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)" + "AS SELECT * FROM UNNEST([(NULL, 1000), " + "(11, 1005)])", testDataset, testTable, orderId, orderCount)); Dataset df = spark.createDataFrame( Arrays.asList(RowFactory.create(null, 2000), RowFactory.create(5, 2050)), structType( StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()), StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty()))); Dataset result = writeAndLoadDatasetOverwriteDynamicPartition(df, true); assertThat(result.count()).isEqualTo(3); List rows = result.collectAsList(); Comparator rowComparator = Comparator.comparing( row -> { Object value = row.get(row.fieldIndex(orderId)); if (value == null) { return Long.MIN_VALUE; } return (Long) value; }); rows.sort(rowComparator); Row row1 = rows.get(0); Row row2 = rows.get(1); Row row3 = rows.get(2); assertThat(row1.get(row1.fieldIndex(orderId))).isNull(); assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2000); assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(5); assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2050); assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(11); assertThat(row3.getLong(row3.fieldIndex(orderCount))).isEqualTo(1005); } public void testWriteSchemaSubset() throws Exception { StructType initialSchema = structType( StructField.apply("key", DataTypes.StringType, true, Metadata.empty()), StructField.apply("value", DataTypes.StringType, true, Metadata.empty()), StructField.apply("ds", DataTypes.DateType, true, Metadata.empty())); List rows = Arrays.asList( RowFactory.create("key1", "val1", Date.valueOf("2023-04-13")), RowFactory.create("key2", "val2", Date.valueOf("2023-04-14"))); Dataset initialDF = spark.createDataFrame(rows, initialSchema); // initial write initialDF .write() .format("bigquery") .mode(SaveMode.Append) .option("dataset", testDataset.toString()) .option("table", testTable) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .save(); assertThat(testTableNumberOfRows()).isEqualTo(2); StructType finalSchema = structType( StructField.apply("key", DataTypes.StringType, true, Metadata.empty()), StructField.apply("value", DataTypes.StringType, true, Metadata.empty())); List finalRows = Arrays.asList(RowFactory.create("key3", "val3")); Dataset finalDF = spark.createDataFrame(finalRows, finalSchema); finalDF .write() .format("bigquery") .mode(SaveMode.Append) .option("dataset", testDataset.toString()) .option("table", testTable) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .save(); assertThat(testTableNumberOfRows()).isEqualTo(3); } @Test public void allowFieldAdditionWithNestedColumns() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT)); StructType initialSchema = structType( StructField.apply("value", DataTypes.StringType, true, Metadata.empty()), StructField.apply("ds", DataTypes.DateType, true, Metadata.empty())); List rows = Arrays.asList( RowFactory.create("val1", Date.valueOf("2023-04-13")), RowFactory.create("val2", Date.valueOf("2023-04-14"))); Dataset initialDF = spark.createDataFrame(rows, initialSchema); // initial write initialDF .write() .format("bigquery") .mode(SaveMode.Overwrite) .option("dataset", testDataset.toString()) .option("table", testTable) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .save(); assertThat(testTableNumberOfRows()).isEqualTo(2); StructType nestedSchema = structType( StructField.apply("value", DataTypes.StringType, true, Metadata.empty()), StructField.apply("ds", DataTypes.DateType, true, Metadata.empty()), StructField.apply( "nested_col", structType( StructField.apply("sub_field1", DataTypes.StringType, true, Metadata.empty()), StructField.apply("sub_field2", DataTypes.StringType, true, Metadata.empty())), true, Metadata.empty())); List nestedData = Arrays.asList( RowFactory.create( "val5", Date.valueOf("2023-04-15"), RowFactory.create("str1", "str2")), RowFactory.create( "val6", Date.valueOf("2023-04-16"), RowFactory.create("str1", "str2"))); Dataset nestedDF = spark.createDataFrame(nestedData, nestedSchema); nestedDF .write() .format("bigquery") .mode(SaveMode.Append) .option("dataset", testDataset.toString()) .option("table", testTable) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .option("allowFieldAddition", "true") .option("allowFieldRelaxation", "true") .save(); TableResult tableResult = IntegrationTestUtils.runQuery( String.format("SELECT * FROM `%s.%s`", testDataset.testDataset, testTable)); assertThat(tableResult.getTotalRows()).isEqualTo(4); FieldValue expectedRecord = FieldValue.of( FieldValue.Attribute.RECORD, FieldValueList.of( Arrays.asList( FieldValue.of(FieldValue.Attribute.PRIMITIVE, "str1", false), FieldValue.of(FieldValue.Attribute.PRIMITIVE, "str2", false))), false); List nestedColList = Streams.stream(tableResult.getValues()) .map(row -> row.get("nested_col")) .collect(Collectors.toList()); assertThat(nestedColList.stream().filter(FieldValue::isNull).count()).isEqualTo(2); assertThat(nestedColList.stream().filter(not(FieldValue::isNull)).collect(Collectors.toList())) .containsExactly(expectedRecord, expectedRecord); } @Test public void allowFieldAdditionIntoNestedColumns() throws Exception { assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT)); StructType initialSchema = structType( StructField.apply("value", DataTypes.StringType, true, Metadata.empty()), StructField.apply("ds", DataTypes.DateType, true, Metadata.empty()), StructField.apply( "nested_col", structType( StructField.apply("sub_field1", DataTypes.StringType, true, Metadata.empty()), StructField.apply("sub_field2", DataTypes.StringType, true, Metadata.empty())), true, Metadata.empty())); List initialData = Arrays.asList( RowFactory.create( "val5", Date.valueOf("2023-04-15"), RowFactory.create("str1", "str2")), RowFactory.create( "val6", Date.valueOf("2023-04-16"), RowFactory.create("str1", "str2"))); Dataset initialDF = spark.createDataFrame(initialData, initialSchema); initialDF .write() .format("bigquery") .mode(SaveMode.Append) .option("dataset", testDataset.toString()) .option("table", testTable) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .option("allowFieldAddition", "true") .option("allowFieldRelaxation", "true") .save(); assertThat(testTableNumberOfRows()).isEqualTo(2); StructType finalSchema = structType( StructField.apply("value", DataTypes.StringType, true, Metadata.empty()), StructField.apply("ds", DataTypes.DateType, true, Metadata.empty()), StructField.apply( "nested_col", structType( StructField.apply("sub_field1", DataTypes.StringType, true, Metadata.empty()), StructField.apply("sub_field2", DataTypes.StringType, true, Metadata.empty()), StructField.apply("sub_field3", DataTypes.StringType, true, Metadata.empty())), true, Metadata.empty())); List finalData = Arrays.asList( RowFactory.create( "val5", Date.valueOf("2023-04-15"), RowFactory.create("str1", "str2", "str3")), RowFactory.create( "val6", Date.valueOf("2023-04-16"), RowFactory.create("str1", "str2", "str3"))); Dataset finalDF = spark.createDataFrame(finalData, finalSchema); finalDF .write() .format("bigquery") .mode(SaveMode.Append) .option("dataset", testDataset.toString()) .option("table", testTable) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("writeMethod", writeMethod.toString()) .option("allowFieldAddition", "true") .option("allowFieldRelaxation", "true") .save(); TableResult tableResult = IntegrationTestUtils.runQuery( String.format("SELECT * FROM `%s.%s`", testDataset.testDataset, testTable)); assertThat(tableResult.getTotalRows()).isEqualTo(4); List nestedColList = Streams.stream(tableResult.getValues()) .map(row -> row.get("nested_col")) .collect(Collectors.toList()); assertThat(nestedColList.stream().filter(this::hasTwoValues).count()).isEqualTo(2); assertThat(nestedColList.stream().filter(this::hasThreeValues).count()).isEqualTo(2); } private boolean hasTwoValues(FieldValue record) { FieldValueList values = record.getRecordValue(); return !values.get(0).isNull() && !values.get(1).isNull() && values.get(2).isNull(); } private boolean hasThreeValues(FieldValue record) { FieldValueList values = record.getRecordValue(); return !values.get(0).isNull() && !values.get(1).isNull() && !values.get(2).isNull(); } @Test public void testWriteSparkMlTypes() { // Spark ML types have issues on Spark 2.4 String sparkVersion = package$.MODULE$.SPARK_VERSION(); Assume.assumeThat(sparkVersion, CoreMatchers.startsWith("3.")); Dataset df = spark.createDataFrame( Arrays.asList( RowFactory.create("1", "20230515", 12345, 5678, 1234.12345), RowFactory.create("2", "20230515", 14789, 25836, 1234.12345), RowFactory.create("3", "20230515", 54321, 98765, 1234.12345)), new StructType( new StructField[] { StructField.apply("Seqno", DataTypes.StringType, true, Metadata.empty()), StructField.apply("date1", DataTypes.StringType, true, Metadata.empty()), StructField.apply("num1", DataTypes.IntegerType, true, Metadata.empty()), StructField.apply("num2", DataTypes.IntegerType, true, Metadata.empty()), StructField.apply("amt1", DataTypes.DoubleType, true, Metadata.empty()) })); List stages = new ArrayList<>(); VectorAssembler va = new VectorAssembler(); va.setInputCols(new String[] {"num1", "num2"}); va.setOutputCol("features_vector"); df = va.transform(df); stages.add(va); MinMaxScaler minMaxScaler = new MinMaxScaler(); minMaxScaler.setInputCol("features_vector"); minMaxScaler.setOutputCol("features"); MinMaxScalerModel minMaxScalerModel = minMaxScaler.fit(df); df = minMaxScalerModel.transform(df); stages.add(minMaxScalerModel); PipelineModel pipelineModel = new PipelineModel("pipeline", stages); df.show(false); df.write() .format("bigquery") .option("writeMethod", writeMethod.toString()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .option("dataset", testDataset.toString()) .option("table", testTable) .save(); Dataset result = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); StructType resultSchema = result.schema(); assertThat(resultSchema.apply("features").dataType()).isEqualTo(SQLDataTypes.VectorType()); result.show(false); List values = result.collectAsList(); assertThat(values).hasSize(3); Row row = values.get(0); assertThat(row.get(row.fieldIndex("features"))) .isInstanceOf(org.apache.spark.ml.linalg.Vector.class); } @Test public void testTimestampNTZDirectWriteToBigQuery() throws InterruptedException { assumeThat(writeMethod, equalTo(WriteMethod.DIRECT)); assumeThat(timeStampNTZType.isPresent(), is(true)); LocalDateTime time = LocalDateTime.of(2023, 9, 1, 12, 23, 34, 268543 * 1000); List rows = Arrays.asList(RowFactory.create(time)); Dataset df = spark.createDataFrame( rows, new StructType( new StructField[] { StructField.apply("foo", timeStampNTZType.get(), true, Metadata.empty()) })); String table = testDataset.toString() + "." + testTable; df.write() .format("bigquery") .mode(SaveMode.Overwrite) .option("table", table) .option("writeMethod", SparkBigQueryConfig.WriteMethod.DIRECT.toString()) .save(); BigQuery bigQuery = IntegrationTestUtils.getBigquery(); TableResult result = bigQuery.query( QueryJobConfiguration.of(String.format("Select foo from %s", fullTableName()))); assertThat(result.getSchema().getFields().get(0).getType()) .isEqualTo(LegacySQLTypeName.DATETIME); assertThat(result.streamValues().findFirst().get().get(0).getValue()) .isEqualTo("2023-09-01T12:23:34.268543"); } @Test public void testTimestampNTZIndirectWriteToBigQueryAvroFormat() throws InterruptedException { assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT)); assumeThat(timeStampNTZType.isPresent(), is(true)); LocalDateTime time = LocalDateTime.of(2023, 9, 1, 12, 23, 34, 268543 * 1000); TableResult result = insertAndGetTimestampNTZToBigQuery(time, "avro"); assertThat(result.getSchema().getFields().get(0).getType()) .isEqualTo(LegacySQLTypeName.DATETIME); assertThat(result.streamValues().findFirst().get().get(0).getValue()) .isEqualTo("2023-09-01T12:23:34.268543"); } @Test public void testTimestampNTZIndirectWriteToBigQueryParquetFormat() throws InterruptedException { assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT)); assumeThat(timeStampNTZType.isPresent(), is(true)); LocalDateTime time = LocalDateTime.of(2023, 9, 15, 12, 36, 34, 268543 * 1000); TableResult result = insertAndGetTimestampNTZToBigQuery(time, "parquet"); assertThat(result.getSchema().getFields().get(0).getType()) .isEqualTo(LegacySQLTypeName.DATETIME); assertThat(result.streamValues().findFirst().get().get(0).getValue()) .isEqualTo("2023-09-15T12:36:34.268543"); } @Test public void testTableDescriptionRemainsUnchanged() { IntegrationTestUtils.runQuery( String.format("CREATE TABLE `%s.%s` (name STRING, age INT64)", testDataset, testTable)); String initialDescription = bq.getTable(testDataset.toString(), testTable).getDescription(); Dataset df = spark.createDataFrame( Arrays.asList(RowFactory.create("foo", 10), RowFactory.create("bar", 20)), new StructType().add("name", DataTypes.StringType).add("age", DataTypes.IntegerType)); writeToBigQueryAvroFormat(df, SaveMode.Append, "True"); assertThat(initialDescription) .isEqualTo(bq.getTable(testDataset.toString(), testTable).getDescription()); Dataset readDF = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .load(); assertThat(readDF.count()).isAtLeast(1); assertThat(initialDescription) .isEqualTo(bq.getTable(testDataset.toString(), testTable).getDescription()); } @Test public void testCountAfterWrite() { IntegrationTestUtils.runQuery( String.format("CREATE TABLE `%s.%s` (name STRING, age INT64)", testDataset, testTable)); Dataset read1Df = spark.read().format("bigquery").load(fullTableName()); assertThat(read1Df.count()).isEqualTo(0L); Dataset dfToWrite = spark.createDataFrame( Arrays.asList(RowFactory.create("foo", 10), RowFactory.create("bar", 20)), new StructType().add("name", DataTypes.StringType).add("age", DataTypes.IntegerType)); writeToBigQueryAvroFormat(dfToWrite, SaveMode.Append, "false"); Dataset read2Df = spark.read().format("bigquery").load(fullTableName()); assertThat(read2Df.count()).isEqualTo(2L); } private TableResult insertAndGetTimestampNTZToBigQuery(LocalDateTime time, String format) throws InterruptedException { Preconditions.checkArgument(timeStampNTZType.isPresent(), "timestampNTZType not present"); List rows = Arrays.asList(RowFactory.create(time)); Dataset df = spark.createDataFrame( rows, new StructType( new StructField[] { StructField.apply("foo", timeStampNTZType.get(), true, Metadata.empty()) })); writeToBigQuery(df, SaveMode.Overwrite, format); BigQuery bigQuery = IntegrationTestUtils.getBigquery(); TableResult result = bigQuery.query( QueryJobConfiguration.of(String.format("Select foo from %s", fullTableName()))); return result; } protected long numberOfRowsWith(String name) { try { return bq.query( QueryJobConfiguration.of( String.format("select name from %s where name='%s'", fullTableName(), name))) .getTotalRows(); } catch (InterruptedException e) { throw new RuntimeException(e); } } protected String fullTableName() { return testDataset.toString() + "." + testTable; } protected String fullTableNamePartitioned() { return fullTableName() + "_partitioned"; } protected boolean additionalDataValuesExist() { return numberOfRowsWith("Xyz") == 1; } protected boolean initialDataValuesExist() { return numberOfRowsWith("Abc") == 1; } // the equivalent of Java 11 Predicate.not() static Predicate not(Predicate predicate) { return predicate.negate(); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/ColumnOrderTestClass.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration.model; import com.google.common.base.Objects; public class ColumnOrderTestClass { private NumStruct nums; private String str; public ColumnOrderTestClass() {} public ColumnOrderTestClass(NumStruct nums, String str) { this.nums = nums; this.str = str; } public NumStruct getNums() { return nums; } public void setNums(NumStruct nums) { this.nums = nums; } public String getStr() { return str; } public void setStr(String str) { this.str = str; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof ColumnOrderTestClass)) { return false; } ColumnOrderTestClass that = (ColumnOrderTestClass) o; return Objects.equal(nums, that.nums) && Objects.equal(str, that.str); } @Override public int hashCode() { return Objects.hashCode(nums, str); } @Override public String toString() { return "ColumnOrderTestClass{" + "nums=" + nums + ", str='" + str + '\'' + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/Data.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration.model; import com.google.common.base.Objects; import java.io.Serializable; import java.sql.Timestamp; public class Data implements Serializable { private static final long serialVersionUID = 752810064619797197L; private String str; private java.sql.Timestamp ts; public Data(String str, Timestamp ts) { this.str = str; this.ts = ts; } public String getStr() { return str; } public void setStr(String str) { this.str = str; } public Timestamp getTs() { return ts; } public void setTs(Timestamp ts) { this.ts = ts; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof Data)) { return false; } Data data = (Data) o; return Objects.equal(str, data.str) && Objects.equal(ts, data.ts); } @Override public int hashCode() { return Objects.hashCode(str, ts); } @Override public String toString() { return "Data{" + "str='" + str + '\'' + ", ts=" + ts + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/Friend.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration.model; import com.google.common.base.Objects; import java.util.List; public class Friend { private int age; private List links; public Friend() {} public Friend(int age, List links) { this.age = age; this.links = links; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public List getLinks() { return links; } public void setLinks(List links) { this.links = links; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof Friend)) { return false; } Friend friend = (Friend) o; return age == friend.age && Objects.equal(links, friend.links); } @Override public int hashCode() { return Objects.hashCode(age, links); } @Override public String toString() { return "Friend{" + "age=" + age + ", links=" + links + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/Link.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration.model; import com.google.common.base.Objects; import java.io.Serializable; public class Link implements Serializable { private static final long serialVersionUID = 914804886152047390L; private String uri; public Link() {} public Link(String uri) { this.uri = uri; } public String getUri() { return uri; } public void setUri(String uri) { this.uri = uri; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof Link)) { return false; } Link link = (Link) o; return Objects.equal(uri, link.uri); } @Override public int hashCode() { return Objects.hashCode(uri); } @Override public String toString() { return "Link{" + "uri='" + uri + '\'' + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/NumStruct.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration.model; import com.google.common.base.Objects; import java.util.List; public class NumStruct { private Long num3; private Long num2; private Long num1; private List strings; public NumStruct() {} public NumStruct(Long num3, Long num2, Long num1, List strings) { this.num3 = num3; this.num2 = num2; this.num1 = num1; this.strings = strings; } public Long getNum3() { return num3; } public void setNum3(Long num3) { this.num3 = num3; } public Long getNum2() { return num2; } public void setNum2(Long num2) { this.num2 = num2; } public Long getNum1() { return num1; } public void setNum1(Long num1) { this.num1 = num1; } public List getStrings() { return strings; } public void setStrings(List strings) { this.strings = strings; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof NumStruct)) { return false; } NumStruct numStruct = (NumStruct) o; return Objects.equal(num3, numStruct.num3) && Objects.equal(num2, numStruct.num2) && Objects.equal(num1, numStruct.num1) && Objects.equal(strings, numStruct.strings); } @Override public int hashCode() { return Objects.hashCode(num3, num2, num1, strings); } @Override public String toString() { return "NumStruct{" + "num3=" + num3 + ", num2=" + num2 + ", num1=" + num1 + ", stringStructArr=" + strings + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/Person.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration.model; import com.google.common.base.Objects; import java.util.List; public class Person { private String name; private List friends; public Person() {} public Person(String name, List friends) { this.name = name; this.friends = friends; } public String getName() { return name; } public void setName(String name) { this.name = name; } public List getFriends() { return friends; } public void setFriends(List friends) { this.friends = friends; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof Person)) { return false; } Person person = (Person) o; return Objects.equal(name, person.name) && Objects.equal(friends, person.friends); } @Override public int hashCode() { return Objects.hashCode(name, friends); } @Override public String toString() { return "Person{" + "name='" + name + '\'' + ", friends=" + friends + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/RangeData.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration.model; import com.google.common.base.Objects; import java.io.Serializable; public class RangeData implements Serializable { private static final long serialVersionUID = 194460107083111775L; private String str; private Long rng; public RangeData(String str, Long rng) { this.str = str; this.rng = rng; } public String getStr() { return str; } public void setStr(String str) { this.str = str; } public Long getRng() { return rng; } public void setRng(Long rng) { this.rng = rng; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof RangeData)) { return false; } RangeData data = (RangeData) o; return Objects.equal(str, data.str) && Objects.equal(rng, data.rng); } @Override public int hashCode() { return Objects.hashCode(str, rng); } @Override public String toString() { return "Data{" + "str='" + str + '\'' + ", rng=" + rng + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/StringStruct.java ================================================ /* * Copyright 2021 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration.model; import com.google.common.base.Objects; public class StringStruct { private String str3; private String str1; private String str2; public StringStruct() {} public StringStruct(String str3, String str1, String str2) { this.str3 = str3; this.str1 = str1; this.str2 = str2; } public String getStr3() { return str3; } public void setStr3(String str3) { this.str3 = str3; } public String getStr1() { return str1; } public void setStr1(String str1) { this.str1 = str1; } public String getStr2() { return str2; } public void setStr2(String str2) { this.str2 = str2; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof StringStruct)) { return false; } StringStruct that = (StringStruct) o; return Objects.equal(str3, that.str3) && Objects.equal(str1, that.str1) && Objects.equal(str2, that.str2); } @Override public int hashCode() { return Objects.hashCode(str3, str1, str2); } @Override public String toString() { return "StringStruct{" + "str3='" + str3 + '\'' + ", str1='" + str1 + '\'' + ", str2='" + str2 + '\'' + '}'; } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/metrics/SparkBigQueryReadSessionMetricsTest.java ================================================ package com.google.cloud.spark.bigquery.metrics; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.cloud.bigquery.storage.v1.ReadSession; import org.apache.spark.SparkContext; import org.apache.spark.sql.SparkSession; import org.junit.After; import org.junit.Before; import org.junit.Test; public class SparkBigQueryReadSessionMetricsTest { SparkSession spark; SparkContext sparkContext; @Before public void setup() throws Throwable { spark = SparkSession.builder() .master("local") .config("spark.default.parallelism", 20) .config("spark.driver.bindAddress", "127.0.0.1") .getOrCreate(); sparkContext = spark.sparkContext(); } @After public void tearDown() { if (sparkContext != null) { sparkContext.stop(); } } @Test public void testReadSessionMetricsAccumulator() { String sessionName = "projects/test-project/locations/us/sessions/testSession"; long numReadStreams = 10; SparkBigQueryReadSessionMetrics metrics = SparkBigQueryReadSessionMetrics.from( spark, ReadSession.newBuilder().setName(sessionName).build(), 10L, DataFormat.ARROW, DataOrigin.QUERY, numReadStreams); assertThat(metrics.getNumReadStreams()).isEqualTo(numReadStreams); metrics.incrementBytesReadAccumulator(1024); metrics.incrementBytesReadAccumulator(2048); assertThat(metrics.getBytesRead()).isEqualTo(3072); metrics.incrementRowsReadAccumulator(1); metrics.incrementRowsReadAccumulator(4); assertThat(metrics.getRowsRead()).isEqualTo(5); metrics.incrementParseTimeAccumulator(1000); metrics.incrementParseTimeAccumulator(5000); assertThat(metrics.getParseTime()).isEqualTo(6000); metrics.incrementScanTimeAccumulator(1000); metrics.incrementScanTimeAccumulator(5000); assertThat(metrics.getScanTime()).isEqualTo(6000); } @Test public void testSerialization() throws Exception { String sessionName = "projects/test-project/locations/us/sessions/testSession"; SparkBigQueryReadSessionMetrics metrics = SparkBigQueryReadSessionMetrics.from( spark, ReadSession.newBuilder().setName(sessionName).build(), 10L, DataFormat.ARROW, DataOrigin.QUERY, 10L); java.io.ByteArrayOutputStream bos = new java.io.ByteArrayOutputStream(); java.io.ObjectOutputStream out = new java.io.ObjectOutputStream(bos); out.writeObject(metrics); out.close(); java.io.ByteArrayInputStream bis = new java.io.ByteArrayInputStream(bos.toByteArray()); java.io.ObjectInputStream in = new java.io.ObjectInputStream(bis); SparkBigQueryReadSessionMetrics deserializedMetrics = (SparkBigQueryReadSessionMetrics) in.readObject(); assertThat(deserializedMetrics.getNumReadStreams()).isEqualTo(10L); assertThat(deserializedMetrics.getBytesRead()).isEqualTo(0); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/metrics/SparkMetricsSourceTest.java ================================================ package com.google.cloud.spark.bigquery.metrics; import static com.google.common.truth.Truth.assertThat; import org.junit.Test; public class SparkMetricsSourceTest { @Test public void testNew() { SparkMetricsSource sparkMetricsSource = new SparkMetricsSource(); assertThat(sparkMetricsSource.sourceName()).isEqualTo("bigquery-metrics-source"); } @Test public void testParseTime() { SparkMetricsSource sparkMetricsSource = new SparkMetricsSource(); assertThat(sparkMetricsSource.getParseTime().getCount()).isEqualTo(0); sparkMetricsSource.updateParseTime(10); assertThat(sparkMetricsSource.getParseTime().getCount()).isEqualTo(1); } @Test public void testTimeInSpark() { SparkMetricsSource sparkMetricsSource = new SparkMetricsSource(); assertThat(sparkMetricsSource.getTimeInSpark().getCount()).isEqualTo(0); sparkMetricsSource.updateTimeInSpark(12); sparkMetricsSource.updateTimeInSpark(56); sparkMetricsSource.updateTimeInSpark(200); assertThat(sparkMetricsSource.getTimeInSpark().getCount()).isEqualTo(3); } @Test public void testBytesReadCounter() { SparkMetricsSource sparkMetricsSource = new SparkMetricsSource(); assertThat(sparkMetricsSource.getBytesRead().getCount()).isEqualTo(0); sparkMetricsSource.incrementBytesReadCounter(1); sparkMetricsSource.incrementBytesReadCounter(2); sparkMetricsSource.incrementBytesReadCounter(3); assertThat(sparkMetricsSource.getBytesRead().getCount()).isEqualTo(6); } @Test public void testRowsReadCounter() { SparkMetricsSource sparkMetricsSource = new SparkMetricsSource(); assertThat(sparkMetricsSource.getRowsRead().getCount()).isEqualTo(0); sparkMetricsSource.incrementRowsReadCounter(2); sparkMetricsSource.incrementRowsReadCounter(3); sparkMetricsSource.incrementRowsReadCounter(4); assertThat(sparkMetricsSource.getRowsRead().getCount()).isEqualTo(9); } @Test public void testScanTime() { SparkMetricsSource sparkMetricsSource = new SparkMetricsSource(); assertThat(sparkMetricsSource.getScanTime().getCount()).isEqualTo(0); sparkMetricsSource.updateScanTime(22); sparkMetricsSource.updateScanTime(56); assertThat(sparkMetricsSource.getScanTime().getCount()).isEqualTo(2); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/util/HdfsUtilsTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.util; import static com.google.common.truth.Truth.assertThat; import com.google.common.collect.Iterators; import com.google.common.collect.Streams; import java.nio.file.Files; import java.util.Iterator; import java.util.List; import java.util.stream.Collectors; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.LocatedFileStatus; import org.apache.hadoop.fs.Path; import org.junit.BeforeClass; import org.junit.Test; public class HdfsUtilsTest { static java.nio.file.Path testDir; @BeforeClass public static void createTestDirectory() throws Exception { testDir = Files.createTempDirectory("ToIteratorTest"); testDir.toFile().deleteOnExit(); Files.copy( HdfsUtilsTest.class.getResourceAsStream("/ToIteratorTest/file1.txt"), testDir.resolve("file1.txt")); Files.copy( HdfsUtilsTest.class.getResourceAsStream("/ToIteratorTest/file2.csv"), testDir.resolve("file2.csv")); } @Test public void toIteratorTest() throws Exception { Path path = new Path(testDir.toFile().getAbsolutePath()); FileSystem fs = path.getFileSystem(new Configuration()); Iterator it = HdfsUtils.toJavaUtilIterator(fs.listFiles(path, false)); assertThat(Iterators.size(it)).isEqualTo(2); // fresh instance it = HdfsUtils.toJavaUtilIterator(fs.listFiles(path, false)); List textFiles = Streams.stream(it) .filter(f -> f.getPath().getName().endsWith(".txt")) .collect(Collectors.toList()); assertThat(textFiles).hasSize(1); assertThat(textFiles.iterator().next().getPath().getName()).endsWith("file1.txt"); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/write/DataSourceWriterContextPartitionHandlerTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.write; import static com.google.common.truth.Truth.assertThat; import static org.mockito.Mockito.any; import static org.mockito.Mockito.anyLong; import static org.mockito.Mockito.atLeast; import static org.mockito.Mockito.atLeastOnce; import static org.mockito.Mockito.doThrow; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import com.google.cloud.spark.bigquery.write.context.DataWriterContext; import com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory; import com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext; import com.google.common.collect.Iterators; import com.google.common.collect.Streams; import java.io.IOException; import java.util.Iterator; import java.util.List; import java.util.stream.Collectors; import org.apache.spark.sql.Row; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.expressions.GenericRow; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.junit.MockitoJUnitRunner; @RunWith(MockitoJUnitRunner.class) public class DataSourceWriterContextPartitionHandlerTest { private static final long EPOCH = 1000; @Test public void testGoodWrite() throws Exception { WriterCommitMessageContext writerCommitMessage = new WriterCommitMessageContext() {}; DataWriterContext dataWriterContext = mock(DataWriterContext.class); when(dataWriterContext.commit()).thenReturn(writerCommitMessage); DataWriterContextFactory dataWriterContextFactory = mock(DataWriterContextFactory.class); when(dataWriterContextFactory.createDataWriterContext(any(Integer.class), anyLong(), anyLong())) .thenReturn(dataWriterContext); DataSourceWriterContextPartitionHandler handler = new DataSourceWriterContextPartitionHandler(dataWriterContextFactory, EPOCH); Iterator rowIterator = Iterators.forArray( new GenericRow(new Object[] {1, "a"}), new GenericRow(new Object[] {2, "b"})); Iterator result = handler.call(0, rowIterator); verify(dataWriterContext, atLeast(2)).write(any(InternalRow.class)); assertThat(result.hasNext()).isTrue(); assertThat(result.next()).isSameInstanceAs(writerCommitMessage); assertThat(result.hasNext()).isFalse(); } @Test public void testBadWrite() throws Exception { DataWriterContext dataWriterContext = mock(DataWriterContext.class); doThrow(new IOException("testing bad write")) .when(dataWriterContext) .write(any(InternalRow.class)); DataWriterContextFactory dataWriterContextFactory = mock(DataWriterContextFactory.class); when(dataWriterContextFactory.createDataWriterContext(any(Integer.class), anyLong(), anyLong())) .thenReturn(dataWriterContext); DataSourceWriterContextPartitionHandler handler = new DataSourceWriterContextPartitionHandler(dataWriterContextFactory, EPOCH); Iterator rowIterator = Iterators.forArray( new GenericRow(new Object[] {1, "a"}), new GenericRow(new Object[] {2, "b"})); Iterator resultIterator = handler.call(0, rowIterator); verify(dataWriterContext, atLeastOnce()).write(any(InternalRow.class)); verify(dataWriterContext).abort(); List result = Streams.stream(resultIterator).collect(Collectors.toList()); assertThat(result).hasSize(1); assertThat(result.get(0).getError().isPresent()).isTrue(); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectDataSourceWriterContextTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.write.context; import static org.junit.Assert.assertThrows; import static org.mockito.Mockito.*; import com.google.api.gax.retrying.RetrySettings; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.StandardTableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.spark.bigquery.PartitionOverwriteMode; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.common.base.Optional; import com.google.common.collect.ImmutableMap; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.types.DataTypes; import org.apache.spark.sql.types.Metadata; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.junit.MockitoJUnitRunner; @RunWith(MockitoJUnitRunner.class) public class BigQueryDirectDataSourceWriterContextTest { @Mock BigQueryClient bigQueryClient; @Mock BigQueryClientFactory bigQueryClientFactory; @Mock RetrySettings bigqueryDataWriterHelperRetrySettings; TableId destinationTableId = TableId.of("dataset", "table"); String writeUUID = "00000000-0000-0000-0000-000000000000"; StructType sparkSchema = new StructType( new StructField[] { StructField.apply("foo", DataTypes.StringType, true, Metadata.empty()) }); TableInfo destinationTable = TableInfo.newBuilder( destinationTableId, StandardTableDefinition.newBuilder() .setSchema( Schema.of( Field.newBuilder("foo", LegacySQLTypeName.STRING) .setMode(Field.Mode.NULLABLE) .build())) .build()) .build(); TableInfo tempTable = TableInfo.newBuilder( TableId.of("dataset", "temp_table"), StandardTableDefinition.newBuilder() .setSchema( Schema.of( Field.newBuilder("foo", LegacySQLTypeName.STRING) .setMode(Field.Mode.NULLABLE) .build())) .build()) .build(); @Test public void testDeleteOnAbort_saveModeAppend() { when(bigQueryClient.tableExists(any())).thenReturn(true); when(bigQueryClient.getTable(any())).thenReturn(destinationTable); when(bigQueryClient.createTablePathForBigQueryStorage(any())).thenReturn(""); BigQueryDirectDataSourceWriterContext ctx = createBigQueryDirectDataSourceWriterContext(SaveMode.Append); ctx.abort(null); verify(bigQueryClient, times(0)).deleteTable(any()); } @Test public void testDeleteOnAbort_saveModeErrorIfExists() { when(bigQueryClient.tableExists(any())).thenReturn(true); when(bigQueryClient.getTable(any())).thenReturn(destinationTable); assertThrows( IllegalArgumentException.class, () -> { BigQueryDirectDataSourceWriterContext ctx = createBigQueryDirectDataSourceWriterContext(SaveMode.ErrorIfExists); }); } @Test public void testDeleteOnAbort_saveModeIgnore() { when(bigQueryClient.tableExists(any())).thenReturn(true); when(bigQueryClient.getTable(any())).thenReturn(destinationTable); when(bigQueryClient.createTablePathForBigQueryStorage(any())).thenReturn(""); BigQueryDirectDataSourceWriterContext ctx = createBigQueryDirectDataSourceWriterContext(SaveMode.Ignore); ctx.abort(null); verify(bigQueryClient, times(0)).deleteTable(any()); } @Test public void testDeleteOnAbort_saveModeOverwrite() { when(bigQueryClient.tableExists(any())).thenReturn(true); when(bigQueryClient.getTable(any())).thenReturn(destinationTable); when(bigQueryClient.createTempTable(any(), any())).thenReturn(tempTable); when(bigQueryClient.createTablePathForBigQueryStorage(any())).thenReturn(""); BigQueryDirectDataSourceWriterContext ctx = createBigQueryDirectDataSourceWriterContext(SaveMode.Overwrite); ctx.abort(null); verify(bigQueryClient, times(1)).deleteTable(any()); } @Test public void testDeleteOnAbort_newTable() { when(bigQueryClient.tableExists(destinationTableId)).thenReturn(false); when(bigQueryClient.createTable(any(), any(), any())).thenReturn(destinationTable); when(bigQueryClient.createTablePathForBigQueryStorage(any())).thenReturn(""); BigQueryDirectDataSourceWriterContext ctx = createBigQueryDirectDataSourceWriterContext(SaveMode.Append); ctx.abort(null); verify(bigQueryClient, times(1)).deleteTable(any()); } private BigQueryDirectDataSourceWriterContext createBigQueryDirectDataSourceWriterContext( SaveMode saveMode) { return new BigQueryDirectDataSourceWriterContext( bigQueryClient, bigQueryClientFactory, destinationTableId, writeUUID, saveMode, sparkSchema, bigqueryDataWriterHelperRetrySettings, Optional.absent(), true, ImmutableMap.builder().build(), SchemaConvertersConfiguration.createDefault(), java.util.Optional.empty(), false, PartitionOverwriteMode.STATIC, java.util.Optional.empty(), null); } } ================================================ FILE: spark-bigquery-connector-common/src/test/java/org/apache/spark/sql/Scala213SparkSqlUtilsTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package org.apache.spark.sql; import static com.google.common.truth.Truth.assertThat; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.expressions.GenericRow; import org.apache.spark.unsafe.types.UTF8String; import org.junit.Test; public class Scala213SparkSqlUtilsTest { @Test public void testRowToInternalRow() throws Exception { SparkSqlUtils ssu = SparkSqlUtils.getInstance(); assertThat(ssu).isInstanceOf(Scala213SparkSqlUtils.class); Row row = new GenericRow(new Object[] {UTF8String.fromString("a"), 1}); InternalRow internalRow = ssu.rowToInternalRow(row); assertThat(internalRow.numFields()).isEqualTo(2); assertThat(internalRow.getString(0).toString()).isEqualTo("a"); assertThat(internalRow.getInt(1)).isEqualTo(1); } } ================================================ FILE: spark-bigquery-connector-common/src/test/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown ================================================ com.google.cloud.spark.bigquery.MockSparkBigQueryPushdown ================================================ FILE: spark-bigquery-connector-common/src/test/resources/ToIteratorTest/file1.txt ================================================ hello world ================================================ FILE: spark-bigquery-connector-common/src/test/resources/ToIteratorTest/file2.csv ================================================ hello,world ================================================ FILE: spark-bigquery-connector-common/src/test/resources/acceptance/big_numeric.py ================================================ import sys from pyspark.sql import SparkSession spark = SparkSession.builder.appName('BigNumeric acceptance test').getOrCreate() table = sys.argv[1] df = spark.read.format("bigquery").load(table) min = "-0.34992332820282019728792003956564819968" max = "0.34992332820282019728792003956564819967" data = df.select("min", "max").collect() for row in data: bigNumMin = row['min'] bigNumMax = row['max'] print(str(bigNumMin) == min) print(str(bigNumMax) == max) df.coalesce(1).write.csv(sys.argv[2]) ================================================ FILE: spark-bigquery-connector-common/src/test/resources/acceptance/read_shakespeare.py ================================================ #!/usr/bin/env python # Copyright 2018 Google Inc. All Rights Reserved. # # 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 sys from pyspark.sql import SparkSession spark = SparkSession.builder.appName('Shakespeare on Spark').getOrCreate() table = 'bigquery-public-data.samples.shakespeare' df = spark.read.format('bigquery').load(table) # Only these columns will be read df = df.select('word', 'word_count') # The filters that are allowed will be automatically pushed down. # Those that are not will be computed client side df = df.where("word_count > 0 AND word='spark'") # Further processing is done inside Spark df = df.groupBy('word').sum('word_count') print('The resulting schema is') df.printSchema() print('Spark mentions in Shakespeare') df.show() df.coalesce(1).write.csv(sys.argv[1]) ================================================ FILE: spark-bigquery-connector-common/src/test/resources/acceptance/write_stream.py ================================================ import sys from pyspark.sql import SparkSession from pyspark.sql.types import StructType spark = SparkSession.builder.appName('Write Stream Test').getOrCreate() json_location = sys.argv[1] dataset_name = sys.argv[2] table_name = sys.argv[3] temporary_gcs_bucket = sys.argv[4] schema = StructType().add("col1", "integer").add("col2", "string") # creating read stream from json(s) streamingDF = spark.readStream.option("multiline","true").schema(schema).json(json_location) # writing to bigquery via write stream stream_writer = streamingDF.writeStream.format("bigquery") \ .option("checkpointLocation", "/tmp/" + table_name + "/") \ .outputMode("append") \ .option("table", dataset_name + "." + table_name) \ .option("temporaryGcsBucket", temporary_gcs_bucket) \ .start() # waiting for 60 seconds for the write to finish stream_writer.awaitTermination(60) stream_writer.stop() ================================================ FILE: spark-bigquery-connector-common/src/test/resources/acceptance/write_stream_data.json ================================================ [{ "col1": 1, "col2" : "col2_1" }, { "col1": 2, "col2" : "col2_2" }] ================================================ FILE: spark-bigquery-connector-common/src/test/resources/alltypes.avroschema.json ================================================ {"type":"record","name":"__root__","fields":[{"name":"int_req","type":"long"},{"name":"int_null","type":["null","long"]},{"name":"bl","type":["null","boolean"]},{"name":"str","type":["null","string"]},{"name":"day","type":["null",{"type":"int","logicalType":"date"}]},{"name":"ts","type":["null",{"type":"long","logicalType":"timestamp-micros"}]},{"name":"dt","type":["null",{"type":"string","logicalType":"datetime"}]},{"name":"tm","type":["null",{"type":"long","logicalType":"time-micros"}]},{"name":"binary","type":["null","bytes"]},{"name":"float","type":["null","double"]},{"name":"nums","type":["null",{"type":"record","name":"__s_0","fields":[{"name":"min","type":["null",{"type":"bytes","logicalType":"decimal","precision":38,"scale":9}]},{"name":"max","type":["null",{"type":"bytes","logicalType":"decimal","precision":38,"scale":9}]},{"name":"pi","type":["null",{"type":"bytes","logicalType":"decimal","precision":38,"scale":9}]},{"name":"big_pi","type":["null",{"type":"bytes","logicalType":"decimal","precision":38,"scale":9}]}]}]},{"name":"int_arr","type":{"type":"array","items":"long"}},{"name":"int_struct_arr","type":{"type":"array","items":{"type":"record","name":"__s_1","fields":[{"name":"i","type":["null","long"]}]}}}]} ================================================ FILE: spark-bigquery-connector-common/src/test/resources/integration/shakespeare.csv ================================================ profession,1,hamlet,1600 augury,1,hamlet,1600 undertakings,1,hamlet,1600 surmise,1,hamlet,1600 religion,1,hamlet,1600 advanced,1,hamlet,1600 Wormwood,1,hamlet,1600 parchment,1,hamlet,1600 villany,1,hamlet,1600 digs,1,hamlet,1600 authorities,1,hamlet,1600 Popp'd,1,hamlet,1600 retrograde,1,hamlet,1600 tax'd,1,hamlet,1600 tomb,1,hamlet,1600 moral,1,hamlet,1600 foreknowing,1,hamlet,1600 dreadfully,1,hamlet,1600 parted,1,hamlet,1600 willow,1,hamlet,1600 name's,1,hamlet,1600 relief,1,hamlet,1600 transform,1,hamlet,1600 Brutus,1,hamlet,1600 swords,1,hamlet,1600 grew,1,hamlet,1600 pansies,1,hamlet,1600 grey,1,hamlet,1600 meed,1,hamlet,1600 Youth,1,hamlet,1600 bonny,1,hamlet,1600 'Laertes,1,hamlet,1600 invisible,1,hamlet,1600 inventors',1,hamlet,1600 fruits,1,hamlet,1600 digested,1,hamlet,1600 smiles,1,hamlet,1600 Yours,1,hamlet,1600 Longer,1,hamlet,1600 masterly,1,hamlet,1600 pestilence,1,hamlet,1600 zone,1,hamlet,1600 calumnious,1,hamlet,1600 easing,1,hamlet,1600 drop,1,hamlet,1600 exception,1,hamlet,1600 observers,1,hamlet,1600 infected,1,hamlet,1600 John,1,hamlet,1600 Imperious,1,hamlet,1600 yeoman's,1,hamlet,1600 whiff,1,hamlet,1600 afar,1,hamlet,1600 darest,1,hamlet,1600 reputation,1,hamlet,1600 Unpeg,1,hamlet,1600 mightiest,1,hamlet,1600 yielding,1,hamlet,1600 Hear,1,hamlet,1600 churlish,1,hamlet,1600 Pity,1,hamlet,1600 amble,1,hamlet,1600 heir,1,hamlet,1600 'ild,1,hamlet,1600 Frenchman,1,hamlet,1600 raw,1,hamlet,1600 wish'd,1,hamlet,1600 watchman,1,hamlet,1600 o'erstep,1,hamlet,1600 spectators,1,hamlet,1600 discord,1,hamlet,1600 commutual,1,hamlet,1600 leavens,1,hamlet,1600 Stay'd,1,hamlet,1600 stately,1,hamlet,1600 instructs,1,hamlet,1600 'should',1,hamlet,1600 woman's,1,hamlet,1600 New,1,hamlet,1600 shadows,1,hamlet,1600 peruse,1,hamlet,1600 confront,1,hamlet,1600 Aeneas',1,hamlet,1600 convoy,1,hamlet,1600 flush,1,hamlet,1600 advantage,1,hamlet,1600 honours,1,hamlet,1600 female,1,hamlet,1600 brows,1,hamlet,1600 lawful,1,hamlet,1600 whensoever,1,hamlet,1600 nipping,1,hamlet,1600 peculiar,1,hamlet,1600 hasty,1,hamlet,1600 cannons,1,hamlet,1600 paddling,1,hamlet,1600 Bestial,1,hamlet,1600 glimpses,1,hamlet,1600 dagger,1,hamlet,1600 rock,1,hamlet,1600 Vulcan's,1,hamlet,1600 Convert,1,hamlet,1600 replication,1,hamlet,1600 Messengers,1,hamlet,1600 capability,1,hamlet,1600 Charity,1,hamlet,1600 fardels,1,hamlet,1600 sterling,1,hamlet,1600 foolery,1,hamlet,1600 tanned,1,hamlet,1600 element,1,hamlet,1600 rot,1,hamlet,1600 anoint,1,hamlet,1600 obstinate,1,hamlet,1600 preparation,1,hamlet,1600 rascal,1,hamlet,1600 bonds,1,hamlet,1600 robe,1,hamlet,1600 row,1,hamlet,1600 scent,1,hamlet,1600 hems,1,hamlet,1600 carters,1,hamlet,1600 patches,1,hamlet,1600 tanner,1,hamlet,1600 mend,1,hamlet,1600 heart's,1,hamlet,1600 steals,1,hamlet,1600 'Adam,1,hamlet,1600 Wilt,1,hamlet,1600 dotes,1,hamlet,1600 ungalled,1,hamlet,1600 Bear,1,hamlet,1600 mandate,1,hamlet,1600 trivial,1,hamlet,1600 chopine,1,hamlet,1600 proclaim'd,1,hamlet,1600 easily,1,hamlet,1600 whips,1,hamlet,1600 space,1,hamlet,1600 brands,1,hamlet,1600 simples,1,hamlet,1600 Acts,1,hamlet,1600 boys,1,hamlet,1600 speedy,1,hamlet,1600 Subscribed,1,hamlet,1600 truepenny,1,hamlet,1600 Running,1,hamlet,1600 reserved,1,hamlet,1600 dire,1,hamlet,1600 harrow,1,hamlet,1600 blastments,1,hamlet,1600 moiety,1,hamlet,1600 despised,1,hamlet,1600 warning,1,hamlet,1600 dish,1,hamlet,1600 emulate,1,hamlet,1600 mess,1,hamlet,1600 Cock,1,hamlet,1600 eight,1,hamlet,1600 season'd,1,hamlet,1600 incorporal,1,hamlet,1600 whine,1,hamlet,1600 drowns,1,hamlet,1600 excrements,1,hamlet,1600 thorns,1,hamlet,1600 pardon't,1,hamlet,1600 younger,1,hamlet,1600 wrap,1,hamlet,1600 indict,1,hamlet,1600 contract,1,hamlet,1600 easier,1,hamlet,1600 thorny,1,hamlet,1600 Season,1,hamlet,1600 finger,1,hamlet,1600 adjoin'd,1,hamlet,1600 aptly,1,hamlet,1600 groan,1,hamlet,1600 bounteous,1,hamlet,1600 herb,1,hamlet,1600 cursing,1,hamlet,1600 theatre,1,hamlet,1600 vain,1,hamlet,1600 spake,1,hamlet,1600 wharf,1,hamlet,1600 Passing,1,hamlet,1600 eruption,1,hamlet,1600 greeted,1,hamlet,1600 Yorick,1,hamlet,1600 purer,1,hamlet,1600 Black,1,hamlet,1600 unwholesome,1,hamlet,1600 disease,1,hamlet,1600 sighs,1,hamlet,1600 skirts,1,hamlet,1600 toil,1,hamlet,1600 utterance,1,hamlet,1600 hent,1,hamlet,1600 brood,1,hamlet,1600 whipped,1,hamlet,1600 unmatch'd,1,hamlet,1600 looked,1,hamlet,1600 Cries,1,hamlet,1600 rid,1,hamlet,1600 fought,1,hamlet,1600 naked,1,hamlet,1600 unwrung,1,hamlet,1600 amber,1,hamlet,1600 Exceedingly,1,hamlet,1600 slander,1,hamlet,1600 sugar,1,hamlet,1600 blanks,1,hamlet,1600 villanies,1,hamlet,1600 declines,1,hamlet,1600 lick,1,hamlet,1600 melodious,1,hamlet,1600 exactly,1,hamlet,1600 Shards,1,hamlet,1600 match'd,1,hamlet,1600 concernancy,1,hamlet,1600 O'erbears,1,hamlet,1600 Taint,1,hamlet,1600 worms,1,hamlet,1600 admirable,1,hamlet,1600 prey,1,hamlet,1600 unfellowed,1,hamlet,1600 pocky,1,hamlet,1600 blunted,1,hamlet,1600 fust,1,hamlet,1600 inclining,1,hamlet,1600 reformed,1,hamlet,1600 advise,1,hamlet,1600 run,1,hamlet,1600 lewdness,1,hamlet,1600 sicklied,1,hamlet,1600 offal,1,hamlet,1600 pick,1,hamlet,1600 heedful,1,hamlet,1600 lids,1,hamlet,1600 contrary,1,hamlet,1600 fretful,1,hamlet,1600 works,1,hamlet,1600 lief,1,hamlet,1600 Whom,1,hamlet,1600 design'd,1,hamlet,1600 Niobe,1,hamlet,1600 Fix'd,1,hamlet,1600 scruple,1,hamlet,1600 Stew'd,1,hamlet,1600 neighbour'd,1,hamlet,1600 tyrannous,1,hamlet,1600 swear't,1,hamlet,1600 thicker,1,hamlet,1600 unwilling,1,hamlet,1600 PERSONAE,1,hamlet,1600 Videlicet,1,hamlet,1600 carp,1,hamlet,1600 churchyard,1,hamlet,1600 unforced,1,hamlet,1600 Blasting,1,hamlet,1600 moist,1,hamlet,1600 marshal,1,hamlet,1600 mute,1,hamlet,1600 unpolluted,1,hamlet,1600 cart,1,hamlet,1600 spark,1,hamlet,1600 sanity,1,hamlet,1600 couched,1,hamlet,1600 vailed,1,hamlet,1600 shovel,1,hamlet,1600 loathsome,1,hamlet,1600 case,1,hamlet,1600 Calmly,1,hamlet,1600 congruing,1,hamlet,1600 Pretty,1,hamlet,1600 thumb,1,hamlet,1600 utter'd,1,hamlet,1600 softly,1,hamlet,1600 song,1,hamlet,1600 argues,1,hamlet,1600 worser,1,hamlet,1600 liar,1,hamlet,1600 Prompted,1,hamlet,1600 mistook,1,hamlet,1600 pleasing,1,hamlet,1600 pickers,1,hamlet,1600 aery,1,hamlet,1600 breach,1,hamlet,1600 performance,1,hamlet,1600 vast,1,hamlet,1600 stoops,1,hamlet,1600 accidental,1,hamlet,1600 successive,1,hamlet,1600 sanctified,1,hamlet,1600 stirring,1,hamlet,1600 beneath,1,hamlet,1600 law's,1,hamlet,1600 condolement,1,hamlet,1600 delivered,1,hamlet,1600 friending,1,hamlet,1600 counter,1,hamlet,1600 torrent,1,hamlet,1600 soon,1,hamlet,1600 practises,1,hamlet,1600 seven,1,hamlet,1600 sons,1,hamlet,1600 giant,1,hamlet,1600 lacks,1,hamlet,1600 sterile,1,hamlet,1600 amazed,1,hamlet,1600 brothel,1,hamlet,1600 feels,1,hamlet,1600 feather,1,hamlet,1600 inmost,1,hamlet,1600 stock,1,hamlet,1600 guards,1,hamlet,1600 reform,1,hamlet,1600 sadly,1,hamlet,1600 spies,1,hamlet,1600 ditchers,1,hamlet,1600 whirlwind,1,hamlet,1600 sole,1,hamlet,1600 favourite,1,hamlet,1600 sold,1,hamlet,1600 confusion,1,hamlet,1600 wrung,1,hamlet,1600 usurp'st,1,hamlet,1600 befall'n,1,hamlet,1600 combination,1,hamlet,1600 bearing,1,hamlet,1600 traduced,1,hamlet,1600 buffets,1,hamlet,1600 Carve,1,hamlet,1600 stream,1,hamlet,1600 backward,1,hamlet,1600 sanctuarize,1,hamlet,1600 constantly,1,hamlet,1600 highness,1,hamlet,1600 sorrows,1,hamlet,1600 maintains,1,hamlet,1600 pile,1,hamlet,1600 cuffs,1,hamlet,1600 prosperously,1,hamlet,1600 silver'd,1,hamlet,1600 Ecstasy,1,hamlet,1600 strutted,1,hamlet,1600 resolve,1,hamlet,1600 corner,1,hamlet,1600 dram,1,hamlet,1600 quintessence,1,hamlet,1600 POLONIUS',1,hamlet,1600 Dangerous,1,hamlet,1600 Confederate,1,hamlet,1600 broken,1,hamlet,1600 Cudgel,1,hamlet,1600 climatures,1,hamlet,1600 prettiness,1,hamlet,1600 Consent,1,hamlet,1600 thou'rt,1,hamlet,1600 drab,1,hamlet,1600 afterwards,1,hamlet,1600 overcome,1,hamlet,1600 Much,1,hamlet,1600 gaffs,1,hamlet,1600 habits,1,hamlet,1600 awry,1,hamlet,1600 Forward,1,hamlet,1600 function,1,hamlet,1600 revels,1,hamlet,1600 combated,1,hamlet,1600 budge,1,hamlet,1600 dejected,1,hamlet,1600 rosemary,1,hamlet,1600 upshot,1,hamlet,1600 necessaries,1,hamlet,1600 nasty,1,hamlet,1600 reechy,1,hamlet,1600 pursy,1,hamlet,1600 exclaim,1,hamlet,1600 spurns,1,hamlet,1600 policy,1,hamlet,1600 town,1,hamlet,1600 berattle,1,hamlet,1600 shadow's,1,hamlet,1600 knaves,1,hamlet,1600 soil,1,hamlet,1600 Grappling,1,hamlet,1600 bodykins,1,hamlet,1600 artless,1,hamlet,1600 paper,1,hamlet,1600 remiss,1,hamlet,1600 eclipse,1,hamlet,1600 collateral,1,hamlet,1600 finding,1,hamlet,1600 Eyes,1,hamlet,1600 sixteen,1,hamlet,1600 Cain's,1,hamlet,1600 deject,1,hamlet,1600 likeness,1,hamlet,1600 shrewdly,1,hamlet,1600 affectation,1,hamlet,1600 stalks,1,hamlet,1600 Methinks,1,hamlet,1600 richer,1,hamlet,1600 inventorially,1,hamlet,1600 screen'd,1,hamlet,1600 deprive,1,hamlet,1600 toys,1,hamlet,1600 target,1,hamlet,1600 Assume,1,hamlet,1600 bated,1,hamlet,1600 mourn'd,1,hamlet,1600 calamity,1,hamlet,1600 lesser,1,hamlet,1600 arithmetic,1,hamlet,1600 Thoughts,1,hamlet,1600 ingenious,1,hamlet,1600 asked,1,hamlet,1600 moving,1,hamlet,1600 discovers,1,hamlet,1600 unshaken,1,hamlet,1600 batten,1,hamlet,1600 demonstrated,1,hamlet,1600 companies,1,hamlet,1600 unholy,1,hamlet,1600 riotous,1,hamlet,1600 singeth,1,hamlet,1600 carnal,1,hamlet,1600 'As'es,1,hamlet,1600 impress,1,hamlet,1600 soaks,1,hamlet,1600 Perchance,1,hamlet,1600 discovery,1,hamlet,1600 deserve,1,hamlet,1600 she's,1,hamlet,1600 ocean,1,hamlet,1600 outface,1,hamlet,1600 betoken,1,hamlet,1600 OPHELIA's,1,hamlet,1600 weaker,1,hamlet,1600 hereafter,1,hamlet,1600 flashes,1,hamlet,1600 Revisit'st,1,hamlet,1600 acted,1,hamlet,1600 Winner,1,hamlet,1600 riband,1,hamlet,1600 I'd,1,hamlet,1600 swaddling,1,hamlet,1600 spheres,1,hamlet,1600 whatsoever,1,hamlet,1600 afflict,1,hamlet,1600 unpregnant,1,hamlet,1600 perdy,1,hamlet,1600 resolutes,1,hamlet,1600 Oft,1,hamlet,1600 speeches,1,hamlet,1600 mincing,1,hamlet,1600 conceive,1,hamlet,1600 conception,1,hamlet,1600 Phoebus',1,hamlet,1600 Addicted,1,hamlet,1600 splenitive,1,hamlet,1600 vial,1,hamlet,1600 pajock,1,hamlet,1600 clowns,1,hamlet,1600 Happily,1,hamlet,1600 Vienna,1,hamlet,1600 key,1,hamlet,1600 tenants,1,hamlet,1600 think'st,1,hamlet,1600 german,1,hamlet,1600 conjunctive,1,hamlet,1600 Lifts,1,hamlet,1600 bastard,1,hamlet,1600 containing,1,hamlet,1600 strewments,1,hamlet,1600 'A,1,hamlet,1600 portentous,1,hamlet,1600 wall,1,hamlet,1600 saying,1,hamlet,1600 virtuous,1,hamlet,1600 shrill,1,hamlet,1600 Buys,1,hamlet,1600 whipping,1,hamlet,1600 seals,1,hamlet,1600 wake,1,hamlet,1600 traveller,1,hamlet,1600 chronicles,1,hamlet,1600 society,1,hamlet,1600 touches,1,hamlet,1600 tithe,1,hamlet,1600 audit,1,hamlet,1600 chiefest,1,hamlet,1600 unsure,1,hamlet,1600 Gis,1,hamlet,1600 wedding,1,hamlet,1600 peevish,1,hamlet,1600 scorn,1,hamlet,1600 snatches,1,hamlet,1600 abused,1,hamlet,1600 livest,1,hamlet,1600 stealing,1,hamlet,1600 birds,1,hamlet,1600 convenience,1,hamlet,1600 Bear't,1,hamlet,1600 buyer,1,hamlet,1600 passeth,1,hamlet,1600 thunders,1,hamlet,1600 branches,1,hamlet,1600 satyr,1,hamlet,1600 pigeon,1,hamlet,1600 lesson,1,hamlet,1600 indiscretion,1,hamlet,1600 hearsed,1,hamlet,1600 Himself,1,hamlet,1600 windy,1,hamlet,1600 Pelion,1,hamlet,1600 summons,1,hamlet,1600 steps,1,hamlet,1600 uneffectual,1,hamlet,1600 wassail,1,hamlet,1600 Pole,1,hamlet,1600 bringing,1,hamlet,1600 erring,1,hamlet,1600 records,1,hamlet,1600 'a,1,hamlet,1600 raised,1,hamlet,1600 pictures,1,hamlet,1600 mantle,1,hamlet,1600 knotted,1,hamlet,1600 qualifies,1,hamlet,1600 followed,1,hamlet,1600 'O,1,hamlet,1600 where's,1,hamlet,1600 compelled,1,hamlet,1600 usual,1,hamlet,1600 larger,1,hamlet,1600 stern,1,hamlet,1600 wince,1,hamlet,1600 admittance,1,hamlet,1600 's,1,hamlet,1600 forthwith,1,hamlet,1600 imitated,1,hamlet,1600 Heavens,1,hamlet,1600 chap,1,hamlet,1600 deeply,1,hamlet,1600 study,1,hamlet,1600 beloved,1,hamlet,1600 pitiful,1,hamlet,1600 Devoutly,1,hamlet,1600 hatch'd,1,hamlet,1600 groans,1,hamlet,1600 Lucianus,1,hamlet,1600 Itself,1,hamlet,1600 barefoot,1,hamlet,1600 'take,1,hamlet,1600 drains,1,hamlet,1600 inhibition,1,hamlet,1600 relative,1,hamlet,1600 puppets,1,hamlet,1600 dally,1,hamlet,1600 offends,1,hamlet,1600 debatement,1,hamlet,1600 dearth,1,hamlet,1600 thin,1,hamlet,1600 play'd,1,hamlet,1600 rede,1,hamlet,1600 mining,1,hamlet,1600 nill,1,hamlet,1600 GHOST,1,hamlet,1600 timber'd,1,hamlet,1600 sere,1,hamlet,1600 bellow,1,hamlet,1600 suffered,1,hamlet,1600 Sweets,1,hamlet,1600 suck'd,1,hamlet,1600 sinners,1,hamlet,1600 stuck,1,hamlet,1600 abstract,1,hamlet,1600 loosed,1,hamlet,1600 declining,1,hamlet,1600 thieves,1,hamlet,1600 loneliness,1,hamlet,1600 coach,1,hamlet,1600 worst,1,hamlet,1600 mellow,1,hamlet,1600 rear,1,hamlet,1600 pester,1,hamlet,1600 Folded,1,hamlet,1600 Provincial,1,hamlet,1600 Resembles,1,hamlet,1600 hugger,1,hamlet,1600 grunt,1,hamlet,1600 skins,1,hamlet,1600 compound,1,hamlet,1600 passes,1,hamlet,1600 Rankly,1,hamlet,1600 shipwrights,1,hamlet,1600 tormenting,1,hamlet,1600 points,1,hamlet,1600 happen,1,hamlet,1600 fawning,1,hamlet,1600 monster,1,hamlet,1600 winks,1,hamlet,1600 roots,1,hamlet,1600 turf,1,hamlet,1600 afraid,1,hamlet,1600 Normandy,1,hamlet,1600 guarded,1,hamlet,1600 ancle,1,hamlet,1600 Officers,1,hamlet,1600 Deliberate,1,hamlet,1600 calumny,1,hamlet,1600 Tush,1,hamlet,1600 worlds,1,hamlet,1600 differences,1,hamlet,1600 seduce,1,hamlet,1600 repentance,1,hamlet,1600 document,1,hamlet,1600 Whereof,1,hamlet,1600 poisoning,1,hamlet,1600 proceeded,1,hamlet,1600 annexment,1,hamlet,1600 accepts,1,hamlet,1600 'Lord,1,hamlet,1600 Turk,1,hamlet,1600 dunks,1,hamlet,1600 poured,1,hamlet,1600 circumvent,1,hamlet,1600 draughts,1,hamlet,1600 reconcilement,1,hamlet,1600 combined,1,hamlet,1600 encounter'd,1,hamlet,1600 sledded,1,hamlet,1600 mixture,1,hamlet,1600 quake,1,hamlet,1600 Conjures,1,hamlet,1600 questionable,1,hamlet,1600 unnerved,1,hamlet,1600 envious,1,hamlet,1600 'seems,1,hamlet,1600 eldest,1,hamlet,1600 behoves,1,hamlet,1600 stung,1,hamlet,1600 instance,1,hamlet,1600 tennis,1,hamlet,1600 showers,1,hamlet,1600 associates,1,hamlet,1600 incorpsed,1,hamlet,1600 bout,1,hamlet,1600 worthy,1,hamlet,1600 pearl,1,hamlet,1600 liegemen,1,hamlet,1600 saw't,1,hamlet,1600 maimed,1,hamlet,1600 unkennel,1,hamlet,1600 sty,1,hamlet,1600 princes,1,hamlet,1600 didest,1,hamlet,1600 Whilst,1,hamlet,1600 King's,1,hamlet,1600 mouthed,1,hamlet,1600 model,1,hamlet,1600 humble,1,hamlet,1600 tush,1,hamlet,1600 speechless,1,hamlet,1600 overthrown,1,hamlet,1600 stubbornness,1,hamlet,1600 paragon,1,hamlet,1600 crier,1,hamlet,1600 Danskers,1,hamlet,1600 elder,1,hamlet,1600 Seeming,1,hamlet,1600 complete,1,hamlet,1600 droppings,1,hamlet,1600 clutch,1,hamlet,1600 fearful,1,hamlet,1600 bride,1,hamlet,1600 ominous,1,hamlet,1600 feel,1,hamlet,1600 bowl,1,hamlet,1600 thing's,1,hamlet,1600 punish,1,hamlet,1600 'scapes,1,hamlet,1600 recovery,1,hamlet,1600 noblest,1,hamlet,1600 offendendo,1,hamlet,1600 beaten,1,hamlet,1600 cleave,1,hamlet,1600 beggars',1,hamlet,1600 claim,1,hamlet,1600 swore,1,hamlet,1600 blind,1,hamlet,1600 impetuous,1,hamlet,1600 devotion's,1,hamlet,1600 comrade,1,hamlet,1600 gibes,1,hamlet,1600 suffering,1,hamlet,1600 ancient,1,hamlet,1600 crowner's,1,hamlet,1600 'Now,1,hamlet,1600 Whereto,1,hamlet,1600 Old,1,hamlet,1600 passion's,1,hamlet,1600 protestation,1,hamlet,1600 speaking,1,hamlet,1600 wine,1,hamlet,1600 Grating,1,hamlet,1600 wing,1,hamlet,1600 lion's,1,hamlet,1600 wishes,1,hamlet,1600 unbated,1,hamlet,1600 Bestow,1,hamlet,1600 conveniently,1,hamlet,1600 tax,1,hamlet,1600 bourn,1,hamlet,1600 cuckold,1,hamlet,1600 tragedians,1,hamlet,1600 soever,1,hamlet,1600 distempered,1,hamlet,1600 monarchs,1,hamlet,1600 rend,1,hamlet,1600 sphere,1,hamlet,1600 Stop,1,hamlet,1600 night's,1,hamlet,1600 usurp,1,hamlet,1600 agreeing,1,hamlet,1600 heaves,1,hamlet,1600 damnable,1,hamlet,1600 Advancing,1,hamlet,1600 steal,1,hamlet,1600 obsequious,1,hamlet,1600 strew'd,1,hamlet,1600 cellarage,1,hamlet,1600 astonish,1,hamlet,1600 access,1,hamlet,1600 Friend,1,hamlet,1600 bouts,1,hamlet,1600 'For,1,hamlet,1600 gaged,1,hamlet,1600 goose,1,hamlet,1600 ruin,1,hamlet,1600 poniards,1,hamlet,1600 Cousin,1,hamlet,1600 o'ertop,1,hamlet,1600 cerements,1,hamlet,1600 Nymph,1,hamlet,1600 croaking,1,hamlet,1600 importuned,1,hamlet,1600 seest,1,hamlet,1600 turned,1,hamlet,1600 scuffling,1,hamlet,1600 directly,1,hamlet,1600 Cyclops',1,hamlet,1600 thrown,1,hamlet,1600 accuse,1,hamlet,1600 portal,1,hamlet,1600 savageness,1,hamlet,1600 muddied,1,hamlet,1600 Unhand,1,hamlet,1600 pierce,1,hamlet,1600 ambassador,1,hamlet,1600 window,1,hamlet,1600 horrors,1,hamlet,1600 hatch,1,hamlet,1600 rebellion,1,hamlet,1600 parching,1,hamlet,1600 springes,1,hamlet,1600 ungracious,1,hamlet,1600 loins,1,hamlet,1600 wart,1,hamlet,1600 pretty,1,hamlet,1600 baked,1,hamlet,1600 crescent,1,hamlet,1600 falconers,1,hamlet,1600 barefaced,1,hamlet,1600 Lying,1,hamlet,1600 doubts,1,hamlet,1600 bone,1,hamlet,1600 rule,1,hamlet,1600 Burn,1,hamlet,1600 distress,1,hamlet,1600 conveyance,1,hamlet,1600 office,1,hamlet,1600 dealt,1,hamlet,1600 cannoneer,1,hamlet,1600 stirr'd,1,hamlet,1600 circumstances,1,hamlet,1600 steep,1,hamlet,1600 revel,1,hamlet,1600 fortified,1,hamlet,1600 Ladies,1,hamlet,1600 observe,1,hamlet,1600 infallibly,1,hamlet,1600 marrow,1,hamlet,1600 Termagant,1,hamlet,1600 party,1,hamlet,1600 praises,1,hamlet,1600 Whips,1,hamlet,1600 tent,1,hamlet,1600 salary,1,hamlet,1600 objects,1,hamlet,1600 healthful,1,hamlet,1600 cautel,1,hamlet,1600 bewept,1,hamlet,1600 project,1,hamlet,1600 aspect,1,hamlet,1600 cunnings,1,hamlet,1600 enlarged,1,hamlet,1600 knowledge,1,hamlet,1600 Faith,1,hamlet,1600 Deprived,1,hamlet,1600 romage,1,hamlet,1600 pastors,1,hamlet,1600 aim'd,1,hamlet,1600 rhapsody,1,hamlet,1600 life's,1,hamlet,1600 merriment,1,hamlet,1600 marriages,1,hamlet,1600 I',1,hamlet,1600 define,1,hamlet,1600 Discomfort,1,hamlet,1600 'But,1,hamlet,1600 Damon,1,hamlet,1600 o'ertook,1,hamlet,1600 statutes,1,hamlet,1600 unkind,1,hamlet,1600 Taken,1,hamlet,1600 buzzers,1,hamlet,1600 commended,1,hamlet,1600 steward,1,hamlet,1600 precisely,1,hamlet,1600 hap,1,hamlet,1600 drinking,1,hamlet,1600 Priam's,1,hamlet,1600 baker's,1,hamlet,1600 rusty,1,hamlet,1600 unyoke,1,hamlet,1600 trippingly,1,hamlet,1600 snuff,1,hamlet,1600 While,1,hamlet,1600 crack,1,hamlet,1600 sift,1,hamlet,1600 precurse,1,hamlet,1600 Belike,1,hamlet,1600 utter,1,hamlet,1600 horseback,1,hamlet,1600 offend,1,hamlet,1600 distinguish,1,hamlet,1600 Stabs,1,hamlet,1600 religious,1,hamlet,1600 foresaid,1,hamlet,1600 resemble,1,hamlet,1600 invulnerable,1,hamlet,1600 pulse,1,hamlet,1600 Possess,1,hamlet,1600 mutine,1,hamlet,1600 pat,1,hamlet,1600 controversy,1,hamlet,1600 altogether,1,hamlet,1600 showing,1,hamlet,1600 packing,1,hamlet,1600 stubborn,1,hamlet,1600 'Anon,1,hamlet,1600 recognizances,1,hamlet,1600 pah,1,hamlet,1600 depend,1,hamlet,1600 Walks,1,hamlet,1600 Looks,1,hamlet,1600 chariest,1,hamlet,1600 bawdry,1,hamlet,1600 transformation,1,hamlet,1600 eastward,1,hamlet,1600 Hic,1,hamlet,1600 forgone,1,hamlet,1600 box,1,hamlet,1600 pendent,1,hamlet,1600 Finger'd,1,hamlet,1600 loath,1,hamlet,1600 Whiles,1,hamlet,1600 Stick,1,hamlet,1600 Becomes,1,hamlet,1600 dragg'd,1,hamlet,1600 govern,1,hamlet,1600 deeds,1,hamlet,1600 sequent,1,hamlet,1600 Treason,1,hamlet,1600 vigour,1,hamlet,1600 Those,1,hamlet,1600 distilled,1,hamlet,1600 woundless,1,hamlet,1600 beggar'd,1,hamlet,1600 retirement,1,hamlet,1600 hew,1,hamlet,1600 assault,1,hamlet,1600 trick'd,1,hamlet,1600 Having,1,hamlet,1600 spots,1,hamlet,1600 ban,1,hamlet,1600 Play,1,hamlet,1600 Drink,1,hamlet,1600 maids',1,hamlet,1600 unmanly,1,hamlet,1600 hopes,1,hamlet,1600 'Thine,1,hamlet,1600 By'r,1,hamlet,1600 flats,1,hamlet,1600 Nature,1,hamlet,1600 inclined,1,hamlet,1600 harlot,1,hamlet,1600 siege,1,hamlet,1600 hoped,1,hamlet,1600 cockle,1,hamlet,1600 bat,1,hamlet,1600 razed,1,hamlet,1600 bar,1,hamlet,1600 eale,1,hamlet,1600 gratis,1,hamlet,1600 coted,1,hamlet,1600 eternity,1,hamlet,1600 ladyship,1,hamlet,1600 musty,1,hamlet,1600 orbed,1,hamlet,1600 vanquisher,1,hamlet,1600 Unmix'd,1,hamlet,1600 denies,1,hamlet,1600 porches,1,hamlet,1600 greatly,1,hamlet,1600 belike,1,hamlet,1600 Answer,1,hamlet,1600 exceed,1,hamlet,1600 quaintly,1,hamlet,1600 denied,1,hamlet,1600 brings,1,hamlet,1600 fantastic,1,hamlet,1600 dreaded,1,hamlet,1600 house's,1,hamlet,1600 Hey,1,hamlet,1600 pitied,1,hamlet,1600 diligence,1,hamlet,1600 compulsatory,1,hamlet,1600 props,1,hamlet,1600 closely,1,hamlet,1600 encompassment,1,hamlet,1600 innocent,1,hamlet,1600 thews,1,hamlet,1600 skyish,1,hamlet,1600 changed,1,hamlet,1600 Letters,1,hamlet,1600 remainder,1,hamlet,1600 conjoin'd,1,hamlet,1600 exact,1,hamlet,1600 illume,1,hamlet,1600 Exposing,1,hamlet,1600 ply,1,hamlet,1600 medicine,1,hamlet,1600 especial,1,hamlet,1600 delver,1,hamlet,1600 botch,1,hamlet,1600 carbuncles,1,hamlet,1600 sovereignty,1,hamlet,1600 Custom,1,hamlet,1600 ills,1,hamlet,1600 blest,1,hamlet,1600 bet,1,hamlet,1600 owner,1,hamlet,1600 ulcer,1,hamlet,1600 husbands,1,hamlet,1600 surely,1,hamlet,1600 bevy,1,hamlet,1600 deserved,1,hamlet,1600 gambols,1,hamlet,1600 Tellus',1,hamlet,1600 incontinency,1,hamlet,1600 o'erhear,1,hamlet,1600 considered,1,hamlet,1600 politician,1,hamlet,1600 sheeted,1,hamlet,1600 contracted,1,hamlet,1600 arrest,1,hamlet,1600 fatted,1,hamlet,1600 path,1,hamlet,1600 thirties,1,hamlet,1600 east,1,hamlet,1600 innovation,1,hamlet,1600 revenue,1,hamlet,1600 conqueror,1,hamlet,1600 investments,1,hamlet,1600 annual,1,hamlet,1600 applaud,1,hamlet,1600 'would',1,hamlet,1600 mermaid,1,hamlet,1600 abhorred,1,hamlet,1600 nave,1,hamlet,1600 hides,1,hamlet,1600 cracks,1,hamlet,1600 treachery,1,hamlet,1600 Has,1,hamlet,1600 littlest,1,hamlet,1600 Almost,1,hamlet,1600 changes,1,hamlet,1600 covenant,1,hamlet,1600 pox,1,hamlet,1600 nobility,1,hamlet,1600 heroes,1,hamlet,1600 exterior,1,hamlet,1600 malefactions,1,hamlet,1600 strew,1,hamlet,1600 countries,1,hamlet,1600 VI,1,hamlet,1600 yourselves,1,hamlet,1600 Divided,1,hamlet,1600 tumbled,1,hamlet,1600 monstrous,1,hamlet,1600 Rising,1,hamlet,1600 Lights,1,hamlet,1600 herods,1,hamlet,1600 outlive,1,hamlet,1600 heads,1,hamlet,1600 churches,1,hamlet,1600 Seems,1,hamlet,1600 became,1,hamlet,1600 groaning,1,hamlet,1600 temple,1,hamlet,1600 corrupted,1,hamlet,1600 thereunto,1,hamlet,1600 nick,1,hamlet,1600 incest,1,hamlet,1600 changeling,1,hamlet,1600 wringing,1,hamlet,1600 bung,1,hamlet,1600 ulcerous,1,hamlet,1600 anchor's,1,hamlet,1600 devices,1,hamlet,1600 Retires,1,hamlet,1600 courteous,1,hamlet,1600 Forgive,1,hamlet,1600 theft,1,hamlet,1600 extinct,1,hamlet,1600 whore,1,hamlet,1600 Fordo,1,hamlet,1600 unequal,1,hamlet,1600 haunt,1,hamlet,1600 moons,1,hamlet,1600 eterne,1,hamlet,1600 gold,1,hamlet,1600 crawling,1,hamlet,1600 springe,1,hamlet,1600 drunkards,1,hamlet,1600 weed,1,hamlet,1600 coinage,1,hamlet,1600 sith,1,hamlet,1600 reckless,1,hamlet,1600 writers,1,hamlet,1600 unworthiest,1,hamlet,1600 week,1,hamlet,1600 behaved,1,hamlet,1600 handsaw,1,hamlet,1600 busy,1,hamlet,1600 metal,1,hamlet,1600 preserved,1,hamlet,1600 abatements,1,hamlet,1600 incorrect,1,hamlet,1600 crash,1,hamlet,1600 imagine,1,hamlet,1600 belief,1,hamlet,1600 perdition,1,hamlet,1600 Sits,1,hamlet,1600 whereat,1,hamlet,1600 bestowed,1,hamlet,1600 Mutes,1,hamlet,1600 Writing,1,hamlet,1600 but',1,hamlet,1600 scholar's,1,hamlet,1600 infusion,1,hamlet,1600 witching,1,hamlet,1600 burn,1,hamlet,1600 sorts,1,hamlet,1600 crust,1,hamlet,1600 immediately,1,hamlet,1600 canon,1,hamlet,1600 presentment,1,hamlet,1600 breathing,1,hamlet,1600 Ungarter'd,1,hamlet,1600 repulsed,1,hamlet,1600 harping,1,hamlet,1600 Sense,1,hamlet,1600 petition,1,hamlet,1600 desirous,1,hamlet,1600 meats,1,hamlet,1600 'tween,1,hamlet,1600 shepherds,1,hamlet,1600 oppressor's,1,hamlet,1600 yon,1,hamlet,1600 couch,1,hamlet,1600 Sirs,1,hamlet,1600 weal,1,hamlet,1600 somewhat,1,hamlet,1600 douts,1,hamlet,1600 parle,1,hamlet,1600 imperial,1,hamlet,1600 Life,1,hamlet,1600 people,1,hamlet,1600 Valentine,1,hamlet,1600 bugs,1,hamlet,1600 sustain,1,hamlet,1600 inexplicable,1,hamlet,1600 gum,1,hamlet,1600 perilous,1,hamlet,1600 fifty,1,hamlet,1600 gape,1,hamlet,1600 Sundays,1,hamlet,1600 mainly,1,hamlet,1600 disclose,1,hamlet,1600 wiseness,1,hamlet,1600 waving,1,hamlet,1600 captains,1,hamlet,1600 sepulchre,1,hamlet,1600 gore,1,hamlet,1600 backed,1,hamlet,1600 Drawing,1,hamlet,1600 tickled,1,hamlet,1600 overcame,1,hamlet,1600 bended,1,hamlet,1600 suddenly,1,hamlet,1600 prating,1,hamlet,1600 Dared,1,hamlet,1600 antic,1,hamlet,1600 probation,1,hamlet,1600 prick'd,1,hamlet,1600 bulwark,1,hamlet,1600 Didst,1,hamlet,1600 Conscience,1,hamlet,1600 eaten,1,hamlet,1600 Stoops,1,hamlet,1600 artery,1,hamlet,1600 Rapier,1,hamlet,1600 LAERTES',1,hamlet,1600 Roughly,1,hamlet,1600 unweeded,1,hamlet,1600 Holds,1,hamlet,1600 royally,1,hamlet,1600 conquest,1,hamlet,1600 conjuration,1,hamlet,1600 verity,1,hamlet,1600 curse,1,hamlet,1600 beget,1,hamlet,1600 despite,1,hamlet,1600 nettles,1,hamlet,1600 scann'd,1,hamlet,1600 extravagant,1,hamlet,1600 mystery,1,hamlet,1600 moods,1,hamlet,1600 buz,1,hamlet,1600 buy,1,hamlet,1600 fathoms,1,hamlet,1600 hilts,1,hamlet,1600 bloat,1,hamlet,1600 vacancy,1,hamlet,1600 beer,1,hamlet,1600 gown,1,hamlet,1600 Meet,1,hamlet,1600 divine,1,hamlet,1600 sins,1,hamlet,1600 longed,1,hamlet,1600 paint,1,hamlet,1600 dismantled,1,hamlet,1600 savoury,1,hamlet,1600 beds,1,hamlet,1600 insinuation,1,hamlet,1600 sister's,1,hamlet,1600 hourly,1,hamlet,1600 adheres,1,hamlet,1600 Unsifted,1,hamlet,1600 Masters,1,hamlet,1600 ashamed,1,hamlet,1600 turns,1,hamlet,1600 grandsire,1,hamlet,1600 shrouding,1,hamlet,1600 crowner,1,hamlet,1600 orderly,1,hamlet,1600 immortal,1,hamlet,1600 resort,1,hamlet,1600 pin's,1,hamlet,1600 Madness,1,hamlet,1600 hurts,1,hamlet,1600 university,1,hamlet,1600 crowns,1,hamlet,1600 Pinch,1,hamlet,1600 afoot,1,hamlet,1600 garb,1,hamlet,1600 inheritance,1,hamlet,1600 warrantise,1,hamlet,1600 'se,1,hamlet,1600 rivet,1,hamlet,1600 jointly,1,hamlet,1600 hoops,1,hamlet,1600 river,1,hamlet,1600 bisson,1,hamlet,1600 dogs,1,hamlet,1600 escoted,1,hamlet,1600 slave's,1,hamlet,1600 noted,1,hamlet,1600 Forth,1,hamlet,1600 stooping,1,hamlet,1600 storm,1,hamlet,1600 taints,1,hamlet,1600 raught,1,hamlet,1600 mallecho,1,hamlet,1600 flourishes,1,hamlet,1600 curls,1,hamlet,1600 departed,1,hamlet,1600 virgin,1,hamlet,1600 prophetic,1,hamlet,1600 deer,1,hamlet,1600 modesties,1,hamlet,1600 mood,1,hamlet,1600 credent,1,hamlet,1600 Cannot,1,hamlet,1600 breast,1,hamlet,1600 magic,1,hamlet,1600 Fortune,1,hamlet,1600 aim,1,hamlet,1600 Holla,1,hamlet,1600 Methought,1,hamlet,1600 solidity,1,hamlet,1600 retain,1,hamlet,1600 Purpose,1,hamlet,1600 beck,1,hamlet,1600 Everlasting,1,hamlet,1600 flagon,1,hamlet,1600 Devised,1,hamlet,1600 yea,1,hamlet,1600 tyrant,1,hamlet,1600 exercises,1,hamlet,1600 aid,1,hamlet,1600 claw'd,1,hamlet,1600 instances,1,hamlet,1600 hypocrites,1,hamlet,1600 individable,1,hamlet,1600 fencing,1,hamlet,1600 battery,1,hamlet,1600 sheen,1,hamlet,1600 carrion,1,hamlet,1600 sheep,1,hamlet,1600 cracked,1,hamlet,1600 Part,1,hamlet,1600 painting,1,hamlet,1600 sheet,1,hamlet,1600 milch,1,hamlet,1600 debt,1,hamlet,1600 promontory,1,hamlet,1600 wreck,1,hamlet,1600 'Adieu,1,hamlet,1600 Making,1,hamlet,1600 unfledged,1,hamlet,1600 murderous,1,hamlet,1600 praying,1,hamlet,1600 beam,1,hamlet,1600 legs,1,hamlet,1600 et,1,hamlet,1600 notes,1,hamlet,1600 handsome,1,hamlet,1600 ago,1,hamlet,1600 napkin,1,hamlet,1600 Unless,1,hamlet,1600 harbingers,1,hamlet,1600 whereon,1,hamlet,1600 Beggar,1,hamlet,1600 plays,1,hamlet,1600 deal,1,hamlet,1600 depends,1,hamlet,1600 radiant,1,hamlet,1600 priest,1,hamlet,1600 frock,1,hamlet,1600 'Fore,1,hamlet,1600 Pays,1,hamlet,1600 Sprinkle,1,hamlet,1600 slaughters,1,hamlet,1600 rhymed,1,hamlet,1600 interim,1,hamlet,1600 Besides,1,hamlet,1600 continual,1,hamlet,1600 makers,1,hamlet,1600 eloquent,1,hamlet,1600 stain'd,1,hamlet,1600 lighted,1,hamlet,1600 imperfections,1,hamlet,1600 declension,1,hamlet,1600 waist,1,hamlet,1600 touch'd,1,hamlet,1600 stockings,1,hamlet,1600 affrighted,1,hamlet,1600 lady's,1,hamlet,1600 Hyperion's,1,hamlet,1600 turn'st,1,hamlet,1600 waits,1,hamlet,1600 attractive,1,hamlet,1600 clemency,1,hamlet,1600 Rest,1,hamlet,1600 paintings,1,hamlet,1600 List,1,hamlet,1600 by'r,1,hamlet,1600 trophy,1,hamlet,1600 houses,1,hamlet,1600 Directly,1,hamlet,1600 crab,1,hamlet,1600 stages,1,hamlet,1600 uncharge,1,hamlet,1600 gentlewoman,1,hamlet,1600 possess'd,1,hamlet,1600 yaw,1,hamlet,1600 reckon,1,hamlet,1600 quarry,1,hamlet,1600 slips,1,hamlet,1600 mazzard,1,hamlet,1600 smear'd,1,hamlet,1600 edified,1,hamlet,1600 manner,1,hamlet,1600 observant,1,hamlet,1600 tyrannically,1,hamlet,1600 newly,1,hamlet,1600 bless'd,1,hamlet,1600 sheepskins,1,hamlet,1600 Plucks,1,hamlet,1600 forgotten,1,hamlet,1600 doom,1,hamlet,1600 realm,1,hamlet,1600 button,1,hamlet,1600 tinct,1,hamlet,1600 know't,1,hamlet,1600 cliff,1,hamlet,1600 board,1,hamlet,1600 threaten,1,hamlet,1600 pe,1,hamlet,1600 Niggard,1,hamlet,1600 mows,1,hamlet,1600 rain'd,1,hamlet,1600 overpeering,1,hamlet,1600 bites,1,hamlet,1600 delay,1,hamlet,1600 labourer,1,hamlet,1600 comment,1,hamlet,1600 demi,1,hamlet,1600 small,1,hamlet,1600 sleeper's,1,hamlet,1600 dicers',1,hamlet,1600 Absent,1,hamlet,1600 necessity,1,hamlet,1600 Polacks,1,hamlet,1600 aside,1,hamlet,1600 halfpenny,1,hamlet,1600 shipped,1,hamlet,1600 mote,1,hamlet,1600 gambol,1,hamlet,1600 Italian,1,hamlet,1600 acres,1,hamlet,1600 outrageous,1,hamlet,1600 wrinkled,1,hamlet,1600 whereof,1,hamlet,1600 Fortune's,1,hamlet,1600 collected,1,hamlet,1600 beautified,1,hamlet,1600 consonancy,1,hamlet,1600 tether,1,hamlet,1600 account,1,hamlet,1600 auspicious,1,hamlet,1600 milky,1,hamlet,1600 scholar,1,hamlet,1600 reveal,1,hamlet,1600 Infects,1,hamlet,1600 gyved,1,hamlet,1600 unanel'd,1,hamlet,1600 'twould,1,hamlet,1600 enmity,1,hamlet,1600 Begin,1,hamlet,1600 'alone,1,hamlet,1600 lover,1,hamlet,1600 gyves,1,hamlet,1600 expostulate,1,hamlet,1600 Seneca,1,hamlet,1600 offences,1,hamlet,1600 find'st,1,hamlet,1600 warms,1,hamlet,1600 'man,1,hamlet,1600 stoup,1,hamlet,1600 offer'd,1,hamlet,1600 endure,1,hamlet,1600 la,1,hamlet,1600 'gins,1,hamlet,1600 challenger,1,hamlet,1600 abominably,1,hamlet,1600 sucked,1,hamlet,1600 loss,1,hamlet,1600 Wouldst,1,hamlet,1600 moor,1,hamlet,1600 commands,1,hamlet,1600 HAMLET's,1,hamlet,1600 mope,1,hamlet,1600 overlooked,1,hamlet,1600 spent,1,hamlet,1600 Grief,1,hamlet,1600 Colleagued,1,hamlet,1600 crib,1,hamlet,1600 afternoon,1,hamlet,1600 quoted,1,hamlet,1600 weakest,1,hamlet,1600 dole,1,hamlet,1600 apparel,1,hamlet,1600 spend,1,hamlet,1600 squeak,1,hamlet,1600 blue,1,hamlet,1600 violet,1,hamlet,1600 defy,1,hamlet,1600 removed,1,hamlet,1600 feats,1,hamlet,1600 beauteous,1,hamlet,1600 smart,1,hamlet,1600 adventurous,1,hamlet,1600 betime,1,hamlet,1600 natured,1,hamlet,1600 'HAMLET,1,hamlet,1600 swaggering,1,hamlet,1600 Rashly,1,hamlet,1600 haps,1,hamlet,1600 westward,1,hamlet,1600 inoculate,1,hamlet,1600 hebenon,1,hamlet,1600 serious,1,hamlet,1600 knee,1,hamlet,1600 dulls,1,hamlet,1600 composed,1,hamlet,1600 plastering,1,hamlet,1600 gardeners,1,hamlet,1600 jocund,1,hamlet,1600 untimely,1,hamlet,1600 withered,1,hamlet,1600 loan,1,hamlet,1600 nighted,1,hamlet,1600 acquaint,1,hamlet,1600 reads,1,hamlet,1600 natures,1,hamlet,1600 load,1,hamlet,1600 Came,1,hamlet,1600 events,1,hamlet,1600 hardly,1,hamlet,1600 valour,1,hamlet,1600 desk,1,hamlet,1600 eats,1,hamlet,1600 hart,1,hamlet,1600 Haply,1,hamlet,1600 winnowed,1,hamlet,1600 havoc,1,hamlet,1600 plot,1,hamlet,1600 lapsed,1,hamlet,1600 oppression,1,hamlet,1600 humourous,1,hamlet,1600 personal,1,hamlet,1600 fierce,1,hamlet,1600 denote,1,hamlet,1600 accounted,1,hamlet,1600 Thought,1,hamlet,1600 ability,1,hamlet,1600 grained,1,hamlet,1600 Contagion,1,hamlet,1600 unmannerly,1,hamlet,1600 front,1,hamlet,1600 ambiguous,1,hamlet,1600 field,1,hamlet,1600 frighted,1,hamlet,1600 enterprises,1,hamlet,1600 wards,1,hamlet,1600 remember'd,1,hamlet,1600 soldier's,1,hamlet,1600 brokers,1,hamlet,1600 aye,1,hamlet,1600 sipping,1,hamlet,1600 frown'd,1,hamlet,1600 hue,1,hamlet,1600 frost,1,hamlet,1600 undiscover'd,1,hamlet,1600 crow,1,hamlet,1600 messenger,1,hamlet,1600 adders,1,hamlet,1600 Lamond,1,hamlet,1600 miching,1,hamlet,1600 kingly,1,hamlet,1600 quarter'd,1,hamlet,1600 verse,1,hamlet,1600 impression,1,hamlet,1600 indued,1,hamlet,1600 Call,1,hamlet,1600 disjoint,1,hamlet,1600 helpful,1,hamlet,1600 weedy,1,hamlet,1600 pall,1,hamlet,1600 joyfully,1,hamlet,1600 eisel,1,hamlet,1600 wormwood,1,hamlet,1600 Read,1,hamlet,1600 spur,1,hamlet,1600 see't,1,hamlet,1600 Happy,1,hamlet,1600 call'd,1,hamlet,1600 treads,1,hamlet,1600 interpret,1,hamlet,1600 expend,1,hamlet,1600 Trumpets,1,hamlet,1600 strings,1,hamlet,1600 Beware,1,hamlet,1600 t',1,hamlet,1600 Pluck,1,hamlet,1600 Worm's,1,hamlet,1600 reach,1,hamlet,1600 shut,1,hamlet,1600 envenom,1,hamlet,1600 Full,1,hamlet,1600 crants,1,hamlet,1600 hams,1,hamlet,1600 forts,1,hamlet,1600 accurst,1,hamlet,1600 accord,1,hamlet,1600 purgation,1,hamlet,1600 knocking,1,hamlet,1600 school,1,hamlet,1600 remembrances,1,hamlet,1600 provided,1,hamlet,1600 halt,1,hamlet,1600 wisdoms,1,hamlet,1600 marching,1,hamlet,1600 potency,1,hamlet,1600 test,1,hamlet,1600 excuse,1,hamlet,1600 Hum,1,hamlet,1600 acquaintance,1,hamlet,1600 ponderous,1,hamlet,1600 smoothness,1,hamlet,1600 commendable,1,hamlet,1600 midnight,1,hamlet,1600 deaths,1,hamlet,1600 She's,1,hamlet,1600 mettled,1,hamlet,1600 shelf,1,hamlet,1600 rashness,1,hamlet,1600 oped,1,hamlet,1600 occasions,1,hamlet,1600 weeps,1,hamlet,1600 Couch,1,hamlet,1600 slings,1,hamlet,1600 yawn,1,hamlet,1600 nightly,1,hamlet,1600 plum,1,hamlet,1600 hawk,1,hamlet,1600 purged,1,hamlet,1600 aslant,1,hamlet,1600 impatient,1,hamlet,1600 cozenage,1,hamlet,1600 fatness,1,hamlet,1600 hatchment,1,hamlet,1600 Repast,1,hamlet,1600 straws,1,hamlet,1600 dominions,1,hamlet,1600 shent,1,hamlet,1600 neglect,1,hamlet,1600 pain,1,hamlet,1600 'Horatio,1,hamlet,1600 bloodily,1,hamlet,1600 stranger,1,hamlet,1600 stricken,1,hamlet,1600 paid,1,hamlet,1600 signet,1,hamlet,1600 Puts,1,hamlet,1600 soe'er,1,hamlet,1600 Tender,1,hamlet,1600 acquire,1,hamlet,1600 delve,1,hamlet,1600 apiece,1,hamlet,1600 footed,1,hamlet,1600 orisons,1,hamlet,1600 suspiration,1,hamlet,1600 goblin,1,hamlet,1600 outbreak,1,hamlet,1600 devise,1,hamlet,1600 stones,1,hamlet,1600 hate,1,hamlet,1600 arrests,1,hamlet,1600 determination,1,hamlet,1600 dipping,1,hamlet,1600 fear'd,1,hamlet,1600 solicitings,1,hamlet,1600 dismay,1,hamlet,1600 laboursome,1,hamlet,1600 robustious,1,hamlet,1600 combat,1,hamlet,1600 bespeak,1,hamlet,1600 winking,1,hamlet,1600 shoe,1,hamlet,1600 sliver,1,hamlet,1600 netted,1,hamlet,1600 lovingly,1,hamlet,1600 fall'n,1,hamlet,1600 sandal,1,hamlet,1600 Hymen,1,hamlet,1600 moan,1,hamlet,1600 flatter'd,1,hamlet,1600 prolongs,1,hamlet,1600 duke's,1,hamlet,1600 gaudy,1,hamlet,1600 chapless,1,hamlet,1600 prepared,1,hamlet,1600 Hazard,1,hamlet,1600 courses,1,hamlet,1600 yard,1,hamlet,1600 object,1,hamlet,1600 Caps,1,hamlet,1600 push,1,hamlet,1600 stowed,1,hamlet,1600 accidents,1,hamlet,1600 girl,1,hamlet,1600 dews,1,hamlet,1600 scarcely,1,hamlet,1600 monument,1,hamlet,1600 inurn'd,1,hamlet,1600 o'erhasty,1,hamlet,1600 juggled,1,hamlet,1600 beards,1,hamlet,1600 mayst,1,hamlet,1600 'mobled,1,hamlet,1600 folk,1,hamlet,1600 fold,1,hamlet,1600 conclusions,1,hamlet,1600 White,1,hamlet,1600 Robin,1,hamlet,1600 Hast,1,hamlet,1600 jester,1,hamlet,1600 Thaw,1,hamlet,1600 open'd,1,hamlet,1600 shatter,1,hamlet,1600 Arm,1,hamlet,1600 beggars,1,hamlet,1600 furnish,1,hamlet,1600 knock,1,hamlet,1600 havior,1,hamlet,1600 battalions,1,hamlet,1600 boughs,1,hamlet,1600 unprevailing,1,hamlet,1600 bought,1,hamlet,1600 Wretched,1,hamlet,1600 purchases,1,hamlet,1600 inquire,1,hamlet,1600 prate,1,hamlet,1600 preparations,1,hamlet,1600 Among,1,hamlet,1600 crook,1,hamlet,1600 o'erdoing,1,hamlet,1600 convocation,1,hamlet,1600 sequel,1,hamlet,1600 partial,1,hamlet,1600 Hark,1,hamlet,1600 paradox,1,hamlet,1600 shuffled,1,hamlet,1600 grinning,1,hamlet,1600 smells,1,hamlet,1600 Sport,1,hamlet,1600 ministers,1,hamlet,1600 Carrying,1,hamlet,1600 array,1,hamlet,1600 Unhousel'd,1,hamlet,1600 diction,1,hamlet,1600 Richer,1,hamlet,1600 commingled,1,hamlet,1600 commerce,1,hamlet,1600 porpentine,1,hamlet,1600 conversation,1,hamlet,1600 demanded,1,hamlet,1600 Baptista,1,hamlet,1600 rivals,1,hamlet,1600 Stood,1,hamlet,1600 essentially,1,hamlet,1600 beetles,1,hamlet,1600 Art,1,hamlet,1600 strongest,1,hamlet,1600 howling,1,hamlet,1600 having,1,hamlet,1600 liver'd,1,hamlet,1600 jaws,1,hamlet,1600 superfluous,1,hamlet,1600 compact,1,hamlet,1600 height,1,hamlet,1600 nobler,1,hamlet,1600 witch,1,hamlet,1600 fay,1,hamlet,1600 nods,1,hamlet,1600 comma,1,hamlet,1600 yesterday,1,hamlet,1600 Shows,1,hamlet,1600 calves,1,hamlet,1600 lean,1,hamlet,1600 roof,1,hamlet,1600 procession,1,hamlet,1600 Comes,1,hamlet,1600 rood,1,hamlet,1600 quickness,1,hamlet,1600 tediousness,1,hamlet,1600 justice,1,hamlet,1600 behove,1,hamlet,1600 whispers,1,hamlet,1600 distant,1,hamlet,1600 thereabout,1,hamlet,1600 palmy,1,hamlet,1600 tried,1,hamlet,1600 tarre,1,hamlet,1600 perceived,1,hamlet,1600 Collected,1,hamlet,1600 breathes,1,hamlet,1600 garments,1,hamlet,1600 scullion,1,hamlet,1600 beteem,1,hamlet,1600 bubbles,1,hamlet,1600 grizzled,1,hamlet,1600 trappings,1,hamlet,1600 moved,1,hamlet,1600 freeze,1,hamlet,1600 shameful,1,hamlet,1600 appal,1,hamlet,1600 consider'd,1,hamlet,1600 outlives,1,hamlet,1600 Pours,1,hamlet,1600 Drabbing,1,hamlet,1600 daisy,1,hamlet,1600 rant,1,hamlet,1600 carried,1,hamlet,1600 Keeps,1,hamlet,1600 honey,1,hamlet,1600 scant,1,hamlet,1600 'Thus,1,hamlet,1600 errors,1,hamlet,1600 puzzles,1,hamlet,1600 carries,1,hamlet,1600 empty,1,hamlet,1600 Safely,1,hamlet,1600 tokens,1,hamlet,1600 schoolfellows,1,hamlet,1600 shrunk,1,hamlet,1600 nations,1,hamlet,1600 griefs,1,hamlet,1600 blackest,1,hamlet,1600 mischief,1,hamlet,1600 guiltless,1,hamlet,1600 bravery,1,hamlet,1600 lender,1,hamlet,1600 clamour,1,hamlet,1600 weighing,1,hamlet,1600 faction,1,hamlet,1600 queen',1,hamlet,1600 build,1,hamlet,1600 Switzers,1,hamlet,1600 distance,1,hamlet,1600 express'd,1,hamlet,1600 fiction,1,hamlet,1600 protests,1,hamlet,1600 built,1,hamlet,1600 wilfully,1,hamlet,1600 imponed,1,hamlet,1600 incapable,1,hamlet,1600 'Gainst,1,hamlet,1600 assays,1,hamlet,1600 repose,1,hamlet,1600 pressures,1,hamlet,1600 garrison'd,1,hamlet,1600 Claudio,1,hamlet,1600 primal,1,hamlet,1600 Else,1,hamlet,1600 Half,1,hamlet,1600 Hecate's,1,hamlet,1600 proverb,1,hamlet,1600 lack'd,1,hamlet,1600 'High,1,hamlet,1600 rare,1,hamlet,1600 defeats,1,hamlet,1600 obscure,1,hamlet,1600 hire,1,hamlet,1600 faculties,1,hamlet,1600 pray'st,1,hamlet,1600 beats,1,hamlet,1600 restore,1,hamlet,1600 locks,1,hamlet,1600 pated,1,hamlet,1600 gently,1,hamlet,1600 acting,1,hamlet,1600 posset,1,hamlet,1600 alleys,1,hamlet,1600 bodiless,1,hamlet,1600 lenten,1,hamlet,1600 knew'st,1,hamlet,1600 shaking,1,hamlet,1600 paddock,1,hamlet,1600 pales,1,hamlet,1600 exhort,1,hamlet,1600 conceited,1,hamlet,1600 Sprung,1,hamlet,1600 Flourish,1,hamlet,1600 Aroused,1,hamlet,1600 Was't,1,hamlet,1600 capons,1,hamlet,1600 indifferently,1,hamlet,1600 'Thou,1,hamlet,1600 vapours,1,hamlet,1600 ducat,1,hamlet,1600 givers,1,hamlet,1600 conveyances,1,hamlet,1600 perusal,1,hamlet,1600 temperance,1,hamlet,1600 daily,1,hamlet,1600 luxury,1,hamlet,1600 omen,1,hamlet,1600 remedy,1,hamlet,1600 brazen,1,hamlet,1600 bears,1,hamlet,1600 clothe,1,hamlet,1600 glean,1,hamlet,1600 Pursued,1,hamlet,1600 wildness,1,hamlet,1600 companions,1,hamlet,1600 hasten,1,hamlet,1600 'Naked,1,hamlet,1600 Sleeps,1,hamlet,1600 'As,1,hamlet,1600 Christians,1,hamlet,1600 observed,1,hamlet,1600 'beautified',1,hamlet,1600 nonce,1,hamlet,1600 sirrah,1,hamlet,1600 extant,1,hamlet,1600 meditation,1,hamlet,1600 hies,1,hamlet,1600 Love,1,hamlet,1600 mugger,1,hamlet,1600 Mars's,1,hamlet,1600 Groped,1,hamlet,1600 wandering,1,hamlet,1600 chase,1,hamlet,1600 lingers,1,hamlet,1600 unimproved,1,hamlet,1600 unlimited,1,hamlet,1600 likelihood,1,hamlet,1600 Lethe,1,hamlet,1600 Striking,1,hamlet,1600 Thick,1,hamlet,1600 Spurns,1,hamlet,1600 Sit,1,hamlet,1600 learning,1,hamlet,1600 admit,1,hamlet,1600 charm,1,hamlet,1600 narrow,1,hamlet,1600 tristful,1,hamlet,1600 unrighteous,1,hamlet,1600 affections,1,hamlet,1600 towering,1,hamlet,1600 sticks,1,hamlet,1600 nut,1,hamlet,1600 stays,1,hamlet,1600 High,1,hamlet,1600 quickly,1,hamlet,1600 progress,1,hamlet,1600 Breathing,1,hamlet,1600 fairy,1,hamlet,1600 perform,1,hamlet,1600 plurisy,1,hamlet,1600 coronation,1,hamlet,1600 Soil,1,hamlet,1600 loses,1,hamlet,1600 loser,1,hamlet,1600 counsellor,1,hamlet,1600 Monday,1,hamlet,1600 springs,1,hamlet,1600 blurs,1,hamlet,1600 evermore,1,hamlet,1600 dares,1,hamlet,1600 forest,1,hamlet,1600 places,1,hamlet,1600 defective,1,hamlet,1600 fang'd,1,hamlet,1600 crammed,1,hamlet,1600 kindless,1,hamlet,1600 call't,1,hamlet,1600 several,1,hamlet,1600 avouch,1,hamlet,1600 famous,1,hamlet,1600 cloak,1,hamlet,1600 sullies,1,hamlet,1600 Thyself,1,hamlet,1600 Hide,1,hamlet,1600 tutor,1,hamlet,1600 dirty,1,hamlet,1600 hectic,1,hamlet,1600 recount,1,hamlet,1600 Lost,1,hamlet,1600 engineer,1,hamlet,1600 mourn,1,hamlet,1600 inky,1,hamlet,1600 appointment,1,hamlet,1600 seasons,1,hamlet,1600 petard,1,hamlet,1600 commune,1,hamlet,1600 device,1,hamlet,1600 err,1,hamlet,1600 embracing,1,hamlet,1600 airy,1,hamlet,1600 strife,1,hamlet,1600 goblins,1,hamlet,1600 airs,1,hamlet,1600 lodge,1,hamlet,1600 'He,1,hamlet,1600 reigns,1,hamlet,1600 likewise,1,hamlet,1600 revolution,1,hamlet,1600 kissed,1,hamlet,1600 Free,1,hamlet,1600 Scattering,1,hamlet,1600 filial,1,hamlet,1600 Delay,1,hamlet,1600 milk,1,hamlet,1600 foul'd,1,hamlet,1600 arrived,1,hamlet,1600 exchange,1,hamlet,1600 deck'd,1,hamlet,1600 'If,1,hamlet,1600 espials,1,hamlet,1600 flints,1,hamlet,1600 'In,1,hamlet,1600 non,1,hamlet,1600 solid,1,hamlet,1600 blench,1,hamlet,1600 satisfaction,1,hamlet,1600 prize,1,hamlet,1600 'It,1,hamlet,1600 shreds,1,hamlet,1600 dirge,1,hamlet,1600 range,1,hamlet,1600 postscript,1,hamlet,1600 panders,1,hamlet,1600 tempest,1,hamlet,1600 commencement,1,hamlet,1600 blanket,1,hamlet,1600 casual,1,hamlet,1600 groundlings,1,hamlet,1600 beauties,1,hamlet,1600 observation,1,hamlet,1600 rests,1,hamlet,1600 Costly,1,hamlet,1600 really,1,hamlet,1600 dowry,1,hamlet,1600 beautied,1,hamlet,1600 assay'd,1,hamlet,1600 Francisco,1,hamlet,1600 jangled,1,hamlet,1600 arraign,1,hamlet,1600 lowest,1,hamlet,1600 caviare,1,hamlet,1600 decline,1,hamlet,1600 egg,1,hamlet,1600 Father,1,hamlet,1600 skin,1,hamlet,1600 Impart,1,hamlet,1600 villanous,1,hamlet,1600 varnish,1,hamlet,1600 unsmirched,1,hamlet,1600 son's,1,hamlet,1600 soles,1,hamlet,1600 mart,1,hamlet,1600 'And,1,hamlet,1600 Hoist,1,hamlet,1600 brass'd,1,hamlet,1600 'Doubt,1,hamlet,1600 Weigh,1,hamlet,1600 attribute,1,hamlet,1600 fellies,1,hamlet,1600 coronet,1,hamlet,1600 befitted,1,hamlet,1600 because,1,hamlet,1600 wot,1,hamlet,1600 woo,1,hamlet,1600 won,1,hamlet,1600 infants,1,hamlet,1600 unshaped,1,hamlet,1600 flatter,1,hamlet,1600 revengeful,1,hamlet,1600 minutes,1,hamlet,1600 inch,1,hamlet,1600 vision,1,hamlet,1600 gates,1,hamlet,1600 address,1,hamlet,1600 lapwing,1,hamlet,1600 infect,1,hamlet,1600 dropping,1,hamlet,1600 abridgement,1,hamlet,1600 enviously,1,hamlet,1600 candied,1,hamlet,1600 chide,1,hamlet,1600 craven,1,hamlet,1600 heaven's,1,hamlet,1600 miss,1,hamlet,1600 chough,1,hamlet,1600 total,1,hamlet,1600 fret,1,hamlet,1600 benefit,1,hamlet,1600 threatening,1,hamlet,1600 higher,1,hamlet,1600 requiem,1,hamlet,1600 Ossa,1,hamlet,1600 digged,1,hamlet,1600 hypocrite,1,hamlet,1600 feelingly,1,hamlet,1600 search,1,hamlet,1600 cozen'd,1,hamlet,1600 crimeful,1,hamlet,1600 Prison,1,hamlet,1600 Buz,1,hamlet,1600 trifle,1,hamlet,1600 borrow'd,1,hamlet,1600 wantonness,1,hamlet,1600 marvel,1,hamlet,1600 instrumental,1,hamlet,1600 gib,1,hamlet,1600 'imponed,1,hamlet,1600 one's,1,hamlet,1600 expectancy,1,hamlet,1600 mockery,1,hamlet,1600 stake,1,hamlet,1600 stairs,1,hamlet,1600 Perhaps,1,hamlet,1600 blasted,1,hamlet,1600 miraculous,1,hamlet,1600 Question,1,hamlet,1600 rendezvous,1,hamlet,1600 firm,1,hamlet,1600 converted,1,hamlet,1600 wrath,1,hamlet,1600 Hautboys,1,hamlet,1600 possession,1,hamlet,1600 sans,1,hamlet,1600 woodcock,1,hamlet,1600 russet,1,hamlet,1600 suiting,1,hamlet,1600 Feeds,1,hamlet,1600 lecture,1,hamlet,1600 losing,1,hamlet,1600 curiously,1,hamlet,1600 Howe'er,1,hamlet,1600 mountebank,1,hamlet,1600 taste,1,hamlet,1600 doctor,1,hamlet,1600 poll,1,hamlet,1600 slight,1,hamlet,1600 affairs,1,hamlet,1600 pole,1,hamlet,1600 maids,1,hamlet,1600 opinion,1,hamlet,1600 scanter,1,hamlet,1600 semblable,1,hamlet,1600 ordinant,1,hamlet,1600 sale,1,hamlet,1600 stalk,1,hamlet,1600 gem,1,hamlet,1600 flies,1,hamlet,1600 stale,1,hamlet,1600 pound,1,hamlet,1600 carefully,1,hamlet,1600 unhappily,1,hamlet,1600 abate,1,hamlet,1600 retire,1,hamlet,1600 roars,1,hamlet,1600 pomp,1,hamlet,1600 safely,1,hamlet,1600 turneth,1,hamlet,1600 boarded,1,hamlet,1600 Confess,1,hamlet,1600 Armed,1,hamlet,1600 Witness,1,hamlet,1600 enters,1,hamlet,1600 chanson,1,hamlet,1600 proposer,1,hamlet,1600 statists,1,hamlet,1600 persons,1,hamlet,1600 grave's,1,hamlet,1600 newborn,1,hamlet,1600 Hamlets,1,hamlet,1600 message,1,hamlet,1600 murder',1,hamlet,1600 think't,1,hamlet,1600 bodkin,1,hamlet,1600 'not,1,hamlet,1600 o'ergrowth,1,hamlet,1600 privy,1,hamlet,1600 provoke,1,hamlet,1600 thoroughly,1,hamlet,1600 operant,1,hamlet,1600 stomach,1,hamlet,1600 flaxen,1,hamlet,1600 'Twill,1,hamlet,1600 bands,1,hamlet,1600 compulsive,1,hamlet,1600 confines,1,hamlet,1600 curb,1,hamlet,1600 imaginations,1,hamlet,1600 roughly,1,hamlet,1600 rims,1,hamlet,1600 cure,1,hamlet,1600 Perpend,1,hamlet,1600 curd,1,hamlet,1600 perturbed,1,hamlet,1600 bawdy,1,hamlet,1600 martial,1,hamlet,1600 hearer,1,hamlet,1600 bread,1,hamlet,1600 confined,1,hamlet,1600 bawds,1,hamlet,1600 forgetting,1,hamlet,1600 knife,1,hamlet,1600 Moreover,1,hamlet,1600 Queen's,1,hamlet,1600 happiness,1,hamlet,1600 tenable,1,hamlet,1600 sitting,1,hamlet,1600 bounded,1,hamlet,1600 hammers,1,hamlet,1600 pours,1,hamlet,1600 obeys,1,hamlet,1600 different,1,hamlet,1600 creation,1,hamlet,1600 humanity,1,hamlet,1600 harlot's,1,hamlet,1600 allegiance,1,hamlet,1600 influence,1,hamlet,1600 abstinence,1,hamlet,1600 pioner,1,hamlet,1600 dizzy,1,hamlet,1600 bestow'd,1,hamlet,1600 dawning,1,hamlet,1600 lightness,1,hamlet,1600 walks,1,hamlet,1600 Dear,1,hamlet,1600 'no',1,hamlet,1600 saws,1,hamlet,1600 conjectures,1,hamlet,1600 Saw,1,hamlet,1600 obsequies,1,hamlet,1600 sparrow,1,hamlet,1600 Sure,1,hamlet,1600 grosser,1,hamlet,1600 residence,1,hamlet,1600 ripe,1,hamlet,1600 bellowed,1,hamlet,1600 standing,1,hamlet,1600 negligence,1,hamlet,1600 vouch,1,hamlet,1600 contumely,1,hamlet,1600 defeated,1,hamlet,1600 fulfill'd,1,hamlet,1600 unmask,1,hamlet,1600 nomination,1,hamlet,1600 adulterate,1,hamlet,1600 Sleeping,1,hamlet,1600 venom'd,1,hamlet,1600 idol,1,hamlet,1600 England's,1,hamlet,1600 patiently,1,hamlet,1600 recks,1,hamlet,1600 copied,1,hamlet,1600 burthen,1,hamlet,1600 glassy,1,hamlet,1600 Disasters,1,hamlet,1600 machine,1,hamlet,1600 maid's,1,hamlet,1600 stealers,1,hamlet,1600 'We,1,hamlet,1600 unseal,1,hamlet,1600 called,1,hamlet,1600 Mercury,1,hamlet,1600 stiff,1,hamlet,1600 Think,1,hamlet,1600 tunes,1,hamlet,1600 blasts,1,hamlet,1600 sate,1,hamlet,1600 moult,1,hamlet,1600 quarrelling,1,hamlet,1600 earnest,1,hamlet,1600 army,1,hamlet,1600 spacious,1,hamlet,1600 staff,1,hamlet,1600 primy,1,hamlet,1600 mould,1,hamlet,1600 poet,1,hamlet,1600 able,1,hamlet,1600 driven,1,hamlet,1600 drives,1,hamlet,1600 poem,1,hamlet,1600 squeezing,1,hamlet,1600 commanded,1,hamlet,1600 'To,1,hamlet,1600 important,1,hamlet,1600 hover,1,hamlet,1600 growing,1,hamlet,1600 unwatch'd,1,hamlet,1600 contraction,1,hamlet,1600 yesty,1,hamlet,1600 rite,1,hamlet,1600 libertine,1,hamlet,1600 enseamed,1,hamlet,1600 intend,1,hamlet,1600 garland,1,hamlet,1600 girdle,1,hamlet,1600 fellow's,1,hamlet,1600 opposing,1,hamlet,1600 wood,1,hamlet,1600 Starts,1,hamlet,1600 arrow,1,hamlet,1600 they'll,1,hamlet,1600 Extorted,1,hamlet,1600 divulging,1,hamlet,1600 assure,1,hamlet,1600 pride,1,hamlet,1600 bilboes,1,hamlet,1600 forward,1,hamlet,1600 juice,1,hamlet,1600 greetings,1,hamlet,1600 sallets,1,hamlet,1600 lifted,1,hamlet,1600 rags,1,hamlet,1600 dying,1,hamlet,1600 uncle's,1,hamlet,1600 Eats,1,hamlet,1600 purples,1,hamlet,1600 proceeding,1,hamlet,1600 prick,1,hamlet,1600 Mass,1,hamlet,1600 owl,1,hamlet,1600 split,1,hamlet,1600 women's,1,hamlet,1600 multitude,1,hamlet,1600 chanted,1,hamlet,1600 whirling,1,hamlet,1600 stithy,1,hamlet,1600 bells,1,hamlet,1600 threats,1,hamlet,1600 rawer,1,hamlet,1600 walk'd,1,hamlet,1600 bounty,1,hamlet,1600 Thrown,1,hamlet,1600 Offence's,1,hamlet,1600 quiddities,1,hamlet,1600 unsinew'd,1,hamlet,1600 Given,1,hamlet,1600 chamberlain,1,hamlet,1600 appliance,1,hamlet,1600 shriving,1,hamlet,1600 grossly,1,hamlet,1600 cataplasm,1,hamlet,1600 surprised,1,hamlet,1600 angle,1,hamlet,1600 familiar,1,hamlet,1600 requite,1,hamlet,1600 mutes,1,hamlet,1600 husbandry,1,hamlet,1600 baseness,1,hamlet,1600 bruit,1,hamlet,1600 breadth,1,hamlet,1600 unfortified,1,hamlet,1600 mettle,1,hamlet,1600 dreamt,1,hamlet,1600 oblivion,1,hamlet,1600 Bid,1,hamlet,1600 o'erthrown,1,hamlet,1600 surrender,1,hamlet,1600 quicksilver,1,hamlet,1600 Herod,1,hamlet,1600 northerly,1,hamlet,1600 rages,1,hamlet,1600 nothing's,1,hamlet,1600 Doom'd,1,hamlet,1600 daintier,1,hamlet,1600 Craves,1,hamlet,1600 fallen,1,hamlet,1600 validity,1,hamlet,1600 honoured,1,hamlet,1600 gender,1,hamlet,1600 taken,1,hamlet,1600 conference,1,hamlet,1600 indirections,1,hamlet,1600 index,1,hamlet,1600 earthly,1,hamlet,1600 windlasses,1,hamlet,1600 Hail,1,hamlet,1600 certainty,1,hamlet,1600 Tropically,1,hamlet,1600 teemed,1,hamlet,1600 speedier,1,hamlet,1600 clapped,1,hamlet,1600 anger,1,hamlet,1600 weeping,1,hamlet,1600 vicious,1,hamlet,1600 forfeit,1,hamlet,1600 foreign,1,hamlet,1600 labour'd,1,hamlet,1600 smelling,1,hamlet,1600 opposite,1,hamlet,1600 womb,1,hamlet,1600 compass,1,hamlet,1600 knight,1,hamlet,1600 supply,1,hamlet,1600 imputation,1,hamlet,1600 haply,1,hamlet,1600 jowls,1,hamlet,1600 rain,1,hamlet,1600 functions,1,hamlet,1600 cups,1,hamlet,1600 soldiers',1,hamlet,1600 wheaten,1,hamlet,1600 sewing,1,hamlet,1600 shortens,1,hamlet,1600 apoplex'd,1,hamlet,1600 touching,1,hamlet,1600 unsatisfied,1,hamlet,1600 embark'd,1,hamlet,1600 occurrents,1,hamlet,1600 wooes,1,hamlet,1600 flash,1,hamlet,1600 waste,1,hamlet,1600 marble,1,hamlet,1600 Corpse,1,hamlet,1600 fox,1,hamlet,1600 sober,1,hamlet,1600 ope,1,hamlet,1600 angry,1,hamlet,1600 valenced,1,hamlet,1600 clout,1,hamlet,1600 o'ersways,1,hamlet,1600 whence,1,hamlet,1600 fail,1,hamlet,1600 heathen,1,hamlet,1600 mightier,1,hamlet,1600 outstretched,1,hamlet,1600 compare,1,hamlet,1600 Show,1,hamlet,1600 shocks,1,hamlet,1600 minister,1,hamlet,1600 garlands,1,hamlet,1600 clown,1,hamlet,1600 dispatch'd,1,hamlet,1600 fretted,1,hamlet,1600 persever,1,hamlet,1600 assail,1,hamlet,1600 Strengthen,1,hamlet,1600 profane,1,hamlet,1600 brainish,1,hamlet,1600 ardour,1,hamlet,1600 ore,1,hamlet,1600 perfections,1,hamlet,1600 diseases,1,hamlet,1600 yond,1,hamlet,1600 Time,1,hamlet,1600 diseased,1,hamlet,1600 occulted,1,hamlet,1600 reverted,1,hamlet,1600 messengers,1,hamlet,1600 highly,1,hamlet,1600 weapons,1,hamlet,1600 Grapple,1,hamlet,1600 doublet,1,hamlet,1600 delays,1,hamlet,1600 o'erhanging,1,hamlet,1600 Cornelius,1,hamlet,1600 quest,1,hamlet,1600 ubique,1,hamlet,1600 proportions,1,hamlet,1600 orb,1,hamlet,1600 foh,1,hamlet,1600 sin's,1,hamlet,1600 cloud,1,hamlet,1600 distract,1,hamlet,1600 o'errule,1,hamlet,1600 preaching,1,hamlet,1600 clearly,1,hamlet,1600 Hadst,1,hamlet,1600 grant,1,hamlet,1600 suppliance,1,hamlet,1600 bedded,1,hamlet,1600 Greeks,1,hamlet,1600 rack,1,hamlet,1600 o'erweigh,1,hamlet,1600 grand,1,hamlet,1600 Affront,1,hamlet,1600 kites,1,hamlet,1600 scorns,1,hamlet,1600 mines,1,hamlet,1600 Capitol,1,hamlet,1600 celebrated,1,hamlet,1600 worn,1,hamlet,1600 letter,1,hamlet,1600 wit's,1,hamlet,1600 amities,1,hamlet,1600 equivocation,1,hamlet,1600 heavily,1,hamlet,1600 cherub,1,hamlet,1600 extolment,1,hamlet,1600 company,1,hamlet,1600 roses,1,hamlet,1600 Unbated,1,hamlet,1600 wore,1,hamlet,1600 forestalled,1,hamlet,1600 lodged,1,hamlet,1600 allow,1,hamlet,1600 caution,1,hamlet,1600 returneth,1,hamlet,1600 Mars,1,hamlet,1600 restrain'd,1,hamlet,1600 endeavour,1,hamlet,1600 esteem'd,1,hamlet,1600 minute,1,hamlet,1600 brute,1,hamlet,1600 galls,1,hamlet,1600 solicited,1,hamlet,1600 umbrage,1,hamlet,1600 perfect,1,hamlet,1600 lists,1,hamlet,1600 chalice,1,hamlet,1600 film,1,hamlet,1600 scratch'd,1,hamlet,1600 fill,1,hamlet,1600 moderate,1,hamlet,1600 Bow,1,hamlet,1600 howsoever,1,hamlet,1600 wann'd,1,hamlet,1600 'Run,1,hamlet,1600 clad,1,hamlet,1600 dalliance,1,hamlet,1600 punish'd,1,hamlet,1600 clepe,1,hamlet,1600 engaged,1,hamlet,1600 ministering,1,hamlet,1600 barber's,1,hamlet,1600 smote,1,hamlet,1600 damnation,1,hamlet,1600 blister,1,hamlet,1600 folly,1,hamlet,1600 bark,1,hamlet,1600 rebuke,1,hamlet,1600 Occasion,1,hamlet,1600 duties,1,hamlet,1600 bare,1,hamlet,1600 Transports,1,hamlet,1600 ventages,1,hamlet,1600 definement,1,hamlet,1600 answer'd,1,hamlet,1600 host,1,hamlet,1600 'havior,1,hamlet,1600 unschool'd,1,hamlet,1600 daisies,1,hamlet,1600 Receives,1,hamlet,1600 neutral,1,hamlet,1600 ratified,1,hamlet,1600 pocket,1,hamlet,1600 ostentation,1,hamlet,1600 Received,1,hamlet,1600 wealth,1,hamlet,1600 Appears,1,hamlet,1600 an't,1,hamlet,1600 faculty,1,hamlet,1600 besmirch,1,hamlet,1600 wick,1,hamlet,1600 depart,1,hamlet,1600 perceive,1,hamlet,1600 Bears,1,hamlet,1600 beware,1,hamlet,1600 chiefly,1,hamlet,1600 wagered,1,hamlet,1600 scenes,1,hamlet,1600 emphasis,1,hamlet,1600 turbulent,1,hamlet,1600 journeys,1,hamlet,1600 traitorous,1,hamlet,1600 watch'd,1,hamlet,1600 opposites,1,hamlet,1600 scholars,1,hamlet,1600 buttons,1,hamlet,1600 cicatrice,1,hamlet,1600 meaning,1,hamlet,1600 gilded,1,hamlet,1600 nerve,1,hamlet,1600 lunacies,1,hamlet,1600 loggats,1,hamlet,1600 comfort,1,hamlet,1600 breeder,1,hamlet,1600 strikes,1,hamlet,1600 aunt,1,hamlet,1600 public,1,hamlet,1600 competent,1,hamlet,1600 Cut,1,hamlet,1600 deliver'd,1,hamlet,1600 observance,1,hamlet,1600 'Well,1,hamlet,1600 unbraced,1,hamlet,1600 friendship,1,hamlet,1600 bank,1,hamlet,1600 crowing,1,hamlet,1600 contriving,1,hamlet,1600 hallow'd,1,hamlet,1600 impotence,1,hamlet,1600 Visit,1,hamlet,1600 Tweaks,1,hamlet,1600 bounds,1,hamlet,1600 disclaiming,1,hamlet,1600 secrets,1,hamlet,1600 quillets,1,hamlet,1600 Noise,1,hamlet,1600 enactures,1,hamlet,1600 ownself,1,hamlet,1600 large,1,hamlet,1600 emperor,1,hamlet,1600 evidence,1,hamlet,1600 matin,1,hamlet,1600 blaze,1,hamlet,1600 drinks,1,hamlet,1600 Saviour's,1,hamlet,1600 soul's,1,hamlet,1600 gallant,1,hamlet,1600 o'erwhelm,1,hamlet,1600 mildew'd,1,hamlet,1600 calendar,1,hamlet,1600 constant,1,hamlet,1600 falsely,1,hamlet,1600 fruitful,1,hamlet,1600 Contagious,1,hamlet,1600 Ears,1,hamlet,1600 cue,1,hamlet,1600 convey,1,hamlet,1600 Worse,1,hamlet,1600 uphoarded,1,hamlet,1600 mortised,1,hamlet,1600 asunder,1,hamlet,1600 mothers,1,hamlet,1600 churchyards,1,hamlet,1600 implorators,1,hamlet,1600 ghost's,1,hamlet,1600 Baked,1,hamlet,1600 beshrew,1,hamlet,1600 shoon,1,hamlet,1600 shoot,1,hamlet,1600 Led,1,hamlet,1600 dallying,1,hamlet,1600 creep,1,hamlet,1600 pledge,1,hamlet,1600 Mourners,1,hamlet,1600 shook,1,hamlet,1600 mutines,1,hamlet,1600 bethought,1,hamlet,1600 lecherous,1,hamlet,1600 preceding,1,hamlet,1600 Attends,1,hamlet,1600 dexterity,1,hamlet,1600 clear,1,hamlet,1600 achievements,1,hamlet,1600 fertile,1,hamlet,1600 imposthume,1,hamlet,1600 articles,1,hamlet,1600 temper'd,1,hamlet,1600 firmament,1,hamlet,1600 greet,1,hamlet,1600 hollow,1,hamlet,1600 metals,1,hamlet,1600 concluded,1,hamlet,1600 dishes,1,hamlet,1600 implements,1,hamlet,1600 Lives,1,hamlet,1600 cut,1,hamlet,1600 Mouse,1,hamlet,1600 Nemean,1,hamlet,1600 survivor,1,hamlet,1600 pangs,1,hamlet,1600 counterfeit,1,hamlet,1600 sweaty,1,hamlet,1600 fires,1,hamlet,1600 cowards,1,hamlet,1600 request,1,hamlet,1600 anticipation,1,hamlet,1600 murdering,1,hamlet,1600 winter,1,hamlet,1600 rabble,1,hamlet,1600 flood,1,hamlet,1600 Repent,1,hamlet,1600 periwig,1,hamlet,1600 Where's,1,hamlet,1600 'Who,1,hamlet,1600 resolution,1,hamlet,1600 Wherefore,1,hamlet,1600 shove,1,hamlet,1600 Form,1,hamlet,1600 Awake,1,hamlet,1600 potion,1,hamlet,1600 Unite,1,hamlet,1600 Fall'n,1,hamlet,1600 conjure,1,hamlet,1600 actively,1,hamlet,1600 borrowing,1,hamlet,1600 falsehood,1,hamlet,1600 task,1,hamlet,1600 thrall'd,1,hamlet,1600 blazon,1,hamlet,1600 rendering,1,hamlet,1600 goodman,1,hamlet,1600 fitted,1,hamlet,1600 intents,1,hamlet,1600 Lends,1,hamlet,1600 responsive,1,hamlet,1600 Inquire,1,hamlet,1600 cleft,1,hamlet,1600 also,1,hamlet,1600 bawd,1,hamlet,1600 satisfied,1,hamlet,1600 prenominate,1,hamlet,1600 country's,1,hamlet,1600 garbage,1,hamlet,1600 hung,1,hamlet,1600 have't,1,hamlet,1600 hoodman,1,hamlet,1600 seas,1,hamlet,1600 pronouncing,1,hamlet,1600 MARGARET,1,hamlet,1600 cool,1,hamlet,1600 Nero,1,hamlet,1600 lying,1,hamlet,1600 contents,1,hamlet,1600 bodes,1,hamlet,1600 soil'd,1,hamlet,1600 Calls,1,hamlet,1600 always,1,hamlet,1600 leaping,1,hamlet,1600 importunity,1,hamlet,1600 lot,1,hamlet,1600 packet,1,hamlet,1600 low,1,hamlet,1600 trophies,1,hamlet,1600 contagion,1,hamlet,1600 ugly,1,hamlet,1600 acts,1,hamlet,1600 toils,1,hamlet,1600 drunk,1,hamlet,1600 babe,1,hamlet,1600 dupp'd,1,hamlet,1600 captain,1,hamlet,1600 woodcocks,1,hamlet,1600 converse,1,hamlet,1600 canonized,1,hamlet,1600 lightest,1,hamlet,1600 reckoning,1,hamlet,1600 potently,1,hamlet,1600 oppress'd,1,hamlet,1600 Seem,1,hamlet,1600 massy,1,hamlet,1600 insolence,1,hamlet,1600 sexton's,1,hamlet,1600 seed,1,hamlet,1600 distilment,1,hamlet,1600 plentiful,1,hamlet,1600 knowest,1,hamlet,1600 feathers,1,hamlet,1600 intruding,1,hamlet,1600 fitting,1,hamlet,1600 'While,1,hamlet,1600 gestures,1,hamlet,1600 trespass,1,hamlet,1600 faded,1,hamlet,1600 ended,1,hamlet,1600 frontier,1,hamlet,1600 courtesy,1,hamlet,1600 profanely,1,hamlet,1600 greenly,1,hamlet,1600 sees,1,hamlet,1600 lug,1,hamlet,1600 tells,1,hamlet,1600 select,1,hamlet,1600 steep'd,1,hamlet,1600 render,1,hamlet,1600 planets,1,hamlet,1600 couplets,1,hamlet,1600 thereof,1,hamlet,1600 Hyrcanian,1,hamlet,1600 forgeries,1,hamlet,1600 courtier's,1,hamlet,1600 ratifiers,1,hamlet,1600 corses,1,hamlet,1600 encumber'd,1,hamlet,1600 estimation,1,hamlet,1600 thereon,1,hamlet,1600 Dido,1,hamlet,1600 pirate,1,hamlet,1600 sacred,1,hamlet,1600 exploit,1,hamlet,1600 topp'd,1,hamlet,1600 matron's,1,hamlet,1600 increase,1,hamlet,1600 core,1,hamlet,1600 Pull'd,1,hamlet,1600 congregation,1,hamlet,1600 Haste,1,hamlet,1600 blazes,1,hamlet,1600 pour,1,hamlet,1600 unused,1,hamlet,1600 Know,1,hamlet,1600 Through,1,hamlet,1600 therein,1,hamlet,1600 Things,1,hamlet,1600 million,1,hamlet,1600 drugs,1,hamlet,1600 slender,1,hamlet,1600 impasted,1,hamlet,1600 huge,1,hamlet,1600 bait,1,hamlet,1600 replies,1,hamlet,1600 Roscius,1,hamlet,1600 countrymen,1,hamlet,1600 dislike,1,hamlet,1600 judicious,1,hamlet,1600 Use,1,hamlet,1600 'There,1,hamlet,1600 self,1,hamlet,1600 ravel,1,hamlet,1600 fairly,1,hamlet,1600 according,1,hamlet,1600 gibber,1,hamlet,1600 raven,1,hamlet,1600 believed,1,hamlet,1600 Cry,1,hamlet,1600 raves,1,hamlet,1600 penetrable,1,hamlet,1600 Meantime,1,hamlet,1600 cases,1,hamlet,1600 Honour'd,1,hamlet,1600 posy,1,hamlet,1600 Judgment,1,hamlet,1600 Next,1,hamlet,1600 bleeding,1,hamlet,1600 undo,1,hamlet,1600 alas,1,hamlet,1600 temperately,1,hamlet,1600 grieves,1,hamlet,1600 bade,1,hamlet,1600 Admit,1,hamlet,1600 grieved,1,hamlet,1600 chameleon's,1,hamlet,1600 Ilium,1,hamlet,1600 sexton,1,hamlet,1600 loudly,1,hamlet,1600 greeting,1,hamlet,1600 carriage,1,hamlet,1600 herald,1,hamlet,1600 regards,1,hamlet,1600 plunge,1,hamlet,1600 trap,1,hamlet,1600 seized,1,hamlet,1600 disappointed,1,hamlet,1600 formal,1,hamlet,1600 barren,1,hamlet,1600 fearing,1,hamlet,1600 tatters,1,hamlet,1600 flushing,1,hamlet,1600 match,1,hamlet,1600 Pleasant,1,hamlet,1600 barrel,1,hamlet,1600 highest,1,hamlet,1600 convert,1,hamlet,1600 Israel,1,hamlet,1600 aright,1,hamlet,1600 consummation,1,hamlet,1600 Gonzago's,1,hamlet,1600 unmaster'd,1,hamlet,1600 pooh,1,hamlet,1600 canopy,1,hamlet,1600 bonnet,1,hamlet,1600 diggers,1,hamlet,1600 couple,1,hamlet,1600 purport,1,hamlet,1600 invite,1,hamlet,1600 palpable,1,hamlet,1600 pressure,1,hamlet,1600 drooping,1,hamlet,1600 master's,1,hamlet,1600 sheets,1,hamlet,1600 dungeons,1,hamlet,1600 coil,1,hamlet,1600 started,1,hamlet,1600 Rough,1,hamlet,1600 borrower,1,hamlet,1600 Slanders,1,hamlet,1600 powerfully,1,hamlet,1600 triumph,1,hamlet,1600 donn'd,1,hamlet,1600 appurtenance,1,hamlet,1600 licence,1,hamlet,1600 swinish,1,hamlet,1600 Adam's,1,hamlet,1600 Rightly,1,hamlet,1600 'Forgive,1,hamlet,1600 persuade,1,hamlet,1600 Patrick,1,hamlet,1600 Yorick's,1,hamlet,1600 lays,1,hamlet,1600 seated,1,hamlet,1600 peak,1,hamlet,1600 wrist,1,hamlet,1600 write,1,hamlet,1600 debate,1,hamlet,1600 spades,1,hamlet,1600 impartment,1,hamlet,1600 checking,1,hamlet,1600 concernings,1,hamlet,1600 confound,1,hamlet,1600 adoption,1,hamlet,1600 detecting,1,hamlet,1600 Propose,1,hamlet,1600 wearing,1,hamlet,1600 fiends,1,hamlet,1600 eyases,1,hamlet,1600 portraiture,1,hamlet,1600 barr'd,1,hamlet,1600 sounded,1,hamlet,1600 privates,1,hamlet,1600 volume,1,hamlet,1600 peal,1,hamlet,1600 unknowing,1,hamlet,1600 scarf'd,1,hamlet,1600 darkest,1,hamlet,1600 Hunts,1,hamlet,1600 me',1,hamlet,1600 abroad,1,hamlet,1600 spite,1,hamlet,1600 truncheon's,1,hamlet,1600 afeard,1,hamlet,1600 Quoth,1,hamlet,1600 rheum,1,hamlet,1600 plausive,1,hamlet,1600 harrows,1,hamlet,1600 Examples,1,hamlet,1600 wring,1,hamlet,1600 unvalued,1,hamlet,1600 Paris,1,hamlet,1600 doing,1,hamlet,1600 tenures,1,hamlet,1600 Finding,1,hamlet,1600 sadness,1,hamlet,1600 brooch,1,hamlet,1600 Frailty,1,hamlet,1600 impious,1,hamlet,1600 margent,1,hamlet,1600 met,1,hamlet,1600 mew,1,hamlet,1600 headed,1,hamlet,1600 knocked,1,hamlet,1600 lofty,1,hamlet,1600 trip,1,hamlet,1600 honeying,1,hamlet,1600 unskilful,1,hamlet,1600 decayer,1,hamlet,1600 diameter,1,hamlet,1600 link'd,1,hamlet,1600 readiness,1,hamlet,1600 graveness,1,hamlet,1600 hardy,1,hamlet,1600 According,1,hamlet,1600 hinges,1,hamlet,1600 beseech'd,1,hamlet,1600 Treachery,1,hamlet,1600 murder'd,1,hamlet,1600 dye,1,hamlet,1600 fennel,1,hamlet,1600 noyance,1,hamlet,1600 determine,1,hamlet,1600 Singeing,1,hamlet,1600 abuse,1,hamlet,1600 coagulate,1,hamlet,1600 burnt,1,hamlet,1600 whit,1,hamlet,1600 animals,1,hamlet,1600 forcing,1,hamlet,1600 crocodile,1,hamlet,1600 battlements,1,hamlet,1600 truster,1,hamlet,1600 indentures,1,hamlet,1600 crafty,1,hamlet,1600 eleven,1,hamlet,1600 pernicious,1,hamlet,1600 Tears,1,hamlet,1600 ungored,1,hamlet,1600 across,1,hamlet,1600 spills,1,hamlet,1600 crafts,1,hamlet,1600 Shark'd,1,hamlet,1600 flights,1,hamlet,1600 reels,1,hamlet,1600 harmony,1,hamlet,1600 carouses,1,hamlet,1600 strokes,1,hamlet,1600 partisan,1,hamlet,1600 physic,1,hamlet,1600 harshly,1,hamlet,1600 homage,1,hamlet,1600 supposal,1,hamlet,1600 mourning,1,hamlet,1600 nephews,1,hamlet,1600 struggling,1,hamlet,1600 pursuest,1,hamlet,1600 Sleep,1,hamlet,1600 volley,1,hamlet,1600 afflicts,1,hamlet,1600 insert,1,hamlet,1600 cutpurse,1,hamlet,1600 entreatments,1,hamlet,1600 gleaned,1,hamlet,1600 respects,1,hamlet,1600 tetter,1,hamlet,1600 directions,1,hamlet,1600 politic,1,hamlet,1600 gulf,1,hamlet,1600 lash,1,hamlet,1600 grounds,1,hamlet,1600 synod,1,hamlet,1600 flaw,1,hamlet,1600 plucks,1,hamlet,1600 gules,1,hamlet,1600 Abuses,1,hamlet,1600 positively,1,hamlet,1600 spilt,1,hamlet,1600 liquid,1,hamlet,1600 permanent,1,hamlet,1600 better'd,1,hamlet,1600 limed,1,hamlet,1600 lawyer,1,hamlet,1600 Requite,1,hamlet,1600 Sunday,1,hamlet,1600 supervise,1,hamlet,1600 Millions,1,hamlet,1600 Repugnant,1,hamlet,1600 fitness,1,hamlet,1600 VII,1,hamlet,1600 leperous,1,hamlet,1600 throwing,1,hamlet,1600 shroud,1,hamlet,1600 withdrew,1,hamlet,1600 mattering,1,hamlet,1600 Looking,1,hamlet,1600 mineral,1,hamlet,1600 extent,1,hamlet,1600 pranks,1,hamlet,1600 betimes,1,hamlet,1600 severally,1,hamlet,1600 hush,1,hamlet,1600 customary,1,hamlet,1600 jade,1,hamlet,1600 gets,1,hamlet,1600 lazar,1,hamlet,1600 pagan,1,hamlet,1600 Olympus,1,hamlet,1600 whet,1,hamlet,1600 grinding,1,hamlet,1600 lisp,1,hamlet,1600 levied,1,hamlet,1600 tributary,1,hamlet,1600 breaking,1,hamlet,1600 satirical,1,hamlet,1600 Yaughan,1,hamlet,1600 appetite,1,hamlet,1600 jointress,1,hamlet,1600 felicity,1,hamlet,1600 frowningly,1,hamlet,1600 bias,1,hamlet,1600 contend,1,hamlet,1600 books,1,hamlet,1600 compell'd,1,hamlet,1600 cell,1,hamlet,1600 stiffly,1,hamlet,1600 compost,1,hamlet,1600 stopping,1,hamlet,1600 headshake,1,hamlet,1600 quietus,1,hamlet,1600 passages,1,hamlet,1600 importunate,1,hamlet,1600 twentieth,1,hamlet,1600 forestall,1,hamlet,1600 chorus,1,hamlet,1600 rebels,1,hamlet,1600 simple,1,hamlet,1600 Hyperion,1,hamlet,1600 unreclaimed,1,hamlet,1600 uncurrent,1,hamlet,1600 mouths,1,hamlet,1600 forgiveness,1,hamlet,1600 unsanctified,1,hamlet,1600 entrance,1,hamlet,1600 witness,1,hamlet,1600 leads,1,hamlet,1600 unproportioned,1,hamlet,1600 widow,1,hamlet,1600 clouts,1,hamlet,1600 answerest,1,hamlet,1600 swounds,1,hamlet,1600 rises,1,hamlet,1600 yesternight,1,hamlet,1600 judges,1,hamlet,1600 slay,1,hamlet,1600 employ,1,hamlet,1600 lain,1,hamlet,1600 careless,1,hamlet,1600 expense,1,hamlet,1600 fail'd,1,hamlet,1600 Tis,1,hamlet,1600 glares,1,hamlet,1600 unprofitable,1,hamlet,1600 kick,1,hamlet,1600 invites,1,hamlet,1600 attend,1,hamlet,1600 provide,1,hamlet,1600 bray,1,hamlet,1600 centre,1,hamlet,1600 pebbles,1,hamlet,1600 journeymen,1,hamlet,1600 happily,1,hamlet,1600 Plautus,1,hamlet,1600 Excitements,1,hamlet,1600 Blasted,1,hamlet,1600 hoar,1,hamlet,1600 dragging,1,hamlet,1600 student,1,hamlet,1600 dark,1,hamlet,1600 honour's,1,hamlet,1600 Gracious,1,hamlet,1600 offender's,1,hamlet,1600 Falls,1,hamlet,1600 sulphurous,1,hamlet,1600 boisterous,1,hamlet,1600 Lest,1,hamlet,1600 dressy,1,hamlet,1600 weigh,1,hamlet,1600 Refrain,1,hamlet,1600 sounding,1,hamlet,1600 attent,1,hamlet,1600 repel,1,hamlet,1600 due,1,hamlet,1600 scrimers,1,hamlet,1600 dug,1,hamlet,1600 columbines,1,hamlet,1600 weight,1,hamlet,1600 Rich,1,hamlet,1600 whored,1,hamlet,1600 lord's,1,hamlet,1600 pelican,1,hamlet,1600 lank,1,hamlet,1600 'faith,1,hamlet,1600 primrose,1,hamlet,1600 roasted,1,hamlet,1600 globe,1,hamlet,1600 another's,1,hamlet,1600 kibe,1,hamlet,1600 swallowed,1,hamlet,1600 illusion,1,hamlet,1600 poisons,1,hamlet,1600 blossoms,1,hamlet,1600 reverend,1,hamlet,1600 inter,1,hamlet,1600 circumscribed,1,hamlet,1600 instantly,1,hamlet,1600 DRAMATIS,1,hamlet,1600 spendthrift,1,hamlet,1600 Clambering,1,hamlet,1600 Until,1,hamlet,1600 shift,1,hamlet,1600 sergeant,1,hamlet,1600 altitude,1,hamlet,1600 shine,1,hamlet,1600 Thrift,1,hamlet,1600 tis,1,hamlet,1600 behold,1,hamlet,1600 propose,1,hamlet,1600 undergo,1,hamlet,1600 O'ermaster,1,hamlet,1600 grapple,1,hamlet,1600 leans,1,hamlet,1600 swoopstake,1,hamlet,1600 Angels,1,hamlet,1600 duller,1,hamlet,1600 rareness,1,hamlet,1600 damn,1,hamlet,1600 bark'd,1,hamlet,1600 withers,1,hamlet,1600 exit,1,hamlet,1600 quietly,1,hamlet,1600 unripe,1,hamlet,1600 he'll,1,hamlet,1600 entreated,1,hamlet,1600 brevity,1,hamlet,1600 delated,1,hamlet,1600 reserve,1,hamlet,1600 Compounded,1,hamlet,1600 wills,1,hamlet,1600 greatness,1,hamlet,1600 conceal'd,1,hamlet,1600 Affection,1,hamlet,1600 cross,1,hamlet,1600 cabin,1,hamlet,1600 southerly,1,hamlet,1600 gorge,1,hamlet,1600 impotent,1,hamlet,1600 inheritor,1,hamlet,1600 private,1,hamlet,1600 Exchange,1,hamlet,1600 dwelling,1,hamlet,1600 profoundest,1,hamlet,1600 'Choose,1,hamlet,1600 smelt,1,hamlet,1600 Antiquity,1,hamlet,1600 intil,1,hamlet,1600 awake,1,hamlet,1600 pronounce,1,hamlet,1600 eyelids,1,hamlet,1600 hellish,1,hamlet,1600 amaze,1,hamlet,1600 amen,1,hamlet,1600 Try,1,hamlet,1600 Fall,1,hamlet,1600 remorse,1,hamlet,1600 bier,1,hamlet,1600 trifling,1,hamlet,1600 tenantless,1,hamlet,1600 Thereto,1,hamlet,1600 Honest,1,hamlet,1600 forbear,1,hamlet,1600 parley,1,hamlet,1600 neighbour,1,hamlet,1600 shirt,1,hamlet,1600 oaths,1,hamlet,1600 tread,1,hamlet,1600 gave't,1,hamlet,1600 market,1,hamlet,1600 coped,1,hamlet,1600 unpack,1,hamlet,1600 fordoes,1,hamlet,1600 Brief,1,hamlet,1600 share,1,hamlet,1600 dip,1,hamlet,1600 e'er,1,hamlet,1600 hold'st,1,hamlet,1600 Holding,1,hamlet,1600 jelly,1,hamlet,1600 Retiring,1,hamlet,1600 sharp,1,hamlet,1600 vanish'd,1,hamlet,1600 monsters,1,hamlet,1600 Remorseless,1,hamlet,1600 dumbshows,1,hamlet,1600 ending,1,hamlet,1600 hedge,1,hamlet,1600 Valentine's,1,hamlet,1600 beaver,1,hamlet,1600 lads,1,hamlet,1600 Confound,1,hamlet,1600 forgery,1,hamlet,1600 daughters,1,hamlet,1600 Grows,1,hamlet,1600 attended,2,hamlet,1600 event,2,hamlet,1600 heed,2,hamlet,1600 heel,2,hamlet,1600 regard,2,hamlet,1600 galled,2,hamlet,1600 Touching,2,hamlet,1600 troubles,2,hamlet,1600 forbid,2,hamlet,1600 Norman,2,hamlet,1600 join,2,hamlet,1600 red,2,hamlet,1600 extremity,2,hamlet,1600 sized,2,hamlet,1600 fathers,2,hamlet,1600 for't,2,hamlet,1600 for's,2,hamlet,1600 station,2,hamlet,1600 jaw,2,hamlet,1600 weasel,2,hamlet,1600 tremble,2,hamlet,1600 weary,2,hamlet,1600 wears,2,hamlet,1600 following,2,hamlet,1600 especially,2,hamlet,1600 lament,2,hamlet,1600 peasant,2,hamlet,1600 reaches,2,hamlet,1600 maggots,2,hamlet,1600 assured,2,hamlet,1600 doubtful,2,hamlet,1600 roar,2,hamlet,1600 epitaph,2,hamlet,1600 waxes,2,hamlet,1600 jot,2,hamlet,1600 melt,2,hamlet,1600 held,2,hamlet,1600 Rebellious,2,hamlet,1600 helps,2,hamlet,1600 violets,2,hamlet,1600 whale,2,hamlet,1600 Woo't,2,hamlet,1600 single,2,hamlet,1600 dirt,2,hamlet,1600 joint,2,hamlet,1600 painted,2,hamlet,1600 clothes,2,hamlet,1600 philosophy,2,hamlet,1600 pardon'd,2,hamlet,1600 fetters,2,hamlet,1600 celestial,2,hamlet,1600 prisoner,2,hamlet,1600 Help,2,hamlet,1600 drum,2,hamlet,1600 comest,2,hamlet,1600 brook,2,hamlet,1600 instrument,2,hamlet,1600 angels,2,hamlet,1600 succession,2,hamlet,1600 allowance,2,hamlet,1600 wittingly,2,hamlet,1600 its,2,hamlet,1600 horrid,2,hamlet,1600 under,2,hamlet,1600 thou'lt,2,hamlet,1600 yonder,2,hamlet,1600 rue,2,hamlet,1600 malicious,2,hamlet,1600 strumpet,2,hamlet,1600 absolute,2,hamlet,1600 pleasures,2,hamlet,1600 builds,2,hamlet,1600 trust,2,hamlet,1600 remain,2,hamlet,1600 joys,2,hamlet,1600 wounded,2,hamlet,1600 whoreson,2,hamlet,1600 proclaim,2,hamlet,1600 card,2,hamlet,1600 demand,2,hamlet,1600 rub,2,hamlet,1600 pursue,2,hamlet,1600 Once,2,hamlet,1600 plague,2,hamlet,1600 Over,2,hamlet,1600 strength,2,hamlet,1600 graces,2,hamlet,1600 alarm,2,hamlet,1600 After,2,hamlet,1600 apparition,2,hamlet,1600 drive,2,hamlet,1600 working,2,hamlet,1600 Young,2,hamlet,1600 matters,2,hamlet,1600 sat,2,hamlet,1600 line,2,hamlet,1600 Jove,2,hamlet,1600 opposed,2,hamlet,1600 mind's,2,hamlet,1600 contrive,2,hamlet,1600 wants,2,hamlet,1600 cheek,2,hamlet,1600 calm,2,hamlet,1600 demands,2,hamlet,1600 breaks,2,hamlet,1600 calf,2,hamlet,1600 desperation,2,hamlet,1600 Ambassador,2,hamlet,1600 glass,2,hamlet,1600 rites,2,hamlet,1600 fools,2,hamlet,1600 Pale,2,hamlet,1600 Poisoner,2,hamlet,1600 wait,2,hamlet,1600 kin,2,hamlet,1600 coldly,2,hamlet,1600 view,2,hamlet,1600 slightly,2,hamlet,1600 proclaims,2,hamlet,1600 history,2,hamlet,1600 sin,2,hamlet,1600 knavish,2,hamlet,1600 eager,2,hamlet,1600 scourge,2,hamlet,1600 disclosed,2,hamlet,1600 merry,2,hamlet,1600 Observe,2,hamlet,1600 deceived,2,hamlet,1600 slaughter,2,hamlet,1600 she'll,2,hamlet,1600 throne,2,hamlet,1600 laying,2,hamlet,1600 beasts,2,hamlet,1600 yield,2,hamlet,1600 embrace,2,hamlet,1600 church,2,hamlet,1600 it's,2,hamlet,1600 middle,2,hamlet,1600 level,2,hamlet,1600 wings,2,hamlet,1600 sets,2,hamlet,1600 To't,2,hamlet,1600 becomes,2,hamlet,1600 amiss,2,hamlet,1600 worse,2,hamlet,1600 merit,2,hamlet,1600 Leaps,2,hamlet,1600 wrote,2,hamlet,1600 received,2,hamlet,1600 courtiers,2,hamlet,1600 Ambassadors,2,hamlet,1600 plots,2,hamlet,1600 runs,2,hamlet,1600 variable,2,hamlet,1600 actions,2,hamlet,1600 seeks,2,hamlet,1600 dearly,2,hamlet,1600 assigns,2,hamlet,1600 fruit,2,hamlet,1600 willing,2,hamlet,1600 thence,2,hamlet,1600 sum,2,hamlet,1600 accent,2,hamlet,1600 cease,2,hamlet,1600 promise,2,hamlet,1600 feet,2,hamlet,1600 flaming,2,hamlet,1600 relish,2,hamlet,1600 masters,2,hamlet,1600 upon't,2,hamlet,1600 baser,2,hamlet,1600 camel,2,hamlet,1600 whisper,2,hamlet,1600 rude,2,hamlet,1600 prevent,2,hamlet,1600 comedy,2,hamlet,1600 sconce,2,hamlet,1600 Might,2,hamlet,1600 mirth,2,hamlet,1600 knees,2,hamlet,1600 want,2,hamlet,1600 wipe,2,hamlet,1600 know'st,2,hamlet,1600 summit,2,hamlet,1600 diet,2,hamlet,1600 wise,2,hamlet,1600 puff'd,2,hamlet,1600 heraldry,2,hamlet,1600 seem'd,2,hamlet,1600 world's,2,hamlet,1600 sables,2,hamlet,1600 merely,2,hamlet,1600 wars,2,hamlet,1600 breeding,2,hamlet,1600 advancement,2,hamlet,1600 wary,2,hamlet,1600 wash,2,hamlet,1600 distrust,2,hamlet,1600 praised,2,hamlet,1600 spoke,2,hamlet,1600 distraction,2,hamlet,1600 foil,2,hamlet,1600 wherefore,2,hamlet,1600 scandal,2,hamlet,1600 side,2,hamlet,1600 burning,2,hamlet,1600 manners,2,hamlet,1600 Takes,2,hamlet,1600 melancholy,2,hamlet,1600 exercise,2,hamlet,1600 enact,2,hamlet,1600 Am,2,hamlet,1600 quarrel,2,hamlet,1600 'gentleman,2,hamlet,1600 scarce,2,hamlet,1600 blows,2,hamlet,1600 bow,2,hamlet,1600 eternal,2,hamlet,1600 knowing,2,hamlet,1600 lobby,2,hamlet,1600 hey,2,hamlet,1600 blown,2,hamlet,1600 smile,2,hamlet,1600 hitherto,2,hamlet,1600 fates,2,hamlet,1600 sensible,2,hamlet,1600 perfume,2,hamlet,1600 Stand,2,hamlet,1600 treble,2,hamlet,1600 kings,2,hamlet,1600 cruel,2,hamlet,1600 unless,2,hamlet,1600 creature,2,hamlet,1600 translate,2,hamlet,1600 sings,2,hamlet,1600 hid,2,hamlet,1600 approve,2,hamlet,1600 fines,2,hamlet,1600 cheerfully,2,hamlet,1600 strangely,2,hamlet,1600 tribute,2,hamlet,1600 Doubt,2,hamlet,1600 sport,2,hamlet,1600 step,2,hamlet,1600 Up,2,hamlet,1600 Julius,2,hamlet,1600 absurd,2,hamlet,1600 Thence,2,hamlet,1600 sirs,2,hamlet,1600 valiant,2,hamlet,1600 divide,2,hamlet,1600 bulk,2,hamlet,1600 straw,2,hamlet,1600 was't,2,hamlet,1600 canker,2,hamlet,1600 envenom'd,2,hamlet,1600 'the,2,hamlet,1600 sooner,2,hamlet,1600 dove,2,hamlet,1600 difference,2,hamlet,1600 bell,2,hamlet,1600 Prithee,2,hamlet,1600 got,2,hamlet,1600 cat,2,hamlet,1600 shuffling,2,hamlet,1600 orchard,2,hamlet,1600 tables,2,hamlet,1600 immediate,2,hamlet,1600 weak,2,hamlet,1600 Save,2,hamlet,1600 craft,2,hamlet,1600 beyond,2,hamlet,1600 Put,2,hamlet,1600 hobby,2,hamlet,1600 a',2,hamlet,1600 serpent,2,hamlet,1600 carpenter,2,hamlet,1600 just,2,hamlet,1600 tedious,2,hamlet,1600 swift,2,hamlet,1600 travel,2,hamlet,1600 used,2,hamlet,1600 ranker,2,hamlet,1600 O'er,2,hamlet,1600 enterprise,2,hamlet,1600 jump,2,hamlet,1600 picture,2,hamlet,1600 vouchers,2,hamlet,1600 vantage,2,hamlet,1600 north,2,hamlet,1600 stay'd,2,hamlet,1600 promised,2,hamlet,1600 voyage,2,hamlet,1600 mole,2,hamlet,1600 Fear,2,hamlet,1600 servant,2,hamlet,1600 repent,2,hamlet,1600 stops,2,hamlet,1600 consider,2,hamlet,1600 sable,2,hamlet,1600 safe,2,hamlet,1600 yes,2,hamlet,1600 weigh'd,2,hamlet,1600 swearing,2,hamlet,1600 player,2,hamlet,1600 stone,2,hamlet,1600 unworthy,2,hamlet,1600 tragedy,2,hamlet,1600 obligation,2,hamlet,1600 Revenge,2,hamlet,1600 comical,2,hamlet,1600 gait,2,hamlet,1600 dignity,2,hamlet,1600 likely,2,hamlet,1600 Last,2,hamlet,1600 I've,2,hamlet,1600 played,2,hamlet,1600 gall,2,hamlet,1600 Rhenish,2,hamlet,1600 forged,2,hamlet,1600 defence,2,hamlet,1600 ice,2,hamlet,1600 Hillo,2,hamlet,1600 ah,2,hamlet,1600 Neptune's,2,hamlet,1600 'Swounds,2,hamlet,1600 wonderful,2,hamlet,1600 fears,2,hamlet,1600 wisely,2,hamlet,1600 region,2,hamlet,1600 crew,2,hamlet,1600 Goes,2,hamlet,1600 sometime,2,hamlet,1600 trail,2,hamlet,1600 if't,2,hamlet,1600 hadst,2,hamlet,1600 settled,2,hamlet,1600 playing,2,hamlet,1600 wherein,2,hamlet,1600 potent,2,hamlet,1600 expel,2,hamlet,1600 all's,2,hamlet,1600 continent,2,hamlet,1600 necessary,2,hamlet,1600 lock'd,2,hamlet,1600 loam,2,hamlet,1600 Been,2,hamlet,1600 killed,2,hamlet,1600 graves,2,hamlet,1600 reasons,2,hamlet,1600 easy,2,hamlet,1600 kills,2,hamlet,1600 weapon,2,hamlet,1600 keen,2,hamlet,1600 signify,2,hamlet,1600 nearer,2,hamlet,1600 senseless,2,hamlet,1600 palm,2,hamlet,1600 quills,2,hamlet,1600 perform'd,2,hamlet,1600 husband's,2,hamlet,1600 trade,2,hamlet,1600 appears,2,hamlet,1600 Lady,2,hamlet,1600 deny,2,hamlet,1600 draws,2,hamlet,1600 plain,2,hamlet,1600 trace,2,hamlet,1600 forty,2,hamlet,1600 mighty,2,hamlet,1600 praise,2,hamlet,1600 pluck,2,hamlet,1600 city,2,hamlet,1600 open,2,hamlet,1600 Under,2,hamlet,1600 vengeance,2,hamlet,1600 brothers,2,hamlet,1600 ask,2,hamlet,1600 pair,2,hamlet,1600 ship,2,hamlet,1600 ape,2,hamlet,1600 money,2,hamlet,1600 apt,2,hamlet,1600 profound,2,hamlet,1600 twain,2,hamlet,1600 pace,2,hamlet,1600 dismal,2,hamlet,1600 proper,2,hamlet,1600 awe,2,hamlet,1600 gentry,2,hamlet,1600 Fell,2,hamlet,1600 food,2,hamlet,1600 fond,2,hamlet,1600 maiden,2,hamlet,1600 lock,2,hamlet,1600 term,2,hamlet,1600 chance,2,hamlet,1600 fed,2,hamlet,1600 enemies,2,hamlet,1600 behavior,2,hamlet,1600 Larded,2,hamlet,1600 recoveries,2,hamlet,1600 willingly,2,hamlet,1600 lunacy,2,hamlet,1600 broke,2,hamlet,1600 guest,2,hamlet,1600 moves,2,hamlet,1600 precedent,2,hamlet,1600 spoken,2,hamlet,1600 capital,2,hamlet,1600 spokes,2,hamlet,1600 Between,2,hamlet,1600 delicate,2,hamlet,1600 often,2,hamlet,1600 opinions,2,hamlet,1600 unction,2,hamlet,1600 Prologue,2,hamlet,1600 equal,2,hamlet,1600 Virtue,2,hamlet,1600 glow,2,hamlet,1600 forehead,2,hamlet,1600 shouldst,2,hamlet,1600 apprehension,2,hamlet,1600 antique,2,hamlet,1600 broad,2,hamlet,1600 mountains,2,hamlet,1600 sickly,2,hamlet,1600 unknown,2,hamlet,1600 sending,2,hamlet,1600 nose,2,hamlet,1600 patch,2,hamlet,1600 envy,2,hamlet,1600 proceed,2,hamlet,1600 imminent,2,hamlet,1600 opposition,2,hamlet,1600 prodigal,2,hamlet,1600 Peace,2,hamlet,1600 scale,2,hamlet,1600 Pointing,2,hamlet,1600 rate,2,hamlet,1600 spread,2,hamlet,1600 Scripture,2,hamlet,1600 ours,2,hamlet,1600 feature,2,hamlet,1600 kneels,2,hamlet,1600 pastime,2,hamlet,1600 pregnant,2,hamlet,1600 substance,2,hamlet,1600 strike,2,hamlet,1600 picked,2,hamlet,1600 mount,2,hamlet,1600 basket,2,hamlet,1600 garden,2,hamlet,1600 fishmonger,2,hamlet,1600 Set,2,hamlet,1600 say'st,2,hamlet,1600 mouse,2,hamlet,1600 child,2,hamlet,1600 precious,2,hamlet,1600 rugged,2,hamlet,1600 high,2,hamlet,1600 Clowns,2,hamlet,1600 Some,2,hamlet,1600 Arm'd,2,hamlet,1600 fares,2,hamlet,1600 Long,2,hamlet,1600 charitable,2,hamlet,1600 teeth,2,hamlet,1600 strict,2,hamlet,1600 purposes,2,hamlet,1600 escape,2,hamlet,1600 purposed,2,hamlet,1600 blush,2,hamlet,1600 beggar,2,hamlet,1600 nephew's,2,hamlet,1600 reading,2,hamlet,1600 dearest,2,hamlet,1600 kissing,2,hamlet,1600 coward,2,hamlet,1600 thick,2,hamlet,1600 issue,2,hamlet,1600 labour,2,hamlet,1600 purging,2,hamlet,1600 fish,2,hamlet,1600 amazement,2,hamlet,1600 naught,2,hamlet,1600 apart,2,hamlet,1600 trouble,2,hamlet,1600 Rome,2,hamlet,1600 ones,2,hamlet,1600 living,2,hamlet,1600 breed,2,hamlet,1600 knavery,2,hamlet,1600 passage,2,hamlet,1600 sting,2,hamlet,1600 odd,2,hamlet,1600 majesties,2,hamlet,1600 former,2,hamlet,1600 Friends,2,hamlet,1600 dishonour,2,hamlet,1600 fits,2,hamlet,1600 stamp,2,hamlet,1600 capable,2,hamlet,1600 beckons,2,hamlet,1600 diadem,2,hamlet,1600 relieved,2,hamlet,1600 fetch,2,hamlet,1600 ring,2,hamlet,1600 moment,2,hamlet,1600 Dead,2,hamlet,1600 closes,2,hamlet,1600 hearers,2,hamlet,1600 kettle,2,hamlet,1600 sinews,2,hamlet,1600 stick,2,hamlet,1600 wax,2,hamlet,1600 war,2,hamlet,1600 Can,2,hamlet,1600 rise,2,hamlet,1600 actors,2,hamlet,1600 intent,2,hamlet,1600 oath,2,hamlet,1600 mason,2,hamlet,1600 bleed,2,hamlet,1600 wag,2,hamlet,1600 providence,2,hamlet,1600 serve,2,hamlet,1600 ends,2,hamlet,1600 supper,2,hamlet,1600 Throws,2,hamlet,1600 caught,2,hamlet,1600 drowned,2,hamlet,1600 hair,2,hamlet,1600 Gives,2,hamlet,1600 vulgar,2,hamlet,1600 fix'd,2,hamlet,1600 faces,2,hamlet,1600 served,2,hamlet,1600 muddy,2,hamlet,1600 rotten,2,hamlet,1600 inform,2,hamlet,1600 inclination,2,hamlet,1600 lust,2,hamlet,1600 serves,2,hamlet,1600 hundred,2,hamlet,1600 falling,2,hamlet,1600 wrong'd,2,hamlet,1600 'closes,2,hamlet,1600 grass,2,hamlet,1600 hideous,2,hamlet,1600 grieve,2,hamlet,1600 evil,2,hamlet,1600 minds,2,hamlet,1600 character,2,hamlet,1600 union,2,hamlet,1600 giving,2,hamlet,1600 desert,2,hamlet,1600 article,2,hamlet,1600 foe,2,hamlet,1600 daggers,2,hamlet,1600 lasting,2,hamlet,1600 fame,2,hamlet,1600 returns,2,hamlet,1600 pleased,2,hamlet,1600 wounds,2,hamlet,1600 tune,2,hamlet,1600 fighting,2,hamlet,1600 mobled,2,hamlet,1600 passing,2,hamlet,1600 west,2,hamlet,1600 tragical,2,hamlet,1600 'em,2,hamlet,1600 flame,2,hamlet,1600 Drown'd,2,hamlet,1600 Excellent,2,hamlet,1600 vow,2,hamlet,1600 rich,2,hamlet,1600 thunder,2,hamlet,1600 shown,2,hamlet,1600 smooth,2,hamlet,1600 Barbary,2,hamlet,1600 wonted,2,hamlet,1600 lived,2,hamlet,1600 'Good,2,hamlet,1600 salvation,2,hamlet,1600 bird,2,hamlet,1600 allow'd,2,hamlet,1600 prophesy,2,hamlet,1600 fate,2,hamlet,1600 trains,2,hamlet,1600 flames,2,hamlet,1600 weakness,2,hamlet,1600 songs,2,hamlet,1600 fare,2,hamlet,1600 trumpets,2,hamlet,1600 mischance,2,hamlet,1600 farm,2,hamlet,1600 author,2,hamlet,1600 ache,2,hamlet,1600 lap,2,hamlet,1600 Caesar,2,hamlet,1600 talk,2,hamlet,1600 witchcraft,2,hamlet,1600 source,2,hamlet,1600 rapier,2,hamlet,1600 sultry,2,hamlet,1600 empire,2,hamlet,1600 holy,2,hamlet,1600 chapel,2,hamlet,1600 quit,2,hamlet,1600 Lay,2,hamlet,1600 hole,2,hamlet,1600 method,2,hamlet,1600 defect,2,hamlet,1600 Who's,2,hamlet,1600 asking,2,hamlet,1600 streets,2,hamlet,1600 defeat,2,hamlet,1600 horses,2,hamlet,1600 virtues,2,hamlet,1600 favours,2,hamlet,1600 choler,2,hamlet,1600 prayers,2,hamlet,1600 Anon,2,hamlet,1600 hearts,2,hamlet,1600 lungs,2,hamlet,1600 prithee,2,hamlet,1600 seat,2,hamlet,1600 neglected,2,hamlet,1600 sweat,2,hamlet,1600 aloof,2,hamlet,1600 easiness,2,hamlet,1600 needful,2,hamlet,1600 baby,2,hamlet,1600 currents,2,hamlet,1600 goodness,2,hamlet,1600 Seek,2,hamlet,1600 pronounced,2,hamlet,1600 suppress,2,hamlet,1600 marvellous,2,hamlet,1600 'twixt,2,hamlet,1600 arrows,2,hamlet,1600 comply,2,hamlet,1600 cost,2,hamlet,1600 sweep,2,hamlet,1600 Mine,2,hamlet,1600 'Sblood,2,hamlet,1600 arrant,2,hamlet,1600 English,2,hamlet,1600 pestilent,2,hamlet,1600 heavenly,2,hamlet,1600 tree,2,hamlet,1600 hours,2,hamlet,1600 prayer,2,hamlet,1600 remove,2,hamlet,1600 secure,2,hamlet,1600 mirror,2,hamlet,1600 blank,2,hamlet,1600 'One,2,hamlet,1600 Neither,2,hamlet,1600 talk'd,2,hamlet,1600 Roman,2,hamlet,1600 sickness,2,hamlet,1600 blast,2,hamlet,1600 passionate,2,hamlet,1600 March,2,hamlet,1600 chances,2,hamlet,1600 nature's,2,hamlet,1600 'friend,2,hamlet,1600 effects,2,hamlet,1600 servants,2,hamlet,1600 petty,2,hamlet,1600 limbs,2,hamlet,1600 bearers,2,hamlet,1600 guts,2,hamlet,1600 least,2,hamlet,1600 'scape,2,hamlet,1600 forced,2,hamlet,1600 begins,2,hamlet,1600 treacherous,2,hamlet,1600 meeting,2,hamlet,1600 employment,2,hamlet,1600 rights,2,hamlet,1600 burns,2,hamlet,1600 lips,2,hamlet,1600 Away,2,hamlet,1600 beguile,2,hamlet,1600 thither,2,hamlet,1600 truant,2,hamlet,1600 levies,2,hamlet,1600 peep,2,hamlet,1600 hurt,2,hamlet,1600 divinity,2,hamlet,1600 assistant,2,hamlet,1600 overdone,2,hamlet,1600 entreaty,2,hamlet,1600 going,2,hamlet,1600 follow'd,2,hamlet,1600 wildly,2,hamlet,1600 assurance,2,hamlet,1600 'This,2,hamlet,1600 collection,2,hamlet,1600 tardy,2,hamlet,1600 numbers,2,hamlet,1600 reply,2,hamlet,1600 dog,2,hamlet,1600 respect,2,hamlet,1600 asleep,2,hamlet,1600 harsh,2,hamlet,1600 confine,2,hamlet,1600 shipwright,2,hamlet,1600 precepts,2,hamlet,1600 liquor,2,hamlet,1600 toe,2,hamlet,1600 He's,2,hamlet,1600 catch,2,hamlet,1600 lawless,2,hamlet,1600 ha't,2,hamlet,1600 destroy,2,hamlet,1600 toy,2,hamlet,1600 dispatch,2,hamlet,1600 fellowship,2,hamlet,1600 Bring,2,hamlet,1600 venom,2,hamlet,1600 shake,2,hamlet,1600 armed,2,hamlet,1600 frankly,2,hamlet,1600 rewards,2,hamlet,1600 horridly,2,hamlet,1600 jealousy,2,hamlet,1600 Polonius',2,hamlet,1600 Conceit,2,hamlet,1600 repair,2,hamlet,1600 shoes,2,hamlet,1600 obedience,2,hamlet,1600 Voltimand,2,hamlet,1600 Words,2,hamlet,1600 undertake,2,hamlet,1600 crows,2,hamlet,1600 dig,2,hamlet,1600 origin,2,hamlet,1600 majestical,2,hamlet,1600 fortunes,2,hamlet,1600 brave,3,hamlet,1600 ignorance,3,hamlet,1600 guard,3,hamlet,1600 pity,3,hamlet,1600 suffer,3,hamlet,1600 pith,3,hamlet,1600 advice,3,hamlet,1600 fancy,3,hamlet,1600 guilt,3,hamlet,1600 assay,3,hamlet,1600 country,3,hamlet,1600 mistress,3,hamlet,1600 rat,3,hamlet,1600 generous,3,hamlet,1600 Fie,3,hamlet,1600 royal,3,hamlet,1600 offended,3,hamlet,1600 scene,3,hamlet,1600 express,3,hamlet,1600 sleeps,3,hamlet,1600 Stay,3,hamlet,1600 jig,3,hamlet,1600 mere,3,hamlet,1600 gaming,3,hamlet,1600 honourable,3,hamlet,1600 offer,3,hamlet,1600 appear,3,hamlet,1600 Ere,3,hamlet,1600 calls,3,hamlet,1600 thirty,3,hamlet,1600 sort,3,hamlet,1600 odds,3,hamlet,1600 sore,3,hamlet,1600 jest,3,hamlet,1600 years,3,hamlet,1600 incensed,3,hamlet,1600 purse,3,hamlet,1600 corse,3,hamlet,1600 Remember,3,hamlet,1600 cheer,3,hamlet,1600 golden,3,hamlet,1600 gross,3,hamlet,1600 pipe,3,hamlet,1600 officers,3,hamlet,1600 complexion,3,hamlet,1600 addition,3,hamlet,1600 visitation,3,hamlet,1600 I'm,3,hamlet,1600 Denmark's,3,hamlet,1600 ourself,3,hamlet,1600 vice,3,hamlet,1600 suit,3,hamlet,1600 nine,3,hamlet,1600 actor,3,hamlet,1600 worth,3,hamlet,1600 skill,3,hamlet,1600 murderer,3,hamlet,1600 sworn,3,hamlet,1600 winds,3,hamlet,1600 subject,3,hamlet,1600 'I,3,hamlet,1600 counsel,3,hamlet,1600 Their,3,hamlet,1600 livery,3,hamlet,1600 gather,3,hamlet,1600 faults,3,hamlet,1600 Thanks,3,hamlet,1600 Servant,3,hamlet,1600 stuff,3,hamlet,1600 scope,3,hamlet,1600 appear'd,3,hamlet,1600 indifferent,3,hamlet,1600 conceit,3,hamlet,1600 courtier,3,hamlet,1600 ways,3,hamlet,1600 born,3,hamlet,1600 encounter,3,hamlet,1600 loose,3,hamlet,1600 Osric,3,hamlet,1600 white,3,hamlet,1600 Leave,3,hamlet,1600 cries,3,hamlet,1600 Sailor,3,hamlet,1600 ceremony,3,hamlet,1600 soldier,3,hamlet,1600 edge,3,hamlet,1600 dies,3,hamlet,1600 wish,3,hamlet,1600 bold,3,hamlet,1600 anon,3,hamlet,1600 beating,3,hamlet,1600 stop,3,hamlet,1600 steel,3,hamlet,1600 ruled,3,hamlet,1600 book,3,hamlet,1600 parts,3,hamlet,1600 nephew,3,hamlet,1600 bitter,3,hamlet,1600 ha',3,hamlet,1600 chamber,3,hamlet,1600 hat,3,hamlet,1600 aboard,3,hamlet,1600 argal,3,hamlet,1600 delights,3,hamlet,1600 chaste,3,hamlet,1600 boy,3,hamlet,1600 suffers,3,hamlet,1600 canst,3,hamlet,1600 force,3,hamlet,1600 finds,3,hamlet,1600 tear,3,hamlet,1600 Something,3,hamlet,1600 Ha,3,hamlet,1600 piteous,3,hamlet,1600 Ho,3,hamlet,1600 bless,3,hamlet,1600 past,3,hamlet,1600 election,3,hamlet,1600 pit,3,hamlet,1600 proud,3,hamlet,1600 Is't,3,hamlet,1600 prove,3,hamlet,1600 Adieu,3,hamlet,1600 Murder,3,hamlet,1600 sits,3,hamlet,1600 bend,3,hamlet,1600 Sith,3,hamlet,1600 goodly,3,hamlet,1600 cap,3,hamlet,1600 children,3,hamlet,1600 tricks,3,hamlet,1600 bent,3,hamlet,1600 shadow,3,hamlet,1600 Saint,3,hamlet,1600 theme,3,hamlet,1600 About,3,hamlet,1600 ambassadors,3,hamlet,1600 organ,3,hamlet,1600 rapiers,3,hamlet,1600 uses,3,hamlet,1600 solemn,3,hamlet,1600 God's,3,hamlet,1600 story,3,hamlet,1600 sail,3,hamlet,1600 affection,3,hamlet,1600 whereto,3,hamlet,1600 wretch,3,hamlet,1600 Soldiers,3,hamlet,1600 left,3,hamlet,1600 tongues,3,hamlet,1600 liberal,3,hamlet,1600 vouchsafe,3,hamlet,1600 seeming,3,hamlet,1600 stole,3,hamlet,1600 sponge,3,hamlet,1600 ay,3,hamlet,1600 rouse,3,hamlet,1600 feast,3,hamlet,1600 lo,3,hamlet,1600 Reynaldo,3,hamlet,1600 idle,3,hamlet,1600 Poland,3,hamlet,1600 cousin,3,hamlet,1600 morn,3,hamlet,1600 crimes,3,hamlet,1600 loud,3,hamlet,1600 Yea,3,hamlet,1600 Yes,3,hamlet,1600 lest,3,hamlet,1600 lets,3,hamlet,1600 pure,3,hamlet,1600 men's,3,hamlet,1600 wisest,3,hamlet,1600 axe,3,hamlet,1600 outward,3,hamlet,1600 Break,3,hamlet,1600 nation,3,hamlet,1600 Hercules,3,hamlet,1600 thrift,3,hamlet,1600 re,3,hamlet,1600 confession,3,hamlet,1600 Pyrrhus',3,hamlet,1600 shell,3,hamlet,1600 whether,3,hamlet,1600 prepare,3,hamlet,1600 delight,3,hamlet,1600 fiery,3,hamlet,1600 foot,3,hamlet,1600 dreadful,3,hamlet,1600 rogue,3,hamlet,1600 faithful,3,hamlet,1600 creatures,3,hamlet,1600 forms,3,hamlet,1600 armour,3,hamlet,1600 trick,3,hamlet,1600 few,3,hamlet,1600 fee,3,hamlet,1600 hits,3,hamlet,1600 fantasy,3,hamlet,1600 trial,3,hamlet,1600 new,3,hamlet,1600 occasion,3,hamlet,1600 ordnance,3,hamlet,1600 woo't,3,hamlet,1600 hill,3,hamlet,1600 hangers,3,hamlet,1600 Lords,3,hamlet,1600 below,3,hamlet,1600 rash,3,hamlet,1600 tender,3,hamlet,1600 estate,3,hamlet,1600 Alack,3,hamlet,1600 Soft,3,hamlet,1600 borne,3,hamlet,1600 ignorant,3,hamlet,1600 doomsday,3,hamlet,1600 powers,3,hamlet,1600 placed,3,hamlet,1600 historical,3,hamlet,1600 doors,3,hamlet,1600 leaves,3,hamlet,1600 start,3,hamlet,1600 kisses,3,hamlet,1600 foolish,3,hamlet,1600 didst,3,hamlet,1600 process,3,hamlet,1600 chief,3,hamlet,1600 knows,3,hamlet,1600 judgments,3,hamlet,1600 blow,3,hamlet,1600 shoulder,3,hamlet,1600 special,3,hamlet,1600 mountain,3,hamlet,1600 over,3,hamlet,1600 Being,3,hamlet,1600 desires,3,hamlet,1600 Giving,3,hamlet,1600 wed,3,hamlet,1600 Were,3,hamlet,1600 close,3,hamlet,1600 proved,3,hamlet,1600 salt,3,hamlet,1600 neck,3,hamlet,1600 understanding,3,hamlet,1600 sides,3,hamlet,1600 five,3,hamlet,1600 win,3,hamlet,1600 recorders,3,hamlet,1600 hears,3,hamlet,1600 loving,3,hamlet,1600 third,3,hamlet,1600 unseen,3,hamlet,1600 recover,3,hamlet,1600 ducats,3,hamlet,1600 save,3,hamlet,1600 count,3,hamlet,1600 remains,3,hamlet,1600 likes,3,hamlet,1600 'The,3,hamlet,1600 stage,3,hamlet,1600 rage,3,hamlet,1600 wanton,3,hamlet,1600 wont,3,hamlet,1600 wheel,3,hamlet,1600 happy,3,hamlet,1600 wondrous,3,hamlet,1600 consent,3,hamlet,1600 cried,3,hamlet,1600 judge,3,hamlet,1600 tenders,3,hamlet,1600 clay,3,hamlet,1600 fie,3,hamlet,1600 Sweet,3,hamlet,1600 Mark,3,hamlet,1600 profit,3,hamlet,1600 admiration,3,hamlet,1600 ne'er,3,hamlet,1600 assume,3,hamlet,1600 married,3,hamlet,1600 distemper,3,hamlet,1600 ta'en,3,hamlet,1600 unfold,3,hamlet,1600 lines,3,hamlet,1600 patient,3,hamlet,1600 waves,3,hamlet,1600 tame,3,hamlet,1600 Each,3,hamlet,1600 Jephthah,3,hamlet,1600 lights,3,hamlet,1600 affliction,3,hamlet,1600 otherwise,3,hamlet,1600 carry,3,hamlet,1600 accident,3,hamlet,1600 None,3,hamlet,1600 dozen,3,hamlet,1600 green,3,hamlet,1600 unto,3,hamlet,1600 lives,3,hamlet,1600 seal,3,hamlet,1600 along,3,hamlet,1600 inward,3,hamlet,1600 swear,3,hamlet,1600 adieu,3,hamlet,1600 suits,3,hamlet,1600 presence,3,hamlet,1600 feeling,3,hamlet,1600 Truly,3,hamlet,1600 defend,3,hamlet,1600 look'd,3,hamlet,1600 shapes,3,hamlet,1600 fellows,3,hamlet,1600 Believe,3,hamlet,1600 secrecy,3,hamlet,1600 Gentlemen,3,hamlet,1600 'twill,3,hamlet,1600 avoid,3,hamlet,1600 nights,3,hamlet,1600 heels,3,hamlet,1600 entreat,3,hamlet,1600 wretched,3,hamlet,1600 gods,3,hamlet,1600 excellence,3,hamlet,1600 post,3,hamlet,1600 distracted,3,hamlet,1600 whilst,3,hamlet,1600 Importing,3,hamlet,1600 methought,3,hamlet,1600 bestow,3,hamlet,1600 slow,3,hamlet,1600 nonny,3,hamlet,1600 smiling,3,hamlet,1600 burst,3,hamlet,1600 Does,3,hamlet,1600 sovereign,3,hamlet,1600 ladies,3,hamlet,1600 heartily,3,hamlet,1600 withdraw,3,hamlet,1600 liege,3,hamlet,1600 E'en,3,hamlet,1600 flat,3,hamlet,1600 pious,3,hamlet,1600 sleeping,3,hamlet,1600 revenged,3,hamlet,1600 content,3,hamlet,1600 corruption,3,hamlet,1600 honour'd,3,hamlet,1600 Together,3,hamlet,1600 dry,3,hamlet,1600 liest,3,hamlet,1600 Gonzago,3,hamlet,1600 Too,3,hamlet,1600 LUCIANUS,3,hamlet,1600 ambitious,3,hamlet,1600 tempt,3,hamlet,1600 dew,3,hamlet,1600 drown'd,3,hamlet,1600 justly,3,hamlet,1600 order,3,hamlet,1600 turn'd,3,hamlet,1600 enemy,3,hamlet,1600 treason,4,hamlet,1600 quality,4,hamlet,1600 V,4,hamlet,1600 motion,4,hamlet,1600 leisure,4,hamlet,1600 possible,4,hamlet,1600 treasure,4,hamlet,1600 Whether,4,hamlet,1600 bones,4,hamlet,1600 spade,4,hamlet,1600 Tell,4,hamlet,1600 violent,4,hamlet,1600 throat,4,hamlet,1600 Sailors,4,hamlet,1600 birth,4,hamlet,1600 grown,4,hamlet,1600 grows,4,hamlet,1600 heat,4,hamlet,1600 fingers,4,hamlet,1600 making,4,hamlet,1600 visit,4,hamlet,1600 six,4,hamlet,1600 Get,4,hamlet,1600 warrant,4,hamlet,1600 deliver,4,hamlet,1600 sends,4,hamlet,1600 read,4,hamlet,1600 fight,4,hamlet,1600 snow,4,hamlet,1600 bore,4,hamlet,1600 habit,4,hamlet,1600 direct,4,hamlet,1600 Whereon,4,hamlet,1600 above,4,hamlet,1600 infinite,4,hamlet,1600 'Faith,4,hamlet,1600 brief,4,hamlet,1600 Behind,4,hamlet,1600 choose,4,hamlet,1600 seems,4,hamlet,1600 length,4,hamlet,1600 hence,4,hamlet,1600 incestuous,4,hamlet,1600 died,4,hamlet,1600 property,4,hamlet,1600 cunning,4,hamlet,1600 wits,4,hamlet,1600 tend,4,hamlet,1600 sigh,4,hamlet,1600 'Twere,4,hamlet,1600 Ah,4,hamlet,1600 pay,4,hamlet,1600 shortly,4,hamlet,1600 unnatural,4,hamlet,1600 Still,4,hamlet,1600 lands,4,hamlet,1600 kept,4,hamlet,1600 begun,4,hamlet,1600 flowers,4,hamlet,1600 pleasure,4,hamlet,1600 meant,4,hamlet,1600 fortune's,4,hamlet,1600 ease,4,hamlet,1600 pate,4,hamlet,1600 Let's,4,hamlet,1600 quantity,4,hamlet,1600 weep,4,hamlet,1600 sorry,4,hamlet,1600 Polack,4,hamlet,1600 Danes,4,hamlet,1600 wear,4,hamlet,1600 Wittenberg,4,hamlet,1600 twice,4,hamlet,1600 herein,4,hamlet,1600 stronger,4,hamlet,1600 Both,4,hamlet,1600 quite,4,hamlet,1600 deep,4,hamlet,1600 instant,4,hamlet,1600 image,4,hamlet,1600 ha,4,hamlet,1600 gallows,4,hamlet,1600 burial,4,hamlet,1600 Here's,4,hamlet,1600 favour,4,hamlet,1600 violence,4,hamlet,1600 gain,4,hamlet,1600 seeing,4,hamlet,1600 lend,4,hamlet,1600 speed,4,hamlet,1600 forget,4,hamlet,1600 thyself,4,hamlet,1600 commend,4,hamlet,1600 month,4,hamlet,1600 drift,4,hamlet,1600 twenty,4,hamlet,1600 ready,4,hamlet,1600 commandment,4,hamlet,1600 thrice,4,hamlet,1600 hall,4,hamlet,1600 half,4,hamlet,1600 weeds,4,hamlet,1600 hang,4,hamlet,1600 prince,4,hamlet,1600 four,4,hamlet,1600 arm,4,hamlet,1600 present,4,hamlet,1600 return'd,4,hamlet,1600 mock,4,hamlet,1600 bosom,4,hamlet,1600 puts,4,hamlet,1600 except,4,hamlet,1600 ass,4,hamlet,1600 secret,4,hamlet,1600 native,4,hamlet,1600 here's,4,hamlet,1600 change,4,hamlet,1600 lead,4,hamlet,1600 Into,4,hamlet,1600 Should,4,hamlet,1600 keeps,4,hamlet,1600 main,4,hamlet,1600 nay,4,hamlet,1600 Against,4,hamlet,1600 rose,4,hamlet,1600 silence,4,hamlet,1600 wonder,4,hamlet,1600 entertainment,4,hamlet,1600 hide,4,hamlet,1600 you'll,4,hamlet,1600 freely,4,hamlet,1600 Doth,4,hamlet,1600 See,4,hamlet,1600 mortal,4,hamlet,1600 soldiers,4,hamlet,1600 stars,4,hamlet,1600 Makes,4,hamlet,1600 'gainst,4,hamlet,1600 mass,4,hamlet,1600 slave,4,hamlet,1600 need,4,hamlet,1600 horrible,4,hamlet,1600 pause,4,hamlet,1600 wi',4,hamlet,1600 flourish,4,hamlet,1600 next,4,hamlet,1600 cursed,4,hamlet,1600 dreams,4,hamlet,1600 Heaven,4,hamlet,1600 prologue,4,hamlet,1600 angel,4,hamlet,1600 glad,4,hamlet,1600 fain,4,hamlet,1600 modesty,4,hamlet,1600 methinks,4,hamlet,1600 worm,4,hamlet,1600 Fare,4,hamlet,1600 wide,4,hamlet,1600 Unto,4,hamlet,1600 Mother,4,hamlet,1600 poison'd,4,hamlet,1600 practise,4,hamlet,1600 Beneath,4,hamlet,1600 censure,4,hamlet,1600 Welcome,4,hamlet,1600 ecstasy,4,hamlet,1600 tale,4,hamlet,1600 Priam,4,hamlet,1600 cup,4,hamlet,1600 wild,4,hamlet,1600 holds,4,hamlet,1600 follows,4,hamlet,1600 argument,4,hamlet,1600 strong,4,hamlet,1600 discretion,4,hamlet,1600 cry,4,hamlet,1600 person,4,hamlet,1600 blame,4,hamlet,1600 funeral,4,hamlet,1600 send,4,hamlet,1600 affair,4,hamlet,1600 Two,4,hamlet,1600 brow,4,hamlet,1600 Nothing,4,hamlet,1600 eat,4,hamlet,1600 imagination,4,hamlet,1600 clouds,4,hamlet,1600 imports,4,hamlet,1600 consequence,4,hamlet,1600 straight,4,hamlet,1600 maker,4,hamlet,1600 Before,4,hamlet,1600 thinking,4,hamlet,1600 sometimes,4,hamlet,1600 Mad,4,hamlet,1600 Hecuba,4,hamlet,1600 impart,4,hamlet,1600 spring,4,hamlet,1600 Thy,4,hamlet,1600 perchance,4,hamlet,1600 frame,4,hamlet,1600 months,4,hamlet,1600 certain,4,hamlet,1600 ten,4,hamlet,1600 kill,4,hamlet,1600 remembrance,4,hamlet,1600 pastoral,4,hamlet,1600 breathe,4,hamlet,1600 perhaps,4,hamlet,1600 told,5,hamlet,1600 c,5,hamlet,1600 took,5,hamlet,1600 horse,5,hamlet,1600 rather,5,hamlet,1600 truly,5,hamlet,1600 Must,5,hamlet,1600 gracious,5,hamlet,1600 trumpet,5,hamlet,1600 hearing,5,hamlet,1600 teach,5,hamlet,1600 stands,5,hamlet,1600 bound,5,hamlet,1600 'twas,5,hamlet,1600 Such,5,hamlet,1600 countenance,5,hamlet,1600 vile,5,hamlet,1600 France,5,hamlet,1600 Out,5,hamlet,1600 twelve,5,hamlet,1600 figure,5,hamlet,1600 kill'd,5,hamlet,1600 fault,5,hamlet,1600 terms,5,hamlet,1600 humbly,5,hamlet,1600 flesh,5,hamlet,1600 French,5,hamlet,1600 colour,5,hamlet,1600 Follow,5,hamlet,1600 sick,5,hamlet,1600 stir,5,hamlet,1600 morning,5,hamlet,1600 drown,5,hamlet,1600 Hold,5,hamlet,1600 patience,5,hamlet,1600 in's,5,hamlet,1600 to't,5,hamlet,1600 bid,5,hamlet,1600 quiet,5,hamlet,1600 god,5,hamlet,1600 behind,5,hamlet,1600 Dies,5,hamlet,1600 nunnery,5,hamlet,1600 longer,5,hamlet,1600 sing,5,hamlet,1600 begin,5,hamlet,1600 confess,5,hamlet,1600 stood,5,hamlet,1600 Alexander,5,hamlet,1600 damn'd,5,hamlet,1600 carriages,5,hamlet,1600 Reads,5,hamlet,1600 moon,5,hamlet,1600 knew,5,hamlet,1600 forgot,5,hamlet,1600 hard,5,hamlet,1600 natural,5,hamlet,1600 liberty,5,hamlet,1600 forth,5,hamlet,1600 course,5,hamlet,1600 ye,5,hamlet,1600 arras,5,hamlet,1600 march,5,hamlet,1600 Madam,5,hamlet,1600 report,5,hamlet,1600 gentle,5,hamlet,1600 year,5,hamlet,1600 visage,5,hamlet,1600 Therefore,5,hamlet,1600 Dost,5,hamlet,1600 yours,5,hamlet,1600 knave,5,hamlet,1600 Could,5,hamlet,1600 there's,5,hamlet,1600 presently,5,hamlet,1600 brains,5,hamlet,1600 get,5,hamlet,1600 throw,5,hamlet,1600 break,5,hamlet,1600 morrow,5,hamlet,1600 closet,5,hamlet,1600 Say,5,hamlet,1600 Priest,5,hamlet,1600 audience,5,hamlet,1600 themselves,5,hamlet,1600 found,5,hamlet,1600 danger,5,hamlet,1600 Shall,5,hamlet,1600 dumb,5,hamlet,1600 disposition,5,hamlet,1600 went,5,hamlet,1600 gifts,5,hamlet,1600 Bernardo,5,hamlet,1600 safety,5,hamlet,1600 base,5,hamlet,1600 cock,5,hamlet,1600 motive,5,hamlet,1600 fast,5,hamlet,1600 man's,5,hamlet,1600 short,5,hamlet,1600 dangerous,5,hamlet,1600 gives,5,hamlet,1600 commission,5,hamlet,1600 kingdom,5,hamlet,1600 we'll,5,hamlet,1600 whom,5,hamlet,1600 platform,5,hamlet,1600 souls,5,hamlet,1600 return,5,hamlet,1600 prison,5,hamlet,1600 season,5,hamlet,1600 honesty,5,hamlet,1600 spirits,5,hamlet,1600 dread,5,hamlet,1600 Messenger,5,hamlet,1600 warlike,5,hamlet,1600 Without,5,hamlet,1600 try,5,hamlet,1600 dare,5,hamlet,1600 sudden,5,hamlet,1600 land,5,hamlet,1600 blessing,5,hamlet,1600 shalt,5,hamlet,1600 cannon,5,hamlet,1600 wouldst,5,hamlet,1600 double,6,hamlet,1600 writ,6,hamlet,1600 wicked,6,hamlet,1600 health,6,hamlet,1600 withal,6,hamlet,1600 laugh,6,hamlet,1600 lies,6,hamlet,1600 damned,6,hamlet,1600 truth,6,hamlet,1600 cast,6,hamlet,1600 mercy,6,hamlet,1600 circumstance,6,hamlet,1600 toward,6,hamlet,1600 soft,6,hamlet,1600 wager,6,hamlet,1600 CORNELIUS,6,hamlet,1600 wrong,6,hamlet,1600 foils,6,hamlet,1600 brain,6,hamlet,1600 piece,6,hamlet,1600 Wherein,6,hamlet,1600 feed,6,hamlet,1600 false,6,hamlet,1600 One,6,hamlet,1600 Though,6,hamlet,1600 Dane,6,hamlet,1600 What's,6,hamlet,1600 desperate,6,hamlet,1600 bad,6,hamlet,1600 proof,6,hamlet,1600 star,6,hamlet,1600 Her,6,hamlet,1600 wisdom,6,hamlet,1600 hit,6,hamlet,1600 pass,6,hamlet,1600 struck,6,hamlet,1600 vows,6,hamlet,1600 Danish,6,hamlet,1600 ghost,6,hamlet,1600 buried,6,hamlet,1600 door,6,hamlet,1600 move,6,hamlet,1600 Elsinore,6,hamlet,1600 bodies,6,hamlet,1600 ill,6,hamlet,1600 lose,6,hamlet,1600 hot,6,hamlet,1600 choice,6,hamlet,1600 brought,6,hamlet,1600 discourse,6,hamlet,1600 speaks,6,hamlet,1600 round,6,hamlet,1600 Christian,6,hamlet,1600 pale,6,hamlet,1600 More,6,hamlet,1600 point,6,hamlet,1600 touch,6,hamlet,1600 fat,6,hamlet,1600 maid,6,hamlet,1600 note,6,hamlet,1600 beast,6,hamlet,1600 beard,6,hamlet,1600 slain,6,hamlet,1600 mouth,6,hamlet,1600 already,6,hamlet,1600 dream,6,hamlet,1600 let's,6,hamlet,1600 seal'd,6,hamlet,1600 letters,6,hamlet,1600 wit,6,hamlet,1600 sorrow,6,hamlet,1600 court,6,hamlet,1600 only,6,hamlet,1600 ambition,6,hamlet,1600 what's,6,hamlet,1600 poison,6,hamlet,1600 dull,6,hamlet,1600 guilty,6,hamlet,1600 table,6,hamlet,1600 That's,6,hamlet,1600 fly,6,hamlet,1600 shows,6,hamlet,1600 herself,6,hamlet,1600 pardon,6,hamlet,1600 home,6,hamlet,1600 either,6,hamlet,1600 Gentleman,6,hamlet,1600 sound,6,hamlet,1600 Pray,6,hamlet,1600 house,6,hamlet,1600 mother's,6,hamlet,1600 cold,6,hamlet,1600 Another,6,hamlet,1600 sister,6,hamlet,1600 Since,6,hamlet,1600 marriage,6,hamlet,1600 beauty,6,hamlet,1600 list,6,hamlet,1600 laid,6,hamlet,1600 Marcellus,6,hamlet,1600 shape,6,hamlet,1600 lack,6,hamlet,1600 crown,6,hamlet,1600 days,7,hamlet,1600 tears,7,hamlet,1600 understand,7,hamlet,1600 Players,7,hamlet,1600 conscience,7,hamlet,1600 noise,7,hamlet,1600 black,7,hamlet,1600 sit,7,hamlet,1600 enough,7,hamlet,1600 'twere,7,hamlet,1600 fell,7,hamlet,1600 Rosencrantz,7,hamlet,1600 Was,7,hamlet,1600 't,7,hamlet,1600 looks,7,hamlet,1600 These,7,hamlet,1600 turn,7,hamlet,1600 common,7,hamlet,1600 king's,7,hamlet,1600 falls,7,hamlet,1600 others,7,hamlet,1600 Pyrrhus,7,hamlet,1600 III,7,hamlet,1600 An,7,hamlet,1600 VOLTIMAND,7,hamlet,1600 II,7,hamlet,1600 beg,7,hamlet,1600 whole,7,hamlet,1600 Had,7,hamlet,1600 obey,7,hamlet,1600 Like,7,hamlet,1600 needs,7,hamlet,1600 loves,7,hamlet,1600 loved,7,hamlet,1600 fool,7,hamlet,1600 thanks,7,hamlet,1600 rank,7,hamlet,1600 water,7,hamlet,1600 general,7,hamlet,1600 effect,7,hamlet,1600 bloody,7,hamlet,1600 We'll,7,hamlet,1600 beseech,7,hamlet,1600 heavy,7,hamlet,1600 dust,7,hamlet,1600 receive,7,hamlet,1600 brother's,7,hamlet,1600 coming,7,hamlet,1600 wholesome,7,hamlet,1600 Swear,7,hamlet,1600 Very,7,hamlet,1600 law,7,hamlet,1600 lay,7,hamlet,1600 PRINCE,7,hamlet,1600 seek,7,hamlet,1600 madam,7,hamlet,1600 Polonius,7,hamlet,1600 Marry,7,hamlet,1600 top,7,hamlet,1600 woman,7,hamlet,1600 die,7,hamlet,1600 And,263,hamlet,1600 meet,8,hamlet,1600 times,8,hamlet,1600 joy,8,hamlet,1600 Never,8,hamlet,1600 charge,8,hamlet,1600 sure,8,hamlet,1600 came,8,hamlet,1600 sea,8,hamlet,1600 doubt,8,hamlet,1600 heavens,8,hamlet,1600 sun,8,hamlet,1600 grow,8,hamlet,1600 service,8,hamlet,1600 custom,8,hamlet,1600 desire,8,hamlet,1600 he's,8,hamlet,1600 each,8,hamlet,1600 music,8,hamlet,1600 neither,8,hamlet,1600 stay,8,hamlet,1600 On,8,hamlet,1600 quick,8,hamlet,1600 gave,8,hamlet,1600 Speak,8,hamlet,1600 farewell,8,hamlet,1600 excellent,8,hamlet,1600 husband,8,hamlet,1600 lost,8,hamlet,1600 less,8,hamlet,1600 shot,8,hamlet,1600 Are,8,hamlet,1600 judgment,8,hamlet,1600 Hath,8,hamlet,1600 through,8,hamlet,1600 known,8,hamlet,1600 woe,8,hamlet,1600 says,8,hamlet,1600 takes,8,hamlet,1600 Even,8,hamlet,1600 fall,8,hamlet,1600 particular,8,hamlet,1600 lordship,8,hamlet,1600 hour,8,hamlet,1600 hope,8,hamlet,1600 wilt,8,hamlet,1600 wife,8,hamlet,1600 back,8,hamlet,1600 Hamlet's,8,hamlet,1600 fashion,8,hamlet,1600 shame,8,hamlet,1600 power,8,hamlet,1600 e'en,8,hamlet,1600 Alas,9,hamlet,1600 peace,9,hamlet,1600 help,9,hamlet,1600 sight,9,hamlet,1600 draw,9,hamlet,1600 brother,9,hamlet,1600 light,9,hamlet,1600 walk,9,hamlet,1600 Farewell,9,hamlet,1600 Attendants,9,hamlet,1600 offence,9,hamlet,1600 in't,9,hamlet,1600 ears,9,hamlet,1600 Re,9,hamlet,1600 dost,9,hamlet,1600 breath,9,hamlet,1600 age,9,hamlet,1600 devil,9,hamlet,1600 place,9,hamlet,1600 King,9,hamlet,1600 almost,9,hamlet,1600 She,9,hamlet,1600 near,9,hamlet,1600 Thus,9,hamlet,1600 arms,9,hamlet,1600 marry,9,hamlet,1600 Make,9,hamlet,1600 Till,9,hamlet,1600 three,9,hamlet,1600 do't,9,hamlet,1600 gentlemen,9,hamlet,1600 given,9,hamlet,1600 thank,9,hamlet,1600 alone,9,hamlet,1600 seem,9,hamlet,1600 hither,9,hamlet,1600 together,9,hamlet,1600 remember,9,hamlet,1600 Captain,9,hamlet,1600 on't,9,hamlet,1600 Indeed,9,hamlet,1600 being,9,hamlet,1600 May,9,hamlet,1600 strange,9,hamlet,1600 Take,9,hamlet,1600 hell,10,hamlet,1600 every,10,hamlet,1600 while,10,hamlet,1600 Whose,10,hamlet,1600 another,10,hamlet,1600 full,10,hamlet,1600 second,10,hamlet,1600 fellow,10,hamlet,1600 honour,10,hamlet,1600 bring,10,hamlet,1600 murder,10,hamlet,1600 therefore,10,hamlet,1600 Within,10,hamlet,1600 since,10,hamlet,1600 IV,10,hamlet,1600 memory,10,hamlet,1600 that's,10,hamlet,1600 Guildenstern,10,hamlet,1600 revenge,10,hamlet,1600 FRANCISCO,10,hamlet,1600 faith,10,hamlet,1600 action,10,hamlet,1600 none,10,hamlet,1600 things,10,hamlet,1600 ere,10,hamlet,1600 free,10,hamlet,1600 news,10,hamlet,1600 ground,10,hamlet,1600 fortune,10,hamlet,1600 fine,10,hamlet,1600 uncle,10,hamlet,1600 honest,10,hamlet,1600 aught,10,hamlet,1600 skull,10,hamlet,1600 lie,10,hamlet,1600 phrase,10,hamlet,1600 command,10,hamlet,1600 that,266,hamlet,1600 business,11,hamlet,1600 thought,11,hamlet,1600 villain,11,hamlet,1600 FORTINBRAS,11,hamlet,1600 saw,11,hamlet,1600 something,11,hamlet,1600 Aside,11,hamlet,1600 Here,11,hamlet,1600 wind,11,hamlet,1600 friend,11,hamlet,1600 mean,11,hamlet,1600 enter,11,hamlet,1600 best,11,hamlet,1600 deed,11,hamlet,1600 o',11,hamlet,1600 Yet,11,hamlet,1600 ho,11,hamlet,1600 foul,11,hamlet,1600 right,11,hamlet,1600 far,11,hamlet,1600 From,11,hamlet,1600 Sir,11,hamlet,1600 Queen,11,hamlet,1600 oft,11,hamlet,1600 way,11,hamlet,1600 face,11,hamlet,1600 work,11,hamlet,1600 passion,11,hamlet,1600 till,11,hamlet,1600 thousand,11,hamlet,1600 goes,11,hamlet,1600 sleep,11,hamlet,1600 men,11,hamlet,1600 late,11,hamlet,1600 virtue,11,hamlet,1600 haste,12,hamlet,1600 Would,12,hamlet,1600 further,12,hamlet,1600 Our,12,hamlet,1600 after,12,hamlet,1600 sense,12,hamlet,1600 voice,12,hamlet,1600 At,12,hamlet,1600 name,12,hamlet,1600 hands,12,hamlet,1600 Most,12,hamlet,1600 form,12,hamlet,1600 Thou,12,hamlet,1600 awhile,12,hamlet,1600 myself,12,hamlet,1600 mind,12,hamlet,1600 All,12,hamlet,1600 mark,12,hamlet,1600 fire,12,hamlet,1600 same,12,hamlet,1600 thine,12,hamlet,1600 please,12,hamlet,1600 fit,12,hamlet,1600 Fortinbras,12,hamlet,1600 gentleman,12,hamlet,1600 purpose,12,hamlet,1600 kind,12,hamlet,1600 lady,12,hamlet,1600 answer,13,hamlet,1600 Norway,13,hamlet,1600 ourselves,13,hamlet,1600 Gertrude,13,hamlet,1600 There's,13,hamlet,1600 grief,13,hamlet,1600 air,13,hamlet,1600 bear,13,hamlet,1600 welcome,13,hamlet,1600 Than,13,hamlet,1600 castle,13,hamlet,1600 Look,13,hamlet,1600 stand,13,hamlet,1600 Well,13,hamlet,1600 duty,13,hamlet,1600 between,13,hamlet,1600 word,13,hamlet,1600 sent,13,hamlet,1600 last,13,hamlet,1600 Sings,13,hamlet,1600 Did,13,hamlet,1600 drink,14,hamlet,1600 Who,14,hamlet,1600 There,14,hamlet,1600 rest,14,hamlet,1600 bed,14,hamlet,1600 gone,14,hamlet,1600 Second,14,hamlet,1600 act,14,hamlet,1600 grace,14,hamlet,1600 room,14,hamlet,1600 heard,14,hamlet,1600 ever,14,hamlet,1600 reason,14,hamlet,1600 makes,14,hamlet,1600 spirit,14,hamlet,1600 Upon,15,hamlet,1600 yourself,15,hamlet,1600 Not,15,hamlet,1600 better,15,hamlet,1600 about,15,hamlet,1600 has,15,hamlet,1600 tongue,15,hamlet,1600 said,15,hamlet,1600 long,15,hamlet,1600 hast,15,hamlet,1600 watch,15,hamlet,1600 eye,15,hamlet,1600 young,15,hamlet,1600 youth,15,hamlet,1600 question,15,hamlet,1600 state,15,hamlet,1600 still,15,hamlet,1600 why,15,hamlet,1600 is't,15,hamlet,1600 use,15,hamlet,1600 players,15,hamlet,1600 live,15,hamlet,1600 without,15,hamlet,1600 speech,16,hamlet,1600 Nor,16,hamlet,1600 daughter,16,hamlet,1600 sword,16,hamlet,1600 Be,16,hamlet,1600 art,16,hamlet,1600 REYNALDO,16,hamlet,1600 Have,16,hamlet,1600 majesty,16,hamlet,1600 believe,16,hamlet,1600 even,16,hamlet,1600 first,16,hamlet,1600 thoughts,16,hamlet,1600 follow,16,hamlet,1600 other,16,hamlet,1600 Will,17,hamlet,1600 body,17,hamlet,1600 cause,17,hamlet,1600 else,17,hamlet,1600 His,17,hamlet,1600 any,17,hamlet,1600 noble,17,hamlet,1600 Your,17,hamlet,1600 end,17,hamlet,1600 once,17,hamlet,1600 before,17,hamlet,1600 grave,17,hamlet,1600 find,17,hamlet,1600 ear,17,hamlet,1600 mad,17,hamlet,1600 o'er,18,hamlet,1600 friends,18,hamlet,1600 words,18,hamlet,1600 within,18,hamlet,1600 By,18,hamlet,1600 never,18,hamlet,1600 Go,18,hamlet,1600 keep,18,hamlet,1600 little,18,hamlet,1600 though,18,hamlet,1600 Lord,18,hamlet,1600 many,18,hamlet,1600 father's,18,hamlet,1600 against,19,hamlet,1600 fear,19,hamlet,1600 blood,19,hamlet,1600 hand,19,hamlet,1600 Then,19,hamlet,1600 old,19,hamlet,1600 Give,20,hamlet,1600 call,20,hamlet,1600 set,20,hamlet,1600 means,20,hamlet,1600 those,20,hamlet,1600 ACT,20,hamlet,1600 Ophelia,20,hamlet,1600 England,20,hamlet,1600 poor,20,hamlet,1600 himself,20,hamlet,1600 madness,21,hamlet,1600 Player,21,hamlet,1600 Which,21,hamlet,1600 nor,21,hamlet,1600 fair,21,hamlet,1600 two,21,hamlet,1600 SCENE,21,hamlet,1600 Nay,22,hamlet,1600 son,22,hamlet,1600 both,22,hamlet,1600 whose,22,hamlet,1600 put,22,hamlet,1600 done,22,hamlet,1600 show,22,hamlet,1600 indeed,22,hamlet,1600 off,22,hamlet,1600 eyes,22,hamlet,1600 seen,22,hamlet,1600 sweet,22,hamlet,1600 Now,23,hamlet,1600 away,23,hamlet,1600 itself,23,hamlet,1600 Denmark,23,hamlet,1600 doth,23,hamlet,1600 i',23,hamlet,1600 look,23,hamlet,1600 does,23,hamlet,1600 comes,23,hamlet,1600 They,23,hamlet,1600 pray,24,hamlet,1600 world,24,hamlet,1600 Do,24,hamlet,1600 earth,24,hamlet,1600 part,24,hamlet,1600 day,24,hamlet,1600 hold,24,hamlet,1600 true,24,hamlet,1600 head,25,hamlet,1600 Good,25,hamlet,1600 thing,25,hamlet,1600 'Tis,25,hamlet,1600 were,25,hamlet,1600 Ghost,25,hamlet,1600 leave,25,hamlet,1600 When,25,hamlet,1600 his,281,hamlet,1600 nothing,26,hamlet,1600 been,26,hamlet,1600 BERNARDO,26,hamlet,1600 who,26,hamlet,1600 queen,26,hamlet,1600 great,26,hamlet,1600 take,26,hamlet,1600 Where,26,hamlet,1600 nature,26,hamlet,1600 matter,27,hamlet,1600 Is,27,hamlet,1600 into,27,hamlet,1600 could,27,hamlet,1600 cannot,27,hamlet,1600 dear,28,hamlet,1600 Come,29,hamlet,1600 We,29,hamlet,1600 God,29,hamlet,1600 OSRIC,29,hamlet,1600 when,29,hamlet,1600 Horatio,30,hamlet,1600 made,30,hamlet,1600 where,30,hamlet,1600 heart,30,hamlet,1600 might,30,hamlet,1600 dead,31,hamlet,1600 life,32,hamlet,1600 hear,32,hamlet,1600 Laertes,32,hamlet,1600 down,32,hamlet,1600 Or,32,hamlet,1600 again,32,hamlet,1600 thus,32,hamlet,1600 yet,33,hamlet,1600 soul,34,hamlet,1600 can,34,hamlet,1600 how,34,hamlet,1600 I,546,hamlet,1600 Ay,35,hamlet,1600 mine,35,hamlet,1600 Let,35,hamlet,1600 mother,36,hamlet,1600 In,36,hamlet,1600 Exeunt,36,hamlet,1600 she,37,hamlet,1600 up,37,hamlet,1600 own,37,hamlet,1600 death,38,hamlet,1600 than,38,hamlet,1600 had,38,hamlet,1600 give,38,hamlet,1600 tell,39,hamlet,1600 play,39,hamlet,1600 Exit,39,hamlet,1600 upon,40,hamlet,1600 heaven,40,hamlet,1600 one,40,hamlet,1600 MARCELLUS,41,hamlet,1600 these,41,hamlet,1600 Of,41,hamlet,1600 He,41,hamlet,1600 see,42,hamlet,1600 which,43,hamlet,1600 here,43,hamlet,1600 not,299,hamlet,1600 With,44,hamlet,1600 No,44,hamlet,1600 If,44,hamlet,1600 then,45,hamlet,1600 So,45,hamlet,1600 time,45,hamlet,1600 'tis,46,hamlet,1600 think,46,hamlet,1600 Why,47,hamlet,1600 night,47,hamlet,1600 make,47,hamlet,1600 This,47,hamlet,1600 Clown,48,hamlet,1600 too,48,hamlet,1600 much,49,hamlet,1600 say,49,hamlet,1600 ',50,hamlet,1600 out,50,hamlet,1600 You,51,hamlet,1600 am,51,hamlet,1600 an,51,hamlet,1600 man,51,hamlet,1600 some,52,hamlet,1600 such,52,hamlet,1600 go,52,hamlet,1600 father,52,hamlet,1600 did,52,hamlet,1600 should,53,hamlet,1600 First,54,hamlet,1600 hath,54,hamlet,1600 It,55,hamlet,1600 their,55,hamlet,1600 speak,55,hamlet,1600 GUILDENSTERN,55,hamlet,1600 must,56,hamlet,1600 How,56,hamlet,1600 I'll,56,hamlet,1600 is,313,hamlet,1600 very,58,hamlet,1600 thee,59,hamlet,1600 let,60,hamlet,1600 Enter,61,hamlet,1600 there,62,hamlet,1600 may,62,hamlet,1600 sir,64,hamlet,1600 well,65,hamlet,1600 For,66,hamlet,1600 love,67,hamlet,1600 OPHELIA,67,hamlet,1600 would,67,hamlet,1600 if,69,hamlet,1600 us,69,hamlet,1600 king,69,hamlet,1600 ROSENCRANTZ,70,hamlet,1600 most,70,hamlet,1600 LAERTES,72,hamlet,1600 As,73,hamlet,1600 My,73,hamlet,1600 know,73,hamlet,1600 them,75,hamlet,1600 at,75,hamlet,1600 now,75,hamlet,1600 was,76,hamlet,1600 Hamlet,77,hamlet,1600 come,77,hamlet,1600 like,78,hamlet,1600 A,80,hamlet,1600 they,80,hamlet,1600 good,82,hamlet,1600 or,82,hamlet,1600 GERTRUDE,83,hamlet,1600 QUEEN,83,hamlet,1600 thy,83,hamlet,1600 from,84,hamlet,1600 her,85,hamlet,1600 LORD,87,hamlet,1600 more,90,hamlet,1600 What,90,hamlet,1600 thou,91,hamlet,1600 no,98,hamlet,1600 by,99,hamlet,1600 it,361,hamlet,1600 But,107,hamlet,1600 our,107,hamlet,1600 all,108,hamlet,1600 shall,109,hamlet,1600 we,110,hamlet,1600 O,112,hamlet,1600 POLONIUS,114,hamlet,1600 what,116,hamlet,1600 of,630,hamlet,1600 on,120,hamlet,1600 KING,121,hamlet,1600 CLAUDIUS,122,hamlet,1600 are,123,hamlet,1600 to,635,hamlet,1600 That,125,hamlet,1600 do,127,hamlet,1600 HORATIO,128,hamlet,1600 To,128,hamlet,1600 in,400,hamlet,1600 The,148,hamlet,1600 HAMLET,407,hamlet,1600 so,152,hamlet,1600 will,152,hamlet,1600 as,154,hamlet,1600 but,162,hamlet,1600 have,165,hamlet,1600 he,178,hamlet,1600 for,181,hamlet,1600 my,441,hamlet,1600 and,706,hamlet,1600 him,197,hamlet,1600 lord,207,hamlet,1600 a,466,hamlet,1600 be,212,hamlet,1600 with,224,hamlet,1600 your,225,hamlet,1600 the,995,hamlet,1600 me,234,hamlet,1600 you,499,hamlet,1600 this,248,hamlet,1600 intermission,1,macbeth,1603 attended,1,macbeth,1603 augment,1,macbeth,1603 surmise,1,macbeth,1603 event,1,macbeth,1603 slope,1,macbeth,1603 grandam,1,macbeth,1603 assailable,1,macbeth,1603 told,1,macbeth,1603 sleeve,1,macbeth,1603 washing,1,macbeth,1603 unwelcome,1,macbeth,1603 viewing,1,macbeth,1603 direst,1,macbeth,1603 staves,1,macbeth,1603 Reigns,1,macbeth,1603 parted,1,macbeth,1603 name's,1,macbeth,1603 snares,1,macbeth,1603 halfworld,1,macbeth,1603 meek,1,macbeth,1603 witness'd,1,macbeth,1603 swords,1,macbeth,1603 guise,1,macbeth,1603 happier,1,macbeth,1603 rebuked,1,macbeth,1603 confused,1,macbeth,1603 invisible,1,macbeth,1603 address'd,1,macbeth,1603 join,1,macbeth,1603 coign,1,macbeth,1603 ports,1,macbeth,1603 yawning,1,macbeth,1603 Vaulting,1,macbeth,1603 furbish'd,1,macbeth,1603 basis,1,macbeth,1603 marrowless,1,macbeth,1603 took,1,macbeth,1603 infected,1,macbeth,1603 echo,1,macbeth,1603 thou'dst,1,macbeth,1603 dames,1,macbeth,1603 composition,1,macbeth,1603 motion,1,macbeth,1603 Loves,1,macbeth,1603 Ditch,1,macbeth,1603 assay,1,macbeth,1603 direful,1,macbeth,1603 Head,1,macbeth,1603 tremble,1,macbeth,1603 weary,1,macbeth,1603 contradict,1,macbeth,1603 'ild,1,macbeth,1603 wears,1,macbeth,1603 prophet,1,macbeth,1603 planted,1,macbeth,1603 rat,1,macbeth,1603 especially,1,macbeth,1603 vizards,1,macbeth,1603 treasure,1,macbeth,1603 Days,1,macbeth,1603 alike,1,macbeth,1603 Whole,1,macbeth,1603 shadows,1,macbeth,1603 advantage,1,macbeth,1603 ran,1,macbeth,1603 Fit,1,macbeth,1603 warders',1,macbeth,1603 broth,1,macbeth,1603 Eye,1,macbeth,1603 cannons,1,macbeth,1603 rock,1,macbeth,1603 Convert,1,macbeth,1603 Messengers,1,macbeth,1603 distill'd,1,macbeth,1603 consequences,1,macbeth,1603 sleep',1,macbeth,1603 exploits,1,macbeth,1603 offended,1,macbeth,1603 wren,1,macbeth,1603 Confusion,1,macbeth,1603 Infirm,1,macbeth,1603 robe,1,macbeth,1603 mend,1,macbeth,1603 doubtful,1,macbeth,1603 western,1,macbeth,1603 steals,1,macbeth,1603 sainted,1,macbeth,1603 roar,1,macbeth,1603 assistance,1,macbeth,1603 muse,1,macbeth,1603 space,1,macbeth,1603 decision,1,macbeth,1603 Doubly,1,macbeth,1603 frieze,1,macbeth,1603 agitation,1,macbeth,1603 construction,1,macbeth,1603 held,1,macbeth,1603 drowse,1,macbeth,1603 sleeps,1,macbeth,1603 deservers,1,macbeth,1603 Lord's,1,macbeth,1603 reserved,1,macbeth,1603 drowsy,1,macbeth,1603 clears,1,macbeth,1603 Stay,1,macbeth,1603 deftly,1,macbeth,1603 chimneys,1,macbeth,1603 disseat,1,macbeth,1603 knoll'd,1,macbeth,1603 flung,1,macbeth,1603 cabin'd,1,macbeth,1603 dash'd,1,macbeth,1603 writes,1,macbeth,1603 slaughter'd,1,macbeth,1603 Hanging,1,macbeth,1603 painted,1,macbeth,1603 pilot's,1,macbeth,1603 easier,1,macbeth,1603 'Come,1,macbeth,1603 finger,1,macbeth,1603 Became,1,macbeth,1603 bounteous,1,macbeth,1603 wherewith,1,macbeth,1603 underwrit,1,macbeth,1603 security,1,macbeth,1603 prisoner,1,macbeth,1603 grim,1,macbeth,1603 sighs,1,macbeth,1603 Help,1,macbeth,1603 undaunted,1,macbeth,1603 utterance,1,macbeth,1603 comest,1,macbeth,1603 drug,1,macbeth,1603 hearted,1,macbeth,1603 instrument,1,macbeth,1603 Hell,1,macbeth,1603 rid,1,macbeth,1603 brightest,1,macbeth,1603 Wife,1,macbeth,1603 angels,1,macbeth,1603 advance,1,macbeth,1603 summer's,1,macbeth,1603 villanies,1,macbeth,1603 strangles,1,macbeth,1603 appear,1,macbeth,1603 understand,1,macbeth,1603 Unknown,1,macbeth,1603 martlet,1,macbeth,1603 Distinguishes,1,macbeth,1603 strangled,1,macbeth,1603 weighty,1,macbeth,1603 pies,1,macbeth,1603 signs,1,macbeth,1603 nought,1,macbeth,1603 worms,1,macbeth,1603 thirty,1,macbeth,1603 lapp'd,1,macbeth,1603 crickets,1,macbeth,1603 beldams,1,macbeth,1603 malicious,1,macbeth,1603 rue,1,macbeth,1603 advise,1,macbeth,1603 odds,1,macbeth,1603 worm's,1,macbeth,1603 pleasures,1,macbeth,1603 stools,1,macbeth,1603 Err,1,macbeth,1603 Began,1,macbeth,1603 thirst,1,macbeth,1603 Raze,1,macbeth,1603 orphans,1,macbeth,1603 juggling,1,macbeth,1603 remain,1,macbeth,1603 invested,1,macbeth,1603 surgeons,1,macbeth,1603 joys,1,macbeth,1603 abound,1,macbeth,1603 Geese,1,macbeth,1603 earls,1,macbeth,1603 Golden,1,macbeth,1603 Uproar,1,macbeth,1603 PERSONAE,1,macbeth,1603 card,1,macbeth,1603 Light,1,macbeth,1603 gruel,1,macbeth,1603 clamorous,1,macbeth,1603 germens,1,macbeth,1603 cool'd,1,macbeth,1603 baited,1,macbeth,1603 Horrible,1,macbeth,1603 Lesser,1,macbeth,1603 soliciting,1,macbeth,1603 hurlyburly's,1,macbeth,1603 thumb,1,macbeth,1603 laced,1,macbeth,1603 bridegroom,1,macbeth,1603 quench'd,1,macbeth,1603 performance,1,macbeth,1603 shrieks,1,macbeth,1603 beneath,1,macbeth,1603 intemperance,1,macbeth,1603 plague,1,macbeth,1603 tiger's,1,macbeth,1603 Soldier,1,macbeth,1603 VIII,1,macbeth,1603 reign,1,macbeth,1603 chid,1,macbeth,1603 alarm,1,macbeth,1603 seven,1,macbeth,1603 preys,1,macbeth,1603 graced,1,macbeth,1603 giant's,1,macbeth,1603 Beelzebub,1,macbeth,1603 sad,1,macbeth,1603 sag,1,macbeth,1603 tarrying,1,macbeth,1603 ruin's,1,macbeth,1603 camp,1,macbeth,1603 Wiped,1,macbeth,1603 reconciled,1,macbeth,1603 sole,1,macbeth,1603 Bloody,1,macbeth,1603 grove,1,macbeth,1603 thousands,1,macbeth,1603 sold,1,macbeth,1603 confusion,1,macbeth,1603 Signifying,1,macbeth,1603 Young,1,macbeth,1603 matters,1,macbeth,1603 topple,1,macbeth,1603 grown,1,macbeth,1603 bearing,1,macbeth,1603 tost,1,macbeth,1603 entrails,1,macbeth,1603 Cool,1,macbeth,1603 dance,1,macbeth,1603 buffets,1,macbeth,1603 backward,1,macbeth,1603 inhabit,1,macbeth,1603 rhubarb,1,macbeth,1603 hour's,1,macbeth,1603 bathe,1,macbeth,1603 call'st,1,macbeth,1603 riddles,1,macbeth,1603 sorrows,1,macbeth,1603 Tongue,1,macbeth,1603 opposed,1,macbeth,1603 mongrels,1,macbeth,1603 corner,1,macbeth,1603 losest,1,macbeth,1603 crying,1,macbeth,1603 lime,1,macbeth,1603 incensed,1,macbeth,1603 mind's,1,macbeth,1603 lily,1,macbeth,1603 caps,1,macbeth,1603 brother,1,macbeth,1603 Keep,1,macbeth,1603 drab,1,macbeth,1603 afterwards,1,macbeth,1603 prophesying,1,macbeth,1603 plight,1,macbeth,1603 overcome,1,macbeth,1603 function,1,macbeth,1603 stalls,1,macbeth,1603 Woe,1,macbeth,1603 Direness,1,macbeth,1603 Conduct,1,macbeth,1603 Ourself,1,macbeth,1603 Fled,1,macbeth,1603 seemeth,1,macbeth,1603 voices,1,macbeth,1603 diminutive,1,macbeth,1603 assassination,1,macbeth,1603 Infected,1,macbeth,1603 madness,1,macbeth,1603 Outrun,1,macbeth,1603 repetition,1,macbeth,1603 sacrilegious,1,macbeth,1603 paper,1,macbeth,1603 eclipse,1,macbeth,1603 officers,1,macbeth,1603 rides,1,macbeth,1603 Hecate,1,macbeth,1603 rebels',1,macbeth,1603 galloping,1,macbeth,1603 Father'd,1,macbeth,1603 glare,1,macbeth,1603 Smells,1,macbeth,1603 Pale,1,macbeth,1603 toys,1,macbeth,1603 furious,1,macbeth,1603 Avaunt,1,macbeth,1603 fume,1,macbeth,1603 blessed,1,macbeth,1603 thumbs,1,macbeth,1603 Stuck,1,macbeth,1603 lesser,1,macbeth,1603 becoming,1,macbeth,1603 Thoughts,1,macbeth,1603 Lizard's,1,macbeth,1603 moving,1,macbeth,1603 oftentimes,1,macbeth,1603 Gentle,1,macbeth,1603 vulnerable,1,macbeth,1603 Win,1,macbeth,1603 discovery,1,macbeth,1603 Perchance,1,macbeth,1603 deserve,1,macbeth,1603 wishest,1,macbeth,1603 safeties,1,macbeth,1603 ocean,1,macbeth,1603 adhere,1,macbeth,1603 seeking,1,macbeth,1603 Painted,1,macbeth,1603 acted,1,macbeth,1603 skirr,1,macbeth,1603 cherubim,1,macbeth,1603 copy's,1,macbeth,1603 hail'd,1,macbeth,1603 deeper,1,macbeth,1603 conceive,1,macbeth,1603 warrant,1,macbeth,1603 minions,1,macbeth,1603 usurper's,1,macbeth,1603 Duff,1,macbeth,1603 Soundly,1,macbeth,1603 Producing,1,macbeth,1603 think'st,1,macbeth,1603 agent,1,macbeth,1603 worthiest,1,macbeth,1603 ourself,1,macbeth,1603 enkindle,1,macbeth,1603 invention,1,macbeth,1603 saying,1,macbeth,1603 vice,1,macbeth,1603 ruby,1,macbeth,1603 virtuous,1,macbeth,1603 memorise,1,macbeth,1603 Observe,1,macbeth,1603 Herein,1,macbeth,1603 flying,1,macbeth,1603 traveller,1,macbeth,1603 vaporous,1,macbeth,1603 slaughter,1,macbeth,1603 she'll,1,macbeth,1603 audit,1,macbeth,1603 chiefest,1,macbeth,1603 unsure,1,macbeth,1603 trammel,1,macbeth,1603 laying,1,macbeth,1603 Mean,1,macbeth,1603 unprepared,1,macbeth,1603 spy,1,macbeth,1603 concern,1,macbeth,1603 score,1,macbeth,1603 stealing,1,macbeth,1603 council,1,macbeth,1603 curtain'd,1,macbeth,1603 deliver,1,macbeth,1603 Meeting,1,macbeth,1603 embrace,1,macbeth,1603 cradle,1,macbeth,1603 thunders,1,macbeth,1603 knives,1,macbeth,1603 'Amen,1,macbeth,1603 Himself,1,macbeth,1603 'Thane,1,macbeth,1603 delivers,1,macbeth,1603 steps,1,macbeth,1603 Wake,1,macbeth,1603 wassail,1,macbeth,1603 nourisher,1,macbeth,1603 confident,1,macbeth,1603 children's,1,macbeth,1603 Revenges,1,macbeth,1603 murderer,1,macbeth,1603 sworn,1,macbeth,1603 winds,1,macbeth,1603 Particular,1,macbeth,1603 brinded,1,macbeth,1603 Gall,1,macbeth,1603 pictures,1,macbeth,1603 War,1,macbeth,1603 countenance,1,macbeth,1603 scour,1,macbeth,1603 Esteem,1,macbeth,1603 dignities,1,macbeth,1603 Thanes,1,macbeth,1603 hotter,1,macbeth,1603 Sudden,1,macbeth,1603 hunter,1,macbeth,1603 kindly,1,macbeth,1603 bow'd,1,macbeth,1603 design,1,macbeth,1603 deeply,1,macbeth,1603 unmann'd,1,macbeth,1603 necks,1,macbeth,1603 middle,1,macbeth,1603 sky,1,macbeth,1603 groans,1,macbeth,1603 hatch'd,1,macbeth,1603 sets,1,macbeth,1603 childhood,1,macbeth,1603 Itself,1,macbeth,1603 rarer,1,macbeth,1603 suck,1,macbeth,1603 Doubtful,1,macbeth,1603 wade,1,macbeth,1603 merciless,1,macbeth,1603 pieces,1,macbeth,1603 drugg'd,1,macbeth,1603 bough,1,macbeth,1603 Hear'st,1,macbeth,1603 Lamentings,1,macbeth,1603 combustion,1,macbeth,1603 amiss,1,macbeth,1603 visitings,1,macbeth,1603 skipping,1,macbeth,1603 swelling,1,macbeth,1603 perseverance,1,macbeth,1603 minion,1,macbeth,1603 shriek,1,macbeth,1603 esteem,1,macbeth,1603 taught,1,macbeth,1603 vile,1,macbeth,1603 everlasting,1,macbeth,1603 benediction,1,macbeth,1603 felt,1,macbeth,1603 Contending,1,macbeth,1603 thrusts,1,macbeth,1603 digestion,1,macbeth,1603 whereabout,1,macbeth,1603 guide,1,macbeth,1603 rung,1,macbeth,1603 turning,1,macbeth,1603 rump,1,macbeth,1603 Wast,1,macbeth,1603 snow,1,macbeth,1603 points,1,macbeth,1603 piece,1,macbeth,1603 hearts',1,macbeth,1603 recommends,1,macbeth,1603 rancours,1,macbeth,1603 banquets,1,macbeth,1603 profess,1,macbeth,1603 crime,1,macbeth,1603 palaces,1,macbeth,1603 Be't,1,macbeth,1603 twelve,1,macbeth,1603 Bestride,1,macbeth,1603 Life's,1,macbeth,1603 charm's,1,macbeth,1603 Officers,1,macbeth,1603 swoln,1,macbeth,1603 bore,1,macbeth,1603 worlds,1,macbeth,1603 choughs,1,macbeth,1603 repentance,1,macbeth,1603 stanchless,1,macbeth,1603 shriek'd,1,macbeth,1603 yell'd,1,macbeth,1603 seeds,1,macbeth,1603 Turn,1,macbeth,1603 Turk,1,macbeth,1603 later,1,macbeth,1603 Wash,1,macbeth,1603 Letting,1,macbeth,1603 combined,1,macbeth,1603 imaginings,1,macbeth,1603 Posters,1,macbeth,1603 falls,1,macbeth,1603 feat,1,macbeth,1603 actions,1,macbeth,1603 terms,1,macbeth,1603 Quarrels,1,macbeth,1603 encounter,1,macbeth,1603 loose,1,macbeth,1603 Suspicion,1,macbeth,1603 eldest,1,macbeth,1603 lated,1,macbeth,1603 taper,1,macbeth,1603 expedition,1,macbeth,1603 latch,1,macbeth,1603 relation,1,macbeth,1603 white,1,macbeth,1603 cyme,1,macbeth,1603 swoop,1,macbeth,1603 willing,1,macbeth,1603 Wherein,1,macbeth,1603 pearl,1,macbeth,1603 table's,1,macbeth,1603 Leave,1,macbeth,1603 Wreck'd,1,macbeth,1603 King's,1,macbeth,1603 fortitude,1,macbeth,1603 humble,1,macbeth,1603 overthrown,1,macbeth,1603 vanished,1,macbeth,1603 palter,1,macbeth,1603 Kings,1,macbeth,1603 clutch,1,macbeth,1603 fearful,1,macbeth,1603 feed,1,macbeth,1603 watchers,1,macbeth,1603 rush,1,macbeth,1603 cease,1,macbeth,1603 Witches',1,macbeth,1603 humbly,1,macbeth,1603 beaten,1,macbeth,1603 'Faith,1,macbeth,1603 indissoluble,1,macbeth,1603 relish,1,macbeth,1603 claim,1,macbeth,1603 saucy,1,macbeth,1603 masters,1,macbeth,1603 'scaped,1,macbeth,1603 blind,1,macbeth,1603 brief,1,macbeth,1603 suffering,1,macbeth,1603 minutely,1,macbeth,1603 farmer,1,macbeth,1603 Whereto,1,macbeth,1603 speaking,1,macbeth,1603 Restrain,1,macbeth,1603 rooky,1,macbeth,1603 wink,1,macbeth,1603 whined,1,macbeth,1603 stuff'd,1,macbeth,1603 ceremony,1,macbeth,1603 professions,1,macbeth,1603 flesh,1,macbeth,1603 Hence,1,macbeth,1603 se'nnights,1,macbeth,1603 tiger,1,macbeth,1603 rend,1,macbeth,1603 separated,1,macbeth,1603 dedicate,1,macbeth,1603 rugs,1,macbeth,1603 Stop,1,macbeth,1603 Blow,1,macbeth,1603 length,1,macbeth,1603 knees,1,macbeth,1603 rooks,1,macbeth,1603 battle's,1,macbeth,1603 want,1,macbeth,1603 stead,1,macbeth,1603 abjure,1,macbeth,1603 access,1,macbeth,1603 fruitless,1,macbeth,1603 doom's,1,macbeth,1603 Hover,1,macbeth,1603 know'st,1,macbeth,1603 Unfix,1,macbeth,1603 Retreat,1,macbeth,1603 trifles,1,macbeth,1603 trifled,1,macbeth,1603 seest,1,macbeth,1603 succeed,1,macbeth,1603 Assisted,1,macbeth,1603 bladed,1,macbeth,1603 talk'st,1,macbeth,1603 Despair,1,macbeth,1603 devil's,1,macbeth,1603 bidding,1,macbeth,1603 malady,1,macbeth,1603 stop,1,macbeth,1603 barefaced,1,macbeth,1603 rule,1,macbeth,1603 melted,1,macbeth,1603 meal,1,macbeth,1603 boot,1,macbeth,1603 fortifies,1,macbeth,1603 matter,1,macbeth,1603 domestic,1,macbeth,1603 Ladies,1,macbeth,1603 crazed,1,macbeth,1603 wast,1,macbeth,1603 foisons,1,macbeth,1603 entry,1,macbeth,1603 book,1,macbeth,1603 yesterdays,1,macbeth,1603 carousing,1,macbeth,1603 suborn'd,1,macbeth,1603 French,1,macbeth,1603 tend,1,macbeth,1603 smoked,1,macbeth,1603 colour,1,macbeth,1603 wrongly,1,macbeth,1603 gripe,1,macbeth,1603 compared,1,macbeth,1603 infirmity,1,macbeth,1603 digg'd,1,macbeth,1603 sceptre,1,macbeth,1603 wayward,1,macbeth,1603 Implored,1,macbeth,1603 Point,1,macbeth,1603 intelligence,1,macbeth,1603 unbecoming,1,macbeth,1603 o'erleap,1,macbeth,1603 Curbing,1,macbeth,1603 fairest,1,macbeth,1603 tending,1,macbeth,1603 dareful,1,macbeth,1603 'Glamis,1,macbeth,1603 wherefore,1,macbeth,1603 youths,1,macbeth,1603 refrain,1,macbeth,1603 warder,1,macbeth,1603 contriver,1,macbeth,1603 anticipatest,1,macbeth,1603 snores,1,macbeth,1603 Hours,1,macbeth,1603 slaves,1,macbeth,1603 Discomfort,1,macbeth,1603 invest,1,macbeth,1603 Takes,1,macbeth,1603 o'ertook,1,macbeth,1603 mortality,1,macbeth,1603 Norways',1,macbeth,1603 Throbs,1,macbeth,1603 Clamour'd,1,macbeth,1603 Threaten,1,macbeth,1603 hat,1,macbeth,1603 backs,1,macbeth,1603 Commencing,1,macbeth,1603 eminence,1,macbeth,1603 sweeten,1,macbeth,1603 sweeter,1,macbeth,1603 crack,1,macbeth,1603 seventh,1,macbeth,1603 sign,1,macbeth,1603 offend,1,macbeth,1603 hay,1,macbeth,1603 sigh,1,macbeth,1603 streams,1,macbeth,1603 delights,1,macbeth,1603 Ah,1,macbeth,1603 Am,1,macbeth,1603 brandish'd,1,macbeth,1603 womanly,1,macbeth,1603 mistrust,1,macbeth,1603 forge,1,macbeth,1603 o'erleaps,1,macbeth,1603 scarce,1,macbeth,1603 Hid,1,macbeth,1603 motives,1,macbeth,1603 birthdom,1,macbeth,1603 streaks,1,macbeth,1603 pendent,1,macbeth,1603 blows,1,macbeth,1603 Him,1,macbeth,1603 Stick,1,macbeth,1603 bellman,1,macbeth,1603 Treason,1,macbeth,1603 beggar'd,1,macbeth,1603 hew,1,macbeth,1603 among,1,macbeth,1603 murderers,1,macbeth,1603 assault,1,macbeth,1603 Dismiss,1,macbeth,1603 Lo,1,macbeth,1603 Nature,1,macbeth,1603 sensible,1,macbeth,1603 overbold,1,macbeth,1603 inclined,1,macbeth,1603 siege,1,macbeth,1603 pays,1,macbeth,1603 lands,1,macbeth,1603 flaws,1,macbeth,1603 proof,1,macbeth,1603 mortals',1,macbeth,1603 treble,1,macbeth,1603 arbitrate,1,macbeth,1603 in't,1,macbeth,1603 in's,1,macbeth,1603 denies,1,macbeth,1603 Impostors,1,macbeth,1603 brings,1,macbeth,1603 speakers,1,macbeth,1603 hawk'd,1,macbeth,1603 Oh,1,macbeth,1603 pitied,1,macbeth,1603 force,1,macbeth,1603 hid,1,macbeth,1603 hit,1,macbeth,1603 blanched,1,macbeth,1603 Something,1,macbeth,1603 medicine,1,macbeth,1603 demerits,1,macbeth,1603 flowers,1,macbeth,1603 chaudron,1,macbeth,1603 approve,1,macbeth,1603 Macdonwald,1,macbeth,1603 meant,1,macbeth,1603 fitful,1,macbeth,1603 unruly,1,macbeth,1603 Pronounce,1,macbeth,1603 esteem'st,1,macbeth,1603 appoint,1,macbeth,1603 grease,1,macbeth,1603 braggart,1,macbeth,1603 'Aroint,1,macbeth,1603 despair,1,macbeth,1603 added,1,macbeth,1603 past,1,macbeth,1603 abhorred,1,macbeth,1603 nave,1,macbeth,1603 troops,1,macbeth,1603 pass,1,macbeth,1603 pig,1,macbeth,1603 cracks,1,macbeth,1603 enrage,1,macbeth,1603 pit,1,macbeth,1603 proud,1,macbeth,1603 hemlock,1,macbeth,1603 step,1,macbeth,1603 ague,1,macbeth,1603 repeat'st,1,macbeth,1603 nice,1,macbeth,1603 Boil,1,macbeth,1603 pot,1,macbeth,1603 sparrows,1,macbeth,1603 monstrous,1,macbeth,1603 nobly,1,macbeth,1603 badged,1,macbeth,1603 prove,1,macbeth,1603 Gone,1,macbeth,1603 churches,1,macbeth,1603 pitfall,1,macbeth,1603 Seems,1,macbeth,1603 became,1,macbeth,1603 quiet,1,macbeth,1603 Thence,1,macbeth,1603 ulcerous,1,macbeth,1603 valour's,1,macbeth,1603 titles,1,macbeth,1603 referred,1,macbeth,1603 surprise,1,macbeth,1603 foully,1,macbeth,1603 theft,1,macbeth,1603 god,1,macbeth,1603 annoyance,1,macbeth,1603 sought,1,macbeth,1603 whisperings,1,macbeth,1603 whore,1,macbeth,1603 eterne,1,macbeth,1603 gold,1,macbeth,1603 dolour,1,macbeth,1603 Murder,1,macbeth,1603 metaphysical,1,macbeth,1603 catalogue,1,macbeth,1603 be'st,1,macbeth,1603 weep,1,macbeth,1603 sits,1,macbeth,1603 challenge,1,macbeth,1603 reckless,1,macbeth,1603 procreant,1,macbeth,1603 nipple,1,macbeth,1603 proportion,1,macbeth,1603 nigh,1,macbeth,1603 Open,1,macbeth,1603 Liar,1,macbeth,1603 bend,1,macbeth,1603 absent,1,macbeth,1603 Receive,1,macbeth,1603 urine,1,macbeth,1603 mankind,1,macbeth,1603 whereby,1,macbeth,1603 loads,1,macbeth,1603 cavern,1,macbeth,1603 behind,1,macbeth,1603 bury,1,macbeth,1603 tumble,1,macbeth,1603 Sits,1,macbeth,1603 cow'd,1,macbeth,1603 belt,1,macbeth,1603 goodly,1,macbeth,1603 unfix,1,macbeth,1603 sorts,1,macbeth,1603 Thou'lt,1,macbeth,1603 kindness,1,macbeth,1603 labour's,1,macbeth,1603 reeking,1,macbeth,1603 ornament,1,macbeth,1603 Heath,1,macbeth,1603 homely,1,macbeth,1603 thickens,1,macbeth,1603 detraction,1,macbeth,1603 tables,1,macbeth,1603 learned,1,macbeth,1603 gaze,1,macbeth,1603 actual,1,macbeth,1603 Cleanse,1,macbeth,1603 bent,1,macbeth,1603 gory,1,macbeth,1603 Dying,1,macbeth,1603 Shoughs,1,macbeth,1603 frailties,1,macbeth,1603 insane,1,macbeth,1603 initiate,1,macbeth,1603 perilous,1,macbeth,1603 unlock,1,macbeth,1603 Saint,1,macbeth,1603 Died,1,macbeth,1603 monuments,1,macbeth,1603 captains,1,macbeth,1603 Arabia,1,macbeth,1603 gore,1,macbeth,1603 Disdaining,1,macbeth,1603 fee'd,1,macbeth,1603 transpose,1,macbeth,1603 sieve,1,macbeth,1603 sleights,1,macbeth,1603 antic,1,macbeth,1603 probation,1,macbeth,1603 disbursed,1,macbeth,1603 twice,1,macbeth,1603 jewel,1,macbeth,1603 transport,1,macbeth,1603 Didst,1,macbeth,1603 despise,1,macbeth,1603 equivocate,1,macbeth,1603 limbeck,1,macbeth,1603 theme,1,macbeth,1603 tedious,1,macbeth,1603 verity,1,macbeth,1603 sentinel,1,macbeth,1603 scann'd,1,macbeth,1603 discomfort,1,macbeth,1603 Shakes,1,macbeth,1603 Merciful,1,macbeth,1603 rawness,1,macbeth,1603 preserve,1,macbeth,1603 gown,1,macbeth,1603 Enough,1,macbeth,1603 admired,1,macbeth,1603 Whate'er,1,macbeth,1603 swine,1,macbeth,1603 divine,1,macbeth,1603 hair'd,1,macbeth,1603 enterprise,1,macbeth,1603 roof'd,1,macbeth,1603 Toad,1,macbeth,1603 jump,1,macbeth,1603 bonfire,1,macbeth,1603 'Twas,1,macbeth,1603 nonpareil,1,macbeth,1603 beds,1,macbeth,1603 charnel,1,macbeth,1603 smack,1,macbeth,1603 sing,1,macbeth,1603 stretch,1,macbeth,1603 fulness,1,macbeth,1603 grace's,1,macbeth,1603 exposure,1,macbeth,1603 heap'd,1,macbeth,1603 calling,1,macbeth,1603 gash,1,macbeth,1603 turns,1,macbeth,1603 brew'd,1,macbeth,1603 Authorized,1,macbeth,1603 uplifted,1,macbeth,1603 harbinger,1,macbeth,1603 hurts,1,macbeth,1603 Chief,1,macbeth,1603 crowned,1,macbeth,1603 scorpions,1,macbeth,1603 crowns,1,macbeth,1603 jealousies,1,macbeth,1603 anointed,1,macbeth,1603 chafes,1,macbeth,1603 quite,1,macbeth,1603 jointly,1,macbeth,1603 sleepers,1,macbeth,1603 solemn,1,macbeth,1603 noblemen,1,macbeth,1603 ghost,1,macbeth,1603 sanctity,1,macbeth,1603 eagles,1,macbeth,1603 taints,1,macbeth,1603 solely,1,macbeth,1603 interdiction,1,macbeth,1603 sail,1,macbeth,1603 prophetic,1,macbeth,1603 deer,1,macbeth,1603 stay'd,1,macbeth,1603 affection,1,macbeth,1603 Profit,1,macbeth,1603 harness,1,macbeth,1603 Sewer,1,macbeth,1603 Country,1,macbeth,1603 betray,1,macbeth,1603 ha,1,macbeth,1603 magic,1,macbeth,1603 aim,1,macbeth,1603 Methought,1,macbeth,1603 Unreal,1,macbeth,1603 resolute,1,macbeth,1603 doff,1,macbeth,1603 artificial,1,macbeth,1603 murky,1,macbeth,1603 satisfy,1,macbeth,1603 raise,1,macbeth,1603 treatise,1,macbeth,1603 burial,1,macbeth,1603 repent,1,macbeth,1603 Best,1,macbeth,1603 jewels,1,macbeth,1603 'Give,1,macbeth,1603 truest,1,macbeth,1603 loon,1,macbeth,1603 Advise,1,macbeth,1603 casing,1,macbeth,1603 debt,1,macbeth,1603 wreck,1,macbeth,1603 stool,1,macbeth,1603 Making,1,macbeth,1603 Bless,1,macbeth,1603 Wanton,1,macbeth,1603 tongued,1,macbeth,1603 murderous,1,macbeth,1603 newer,1,macbeth,1603 shag,1,macbeth,1603 legs,1,macbeth,1603 yew,1,macbeth,1603 Unless,1,macbeth,1603 dwell,1,macbeth,1603 harbingers,1,macbeth,1603 Excite,1,macbeth,1603 player,1,macbeth,1603 whereon,1,macbeth,1603 stone,1,macbeth,1603 struts,1,macbeth,1603 informs,1,macbeth,1603 dignity,1,macbeth,1603 deaf,1,macbeth,1603 victory,1,macbeth,1603 Safe,1,macbeth,1603 Feed,1,macbeth,1603 pluck'd,1,macbeth,1603 gild,1,macbeth,1603 vault,1,macbeth,1603 drain,1,macbeth,1603 interim,1,macbeth,1603 seeming,1,macbeth,1603 suggestion,1,macbeth,1603 redress,1,macbeth,1603 gall,1,macbeth,1603 dwarfish,1,macbeth,1603 thralls,1,macbeth,1603 outwardly,1,macbeth,1603 touch'd,1,macbeth,1603 stole,1,macbeth,1603 'Here,1,macbeth,1603 buried,1,macbeth,1603 enfold,1,macbeth,1603 houses,1,macbeth,1603 spongy,1,macbeth,1603 speed,1,macbeth,1603 voluptuousness,1,macbeth,1603 prediction,1,macbeth,1603 Directly,1,macbeth,1603 shed,1,macbeth,1603 reckon,1,macbeth,1603 quarry,1,macbeth,1603 slips,1,macbeth,1603 accompany,1,macbeth,1603 manner,1,macbeth,1603 amend,1,macbeth,1603 forget,1,macbeth,1603 newly,1,macbeth,1603 temperate,1,macbeth,1603 Neptune's,1,macbeth,1603 farrow,1,macbeth,1603 Colmekill,1,macbeth,1603 doom,1,macbeth,1603 idiot,1,macbeth,1603 Returning,1,macbeth,1603 cures,1,macbeth,1603 know't,1,macbeth,1603 betray's,1,macbeth,1603 Dispute,1,macbeth,1603 committed,1,macbeth,1603 demi,1,macbeth,1603 commendations,1,macbeth,1603 wisely,1,macbeth,1603 lo,1,macbeth,1603 unprovokes,1,macbeth,1603 crew,1,macbeth,1603 boasting,1,macbeth,1603 crave,1,macbeth,1603 aside,1,macbeth,1603 quarters,1,macbeth,1603 Told,1,macbeth,1603 affeer'd,1,macbeth,1603 masterpiece,1,macbeth,1603 Lays,1,macbeth,1603 milks,1,macbeth,1603 unshrinking,1,macbeth,1603 May't,1,macbeth,1603 attendant,1,macbeth,1603 confineless,1,macbeth,1603 Took,1,macbeth,1603 mansionry,1,macbeth,1603 temper,1,macbeth,1603 carved,1,macbeth,1603 near'st,1,macbeth,1603 sorriest,1,macbeth,1603 morn,1,macbeth,1603 'twould,1,macbeth,1603 pristine,1,macbeth,1603 inn,1,macbeth,1603 scream,1,macbeth,1603 hadst,1,macbeth,1603 studied,1,macbeth,1603 stout,1,macbeth,1603 loud,1,macbeth,1603 miserable,1,macbeth,1603 settled,1,macbeth,1603 'gins,1,macbeth,1603 levy,1,macbeth,1603 Wouldst,1,macbeth,1603 'bove,1,macbeth,1603 commands,1,macbeth,1603 add,1,macbeth,1603 compunctious,1,macbeth,1603 Acquaint,1,macbeth,1603 resolved,1,macbeth,1603 bruited,1,macbeth,1603 diamond,1,macbeth,1603 Servants,1,macbeth,1603 lest,1,macbeth,1603 statute,1,macbeth,1603 potent,1,macbeth,1603 Sennet,1,macbeth,1603 afternoon,1,macbeth,1603 bides,1,macbeth,1603 filling,1,macbeth,1603 continent,1,macbeth,1603 Grace,1,macbeth,1603 confessing,1,macbeth,1603 Whoever,1,macbeth,1603 show'd,1,macbeth,1603 sailor's,1,macbeth,1603 forgot,1,macbeth,1603 serious,1,macbeth,1603 hoodwink,1,macbeth,1603 composed,1,macbeth,1603 Protest,1,macbeth,1603 jocund,1,macbeth,1603 untimely,1,macbeth,1603 Stones,1,macbeth,1603 journey,1,macbeth,1603 Devilish,1,macbeth,1603 reads,1,macbeth,1603 pure,1,macbeth,1603 appease,1,macbeth,1603 goes't,1,macbeth,1603 Blessing,1,macbeth,1603 climb,1,macbeth,1603 wasteful,1,macbeth,1603 accents,1,macbeth,1603 events,1,macbeth,1603 hardly,1,macbeth,1603 reasons,1,macbeth,1603 personal,1,macbeth,1603 hare,1,macbeth,1603 soldiership,1,macbeth,1603 outward,1,macbeth,1603 park,1,macbeth,1603 Gorgon,1,macbeth,1603 Perform,1,macbeth,1603 coveted,1,macbeth,1603 blames,1,macbeth,1603 parricide,1,macbeth,1603 pour'd,1,macbeth,1603 soldier's,1,macbeth,1603 aye,1,macbeth,1603 hall,1,macbeth,1603 Army,1,macbeth,1603 crow,1,macbeth,1603 spells,1,macbeth,1603 poorly,1,macbeth,1603 messenger,1,macbeth,1603 Nimbly,1,macbeth,1603 exasperate,1,macbeth,1603 knit,1,macbeth,1603 nearer,1,macbeth,1603 Call,1,macbeth,1603 disjoint,1,macbeth,1603 nation,1,macbeth,1603 pall,1,macbeth,1603 bloodier,1,macbeth,1603 continually,1,macbeth,1603 perform'd,1,macbeth,1603 husband's,1,macbeth,1603 weeds,1,macbeth,1603 Courage,1,macbeth,1603 Start,1,macbeth,1603 equivocates,1,macbeth,1603 Stars,1,macbeth,1603 redoubled,1,macbeth,1603 Beware,1,macbeth,1603 Pluck,1,macbeth,1603 Lady,1,macbeth,1603 nobleness,1,macbeth,1603 swiftest,1,macbeth,1603 mew'd,1,macbeth,1603 trace,1,macbeth,1603 avoided,1,macbeth,1603 medicines,1,macbeth,1603 foggy,1,macbeth,1603 school,1,macbeth,1603 remembrancer,1,macbeth,1603 provided,1,macbeth,1603 particulars,1,macbeth,1603 momentary,1,macbeth,1603 screams,1,macbeth,1603 Hum,1,macbeth,1603 multitudinous,1,macbeth,1603 guardian,1,macbeth,1603 pluck,1,macbeth,1603 wooingly,1,macbeth,1603 Augurs,1,macbeth,1603 midnight,1,macbeth,1603 mettled,1,macbeth,1603 Untimely,1,macbeth,1603 weeps,1,macbeth,1603 fork,1,macbeth,1603 Tyrant,1,macbeth,1603 form,1,macbeth,1603 Waiting,1,macbeth,1603 knocks,1,macbeth,1603 nightly,1,macbeth,1603 purged,1,macbeth,1603 stealthy,1,macbeth,1603 ask,1,macbeth,1603 Spiteful,1,macbeth,1603 Bell,1,macbeth,1603 pain,1,macbeth,1603 hangs,1,macbeth,1603 return'd,1,macbeth,1603 winter's,1,macbeth,1603 kind'st,1,macbeth,1603 chastise,1,macbeth,1603 profound,1,macbeth,1603 forsworn,1,macbeth,1603 deceitful,1,macbeth,1603 Silver'd,1,macbeth,1603 twain,1,macbeth,1603 Shipwrecking,1,macbeth,1603 stern'st,1,macbeth,1603 stones,1,macbeth,1603 fear'd,1,macbeth,1603 shot,1,macbeth,1603 puts,1,macbeth,1603 proper,1,macbeth,1603 delinquents,1,macbeth,1603 gentry,1,macbeth,1603 faithful,1,macbeth,1603 Nought's,1,macbeth,1603 counsellors,1,macbeth,1603 rough,1,macbeth,1603 Fell,1,macbeth,1603 napkins,1,macbeth,1603 images,1,macbeth,1603 prepared,1,macbeth,1603 agents,1,macbeth,1603 Weary,1,macbeth,1603 beetle,1,macbeth,1603 Alarum,1,macbeth,1603 purgative,1,macbeth,1603 coursed,1,macbeth,1603 girl,1,macbeth,1603 scarcely,1,macbeth,1603 fresh,1,macbeth,1603 ravin'd,1,macbeth,1603 magot,1,macbeth,1603 rightly,1,macbeth,1603 beards,1,macbeth,1603 unrough,1,macbeth,1603 feverous,1,macbeth,1603 nearly,1,macbeth,1603 avouches,1,macbeth,1603 deny't,1,macbeth,1603 Approaching,1,macbeth,1603 ingratitude,1,macbeth,1603 Blood,1,macbeth,1603 supernatural,1,macbeth,1603 Expire,1,macbeth,1603 She'll,1,macbeth,1603 open'd,1,macbeth,1603 Arm,1,macbeth,1603 untitled,1,macbeth,1603 Scotch,1,macbeth,1603 Kind,1,macbeth,1603 aweary,1,macbeth,1603 boughs,1,macbeth,1603 prate,1,macbeth,1603 eighth,1,macbeth,1603 Accursed,1,macbeth,1603 deadly,1,macbeth,1603 few,1,macbeth,1603 fee,1,macbeth,1603 brainsickly,1,macbeth,1603 Acting,1,macbeth,1603 Again,1,macbeth,1603 lees,1,macbeth,1603 cheque,1,macbeth,1603 sweetly,1,macbeth,1603 Sinful,1,macbeth,1603 net,1,macbeth,1603 visited,1,macbeth,1603 hiss,1,macbeth,1603 broil,1,macbeth,1603 usually,1,macbeth,1603 Scarf,1,macbeth,1603 displaced,1,macbeth,1603 Boundless,1,macbeth,1603 Pertains,1,macbeth,1603 guess,1,macbeth,1603 liver'd,1,macbeth,1603 moves,1,macbeth,1603 lead,1,macbeth,1603 housekeeper,1,macbeth,1603 capital,1,macbeth,1603 surgery,1,macbeth,1603 nobles,1,macbeth,1603 witch,1,macbeth,1603 Should,1,macbeth,1603 requited,1,macbeth,1603 Scale,1,macbeth,1603 yesterday,1,macbeth,1603 harp'd,1,macbeth,1603 Threescore,1,macbeth,1603 fan,1,macbeth,1603 contented,1,macbeth,1603 delicate,1,macbeth,1603 opinions,1,macbeth,1603 Command,1,macbeth,1603 render'd,1,macbeth,1603 surfeited,1,macbeth,1603 occasion,1,macbeth,1603 dudgeon,1,macbeth,1603 lavish,1,macbeth,1603 ravell'd,1,macbeth,1603 smother'd,1,macbeth,1603 murderer's,1,macbeth,1603 universal,1,macbeth,1603 Madam,1,macbeth,1603 ravishing,1,macbeth,1603 garments,1,macbeth,1603 bubbles,1,macbeth,1603 destiny,1,macbeth,1603 mortified,1,macbeth,1603 relations,1,macbeth,1603 appal,1,macbeth,1603 peers,1,macbeth,1603 consider'd,1,macbeth,1603 venture,1,macbeth,1603 sweaten,1,macbeth,1603 Demand,1,macbeth,1603 carried,1,macbeth,1603 Keeps,1,macbeth,1603 compass'd,1,macbeth,1603 rank,1,macbeth,1603 Adder's,1,macbeth,1603 empty,1,macbeth,1603 Ten,1,macbeth,1603 not',1,macbeth,1603 dress'd,1,macbeth,1603 reported,1,macbeth,1603 Canst,1,macbeth,1603 mousing,1,macbeth,1603 wrench'd,1,macbeth,1603 griefs,1,macbeth,1603 compt,1,macbeth,1603 shouldst,1,macbeth,1603 conspirers,1,macbeth,1603 mischief,1,macbeth,1603 hoarse,1,macbeth,1603 clamour,1,macbeth,1603 surveying,1,macbeth,1603 Genius,1,macbeth,1603 retires,1,macbeth,1603 Enchanting,1,macbeth,1603 built,1,macbeth,1603 unknown,1,macbeth,1603 fourth,1,macbeth,1603 hermits,1,macbeth,1603 Hall,1,macbeth,1603 rooted,1,macbeth,1603 nose,1,macbeth,1603 patch,1,macbeth,1603 midst,1,macbeth,1603 apply,1,macbeth,1603 trenched,1,macbeth,1603 emptying,1,macbeth,1603 beast,1,macbeth,1603 foundations,1,macbeth,1603 fraught,1,macbeth,1603 wakes,1,macbeth,1603 action,1,macbeth,1603 proceed,1,macbeth,1603 castles,1,macbeth,1603 obscure,1,macbeth,1603 clatter,1,macbeth,1603 faculties,1,macbeth,1603 perturbation,1,macbeth,1603 Henceforth,1,macbeth,1603 Show'd,1,macbeth,1603 Alarum'd,1,macbeth,1603 dress,1,macbeth,1603 gently,1,macbeth,1603 restless,1,macbeth,1603 scale,1,macbeth,1603 noon,1,macbeth,1603 shaking,1,macbeth,1603 Loyal,1,macbeth,1603 temperance,1,macbeth,1603 captivity,1,macbeth,1603 slipp'd,1,macbeth,1603 remedy,1,macbeth,1603 bravely,1,macbeth,1603 faint,1,macbeth,1603 limited,1,macbeth,1603 blunt,1,macbeth,1603 knots,1,macbeth,1603 companions,1,macbeth,1603 Jew,1,macbeth,1603 teems,1,macbeth,1603 maws,1,macbeth,1603 candle,1,macbeth,1603 overtake,1,macbeth,1603 bestows,1,macbeth,1603 Alack,1,macbeth,1603 Graymalkin,1,macbeth,1603 observed,1,macbeth,1603 descended,1,macbeth,1603 bottom,1,macbeth,1603 chaps,1,macbeth,1603 oppressed,1,macbeth,1603 disloyal,1,macbeth,1603 Clean,1,macbeth,1603 roughest,1,macbeth,1603 measureless,1,macbeth,1603 written,1,macbeth,1603 posterity,1,macbeth,1603 chickens,1,macbeth,1603 Court,1,macbeth,1603 unaccompanied,1,macbeth,1603 Sit,1,macbeth,1603 wolves,1,macbeth,1603 Sir,1,macbeth,1603 alter,1,macbeth,1603 Bleed,1,macbeth,1603 All's,1,macbeth,1603 towering,1,macbeth,1603 stays,1,macbeth,1603 you'ld,1,macbeth,1603 exiled,1,macbeth,1603 Consider,1,macbeth,1603 escapes,1,macbeth,1603 Add,1,macbeth,1603 Balm,1,macbeth,1603 Paddock,1,macbeth,1603 Therefore,1,macbeth,1603 Scarcely,1,macbeth,1603 mouth,1,macbeth,1603 gouts,1,macbeth,1603 places,1,macbeth,1603 youth,1,macbeth,1603 stared,1,macbeth,1603 shares,1,macbeth,1603 rejoicing,1,macbeth,1603 navigation,1,macbeth,1603 partner's,1,macbeth,1603 secret'st,1,macbeth,1603 anger'd,1,macbeth,1603 freely,1,macbeth,1603 avouch,1,macbeth,1603 quarter,1,macbeth,1603 say'st,1,macbeth,1603 Thyself,1,macbeth,1603 leaving,1,macbeth,1603 child,1,macbeth,1603 vanquish'd,1,macbeth,1603 glimmers,1,macbeth,1603 unusual,1,macbeth,1603 blaspheming,1,macbeth,1603 Macduff's,1,macbeth,1603 Convey,1,macbeth,1603 inform'd,1,macbeth,1603 attire,1,macbeth,1603 effect,1,macbeth,1603 consort,1,macbeth,1603 spurn,1,macbeth,1603 spurs,1,macbeth,1603 pretend,1,macbeth,1603 performances,1,macbeth,1603 doors,1,macbeth,1603 other's,1,macbeth,1603 jovial,1,macbeth,1603 Free,1,macbeth,1603 blessings,1,macbeth,1603 benison,1,macbeth,1603 arrived,1,macbeth,1603 nod,1,macbeth,1603 teeth,1,macbeth,1603 dusty,1,macbeth,1603 bleeds,1,macbeth,1603 stars,1,macbeth,1603 conclusion,1,macbeth,1603 mightst,1,macbeth,1603 shield,1,macbeth,1603 antidote,1,macbeth,1603 physics,1,macbeth,1603 plead,1,macbeth,1603 pricking,1,macbeth,1603 purposes,1,macbeth,1603 tempest,1,macbeth,1603 watched,1,macbeth,1603 foolish,1,macbeth,1603 Remains,1,macbeth,1603 Sons,1,macbeth,1603 blanket,1,macbeth,1603 starting,1,macbeth,1603 scepter'd,1,macbeth,1603 silenced,1,macbeth,1603 reading,1,macbeth,1603 Could,1,macbeth,1603 egg,1,macbeth,1603 skin,1,macbeth,1603 concord,1,macbeth,1603 presently,1,macbeth,1603 chief,1,macbeth,1603 persuades,1,macbeth,1603 ranks,1,macbeth,1603 mars,1,macbeth,1603 fountain,1,macbeth,1603 missives,1,macbeth,1603 knits,1,macbeth,1603 I'ld,1,macbeth,1603 disheartens,1,macbeth,1603 woe,1,macbeth,1603 unattended,1,macbeth,1603 quoth,1,macbeth,1603 witches,1,macbeth,1603 gallowglasses,1,macbeth,1603 inch,1,macbeth,1603 vision,1,macbeth,1603 craves,1,macbeth,1603 Siward's,1,macbeth,1603 thief,1,macbeth,1603 solicits,1,macbeth,1603 special,1,macbeth,1603 pauser,1,macbeth,1603 downy,1,macbeth,1603 register'd,1,macbeth,1603 benefit,1,macbeth,1603 'Sir,1,macbeth,1603 amazement,1,macbeth,1603 Buttress,1,macbeth,1603 plenteous,1,macbeth,1603 missing,1,macbeth,1603 dishonours,1,macbeth,1603 Thriftless,1,macbeth,1603 discharge,1,macbeth,1603 trifle,1,macbeth,1603 naught,1,macbeth,1603 heaviest,1,macbeth,1603 undivulged,1,macbeth,1603 Proceeding,1,macbeth,1603 bodements,1,macbeth,1603 gospell'd,1,macbeth,1603 borrow'd,1,macbeth,1603 apart,1,macbeth,1603 smoke,1,macbeth,1603 warranted,1,macbeth,1603 dainty,1,macbeth,1603 Being,1,macbeth,1603 Whatever,1,macbeth,1603 letters,1,macbeth,1603 chuck,1,macbeth,1603 Unspeak,1,macbeth,1603 screw,1,macbeth,1603 storehouse,1,macbeth,1603 mockery,1,macbeth,1603 stake,1,macbeth,1603 division,1,macbeth,1603 Filthy,1,macbeth,1603 miraculous,1,macbeth,1603 stableness,1,macbeth,1603 blasted,1,macbeth,1603 Question,1,macbeth,1603 Stepp'd,1,macbeth,1603 desires,1,macbeth,1603 Dismay'd,1,macbeth,1603 wrath,1,macbeth,1603 constrained,1,macbeth,1603 desired,1,macbeth,1603 living,1,macbeth,1603 under't,1,macbeth,1603 Howe'er,1,macbeth,1603 trembling,1,macbeth,1603 taste,1,macbeth,1603 pole,1,macbeth,1603 affairs,1,macbeth,1603 maids,1,macbeth,1603 unmake,1,macbeth,1603 malevolence,1,macbeth,1603 proved,1,macbeth,1603 'Twixt,1,macbeth,1603 renown,1,macbeth,1603 sting,1,macbeth,1603 wrongs,1,macbeth,1603 play'dst,1,macbeth,1603 substances,1,macbeth,1603 flies,1,macbeth,1603 salt,1,macbeth,1603 reflection,1,macbeth,1603 sake,1,macbeth,1603 retire,1,macbeth,1603 safely,1,macbeth,1603 fits,1,macbeth,1603 Run,1,macbeth,1603 prologues,1,macbeth,1603 stamp,1,macbeth,1603 enters,1,macbeth,1603 desolate,1,macbeth,1603 roast,1,macbeth,1603 We'ld,1,macbeth,1603 hateful,1,macbeth,1603 provoke,1,macbeth,1603 receipt,1,macbeth,1603 cross'd,1,macbeth,1603 cloister'd,1,macbeth,1603 pretence,1,macbeth,1603 curs,1,macbeth,1603 confined,1,macbeth,1603 ring,1,macbeth,1603 measured,1,macbeth,1603 Outside,1,macbeth,1603 buckle,1,macbeth,1603 happiness,1,macbeth,1603 third,1,macbeth,1603 traffic,1,macbeth,1603 swimmers,1,macbeth,1603 Tuesday,1,macbeth,1603 banish'd,1,macbeth,1603 gap,1,macbeth,1603 creation,1,macbeth,1603 Deal,1,macbeth,1603 allegiance,1,macbeth,1603 closet,1,macbeth,1603 stabs,1,macbeth,1603 bestow'd,1,macbeth,1603 handed,1,macbeth,1603 closed,1,macbeth,1603 Dear,1,macbeth,1603 verities,1,macbeth,1603 Saw,1,macbeth,1603 hearers,1,macbeth,1603 Desire,1,macbeth,1603 walls,1,macbeth,1603 ripe,1,macbeth,1603 falcon,1,macbeth,1603 salutation,1,macbeth,1603 filed,1,macbeth,1603 impediments,1,macbeth,1603 death's,1,macbeth,1603 rebellious,1,macbeth,1603 save,1,macbeth,1603 remains,1,macbeth,1603 integrity,1,macbeth,1603 subtle,1,macbeth,1603 Ross,1,macbeth,1603 Golgotha,1,macbeth,1603 torture,1,macbeth,1603 champion,1,macbeth,1603 widows,1,macbeth,1603 isles,1,macbeth,1603 Thine,1,macbeth,1603 baboon's,1,macbeth,1603 Please't,1,macbeth,1603 unwiped,1,macbeth,1603 frog,1,macbeth,1603 'Black,1,macbeth,1603 Throw,1,macbeth,1603 Weep,1,macbeth,1603 army,1,macbeth,1603 imperfect,1,macbeth,1603 botches,1,macbeth,1603 staff,1,macbeth,1603 spacious,1,macbeth,1603 mould,1,macbeth,1603 Remove,1,macbeth,1603 swarm,1,macbeth,1603 commanded,1,macbeth,1603 growing,1,macbeth,1603 intent,1,macbeth,1603 revolts,1,macbeth,1603 clogs,1,macbeth,1603 yesty,1,macbeth,1603 hidden,1,macbeth,1603 Root,1,macbeth,1603 Industrious,1,macbeth,1603 handle,1,macbeth,1603 East,1,macbeth,1603 rage,1,macbeth,1603 pride,1,macbeth,1603 bolter'd,1,macbeth,1603 enrages,1,macbeth,1603 Confounds,1,macbeth,1603 apace,1,macbeth,1603 vessels,1,macbeth,1603 Finger,1,macbeth,1603 Sister,1,macbeth,1603 next,1,macbeth,1603 Three,1,macbeth,1603 cheaply,1,macbeth,1603 saluted,1,macbeth,1603 walk'd,1,macbeth,1603 pester'd,1,macbeth,1603 possess,1,macbeth,1603 Given,1,macbeth,1603 Shame,1,macbeth,1603 throats,1,macbeth,1603 newt,1,macbeth,1603 Gives,1,macbeth,1603 surprised,1,macbeth,1603 familiar,1,macbeth,1603 fix'd,1,macbeth,1603 fact,1,macbeth,1603 gladly,1,macbeth,1603 possets,1,macbeth,1603 husbandry,1,macbeth,1603 livelong,1,macbeth,1603 dreamt,1,macbeth,1603 mettle,1,macbeth,1603 seize,1,macbeth,1603 served,1,macbeth,1603 conference,1,macbeth,1603 marry,1,macbeth,1603 what's,1,macbeth,1603 reports,1,macbeth,1603 earthly,1,macbeth,1603 poison,1,macbeth,1603 Commends,1,macbeth,1603 anger,1,macbeth,1603 foreign,1,macbeth,1603 labour'd,1,macbeth,1603 Craving,1,macbeth,1603 hack'd,1,macbeth,1603 womb,1,macbeth,1603 lechery,1,macbeth,1603 unseam'd,1,macbeth,1603 Cancel,1,macbeth,1603 droop,1,macbeth,1603 disposition,1,macbeth,1603 Accounted,1,macbeth,1603 unlineal,1,macbeth,1603 Bellona's,1,macbeth,1603 consent,1,macbeth,1603 dull,1,macbeth,1603 nest,1,macbeth,1603 Sweno,1,macbeth,1603 yoke,1,macbeth,1603 unity,1,macbeth,1603 grain,1,macbeth,1603 drops,1,macbeth,1603 harvest,1,macbeth,1603 fry,1,macbeth,1603 marble,1,macbeth,1603 ope,1,macbeth,1603 angry,1,macbeth,1603 unfortunate,1,macbeth,1603 Noble,1,macbeth,1603 comparisons,1,macbeth,1603 travelling,1,macbeth,1603 watching,1,macbeth,1603 overcharged,1,macbeth,1603 Whispers,1,macbeth,1603 grasp,1,macbeth,1603 Strike,1,macbeth,1603 hideous,1,macbeth,1603 fain,1,macbeth,1603 create,1,macbeth,1603 wholesome,1,macbeth,1603 hunger,1,macbeth,1603 'cause,1,macbeth,1603 boiling,1,macbeth,1603 dispatch'd,1,macbeth,1603 Antony's,1,macbeth,1603 evil,1,macbeth,1603 durst,1,macbeth,1603 Harpier,1,macbeth,1603 Beauteous,1,macbeth,1603 diseased,1,macbeth,1603 weapons,1,macbeth,1603 celebrates,1,macbeth,1603 giving,1,macbeth,1603 Promised,1,macbeth,1603 establish,1,macbeth,1603 boneless,1,macbeth,1603 fog,1,macbeth,1603 Acheron,1,macbeth,1603 foe,1,macbeth,1603 amends,1,macbeth,1603 constancy,1,macbeth,1603 quell,1,macbeth,1603 crests,1,macbeth,1603 surcease,1,macbeth,1603 swells,1,macbeth,1603 safest,1,macbeth,1603 race,1,macbeth,1603 methinks,1,macbeth,1603 woeful,1,macbeth,1603 Stabbing,1,macbeth,1603 purveyor,1,macbeth,1603 returns,1,macbeth,1603 kites,1,macbeth,1603 worm,1,macbeth,1603 worn,1,macbeth,1603 letter,1,macbeth,1603 multiplying,1,macbeth,1603 equivocation,1,macbeth,1603 heavily,1,macbeth,1603 appals,1,macbeth,1603 fighting,1,macbeth,1603 do't,1,macbeth,1603 scotch'd,1,macbeth,1603 west,1,macbeth,1603 fie,1,macbeth,1603 Malice,1,macbeth,1603 clept,1,macbeth,1603 bear't,1,macbeth,1603 predominance,1,macbeth,1603 unjust,1,macbeth,1603 flame,1,macbeth,1603 officer,1,macbeth,1603 dues,1,macbeth,1603 chalice,1,macbeth,1603 rich,1,macbeth,1603 Boy,1,macbeth,1603 ribs,1,macbeth,1603 safety,1,macbeth,1603 savage,1,macbeth,1603 damnation,1,macbeth,1603 float,1,macbeth,1603 Lead,1,macbeth,1603 hose,1,macbeth,1603 bark,1,macbeth,1603 speculation,1,macbeth,1603 thereby,1,macbeth,1603 Near,1,macbeth,1603 niggard,1,macbeth,1603 bare,1,macbeth,1603 notion,1,macbeth,1603 mansion,1,macbeth,1603 neutral,1,macbeth,1603 tail,1,macbeth,1603 shows,1,macbeth,1603 unsex,1,macbeth,1603 divers,1,macbeth,1603 unfold,1,macbeth,1603 wealth,1,macbeth,1603 herself,1,macbeth,1603 scepters,1,macbeth,1603 an't,1,macbeth,1603 linen,1,macbeth,1603 practise,1,macbeth,1603 depart,1,macbeth,1603 butcher,1,macbeth,1603 prospect,1,macbeth,1603 perceive,1,macbeth,1603 beware,1,macbeth,1603 wives,1,macbeth,1603 bath,1,macbeth,1603 waves,1,macbeth,1603 Foul,1,macbeth,1603 disasters,1,macbeth,1603 epicures,1,macbeth,1603 Cut,1,macbeth,1603 ditch,1,macbeth,1603 Fillet,1,macbeth,1603 intrenchant,1,macbeth,1603 deliver'd,1,macbeth,1603 bane,1,macbeth,1603 cock,1,macbeth,1603 founded,1,macbeth,1603 Tartar's,1,macbeth,1603 bank,1,macbeth,1603 trains,1,macbeth,1603 slaughterous,1,macbeth,1603 Very,1,macbeth,1603 Oftener,1,macbeth,1603 cream,1,macbeth,1603 disorder,1,macbeth,1603 secrets,1,macbeth,1603 accustomed,1,macbeth,1603 dam,1,macbeth,1603 bill,1,macbeth,1603 trumpets,1,macbeth,1603 Welcome,1,macbeth,1603 mischance,1,macbeth,1603 masterdom,1,macbeth,1603 soul's,1,macbeth,1603 tale,1,macbeth,1603 predominant,1,macbeth,1603 lap,1,macbeth,1603 Caesar,1,macbeth,1603 talk,1,macbeth,1603 calendar,1,macbeth,1603 Listen,1,macbeth,1603 kite,1,macbeth,1603 witchcraft,1,macbeth,1603 males,1,macbeth,1603 source,1,macbeth,1603 unbatter'd,1,macbeth,1603 affliction,1,macbeth,1603 Disguising,1,macbeth,1603 bind,1,macbeth,1603 spaniels,1,macbeth,1603 provoker,1,macbeth,1603 Earl,1,macbeth,1603 stroke,1,macbeth,1603 haunting,1,macbeth,1603 watchful,1,macbeth,1603 Rather,1,macbeth,1603 greets,1,macbeth,1603 homeward,1,macbeth,1603 blisters,1,macbeth,1603 Led,1,macbeth,1603 recorded,1,macbeth,1603 pledge,1,macbeth,1603 jutty,1,macbeth,1603 holds,1,macbeth,1603 shook,1,macbeth,1603 swears,1,macbeth,1603 quit,1,macbeth,1603 short,1,macbeth,1603 clean,1,macbeth,1603 holp,1,macbeth,1603 professes,1,macbeth,1603 hole,1,macbeth,1603 inhabitants,1,macbeth,1603 greyhounds,1,macbeth,1603 dangerous,1,macbeth,1603 concluded,1,macbeth,1603 dishes,1,macbeth,1603 Liver,1,macbeth,1603 Lives,1,macbeth,1603 devour,1,macbeth,1603 follows,1,macbeth,1603 defect,1,macbeth,1603 dragon,1,macbeth,1603 counterfeit,1,macbeth,1603 feasts,1,macbeth,1603 dunnest,1,macbeth,1603 fires,1,macbeth,1603 smear,1,macbeth,1603 unto,1,macbeth,1603 peerless,1,macbeth,1603 request,1,macbeth,1603 loyal,1,macbeth,1603 argument,1,macbeth,1603 Listening,1,macbeth,1603 fatherless,1,macbeth,1603 murdering,1,macbeth,1603 condemn,1,macbeth,1603 hangman's,1,macbeth,1603 Wool,1,macbeth,1603 Where's,1,macbeth,1603 resolution,1,macbeth,1603 virtues,1,macbeth,1603 horsed,1,macbeth,1603 Awake,1,macbeth,1603 seal,1,macbeth,1603 Compell'd,1,macbeth,1603 favours,1,macbeth,1603 speculative,1,macbeth,1603 Masking,1,macbeth,1603 Turn'd,1,macbeth,1603 conjure,1,macbeth,1603 building,1,macbeth,1603 legions,1,macbeth,1603 Seize,1,macbeth,1603 Nose,1,macbeth,1603 also,1,macbeth,1603 cribb'd,1,macbeth,1603 satisfied,1,macbeth,1603 Striding,1,macbeth,1603 yellow,1,macbeth,1603 avaricious,1,macbeth,1603 seas,1,macbeth,1603 hairs,1,macbeth,1603 interest,1,macbeth,1603 perfumes,1,macbeth,1603 commission,1,macbeth,1603 hearty,1,macbeth,1603 offerings,1,macbeth,1603 supplies,1,macbeth,1603 cool,1,macbeth,1603 always,1,macbeth,1603 convince,1,macbeth,1603 drenched,1,macbeth,1603 breasts,1,macbeth,1603 fairer,1,macbeth,1603 auger,1,macbeth,1603 low,1,macbeth,1603 deepest,1,macbeth,1603 sweat,1,macbeth,1603 acts,1,macbeth,1603 tugg'd,1,macbeth,1603 kingdom,1,macbeth,1603 needful,1,macbeth,1603 suits,1,macbeth,1603 rabble's,1,macbeth,1603 healing,1,macbeth,1603 Luxurious,1,macbeth,1603 thereto,1,macbeth,1603 Seek,1,macbeth,1603 pronounced,1,macbeth,1603 aught,1,macbeth,1603 seed,1,macbeth,1603 supplied,1,macbeth,1603 material,1,macbeth,1603 Unmannerly,1,macbeth,1603 feeling,1,macbeth,1603 south,1,macbeth,1603 cousins,1,macbeth,1603 predecessors,1,macbeth,1603 shipman's,1,macbeth,1603 hounds,1,macbeth,1603 nerves,1,macbeth,1603 lowliness,1,macbeth,1603 unkindness,1,macbeth,1603 coz,1,macbeth,1603 wrack,1,macbeth,1603 elves,1,macbeth,1603 camest,1,macbeth,1603 angerly,1,macbeth,1603 understood,1,macbeth,1603 chestnuts,1,macbeth,1603 burned,1,macbeth,1603 conclude,1,macbeth,1603 valued,1,macbeth,1603 vessel,1,macbeth,1603 dauntless,1,macbeth,1603 tells,1,macbeth,1603 sweep,1,macbeth,1603 Mine,1,macbeth,1603 prophecy,1,macbeth,1603 battle,1,macbeth,1603 hound,1,macbeth,1603 Resolve,1,macbeth,1603 counsell'd,1,macbeth,1603 corn,1,macbeth,1603 incarnadine,1,macbeth,1603 Killing,1,macbeth,1603 sacred,1,macbeth,1603 Pull't,1,macbeth,1603 marshall'st,1,macbeth,1603 monkey,1,macbeth,1603 heavenly,1,macbeth,1603 modest,1,macbeth,1603 deign,1,macbeth,1603 avoid,1,macbeth,1603 briefly,1,macbeth,1603 loyalty,1,macbeth,1603 dwindle,1,macbeth,1603 generals,1,macbeth,1603 goat,1,macbeth,1603 resounds,1,macbeth,1603 cistern,1,macbeth,1603 entreat,1,macbeth,1603 croaks,1,macbeth,1603 screens,1,macbeth,1603 rebel's,1,macbeth,1603 tied,1,macbeth,1603 judicious,1,macbeth,1603 Send,1,macbeth,1603 bake,1,macbeth,1603 gibbet,1,macbeth,1603 modern,1,macbeth,1603 raven,1,macbeth,1603 believed,1,macbeth,1603 sell,1,macbeth,1603 Sinel's,1,macbeth,1603 franchised,1,macbeth,1603 moon's,1,macbeth,1603 aloud,1,macbeth,1603 vulture,1,macbeth,1603 cases,1,macbeth,1603 distracted,1,macbeth,1603 Hyrcan,1,macbeth,1603 Devotion,1,macbeth,1603 whilst,1,macbeth,1603 oppose,1,macbeth,1603 gloss,1,macbeth,1603 Edward,1,macbeth,1603 leg,1,macbeth,1603 led,1,macbeth,1603 Moves,1,macbeth,1603 Neither,1,macbeth,1603 entomb,1,macbeth,1603 mated,1,macbeth,1603 mother's,1,macbeth,1603 Tiger,1,macbeth,1603 ghosts,1,macbeth,1603 Ante,1,macbeth,1603 ronyon,1,macbeth,1603 impedes,1,macbeth,1603 hailed,1,macbeth,1603 howl's,1,macbeth,1603 Roman,1,macbeth,1603 Aleppo,1,macbeth,1603 deceive,1,macbeth,1603 ATTENDANT,1,macbeth,1603 greeting,1,macbeth,1603 herald,1,macbeth,1603 howl,1,macbeth,1603 sow's,1,macbeth,1603 Cure,1,macbeth,1603 barren,1,macbeth,1603 countryman,1,macbeth,1603 Creeps,1,macbeth,1603 Fears,1,macbeth,1603 blast,1,macbeth,1603 laudable,1,macbeth,1603 ravin,1,macbeth,1603 protest,1,macbeth,1603 Confronted,1,macbeth,1603 aright,1,macbeth,1603 affair,1,macbeth,1603 ripp'd,1,macbeth,1603 methought,1,macbeth,1603 slumbery,1,macbeth,1603 howl'd,1,macbeth,1603 palpable,1,macbeth,1603 Curses,1,macbeth,1603 Rebellion's,1,macbeth,1603 lid,1,macbeth,1603 fairies,1,macbeth,1603 Using,1,macbeth,1603 chanced,1,macbeth,1603 threat,1,macbeth,1603 borrower,1,macbeth,1603 untie,1,macbeth,1603 Wisdom,1,macbeth,1603 until,1,macbeth,1603 Two,1,macbeth,1603 oblivious,1,macbeth,1603 Colme's,1,macbeth,1603 sorely,1,macbeth,1603 credulous,1,macbeth,1603 storms,1,macbeth,1603 breech'd,1,macbeth,1603 swinish,1,macbeth,1603 choke,1,macbeth,1603 sleek,1,macbeth,1603 effects,1,macbeth,1603 clearness,1,macbeth,1603 rhinoceros,1,macbeth,1603 upbraid,1,macbeth,1603 batter'd,1,macbeth,1603 seated,1,macbeth,1603 vouch'd,1,macbeth,1603 peak,1,macbeth,1603 petty,1,macbeth,1603 unguarded,1,macbeth,1603 write,1,macbeth,1603 cloudy,1,macbeth,1603 mar,1,macbeth,1603 marvell'st,1,macbeth,1603 treasonous,1,macbeth,1603 confound,1,macbeth,1603 maw,1,macbeth,1603 fiends,1,macbeth,1603 sounded,1,macbeth,1603 starts,1,macbeth,1603 gums,1,macbeth,1603 volume,1,macbeth,1603 gains,1,macbeth,1603 peal,1,macbeth,1603 Greater,1,macbeth,1603 taint,1,macbeth,1603 Strong,1,macbeth,1603 Towards,1,macbeth,1603 'scape,1,macbeth,1603 future,1,macbeth,1603 vices,1,macbeth,1603 forced,1,macbeth,1603 strides,1,macbeth,1603 unfelt,1,macbeth,1603 learn,1,macbeth,1603 forces,1,macbeth,1603 lease,1,macbeth,1603 distresses,1,macbeth,1603 Finding,1,macbeth,1603 dread,1,macbeth,1603 Saucy,1,macbeth,1603 ratify,1,macbeth,1603 got'st,1,macbeth,1603 sister,1,macbeth,1603 Savagely,1,macbeth,1603 treacherous,1,macbeth,1603 parallel,1,macbeth,1603 glory,1,macbeth,1603 upward,1,macbeth,1603 hardy,1,macbeth,1603 readiness,1,macbeth,1603 censures,1,macbeth,1603 Does,1,macbeth,1603 grafted,1,macbeth,1603 Swelter'd,1,macbeth,1603 comforted,1,macbeth,1603 pleasant,1,macbeth,1603 Except,1,macbeth,1603 merciful,1,macbeth,1603 powerful,1,macbeth,1603 Away,1,macbeth,1603 convinces,1,macbeth,1603 Eight,1,macbeth,1603 flighty,1,macbeth,1603 'You'll,1,macbeth,1603 on's,1,macbeth,1603 physic,1,macbeth,1603 dollars,1,macbeth,1603 homage,1,macbeth,1603 o'erbear,1,macbeth,1603 beguile,1,macbeth,1603 whiles,1,macbeth,1603 prowess,1,macbeth,1603 Marry,1,macbeth,1603 fever,1,macbeth,1603 Russian,1,macbeth,1603 gulf,1,macbeth,1603 perfectest,1,macbeth,1603 unbend,1,macbeth,1603 Wherever,1,macbeth,1603 plucks,1,macbeth,1603 sheathe,1,macbeth,1603 virtue,1,macbeth,1603 fitness,1,macbeth,1603 undeeded,1,macbeth,1603 Looking,1,macbeth,1603 illness,1,macbeth,1603 hush,1,macbeth,1603 fright,1,macbeth,1603 recompense,1,macbeth,1603 peep,1,macbeth,1603 besides,1,macbeth,1603 Brandish'd,1,macbeth,1603 extend,1,macbeth,1603 silver,1,macbeth,1603 Round,1,macbeth,1603 list,1,macbeth,1603 'Hail,1,macbeth,1603 whey,1,macbeth,1603 lave,1,macbeth,1603 hurt,1,macbeth,1603 sword's,1,macbeth,1603 mummy,1,macbeth,1603 resembled,1,macbeth,1603 were't,1,macbeth,1603 Lent,1,macbeth,1603 slab,1,macbeth,1603 appetite,1,macbeth,1603 Grapples,1,macbeth,1603 compose,1,macbeth,1603 leafy,1,macbeth,1603 oracles,1,macbeth,1603 pyramids,1,macbeth,1603 conflict,1,macbeth,1603 shade,1,macbeth,1603 adage,1,macbeth,1603 try,1,macbeth,1603 transported,1,macbeth,1603 silent,1,macbeth,1603 Death,1,macbeth,1603 smacking,1,macbeth,1603 assurance,1,macbeth,1603 Therein,1,macbeth,1603 mouths,1,macbeth,1603 unsanctified,1,macbeth,1603 olden,1,macbeth,1603 hired,1,macbeth,1603 older,1,macbeth,1603 rises,1,macbeth,1603 payment,1,macbeth,1603 chamberlains,1,macbeth,1603 shaft,1,macbeth,1603 therewithal,1,macbeth,1603 expense,1,macbeth,1603 careless,1,macbeth,1603 brag,1,macbeth,1603 fail'd,1,macbeth,1603 distemper'd,1,macbeth,1603 knowings,1,macbeth,1603 dog,1,macbeth,1603 confirm,1,macbeth,1603 respect,1,macbeth,1603 wrathful,1,macbeth,1603 invites,1,macbeth,1603 portable,1,macbeth,1603 fenny,1,macbeth,1603 instructions,1,macbeth,1603 matrons,1,macbeth,1603 happily,1,macbeth,1603 amazedly,1,macbeth,1603 Gracious,1,macbeth,1603 swallow,1,macbeth,1603 perchance,1,macbeth,1603 Steep'd,1,macbeth,1603 Lest,1,macbeth,1603 whetstone,1,macbeth,1603 frame,1,macbeth,1603 Unsafe,1,macbeth,1603 weighs,1,macbeth,1603 pent,1,macbeth,1603 primrose,1,macbeth,1603 dry,1,macbeth,1603 seeling,1,macbeth,1603 illusion,1,macbeth,1603 needed,1,macbeth,1603 wonders,1,macbeth,1603 Reign,1,macbeth,1603 DRAMATIS,1,macbeth,1603 lamp,1,macbeth,1603 flout,1,macbeth,1603 sergeant,1,macbeth,1603 Due,1,macbeth,1603 tie,1,macbeth,1603 gash'd,1,macbeth,1603 guests,1,macbeth,1603 owlet's,1,macbeth,1603 physician,1,macbeth,1603 Malcolm's,1,macbeth,1603 Physic,1,macbeth,1603 armed,1,macbeth,1603 frankly,1,macbeth,1603 Angels,1,macbeth,1603 dame,1,macbeth,1603 pass'd,1,macbeth,1603 Christendom,1,macbeth,1603 shoal,1,macbeth,1603 largess,1,macbeth,1603 Fail,1,macbeth,1603 damn,1,macbeth,1603 flown,1,macbeth,1603 Ride,1,macbeth,1603 smell,1,macbeth,1603 stol'n,1,macbeth,1603 dew,1,macbeth,1603 Tarquin's,1,macbeth,1603 Bounty,1,macbeth,1603 reconcile,1,macbeth,1603 scales,1,macbeth,1603 speaker,1,macbeth,1603 blaspheme,1,macbeth,1603 Carried,1,macbeth,1603 couriers,1,macbeth,1603 take't,1,macbeth,1603 amen,1,macbeth,1603 remorse,1,macbeth,1603 chappy,1,macbeth,1603 False,1,macbeth,1603 Opens,1,macbeth,1603 candles,1,macbeth,1603 parley,1,macbeth,1603 Destroying,1,macbeth,1603 flattering,1,macbeth,1603 bids,1,macbeth,1603 shape,1,macbeth,1603 tread,1,macbeth,1603 market,1,macbeth,1603 spoils,1,macbeth,1603 Lechery,1,macbeth,1603 Words,1,macbeth,1603 Sticks,1,macbeth,1603 prattler,1,macbeth,1603 share,1,macbeth,1603 shard,1,macbeth,1603 chambers,1,macbeth,1603 e'er,1,macbeth,1603 skinny,1,macbeth,1603 sharp,1,macbeth,1603 vanish'd,1,macbeth,1603 monsters,1,macbeth,1603 shark,1,macbeth,1603 inventor,1,macbeth,1603 degrees,1,macbeth,1603 hedge,1,macbeth,1603 Confound,1,macbeth,1603 daughters,1,macbeth,1603 Prepares,1,macbeth,1603 brave,2,macbeth,1603 treason,2,macbeth,1603 kingdom's,2,macbeth,1603 troubled,2,macbeth,1603 regard,2,macbeth,1603 troubles,2,macbeth,1603 forbid,2,macbeth,1603 pity,2,macbeth,1603 c,2,macbeth,1603 Nay,2,macbeth,1603 smiles,2,macbeth,1603 red,2,macbeth,1603 advice,2,macbeth,1603 guilt,2,macbeth,1603 station,2,macbeth,1603 mistress,2,macbeth,1603 Alas,2,macbeth,1603 following,2,macbeth,1603 Fie,2,macbeth,1603 wicked,2,macbeth,1603 brows,2,macbeth,1603 purge,2,macbeth,1603 preparation,2,macbeth,1603 stopp'd,2,macbeth,1603 joy,2,macbeth,1603 dire,2,macbeth,1603 Norway,2,macbeth,1603 truly,2,macbeth,1603 Tell,2,macbeth,1603 sleepy,2,macbeth,1603 darkness,2,macbeth,1603 prosperous,2,macbeth,1603 rumour,2,macbeth,1603 offer,2,macbeth,1603 tears,2,macbeth,1603 fought,2,macbeth,1603 naked,2,macbeth,1603 Ere,2,macbeth,1603 sore,2,macbeth,1603 Pour,2,macbeth,1603 cheeks,2,macbeth,1603 lightning,2,macbeth,1603 attempt,2,macbeth,1603 song,2,macbeth,1603 walking,2,macbeth,1603 breach,2,macbeth,1603 stirring,2,macbeth,1603 mercy,2,macbeth,1603 birth,2,macbeth,1603 amazed,2,macbeth,1603 After,2,macbeth,1603 slept,2,macbeth,1603 yourself,2,macbeth,1603 pine,2,macbeth,1603 charms,2,macbeth,1603 succeeding,2,macbeth,1603 trumpet,2,macbeth,1603 heat,2,macbeth,1603 wants,2,macbeth,1603 hearing,2,macbeth,1603 glass,2,macbeth,1603 making,2,macbeth,1603 addition,2,macbeth,1603 teach,2,macbeth,1603 wail,2,macbeth,1603 began,2,macbeth,1603 partner,2,macbeth,1603 impress,2,macbeth,1603 stands,2,macbeth,1603 sin,2,macbeth,1603 key,2,macbeth,1603 tooth,2,macbeth,1603 rubs,2,macbeth,1603 wake,2,macbeth,1603 society,2,macbeth,1603 Farewell,2,macbeth,1603 subject,2,macbeth,1603 plenty,2,macbeth,1603 'I,2,macbeth,1603 disgrace,2,macbeth,1603 looks,2,macbeth,1603 pitiful,2,macbeth,1603 stuff,2,macbeth,1603 ourselves,2,macbeth,1603 heavens,2,macbeth,1603 These,2,macbeth,1603 Out,2,macbeth,1603 turn,2,macbeth,1603 fellow,2,macbeth,1603 common,2,macbeth,1603 absence,2,macbeth,1603 runs,2,macbeth,1603 relate,2,macbeth,1603 mark'd,2,macbeth,1603 vanishes,2,macbeth,1603 feet,2,macbeth,1603 promise,2,macbeth,1603 sauce,2,macbeth,1603 cleave,2,macbeth,1603 grow,2,macbeth,1603 malice,2,macbeth,1603 upon't,2,macbeth,1603 others,2,macbeth,1603 boil,2,macbeth,1603 Fly,2,macbeth,1603 mirth,2,macbeth,1603 edge,2,macbeth,1603 goose,2,macbeth,1603 wise,2,macbeth,1603 custom,2,macbeth,1603 sooth,2,macbeth,1603 sense,2,macbeth,1603 horrors,2,macbeth,1603 voice,2,macbeth,1603 bond,2,macbeth,1603 doubts,2,macbeth,1603 meat,2,macbeth,1603 wash,2,macbeth,1603 steel,2,macbeth,1603 manly,2,macbeth,1603 manhood,2,macbeth,1603 bright,2,macbeth,1603 praises,2,macbeth,1603 deserves,2,macbeth,1603 sick,2,macbeth,1603 Faith,2,macbeth,1603 I',2,macbeth,1603 stir,2,macbeth,1603 morning,2,macbeth,1603 drown,2,macbeth,1603 strongly,2,macbeth,1603 Hold,2,macbeth,1603 While,2,macbeth,1603 foes,2,macbeth,1603 'Fear,2,macbeth,1603 measure,2,macbeth,1603 balls,2,macbeth,1603 quarrel,2,macbeth,1603 neither,2,macbeth,1603 therefore,2,macbeth,1603 Hie,2,macbeth,1603 Whiles,2,macbeth,1603 eternal,2,macbeth,1603 strangers,2,macbeth,1603 govern,2,macbeth,1603 alarum,2,macbeth,1603 Still,2,macbeth,1603 blown,2,macbeth,1603 smile,2,macbeth,1603 bad,2,macbeth,1603 bat,2,macbeth,1603 canst,2,macbeth,1603 to't,2,macbeth,1603 begun,2,macbeth,1603 'Murder,2,macbeth,1603 finds,2,macbeth,1603 tear,2,macbeth,1603 beg,2,macbeth,1603 sovereignty,2,macbeth,1603 bless,2,macbeth,1603 strangely,2,macbeth,1603 deserved,2,macbeth,1603 wither'd,2,macbeth,1603 treachery,2,macbeth,1603 ears,2,macbeth,1603 heads,2,macbeth,1603 temple,2,macbeth,1603 haunt,2,macbeth,1603 royalty,2,macbeth,1603 Thou'rt,2,macbeth,1603 gave,2,macbeth,1603 sorry,2,macbeth,1603 was't,2,macbeth,1603 sooner,2,macbeth,1603 rebel,2,macbeth,1603 belief,2,macbeth,1603 Present,2,macbeth,1603 Prithee,2,macbeth,1603 got,2,macbeth,1603 cat,2,macbeth,1603 scruples,2,macbeth,1603 struck,2,macbeth,1603 awaked,2,macbeth,1603 weak,2,macbeth,1603 weal,2,macbeth,1603 treasons,2,macbeth,1603 imperial,2,macbeth,1603 Strange,2,macbeth,1603 beyond,2,macbeth,1603 Dies,2,macbeth,1603 serpent,2,macbeth,1603 farewell,2,macbeth,1603 eaten,2,macbeth,1603 curse,2,macbeth,1603 buy,2,macbeth,1603 used,2,macbeth,1603 longer,2,macbeth,1603 Meet,2,macbeth,1603 begin,2,macbeth,1603 'Hold,2,macbeth,1603 dogs,2,macbeth,1603 story,2,macbeth,1603 instant,2,macbeth,1603 forgive,2,macbeth,1603 image,2,macbeth,1603 breast,2,macbeth,1603 gift,2,macbeth,1603 servant,2,macbeth,1603 favour,2,macbeth,1603 painting,2,macbeth,1603 beat,2,macbeth,1603 gain,2,macbeth,1603 tongues,2,macbeth,1603 weigh'd,2,macbeth,1603 Cousins,2,macbeth,1603 Besides,2,macbeth,1603 liars,2,macbeth,1603 lighted,2,macbeth,1603 destruction,2,macbeth,1603 torches,2,macbeth,1603 defence,2,macbeth,1603 memory,2,macbeth,1603 cruelty,2,macbeth,1603 forgotten,2,macbeth,1603 rouse,2,macbeth,1603 oh,2,macbeth,1603 ask'd,2,macbeth,1603 attending,2,macbeth,1603 commend,2,macbeth,1603 plant,2,macbeth,1603 Goes,2,macbeth,1603 abide,2,macbeth,1603 Live,2,macbeth,1603 account,2,macbeth,1603 mingle,2,macbeth,1603 age,2,macbeth,1603 if't,2,macbeth,1603 endure,2,macbeth,1603 causes,2,macbeth,1603 moon,2,macbeth,1603 Yes,2,macbeth,1603 MACBETH's,2,macbeth,1603 spent,2,macbeth,1603 loved,2,macbeth,1603 sightless,2,macbeth,1603 greater,2,macbeth,1603 spot,2,macbeth,1603 cling,2,macbeth,1603 natures,2,macbeth,1603 men's,2,macbeth,1603 Came,2,macbeth,1603 thrice,2,macbeth,1603 graves,2,macbeth,1603 Whence,2,macbeth,1603 brought,2,macbeth,1603 speaks,2,macbeth,1603 Most,2,macbeth,1603 keen,2,macbeth,1603 pull,2,macbeth,1603 sinks,2,macbeth,1603 half,2,macbeth,1603 spur,2,macbeth,1603 natural,2,macbeth,1603 trade,2,macbeth,1603 interpret,2,macbeth,1603 appears,2,macbeth,1603 deny,2,macbeth,1603 firstlings,2,macbeth,1603 drawn,2,macbeth,1603 joyful,2,macbeth,1603 course,2,macbeth,1603 open,2,macbeth,1603 Under,2,macbeth,1603 castle's,2,macbeth,1603 charmed,2,macbeth,1603 delight,2,macbeth,1603 paid,2,macbeth,1603 mock,2,macbeth,1603 walked,2,macbeth,1603 owed,2,macbeth,1603 pace,2,macbeth,1603 hate,2,macbeth,1603 dreadful,2,macbeth,1603 rings,2,macbeth,1603 frets,2,macbeth,1603 fall'n,2,macbeth,1603 revenge,2,macbeth,1603 push,2,macbeth,1603 fancies,2,macbeth,1603 fold,2,macbeth,1603 nearest,2,macbeth,1603 secret,2,macbeth,1603 King,2,macbeth,1603 ingredients,2,macbeth,1603 banquet,2,macbeth,1603 bought,2,macbeth,1603 theirs,2,macbeth,1603 Sirrah,2,macbeth,1603 fed,2,macbeth,1603 ministers,2,macbeth,1603 judgment,2,macbeth,1603 sicken,2,macbeth,1603 leaf,2,macbeth,1603 march,2,macbeth,1603 Comes,2,macbeth,1603 room,2,macbeth,1603 enow,2,macbeth,1603 main,2,macbeth,1603 syllable,2,macbeth,1603 'Thus,2,macbeth,1603 hill,2,macbeth,1603 Ireland,2,macbeth,1603 couldst,2,macbeth,1603 distance,2,macbeth,1603 sickly,2,macbeth,1603 'Gainst,2,macbeth,1603 nightgown,2,macbeth,1603 repose,2,macbeth,1603 Apparitions,2,macbeth,1603 Hecate's,2,macbeth,1603 wonder,2,macbeth,1603 locks,2,macbeth,1603 Peace,2,macbeth,1603 'Sleep,2,macbeth,1603 bears,2,macbeth,1603 tender,2,macbeth,1603 beard,2,macbeth,1603 estate,2,macbeth,1603 ours,2,macbeth,1603 banners,2,macbeth,1603 you'll,2,macbeth,1603 ignorant,2,macbeth,1603 Approach,2,macbeth,1603 forest,2,macbeth,1603 several,2,macbeth,1603 powers,2,macbeth,1603 precious,2,macbeth,1603 placed,2,macbeth,1603 rugged,2,macbeth,1603 leaves,2,macbeth,1603 avarice,2,macbeth,1603 fantastical,2,macbeth,1603 mile,2,macbeth,1603 approaches,2,macbeth,1603 Makes,2,macbeth,1603 bosoms,2,macbeth,1603 already,2,macbeth,1603 'gainst,2,macbeth,1603 courage,2,macbeth,1603 coward,2,macbeth,1603 mark,2,macbeth,1603 let's,2,macbeth,1603 won,2,macbeth,1603 brains,2,macbeth,1603 greatest,2,macbeth,1603 beside,2,macbeth,1603 heaven's,2,macbeth,1603 father's,2,macbeth,1603 holily,2,macbeth,1603 gin,2,macbeth,1603 horrible,2,macbeth,1603 fire,2,macbeth,1603 passage,2,macbeth,1603 Cumberland,2,macbeth,1603 wit,2,macbeth,1603 message,2,macbeth,1603 cure,2,macbeth,1603 knife,2,macbeth,1603 selfsame,2,macbeth,1603 clock,2,macbeth,1603 crown'd,2,macbeth,1603 Thus,2,macbeth,1603 Think,2,macbeth,1603 earnest,2,macbeth,1603 Worthy,2,macbeth,1603 arms,2,macbeth,1603 tailor,2,macbeth,1603 between,2,macbeth,1603 kinsmen,2,macbeth,1603 danger,2,macbeth,1603 hags,2,macbeth,1603 serve,2,macbeth,1603 ends,2,macbeth,1603 prick,2,macbeth,1603 cursed,2,macbeth,1603 dreams,2,macbeth,1603 faced,2,macbeth,1603 charged,2,macbeth,1603 angel,2,macbeth,1603 require,2,macbeth,1603 lust,2,macbeth,1603 sticking,2,macbeth,1603 rain,2,macbeth,1603 wolf,2,macbeth,1603 timely,2,macbeth,1603 minister,2,macbeth,1603 table,2,macbeth,1603 grieve,2,macbeth,1603 ground,2,macbeth,1603 Time,2,macbeth,1603 highly,2,macbeth,1603 snake,2,macbeth,1603 cloud,2,macbeth,1603 Shake,2,macbeth,1603 grant,2,macbeth,1603 truths,2,macbeth,1603 kinsman,2,macbeth,1603 tune,2,macbeth,1603 company,2,macbeth,1603 lodged,2,macbeth,1603 ride,2,macbeth,1603 caution,2,macbeth,1603 Sweet,2,macbeth,1603 minute,2,macbeth,1603 Mark,2,macbeth,1603 offices,2,macbeth,1603 passion,2,macbeth,1603 Attend,2,macbeth,1603 continue,2,macbeth,1603 folly,2,macbeth,1603 thunder,2,macbeth,1603 Unto,2,macbeth,1603 poison'd,2,macbeth,1603 uncle,2,macbeth,1603 patient,2,macbeth,1603 recoil,2,macbeth,1603 kiss,2,macbeth,1603 large,2,macbeth,1603 named,2,macbeth,1603 ecstasy,2,macbeth,1603 arm'd,2,macbeth,1603 provokes,2,macbeth,1603 carry,2,macbeth,1603 Already,2,macbeth,1603 Every,2,macbeth,1603 pardon,2,macbeth,1603 Lay,2,macbeth,1603 green,2,macbeth,1603 greet,2,macbeth,1603 famine,2,macbeth,1603 revolt,2,macbeth,1603 Wherefore,2,macbeth,1603 thou'ldst,2,macbeth,1603 robes,2,macbeth,1603 Anon,2,macbeth,1603 prithee,2,macbeth,1603 sear,2,macbeth,1603 seat,2,macbeth,1603 swear,2,macbeth,1603 blade,2,macbeth,1603 adieu,2,macbeth,1603 drunk,2,macbeth,1603 Prince,2,macbeth,1603 baby,2,macbeth,1603 goodness,2,macbeth,1603 seek,2,macbeth,1603 either,2,macbeth,1603 presence,2,macbeth,1603 fellows,2,macbeth,1603 tidings,2,macbeth,1603 sweet,2,macbeth,1603 True,2,macbeth,1603 expectation,2,macbeth,1603 setting,2,macbeth,1603 Pray,2,macbeth,1603 confirm'd,2,macbeth,1603 Gentlemen,2,macbeth,1603 hums,2,macbeth,1603 pour,2,macbeth,1603 heels,2,macbeth,1603 blame,2,macbeth,1603 wretched,2,macbeth,1603 remove,2,macbeth,1603 Sent,2,macbeth,1603 'God,2,macbeth,1603 post,2,macbeth,1603 bleeding,2,macbeth,1603 alas,2,macbeth,1603 sent,2,macbeth,1603 season,2,macbeth,1603 madam,2,macbeth,1603 safer,2,macbeth,1603 invite,2,macbeth,1603 brow,2,macbeth,1603 slow,2,macbeth,1603 swearers,2,macbeth,1603 least,2,macbeth,1603 abroad,2,macbeth,1603 spite,2,macbeth,1603 consequence,2,macbeth,1603 smiling,2,macbeth,1603 doing,2,macbeth,1603 straight,2,macbeth,1603 trusted,2,macbeth,1603 According,2,macbeth,1603 sovereign,2,macbeth,1603 evils,2,macbeth,1603 Since,2,macbeth,1603 abuse,2,macbeth,1603 battlements,2,macbeth,1603 confess'd,2,macbeth,1603 pernicious,2,macbeth,1603 wound,2,macbeth,1603 strokes,2,macbeth,1603 lion,2,macbeth,1603 Sleep,2,macbeth,1603 pious,2,macbeth,1603 VII,2,macbeth,1603 sleeping,2,macbeth,1603 betimes,2,macbeth,1603 harms,2,macbeth,1603 human,2,macbeth,1603 Northumberland,2,macbeth,1603 going,2,macbeth,1603 content,2,macbeth,1603 spring,2,macbeth,1603 entrance,2,macbeth,1603 witness,2,macbeth,1603 numbers,2,macbeth,1603 laid,2,macbeth,1603 pillows,2,macbeth,1603 asleep,2,macbeth,1603 provide,2,macbeth,1603 honour'd,2,macbeth,1603 toe,2,macbeth,1603 destroy,2,macbeth,1603 supp'd,2,macbeth,1603 blessing,2,macbeth,1603 dispatch,2,macbeth,1603 lamb,2,macbeth,1603 liest,2,macbeth,1603 shift,2,macbeth,1603 venom,2,macbeth,1603 filthy,2,macbeth,1603 flower,2,macbeth,1603 trees,2,macbeth,1603 Inverness,2,macbeth,1603 Fair,2,macbeth,1603 corporal,2,macbeth,1603 awake,2,macbeth,1603 done't,2,macbeth,1603 direction,2,macbeth,1603 order,2,macbeth,1603 'They,2,macbeth,1603 sway,2,macbeth,1603 summer,2,macbeth,1603 kerns,3,macbeth,1603 instruments,3,macbeth,1603 Stands,3,macbeth,1603 suffer,3,macbeth,1603 taking,3,macbeth,1603 days,3,macbeth,1603 drop,3,macbeth,1603 for't,3,macbeth,1603 leisure,3,macbeth,1603 Hear,3,macbeth,1603 knell,3,macbeth,1603 woman's,3,macbeth,1603 New,3,macbeth,1603 honours,3,macbeth,1603 Whether,3,macbeth,1603 dagger,3,macbeth,1603 haste,3,macbeth,1603 bones,3,macbeth,1603 highness',3,macbeth,1603 single,3,macbeth,1603 Scone,3,macbeth,1603 mere,3,macbeth,1603 disease,3,macbeth,1603 toil,3,macbeth,1603 hanged,3,macbeth,1603 fury,3,macbeth,1603 throat,3,macbeth,1603 horrid,3,macbeth,1603 calls,3,macbeth,1603 absolute,3,macbeth,1603 damned,3,macbeth,1603 cast,3,macbeth,1603 Poor,3,macbeth,1603 strength,3,macbeth,1603 soon,3,macbeth,1603 graces,3,macbeth,1603 charge,3,macbeth,1603 draw,3,macbeth,1603 grows,3,macbeth,1603 babes,3,macbeth,1603 golden,3,macbeth,1603 fools,3,macbeth,1603 wait,3,macbeth,1603 something,3,macbeth,1603 execution,3,macbeth,1603 speeches,3,macbeth,1603 Get,3,macbeth,1603 bound,3,macbeth,1603 body,3,macbeth,1603 sea,3,macbeth,1603 birds,3,macbeth,1603 summons,3,macbeth,1603 sprites,3,macbeth,1603 Music,3,macbeth,1603 read,3,macbeth,1603 accursed,3,macbeth,1603 received,3,macbeth,1603 vanish,3,macbeth,1603 ways,3,macbeth,1603 king's,3,macbeth,1603 above,3,macbeth,1603 wine,3,macbeth,1603 wing,3,macbeth,1603 porter,3,macbeth,1603 Might,3,macbeth,1603 One,3,macbeth,1603 wish,3,macbeth,1603 seem'd,3,macbeth,1603 pretty,3,macbeth,1603 mean,3,macbeth,1603 office,3,macbeth,1603 he's,3,macbeth,1603 knowledge,3,macbeth,1603 life's,3,macbeth,1603 patience,3,macbeth,1603 boy,3,macbeth,1603 deeds,3,macbeth,1603 unnatural,3,macbeth,1603 hopes,3,macbeth,1603 Stand,3,macbeth,1603 Her,3,macbeth,1603 whole,3,macbeth,1603 applaud,3,macbeth,1603 equivocator,3,macbeth,1603 Almost,3,macbeth,1603 Is't,3,macbeth,1603 VI,3,macbeth,1603 yourselves,3,macbeth,1603 'Amen',3,macbeth,1603 dost,3,macbeth,1603 Child,3,macbeth,1603 shadow,3,macbeth,1603 Put,3,macbeth,1603 just,3,macbeth,1603 Whither,3,macbeth,1603 vantage,3,macbeth,1603 God's,3,macbeth,1603 promised,3,macbeth,1603 Cannot,3,macbeth,1603 aid,3,macbeth,1603 needs,3,macbeth,1603 dear,3,macbeth,1603 long,3,macbeth,1603 approach,3,macbeth,1603 Duncan's,3,macbeth,1603 damn'd,3,macbeth,1603 sometime,3,macbeth,1603 loves,3,macbeth,1603 grooms,3,macbeth,1603 ho,3,macbeth,1603 speak'st,3,macbeth,1603 all's,3,macbeth,1603 lose,3,macbeth,1603 twenty,3,macbeth,1603 ready,3,macbeth,1603 Double,3,macbeth,1603 easy,3,macbeth,1603 hard,3,macbeth,1603 front,3,macbeth,1603 shut,3,macbeth,1603 marching,3,macbeth,1603 arm,3,macbeth,1603 foot,3,macbeth,1603 alive,3,macbeth,1603 fool,3,macbeth,1603 dismal,3,macbeth,1603 fiend,3,macbeth,1603 tyranny,3,macbeth,1603 Attendant,3,macbeth,1603 mayst,3,macbeth,1603 ye,3,macbeth,1603 armour,3,macbeth,1603 right,3,macbeth,1603 undone,3,macbeth,1603 touch,3,macbeth,1603 Art,3,macbeth,1603 guest,3,macbeth,1603 spoken,3,macbeth,1603 Into,3,macbeth,1603 watch,3,macbeth,1603 justice,3,macbeth,1603 keeps,3,macbeth,1603 broad,3,macbeth,1603 rapt,3,macbeth,1603 faith,3,macbeth,1603 newest,3,macbeth,1603 traitors,3,macbeth,1603 She,3,macbeth,1603 perform,3,macbeth,1603 dares,3,macbeth,1603 question,3,macbeth,1603 yours,3,macbeth,1603 Some,3,macbeth,1603 towards,3,macbeth,1603 milk,3,macbeth,1603 soldiers,3,macbeth,1603 start,3,macbeth,1603 didst,3,macbeth,1603 slave,3,macbeth,1603 blow,3,macbeth,1603 miss,3,macbeth,1603 need,3,macbeth,1603 over,3,macbeth,1603 gashes,3,macbeth,1603 firm,3,macbeth,1603 ones,3,macbeth,1603 Hautboys,3,macbeth,1603 close,3,macbeth,1603 murders,3,macbeth,1603 sides,3,macbeth,1603 win,3,macbeth,1603 We'll,3,macbeth,1603 heath,3,macbeth,1603 moment,3,macbeth,1603 believe,3,macbeth,1603 stage,3,macbeth,1603 war,3,macbeth,1603 Can,3,macbeth,1603 ambition,3,macbeth,1603 bleed,3,macbeth,1603 found,3,macbeth,1603 supper,3,macbeth,1603 happy,3,macbeth,1603 hair,3,macbeth,1603 Heaven,3,macbeth,1603 fail,3,macbeth,1603 file,3,macbeth,1603 minds,3,macbeth,1603 desert,3,macbeth,1603 wounds,3,macbeth,1603 fit,3,macbeth,1603 ne'er,3,macbeth,1603 sundry,3,macbeth,1603 Fare,3,macbeth,1603 bird,3,macbeth,1603 munch'd,3,macbeth,1603 gentleman,3,macbeth,1603 fast,3,macbeth,1603 lay,3,macbeth,1603 gentlemen,3,macbeth,1603 wild,3,macbeth,1603 wilt,3,macbeth,1603 sights,3,macbeth,1603 holy,3,macbeth,1603 Norweyan,3,macbeth,1603 cut,3,macbeth,1603 gives,3,macbeth,1603 prayers,3,macbeth,1603 hearts,3,macbeth,1603 alone,3,macbeth,1603 babe,3,macbeth,1603 look'd,3,macbeth,1603 person,3,macbeth,1603 tree,3,macbeth,1603 Know,3,macbeth,1603 souls,3,macbeth,1603 bade,3,macbeth,1603 Fire,3,macbeth,1603 torch,3,macbeth,1603 Nothing,3,macbeth,1603 servants,3,macbeth,1603 eat,3,macbeth,1603 Ring,3,macbeth,1603 mad,3,macbeth,1603 afeard,3,macbeth,1603 Another,3,macbeth,1603 warlike,3,macbeth,1603 met,3,macbeth,1603 lips,3,macbeth,1603 liege,3,macbeth,1603 May,3,macbeth,1603 Without,3,macbeth,1603 contend,3,macbeth,1603 attend,3,macbeth,1603 due,3,macbeth,1603 catch,3,macbeth,1603 land,3,macbeth,1603 top,3,macbeth,1603 shine,3,macbeth,1603 Too,3,macbeth,1603 Take,3,macbeth,1603 greatness,3,macbeth,1603 shame,3,macbeth,1603 kind,3,macbeth,1603 pronounce,3,macbeth,1603 Descends,3,macbeth,1603 spirit,3,macbeth,1603 kill,3,macbeth,1603 remembrance,3,macbeth,1603 obedience,3,macbeth,1603 lack,3,macbeth,1603 Thrice,3,macbeth,1603 lady,3,macbeth,1603 times,4,macbeth,1603 speech,4,macbeth,1603 horse,4,macbeth,1603 day's,4,macbeth,1603 villain,4,macbeth,1603 Must,4,macbeth,1603 violent,4,macbeth,1603 drum,4,macbeth,1603 laugh,4,macbeth,1603 soul,4,macbeth,1603 trust,4,macbeth,1603 Whom,4,macbeth,1603 become,4,macbeth,1603 sons,4,macbeth,1603 saw,4,macbeth,1603 line,4,macbeth,1603 cheer,4,macbeth,1603 Only,4,macbeth,1603 came,4,macbeth,1603 Nor,4,macbeth,1603 hereafter,4,macbeth,1603 'twere,4,macbeth,1603 walk,4,macbeth,1603 throne,4,macbeth,1603 scorn,4,macbeth,1603 yield,4,macbeth,1603 nine,4,macbeth,1603 worth,4,macbeth,1603 Such,4,macbeth,1603 cause,4,macbeth,1603 second,4,macbeth,1603 doubt,4,macbeth,1603 Thanks,4,macbeth,1603 worse,4,macbeth,1603 brain,4,macbeth,1603 after,4,macbeth,1603 cries,4,macbeth,1603 sun,4,macbeth,1603 feel,4,macbeth,1603 service,4,macbeth,1603 bring,4,macbeth,1603 wind,4,macbeth,1603 night's,4,macbeth,1603 seems,4,macbeth,1603 bold,4,macbeth,1603 spoke,4,macbeth,1603 senses,4,macbeth,1603 An,4,macbeth,1603 pay,4,macbeth,1603 cruel,4,macbeth,1603 stay,4,macbeth,1603 On,4,macbeth,1603 since,4,macbeth,1603 fatal,4,macbeth,1603 Let's,4,macbeth,1603 play,4,macbeth,1603 valiant,4,macbeth,1603 Drum,4,macbeth,1603 whose,4,macbeth,1603 burn,4,macbeth,1603 people,4,macbeth,1603 Speak,4,macbeth,1603 swift,4,macbeth,1603 pains,4,macbeth,1603 Here's,4,macbeth,1603 stood,4,macbeth,1603 safe,4,macbeth,1603 husband,4,macbeth,1603 thyself,4,macbeth,1603 Seyton,4,macbeth,1603 move,4,macbeth,1603 ill,4,macbeth,1603 spend,4,macbeth,1603 act,4,macbeth,1603 valour,4,macbeth,1603 field,4,macbeth,1603 pale,4,macbeth,1603 hang,4,macbeth,1603 foul,4,macbeth,1603 point,4,macbeth,1603 bosom,4,macbeth,1603 broke,4,macbeth,1603 having,4,macbeth,1603 here's,4,macbeth,1603 root,4,macbeth,1603 often,4,macbeth,1603 Knock,4,macbeth,1603 note,4,macbeth,1603 Hang,4,macbeth,1603 hide,4,macbeth,1603 slain,4,macbeth,1603 strike,4,macbeth,1603 charm,4,macbeth,1603 quickly,4,macbeth,1603 See,4,macbeth,1603 high,4,macbeth,1603 bubble,4,macbeth,1603 end,4,macbeth,1603 wrought,4,macbeth,1603 there's,4,macbeth,1603 labour,4,macbeth,1603 free,4,macbeth,1603 breed,4,macbeth,1603 same,4,macbeth,1603 doctor,4,macbeth,1603 court,4,macbeth,1603 break,4,macbeth,1603 flight,4,macbeth,1603 heavy,4,macbeth,1603 owl,4,macbeth,1603 news,4,macbeth,1603 Siward,4,macbeth,1603 takes,4,macbeth,1603 owe,4,macbeth,1603 went,4,macbeth,1603 whence,4,macbeth,1603 Even,4,macbeth,1603 fair,4,macbeth,1603 cried,4,macbeth,1603 Make,4,macbeth,1603 work,4,macbeth,1603 perfect,4,macbeth,1603 host,4,macbeth,1603 queen,4,macbeth,1603 lived,4,macbeth,1603 Each,4,macbeth,1603 is't,4,macbeth,1603 man's,4,macbeth,1603 thousand,4,macbeth,1603 clear,4,macbeth,1603 thank,4,macbeth,1603 strong,4,macbeth,1603 country's,4,macbeth,1603 nights,4,macbeth,1603 self,4,macbeth,1603 nature's,4,macbeth,1603 remember,4,macbeth,1603 makes,4,macbeth,1603 meeting,4,macbeth,1603 on't,4,macbeth,1603 He's,4,macbeth,1603 success,4,macbeth,1603 behold,4,macbeth,1603 might,4,macbeth,1603 ten,4,macbeth,1603 enemy,4,macbeth,1603 answer,5,macbeth,1603 o'er,5,macbeth,1603 help,5,macbeth,1603 health,5,macbeth,1603 withal,5,macbeth,1603 under,5,macbeth,1603 terrible,5,macbeth,1603 world,5,macbeth,1603 care,5,macbeth,1603 horror,5,macbeth,1603 toward,5,macbeth,1603 sure,5,macbeth,1603 another,5,macbeth,1603 noise,5,macbeth,1603 Their,5,macbeth,1603 't,5,macbeth,1603 mother,5,macbeth,1603 GHOST,5,macbeth,1603 worst,5,macbeth,1603 afraid,5,macbeth,1603 kill'd,5,macbeth,1603 thence,5,macbeth,1603 soldier,5,macbeth,1603 title,5,macbeth,1603 anon,5,macbeth,1603 friend,5,macbeth,1603 OF,5,macbeth,1603 innocent,5,macbeth,1603 Go,5,macbeth,1603 means,5,macbeth,1603 pleasure,5,macbeth,1603 Had,5,macbeth,1603 grief,5,macbeth,1603 wear,5,macbeth,1603 Like,5,macbeth,1603 gate,5,macbeth,1603 Both,5,macbeth,1603 door,5,macbeth,1603 feast,5,macbeth,1603 Banquo's,5,macbeth,1603 harm,5,macbeth,1603 round,5,macbeth,1603 call'd,5,macbeth,1603 chance,5,macbeth,1603 thanks,5,macbeth,1603 far,5,macbeth,1603 thanes,5,macbeth,1603 Macbeth's,5,macbeth,1603 Against,5,macbeth,1603 indeed,5,macbeth,1603 water,5,macbeth,1603 almost,5,macbeth,1603 gentle,5,macbeth,1603 Flourish,5,macbeth,1603 majesty,5,macbeth,1603 young,5,macbeth,1603 Lord,5,macbeth,1603 general,5,macbeth,1603 dearest,5,macbeth,1603 thick,5,macbeth,1603 grave,5,macbeth,1603 former,5,macbeth,1603 Say,5,macbeth,1603 Alarums,5,macbeth,1603 receive,5,macbeth,1603 faces,5,macbeth,1603 Show,5,macbeth,1603 'em,5,macbeth,1603 fill,5,macbeth,1603 duties,5,macbeth,1603 comfort,5,macbeth,1603 reason,5,macbeth,1603 home,5,macbeth,1603 honest,5,macbeth,1603 horses,5,macbeth,1603 sound,5,macbeth,1603 traitor,5,macbeth,1603 Things,5,macbeth,1603 return,5,macbeth,1603 hither,5,macbeth,1603 send,5,macbeth,1603 goes,5,macbeth,1603 purpose,5,macbeth,1603 ear,5,macbeth,1603 spirits,5,macbeth,1603 hostess,5,macbeth,1603 murder'd,5,macbeth,1603 Before,5,macbeth,1603 thither,5,macbeth,1603 Did,5,macbeth,1603 dark,5,macbeth,1603 Bring,5,macbeth,1603 certain,5,macbeth,1603 shake,5,macbeth,1603 command,5,macbeth,1603 wouldst,5,macbeth,1603 die,5,macbeth,1603 women,5,macbeth,1603 meet,6,macbeth,1603 tyrant's,6,macbeth,1603 while,6,macbeth,1603 Sergeant,6,macbeth,1603 highness,6,macbeth,1603 gracious,6,macbeth,1603 sit,6,macbeth,1603 Old,6,macbeth,1603 died,6,macbeth,1603 murder,6,macbeth,1603 desire,6,macbeth,1603 chamber,6,macbeth,1603 Donalbain,6,macbeth,1603 bell,6,macbeth,1603 doth,6,macbeth,1603 said,6,macbeth,1603 deep,6,macbeth,1603 left,6,macbeth,1603 CAITHNESS,6,macbeth,1603 cousin,6,macbeth,1603 lost,6,macbeth,1603 More,6,macbeth,1603 present,6,macbeth,1603 little,6,macbeth,1603 hast,6,macbeth,1603 through,6,macbeth,1603 Lords,6,macbeth,1603 borne,6,macbeth,1603 Porter,6,macbeth,1603 mortal,6,macbeth,1603 issue,6,macbeth,1603 Were,6,macbeth,1603 get,6,macbeth,1603 throw,6,macbeth,1603 rise,6,macbeth,1603 themselves,6,macbeth,1603 fall,6,macbeth,1603 old,6,macbeth,1603 please,6,macbeth,1603 colours,6,macbeth,1603 word,6,macbeth,1603 Forres,6,macbeth,1603 fate,6,macbeth,1603 master,6,macbeth,1603 use,6,macbeth,1603 we'll,6,macbeth,1603 back,6,macbeth,1603 seen,6,macbeth,1603 together,6,macbeth,1603 cold,6,macbeth,1603 Great,6,macbeth,1603 fled,6,macbeth,1603 weird,6,macbeth,1603 true,6,macbeth,1603 Man,6,macbeth,1603 late,6,macbeth,1603 Fife,6,macbeth,1603 crown,6,macbeth,1603 country,7,macbeth,1603 rather,7,macbeth,1603 sisters,7,macbeth,1603 lies,7,macbeth,1603 black,7,macbeth,1603 enough,7,macbeth,1603 fell,7,macbeth,1603 's,7,macbeth,1603 Attendants,7,macbeth,1603 Here,7,macbeth,1603 Those,7,macbeth,1603 wisdom,7,macbeth,1603 IV,7,macbeth,1603 bid,7,macbeth,1603 best,7,macbeth,1603 Thunder,7,macbeth,1603 Re,7,macbeth,1603 Glamis,7,macbeth,1603 breath,7,macbeth,1603 Soldiers,7,macbeth,1603 fears,7,macbeth,1603 Yet,7,macbeth,1603 part,7,macbeth,1603 knocking,7,macbeth,1603 knock,7,macbeth,1603 Hark,7,macbeth,1603 FLEANCE,7,macbeth,1603 knows,7,macbeth,1603 state,7,macbeth,1603 trouble,7,macbeth,1603 HECATE,7,macbeth,1603 coming,7,macbeth,1603 Hail,7,macbeth,1603 daggers,7,macbeth,1603 fortune,7,macbeth,1603 till,7,macbeth,1603 given,7,macbeth,1603 hold,7,macbeth,1603 Who's,7,macbeth,1603 seem,7,macbeth,1603 whom,7,macbeth,1603 house,7,macbeth,1603 Witches,7,macbeth,1603 shalt,7,macbeth,1603 himself,7,macbeth,1603 double,8,macbeth,1603 drink,8,macbeth,1603 truth,8,macbeth,1603 light,8,macbeth,1603 better,8,macbeth,1603 Malcolm,8,macbeth,1603 MENTEITH,8,macbeth,1603 false,8,macbeth,1603 tell,8,macbeth,1603 At,8,macbeth,1603 itself,8,macbeth,1603 Within,8,macbeth,1603 enter,8,macbeth,1603 Good,8,macbeth,1603 gone,8,macbeth,1603 Or,8,macbeth,1603 children,8,macbeth,1603 tongue,8,macbeth,1603 YOUNG,8,macbeth,1603 tyrant,8,macbeth,1603 any,8,macbeth,1603 earth,8,macbeth,1603 less,8,macbeth,1603 devil,8,macbeth,1603 forth,8,macbeth,1603 though,8,macbeth,1603 Have,8,macbeth,1603 Look,8,macbeth,1603 thing,8,macbeth,1603 stand,8,macbeth,1603 sorrow,8,macbeth,1603 only,8,macbeth,1603 heard,8,macbeth,1603 even,8,macbeth,1603 Murderers,8,macbeth,1603 English,8,macbeth,1603 business,9,macbeth,1603 royal,9,macbeth,1603 peace,9,macbeth,1603 sight,9,macbeth,1603 words,9,macbeth,1603 head,9,macbeth,1603 call,9,macbeth,1603 against,9,macbeth,1603 set,9,macbeth,1603 born,9,macbeth,1603 Though,9,macbeth,1603 rest,9,macbeth,1603 There's,9,macbeth,1603 each,9,macbeth,1603 kings,9,macbeth,1603 II,9,macbeth,1603 SEYTON,9,macbeth,1603 cauldron,9,macbeth,1603 that's,9,macbeth,1603 grace,9,macbeth,1603 Fleance,9,macbeth,1603 report,9,macbeth,1603 into,9,macbeth,1603 From,9,macbeth,1603 many,9,macbeth,1603 mind,9,macbeth,1603 thine,9,macbeth,1603 off,9,macbeth,1603 hope,9,macbeth,1603 lives,9,macbeth,1603 thus,9,macbeth,1603 cry,9,macbeth,1603 thoughts,9,macbeth,1603 last,9,macbeth,1603 being,9,macbeth,1603 live,9,macbeth,1603 Thy,9,macbeth,1603 Will,10,macbeth,1603 hell,10,macbeth,1603 Would,10,macbeth,1603 friends,10,macbeth,1603 Whose,10,macbeth,1603 full,10,macbeth,1603 Not,10,macbeth,1603 further,10,macbeth,1603 Aside,10,macbeth,1603 away,10,macbeth,1603 hence,10,macbeth,1603 What's,10,macbeth,1603 welcome,10,macbeth,1603 Knocking,10,macbeth,1603 new,10,macbeth,1603 ere,10,macbeth,1603 very,10,macbeth,1603 known,10,macbeth,1603 near,10,macbeth,1603 why,10,macbeth,1603 Well,10,macbeth,1603 hail,10,macbeth,1603 fly,10,macbeth,1603 palace,10,macbeth,1603 hour,10,macbeth,1603 England,10,macbeth,1603 Apparition,10,macbeth,1603 first,10,macbeth,1603 DONALBAIN,10,macbeth,1603 woman,10,macbeth,1603 V,11,macbeth,1603 ANGUS,11,macbeth,1603 pray,11,macbeth,1603 Upon,11,macbeth,1603 Servant,11,macbeth,1603 honour,11,macbeth,1603 else,11,macbeth,1603 III,11,macbeth,1603 God,11,macbeth,1603 bear,11,macbeth,1603 give,11,macbeth,1603 keep,11,macbeth,1603 Than,11,macbeth,1603 Hath,11,macbeth,1603 eye,11,macbeth,1603 myself,11,macbeth,1603 comes,11,macbeth,1603 once,11,macbeth,1603 think,11,macbeth,1603 morrow,11,macbeth,1603 face,11,macbeth,1603 ever,11,macbeth,1603 find,11,macbeth,1603 Birnam,11,macbeth,1603 eyes,11,macbeth,1603 lie,11,macbeth,1603 Messenger,11,macbeth,1603 two,11,macbeth,1603 without,11,macbeth,1603 power,11,macbeth,1603 MACBETH,267,macbeth,1603 Give,12,macbeth,1603 son,12,macbeth,1603 fight,12,macbeth,1603 There,12,macbeth,1603 about,12,macbeth,1603 heaven,12,macbeth,1603 By,12,macbeth,1603 bed,12,macbeth,1603 noble,12,macbeth,1603 place,12,macbeth,1603 wood,12,macbeth,1603 wife,12,macbeth,1603 much,13,macbeth,1603 Now,13,macbeth,1603 nothing,13,macbeth,1603 sword,13,macbeth,1603 Do,13,macbeth,1603 never,13,macbeth,1603 Be,13,macbeth,1603 put,13,macbeth,1603 hands,13,macbeth,1603 show,13,macbeth,1603 Are,13,macbeth,1603 made,13,macbeth,1603 none,13,macbeth,1603 ALL,13,macbeth,1603 could,13,macbeth,1603 Duncan,13,macbeth,1603 Till,13,macbeth,1603 three,13,macbeth,1603 poor,13,macbeth,1603 leave,13,macbeth,1603 dare,13,macbeth,1603 thought,14,macbeth,1603 every,14,macbeth,1603 some,14,macbeth,1603 Gentlewoman,14,macbeth,1603 name,14,macbeth,1603 dead,14,macbeth,1603 Dunsinane,14,macbeth,1603 how,14,macbeth,1603 castle,14,macbeth,1603 Then,14,macbeth,1603 'Tis,14,macbeth,1603 take,14,macbeth,1603 father,14,macbeth,1603 strange,14,macbeth,1603 hear,15,macbeth,1603 Was,15,macbeth,1603 both,15,macbeth,1603 worthy,15,macbeth,1603 His,15,macbeth,1603 i',15,macbeth,1603 deed,15,macbeth,1603 air,15,macbeth,1603 o',15,macbeth,1603 art,15,macbeth,1603 bloody,15,macbeth,1603 Scotland,15,macbeth,1603 Where,15,macbeth,1603 she,16,macbeth,1603 look,16,macbeth,1603 They,16,macbeth,1603 Son,16,macbeth,1603 other,16,macbeth,1603 life,17,macbeth,1603 Ay,17,macbeth,1603 down,17,macbeth,1603 Macduff,17,macbeth,1603 if,17,macbeth,1603 those,17,macbeth,1603 Your,17,macbeth,1603 still,17,macbeth,1603 own,17,macbeth,1603 let,17,macbeth,1603 men,17,macbeth,1603 cannot,17,macbeth,1603 than,18,macbeth,1603 has,18,macbeth,1603 things,18,macbeth,1603 way,18,macbeth,1603 when,18,macbeth,1603 Come,19,macbeth,1603 death,19,macbeth,1603 within,19,macbeth,1603 No,19,macbeth,1603 love,19,macbeth,1603 How,19,macbeth,1603 All,19,macbeth,1603 day,19,macbeth,1603 Let,19,macbeth,1603 nature,19,macbeth,1603 such,20,macbeth,1603 Our,20,macbeth,1603 again,20,macbeth,1603 nor,20,macbeth,1603 before,20,macbeth,1603 who,20,macbeth,1603 Shall,20,macbeth,1603 O,21,macbeth,1603 Cawdor,21,macbeth,1603 these,21,macbeth,1603 Is,21,macbeth,1603 can,21,macbeth,1603 go,21,macbeth,1603 where,21,macbeth,1603 sleep,21,macbeth,1603 Who,22,macbeth,1603 Why,22,macbeth,1603 then,22,macbeth,1603 DUNCAN,22,macbeth,1603 Of,22,macbeth,1603 It,22,macbeth,1603 been,22,macbeth,1603 most,22,macbeth,1603 This,22,macbeth,1603 heart,22,macbeth,1603 When,22,macbeth,1603 too,22,macbeth,1603 blood,23,macbeth,1603 'tis,23,macbeth,1603 does,23,macbeth,1603 You,23,macbeth,1603 hand,23,macbeth,1603 Thou,23,macbeth,1603 Banquo,23,macbeth,1603 Exit,23,macbeth,1603 SIWARD,24,macbeth,1603 Third,24,macbeth,1603 thane,24,macbeth,1603 ',25,macbeth,1603 With,25,macbeth,1603 So,25,macbeth,1603 mine,25,macbeth,1603 well,25,macbeth,1603 out,25,macbeth,1603 great,25,macbeth,1603 If,26,macbeth,1603 up,26,macbeth,1603 speak,26,macbeth,1603 sir,27,macbeth,1603 see,27,macbeth,1603 We,27,macbeth,1603 Second,27,macbeth,1603 may,27,macbeth,1603 For,28,macbeth,1603 there,28,macbeth,1603 or,28,macbeth,1603 ACT,28,macbeth,1603 Doctor,29,macbeth,1603 had,29,macbeth,1603 am,29,macbeth,1603 an,29,macbeth,1603 one,29,macbeth,1603 man,29,macbeth,1603 SCENE,29,macbeth,1603 My,30,macbeth,1603 In,30,macbeth,1603 know,30,macbeth,1603 was,30,macbeth,1603 here,31,macbeth,1603 must,31,macbeth,1603 king,32,macbeth,1603 fear,33,macbeth,1603 Exeunt,33,macbeth,1603 were,33,macbeth,1603 lord,34,macbeth,1603 I'll,34,macbeth,1603 come,34,macbeth,1603 say,35,macbeth,1603 night,35,macbeth,1603 Which,35,macbeth,1603 make,35,macbeth,1603 LENNOX,35,macbeth,1603 As,36,macbeth,1603 He,36,macbeth,1603 by,36,macbeth,1603 done,36,macbeth,1603 Murderer,36,macbeth,1603 did,36,macbeth,1603 like,37,macbeth,1603 would,37,macbeth,1603 hath,39,macbeth,1603 A,40,macbeth,1603 should,40,macbeth,1603 now,40,macbeth,1603 her,41,macbeth,1603 time,43,macbeth,1603 thy,43,macbeth,1603 Macbeth,44,macbeth,1603 good,44,macbeth,1603 which,45,macbeth,1603 at,45,macbeth,1603 more,46,macbeth,1603 what,47,macbeth,1603 shall,47,macbeth,1603 no,48,macbeth,1603 from,48,macbeth,1603 upon,49,macbeth,1603 First,49,macbeth,1603 BANQUO,50,macbeth,1603 them,50,macbeth,1603 yet,50,macbeth,1603 MALCOLM,51,macbeth,1603 ROSS,53,macbeth,1603 they,54,macbeth,1603 as,54,macbeth,1603 Witch,54,macbeth,1603 us,55,macbeth,1603 But,55,macbeth,1603 their,56,macbeth,1603 What,58,macbeth,1603 on,59,macbeth,1603 we,60,macbeth,1603 are,60,macbeth,1603 thee,61,macbeth,1603 will,63,macbeth,1603 Enter,64,macbeth,1603 of,320,macbeth,1603 thou,67,macbeth,1603 but,69,macbeth,1603 I,325,macbeth,1603 do,70,macbeth,1603 all,71,macbeth,1603 so,71,macbeth,1603 to,328,macbeth,1603 To,75,macbeth,1603 for,81,macbeth,1603 this,82,macbeth,1603 he,82,macbeth,1603 him,90,macbeth,1603 That,90,macbeth,1603 MACDUFF,92,macbeth,1603 LADY,94,macbeth,1603 the,607,macbeth,1603 our,99,macbeth,1603 your,104,macbeth,1603 me,112,macbeth,1603 have,117,macbeth,1603 be,125,macbeth,1603 The,126,macbeth,1603 with,129,macbeth,1603 it,132,macbeth,1603 his,133,macbeth,1603 that,138,macbeth,1603 And,151,macbeth,1603 not,154,macbeth,1603 and,415,macbeth,1603 my,162,macbeth,1603 is,164,macbeth,1603 in,175,macbeth,1603 you,180,macbeth,1603 a,215,macbeth,1603 attended,1,othello,1603 treason,1,othello,1603 islanders,1,othello,1603 alehouse,1,othello,1603 corrigible,1,othello,1603 troubled,1,othello,1603 sleeve,1,othello,1603 Touching,1,othello,1603 imperfectly,1,othello,1603 Boding,1,othello,1603 asses,1,othello,1603 lusty,1,othello,1603 lusts,1,othello,1603 daws,1,othello,1603 retiring,1,othello,1603 Despise,1,othello,1603 Quick,1,othello,1603 relief,1,othello,1603 neighing,1,othello,1603 transform,1,othello,1603 advised,1,othello,1603 lettuce,1,othello,1603 grew,1,othello,1603 c,1,othello,1603 confused,1,othello,1603 invisible,1,othello,1603 provocation,1,othello,1603 gardens,1,othello,1603 m,1,othello,1603 depute,1,othello,1603 Yours,1,othello,1603 pith,1,othello,1603 masterly,1,othello,1603 pestilence,1,othello,1603 groom,1,othello,1603 advice,1,othello,1603 extremity,1,othello,1603 o'erbearing,1,othello,1603 Valiant,1,othello,1603 exception,1,othello,1603 dilate,1,othello,1603 infected,1,othello,1603 dames,1,othello,1603 qualification,1,othello,1603 marrying,1,othello,1603 description,1,othello,1603 composition,1,othello,1603 Villany,1,othello,1603 direful,1,othello,1603 enfetter'd,1,othello,1603 resist,1,othello,1603 Comfort,1,othello,1603 forswear,1,othello,1603 tremble,1,othello,1603 weary,1,othello,1603 Devesting,1,othello,1603 writ,1,othello,1603 span,1,othello,1603 suspicions,1,othello,1603 conveniences,1,othello,1603 complaints,1,othello,1603 generous,1,othello,1603 woman'd,1,othello,1603 spends,1,othello,1603 woman's,1,othello,1603 Naked,1,othello,1603 procreants,1,othello,1603 Shall't,1,othello,1603 wicked,1,othello,1603 entire,1,othello,1603 dine,1,othello,1603 honours,1,othello,1603 ram,1,othello,1603 lower,1,othello,1603 inference,1,othello,1603 rock,1,othello,1603 bones,1,othello,1603 labours,1,othello,1603 Thieves,1,othello,1603 indign,1,othello,1603 rot,1,othello,1603 support,1,othello,1603 robs,1,othello,1603 offended,1,othello,1603 rascal,1,othello,1603 esteems,1,othello,1603 shoulders,1,othello,1603 suppose,1,othello,1603 encave,1,othello,1603 counterfeits,1,othello,1603 heart's,1,othello,1603 Wilt,1,othello,1603 chiding,1,othello,1603 Venetians,1,othello,1603 roar,1,othello,1603 Woo'd,1,othello,1603 hush'd,1,othello,1603 reside,1,othello,1603 boys,1,othello,1603 melt,1,othello,1603 held,1,othello,1603 puddled,1,othello,1603 sleeps,1,othello,1603 helm,1,othello,1603 cords,1,othello,1603 dire,1,othello,1603 drowsy,1,othello,1603 reserves,1,othello,1603 Stay,1,othello,1603 laughter,1,othello,1603 polite,1,othello,1603 squadron,1,othello,1603 duteous,1,othello,1603 poisonous,1,othello,1603 lieutenantry,1,othello,1603 Muse,1,othello,1603 dash'd,1,othello,1603 dirt,1,othello,1603 trump,1,othello,1603 birdlime,1,othello,1603 painted,1,othello,1603 Whereby,1,othello,1603 clothes,1,othello,1603 contract,1,othello,1603 paragons,1,othello,1603 dropp'd,1,othello,1603 Cried,1,othello,1603 unwholesome,1,othello,1603 vale,1,othello,1603 blossom,1,othello,1603 sighs,1,othello,1603 prosperous,1,othello,1603 drum,1,othello,1603 Perplex'd,1,othello,1603 Hell,1,othello,1603 shifted,1,othello,1603 looked,1,othello,1603 Descry,1,othello,1603 sugar,1,othello,1603 engluts,1,othello,1603 brawler,1,othello,1603 calms,1,othello,1603 declined,1,othello,1603 Ere,1,othello,1603 years',1,othello,1603 sour,1,othello,1603 charter,1,othello,1603 foams,1,othello,1603 Exceed,1,othello,1603 under,1,othello,1603 admirable,1,othello,1603 worms,1,othello,1603 suggest,1,othello,1603 teachest,1,othello,1603 calls,1,othello,1603 thirty,1,othello,1603 terrible,1,othello,1603 Snatching,1,othello,1603 malicious,1,othello,1603 advise,1,othello,1603 odds,1,othello,1603 Horribly,1,othello,1603 toged,1,othello,1603 pick,1,othello,1603 pleasures,1,othello,1603 contrary,1,othello,1603 Quite,1,othello,1603 remain,1,othello,1603 Abhor,1,othello,1603 wing'd,1,othello,1603 thicken,1,othello,1603 cheques,1,othello,1603 fleers,1,othello,1603 Stephen,1,othello,1603 become,1,othello,1603 tyrannous,1,othello,1603 cheeks,1,othello,1603 clasps,1,othello,1603 PERSONAE,1,othello,1603 wither,1,othello,1603 unforced,1,othello,1603 locusts,1,othello,1603 marshal,1,othello,1603 demand,1,othello,1603 sequestration,1,othello,1603 quarries,1,othello,1603 spare,1,othello,1603 quirks,1,othello,1603 battles,1,othello,1603 early,1,othello,1603 walking,1,othello,1603 argues,1,othello,1603 coffers,1,othello,1603 liar,1,othello,1603 indirect,1,othello,1603 pursue,1,othello,1603 Once,1,othello,1603 vast,1,othello,1603 sanctified,1,othello,1603 practised,1,othello,1603 practiser,1,othello,1603 Over,1,othello,1603 delivered,1,othello,1603 advantages,1,othello,1603 Shared,1,othello,1603 acknown,1,othello,1603 counter,1,othello,1603 recognizance,1,othello,1603 chid,1,othello,1603 bending,1,othello,1603 palates,1,othello,1603 graces,1,othello,1603 practises,1,othello,1603 criedst,1,othello,1603 lacks,1,othello,1603 sterile,1,othello,1603 instructed,1,othello,1603 spied,1,othello,1603 Players,1,othello,1603 thank'd,1,othello,1603 feels,1,othello,1603 camp,1,othello,1603 pint,1,othello,1603 friend's,1,othello,1603 guards,1,othello,1603 sadly,1,othello,1603 slept,1,othello,1603 working,1,othello,1603 thousands,1,othello,1603 offenceless,1,othello,1603 grieving,1,othello,1603 unjustly,1,othello,1603 befall'n,1,othello,1603 sat,1,othello,1603 Filth,1,othello,1603 carry't,1,othello,1603 dance,1,othello,1603 traduced,1,othello,1603 fulsome,1,othello,1603 stream,1,othello,1603 backward,1,othello,1603 cape,1,othello,1603 atone,1,othello,1603 Cold,1,othello,1603 pilgrimage,1,othello,1603 corner,1,othello,1603 dram,1,othello,1603 Dangerous,1,othello,1603 caps,1,othello,1603 luscious,1,othello,1603 patent,1,othello,1603 restitution,1,othello,1603 habits,1,othello,1603 toward,1,othello,1603 heal,1,othello,1603 confessions,1,othello,1603 Fled,1,othello,1603 Honey,1,othello,1603 necessaries,1,othello,1603 exclaim,1,othello,1603 o'erwhelmed,1,othello,1603 voices,1,othello,1603 babes,1,othello,1603 chop,1,othello,1603 facile,1,othello,1603 excelling,1,othello,1603 visages,1,othello,1603 eclipse,1,othello,1603 bragging,1,othello,1603 officers,1,othello,1603 Yield,1,othello,1603 stifles,1,othello,1603 rites,1,othello,1603 chains,1,othello,1603 grievance,1,othello,1603 Pale,1,othello,1603 toys,1,othello,1603 Avaunt,1,othello,1603 twas,1,othello,1603 blazoning,1,othello,1603 bombast,1,othello,1603 minerals,1,othello,1603 abode,1,othello,1603 inhuman,1,othello,1603 wait,1,othello,1603 coldness,1,othello,1603 Perfect,1,othello,1603 kin,1,othello,1603 Cupid,1,othello,1603 shrift,1,othello,1603 sups,1,othello,1603 perjured,1,othello,1603 believe't,1,othello,1603 Confine,1,othello,1603 cities,1,othello,1603 carnal,1,othello,1603 view,1,othello,1603 Perchance,1,othello,1603 deserve,1,othello,1603 provender,1,othello,1603 plucked,1,othello,1603 execution,1,othello,1603 shamed,1,othello,1603 Minion,1,othello,1603 wage,1,othello,1603 hereafter,1,othello,1603 weaken,1,othello,1603 Dull,1,othello,1603 shames,1,othello,1603 cherubin,1,othello,1603 Off,1,othello,1603 compliment,1,othello,1603 boat,1,othello,1603 sit,1,othello,1603 conceive,1,othello,1603 indignity,1,othello,1603 haggard,1,othello,1603 lovers',1,othello,1603 unwitted,1,othello,1603 brook's,1,othello,1603 robbing,1,othello,1603 ensteep'd,1,othello,1603 think'st,1,othello,1603 Moorship's,1,othello,1603 conjunctive,1,othello,1603 tooth,1,othello,1603 Egyptian,1,othello,1603 assails,1,othello,1603 monarch,1,othello,1603 Pontic,1,othello,1603 likedst,1,othello,1603 shrill,1,othello,1603 Buys,1,othello,1603 seals,1,othello,1603 Write,1,othello,1603 wake,1,othello,1603 deceives,1,othello,1603 unsure,1,othello,1603 throne,1,othello,1603 anew,1,othello,1603 bridal,1,othello,1603 wedding,1,othello,1603 beasts,1,othello,1603 intendment,1,othello,1603 doubtless,1,othello,1603 seamy,1,othello,1603 unprepared,1,othello,1603 observances,1,othello,1603 spy,1,othello,1603 halter,1,othello,1603 livest,1,othello,1603 wheresoever,1,othello,1603 cradle,1,othello,1603 rubb'd,1,othello,1603 knives,1,othello,1603 chamberers,1,othello,1603 help'd,1,othello,1603 sow,1,othello,1603 Assays,1,othello,1603 summons,1,othello,1603 Such,1,othello,1603 abuser,1,othello,1603 abuses,1,othello,1603 murderer,1,othello,1603 sycamore,1,othello,1603 advocation,1,othello,1603 sworn,1,othello,1603 pictures,1,othello,1603 unhoused,1,othello,1603 shipp'd,1,othello,1603 followed,1,othello,1603 melting,1,othello,1603 where's,1,othello,1603 'I,1,othello,1603 ashore,1,othello,1603 Silence,1,othello,1603 weapon'd,1,othello,1603 attends,1,othello,1603 larger,1,othello,1603 'scuse,1,othello,1603 surmises,1,othello,1603 accommodation,1,othello,1603 Outran,1,othello,1603 forthwith,1,othello,1603 maidhood,1,othello,1603 qualified,1,othello,1603 custody,1,othello,1603 whoring,1,othello,1603 acquainted,1,othello,1603 deserts,1,othello,1603 beloved,1,othello,1603 wager,1,othello,1603 bewhored,1,othello,1603 Music,1,othello,1603 barefoot,1,othello,1603 Other,1,othello,1603 Thanks,1,othello,1603 yonder's,1,othello,1603 filches,1,othello,1603 pieces,1,othello,1603 stuff,1,othello,1603 unsuiting,1,othello,1603 thin,1,othello,1603 Spain,1,othello,1603 timber'd,1,othello,1603 affect,1,othello,1603 suffered,1,othello,1603 poverty,1,othello,1603 satiety,1,othello,1603 swelling,1,othello,1603 appetites,1,othello,1603 ensnared,1,othello,1603 breeches,1,othello,1603 passed,1,othello,1603 Trifles,1,othello,1603 fortunately,1,othello,1603 intrude,1,othello,1603 vanish,1,othello,1603 incontinently,1,othello,1603 carack,1,othello,1603 snow,1,othello,1603 conceit,1,othello,1603 disrelish,1,othello,1603 dances,1,othello,1603 recommends,1,othello,1603 unkindly,1,othello,1603 winks,1,othello,1603 roots,1,othello,1603 gastness,1,othello,1603 skies,1,othello,1603 afraid,1,othello,1603 Damn,1,othello,1603 crime,1,othello,1603 Be't,1,othello,1603 wive,1,othello,1603 twelve,1,othello,1603 ways,1,othello,1603 Tush,1,othello,1603 Whereof,1,othello,1603 Turn,1,othello,1603 Wash,1,othello,1603 parrot,1,othello,1603 Whereon,1,othello,1603 draughts,1,othello,1603 Bianco's,1,othello,1603 beggarly,1,othello,1603 exceeding,1,othello,1603 loathed,1,othello,1603 actions,1,othello,1603 ruminate,1,othello,1603 Roderigo's,1,othello,1603 Cannibals,1,othello,1603 dearly,1,othello,1603 Pardon,1,othello,1603 taper,1,othello,1603 expedition,1,othello,1603 fruit,1,othello,1603 civility,1,othello,1603 godliness,1,othello,1603 pearl,1,othello,1603 pageant,1,othello,1603 belong'd,1,othello,1603 disports,1,othello,1603 Whilst,1,othello,1603 cries,1,othello,1603 humble,1,othello,1603 fortitude,1,othello,1603 thicklips,1,othello,1603 stubbornness,1,othello,1603 conveniency,1,othello,1603 vanity,1,othello,1603 complete,1,othello,1603 accent,1,othello,1603 severe,1,othello,1603 rust,1,othello,1603 bride,1,othello,1603 rush,1,othello,1603 feet,1,othello,1603 unbookish,1,othello,1603 flaming,1,othello,1603 beaten,1,othello,1603 saucy,1,othello,1603 relish,1,othello,1603 swore,1,othello,1603 upon't,1,othello,1603 gibes,1,othello,1603 dial,1,othello,1603 corrupt,1,othello,1603 hales,1,othello,1603 Drown,1,othello,1603 'Now,1,othello,1603 Whereto,1,othello,1603 expectations,1,othello,1603 prizes,1,othello,1603 choose,1,othello,1603 rude,1,othello,1603 stuff'd,1,othello,1603 applause,1,othello,1603 bauble,1,othello,1603 symbols,1,othello,1603 Retire,1,othello,1603 Hence,1,othello,1603 baptism,1,othello,1603 Crying,1,othello,1603 Blow,1,othello,1603 title,1,othello,1603 lee'd,1,othello,1603 Advancing,1,othello,1603 Please,1,othello,1603 obsequious,1,othello,1603 Potations,1,othello,1603 inflame,1,othello,1603 stead,1,othello,1603 wipe,1,othello,1603 access,1,othello,1603 smell'st,1,othello,1603 Moors,1,othello,1603 Englishman,1,othello,1603 hates,1,othello,1603 unsafe,1,othello,1603 displease,1,othello,1603 Unfit,1,othello,1603 Cousin,1,othello,1603 turned,1,othello,1603 died,1,othello,1603 Precious,1,othello,1603 ariseth,1,othello,1603 succeed,1,othello,1603 importunes,1,othello,1603 distressful,1,othello,1603 imperious,1,othello,1603 Janus,1,othello,1603 savageness,1,othello,1603 throws,1,othello,1603 property,1,othello,1603 devil's,1,othello,1603 heraldry,1,othello,1603 seem'd,1,othello,1603 pierce,1,othello,1603 useth,1,othello,1603 window,1,othello,1603 sooty,1,othello,1603 horrors,1,othello,1603 summon,1,othello,1603 bidding,1,othello,1603 warm,1,othello,1603 incense,1,othello,1603 merely,1,othello,1603 Conserved,1,othello,1603 doubts,1,othello,1603 Burn,1,othello,1603 conveyance,1,othello,1603 dealt,1,othello,1603 circumstances,1,othello,1603 steed,1,othello,1603 consecrate,1,othello,1603 flowing,1,othello,1603 steep,1,othello,1603 revel,1,othello,1603 steel,1,othello,1603 domestic,1,othello,1603 coats,1,othello,1603 wast,1,othello,1603 Foh,1,othello,1603 ruled,1,othello,1603 sweating,1,othello,1603 circumstanced,1,othello,1603 boon,1,othello,1603 segregation,1,othello,1603 manhood,1,othello,1603 suborn'd,1,othello,1603 bright,1,othello,1603 upbraids,1,othello,1603 inordinate,1,othello,1603 praised,1,othello,1603 party,1,othello,1603 Repair,1,othello,1603 colour,1,othello,1603 gripe,1,othello,1603 levels,1,othello,1603 wayward,1,othello,1603 sympathy,1,othello,1603 viper,1,othello,1603 tainting,1,othello,1603 Ply,1,othello,1603 healthful,1,othello,1603 unblest,1,othello,1603 offers,1,othello,1603 feather'd,1,othello,1603 sick,1,othello,1603 big,1,othello,1603 shorter,1,othello,1603 knowledge,1,othello,1603 refrain,1,othello,1603 grievous,1,othello,1603 splinter,1,othello,1603 unperfectness,1,othello,1603 life's,1,othello,1603 housewifery,1,othello,1603 contrived,1,othello,1603 tapers,1,othello,1603 gratify,1,othello,1603 invest,1,othello,1603 silliness,1,othello,1603 unkind,1,othello,1603 paradoxes,1,othello,1603 besort,1,othello,1603 discreet,1,othello,1603 waken'd,1,othello,1603 backs,1,othello,1603 Drew,1,othello,1603 aboard,1,othello,1603 planet,1,othello,1603 wanting,1,othello,1603 While,1,othello,1603 overthrow,1,othello,1603 ocular,1,othello,1603 climate,1,othello,1603 sweeter,1,othello,1603 crack,1,othello,1603 Draws,1,othello,1603 horror's,1,othello,1603 guardage,1,othello,1603 refuse,1,othello,1603 discern,1,othello,1603 Bounteous,1,othello,1603 'Cursed,1,othello,1603 Hydra,1,othello,1603 distinguish,1,othello,1603 cunning'st,1,othello,1603 chronicle,1,othello,1603 measure,1,othello,1603 'Twere,1,othello,1603 sores,1,othello,1603 flattery,1,othello,1603 leave't,1,othello,1603 Ah,1,othello,1603 messes,1,othello,1603 invent,1,othello,1603 altogether,1,othello,1603 stubborn,1,othello,1603 pay,1,othello,1603 depend,1,othello,1603 surety,1,othello,1603 poppy,1,othello,1603 misgives,1,othello,1603 grise,1,othello,1603 wronger,1,othello,1603 Throwing,1,othello,1603 knowing,1,othello,1603 cod's,1,othello,1603 sequent,1,othello,1603 alarum,1,othello,1603 hey,1,othello,1603 assault,1,othello,1603 harlotry,1,othello,1603 spoil'd,1,othello,1603 voluntary,1,othello,1603 hen,1,othello,1603 Drink,1,othello,1603 teem,1,othello,1603 bag,1,othello,1603 Dismiss,1,othello,1603 Lo,1,othello,1603 hitherto,1,othello,1603 Nature,1,othello,1603 'Las,1,othello,1603 murmur'd,1,othello,1603 sensible,1,othello,1603 halts,1,othello,1603 siege,1,othello,1603 discords,1,othello,1603 enshelter'd,1,othello,1603 butt,1,othello,1603 in's,1,othello,1603 denies,1,othello,1603 'whore,1,othello,1603 Albeit,1,othello,1603 kept,1,othello,1603 greatly,1,othello,1603 belike,1,othello,1603 fouler,1,othello,1603 bestial,1,othello,1603 Enwheel,1,othello,1603 cables,1,othello,1603 stab,1,othello,1603 Proclaim,1,othello,1603 sings,1,othello,1603 hie,1,othello,1603 hid,1,othello,1603 innocent,1,othello,1603 hip,1,othello,1603 difficulty,1,othello,1603 iteration,1,othello,1603 fitchew,1,othello,1603 enter'd,1,othello,1603 motions,1,othello,1603 aspics',1,othello,1603 tear,1,othello,1603 demerits,1,othello,1603 required,1,othello,1603 especial,1,othello,1603 beg,1,othello,1603 portance,1,othello,1603 Raise,1,othello,1603 Ho,1,othello,1603 kinds,1,othello,1603 meant,1,othello,1603 coursers,1,othello,1603 enchanted,1,othello,1603 fortune's,1,othello,1603 ruffians,1,othello,1603 deserved,1,othello,1603 Moor's,1,othello,1603 denotement,1,othello,1603 lay't,1,othello,1603 bruised,1,othello,1603 addiction,1,othello,1603 nourishing,1,othello,1603 east,1,othello,1603 fated,1,othello,1603 innovation,1,othello,1603 pate,1,othello,1603 election,1,othello,1603 treachery,1,othello,1603 unmoving,1,othello,1603 Has,1,othello,1603 billeted,1,othello,1603 earn,1,othello,1603 step,1,othello,1603 temples,1,othello,1603 pox,1,othello,1603 nobility,1,othello,1603 nice,1,othello,1603 customer,1,othello,1603 vesture,1,othello,1603 devotion,1,othello,1603 Rising,1,othello,1603 outlive,1,othello,1603 curled,1,othello,1603 lipp'd,1,othello,1603 thereunto,1,othello,1603 unauthorized,1,othello,1603 Retires,1,othello,1603 Forgive,1,othello,1603 trimm'd,1,othello,1603 god,1,othello,1603 embay'd,1,othello,1603 Drop,1,othello,1603 moons,1,othello,1603 gowns,1,othello,1603 lolls,1,othello,1603 Murder,1,othello,1603 drunkards,1,othello,1603 arrivance,1,othello,1603 bulk,1,othello,1603 behaved,1,othello,1603 week,1,othello,1603 sulphur,1,othello,1603 nigh,1,othello,1603 Receive,1,othello,1603 humane,1,othello,1603 preserved,1,othello,1603 sooner,1,othello,1603 Jove's,1,othello,1603 control,1,othello,1603 miscarry,1,othello,1603 drunkenness,1,othello,1603 egregiously,1,othello,1603 suffer'd,1,othello,1603 'Twould,1,othello,1603 difference,1,othello,1603 Distinctly,1,othello,1603 Bond,1,othello,1603 Plague,1,othello,1603 burn,1,othello,1603 kindness,1,othello,1603 languishes,1,othello,1603 gutter'd,1,othello,1603 cap,1,othello,1603 fluster'd,1,othello,1603 likings,1,othello,1603 sincerity,1,othello,1603 displanting,1,othello,1603 foolishly,1,othello,1603 tell'st,1,othello,1603 sounds,1,othello,1603 congregated,1,othello,1603 naming,1,othello,1603 'tween,1,othello,1603 devilish,1,othello,1603 strives,1,othello,1603 dote,1,othello,1603 reference,1,othello,1603 hungerly,1,othello,1603 immediate,1,othello,1603 disproportion,1,othello,1603 devised,1,othello,1603 unquietness,1,othello,1603 gaze,1,othello,1603 actual,1,othello,1603 prated,1,othello,1603 celebration,1,othello,1603 wedlock,1,othello,1603 latest,1,othello,1603 mutualities,1,othello,1603 signiors,1,othello,1603 signiory,1,othello,1603 sustain,1,othello,1603 gum,1,othello,1603 shadow,1,othello,1603 Veronesa,1,othello,1603 ingredient,1,othello,1603 Prerogatived,1,othello,1603 idleness,1,othello,1603 gape,1,othello,1603 Saint,1,othello,1603 disclose,1,othello,1603 hobby,1,othello,1603 Belief,1,othello,1603 befallen,1,othello,1603 captains,1,othello,1603 tempts,1,othello,1603 renounce,1,othello,1603 'Indeed,1,othello,1603 Disprove,1,othello,1603 prating,1,othello,1603 salmon's,1,othello,1603 futurity,1,othello,1603 Fathers,1,othello,1603 probation,1,othello,1603 Didst,1,othello,1603 eaten,1,othello,1603 lust's,1,othello,1603 despise,1,othello,1603 delay'd,1,othello,1603 silk,1,othello,1603 extreme,1,othello,1603 Unlocks,1,othello,1603 Holds,1,othello,1603 friendly,1,othello,1603 anguish,1,othello,1603 venial,1,othello,1603 conjuration,1,othello,1603 twinn'd,1,othello,1603 nettles,1,othello,1603 extravagant,1,othello,1603 denoted,1,othello,1603 Knavery's,1,othello,1603 waterish,1,othello,1603 insinuating,1,othello,1603 Ye,1,othello,1603 amongst,1,othello,1603 frowns,1,othello,1603 preserve,1,othello,1603 beer,1,othello,1603 unhatch'd,1,othello,1603 longer,1,othello,1603 Meet,1,othello,1603 people's,1,othello,1603 Whate'er,1,othello,1603 sated,1,othello,1603 Traitors,1,othello,1603 stronger,1,othello,1603 sink,1,othello,1603 strip,1,othello,1603 ensue,1,othello,1603 cudgelled,1,othello,1603 Wrench,1,othello,1603 pitch,1,othello,1603 Sans,1,othello,1603 Masters,1,othello,1603 vantage,1,othello,1603 calling,1,othello,1603 north,1,othello,1603 footing,1,othello,1603 grandsire,1,othello,1603 guesses,1,othello,1603 lately,1,othello,1603 acceptance,1,othello,1603 Both,1,othello,1603 beginning,1,othello,1603 jealousies,1,othello,1603 potential,1,othello,1603 garb,1,othello,1603 dealest,1,othello,1603 Shapes,1,othello,1603 smell't,1,othello,1603 solemn,1,othello,1603 store,1,othello,1603 noted,1,othello,1603 storm,1,othello,1603 failing,1,othello,1603 prophetic,1,othello,1603 deep,1,othello,1603 promised,1,othello,1603 hear't,1,othello,1603 betray,1,othello,1603 blowing,1,othello,1603 Holla,1,othello,1603 embraced,1,othello,1603 continues,1,othello,1603 yea,1,othello,1603 Begot,1,othello,1603 tyrant,1,othello,1603 satisfy,1,othello,1603 raise,1,othello,1603 Fear,1,othello,1603 sixpence,1,othello,1603 repute,1,othello,1603 loop,1,othello,1603 moans,1,othello,1603 fasten,1,othello,1603 stood,1,othello,1603 yoked,1,othello,1603 wreck,1,othello,1603 Making,1,othello,1603 'Help,1,othello,1603 recovered,1,othello,1603 newer,1,othello,1603 legs,1,othello,1603 ago,1,othello,1603 Unless,1,othello,1603 Past,1,othello,1603 Breaks,1,othello,1603 deficient,1,othello,1603 whereon,1,othello,1603 driving,1,othello,1603 horrorable,1,othello,1603 mortise,1,othello,1603 unworthy,1,othello,1603 plays,1,othello,1603 propriety,1,othello,1603 gait,1,othello,1603 depends,1,othello,1603 seeing,1,othello,1603 likely,1,othello,1603 itch,1,othello,1603 Besides,1,othello,1603 played,1,othello,1603 mountebanks,1,othello,1603 stain'd,1,othello,1603 promulgate,1,othello,1603 lend,1,othello,1603 occupation's,1,othello,1603 boast,1,othello,1603 icy,1,othello,1603 affrighted,1,othello,1603 defence,1,othello,1603 ice,1,othello,1603 hell's,1,othello,1603 members,1,othello,1603 Swords,1,othello,1603 Directly,1,othello,1603 game,1,othello,1603 memory,1,othello,1603 gentlewoman,1,othello,1603 shed,1,othello,1603 mazzard,1,othello,1603 pierced,1,othello,1603 cruelty,1,othello,1603 edified,1,othello,1603 Pioners,1,othello,1603 forges,1,othello,1603 amend,1,othello,1603 suckle,1,othello,1603 growth,1,othello,1603 newly,1,othello,1603 piercing,1,othello,1603 bless'd,1,othello,1603 humours,1,othello,1603 'Certes,1,othello,1603 slime,1,othello,1603 Watch,1,othello,1603 rouse,1,othello,1603 designment,1,othello,1603 Returning,1,othello,1603 betray'd,1,othello,1603 frights,1,othello,1603 questions,1,othello,1603 clyster,1,othello,1603 board,1,othello,1603 rain'd,1,othello,1603 bodies,1,othello,1603 delay,1,othello,1603 demi,1,othello,1603 accumulate,1,othello,1603 wisely,1,othello,1603 region,1,othello,1603 lo,1,othello,1603 plant,1,othello,1603 Devour,1,othello,1603 Others,1,othello,1603 boasting,1,othello,1603 fairness,1,othello,1603 banish,1,othello,1603 crave,1,othello,1603 uncleanly,1,othello,1603 wrangle,1,othello,1603 moth,1,othello,1603 malignant,1,othello,1603 unhandsome,1,othello,1603 lown,1,othello,1603 account,1,othello,1603 Reads,1,othello,1603 scholar,1,othello,1603 attendant,1,othello,1603 blackness,1,othello,1603 look'st,1,othello,1603 cousin,1,othello,1603 Took,1,othello,1603 inhibited,1,othello,1603 temper,1,othello,1603 eminent,1,othello,1603 unswear,1,othello,1603 age,1,othello,1603 expostulate,1,othello,1603 if't,1,othello,1603 begg'd,1,othello,1603 stillness,1,othello,1603 miserable,1,othello,1603 impediment,1,othello,1603 stoup,1,othello,1603 Yea,1,othello,1603 alteration,1,othello,1603 commands,1,othello,1603 add,1,othello,1603 speak'st,1,othello,1603 achieved,1,othello,1603 resolved,1,othello,1603 demonstrable,1,othello,1603 Servants,1,othello,1603 wherein,1,othello,1603 spent,1,othello,1603 lest,1,othello,1603 dispose,1,othello,1603 dries,1,othello,1603 knot,1,othello,1603 distempering,1,othello,1603 unfolds,1,othello,1603 skillet,1,othello,1603 blue,1,othello,1603 removed,1,othello,1603 dolt,1,othello,1603 feats,1,othello,1603 suspected,1,othello,1603 starr'd,1,othello,1603 began't,1,othello,1603 fiend's,1,othello,1603 lock'd,1,othello,1603 greater,1,othello,1603 bootless,1,othello,1603 Saints,1,othello,1603 show'd,1,othello,1603 serious,1,othello,1603 slack,1,othello,1603 Marcus,1,othello,1603 clamours,1,othello,1603 Goats,1,othello,1603 gardeners,1,othello,1603 journey,1,othello,1603 Raising,1,othello,1603 reads,1,othello,1603 enchafed,1,othello,1603 marr'd,1,othello,1603 Because,1,othello,1603 incontinent,1,othello,1603 toad,1,othello,1603 excels,1,othello,1603 wisest,1,othello,1603 Came,1,othello,1603 climb,1,othello,1603 harm'd,1,othello,1603 perdurable,1,othello,1603 prescription,1,othello,1603 events,1,othello,1603 valour,1,othello,1603 reasons,1,othello,1603 Seeing,1,othello,1603 clime,1,othello,1603 Haply,1,othello,1603 critical,1,othello,1603 tenderly,1,othello,1603 bodily,1,othello,1603 denote,1,othello,1603 ability,1,othello,1603 puny,1,othello,1603 soldiership,1,othello,1603 'Sweet,1,othello,1603 outward,1,othello,1603 lingered,1,othello,1603 strangle,1,othello,1603 plume,1,othello,1603 faints,1,othello,1603 cozening,1,othello,1603 incline,1,othello,1603 monkey's,1,othello,1603 keel,1,othello,1603 leets,1,othello,1603 lewd,1,othello,1603 affects,1,othello,1603 hall,1,othello,1603 haunts,1,othello,1603 spells,1,othello,1603 messenger,1,othello,1603 labouring,1,othello,1603 General,1,othello,1603 indues,1,othello,1603 knit,1,othello,1603 nearer,1,othello,1603 villainous,1,othello,1603 nation,1,othello,1603 overt,1,othello,1603 fig's,1,othello,1603 palate,1,othello,1603 natural,1,othello,1603 brimstone,1,othello,1603 serpent's,1,othello,1603 shunned,1,othello,1603 trade,1,othello,1603 expend,1,othello,1603 Trumpets,1,othello,1603 strings,1,othello,1603 re,1,othello,1603 Mine's,1,othello,1603 Lady,1,othello,1603 reach,1,othello,1603 Full,1,othello,1603 thinkest,1,othello,1603 four,1,othello,1603 plain,1,othello,1603 sighing,1,othello,1603 bobb'd,1,othello,1603 medicines,1,othello,1603 suitors,1,othello,1603 knocking,1,othello,1603 school,1,othello,1603 sweetest,1,othello,1603 Prizes,1,othello,1603 pleasance,1,othello,1603 fortification,1,othello,1603 spotted,1,othello,1603 test,1,othello,1603 excuse,1,othello,1603 Hum,1,othello,1603 whether,1,othello,1603 midnight,1,othello,1603 vengeance,1,othello,1603 Palestine,1,othello,1603 brothers,1,othello,1603 occasions,1,othello,1603 gyve,1,othello,1603 gradation,1,othello,1603 knocks,1,othello,1603 yawn,1,othello,1603 impatient,1,othello,1603 redeemed,1,othello,1603 Commend,1,othello,1603 tell's,1,othello,1603 shaked,1,othello,1603 importancy,1,othello,1603 Bell,1,othello,1603 charmer,1,othello,1603 return'd,1,othello,1603 engage,1,othello,1603 sequester,1,othello,1603 walked,1,othello,1603 strive,1,othello,1603 shakes,1,othello,1603 attach,1,othello,1603 Utter,1,othello,1603 twain,1,othello,1603 medicinal,1,othello,1603 pace,1,othello,1603 foot,1,othello,1603 Indian,1,othello,1603 supersubtle,1,othello,1603 fear'd,1,othello,1603 worldly,1,othello,1603 Ottoman,1,othello,1603 dreadful,1,othello,1603 pertains,1,othello,1603 mandragora,1,othello,1603 requisites,1,othello,1603 chastity,1,othello,1603 depended,1,othello,1603 tyranny,1,othello,1603 prepared,1,othello,1603 Wears,1,othello,1603 Hot,1,othello,1603 excess,1,othello,1603 beneficial,1,othello,1603 unlucky,1,othello,1603 dyed,1,othello,1603 maiden,1,othello,1603 rightly,1,othello,1603 ye,1,othello,1603 Men's,1,othello,1603 lock,1,othello,1603 conclusions,1,othello,1603 term,1,othello,1603 foregone,1,othello,1603 Hast,1,othello,1603 She'll,1,othello,1603 King,1,othello,1603 Kind,1,othello,1603 furnish,1,othello,1603 roll,1,othello,1603 thanks,1,othello,1603 knock,1,othello,1603 Shore,1,othello,1603 bought,1,othello,1603 She'ld,1,othello,1603 Delighted,1,othello,1603 inquire,1,othello,1603 prate,1,othello,1603 caster,1,othello,1603 essential,1,othello,1603 debitor,1,othello,1603 deadly,1,othello,1603 strangeness,1,othello,1603 Think'st,1,othello,1603 alacrity,1,othello,1603 fed,1,othello,1603 unshunnable,1,othello,1603 chides,1,othello,1603 Ate,1,othello,1603 bookish,1,othello,1603 behavior,1,othello,1603 net,1,othello,1603 Richer,1,othello,1603 fantasy,1,othello,1603 extincted,1,othello,1603 broil,1,othello,1603 conversation,1,othello,1603 Content,1,othello,1603 unblessed,1,othello,1603 tragic,1,othello,1603 demanded,1,othello,1603 baboon,1,othello,1603 hazard,1,othello,1603 gain'd,1,othello,1603 tasted,1,othello,1603 broke,1,othello,1603 howling,1,othello,1603 hinge,1,othello,1603 treasures,1,othello,1603 spoken,1,othello,1603 servitor,1,othello,1603 surgery,1,othello,1603 scapes,1,othello,1603 Hellespont,1,othello,1603 delighted,1,othello,1603 execute,1,othello,1603 fan,1,othello,1603 strumpet's,1,othello,1603 borrow,1,othello,1603 craftily,1,othello,1603 scaped,1,othello,1603 therewith,1,othello,1603 Steering,1,othello,1603 repeals,1,othello,1603 surfeited,1,othello,1603 intermingle,1,othello,1603 happ'd,1,othello,1603 kitchens,1,othello,1603 Perdition,1,othello,1603 breeds,1,othello,1603 destiny,1,othello,1603 Wounds,1,othello,1603 syllable,1,othello,1603 Virtue,1,othello,1603 bedchamber,1,othello,1603 venture,1,othello,1603 barbarian,1,othello,1603 Sulphur,1,othello,1603 Demand,1,othello,1603 Exist,1,othello,1603 carried,1,othello,1603 empty,1,othello,1603 said'st,1,othello,1603 Torments,1,othello,1603 griefs,1,othello,1603 forehead,1,othello,1603 compt,1,othello,1603 blackest,1,othello,1603 alabaster,1,othello,1603 echoes,1,othello,1603 rascals,1,othello,1603 Does't,1,othello,1603 silence,1,othello,1603 needle,1,othello,1603 bravery,1,othello,1603 calm'd,1,othello,1603 antique,1,othello,1603 clamour,1,othello,1603 couldst,1,othello,1603 express'd,1,othello,1603 mountains,1,othello,1603 thinly,1,othello,1603 protests,1,othello,1603 smallest,1,othello,1603 prosperity,1,othello,1603 fourth,1,othello,1603 thinks,1,othello,1603 omit,1,othello,1603 tends,1,othello,1603 number'd,1,othello,1603 fable,1,othello,1603 Handkerchief,1,othello,1603 indicted,1,othello,1603 fraught,1,othello,1603 whipster,1,othello,1603 wakes,1,othello,1603 obscure,1,othello,1603 gavest,1,othello,1603 hire,1,othello,1603 seriously,1,othello,1603 Committed,1,othello,1603 imminent,1,othello,1603 grange,1,othello,1603 sibyl,1,othello,1603 blab,1,othello,1603 provoking,1,othello,1603 opposition,1,othello,1603 Hang,1,othello,1603 restore,1,othello,1603 scale,1,othello,1603 noon,1,othello,1603 clog,1,othello,1603 givest,1,othello,1603 guides,1,othello,1603 Anthropophagi,1,othello,1603 curtains,1,othello,1603 below,1,othello,1603 Luccicos,1,othello,1603 exceedingly,1,othello,1603 contention,1,othello,1603 bottle,1,othello,1603 daily,1,othello,1603 rout,1,othello,1603 reconciliation,1,othello,1603 captivity,1,othello,1603 remedy,1,othello,1603 tender,1,othello,1603 clothe,1,othello,1603 drunkard,1,othello,1603 courtship,1,othello,1603 unprovide,1,othello,1603 scar,1,othello,1603 ours,1,othello,1603 companions,1,othello,1603 unbitted,1,othello,1603 veritable,1,othello,1603 hide,1,othello,1603 thinkings,1,othello,1603 bestows,1,othello,1603 selling,1,othello,1603 inwards,1,othello,1603 misuse,1,othello,1603 commoner,1,othello,1603 sirrah,1,othello,1603 pregnant,1,othello,1603 hies,1,othello,1603 chase,1,othello,1603 likelihood,1,othello,1603 oppresses,1,othello,1603 parlors,1,othello,1603 begrimed,1,othello,1603 ewe,1,othello,1603 borne,1,othello,1603 wolves,1,othello,1603 sticks,1,othello,1603 heathenish,1,othello,1603 garden,1,othello,1603 arise,1,othello,1603 germans,1,othello,1603 perform,1,othello,1603 Convinced,1,othello,1603 voluble,1,othello,1603 loses,1,othello,1603 loser,1,othello,1603 counsellor,1,othello,1603 odious,1,othello,1603 horned,1,othello,1603 misery,1,othello,1603 Certain,1,othello,1603 housewife,1,othello,1603 ensnare,1,othello,1603 shall't,1,othello,1603 defective,1,othello,1603 Lord,1,othello,1603 several,1,othello,1603 anger'd,1,othello,1603 Noses,1,othello,1603 quarter,1,othello,1603 swallows,1,othello,1603 Peter,1,othello,1603 cloak,1,othello,1603 precious,1,othello,1603 crooking,1,othello,1603 mourn,1,othello,1603 sigh'd,1,othello,1603 performances,1,othello,1603 scan,1,othello,1603 Tying,1,othello,1603 strife,1,othello,1603 People,1,othello,1603 other's,1,othello,1603 likewise,1,othello,1603 sacrifice,1,othello,1603 Destruction,1,othello,1603 fantastical,1,othello,1603 industry,1,othello,1603 exchange,1,othello,1603 Long,1,othello,1603 singing,1,othello,1603 mane,1,othello,1603 Cough,1,othello,1603 teeth,1,othello,1603 Solicit,1,othello,1603 solid,1,othello,1603 probable,1,othello,1603 start,1,othello,1603 stars,1,othello,1603 qualities,1,othello,1603 prize,1,othello,1603 disproportion'd,1,othello,1603 creditor,1,othello,1603 Makes,1,othello,1603 flinty,1,othello,1603 enriches,1,othello,1603 escape,1,othello,1603 Remains,1,othello,1603 commencement,1,othello,1603 tranquil,1,othello,1603 unproper,1,othello,1603 Transported,1,othello,1603 purposed,1,othello,1603 watches,1,othello,1603 beauties,1,othello,1603 mutter,1,othello,1603 confidence,1,othello,1603 minx,1,othello,1603 owedst,1,othello,1603 process,1,othello,1603 beggar,1,othello,1603 insolent,1,othello,1603 Uncle,1,othello,1603 'gainst,1,othello,1603 courage,1,othello,1603 mask,1,othello,1603 skin,1,othello,1603 Divinity,1,othello,1603 dearest,1,othello,1603 coloquintida,1,othello,1603 tented,1,othello,1603 petticoats,1,othello,1603 profitless,1,othello,1603 permission,1,othello,1603 mars,1,othello,1603 yell,1,othello,1603 injuries,1,othello,1603 daffest,1,othello,1603 fountain,1,othello,1603 woe,1,othello,1603 Any,1,othello,1603 sensuality,1,othello,1603 forsook,1,othello,1603 Florence,1,othello,1603 billow,1,othello,1603 woo,1,othello,1603 leaden,1,othello,1603 won,1,othello,1603 minutes,1,othello,1603 greatest,1,othello,1603 Robs,1,othello,1603 heaven's,1,othello,1603 soften'd,1,othello,1603 arch,1,othello,1603 jesses,1,othello,1603 plenteous,1,othello,1603 Pleasure,1,othello,1603 engender'd,1,othello,1603 hypocrisy,1,othello,1603 blacker,1,othello,1603 discharge,1,othello,1603 highwrought,1,othello,1603 graze,1,othello,1603 gondolier,1,othello,1603 conscionable,1,othello,1603 Whatever,1,othello,1603 preposterously,1,othello,1603 thyme,1,othello,1603 expectancy,1,othello,1603 mockery,1,othello,1603 discarded,1,othello,1603 stake,1,othello,1603 Perhaps,1,othello,1603 statesmen,1,othello,1603 Giving,1,othello,1603 vapour,1,othello,1603 firm,1,othello,1603 dullness,1,othello,1603 desired,1,othello,1603 possession,1,othello,1603 bolster,1,othello,1603 wealthy,1,othello,1603 'whore',1,othello,1603 knavery,1,othello,1603 taste,1,othello,1603 slight,1,othello,1603 pole,1,othello,1603 protectress,1,othello,1603 unmake,1,othello,1603 proved,1,othello,1603 capp'd,1,othello,1603 renown,1,othello,1603 finder,1,othello,1603 wrongs,1,othello,1603 contemplation,1,othello,1603 merits,1,othello,1603 example,1,othello,1603 praisest,1,othello,1603 suppertime,1,othello,1603 carefully,1,othello,1603 anticipates,1,othello,1603 wheeling,1,othello,1603 purchase,1,othello,1603 pomp,1,othello,1603 safely,1,othello,1603 molestation,1,othello,1603 boarded,1,othello,1603 Confess,1,othello,1603 experience,1,othello,1603 Vouch,1,othello,1603 Run,1,othello,1603 discipline,1,othello,1603 stamp,1,othello,1603 five,1,othello,1603 roast,1,othello,1603 Rub,1,othello,1603 capable,1,othello,1603 beckons,1,othello,1603 goats,1,othello,1603 We'll,1,othello,1603 Went,1,othello,1603 think't,1,othello,1603 proposed,1,othello,1603 provoke,1,othello,1603 stomach,1,othello,1603 slanderer,1,othello,1603 redemption,1,othello,1603 'Twill,1,othello,1603 compulsive,1,othello,1603 herbs,1,othello,1603 defunct,1,othello,1603 bawdy,1,othello,1603 bread,1,othello,1603 brimful,1,othello,1603 syrups,1,othello,1603 ring,1,othello,1603 Procure,1,othello,1603 services,1,othello,1603 third,1,othello,1603 smock,1,othello,1603 prime,1,othello,1603 sitting,1,othello,1603 gay,1,othello,1603 bondage,1,othello,1603 measures,1,othello,1603 abandon,1,othello,1603 filch,1,othello,1603 humanity,1,othello,1603 creation,1,othello,1603 se'nnight's,1,othello,1603 recover'd,1,othello,1603 manifest,1,othello,1603 stabs,1,othello,1603 closet,1,othello,1603 Dead,1,othello,1603 coxcomb,1,othello,1603 interprets,1,othello,1603 conspire,1,othello,1603 Dear,1,othello,1603 bestow't,1,othello,1603 clock,1,othello,1603 Sure,1,othello,1603 offending,1,othello,1603 grosser,1,othello,1603 Chaos,1,othello,1603 ripe,1,othello,1603 impediments,1,othello,1603 death's,1,othello,1603 save,1,othello,1603 remains,1,othello,1603 ingraft,1,othello,1603 niece,1,othello,1603 DESDEMONA's,1,othello,1603 Succeeds,1,othello,1603 certainly,1,othello,1603 Matching,1,othello,1603 trance,1,othello,1603 copied,1,othello,1603 Damn'd,1,othello,1603 Dian's,1,othello,1603 maid's,1,othello,1603 shadowing,1,othello,1603 likes,1,othello,1603 issues,1,othello,1603 fruitfulness,1,othello,1603 stick,1,othello,1603 profitably,1,othello,1603 Throw,1,othello,1603 imperfect,1,othello,1603 callat,1,othello,1603 linger,1,othello,1603 tuned,1,othello,1603 heave,1,othello,1603 Remove,1,othello,1603 tailor,1,othello,1603 barbarous,1,othello,1603 receive,1,othello,1603 trusty,1,othello,1603 fancy's,1,othello,1603 perforce,1,othello,1603 nuptial,1,othello,1603 stabbing,1,othello,1603 intent,1,othello,1603 ambition,1,othello,1603 clogs,1,othello,1603 commander,1,othello,1603 hidden,1,othello,1603 garland,1,othello,1603 changeable,1,othello,1603 sufferance,1,othello,1603 fellow's,1,othello,1603 arts,1,othello,1603 Abuse,1,othello,1603 kinsmen,1,othello,1603 slipper,1,othello,1603 antres,1,othello,1603 journey's,1,othello,1603 imposition,1,othello,1603 dying,1,othello,1603 bereft,1,othello,1603 swagger,1,othello,1603 peradventure,1,othello,1603 husbands',1,othello,1603 bearded,1,othello,1603 Poison,1,othello,1603 Fourth,1,othello,1603 pleads,1,othello,1603 predecessor,1,othello,1603 cursed,1,othello,1603 potting,1,othello,1603 Soliciting,1,othello,1603 bounty,1,othello,1603 Thrown,1,othello,1603 Given,1,othello,1603 equivocal,1,othello,1603 caught,1,othello,1603 notice,1,othello,1603 hair,1,othello,1603 drowned,1,othello,1603 throats,1,othello,1603 snorting,1,othello,1603 Gives,1,othello,1603 grossly,1,othello,1603 affinity,1,othello,1603 produced,1,othello,1603 requite,1,othello,1603 gladly,1,othello,1603 prompt,1,othello,1603 solicitor,1,othello,1603 breadth,1,othello,1603 affordeth,1,othello,1603 recoiling,1,othello,1603 mettle,1,othello,1603 blotted,1,othello,1603 Bid,1,othello,1603 ransom,1,othello,1603 Straight,1,othello,1603 penitent,1,othello,1603 suppliest,1,othello,1603 served,1,othello,1603 whereinto,1,othello,1603 ingener,1,othello,1603 'willow,1,othello,1603 slavery,1,othello,1603 arithmetician,1,othello,1603 purest,1,othello,1603 index,1,othello,1603 Hail,1,othello,1603 scored,1,othello,1603 fun,1,othello,1603 Swell,1,othello,1603 fife,1,othello,1603 inform,1,othello,1603 tilting,1,othello,1603 anger,1,othello,1603 weeping,1,othello,1603 vicious,1,othello,1603 spleen,1,othello,1603 foreign,1,othello,1603 disembark,1,othello,1603 devoted,1,othello,1603 Rude,1,othello,1603 womb,1,othello,1603 bitterness,1,othello,1603 wondrous,1,othello,1603 facility,1,othello,1603 rail,1,othello,1603 supply,1,othello,1603 imputation,1,othello,1603 dislikes,1,othello,1603 clip,1,othello,1603 cups,1,othello,1603 soldiers',1,othello,1603 stow'd,1,othello,1603 whistle,1,othello,1603 virtuously,1,othello,1603 grain,1,othello,1603 determined,1,othello,1603 drops,1,othello,1603 slubber,1,othello,1603 unbonneted,1,othello,1603 wooer,1,othello,1603 embark'd,1,othello,1603 waste,1,othello,1603 marble,1,othello,1603 pagans,1,othello,1603 uttermost,1,othello,1603 ope,1,othello,1603 discern'st,1,othello,1603 fail,1,othello,1603 delations,1,othello,1603 watching,1,othello,1603 gifts,1,othello,1603 heathen,1,othello,1603 earnestness,1,othello,1603 mince,1,othello,1603 belch,1,othello,1603 hideous,1,othello,1603 Show,1,othello,1603 guilty,1,othello,1603 sails,1,othello,1603 table,1,othello,1603 create,1,othello,1603 hunger,1,othello,1603 supervisor,1,othello,1603 vomit,1,othello,1603 Rot,1,othello,1603 Swear,1,othello,1603 durst,1,othello,1603 Many,1,othello,1603 practising,1,othello,1603 giving,1,othello,1603 modesty,1,othello,1603 covered,1,othello,1603 twiggen,1,othello,1603 deluding,1,othello,1603 foh,1,othello,1603 plumed,1,othello,1603 foe,1,othello,1603 amends,1,othello,1603 distract,1,othello,1603 Proceed,1,othello,1603 catechise,1,othello,1603 wert,1,othello,1603 Call'd,1,othello,1603 safest,1,othello,1603 Devil,1,othello,1603 rack,1,othello,1603 kinsman,1,othello,1603 silly,1,othello,1603 duck,1,othello,1603 scorns,1,othello,1603 mines,1,othello,1603 parcels,1,othello,1603 discover,1,othello,1603 darlings,1,othello,1603 Naples,1,othello,1603 threw,1,othello,1603 worthiness,1,othello,1603 apprehensions,1,othello,1603 palace,1,othello,1603 passing,1,othello,1603 west,1,othello,1603 skilful,1,othello,1603 heartstrings,1,othello,1603 fig,1,othello,1603 epithets,1,othello,1603 officed,1,othello,1603 minute,1,othello,1603 galls,1,othello,1603 Mark,1,othello,1603 fix,1,othello,1603 offices,1,othello,1603 notify,1,othello,1603 perfect,1,othello,1603 fill,1,othello,1603 pleases,1,othello,1603 Nonsuits,1,othello,1603 savage,1,othello,1603 continue,1,othello,1603 travels',1,othello,1603 smote,1,othello,1603 lascivious,1,othello,1603 pants,1,othello,1603 particular,1,othello,1603 cogging,1,othello,1603 incorporate,1,othello,1603 manured,1,othello,1603 refer,1,othello,1603 frize,1,othello,1603 thereby,1,othello,1603 thunder,1,othello,1603 answer'd,1,othello,1603 loading,1,othello,1603 dispraisingly,1,othello,1603 auld,1,othello,1603 loveliness,1,othello,1603 shown,1,othello,1603 wide,1,othello,1603 surge,1,othello,1603 lined,1,othello,1603 undo't,1,othello,1603 uncle,1,othello,1603 agnise,1,othello,1603 wived,1,othello,1603 prospect,1,othello,1603 Work,1,othello,1603 Barbary,1,othello,1603 beware,1,othello,1603 foaming,1,othello,1603 Offend,1,othello,1603 'Good,1,othello,1603 member,1,othello,1603 Foul,1,othello,1603 meaning,1,othello,1603 reproach,1,othello,1603 strikes,1,othello,1603 public,1,othello,1603 distaste,1,othello,1603 extenuate,1,othello,1603 votarist,1,othello,1603 deliver'd,1,othello,1603 founded,1,othello,1603 observance,1,othello,1603 grapes,1,othello,1603 friendship,1,othello,1603 squabble,1,othello,1603 bank,1,othello,1603 Wednesday,1,othello,1603 Deputing,1,othello,1603 plainness,1,othello,1603 vital,1,othello,1603 hallow'd,1,othello,1603 motive,1,othello,1603 weakness,1,othello,1603 tame,1,othello,1603 secrets,1,othello,1603 dam,1,othello,1603 unlawfully,1,othello,1603 quillets,1,othello,1603 large,1,othello,1603 favourably,1,othello,1603 Neglecting,1,othello,1603 dismay'd,1,othello,1603 sentences,1,othello,1603 flock,1,othello,1603 mischance,1,othello,1603 meets,1,othello,1603 Puff'd,1,othello,1603 favourable,1,othello,1603 soul's,1,othello,1603 ecstasy,1,othello,1603 ache,1,othello,1603 Caesar,1,othello,1603 timorous,1,othello,1603 coat,1,othello,1603 indistinct,1,othello,1603 tall,1,othello,1603 constant,1,othello,1603 amiable,1,othello,1603 cable,1,othello,1603 wider,1,othello,1603 affliction,1,othello,1603 mediators,1,othello,1603 fruitful,1,othello,1603 otherwise,1,othello,1603 cue,1,othello,1603 haunting,1,othello,1603 puppies,1,othello,1603 perish,1,othello,1603 Worse,1,othello,1603 rapier,1,othello,1603 alms,1,othello,1603 insupportable,1,othello,1603 outsport,1,othello,1603 minx's,1,othello,1603 pledge,1,othello,1603 shook,1,othello,1603 dungeon,1,othello,1603 holy,1,othello,1603 Give't,1,othello,1603 professed,1,othello,1603 clear,1,othello,1603 Pride,1,othello,1603 short,1,othello,1603 clean,1,othello,1603 None,1,othello,1603 Swallow,1,othello,1603 fertile,1,othello,1603 satisfying,1,othello,1603 unlace,1,othello,1603 guinea,1,othello,1603 distinctly,1,othello,1603 dangerous,1,othello,1603 Mauritania,1,othello,1603 proclaimed,1,othello,1603 devout,1,othello,1603 sweats,1,othello,1603 dishes,1,othello,1603 Lives,1,othello,1603 partially,1,othello,1603 compasses,1,othello,1603 sew'd,1,othello,1603 boyish,1,othello,1603 carve,1,othello,1603 unto,1,othello,1603 deathbed,1,othello,1603 family,1,othello,1603 monumental,1,othello,1603 loyal,1,othello,1603 assist,1,othello,1603 depth,1,othello,1603 tire,1,othello,1603 winter,1,othello,1603 streets,1,othello,1603 ruffian'd,1,othello,1603 Where's,1,othello,1603 resolution,1,othello,1603 undertook,1,othello,1603 speculative,1,othello,1603 Fall'n,1,othello,1603 reach'd,1,othello,1603 task,1,othello,1603 seen't,1,othello,1603 choler,1,othello,1603 thou'ldst,1,othello,1603 notwithstanding,1,othello,1603 Brave,1,othello,1603 honesty's,1,othello,1603 bawd,1,othello,1603 cope,1,othello,1603 manage,1,othello,1603 Arabian,1,othello,1603 perfumed,1,othello,1603 seat,1,othello,1603 hairs,1,othello,1603 adopt,1,othello,1603 lovely,1,othello,1603 hunt,1,othello,1603 Arraigning,1,othello,1603 equinox,1,othello,1603 cool,1,othello,1603 vexation,1,othello,1603 pudding,1,othello,1603 continuate,1,othello,1603 neglected,1,othello,1603 importunity,1,othello,1603 adieu,1,othello,1603 examples,1,othello,1603 eyed,1,othello,1603 ugly,1,othello,1603 captain's,1,othello,1603 letting,1,othello,1603 difficult,1,othello,1603 sect,1,othello,1603 fuller,1,othello,1603 converse,1,othello,1603 needful,1,othello,1603 Sees,1,othello,1603 reckoning,1,othello,1603 thereto,1,othello,1603 Seek,1,othello,1603 quat,1,othello,1603 weep'st,1,othello,1603 took't,1,othello,1603 keep't,1,othello,1603 we'll,1,othello,1603 quay,1,othello,1603 presence,1,othello,1603 cousins,1,othello,1603 gestures,1,othello,1603 ended,1,othello,1603 Ne'er,1,othello,1603 undertaker,1,othello,1603 Steps,1,othello,1603 others',1,othello,1603 divorce,1,othello,1603 sees,1,othello,1603 comply,1,othello,1603 drunken,1,othello,1603 vehement,1,othello,1603 period,1,othello,1603 hound,1,othello,1603 Believe,1,othello,1603 'Sblood,1,othello,1603 estimation,1,othello,1603 expectation,1,othello,1603 Speaking,1,othello,1603 suspects,1,othello,1603 Killing,1,othello,1603 sacred,1,othello,1603 English,1,othello,1603 topp'd,1,othello,1603 increase,1,othello,1603 purgatory,1,othello,1603 assign,1,othello,1603 pestilent,1,othello,1603 portents,1,othello,1603 modest,1,othello,1603 affright,1,othello,1603 musician,1,othello,1603 nights,1,othello,1603 unused,1,othello,1603 downright,1,othello,1603 heels,1,othello,1603 reprobation,1,othello,1603 platform,1,othello,1603 goat,1,othello,1603 greedy,1,othello,1603 cistern,1,othello,1603 replies,1,othello,1603 kindred,1,othello,1603 warranty,1,othello,1603 suffice,1,othello,1603 loathe,1,othello,1603 inviting,1,othello,1603 lovers,1,othello,1603 remove,1,othello,1603 gods,1,othello,1603 modern,1,othello,1603 raven,1,othello,1603 believed,1,othello,1603 sell,1,othello,1603 unfolding,1,othello,1603 turban'd,1,othello,1603 millions,1,othello,1603 Trumpet,1,othello,1603 blank,1,othello,1603 distracted,1,othello,1603 whilst,1,othello,1603 snipe,1,othello,1603 gloss,1,othello,1603 prison,1,othello,1603 Neither,1,othello,1603 allowed,1,othello,1603 confirmations,1,othello,1603 undo,1,othello,1603 Willow,1,othello,1603 grieves,1,othello,1603 simpleness,1,othello,1603 swell,1,othello,1603 cold,1,othello,1603 remedies,1,othello,1603 Roman,1,othello,1603 Aleppo,1,othello,1603 greeting,1,othello,1603 fineless,1,othello,1603 small'st,1,othello,1603 countryman,1,othello,1603 sorrow's,1,othello,1603 garter,1,othello,1603 horologe,1,othello,1603 blast,1,othello,1603 aches,1,othello,1603 seaside,1,othello,1603 Mistress,1,othello,1603 slumbers,1,othello,1603 palpable,1,othello,1603 hunts,1,othello,1603 aerial,1,othello,1603 master's,1,othello,1603 even'd,1,othello,1603 startingly,1,othello,1603 leagued,1,othello,1603 Judge,1,othello,1603 chances,1,othello,1603 bags,1,othello,1603 nature's,1,othello,1603 Rough,1,othello,1603 lawn,1,othello,1603 mixtures,1,othello,1603 circumscription,1,othello,1603 epilepsy,1,othello,1603 fobbed,1,othello,1603 Fire,1,othello,1603 Tempests,1,othello,1603 thread,1,othello,1603 Almain,1,othello,1603 credulous,1,othello,1603 slow,1,othello,1603 dealings,1,othello,1603 adversities,1,othello,1603 pliant,1,othello,1603 choke,1,othello,1603 scattering,1,othello,1603 effects,1,othello,1603 requested,1,othello,1603 fustian,1,othello,1603 franker,1,othello,1603 feasting,1,othello,1603 unvarnish'd,1,othello,1603 petty,1,othello,1603 strawberries,1,othello,1603 moraler,1,othello,1603 Unreconciled,1,othello,1603 disastrous,1,othello,1603 clouds,1,othello,1603 wearing,1,othello,1603 fiends,1,othello,1603 alter'd,1,othello,1603 perjury,1,othello,1603 construe,1,othello,1603 Greater,1,othello,1603 relume,1,othello,1603 Propontic,1,othello,1603 housewives,1,othello,1603 pray'd,1,othello,1603 However,1,othello,1603 Blush'd,1,othello,1603 balance,1,othello,1603 unlike,1,othello,1603 rheum,1,othello,1603 sufficiency,1,othello,1603 consequence,1,othello,1603 vices,1,othello,1603 reward,1,othello,1603 burst,1,othello,1603 wring,1,othello,1603 accountant,1,othello,1603 laughed,1,othello,1603 forked,1,othello,1603 inferior,1,othello,1603 chidden,1,othello,1603 unskilful,1,othello,1603 treacherous,1,othello,1603 parallel,1,othello,1603 likelihoods,1,othello,1603 Diablo,1,othello,1603 shambles,1,othello,1603 elbow,1,othello,1603 collied,1,othello,1603 sovereign,1,othello,1603 restem,1,othello,1603 exsufflicate,1,othello,1603 evils,1,othello,1603 determine,1,othello,1603 Since,1,othello,1603 grievously,1,othello,1603 determinate,1,othello,1603 cinders,1,othello,1603 murder's,1,othello,1603 whiter,1,othello,1603 injointed,1,othello,1603 whip,1,othello,1603 merciful,1,othello,1603 garner'd,1,othello,1603 laps,1,othello,1603 body's,1,othello,1603 crocodile,1,othello,1603 suffocating,1,othello,1603 battlements,1,othello,1603 heartily,1,othello,1603 pegs,1,othello,1603 Great,1,othello,1603 fled,1,othello,1603 Unkindness,1,othello,1603 bethink,1,othello,1603 castigation,1,othello,1603 punishment,1,othello,1603 bang'd,1,othello,1603 eleven,1,othello,1603 Eight,1,othello,1603 gulfs,1,othello,1603 crusadoes,1,othello,1603 bellied,1,othello,1603 Abused,1,othello,1603 Forsooth,1,othello,1603 extern,1,othello,1603 Faints,1,othello,1603 banner,1,othello,1603 question'd,1,othello,1603 lion,1,othello,1603 caroused,1,othello,1603 indiscreet,1,othello,1603 homage,1,othello,1603 nephews,1,othello,1603 amorous,1,othello,1603 whiles,1,othello,1603 telling,1,othello,1603 German,1,othello,1603 scion,1,othello,1603 chrysolite,1,othello,1603 renew'd,1,othello,1603 gull,1,othello,1603 lethargy,1,othello,1603 earliest,1,othello,1603 phrase,1,othello,1603 peck,1,othello,1603 lash,1,othello,1603 hyssop,1,othello,1603 Man,1,othello,1603 plucks,1,othello,1603 fasting,1,othello,1603 preposterous,1,othello,1603 liquid,1,othello,1603 flag,1,othello,1603 tenderness,1,othello,1603 Sings,1,othello,1603 citizens,1,othello,1603 commonly,1,othello,1603 gravity,1,othello,1603 mammering,1,othello,1603 Promethean,1,othello,1603 compel,1,othello,1603 throwing,1,othello,1603 shroud,1,othello,1603 extent,1,othello,1603 mineral,1,othello,1603 maidens',1,othello,1603 discontented,1,othello,1603 yerk'd,1,othello,1603 importing,1,othello,1603 peer,1,othello,1603 extend,1,othello,1603 gets,1,othello,1603 keepest,1,othello,1603 Olympus,1,othello,1603 howbeit,1,othello,1603 human,1,othello,1603 opportunity,1,othello,1603 mummy,1,othello,1603 hurl,1,othello,1603 squire,1,othello,1603 preferring,1,othello,1603 intentively,1,othello,1603 neigh,1,othello,1603 fathom,1,othello,1603 cell,1,othello,1603 follow'd,1,othello,1603 Justice,1,othello,1603 importunate,1,othello,1603 try,1,othello,1603 shrewd,1,othello,1603 silent,1,othello,1603 rebels,1,othello,1603 Death,1,othello,1603 witty,1,othello,1603 'This,1,othello,1603 Spotted,1,othello,1603 leads,1,othello,1603 Traverse,1,othello,1603 Note,1,othello,1603 employ,1,othello,1603 Evades,1,othello,1603 pattern,1,othello,1603 sieges,1,othello,1603 confirm,1,othello,1603 essence,1,othello,1603 provide,1,othello,1603 spinster,1,othello,1603 theoric,1,othello,1603 substitute,1,othello,1603 mangled,1,othello,1603 harsh,1,othello,1603 Whoe'er,1,othello,1603 pelt,1,othello,1603 happily,1,othello,1603 confine,1,othello,1603 Fetch't,1,othello,1603 dart,1,othello,1603 perchance,1,othello,1603 Plies,1,othello,1603 Steep'd,1,othello,1603 boisterous,1,othello,1603 frame,1,othello,1603 Rouse,1,othello,1603 paddle,1,othello,1603 weight,1,othello,1603 catch,1,othello,1603 humbled,1,othello,1603 pens,1,othello,1603 bonfires,1,othello,1603 'faith,1,othello,1603 toy,1,othello,1603 instruction,1,othello,1603 globe,1,othello,1603 top,1,othello,1603 another's,1,othello,1603 hotly,1,othello,1603 fellowship,1,othello,1603 Impudent,1,othello,1603 Preferment,1,othello,1603 liest,1,othello,1603 proclamation,1,othello,1603 'hem,1,othello,1603 snatch,1,othello,1603 sea's,1,othello,1603 emperor's,1,othello,1603 DRAMATIS,1,othello,1603 success,1,othello,1603 leap'd,1,othello,1603 dilatory,1,othello,1603 daughters',1,othello,1603 guests,1,othello,1603 solicitation,1,othello,1603 tis,1,othello,1603 tin,1,othello,1603 physician,1,othello,1603 Touch,1,othello,1603 filled,1,othello,1603 dotage,1,othello,1603 propose,1,othello,1603 answerable,1,othello,1603 housewives',1,othello,1603 uncapable,1,othello,1603 sweeting,1,othello,1603 Desires,1,othello,1603 Too,1,othello,1603 frankly,1,othello,1603 pass'd,1,othello,1603 topping,1,othello,1603 bargain,1,othello,1603 Left,1,othello,1603 tempt,1,othello,1603 meditations,1,othello,1603 circumcised,1,othello,1603 trees,1,othello,1603 divided,1,othello,1603 Angelo,1,othello,1603 Probal,1,othello,1603 gorge,1,othello,1603 dew,1,othello,1603 gentler,1,othello,1603 impotent,1,othello,1603 Talk,1,othello,1603 stings,1,othello,1603 Staying,1,othello,1603 tinder,1,othello,1603 press'd,1,othello,1603 disputed,1,othello,1603 slip,1,othello,1603 stomachs,1,othello,1603 darling,1,othello,1603 If't,1,othello,1603 hellish,1,othello,1603 toads,1,othello,1603 divorcement,1,othello,1603 cannon,1,othello,1603 Opens,1,othello,1603 doting,1,othello,1603 parley,1,othello,1603 repair,1,othello,1603 Humbly,1,othello,1603 'mongst,1,othello,1603 breathe,1,othello,1603 magnifico,1,othello,1603 obedience,1,othello,1603 avaunt,1,othello,1603 hangman,1,othello,1603 shape,1,othello,1603 profit's,1,othello,1603 contaminated,1,othello,1603 Spartan,1,othello,1603 Bells,1,othello,1603 Parted,1,othello,1603 breaths,1,othello,1603 Lechery,1,othello,1603 Prick'd,1,othello,1603 hunting,1,othello,1603 perhaps,1,othello,1603 fordoes,1,othello,1603 privately,1,othello,1603 sands,1,othello,1603 order,1,othello,1603 dissemble,1,othello,1603 enmesh,1,othello,1603 prompter,1,othello,1603 observing,1,othello,1603 usurped,1,othello,1603 toughness,1,othello,1603 lose't,1,othello,1603 swag,1,othello,1603 woo'd,1,othello,1603 degrees,1,othello,1603 swan,1,othello,1603 summer,1,othello,1603 weigh'st,1,othello,1603 gennets,1,othello,1603 sanctimony,1,othello,1603 brawl,2,othello,1603 regard,2,othello,1603 V,2,othello,1603 swords,2,othello,1603 fruits,2,othello,1603 suffer,2,othello,1603 smiles,2,othello,1603 gallants,2,othello,1603 took,2,othello,1603 apprehend,2,othello,1603 assay,2,othello,1603 heir,2,othello,1603 wish'd,2,othello,1603 horse,2,othello,1603 Pish,2,othello,1603 ran,2,othello,1603 royal,2,othello,1603 lawful,2,othello,1603 Whether,2,othello,1603 Nobody,2,othello,1603 Villain,2,othello,1603 Desdemona's,2,othello,1603 preparation,2,othello,1603 health,2,othello,1603 mend,2,othello,1603 stopp'd,2,othello,1603 dotes,2,othello,1603 Beat,2,othello,1603 mandate,2,othello,1603 easily,2,othello,1603 jot,2,othello,1603 despised,2,othello,1603 eight,2,othello,1603 Tell,2,othello,1603 joint,2,othello,1603 Must,2,othello,1603 groan,2,othello,1603 bounteous,2,othello,1603 vain,2,othello,1603 prisoner,2,othello,1603 grim,2,othello,1603 honourable,2,othello,1603 hearted,2,othello,1603 pottle,2,othello,1603 feeds,2,othello,1603 allowance,2,othello,1603 fury,2,othello,1603 throat,2,othello,1603 withal,2,othello,1603 laugh,2,othello,1603 inclining,2,othello,1603 run,2,othello,1603 absolute,2,othello,1603 moist,2,othello,1603 Entirely,2,othello,1603 case,2,othello,1603 worser,2,othello,1603 cats,2,othello,1603 breach,2,othello,1603 beneath,2,othello,1603 soon,2,othello,1603 birth,2,othello,1603 amazed,2,othello,1603 sold,2,othello,1603 matters,2,othello,1603 bearing,2,othello,1603 Jove,2,othello,1603 sorrows,2,othello,1603 crying,2,othello,1603 broken,2,othello,1603 thou'rt,2,othello,1603 Much,2,othello,1603 concerns,2,othello,1603 function,2,othello,1603 revels,2,othello,1603 fingers,2,othello,1603 lift,2,othello,1603 policy,2,othello,1603 knaves,2,othello,1603 complexion,2,othello,1603 soft,2,othello,1603 Methinks,2,othello,1603 riches,2,othello,1603 errs,2,othello,1603 began,2,othello,1603 moving,2,othello,1603 conceits,2,othello,1603 monkeys,2,othello,1603 history,2,othello,1603 returned,2,othello,1603 conception,2,othello,1603 'twere,2,othello,1603 key,2,othello,1603 subdued,2,othello,1603 bode,2,othello,1603 invention,2,othello,1603 deceived,2,othello,1603 hereabout,2,othello,1603 Going,2,othello,1603 peevish,2,othello,1603 scorn,2,othello,1603 forsake,2,othello,1603 peril,2,othello,1603 love's,2,othello,1603 son,2,othello,1603 erring,2,othello,1603 'O,2,othello,1603 't,2,othello,1603 instruct,2,othello,1603 faults,2,othello,1603 offends,2,othello,1603 betwixt,2,othello,1603 amiss,2,othello,1603 exhibition,2,othello,1603 felt,2,othello,1603 mocks,2,othello,1603 fight,2,othello,1603 compassing,2,othello,1603 brain,2,othello,1603 piece,2,othello,1603 profess,2,othello,1603 figure,2,othello,1603 bliss,2,othello,1603 direct,2,othello,1603 runs,2,othello,1603 relate,2,othello,1603 white,2,othello,1603 Leave,2,othello,1603 saw't,2,othello,1603 sup,2,othello,1603 brace,2,othello,1603 reverence,2,othello,1603 fearful,2,othello,1603 feed,2,othello,1603 blind,2,othello,1603 whisper,2,othello,1603 others,2,othello,1603 putting,2,othello,1603 kneel,2,othello,1603 knees,2,othello,1603 want,2,othello,1603 know'st,2,othello,1603 diet,2,othello,1603 sooth,2,othello,1603 Fetch,2,othello,1603 Dane,2,othello,1603 harbour,2,othello,1603 breeding,2,othello,1603 wary,2,othello,1603 rule,2,othello,1603 meat,2,othello,1603 desire,2,othello,1603 gesture,2,othello,1603 rules,2,othello,1603 Blessed,2,othello,1603 book,2,othello,1603 framed,2,othello,1603 authority,2,othello,1603 I',2,othello,1603 stir,2,othello,1603 slaves,2,othello,1603 strongly,2,othello,1603 drinking,2,othello,1603 sign,2,othello,1603 Stabs,2,othello,1603 streams,2,othello,1603 granted,2,othello,1603 exercise,2,othello,1603 perfection,2,othello,1603 pilot,2,othello,1603 hang'd,2,othello,1603 mutiny,2,othello,1603 scarce,2,othello,1603 balmy,2,othello,1603 guiltiness,2,othello,1603 eternal,2,othello,1603 unnatural,2,othello,1603 Still,2,othello,1603 blown,2,othello,1603 told'st,2,othello,1603 warrior,2,othello,1603 bay,2,othello,1603 in't,2,othello,1603 pulls,2,othello,1603 changed,2,othello,1603 medicine,2,othello,1603 fatal,2,othello,1603 ills,2,othello,1603 requires,2,othello,1603 dinner,2,othello,1603 notorious,2,othello,1603 surely,2,othello,1603 ease,2,othello,1603 proud,2,othello,1603 glorious,2,othello,1603 matches,2,othello,1603 heads,2,othello,1603 corrupted,2,othello,1603 kiss'd,2,othello,1603 haunt,2,othello,1603 iniquity,2,othello,1603 weed,2,othello,1603 be'st,2,othello,1603 sith,2,othello,1603 challenge,2,othello,1603 hills,2,othello,1603 absent,2,othello,1603 perdition,2,othello,1603 goodly,2,othello,1603 got,2,othello,1603 tricks,2,othello,1603 learned,2,othello,1603 wear,2,othello,1603 Dies,2,othello,1603 jewel,2,othello,1603 tedious,2,othello,1603 despite,2,othello,1603 swift,2,othello,1603 mystery,2,othello,1603 gown,2,othello,1603 divine,2,othello,1603 gate,2,othello,1603 jump,2,othello,1603 beds,2,othello,1603 sing,2,othello,1603 immortal,2,othello,1603 hurts,2,othello,1603 importune,2,othello,1603 begin,2,othello,1603 quite,2,othello,1603 uses,2,othello,1603 Forth,2,othello,1603 God's,2,othello,1603 forgive,2,othello,1603 mood,2,othello,1603 aim,2,othello,1603 gift,2,othello,1603 servant,2,othello,1603 excellent,2,othello,1603 consider,2,othello,1603 current,2,othello,1603 beat,2,othello,1603 gain,2,othello,1603 yes,2,othello,1603 murderous,2,othello,1603 tongues,2,othello,1603 handsome,2,othello,1603 dwell,2,othello,1603 stone,2,othello,1603 caitiff,2,othello,1603 pluck'd,2,othello,1603 engines,2,othello,1603 'Fore,2,othello,1603 interim,2,othello,1603 Villanous,2,othello,1603 thrive,2,othello,1603 enforce,2,othello,1603 poise,2,othello,1603 lady's,2,othello,1603 restraint,2,othello,1603 appeared,2,othello,1603 makest,2,othello,1603 wench,2,othello,1603 fixed,2,othello,1603 attending,2,othello,1603 Concerning,2,othello,1603 fears,2,othello,1603 expert,2,othello,1603 strain,2,othello,1603 necessity,2,othello,1603 utmost,2,othello,1603 whereof,2,othello,1603 morn,2,othello,1603 loss,2,othello,1603 Wouldst,2,othello,1603 potent,2,othello,1603 twenty,2,othello,1603 Guns,2,othello,1603 It's,2,othello,1603 knee,2,othello,1603 hot,2,othello,1603 thrice,2,othello,1603 choice,2,othello,1603 hark,2,othello,1603 personal,2,othello,1603 easy,2,othello,1603 kills,2,othello,1603 front,2,othello,1603 soldier's,2,othello,1603 pale,2,othello,1603 palm,2,othello,1603 faintly,2,othello,1603 appears,2,othello,1603 liberty,2,othello,1603 consuls,2,othello,1603 hardness,2,othello,1603 forty,2,othello,1603 mighty,2,othello,1603 acquaintance,2,othello,1603 unlawful,2,othello,1603 city,2,othello,1603 weeps,2,othello,1603 abhor,2,othello,1603 nightly,2,othello,1603 stranger,2,othello,1603 removing,2,othello,1603 wasted,2,othello,1603 diest,2,othello,1603 exquisite,2,othello,1603 stones,2,othello,1603 alive,2,othello,1603 shot,2,othello,1603 rings,2,othello,1603 fall'n,2,othello,1603 food,2,othello,1603 courses,2,othello,1603 creatures,2,othello,1603 ass,2,othello,1603 object,2,othello,1603 accidents,2,othello,1603 girl,2,othello,1603 forms,2,othello,1603 fancies,2,othello,1603 chance,2,othello,1603 trick,2,othello,1603 native,2,othello,1603 Sometimes,2,othello,1603 maim'd,2,othello,1603 wooing,2,othello,1603 enjoy,2,othello,1603 Stood,2,othello,1603 guess,2,othello,1603 prays,2,othello,1603 Into,2,othello,1603 notable,2,othello,1603 yesterday,2,othello,1603 Comes,2,othello,1603 Kill,2,othello,1603 education,2,othello,1603 scant,2,othello,1603 rank,2,othello,1603 dress'd,2,othello,1603 rose,2,othello,1603 mischief,2,othello,1603 session,2,othello,1603 lords,2,othello,1603 build,2,othello,1603 distance,2,othello,1603 retires,2,othello,1603 note,2,othello,1603 unknown,2,othello,1603 lack'd,2,othello,1603 proceed,2,othello,1603 waked,2,othello,1603 Bade,2,othello,1603 Peace,2,othello,1603 hint,2,othello,1603 entertainment,2,othello,1603 beard,2,othello,1603 dangers,2,othello,1603 Wear,2,othello,1603 disloyal,2,othello,1603 Soft,2,othello,1603 Down,2,othello,1603 Striking,2,othello,1603 Subdue,2,othello,1603 visage,2,othello,1603 charm,2,othello,1603 All's,2,othello,1603 affections,2,othello,1603 quickly,2,othello,1603 ignorant,2,othello,1603 Set,2,othello,1603 evermore,2,othello,1603 say'st,2,othello,1603 powers,2,othello,1603 Doth,2,othello,1603 Sea,2,othello,1603 err,2,othello,1603 device,2,othello,1603 stare,2,othello,1603 towards,2,othello,1603 kissed,2,othello,1603 Could,2,othello,1603 villanous,2,othello,1603 ranks,2,othello,1603 persuaded,2,othello,1603 issue,2,othello,1603 quench,2,othello,1603 unpin,2,othello,1603 tasks,2,othello,1603 chide,2,othello,1603 Drunk,2,othello,1603 benefit,2,othello,1603 over,2,othello,1603 search,2,othello,1603 trifle,2,othello,1603 laughs,2,othello,1603 Made,2,othello,1603 chuck,2,othello,1603 one's,2,othello,1603 subdue,2,othello,1603 thigh,2,othello,1603 trouble,2,othello,1603 division,2,othello,1603 mistress',2,othello,1603 fills,2,othello,1603 wrath,2,othello,1603 web,2,othello,1603 living,2,othello,1603 Found,2,othello,1603 behalf,2,othello,1603 pause,2,othello,1603 passage,2,othello,1603 wi',2,othello,1603 Reputation,2,othello,1603 murders,2,othello,1603 odd,2,othello,1603 flies,2,othello,1603 neck,2,othello,1603 sides,2,othello,1603 Witness,2,othello,1603 sorrow,2,othello,1603 break,2,othello,1603 only,2,othello,1603 hears,2,othello,1603 Tuesday,2,othello,1603 moment,2,othello,1603 recover,2,othello,1603 frailty,2,othello,1603 oak,2,othello,1603 Gratiano,2,othello,1603 Say,2,othello,1603 quicken,2,othello,1603 negligence,2,othello,1603 subtle,2,othello,1603 torture,2,othello,1603 nether,2,othello,1603 Ancient,2,othello,1603 earnest,2,othello,1603 driven,2,othello,1603 Worthy,2,othello,1603 arms,2,othello,1603 commanded,2,othello,1603 oath,2,othello,1603 rage,2,othello,1603 assure,2,othello,1603 danger,2,othello,1603 proceeding,2,othello,1603 price,2,othello,1603 wont,2,othello,1603 forfend,2,othello,1603 Three,2,othello,1603 familiar,2,othello,1603 raging,2,othello,1603 baseness,2,othello,1603 seize,2,othello,1603 gender,2,othello,1603 reports,2,othello,1603 demonstrate,2,othello,1603 prologue,2,othello,1603 charged,2,othello,1603 angel,2,othello,1603 Sagittary,2,othello,1603 killing,2,othello,1603 opposite,2,othello,1603 compass,2,othello,1603 owe,2,othello,1603 haply,2,othello,1603 belie,2,othello,1603 beguiled,2,othello,1603 stoutly,2,othello,1603 unfortunate,2,othello,1603 wrong'd,2,othello,1603 Strike,2,othello,1603 minister,2,othello,1603 fain,2,othello,1603 wholesome,2,othello,1603 cried,2,othello,1603 position,2,othello,1603 yond,2,othello,1603 judge,2,othello,1603 prattle,2,othello,1603 methinks,2,othello,1603 fame,2,othello,1603 humour,2,othello,1603 pleased,2,othello,1603 wounds,2,othello,1603 tune,2,othello,1603 fly,2,othello,1603 fine,2,othello,1603 safety,2,othello,1603 ribs,2,othello,1603 damnation,2,othello,1603 Lead,2,othello,1603 bark,2,othello,1603 rebuke,2,othello,1603 duties,2,othello,1603 lordship,2,othello,1603 tail,2,othello,1603 pocket,2,othello,1603 unfold,2,othello,1603 smooth,2,othello,1603 Barbara,2,othello,1603 partly,2,othello,1603 patient,2,othello,1603 senators,2,othello,1603 incur,2,othello,1603 prefer,2,othello,1603 Each,2,othello,1603 drinks,2,othello,1603 lights,2,othello,1603 bind,2,othello,1603 appearance,2,othello,1603 sufficient,2,othello,1603 stroke,2,othello,1603 Trust,2,othello,1603 torment,2,othello,1603 wilt,2,othello,1603 holds,2,othello,1603 England,2,othello,1603 dozen,2,othello,1603 populous,2,othello,1603 master,2,othello,1603 hollow,2,othello,1603 cut,2,othello,1603 counterfeit,2,othello,1603 request,2,othello,1603 revolt,2,othello,1603 defeat,2,othello,1603 Awake,2,othello,1603 seal,2,othello,1603 abilities,2,othello,1603 seas,2,othello,1603 along,2,othello,1603 low,2,othello,1603 captain,2,othello,1603 supplied,2,othello,1603 Truly,2,othello,1603 trespass,2,othello,1603 unkindness,2,othello,1603 News,2,othello,1603 discretion,2,othello,1603 vessel,2,othello,1603 tells,2,othello,1603 cost,2,othello,1603 fellows,2,othello,1603 tidings,2,othello,1603 battle,2,othello,1603 troop,2,othello,1603 thrust,2,othello,1603 person,2,othello,1603 He'll,2,othello,1603 tree,2,othello,1603 pour,2,othello,1603 drugs,2,othello,1603 huge,2,othello,1603 Send,2,othello,1603 port,2,othello,1603 Cry,2,othello,1603 aloud,2,othello,1603 cases,2,othello,1603 deceive,2,othello,1603 chose,2,othello,1603 affair,2,othello,1603 safer,2,othello,1603 bestow,2,othello,1603 pipes,2,othello,1603 ebb,2,othello,1603 Two,2,othello,1603 brow,2,othello,1603 servants,2,othello,1603 persuade,2,othello,1603 eat,2,othello,1603 suitor,2,othello,1603 senator,2,othello,1603 imports,2,othello,1603 taint,2,othello,1603 abroad,2,othello,1603 forced,2,othello,1603 begins,2,othello,1603 learn,2,othello,1603 doing,2,othello,1603 remember,2,othello,1603 island,2,othello,1603 Does,2,othello,1603 nobody,2,othello,1603 conjured,2,othello,1603 Men,2,othello,1603 powerful,2,othello,1603 fashion,2,othello,1603 pernicious,2,othello,1603 wound,2,othello,1603 Amen,2,othello,1603 marriage,2,othello,1603 dismiss,2,othello,1603 Kneels,2,othello,1603 affined,2,othello,1603 grounds,2,othello,1603 thither,2,othello,1603 late,2,othello,1603 canakin,2,othello,1603 pranks,2,othello,1603 betimes,2,othello,1603 fright,2,othello,1603 Without,2,othello,1603 were't,2,othello,1603 moe,2,othello,1603 entreats,2,othello,1603 frank,2,othello,1603 simple,2,othello,1603 witness,2,othello,1603 You'll,2,othello,1603 invited,2,othello,1603 asleep,2,othello,1603 Whip,2,othello,1603 Lest,2,othello,1603 cashier'd,2,othello,1603 sudden,2,othello,1603 supp'd,2,othello,1603 rocks,2,othello,1603 poisons,2,othello,1603 lame,2,othello,1603 Bring,2,othello,1603 Due,2,othello,1603 filthy,2,othello,1603 behold,2,othello,1603 exit,2,othello,1603 frail,2,othello,1603 drown'd,2,othello,1603 gloves,2,othello,1603 ten,2,othello,1603 amen,2,othello,1603 remorse,2,othello,1603 charity,2,othello,1603 forbear,2,othello,1603 remembrance,2,othello,1603 shirt,2,othello,1603 crown,2,othello,1603 undertake,2,othello,1603 Florentine,2,othello,1603 Hollander,2,othello,1603 lads,2,othello,1603 brave,3,othello,1603 heed,3,othello,1603 ignorance,3,othello,1603 parted,3,othello,1603 drop,3,othello,1603 motion,3,othello,1603 Fie,3,othello,1603 peculiar,3,othello,1603 steals,3,othello,1603 finger,3,othello,1603 violent,3,othello,1603 Either,3,othello,1603 Beshrew,3,othello,1603 instrument,3,othello,1603 naked,3,othello,1603 hanged,3,othello,1603 slander,3,othello,1603 works,3,othello,1603 Whom,3,othello,1603 Light,3,othello,1603 stirring,3,othello,1603 Poor,3,othello,1603 conscience,3,othello,1603 grows,3,othello,1603 circumstance,3,othello,1603 gracious,3,othello,1603 injury,3,othello,1603 Keep,3,othello,1603 heat,3,othello,1603 madness,3,othello,1603 paper,3,othello,1603 making,3,othello,1603 addition,3,othello,1603 blessed,3,othello,1603 general's,3,othello,1603 stands,3,othello,1603 impossible,3,othello,1603 'A,3,othello,1603 merry,3,othello,1603 fell,3,othello,1603 score,3,othello,1603 council,3,othello,1603 deliver,3,othello,1603 winds,3,othello,1603 wight,3,othello,1603 pitiful,3,othello,1603 read,3,othello,1603 merit,3,othello,1603 common,3,othello,1603 give't,3,othello,1603 civil,3,othello,1603 absence,3,othello,1603 loose,3,othello,1603 sue,3,othello,1603 feel,3,othello,1603 promise,3,othello,1603 galleys,3,othello,1603 speaking,3,othello,1603 Musicians,3,othello,1603 dies,3,othello,1603 directly,3,othello,1603 custom,3,othello,1603 world's,3,othello,1603 rest,3,othello,1603 stop,3,othello,1603 wits,3,othello,1603 observe,3,othello,1603 infirmity,3,othello,1603 bitter,3,othello,1603 drown,3,othello,1603 offend,3,othello,1603 Am,3,othello,1603 quarrel,3,othello,1603 Those,3,othello,1603 shortly,3,othello,1603 desperate,3,othello,1603 smile,3,othello,1603 scurvy,3,othello,1603 Stand,3,othello,1603 ladyship,3,othello,1603 cruel,3,othello,1603 unless,3,othello,1603 Oh,3,othello,1603 since,3,othello,1603 quick,3,othello,1603 pass,3,othello,1603 ears,3,othello,1603 changes,3,othello,1603 Adieu,3,othello,1603 gold,3,othello,1603 busy,3,othello,1603 couch,3,othello,1603 weak,3,othello,1603 Behold,3,othello,1603 people,3,othello,1603 Put,3,othello,1603 drowning,3,othello,1603 degree,3,othello,1603 sins,3,othello,1603 Like,3,othello,1603 'Twas,3,othello,1603 government,3,othello,1603 affection,3,othello,1603 breast,3,othello,1603 magic,3,othello,1603 stops,3,othello,1603 jewels,3,othello,1603 safe,3,othello,1603 violence,3,othello,1603 napkin,3,othello,1603 gall,3,othello,1603 comforts,3,othello,1603 forget,3,othello,1603 move,3,othello,1603 small,3,othello,1603 idle,3,othello,1603 Myself,3,othello,1603 hadst,3,othello,1603 loud,3,othello,1603 endure,3,othello,1603 less,3,othello,1603 ill,3,othello,1603 spend,3,othello,1603 pure,3,othello,1603 field,3,othello,1603 round,3,othello,1603 Christian,3,othello,1603 senate,3,othello,1603 see't,3,othello,1603 hang,3,othello,1603 shut,3,othello,1603 governor,3,othello,1603 open,3,othello,1603 arm,3,othello,1603 form,3,othello,1603 pain,3,othello,1603 hangs,3,othello,1603 delight,3,othello,1603 point,3,othello,1603 devise,3,othello,1603 puts,3,othello,1603 duke's,3,othello,1603 error,3,othello,1603 undone,3,othello,1603 cheque,3,othello,1603 tribe,3,othello,1603 far,3,othello,1603 justice,3,othello,1603 occasion,3,othello,1603 proofs,3,othello,1603 keeps,3,othello,1603 surgeon,3,othello,1603 maid,3,othello,1603 shouldst,3,othello,1603 guiltless,3,othello,1603 water,3,othello,1603 'Zounds,3,othello,1603 wonder,3,othello,1603 deserving,3,othello,1603 bears,3,othello,1603 year,3,othello,1603 Therefore,3,othello,1603 Kissing,3,othello,1603 mouth,3,othello,1603 Turks,3,othello,1603 ere,3,othello,1603 child,3,othello,1603 See,3,othello,1603 effect,3,othello,1603 doors,3,othello,1603 arrived,3,othello,1603 kisses,3,othello,1603 purposes,3,othello,1603 tempest,3,othello,1603 end,3,othello,1603 wrought,3,othello,1603 mass,3,othello,1603 blow,3,othello,1603 labour,3,othello,1603 thief,3,othello,1603 special,3,othello,1603 apart,3,othello,1603 horrible,3,othello,1603 desires,3,othello,1603 breed,3,othello,1603 suspicion,3,othello,1603 former,3,othello,1603 throw,3,othello,1603 court,3,othello,1603 cure,3,othello,1603 import,3,othello,1603 happiness,3,othello,1603 vouch,3,othello,1603 Thus,3,othello,1603 bleed,3,othello,1603 intend,3,othello,1603 pride,3,othello,1603 wanton,3,othello,1603 serve,3,othello,1603 coming,3,othello,1603 Senators,3,othello,1603 takes,3,othello,1603 taken,3,othello,1603 disposition,3,othello,1603 consent,3,othello,1603 dull,3,othello,1603 went,3,othello,1603 stirs,3,othello,1603 whence,3,othello,1603 evil,3,othello,1603 profane,3,othello,1603 minds,3,othello,1603 messengers,3,othello,1603 article,3,othello,1603 grant,3,othello,1603 lodges,3,othello,1603 Sweet,3,othello,1603 Excellent,3,othello,1603 vow,3,othello,1603 rich,3,othello,1603 folly,3,othello,1603 bare,3,othello,1603 practise,3,othello,1603 wives,3,othello,1603 censure,3,othello,1603 fast,3,othello,1603 Welcome,3,othello,1603 falsely,3,othello,1603 wild,3,othello,1603 Every,3,othello,1603 shore,3,othello,1603 accident,3,othello,1603 greet,3,othello,1603 Arise,3,othello,1603 Herald,3,othello,1603 have't,3,othello,1603 commission,3,othello,1603 Ottomites,3,othello,1603 goodness,3,othello,1603 talking,3,othello,1603 troth,3,othello,1603 defend,3,othello,1603 Lie,3,othello,1603 'twixt,3,othello,1603 'twill,3,othello,1603 Know,3,othello,1603 wretched,3,othello,1603 prayer,3,othello,1603 secure,3,othello,1603 self,3,othello,1603 post,3,othello,1603 leg,3,othello,1603 match,3,othello,1603 protest,3,othello,1603 lip,3,othello,1603 triumph,3,othello,1603 Nothing,3,othello,1603 write,3,othello,1603 spite,3,othello,1603 conduct,3,othello,1603 Another,3,othello,1603 met,3,othello,1603 murder'd,3,othello,1603 withdraw,3,othello,1603 sometimes,3,othello,1603 appetite,3,othello,1603 Lend,3,othello,1603 going,3,othello,1603 mouths,3,othello,1603 dark,3,othello,1603 Falls,3,othello,1603 due,3,othello,1603 land,3,othello,1603 reverend,3,othello,1603 gnaw,3,othello,1603 he'll,3,othello,1603 wills,3,othello,1603 smell,3,othello,1603 private,3,othello,1603 justly,3,othello,1603 lack,3,othello,1603 direction,3,othello,1603 wouldst,3,othello,1603 e'er,3,othello,1603 enemy,3,othello,1603 women,3,othello,1603 quality,4,othello,1603 forbid,4,othello,1603 instruments,4,othello,1603 double,4,othello,1603 assured,4,othello,1603 hers,4,othello,1603 spake,4,othello,1603 mere,4,othello,1603 sight,4,othello,1603 drink,4,othello,1603 nought,4,othello,1603 trust,4,othello,1603 care,4,othello,1603 attempt,4,othello,1603 plague,4,othello,1603 seven,4,othello,1603 charms,4,othello,1603 brother,4,othello,1603 trumpet,4,othello,1603 fools,4,othello,1603 walk,4,othello,1603 virtuous,4,othello,1603 nine,4,othello,1603 worth,4,othello,1603 Was,4,othello,1603 counsel,4,othello,1603 looks,4,othello,1603 mother,4,othello,1603 vile,4,othello,1603 worse,4,othello,1603 heavens,4,othello,1603 received,4,othello,1603 born,4,othello,1603 fault,4,othello,1603 falls,4,othello,1603 terms,4,othello,1603 Wherein,4,othello,1603 sun,4,othello,1603 above,4,othello,1603 grow,4,othello,1603 brief,4,othello,1603 malice,4,othello,1603 cuckold,4,othello,1603 anon,4,othello,1603 displeasure,4,othello,1603 parts,4,othello,1603 wherefore,4,othello,1603 morning,4,othello,1603 burning,4,othello,1603 manners,4,othello,1603 Hold,4,othello,1603 tonight,4,othello,1603 deeds,4,othello,1603 canst,4,othello,1603 wisdom,4,othello,1603 IV,4,othello,1603 whole,4,othello,1603 bless,4,othello,1603 husbands,4,othello,1603 bell,4,othello,1603 Save,4,othello,1603 Speak,4,othello,1603 curse,4,othello,1603 story,4,othello,1603 instant,4,othello,1603 wretch,4,othello,1603 Cannot,4,othello,1603 air,4,othello,1603 repent,4,othello,1603 Here's,4,othello,1603 liberal,4,othello,1603 trash,4,othello,1603 torches,4,othello,1603 speed,4,othello,1603 know't,4,othello,1603 damn'd,4,othello,1603 earth,4,othello,1603 moon,4,othello,1603 forgot,4,othello,1603 clink,4,othello,1603 brought,4,othello,1603 discourse,4,othello,1603 Call,4,othello,1603 forth,4,othello,1603 ship,4,othello,1603 apt,4,othello,1603 rogue,4,othello,1603 here's,4,othello,1603 lead,4,othello,1603 room,4,othello,1603 through,4,othello,1603 main,4,othello,1603 Against,4,othello,1603 nose,4,othello,1603 beast,4,othello,1603 rash,4,othello,1603 Lodovico,4,othello,1603 unhappy,4,othello,1603 question,4,othello,1603 conclusion,4,othello,1603 presently,4,othello,1603 brains,4,othello,1603 Being,4,othello,1603 letters,4,othello,1603 Were,4,othello,1603 close,4,othello,1603 opinion,4,othello,1603 salt,4,othello,1603 sake,4,othello,1603 loving,4,othello,1603 you're,4,othello,1603 rise,4,othello,1603 themselves,4,othello,1603 supper,4,othello,1603 villains,4,othello,1603 robb'd,4,othello,1603 wife's,4,othello,1603 Till,4,othello,1603 fie,4,othello,1603 profit,4,othello,1603 ta'en,4,othello,1603 comfort,4,othello,1603 Very,4,othello,1603 Officer,4,othello,1603 witchcraft,4,othello,1603 man's,4,othello,1603 thousand,4,othello,1603 cup,4,othello,1603 green,4,othello,1603 Who's,4,othello,1603 flood,4,othello,1603 approved,4,othello,1603 elements,4,othello,1603 alone,4,othello,1603 condition,4,othello,1603 hours,4,othello,1603 entreat,4,othello,1603 led,4,othello,1603 bade,4,othello,1603 goes,4,othello,1603 spirits,4,othello,1603 warlike,4,othello,1603 abuse,4,othello,1603 thinking,4,othello,1603 Away,4,othello,1603 confess'd,4,othello,1603 beguile,4,othello,1603 last,4,othello,1603 credit,4,othello,1603 besides,4,othello,1603 list,4,othello,1603 sentence,4,othello,1603 laid,4,othello,1603 attend,4,othello,1603 dispatch,4,othello,1603 damn,4,othello,1603 shalt,4,othello,1603 stol'n,4,othello,1603 turn'd,4,othello,1603 pity,5,othello,1603 for't,5,othello,1603 advantage,5,othello,1603 haste,5,othello,1603 lodging,5,othello,1603 while,5,othello,1603 Help,5,othello,1603 understand,5,othello,1603 saved,5,othello,1603 cast,5,othello,1603 song,5,othello,1603 mercy,5,othello,1603 charge,5,othello,1603 After,5,othello,1603 Whose,5,othello,1603 sin,5,othello,1603 Get,5,othello,1603 body,5,othello,1603 she'll,5,othello,1603 raised,5,othello,1603 thieves,5,othello,1603 Our,5,othello,1603 thence,5,othello,1603 Sailor,5,othello,1603 steal,5,othello,1603 cunning,5,othello,1603 spoke,5,othello,1603 each,5,othello,1603 music,5,othello,1603 His,5,othello,1603 neither,5,othello,1603 chaste,5,othello,1603 hopes,5,othello,1603 bad,5,othello,1603 Singing,5,othello,1603 Something,5,othello,1603 approve,5,othello,1603 Let's,5,othello,1603 Had,5,othello,1603 past,5,othello,1603 quiet,5,othello,1603 obey,5,othello,1603 breath,5,othello,1603 citadel,5,othello,1603 left,5,othello,1603 Montano,5,othello,1603 committed,5,othello,1603 lose,5,othello,1603 knew,5,othello,1603 natures,5,othello,1603 harm,5,othello,1603 hard,5,othello,1603 weapon,5,othello,1603 welcome,5,othello,1603 deny,5,othello,1603 She's,5,othello,1603 mock,5,othello,1603 bosom,5,othello,1603 proper,5,othello,1603 fond,5,othello,1603 fresh,5,othello,1603 right,5,othello,1603 Hark,5,othello,1603 touch,5,othello,1603 token,5,othello,1603 new,5,othello,1603 having,5,othello,1603 often,5,othello,1603 Madam,5,othello,1603 moved,5,othello,1603 report,5,othello,1603 slain,5,othello,1603 strike,5,othello,1603 you'll,5,othello,1603 youth,5,othello,1603 awhile,5,othello,1603 freely,5,othello,1603 yours,5,othello,1603 mortal,5,othello,1603 satisfaction,5,othello,1603 dream,5,othello,1603 I'ld,5,othello,1603 devils,5,othello,1603 father's,5,othello,1603 Third,5,othello,1603 ones,5,othello,1603 fire,5,othello,1603 grave,5,othello,1603 win,5,othello,1603 fetch,5,othello,1603 Think,5,othello,1603 Can,5,othello,1603 poison,5,othello,1603 hundred,5,othello,1603 weapons,5,othello,1603 three,5,othello,1603 company,5,othello,1603 married,5,othello,1603 shows,5,othello,1603 herself,5,othello,1603 base,5,othello,1603 gentleman,5,othello,1603 tale,5,othello,1603 talk,5,othello,1603 law,5,othello,1603 given,5,othello,1603 gives,5,othello,1603 swear,5,othello,1603 either,5,othello,1603 courtesy,5,othello,1603 Patience,5,othello,1603 purpose,5,othello,1603 sheets,5,othello,1603 least,5,othello,1603 Messenger,5,othello,1603 street,5,othello,1603 beauty,5,othello,1603 Thy,5,othello,1603 respect,5,othello,1603 obedient,5,othello,1603 Honest,5,othello,1603 is,261,othello,1603 o'er,6,othello,1603 days,6,othello,1603 country,6,othello,1603 following,6,othello,1603 peace,6,othello,1603 joy,6,othello,1603 Never,6,othello,1603 truly,6,othello,1603 damned,6,othello,1603 Upon,6,othello,1603 saw,6,othello,1603 years,6,othello,1603 gross,6,othello,1603 teach,6,othello,1603 noise,6,othello,1603 Rhodes,6,othello,1603 something,6,othello,1603 further,6,othello,1603 she's,6,othello,1603 warrant,6,othello,1603 fleet,6,othello,1603 vice,6,othello,1603 Aside,6,othello,1603 Their,6,othello,1603 second,6,othello,1603 ourselves,6,othello,1603 worst,6,othello,1603 monster,6,othello,1603 Venetian,6,othello,1603 humbly,6,othello,1603 seems,6,othello,1603 One,6,othello,1603 hence,6,othello,1603 wish,6,othello,1603 There's,6,othello,1603 creature,6,othello,1603 On,6,othello,1603 Sing,6,othello,1603 used,6,othello,1603 pains,6,othello,1603 favour,6,othello,1603 needs,6,othello,1603 seeming,6,othello,1603 hands,6,othello,1603 thyself,6,othello,1603 door,6,othello,1603 Yes,6,othello,1603 speaks,6,othello,1603 praise,6,othello,1603 hate,6,othello,1603 show,6,othello,1603 signior,6,othello,1603 Musician,6,othello,1603 Should,6,othello,1603 delicate,6,othello,1603 nay,6,othello,1603 Bianca,6,othello,1603 Dost,6,othello,1603 chair,6,othello,1603 Then,6,othello,1603 let's,6,othello,1603 affairs,6,othello,1603 near,6,othello,1603 says,6,othello,1603 Turkish,6,othello,1603 war,6,othello,1603 happy,6,othello,1603 lust,6,othello,1603 angry,6,othello,1603 That's,6,othello,1603 do't,6,othello,1603 officer,6,othello,1603 perceive,6,othello,1603 fate,6,othello,1603 kiss,6,othello,1603 Lay,6,othello,1603 strong,6,othello,1603 lives,6,othello,1603 satisfied,6,othello,1603 aught,6,othello,1603 seek,6,othello,1603 Pray,6,othello,1603 return,6,othello,1603 send,6,othello,1603 alas,6,othello,1603 together,6,othello,1603 Lieutenant,6,othello,1603 sent,6,othello,1603 sleep,6,othello,1603 mad,6,othello,1603 straight,6,othello,1603 Before,6,othello,1603 on't,6,othello,1603 Indeed,6,othello,1603 suspect,6,othello,1603 follow,6,othello,1603 shame,6,othello,1603 power,6,othello,1603 villany,7,othello,1603 times,7,othello,1603 guard,7,othello,1603 possible,7,othello,1603 tears,7,othello,1603 Would,7,othello,1603 friends,7,othello,1603 town,7,othello,1603 abused,7,othello,1603 offence,7,othello,1603 Out,7,othello,1603 Officers,7,othello,1603 Turk,7,othello,1603 both,7,othello,1603 voice,7,othello,1603 wars,7,othello,1603 side,7,othello,1603 chamber,7,othello,1603 At,7,othello,1603 proof,7,othello,1603 stay,7,othello,1603 to't,7,othello,1603 means,7,othello,1603 pleasure,7,othello,1603 bid,7,othello,1603 play,7,othello,1603 sport,7,othello,1603 monstrous,7,othello,1603 sorry,7,othello,1603 grief,7,othello,1603 behind,7,othello,1603 farewell,7,othello,1603 tongue,7,othello,1603 deed,7,othello,1603 o',7,othello,1603 isle,7,othello,1603 half,7,othello,1603 More,7,othello,1603 call'd,7,othello,1603 ask,7,othello,1603 judgment,7,othello,1603 action,7,othello,1603 high,7,othello,1603 didst,7,othello,1603 same,7,othello,1603 morrow,7,othello,1603 between,7,othello,1603 face,7,othello,1603 next,7,othello,1603 news,7,othello,1603 marry,7,othello,1603 Make,7,othello,1603 please,7,othello,1603 letter,7,othello,1603 word,7,othello,1603 till,7,othello,1603 lay,7,othello,1603 hearts,7,othello,1603 prithee,7,othello,1603 use,7,othello,1603 back,7,othello,1603 seem,7,othello,1603 whom,7,othello,1603 Gentlemen,7,othello,1603 heavenly,7,othello,1603 blame,7,othello,1603 souls,7,othello,1603 ear,7,othello,1603 Signior,7,othello,1603 Marry,7,othello,1603 two,7,othello,1603 strange,7,othello,1603 dog,7,othello,1603 He's,7,othello,1603 certain,7,othello,1603 shake,7,othello,1603 Take,7,othello,1603 command,7,othello,1603 jealousy,7,othello,1603 reputation,8,othello,1603 truth,8,othello,1603 came,8,othello,1603 black,8,othello,1603 doubt,8,othello,1603 These,8,othello,1603 There,8,othello,1603 fellow,8,othello,1603 ancient,8,othello,1603 wine,8,othello,1603 wind,8,othello,1603 soldier,8,othello,1603 wise,8,othello,1603 bold,8,othello,1603 office,8,othello,1603 What's,8,othello,1603 III,8,othello,1603 Her,8,othello,1603 Within,8,othello,1603 II,8,othello,1603 Is't,8,othello,1603 just,8,othello,1603 God,8,othello,1603 ha,8,othello,1603 ay,8,othello,1603 Second,8,othello,1603 Most,8,othello,1603 present,8,othello,1603 revenge,8,othello,1603 change,8,othello,1603 almost,8,othello,1603 foolish,8,othello,1603 mark,8,othello,1603 slave,8,othello,1603 get,8,othello,1603 still,8,othello,1603 heavy,8,othello,1603 believe,8,othello,1603 Heaven,8,othello,1603 duke,8,othello,1603 passion,8,othello,1603 hour,8,othello,1603 hope,8,othello,1603 honesty,8,othello,1603 lips,8,othello,1603 dare,8,othello,1603 kind,8,othello,1603 that,264,othello,1603 told,9,othello,1603 strumpet,9,othello,1603 draw,9,othello,1603 words,9,othello,1603 bound,9,othello,1603 'twas,9,othello,1603 Farewell,9,othello,1603 turn,9,othello,1603 worthy,9,othello,1603 'Faith,9,othello,1603 service,9,othello,1603 masters,9,othello,1603 has,9,othello,1603 patience,9,othello,1603 Go,9,othello,1603 Ha,9,othello,1603 prove,9,othello,1603 valiant,9,othello,1603 whose,9,othello,1603 i',9,othello,1603 part,9,othello,1603 bloody,9,othello,1603 knows,9,othello,1603 once,9,othello,1603 oft,9,othello,1603 off,9,othello,1603 glad,9,othello,1603 old,9,othello,1603 fit,9,othello,1603 ne'er,9,othello,1603 day,9,othello,1603 home,9,othello,1603 thank,9,othello,1603 madam,9,othello,1603 virtue,9,othello,1603 hurt,9,othello,1603 Did,9,othello,1603 spirit,9,othello,1603 himself,9,othello,1603 answer,10,othello,1603 Give,10,othello,1603 head,10,othello,1603 enough,10,othello,1603 sea,10,othello,1603 sword,10,othello,1603 itself,10,othello,1603 whore,10,othello,1603 weep,10,othello,1603 down,10,othello,1603 Prithee,10,othello,1603 long,10,othello,1603 castle,10,othello,1603 Cassio's,10,othello,1603 gentle,10,othello,1603 Sir,10,othello,1603 young,10,othello,1603 already,10,othello,1603 All,10,othello,1603 there's,10,othello,1603 Shall,10,othello,1603 fall,10,othello,1603 fortune,10,othello,1603 Brabantio,10,othello,1603 is't,10,othello,1603 gentlemen,10,othello,1603 pardon,10,othello,1603 drunk,10,othello,1603 May,10,othello,1603 kill,10,othello,1603 fortunes,10,othello,1603 it,266,othello,1603 hell,11,othello,1603 purse,11,othello,1603 Othello's,11,othello,1603 another,11,othello,1603 suit,11,othello,1603 honour,11,othello,1603 he's,11,othello,1603 name,11,othello,1603 An,11,othello,1603 sail,11,othello,1603 those,11,othello,1603 act,11,othello,1603 Have,11,othello,1603 faith,11,othello,1603 eye,11,othello,1603 things,11,othello,1603 From,11,othello,1603 mind,11,othello,1603 known,11,othello,1603 thine,11,othello,1603 why,11,othello,1603 duty,11,othello,1603 what's,11,othello,1603 Michael,11,othello,1603 house,11,othello,1603 lie,11,othello,1603 makes,11,othello,1603 without,11,othello,1603 meet,12,othello,1603 speech,12,othello,1603 business,12,othello,1603 rather,12,othello,1603 lies,12,othello,1603 death,12,othello,1603 set,12,othello,1603 within,12,othello,1603 kill'd,12,othello,1603 murder,12,othello,1603 confess,12,othello,1603 Emilia,12,othello,1603 loves,12,othello,1603 loved,12,othello,1603 grace,12,othello,1603 fool,12,othello,1603 Hath,12,othello,1603 watch,12,othello,1603 none,12,othello,1603 Some,12,othello,1603 knave,12,othello,1603 wit,12,othello,1603 reason,12,othello,1603 eyes,12,othello,1603 hither,12,othello,1603 content,12,othello,1603 full,13,othello,1603 Attendants,13,othello,1603 after,13,othello,1603 about,13,othello,1603 Though,13,othello,1603 mean,13,othello,1603 else,13,othello,1603 Be,13,othello,1603 We,13,othello,1603 jealous,13,othello,1603 keep,13,othello,1603 course,13,othello,1603 Your,13,othello,1603 stand,13,othello,1603 beseech,13,othello,1603 Even,13,othello,1603 live,13,othello,1603 call,14,othello,1603 Who,14,othello,1603 better,14,othello,1603 against,14,othello,1603 wrong,14,othello,1603 bring,14,othello,1603 blood,14,othello,1603 dead,14,othello,1603 does,14,othello,1603 money,14,othello,1603 though,14,othello,1603 Than,14,othello,1603 work,14,othello,1603 seen,14,othello,1603 thoughts,14,othello,1603 father,14,othello,1603 nature,14,othello,1603 Senator,14,othello,1603 die,14,othello,1603 Will,15,othello,1603 every,15,othello,1603 Nor,15,othello,1603 cause,15,othello,1603 daughter,15,othello,1603 Here,15,othello,1603 enter,15,othello,1603 gone,15,othello,1603 Re,15,othello,1603 doth,15,othello,1603 dear,15,othello,1603 Are,15,othello,1603 ACT,15,othello,1603 Look,15,othello,1603 many,15,othello,1603 cry,15,othello,1603 first,15,othello,1603 might,15,othello,1603 willow,16,othello,1603 life,16,othello,1603 yourself,16,othello,1603 therefore,16,othello,1603 said,16,othello,1603 bear,16,othello,1603 They,16,othello,1603 free,16,othello,1603 before,16,othello,1603 heard,16,othello,1603 poor,16,othello,1603 being,16,othello,1603 Where,16,othello,1603 SCENE,16,othello,1603 woman,16,othello,1603 ',17,othello,1603 mistress,17,othello,1603 villain,17,othello,1603 false,17,othello,1603 friend,17,othello,1603 Which,17,othello,1603 best,17,othello,1603 gave,17,othello,1603 Yet,17,othello,1603 foul,17,othello,1603 state,17,othello,1603 Well,17,othello,1603 way,17,othello,1603 hold,17,othello,1603 leave,17,othello,1603 help,18,othello,1603 sure,18,othello,1603 sense,18,othello,1603 that's,18,othello,1603 hast,18,othello,1603 made,18,othello,1603 into,18,othello,1603 Thou,18,othello,1603 could,18,othello,1603 Alas,19,othello,1603 Now,19,othello,1603 Not,19,othello,1603 fear,19,othello,1603 lost,19,othello,1603 myself,19,othello,1603 who,19,othello,1603 thing,19,othello,1603 Venice,19,othello,1603 found,19,othello,1603 Clown,19,othello,1603 Gentleman,19,othello,1603 thought,20,othello,1603 devil,20,othello,1603 little,20,othello,1603 mine,20,othello,1603 find,20,othello,1603 sweet,20,othello,1603 lady,20,othello,1603 Nay,21,othello,1603 light,21,othello,1603 tell,21,othello,1603 look,21,othello,1603 noble,21,othello,1603 First,21,othello,1603 art,21,othello,1603 When,21,othello,1603 pray,22,othello,1603 BIANCA,22,othello,1603 been,22,othello,1603 husband,22,othello,1603 where,22,othello,1603 comes,22,othello,1603 fair,22,othello,1603 even,22,othello,1603 take,22,othello,1603 nothing,23,othello,1603 away,23,othello,1603 bed,23,othello,1603 dost,23,othello,1603 great,23,othello,1603 men,23,othello,1603 other,23,othello,1603 these,24,othello,1603 Good,24,othello,1603 lieutenant,24,othello,1603 like,25,othello,1603 hear,25,othello,1603 matter,25,othello,1603 By,25,othello,1603 Exeunt,25,othello,1603 done,25,othello,1603 ho,25,othello,1603 indeed,25,othello,1603 me,281,othello,1603 world,26,othello,1603 GRATIANO,26,othello,1603 Othello,26,othello,1603 place,26,othello,1603 hand,26,othello,1603 Roderigo,27,othello,1603 With,27,othello,1603 Ay,27,othello,1603 OF,27,othello,1603 Of,27,othello,1603 can,27,othello,1603 So,27,othello,1603 heart,27,othello,1603 VENICE,27,othello,1603 thus,27,othello,1603 true,27,othello,1603 cannot,27,othello,1603 No,28,othello,1603 Cyprus,28,othello,1603 DUKE,28,othello,1603 Let,28,othello,1603 Or,29,othello,1603 general,29,othello,1603 This,29,othello,1603 handkerchief,29,othello,1603 own,29,othello,1603 ever,29,othello,1603 time,29,othello,1603 which,30,othello,1603 In,30,othello,1603 Is,30,othello,1603 any,30,othello,1603 how,30,othello,1603 up,30,othello,1603 Come,31,othello,1603 MONTANO,31,othello,1603 Do,31,othello,1603 put,31,othello,1603 too,31,othello,1603 much,32,othello,1603 soul,32,othello,1603 give,32,othello,1603 were,32,othello,1603 when,32,othello,1603 than,34,othello,1603 never,34,othello,1603 us,34,othello,1603 Exit,34,othello,1603 nor,35,othello,1603 wife,36,othello,1603 She,37,othello,1603 BRABANTIO,37,othello,1603 we,38,othello,1603 again,38,othello,1603 'Tis,38,othello,1603 honest,38,othello,1603 You,39,othello,1603 see,40,othello,1603 LODOVICO,40,othello,1603 very,40,othello,1603 Desdemona,41,othello,1603 should,41,othello,1603 their,42,othello,1603 there,43,othello,1603 IAGO,299,othello,1603 an,44,othello,1603 let,44,othello,1603 not,300,othello,1603 upon,46,othello,1603 sir,46,othello,1603 'tis,46,othello,1603 make,46,othello,1603 our,46,othello,1603 them,47,othello,1603 speak,47,othello,1603 man,47,othello,1603 then,48,othello,1603 most,48,othello,1603 Enter,48,othello,1603 Why,49,othello,1603 may,49,othello,1603 one,50,othello,1603 He,51,othello,1603 It,51,othello,1603 heaven,52,othello,1603 yet,52,othello,1603 out,52,othello,1603 A,53,othello,1603 had,53,othello,1603 How,53,othello,1603 come,53,othello,1603 in,309,othello,1603 night,54,othello,1603 go,54,othello,1603 As,55,othello,1603 hath,55,othello,1603 here,56,othello,1603 I'll,56,othello,1603 must,57,othello,1603 Moor,57,othello,1603 OTHELLO,313,othello,1603 they,58,othello,1603 or,58,othello,1603 some,59,othello,1603 My,59,othello,1603 think,60,othello,1603 I,828,othello,1603 did,61,othello,1603 Iago,62,othello,1603 at,63,othello,1603 know,63,othello,1603 well,64,othello,1603 say,65,othello,1603 such,65,othello,1603 more,65,othello,1603 For,66,othello,1603 from,66,othello,1603 was,66,othello,1603 If,67,othello,1603 good,68,othello,1603 if,71,othello,1603 would,72,othello,1603 thy,74,othello,1603 no,75,othello,1603 what,75,othello,1603 thee,76,othello,1603 RODERIGO,77,othello,1603 love,78,othello,1603 and,596,othello,1603 by,85,othello,1603 all,85,othello,1603 now,86,othello,1603 shall,86,othello,1603 The,87,othello,1603 lord,89,othello,1603 But,89,othello,1603 am,90,othello,1603 are,94,othello,1603 What,103,othello,1603 on,108,othello,1603 That,108,othello,1603 my,368,othello,1603 Cassio,113,othello,1603 as,116,othello,1603 she,118,othello,1603 To,123,othello,1603 thou,124,othello,1603 EMILIA,126,othello,1603 CASSIO,131,othello,1603 but,133,othello,1603 so,135,othello,1603 will,137,othello,1603 a,397,othello,1603 O,146,othello,1603 his,162,othello,1603 the,674,othello,1603 of,420,othello,1603 for,169,othello,1603 he,173,othello,1603 do,184,othello,1603 DESDEMONA,186,othello,1603 him,187,othello,1603 you,444,othello,1603 this,192,othello,1603 have,193,othello,1603 your,194,othello,1603 with,195,othello,1603 And,199,othello,1603 her,208,othello,1603 be,210,othello,1603 to,502,othello,1603 LVII,1,sonnets,0 augurs,1,sonnets,0 dimm'd,1,sonnets,0 plagues,1,sonnets,0 treason,1,sonnets,0 surmise,1,sonnets,0 heed,1,sonnets,0 Unthrifty,1,sonnets,0 quality,1,sonnets,0 wherever,1,sonnets,0 C,1,sonnets,0 L,1,sonnets,0 imaginary,1,sonnets,0 H,1,sonnets,0 relief,1,sonnets,0 W,1,sonnets,0 V,1,sonnets,0 advised,1,sonnets,0 grey,1,sonnets,0 X,1,sonnets,0 glazed,1,sonnets,0 happies,1,sonnets,0 rebuked,1,sonnets,0 gardens,1,sonnets,0 misplaced,1,sonnets,0 mistaking,1,sonnets,0 enjoyer,1,sonnets,0 disarm'd,1,sonnets,0 dyer's,1,sonnets,0 Proud,1,sonnets,0 lips',1,sonnets,0 extremity,1,sonnets,0 unions,1,sonnets,0 drop,1,sonnets,0 afar,1,sonnets,0 HAPPINESS,1,sonnets,0 interchange,1,sonnets,0 composition,1,sonnets,0 guilt,1,sonnets,0 for't,1,sonnets,0 unrest,1,sonnets,0 tops,1,sonnets,0 complexion'd,1,sonnets,0 votary,1,sonnets,0 wish'd,1,sonnets,0 watchman,1,sonnets,0 burn'd,1,sonnets,0 brightness,1,sonnets,0 reign'd,1,sonnets,0 fuel,1,sonnets,0 alike,1,sonnets,0 spends,1,sonnets,0 travail,1,sonnets,0 youngly,1,sonnets,0 Join,1,sonnets,0 CXLIII,1,sonnets,0 torn,1,sonnets,0 EVER,1,sonnets,0 female,1,sonnets,0 brows,1,sonnets,0 pitying,1,sonnets,0 adding,1,sonnets,0 Whether,1,sonnets,0 sympathized,1,sonnets,0 bones,1,sonnets,0 purge,1,sonnets,0 possesseth,1,sonnets,0 o'ertake,1,sonnets,0 robe,1,sonnets,0 hems,1,sonnets,0 suppose,1,sonnets,0 esteeming,1,sonnets,0 impeach'd,1,sonnets,0 steals,1,sonnets,0 rents,1,sonnets,0 Wilt,1,sonnets,0 Bear,1,sonnets,0 day's,1,sonnets,0 maturity,1,sonnets,0 assistance,1,sonnets,0 space,1,sonnets,0 epitaph,1,sonnets,0 testy,1,sonnets,0 endless,1,sonnets,0 rather,1,sonnets,0 Disdains,1,sonnets,0 Never,1,sonnets,0 wailing,1,sonnets,0 whereupon,1,sonnets,0 clears,1,sonnets,0 moiety,1,sonnets,0 oaths',1,sonnets,0 alien,1,sonnets,0 warning,1,sonnets,0 Weeds,1,sonnets,0 duteous,1,sonnets,0 April's,1,sonnets,0 season'd,1,sonnets,0 exceeds,1,sonnets,0 miss'd,1,sonnets,0 pray,1,sonnets,0 Tell,1,sonnets,0 drowns,1,sonnets,0 writes,1,sonnets,0 Nativity,1,sonnets,0 darkness,1,sonnets,0 CXXIV,1,sonnets,0 CXXIX,1,sonnets,0 uphold,1,sonnets,0 finger,1,sonnets,0 Despite,1,sonnets,0 CXXII,1,sonnets,0 imitate,1,sonnets,0 herd,1,sonnets,0 wherewith,1,sonnets,0 Either,1,sonnets,0 celestial,1,sonnets,0 hate's,1,sonnets,0 disease,1,sonnets,0 prisoner,1,sonnets,0 sighs,1,sonnets,0 XXVII,1,sonnets,0 learn'd,1,sonnets,0 Beshrew,1,sonnets,0 executor,1,sonnets,0 brood,1,sonnets,0 hearted,1,sonnets,0 'cide,1,sonnets,0 Angry,1,sonnets,0 Cries,1,sonnets,0 rid,1,sonnets,0 naked,1,sonnets,0 registers,1,sonnets,0 forbidden,1,sonnets,0 advance,1,sonnets,0 blanks,1,sonnets,0 feeds,1,sonnets,0 succession,1,sonnets,0 maintain,1,sonnets,0 declines,1,sonnets,0 praising,1,sonnets,0 themes,1,sonnets,0 flow,1,sonnets,0 richly,1,sonnets,0 Helen's,1,sonnets,0 fury,1,sonnets,0 drink,1,sonnets,0 appeal,1,sonnets,0 stretched,1,sonnets,0 derive,1,sonnets,0 withal,1,sonnets,0 signs,1,sonnets,0 pied,1,sonnets,0 suggest,1,sonnets,0 teachest,1,sonnets,0 LXXVIII,1,sonnets,0 commence,1,sonnets,0 Wound,1,sonnets,0 garments',1,sonnets,0 blunter,1,sonnets,0 advocate,1,sonnets,0 cheap,1,sonnets,0 swerving,1,sonnets,0 dreaming,1,sonnets,0 press,1,sonnets,0 run,1,sonnets,0 pleasures,1,sonnets,0 stamp'd,1,sonnets,0 contrary,1,sonnets,0 OUR,1,sonnets,0 insults,1,sonnets,0 orphans,1,sonnets,0 Whom,1,sonnets,0 wounded,1,sonnets,0 impute,1,sonnets,0 become,1,sonnets,0 tyrannous,1,sonnets,0 goest,1,sonnets,0 descriptions,1,sonnets,0 bower,1,sonnets,0 curious,1,sonnets,0 climb'd,1,sonnets,0 XXI,1,sonnets,0 saved,1,sonnets,0 deservest,1,sonnets,0 XXX,1,sonnets,0 loathsome,1,sonnets,0 case,1,sonnets,0 XXV,1,sonnets,0 early,1,sonnets,0 CVII,1,sonnets,0 fleets,1,sonnets,0 departest,1,sonnets,0 worser,1,sonnets,0 Exceeded,1,sonnets,0 breach,1,sonnets,0 WELL,1,sonnets,0 successive,1,sonnets,0 inheritors,1,sonnets,0 Poor,1,sonnets,0 mercy,1,sonnets,0 tiger's,1,sonnets,0 XVI,1,sonnets,0 VIII,1,sonnets,0 charge,1,sonnets,0 counted,1,sonnets,0 graced,1,sonnets,0 surfeit,1,sonnets,0 wreckful,1,sonnets,0 sadly,1,sonnets,0 spies,1,sonnets,0 slept,1,sonnets,0 Weighs,1,sonnets,0 sole,1,sonnets,0 sold,1,sonnets,0 sap,1,sonnets,0 befits,1,sonnets,0 Excuse,1,sonnets,0 bearing,1,sonnets,0 closure,1,sonnets,0 scarlet,1,sonnets,0 backward,1,sonnets,0 inhabit,1,sonnets,0 hammer'd,1,sonnets,0 silver'd,1,sonnets,0 unswept,1,sonnets,0 crying,1,sonnets,0 endow'd,1,sonnets,0 mind's,1,sonnets,0 broken,1,sonnets,0 assemble,1,sonnets,0 Perforce,1,sonnets,0 lily,1,sonnets,0 boldness,1,sonnets,0 THESE,1,sonnets,0 deceivest,1,sonnets,0 proceeds,1,sonnets,0 succeeding,1,sonnets,0 afterwards,1,sonnets,0 plight,1,sonnets,0 patent,1,sonnets,0 function,1,sonnets,0 toward,1,sonnets,0 Triumph,1,sonnets,0 worthier,1,sonnets,0 cheer,1,sonnets,0 sheaves,1,sonnets,0 offenders,1,sonnets,0 Only,1,sonnets,0 voices,1,sonnets,0 Forgot,1,sonnets,0 madness,1,sonnets,0 shadow's,1,sonnets,0 soil,1,sonnets,0 paper,1,sonnets,0 pipe,1,sonnets,0 eclipse,1,sonnets,0 hanging,1,sonnets,0 rider,1,sonnets,0 beseem,1,sonnets,0 likeness,1,sonnets,0 judgment's,1,sonnets,0 came,1,sonnets,0 fools,1,sonnets,0 Beauty's,1,sonnets,0 soft,1,sonnets,0 Methinks,1,sonnets,0 assail'd,1,sonnets,0 freedom,1,sonnets,0 purity,1,sonnets,0 XIX,1,sonnets,0 XIV,1,sonnets,0 lesser,1,sonnets,0 overturn,1,sonnets,0 widow's,1,sonnets,0 Coral,1,sonnets,0 limits,1,sonnets,0 widow'd,1,sonnets,0 admiring,1,sonnets,0 Gentle,1,sonnets,0 Supposed,1,sonnets,0 blesses,1,sonnets,0 stealth,1,sonnets,0 owners,1,sonnets,0 deserve,1,sonnets,0 discloses,1,sonnets,0 pursuing,1,sonnets,0 shamed,1,sonnets,0 XLI,1,sonnets,0 sunk,1,sonnets,0 embassy,1,sonnets,0 erst,1,sonnets,0 throned,1,sonnets,0 spheres,1,sonnets,0 whatsoever,1,sonnets,0 soundless,1,sonnets,0 boat,1,sonnets,0 proclaims,1,sonnets,0 XLV,1,sonnets,0 history,1,sonnets,0 sums,1,sonnets,0 sunset,1,sonnets,0 bound,1,sonnets,0 fleece,1,sonnets,0 wantonly,1,sonnets,0 LXXXI,1,sonnets,0 vial,1,sonnets,0 Uttering,1,sonnets,0 Suns,1,sonnets,0 beseige,1,sonnets,0 Beyond,1,sonnets,0 paying,1,sonnets,0 key,1,sonnets,0 ages,1,sonnets,0 laugh'd,1,sonnets,0 penance,1,sonnets,0 sweet'st,1,sonnets,0 tenants,1,sonnets,0 eager,1,sonnets,0 subdued,1,sonnets,0 Crooked,1,sonnets,0 Lifts,1,sonnets,0 Tempteth,1,sonnets,0 'scoped,1,sonnets,0 walk,1,sonnets,0 saying,1,sonnets,0 sunken,1,sonnets,0 vice,1,sonnets,0 Creating,1,sonnets,0 Herein,1,sonnets,0 reproving,1,sonnets,0 seals,1,sonnets,0 wake,1,sonnets,0 correspondence,1,sonnets,0 society,1,sonnets,0 Praising,1,sonnets,0 Deserves,1,sonnets,0 famish'd,1,sonnets,0 prognosticate,1,sonnets,0 LXXXV,1,sonnets,0 XII,1,sonnets,0 disabled,1,sonnets,0 disposed,1,sonnets,0 abused,1,sonnets,0 nine,1,sonnets,0 score,1,sonnets,0 actor,1,sonnets,0 favourites,1,sonnets,0 nymphs,1,sonnets,0 lesson,1,sonnets,0 XCI,1,sonnets,0 windy,1,sonnets,0 delivers,1,sonnets,0 scorn'd,1,sonnets,0 limbecks,1,sonnets,0 Spend'st,1,sonnets,0 abuses,1,sonnets,0 salve,1,sonnets,0 attainted,1,sonnets,0 children's,1,sonnets,0 records,1,sonnets,0 unear'd,1,sonnets,0 Farewell,1,sonnets,0 raised,1,sonnets,0 famoused,1,sonnets,0 gazers,1,sonnets,0 outstripp'd,1,sonnets,0 looking,1,sonnets,0 fangled,1,sonnets,0 XCV,1,sonnets,0 pictured,1,sonnets,0 countenance,1,sonnets,0 Their,1,sonnets,0 refusest,1,sonnets,0 Points,1,sonnets,0 gazeth,1,sonnets,0 glutton,1,sonnets,0 livery,1,sonnets,0 imitated,1,sonnets,0 permit,1,sonnets,0 hunted,1,sonnets,0 middle,1,sonnets,0 sky,1,sonnets,0 groans,1,sonnets,0 XLII,1,sonnets,0 Music,1,sonnets,0 lambs,1,sonnets,0 dearths,1,sonnets,0 polish'd,1,sonnets,0 XLIV,1,sonnets,0 niggarding,1,sonnets,0 XLIX,1,sonnets,0 Plods,1,sonnets,0 doubt,1,sonnets,0 XCII,1,sonnets,0 league,1,sonnets,0 refigured,1,sonnets,0 war's,1,sonnets,0 hearsay,1,sonnets,0 supposing,1,sonnets,0 bough,1,sonnets,0 XCIV,1,sonnets,0 dearth,1,sonnets,0 XCIX,1,sonnets,0 play'd,1,sonnets,0 o'ersnow'd,1,sonnets,0 adverse,1,sonnets,0 suffered,1,sonnets,0 forwards,1,sonnets,0 savour,1,sonnets,0 vassalage,1,sonnets,0 WISHING,1,sonnets,0 Sweets,1,sonnets,0 Gored,1,sonnets,0 CXLVIII,1,sonnets,0 minion,1,sonnets,0 appetites,1,sonnets,0 sharp'st,1,sonnets,0 suppress'd,1,sonnets,0 reap,1,sonnets,0 Needs,1,sonnets,0 thrusts,1,sonnets,0 felt,1,sonnets,0 broils,1,sonnets,0 eating,1,sonnets,0 miscall'd,1,sonnets,0 XCVI,1,sonnets,0 compound,1,sonnets,0 redeem,1,sonnets,0 fullness,1,sonnets,0 snow,1,sonnets,0 Harsh,1,sonnets,0 granting,1,sonnets,0 Commit,1,sonnets,0 confounded,1,sonnets,0 twilight,1,sonnets,0 Muses,1,sonnets,0 builded,1,sonnets,0 transfix,1,sonnets,0 LXIII,1,sonnets,0 estimate,1,sonnets,0 tempting,1,sonnets,0 Askance,1,sonnets,0 habit,1,sonnets,0 figure,1,sonnets,0 civil,1,sonnets,0 kill'd,1,sonnets,0 bliss,1,sonnets,0 Whereon,1,sonnets,0 falls,1,sonnets,0 churls,1,sonnets,0 runs,1,sonnets,0 Crowning,1,sonnets,0 decrease,1,sonnets,0 detain,1,sonnets,0 terms,1,sonnets,0 ruminate,1,sonnets,0 dearly,1,sonnets,0 cherish,1,sonnets,0 Wooing,1,sonnets,0 INSUING,1,sonnets,0 subtleties,1,sonnets,0 worths,1,sonnets,0 fruit,1,sonnets,0 latch,1,sonnets,0 tallies,1,sonnets,0 flatterer,1,sonnets,0 pearl,1,sonnets,0 tribes,1,sonnets,0 Beggar'd,1,sonnets,0 recite,1,sonnets,0 sue,1,sonnets,0 mouthed,1,sonnets,0 cries,1,sonnets,0 physicians,1,sonnets,0 about,1,sonnets,0 ruth,1,sonnets,0 elder,1,sonnets,0 abundant,1,sonnets,0 frown'st,1,sonnets,0 oblation,1,sonnets,0 beseechers,1,sonnets,0 Hers,1,sonnets,0 feed,1,sonnets,0 fearful,1,sonnets,0 Want,1,sonnets,0 cease,1,sonnets,0 promise,1,sonnets,0 beaten,1,sonnets,0 directed,1,sonnets,0 service,1,sonnets,0 costly,1,sonnets,0 sword,1,sonnets,0 bases,1,sonnets,0 Profitless,1,sonnets,0 Betwixt,1,sonnets,0 marigold,1,sonnets,0 'Now,1,sonnets,0 choose,1,sonnets,0 wing,1,sonnets,0 lion's,1,sonnets,0 memorial,1,sonnets,0 youth's,1,sonnets,0 prevent,1,sonnets,0 ceremony,1,sonnets,0 ward,1,sonnets,0 infant's,1,sonnets,0 Hence,1,sonnets,0 CXXVI,1,sonnets,0 knights,1,sonnets,0 tender'd,1,sonnets,0 Might,1,sonnets,0 wane,1,sonnets,0 seems,1,sonnets,0 Vaunt,1,sonnets,0 wardrobe,1,sonnets,0 rent,1,sonnets,0 usury,1,sonnets,0 foist,1,sonnets,0 salving,1,sonnets,0 Duty,1,sonnets,0 Suspect,1,sonnets,0 hated,1,sonnets,0 dies,1,sonnets,0 Simply,1,sonnets,0 trifles,1,sonnets,0 renew,1,sonnets,0 CXXXI,1,sonnets,0 subsist,1,sonnets,0 surmount,1,sonnets,0 translated,1,sonnets,0 seest,1,sonnets,0 anon,1,sonnets,0 yellow'd,1,sonnets,0 drain'd,1,sonnets,0 directly,1,sonnets,0 usest,1,sonnets,0 ensconce,1,sonnets,0 accuse,1,sonnets,0 wander'st,1,sonnets,0 Authorizing,1,sonnets,0 wiry,1,sonnets,0 summon,1,sonnets,0 warm,1,sonnets,0 voice,1,sonnets,0 bond,1,sonnets,0 wary,1,sonnets,0 spites,1,sonnets,0 incertainty,1,sonnets,0 office,1,sonnets,0 mistake,1,sonnets,0 boot,1,sonnets,0 LXIV,1,sonnets,0 consecrate,1,sonnets,0 LXIX,1,sonnets,0 LXII,1,sonnets,0 Blessed,1,sonnets,0 CXXXV,1,sonnets,0 suborn'd,1,sonnets,0 party,1,sonnets,0 meetness,1,sonnets,0 XXXVIII,1,sonnets,0 verdict,1,sonnets,0 distraction,1,sonnets,0 substantial,1,sonnets,0 intelligence,1,sonnets,0 unbless,1,sonnets,0 astonished,1,sonnets,0 grief's,1,sonnets,0 aspect,1,sonnets,0 he's,1,sonnets,0 feather'd,1,sonnets,0 big,1,sonnets,0 senses,1,sonnets,0 stewards,1,sonnets,0 enlarged,1,sonnets,0 LXXXVII,1,sonnets,0 scandal,1,sonnets,0 engraft,1,sonnets,0 authority,1,sonnets,0 grind,1,sonnets,0 life's,1,sonnets,0 define,1,sonnets,0 outbraves,1,sonnets,0 enfeebled,1,sonnets,0 burning,1,sonnets,0 drown,1,sonnets,0 leases,1,sonnets,0 XVII,1,sonnets,0 mortality,1,sonnets,0 Leaving,1,sonnets,0 melancholy,1,sonnets,0 waken'd,1,sonnets,0 hap,1,sonnets,0 Dulling,1,sonnets,0 drudge,1,sonnets,0 overthrow,1,sonnets,0 perspective,1,sonnets,0 potions,1,sonnets,0 Drawn,1,sonnets,0 refuse,1,sonnets,0 offend,1,sonnets,0 serving,1,sonnets,0 twire,1,sonnets,0 streams,1,sonnets,0 sigh,1,sonnets,0 compeers,1,sonnets,0 CXVII,1,sonnets,0 III,1,sonnets,0 chronicle,1,sonnets,0 religious,1,sonnets,0 BY,1,sonnets,0 delights,1,sonnets,0 resemble,1,sonnets,0 presagers,1,sonnets,0 Slandering,1,sonnets,0 Pitiful,1,sonnets,0 Am,1,sonnets,0 spoil,1,sonnets,0 An,1,sonnets,0 CX,1,sonnets,0 CXXX,1,sonnets,0 CV,1,sonnets,0 wood's,1,sonnets,0 CXXV,1,sonnets,0 depend,1,sonnets,0 surety,1,sonnets,0 slander'd,1,sonnets,0 neither,1,sonnets,0 CI,1,sonnets,0 chaste,1,sonnets,0 informer,1,sonnets,0 CXXI,1,sonnets,0 slander's,1,sonnets,0 balmy,1,sonnets,0 CL,1,sonnets,0 LV,1,sonnets,0 suffers,1,sonnets,0 sequent,1,sonnets,0 LX,1,sonnets,0 refined,1,sonnets,0 million'd,1,sonnets,0 desperate,1,sonnets,0 Drink,1,sonnets,0 MR,1,sonnets,0 prone,1,sonnets,0 warrior,1,sonnets,0 O',1,sonnets,0 bay,1,sonnets,0 siege,1,sonnets,0 Philomel,1,sonnets,0 XXXIX,1,sonnets,0 bar,1,sonnets,0 XXXIV,1,sonnets,0 tann'd,1,sonnets,0 blots,1,sonnets,0 Unlearned,1,sonnets,0 OF,1,sonnets,0 gainer,1,sonnets,0 creature,1,sonnets,0 beautiful,1,sonnets,0 exceed,1,sonnets,0 denied,1,sonnets,0 prevent'st,1,sonnets,0 pitied,1,sonnets,0 translate,1,sonnets,0 sings,1,sonnets,0 paws,1,sonnets,0 inhearse,1,sonnets,0 wisdom,1,sonnets,0 prophecies,1,sonnets,0 ashes,1,sonnets,0 habitation,1,sonnets,0 tear,1,sonnets,0 medicine,1,sonnets,0 II,1,sonnets,0 delves,1,sonnets,0 IN,1,sonnets,0 miser,1,sonnets,0 kinds,1,sonnets,0 meant,1,sonnets,0 IV,1,sonnets,0 ills,1,sonnets,0 IX,1,sonnets,0 whole,1,sonnets,0 ambush,1,sonnets,0 deserved,1,sonnets,0 XXXII,1,sonnets,0 arrest,1,sonnets,0 east,1,sonnets,0 prizing,1,sonnets,0 bid,1,sonnets,0 faring,1,sonnets,0 Robb'd,1,sonnets,0 impregnable,1,sonnets,0 enrich,1,sonnets,0 condemned,1,sonnets,0 hides,1,sonnets,0 LI,1,sonnets,0 'hues',1,sonnets,0 stem,1,sonnets,0 fadeth,1,sonnets,0 changes,1,sonnets,0 'thou,1,sonnets,0 Is't,1,sonnets,0 glorious,1,sonnets,0 anchor'd,1,sonnets,0 VI,1,sonnets,0 revenues,1,sonnets,0 unbred,1,sonnets,0 sire,1,sonnets,0 Seems,1,sonnets,0 quiet,1,sonnets,0 badges,1,sonnets,0 'Amen',1,sonnets,0 Thence,1,sonnets,0 titles,1,sonnets,0 doubting,1,sonnets,0 critic,1,sonnets,0 theft,1,sonnets,0 summers',1,sonnets,0 trimm'd,1,sonnets,0 CXLV,1,sonnets,0 XV,1,sonnets,0 sought,1,sonnets,0 plants,1,sonnets,0 CXLI,1,sonnets,0 XI,1,sonnets,0 Compare,1,sonnets,0 XL,1,sonnets,0 XC,1,sonnets,0 quenched,1,sonnets,0 iniquity,1,sonnets,0 We,1,sonnets,0 divide,1,sonnets,0 wrinkle,1,sonnets,0 sits,1,sonnets,0 sorry,1,sonnets,0 writers,1,sonnets,0 tongue's,1,sonnets,0 busy,1,sonnets,0 thriftless,1,sonnets,0 CXIX,1,sonnets,0 CXIV,1,sonnets,0 untold,1,sonnets,0 rebel,1,sonnets,0 CXII,1,sonnets,0 dove,1,sonnets,0 difference,1,sonnets,0 bell,1,sonnets,0 awards,1,sonnets,0 goodly,1,sonnets,0 car,1,sonnets,0 XLVI,1,sonnets,0 Oaths,1,sonnets,0 hymn,1,sonnets,0 TO,1,sonnets,0 children,1,sonnets,0 warrantize,1,sonnets,0 struck,1,sonnets,0 enclose,1,sonnets,0 pry,1,sonnets,0 defects,1,sonnets,0 devised,1,sonnets,0 CXVI,1,sonnets,0 disperse,1,sonnets,0 unsway'd,1,sonnets,0 jealous,1,sonnets,0 heals,1,sonnets,0 cancell'd,1,sonnets,0 monuments,1,sonnets,0 Lascivious,1,sonnets,0 Death's,1,sonnets,0 legacy,1,sonnets,0 tickled,1,sonnets,0 Book,1,sonnets,0 forget'st,1,sonnets,0 eclipses,1,sonnets,0 embassage,1,sonnets,0 LXVIII,1,sonnets,0 prick'd,1,sonnets,0 transport,1,sonnets,0 keep'st,1,sonnets,0 gaol,1,sonnets,0 delay'd,1,sonnets,0 Feeding,1,sonnets,0 deformed'st,1,sonnets,0 Holds,1,sonnets,0 ruinate,1,sonnets,0 Sing,1,sonnets,0 merchandized,1,sonnets,0 Showing,1,sonnets,0 forgetful,1,sonnets,0 moods,1,sonnets,0 Above,1,sonnets,0 gather'd,1,sonnets,0 frowns,1,sonnets,0 preserve,1,sonnets,0 O'er,1,sonnets,0 XXXVI,1,sonnets,0 admired,1,sonnets,0 Whate'er,1,sonnets,0 XX,1,sonnets,0 SETTING,1,sonnets,0 gate,1,sonnets,0 jump,1,sonnets,0 unfather'd,1,sonnets,0 dwellers,1,sonnets,0 ruining,1,sonnets,0 owest,1,sonnets,0 immortal,1,sonnets,0 resort,1,sonnets,0 acceptance,1,sonnets,0 engross'd,1,sonnets,0 importune,1,sonnets,0 crowned,1,sonnets,0 Shifts,1,sonnets,0 begin,1,sonnets,0 abysm,1,sonnets,0 CLIII,1,sonnets,0 ETERNITY,1,sonnets,0 Attending,1,sonnets,0 user,1,sonnets,0 solemn,1,sonnets,0 entertain,1,sonnets,0 ghost,1,sonnets,0 storm,1,sonnets,0 overplus,1,sonnets,0 curls,1,sonnets,0 deem,1,sonnets,0 virgin,1,sonnets,0 prophetic,1,sonnets,0 instant,1,sonnets,0 forgive,1,sonnets,0 unfather'd',1,sonnets,0 eloquence,1,sonnets,0 papers,1,sonnets,0 confess,1,sonnets,0 Cannot,1,sonnets,0 Fortune,1,sonnets,0 sheds,1,sonnets,0 torments,1,sonnets,0 beck,1,sonnets,0 yea,1,sonnets,0 choirs,1,sonnets,0 servant,1,sonnets,0 excellent,1,sonnets,0 repent,1,sonnets,0 stops,1,sonnets,0 faster,1,sonnets,0 consider,1,sonnets,0 needy,1,sonnets,0 truest,1,sonnets,0 impanneled,1,sonnets,0 sable,1,sonnets,0 allege,1,sonnets,0 debt,1,sonnets,0 blenches,1,sonnets,0 Eve's,1,sonnets,0 swearing,1,sonnets,0 weakens,1,sonnets,0 fountains,1,sonnets,0 XCVII,1,sonnets,0 CXXXIII,1,sonnets,0 deal,1,sonnets,0 Revenge,1,sonnets,0 gait,1,sonnets,0 dignity,1,sonnets,0 interim,1,sonnets,0 continual,1,sonnets,0 stain'd,1,sonnets,0 victors,1,sonnets,0 rainy,1,sonnets,0 touch'd,1,sonnets,0 forged,1,sonnets,0 stole,1,sonnets,0 metre,1,sonnets,0 reckon,1,sonnets,0 pierced,1,sonnets,0 manner,1,sonnets,0 hear'st,1,sonnets,0 erred,1,sonnets,0 temperate,1,sonnets,0 onset,1,sonnets,0 forgotten,1,sonnets,0 fixed,1,sonnets,0 cured,1,sonnets,0 correct,1,sonnets,0 move,1,sonnets,0 cures,1,sonnets,0 ask'd,1,sonnets,0 attending,1,sonnets,0 commend,1,sonnets,0 Suffering,1,sonnets,0 committed,1,sonnets,0 governs,1,sonnets,0 accumulate,1,sonnets,0 region,1,sonnets,0 Others,1,sonnets,0 Siren,1,sonnets,0 Junes,1,sonnets,0 utmost,1,sonnets,0 thrivers,1,sonnets,0 crave,1,sonnets,0 idly,1,sonnets,0 situation,1,sonnets,0 Fortune's,1,sonnets,0 straying,1,sonnets,0 prevailed,1,sonnets,0 twofold,1,sonnets,0 deface,1,sonnets,0 sufficed,1,sonnets,0 carved,1,sonnets,0 accusing,1,sonnets,0 enmity,1,sonnets,0 lover,1,sonnets,0 offences,1,sonnets,0 stout,1,sonnets,0 loud,1,sonnets,0 enjoys,1,sonnets,0 settled,1,sonnets,0 endure,1,sonnets,0 hoisted,1,sonnets,0 alteration,1,sonnets,0 semblance,1,sonnets,0 Desiring,1,sonnets,0 statute,1,sonnets,0 devil,1,sonnets,0 apparel,1,sonnets,0 twenty,1,sonnets,0 remover,1,sonnets,0 defy,1,sonnets,0 strains,1,sonnets,0 necessary,1,sonnets,0 act,1,sonnets,0 lets,1,sonnets,0 lock'd,1,sonnets,0 XLVII,1,sonnets,0 bootless,1,sonnets,0 statues,1,sonnets,0 knew,1,sonnets,0 Whoever,1,sonnets,0 spot,1,sonnets,0 seasons',1,sonnets,0 Creep,1,sonnets,0 dully,1,sonnets,0 madding,1,sonnets,0 tyrants,1,sonnets,0 ''Tis,1,sonnets,0 composed,1,sonnets,0 bevel,1,sonnets,0 loan,1,sonnets,0 prescriptions,1,sonnets,0 withering,1,sonnets,0 sun's,1,sonnets,0 zealous,1,sonnets,0 bristly,1,sonnets,0 graven,1,sonnets,0 accents,1,sonnets,0 graves,1,sonnets,0 Whence,1,sonnets,0 Haply,1,sonnets,0 warm'd,1,sonnets,0 ornaments,1,sonnets,0 plot,1,sonnets,0 hindmost,1,sonnets,0 oppression,1,sonnets,0 cherubins,1,sonnets,0 transgression,1,sonnets,0 easy,1,sonnets,0 denote,1,sonnets,0 kills,1,sonnets,0 slide,1,sonnets,0 hard,1,sonnets,0 discourse,1,sonnets,0 Seeking,1,sonnets,0 bends,1,sonnets,0 strangle,1,sonnets,0 Proving,1,sonnets,0 front,1,sonnets,0 indigest,1,sonnets,0 weeks,1,sonnets,0 field,1,sonnets,0 wards,1,sonnets,0 Stirr'd,1,sonnets,0 seconds,1,sonnets,0 string,1,sonnets,0 afford,1,sonnets,0 aye,1,sonnets,0 XXXVII,1,sonnets,0 frost,1,sonnets,0 convertest,1,sonnets,0 outright,1,sonnets,0 ONLY,1,sonnets,0 poorly,1,sonnets,0 labouring,1,sonnets,0 slanderers,1,sonnets,0 kingly,1,sonnets,0 knit,1,sonnets,0 Fairing,1,sonnets,0 inflaming,1,sonnets,0 unworthiness,1,sonnets,0 character'd,1,sonnets,0 impression,1,sonnets,0 rhymers,1,sonnets,0 verses,1,sonnets,0 counting,1,sonnets,0 eisel,1,sonnets,0 seething,1,sonnets,0 husband's,1,sonnets,0 Compared,1,sonnets,0 Happy,1,sonnets,0 acknowledge,1,sonnets,0 bemoaned,1,sonnets,0 call'd,1,sonnets,0 treads,1,sonnets,0 re,1,sonnets,0 Pluck,1,sonnets,0 appears,1,sonnets,0 four,1,sonnets,0 plain,1,sonnets,0 defense,1,sonnets,0 beweep,1,sonnets,0 forty,1,sonnets,0 addeth,1,sonnets,0 tract,1,sonnets,0 rudest,1,sonnets,0 particulars,1,sonnets,0 FORTH,1,sonnets,0 halt,1,sonnets,0 viewest,1,sonnets,0 rudely,1,sonnets,0 page,1,sonnets,0 thralled,1,sonnets,0 O'ercharged,1,sonnets,0 eased,1,sonnets,0 kingdoms,1,sonnets,0 harder,1,sonnets,0 furrows,1,sonnets,0 reviewest,1,sonnets,0 Laid,1,sonnets,0 return'd,1,sonnets,0 paid,1,sonnets,0 fiery,1,sonnets,0 lameness,1,sonnets,0 wasted,1,sonnets,0 diest,1,sonnets,0 mended,1,sonnets,0 sharpen'd,1,sonnets,0 fore,1,sonnets,0 profound,1,sonnets,0 footed,1,sonnets,0 owes,1,sonnets,0 many's,1,sonnets,0 Borne,1,sonnets,0 heretic,1,sonnets,0 Doubting,1,sonnets,0 stones,1,sonnets,0 shop,1,sonnets,0 tempests,1,sonnets,0 forlorn,1,sonnets,0 determination,1,sonnets,0 puts,1,sonnets,0 except,1,sonnets,0 flatter'd,1,sonnets,0 gaudy,1,sonnets,0 food,1,sonnets,0 contain,1,sonnets,0 images,1,sonnets,0 tyranny,1,sonnets,0 bearer,1,sonnets,0 courses,1,sonnets,0 unthrift,1,sonnets,0 excess,1,sonnets,0 Weary,1,sonnets,0 object,1,sonnets,0 accidents,1,sonnets,0 scarcely,1,sonnets,0 light'st,1,sonnets,0 rightly,1,sonnets,0 error,1,sonnets,0 nearly,1,sonnets,0 hateth,1,sonnets,0 tombs,1,sonnets,0 term,1,sonnets,0 PROMISED,1,sonnets,0 secret,1,sonnets,0 tresses,1,sonnets,0 foregone,1,sonnets,0 Hast,1,sonnets,0 bodies',1,sonnets,0 chance,1,sonnets,0 Kind,1,sonnets,0 thanks,1,sonnets,0 Strikes,1,sonnets,0 CXXVIII,1,sonnets,0 banquet,1,sonnets,0 boughs,1,sonnets,0 Breathed,1,sonnets,0 Wretched,1,sonnets,0 Among,1,sonnets,0 blooms,1,sonnets,0 partial,1,sonnets,0 theirs,1,sonnets,0 few,1,sonnets,0 colour'd,1,sonnets,0 fee,1,sonnets,0 purchased,1,sonnets,0 hits,1,sonnets,0 fed,1,sonnets,0 touch,1,sonnets,0 smells,1,sonnets,0 wights,1,sonnets,0 LVIII,1,sonnets,0 array,1,sonnets,0 behavior,1,sonnets,0 justify,1,sonnets,0 needing,1,sonnets,0 Richer,1,sonnets,0 sicken,1,sonnets,0 rhetoric,1,sonnets,0 longing,1,sonnets,0 wresting,1,sonnets,0 trial,1,sonnets,0 purple,1,sonnets,0 excel,1,sonnets,0 enjoy,1,sonnets,0 willingly,1,sonnets,0 expiate,1,sonnets,0 Receiving,1,sonnets,0 Hate,1,sonnets,0 predict,1,sonnets,0 beams,1,sonnets,0 here's,1,sonnets,0 root,1,sonnets,0 jaws,1,sonnets,0 march,1,sonnets,0 unthrifts,1,sonnets,0 nobler,1,sonnets,0 wreck'd,1,sonnets,0 delighted,1,sonnets,0 aggravate,1,sonnets,0 art's,1,sonnets,0 luck,1,sonnets,0 lacking,1,sonnets,0 roof,1,sonnets,0 XXXV,1,sonnets,0 Comes,1,sonnets,0 tomb'd,1,sonnets,0 dreading,1,sonnets,0 active,1,sonnets,0 restored,1,sonnets,0 XXXI,1,sonnets,0 room,1,sonnets,0 perceived,1,sonnets,0 tincture,1,sonnets,0 perceivest,1,sonnets,0 feel'st,1,sonnets,0 befriends,1,sonnets,0 breathes,1,sonnets,0 garments,1,sonnets,0 carcanet,1,sonnets,0 equal,1,sonnets,0 breeds,1,sonnets,0 issueless,1,sonnets,0 stell'd,1,sonnets,0 Grecian,1,sonnets,0 maid,1,sonnets,0 XXVI,1,sonnets,0 threescore,1,sonnets,0 rigor,1,sonnets,0 distills,1,sonnets,0 workings,1,sonnets,0 honey,1,sonnets,0 'Thus,1,sonnets,0 Ten,1,sonnets,0 sickle,1,sonnets,0 dress'd,1,sonnets,0 rosy,1,sonnets,0 hill,1,sonnets,0 Canst,1,sonnets,0 griefs,1,sonnets,0 unprovident,1,sonnets,0 bravery,1,sonnets,0 indeed,1,sonnets,0 broad,1,sonnets,0 lords,1,sonnets,0 guilded,1,sonnets,0 Potions,1,sonnets,0 couldst,1,sonnets,0 distance,1,sonnets,0 Growing,1,sonnets,0 thinly,1,sonnets,0 rolling,1,sonnets,0 elipses,1,sonnets,0 wilfully,1,sonnets,0 Tan,1,sonnets,0 sickly,1,sonnets,0 motley,1,sonnets,0 'Gainst,1,sonnets,0 Better,1,sonnets,0 XXII,1,sonnets,0 Else,1,sonnets,0 XXIV,1,sonnets,0 XXIX,1,sonnets,0 contains,1,sonnets,0 number'd,1,sonnets,0 penury,1,sonnets,0 toil'd,1,sonnets,0 trenches,1,sonnets,0 strengthen'd,1,sonnets,0 afresh,1,sonnets,0 proceed,1,sonnets,0 Hang,1,sonnets,0 restore,1,sonnets,0 dress,1,sonnets,0 apple,1,sonnets,0 conquer'd,1,sonnets,0 unstained,1,sonnets,0 gently,1,sonnets,0 mounted,1,sonnets,0 chopp'd,1,sonnets,0 noon,1,sonnets,0 Robbing,1,sonnets,0 Injurious,1,sonnets,0 Increasing,1,sonnets,0 proudly,1,sonnets,0 Presents,1,sonnets,0 guides,1,sonnets,0 consumest,1,sonnets,0 unfair,1,sonnets,0 Pointing,1,sonnets,0 deserving,1,sonnets,0 forsaken,1,sonnets,0 untrimm'd,1,sonnets,0 perusal,1,sonnets,0 disgraced,1,sonnets,0 beard,1,sonnets,0 spread,1,sonnets,0 fester,1,sonnets,0 faint,1,sonnets,0 hasten,1,sonnets,0 tenor,1,sonnets,0 feature,1,sonnets,0 Alack,1,sonnets,0 selling,1,sonnets,0 misuse,1,sonnets,0 hied,1,sonnets,0 need'st,1,sonnets,0 travels,1,sonnets,0 extant,1,sonnets,0 burthens,1,sonnets,0 meditation,1,sonnets,0 admire,1,sonnets,0 decrepit,1,sonnets,0 stick'st,1,sonnets,0 chary,1,sonnets,0 wandering,1,sonnets,0 written,1,sonnets,0 annoy,1,sonnets,0 idolatry,1,sonnets,0 Bare,1,sonnets,0 chips,1,sonnets,0 Flatter,1,sonnets,0 borne,1,sonnets,0 visage,1,sonnets,0 alter,1,sonnets,0 Sin,1,sonnets,0 affections,1,sonnets,0 stays,1,sonnets,0 quickly,1,sonnets,0 arise,1,sonnets,0 progress,1,sonnets,0 thrall,1,sonnets,0 languish'd,1,sonnets,0 o'erlook,1,sonnets,0 Lose,1,sonnets,0 who's,1,sonnets,0 threefold,1,sonnets,0 springs,1,sonnets,0 Kissing,1,sonnets,0 housewife,1,sonnets,0 Lord,1,sonnets,0 damask'd,1,sonnets,0 accessary,1,sonnets,0 rarities,1,sonnets,0 several,1,sonnets,0 Excusing,1,sonnets,0 powers,1,sonnets,0 splendor,1,sonnets,0 invoked,1,sonnets,0 cloak,1,sonnets,0 besmear'd,1,sonnets,0 sullied,1,sonnets,0 Drugs,1,sonnets,0 placed,1,sonnets,0 CVIII,1,sonnets,0 recured,1,sonnets,0 err,1,sonnets,0 tillage,1,sonnets,0 strife,1,sonnets,0 yourself's,1,sonnets,0 reigns,1,sonnets,0 expired,1,sonnets,0 perfect'st,1,sonnets,0 revolution,1,sonnets,0 towards,1,sonnets,0 blessings,1,sonnets,0 LXVII,1,sonnets,0 random,1,sonnets,0 teeth,1,sonnets,0 Presume,1,sonnets,0 Crawls,1,sonnets,0 mightst,1,sonnets,0 valley,1,sonnets,0 bosoms,1,sonnets,0 foolish,1,sonnets,0 XXVIII,1,sonnets,0 resty,1,sonnets,0 Grant,1,sonnets,0 towers,1,sonnets,0 purposed,1,sonnets,0 smother,1,sonnets,0 'Truth,1,sonnets,0 dregs,1,sonnets,0 already,1,sonnets,0 blush,1,sonnets,0 process,1,sonnets,0 nursed,1,sonnets,0 beggar,1,sonnets,0 forgoing,1,sonnets,0 debateth,1,sonnets,0 Could,1,sonnets,0 annex'd,1,sonnets,0 untutor'd,1,sonnets,0 freezings,1,sonnets,0 ghastly,1,sonnets,0 there's,1,sonnets,0 AND,1,sonnets,0 partake,1,sonnets,0 tenth,1,sonnets,0 counterpart,1,sonnets,0 forests,1,sonnets,0 onward,1,sonnets,0 coward,1,sonnets,0 ALL,1,sonnets,0 comes,1,sonnets,0 ranks,1,sonnets,0 proudest,1,sonnets,0 foil'd,1,sonnets,0 raiment,1,sonnets,0 fountain,1,sonnets,0 known,1,sonnets,0 achieve,1,sonnets,0 veil,1,sonnets,0 steepy,1,sonnets,0 Thee,1,sonnets,0 because,1,sonnets,0 woo,1,sonnets,0 won,1,sonnets,0 blow,1,sonnets,0 brains,1,sonnets,0 starved,1,sonnets,0 vision,1,sonnets,0 greatest,1,sonnets,0 painful,1,sonnets,0 Consumed,1,sonnets,0 mournful,1,sonnets,0 gates,1,sonnets,0 entombed,1,sonnets,0 purging,1,sonnets,0 beside,1,sonnets,0 BEGETTER,1,sonnets,0 seal'd,1,sonnets,0 captive,1,sonnets,0 CXL,1,sonnets,0 CXI,1,sonnets,0 Prison,1,sonnets,0 Buy,1,sonnets,0 trifle,1,sonnets,0 possessing,1,sonnets,0 knowst,1,sonnets,0 wantonness,1,sonnets,0 smoke,1,sonnets,0 marvel,1,sonnets,0 honouring,1,sonnets,0 December's,1,sonnets,0 preposterously,1,sonnets,0 gluttoning,1,sonnets,0 impiety,1,sonnets,0 CVI,1,sonnets,0 CXXVII,1,sonnets,0 engrafted,1,sonnets,0 trouble,1,sonnets,0 sluttish,1,sonnets,0 wet,1,sonnets,0 Giving,1,sonnets,0 LXXXVI,1,sonnets,0 sang,1,sonnets,0 scanted,1,sonnets,0 Commanded,1,sonnets,0 firm,1,sonnets,0 dullness,1,sonnets,0 buriest,1,sonnets,0 Devouring,1,sonnets,0 bear'st,1,sonnets,0 hardest,1,sonnets,0 blindness,1,sonnets,0 banks,1,sonnets,0 Feeds,1,sonnets,0 proves,1,sonnets,0 methods,1,sonnets,0 unletter'd,1,sonnets,0 doctor,1,sonnets,0 releasing,1,sonnets,0 dignified,1,sonnets,0 imprint,1,sonnets,0 CXVIII,1,sonnets,0 get,1,sonnets,0 dignifies,1,sonnets,0 strained,1,sonnets,0 XXIII,1,sonnets,0 merits,1,sonnets,0 Awakes,1,sonnets,0 'No,1,sonnets,0 neck,1,sonnets,0 unhappily,1,sonnets,0 pomp,1,sonnets,0 fits,1,sonnets,0 girded,1,sonnets,0 throw,1,sonnets,0 sides,1,sonnets,0 stamp,1,sonnets,0 restful,1,sonnets,0 'not,1,sonnets,0 CXV,1,sonnets,0 CXX,1,sonnets,0 proposed,1,sonnets,0 provoke,1,sonnets,0 you've,1,sonnets,0 receipt,1,sonnets,0 cross'd,1,sonnets,0 import,1,sonnets,0 woes,1,sonnets,0 services,1,sonnets,0 welfare,1,sonnets,0 measured,1,sonnets,0 third,1,sonnets,0 CXXXVIII,1,sonnets,0 traffic,1,sonnets,0 novel,1,sonnets,0 different,1,sonnets,0 steel'd,1,sonnets,0 moment,1,sonnets,0 waking,1,sonnets,0 altering,1,sonnets,0 riot,1,sonnets,0 closet,1,sonnets,0 decays,1,sonnets,0 conspire,1,sonnets,0 heard,1,sonnets,0 sessions,1,sonnets,0 quicker,1,sonnets,0 Say,1,sonnets,0 Sap,1,sonnets,0 renewest,1,sonnets,0 Desire,1,sonnets,0 couplement,1,sonnets,0 ripe,1,sonnets,0 amazeth,1,sonnets,0 salutation,1,sonnets,0 enlighten,1,sonnets,0 filed,1,sonnets,0 impediments,1,sonnets,0 defeated,1,sonnets,0 save,1,sonnets,0 remains,1,sonnets,0 LXXXVIII,1,sonnets,0 adulterate,1,sonnets,0 shamefully,1,sonnets,0 CXLII,1,sonnets,0 idol,1,sonnets,0 decrees,1,sonnets,0 CXLIV,1,sonnets,0 Dian's,1,sonnets,0 CXLIX,1,sonnets,0 owner's,1,sonnets,0 liker,1,sonnets,0 vow'd,1,sonnets,0 Think,1,sonnets,0 hooks,1,sonnets,0 flourish,1,sonnets,0 imperfect,1,sonnets,0 spacious,1,sonnets,0 linger,1,sonnets,0 rise,1,sonnets,0 tuned,1,sonnets,0 able,1,sonnets,0 retention,1,sonnets,0 Worthy,1,sonnets,0 swart,1,sonnets,0 receive,1,sonnets,0 misprision,1,sonnets,0 XLVIII,1,sonnets,0 heats,1,sonnets,0 print,1,sonnets,0 rite,1,sonnets,0 hidden,1,sonnets,0 Root,1,sonnets,0 nurseth,1,sonnets,0 sufferance,1,sonnets,0 arts,1,sonnets,0 assure,1,sonnets,0 Hiding,1,sonnets,0 WISHETH,1,sonnets,0 woos,1,sonnets,0 anticipate,1,sonnets,0 forward,1,sonnets,0 saith,1,sonnets,0 wanton,1,sonnets,0 dying,1,sonnets,0 bereft,1,sonnets,0 Ruin,1,sonnets,0 bequest,1,sonnets,0 instinct,1,sonnets,0 covetous,1,sonnets,0 Loving,1,sonnets,0 admitted,1,sonnets,0 astronomy,1,sonnets,0 wont,1,sonnets,0 complain,1,sonnets,0 LIV,1,sonnets,0 LIX,1,sonnets,0 Leese,1,sonnets,0 LII,1,sonnets,0 dross,1,sonnets,0 enforced,1,sonnets,0 transferr'd,1,sonnets,0 hair,1,sonnets,0 resent,1,sonnets,0 onwards,1,sonnets,0 XVIII,1,sonnets,0 news,1,sonnets,0 grossly,1,sonnets,0 intermix'd,1,sonnets,0 familiar,1,sonnets,0 gladly,1,sonnets,0 vengeful,1,sonnets,0 oblivion,1,sonnets,0 Straight,1,sonnets,0 watery,1,sonnets,0 shallowest,1,sonnets,0 varying,1,sonnets,0 taker,1,sonnets,0 arising,1,sonnets,0 slavery,1,sonnets,0 what's,1,sonnets,0 put'st,1,sonnets,0 earthly,1,sonnets,0 purest,1,sonnets,0 poison,1,sonnets,0 charged,1,sonnets,0 anger,1,sonnets,0 require,1,sonnets,0 sways,1,sonnets,0 compass,1,sonnets,0 owe,1,sonnets,0 Eternal,1,sonnets,0 CIX,1,sonnets,0 consent,1,sonnets,0 CIV,1,sonnets,0 CII,1,sonnets,0 wolf,1,sonnets,0 determined,1,sonnets,0 drops,1,sonnets,0 harvest,1,sonnets,0 marble,1,sonnets,0 beguiled,1,sonnets,0 sober,1,sonnets,0 hundred,1,sonnets,0 CXLVI,1,sonnets,0 highmost,1,sonnets,0 went,1,sonnets,0 watching,1,sonnets,0 gifts,1,sonnets,0 mightier,1,sonnets,0 satire,1,sonnets,0 Show,1,sonnets,0 table,1,sonnets,0 grieve,1,sonnets,0 locked,1,sonnets,0 Swear,1,sonnets,0 Entitled,1,sonnets,0 durst,1,sonnets,0 profane,1,sonnets,0 CLI,1,sonnets,0 Beauteous,1,sonnets,0 dates,1,sonnets,0 'fore,1,sonnets,0 messengers,1,sonnets,0 compile,1,sonnets,0 tuff,1,sonnets,0 giving,1,sonnets,0 miracle,1,sonnets,0 lords',1,sonnets,0 That's,1,sonnets,0 meadows,1,sonnets,0 crystal,1,sonnets,0 saint,1,sonnets,0 victor,1,sonnets,0 foe,1,sonnets,0 amends,1,sonnets,0 ransoms,1,sonnets,0 affable,1,sonnets,0 lasting,1,sonnets,0 Call'd,1,sonnets,0 crests,1,sonnets,0 darkly,1,sonnets,0 answers,1,sonnets,0 truths,1,sonnets,0 rack,1,sonnets,0 race,1,sonnets,0 woeful,1,sonnets,0 pleased,1,sonnets,0 endeared,1,sonnets,0 worn,1,sonnets,0 parallels,1,sonnets,0 tune,1,sonnets,0 threw,1,sonnets,0 fly,1,sonnets,0 clerk,1,sonnets,0 worthiness,1,sonnets,0 worth's,1,sonnets,0 lodged,1,sonnets,0 clay,1,sonnets,0 dancing,1,sonnets,0 CIII,1,sonnets,0 unjust,1,sonnets,0 Mars,1,sonnets,0 offices,1,sonnets,0 gazing,1,sonnets,0 filching,1,sonnets,0 allay'd,1,sonnets,0 LVI,1,sonnets,0 yore,1,sonnets,0 invocate,1,sonnets,0 passion,1,sonnets,0 Doing,1,sonnets,0 runn'st,1,sonnets,0 profit,1,sonnets,0 swallow'd,1,sonnets,0 separation,1,sonnets,0 battering,1,sonnets,0 decay'd,1,sonnets,0 lascivious,1,sonnets,0 external,1,sonnets,0 minded,1,sonnets,0 thunder,1,sonnets,0 answer'd,1,sonnets,0 vanishing,1,sonnets,0 loveliness,1,sonnets,0 worship,1,sonnets,0 Incapable,1,sonnets,0 unset,1,sonnets,0 herself,1,sonnets,0 fawn,1,sonnets,0 poison'd,1,sonnets,0 faculty,1,sonnets,0 XXXIII,1,sonnets,0 reeleth,1,sonnets,0 queen,1,sonnets,0 madmen's,1,sonnets,0 perceive,1,sonnets,0 Advantage,1,sonnets,0 partly,1,sonnets,0 patient,1,sonnets,0 tyrants',1,sonnets,0 marjoram,1,sonnets,0 wrongfully,1,sonnets,0 truth's,1,sonnets,0 sickle's,1,sonnets,0 waves,1,sonnets,0 odours,1,sonnets,0 reproach,1,sonnets,0 register,1,sonnets,0 bird,1,sonnets,0 Lilies,1,sonnets,0 LIII,1,sonnets,0 strumpeted,1,sonnets,0 dispraise,1,sonnets,0 grievances,1,sonnets,0 Spending,1,sonnets,0 qualify,1,sonnets,0 LXX,1,sonnets,0 LXV,1,sonnets,0 deliver'd,1,sonnets,0 fate,1,sonnets,0 Steal,1,sonnets,0 XCVIII,1,sonnets,0 hallow'd,1,sonnets,0 mightest,1,sonnets,0 cools,1,sonnets,0 tame,1,sonnets,0 weakness,1,sonnets,0 rising,1,sonnets,0 will'd,1,sonnets,0 crush'd,1,sonnets,0 songs,1,sonnets,0 afloat,1,sonnets,0 surly,1,sonnets,0 drinks,1,sonnets,0 feeble,1,sonnets,0 lap,1,sonnets,0 tall,1,sonnets,0 reckon'd,1,sonnets,0 falsely,1,sonnets,0 vermilion,1,sonnets,0 matcheth,1,sonnets,0 orient,1,sonnets,0 Lean,1,sonnets,0 bind,1,sonnets,0 LXI,1,sonnets,0 aloft,1,sonnets,0 cup,1,sonnets,0 appearance,1,sonnets,0 fresher,1,sonnets,0 destroys,1,sonnets,0 hatred,1,sonnets,0 perish,1,sonnets,0 Describe,1,sonnets,0 carry,1,sonnets,0 olives,1,sonnets,0 wild,1,sonnets,0 shoot,1,sonnets,0 shook,1,sonnets,0 Featured,1,sonnets,0 pardon,1,sonnets,0 accident,1,sonnets,0 swears,1,sonnets,0 strength's,1,sonnets,0 thank,1,sonnets,0 sparkling,1,sonnets,0 clean,1,sonnets,0 lour'st,1,sonnets,0 picture's,1,sonnets,0 victories,1,sonnets,0 shorn,1,sonnets,0 None,1,sonnets,0 frequent,1,sonnets,0 famine,1,sonnets,0 pupil,1,sonnets,0 cut,1,sonnets,0 devour,1,sonnets,0 effectually,1,sonnets,0 follows,1,sonnets,0 fired,1,sonnets,0 variation,1,sonnets,0 honest,1,sonnets,0 feasts,1,sonnets,0 carve,1,sonnets,0 unto,1,sonnets,0 staineth,1,sonnets,0 ranged,1,sonnets,0 lily's,1,sonnets,0 revolt,1,sonnets,0 spurring,1,sonnets,0 besiege,1,sonnets,0 defeat,1,sonnets,0 horses,1,sonnets,0 waning,1,sonnets,0 wondering,1,sonnets,0 barrenly,1,sonnets,0 seal,1,sonnets,0 despising,1,sonnets,0 prefiguring,1,sonnets,0 gild'st,1,sonnets,0 building,1,sonnets,0 task,1,sonnets,0 legions,1,sonnets,0 cloying,1,sonnets,0 masked,1,sonnets,0 blazon,1,sonnets,0 fitted,1,sonnets,0 intents,1,sonnets,0 wife,1,sonnets,0 prayers,1,sonnets,0 subscribes,1,sonnets,0 Anon,1,sonnets,0 Applying,1,sonnets,0 XCIII,1,sonnets,0 hung,1,sonnets,0 evident,1,sonnets,0 perfumed,1,sonnets,0 CXXXVII,1,sonnets,0 hairs,1,sonnets,0 betraying,1,sonnets,0 play'st,1,sonnets,0 stores',1,sonnets,0 fickle,1,sonnets,0 cool,1,sonnets,0 lying,1,sonnets,0 Theirs,1,sonnets,0 contents,1,sonnets,0 waiting,1,sonnets,0 Calls,1,sonnets,0 always,1,sonnets,0 LXXXIV,1,sonnets,0 LXXXIX,1,sonnets,0 winged,1,sonnets,0 CXIII,1,sonnets,0 Beated,1,sonnets,0 neglected,1,sonnets,0 breasts,1,sonnets,0 LXXXII,1,sonnets,0 rearward,1,sonnets,0 recounting,1,sonnets,0 adieu,1,sonnets,0 low,1,sonnets,0 eyed,1,sonnets,0 deepest,1,sonnets,0 trophies,1,sonnets,0 ugly,1,sonnets,0 drunk,1,sonnets,0 lengths,1,sonnets,0 Sinks,1,sonnets,0 LXXV,1,sonnets,0 LXXX,1,sonnets,0 adder's,1,sonnets,0 kingdom,1,sonnets,0 decree,1,sonnets,0 publish,1,sonnets,0 reckoning,1,sonnets,0 singleness,1,sonnets,0 feathers,1,sonnets,0 Serving,1,sonnets,0 either,1,sonnets,0 adore,1,sonnets,0 harmful,1,sonnets,0 hounds,1,sonnets,0 nerves,1,sonnets,0 supposed,1,sonnets,0 LXXVI,1,sonnets,0 wrack,1,sonnets,0 presenteth,1,sonnets,0 sees,1,sonnets,0 dressing,1,sonnets,0 shapes,1,sonnets,0 LXXI,1,sonnets,0 thereof,1,sonnets,0 mix'd,1,sonnets,0 Speaking,1,sonnets,0 assailed,1,sonnets,0 thrust,1,sonnets,0 XIII,1,sonnets,0 LXVI,1,sonnets,0 confounding,1,sonnets,0 sportive,1,sonnets,0 whate'er,1,sonnets,0 LXXII,1,sonnets,0 dispense,1,sonnets,0 house,1,sonnets,0 LXXIV,1,sonnets,0 LXXIX,1,sonnets,0 term'd,1,sonnets,0 Through,1,sonnets,0 outcast,1,sonnets,0 Clouds,1,sonnets,0 bestowest,1,sonnets,0 bait,1,sonnets,0 badness,1,sonnets,0 unwoo'd,1,sonnets,0 stopped,1,sonnets,0 Use,1,sonnets,0 grow'st,1,sonnets,0 inviting,1,sonnets,0 unseeing,1,sonnets,0 gusts,1,sonnets,0 learned's,1,sonnets,0 fairly,1,sonnets,0 modern,1,sonnets,0 raven,1,sonnets,0 believed,1,sonnets,0 indirectly,1,sonnets,0 ADVENTURER,1,sonnets,0 mortgaged,1,sonnets,0 sell,1,sonnets,0 unfolding,1,sonnets,0 Just,1,sonnets,0 millions,1,sonnets,0 uncertain,1,sonnets,0 work's,1,sonnets,0 bankrupt,1,sonnets,0 see'st,1,sonnets,0 send'st,1,sonnets,0 fearfully,1,sonnets,0 compiled,1,sonnets,0 glowing,1,sonnets,0 frailer,1,sonnets,0 stores,1,sonnets,0 Neither,1,sonnets,0 Incertainties,1,sonnets,0 Self,1,sonnets,0 gentlest,1,sonnets,0 remote,1,sonnets,0 together,1,sonnets,0 Intend,1,sonnets,0 nurse,1,sonnets,0 Admit,1,sonnets,0 grieved,1,sonnets,0 herald,1,sonnets,0 chose,1,sonnets,0 fearing,1,sonnets,0 sickness,1,sonnets,0 ushers,1,sonnets,0 convert,1,sonnets,0 aright,1,sonnets,0 equipage,1,sonnets,0 slumbers,1,sonnets,0 Decay,1,sonnets,0 attaint,1,sonnets,0 bestow,1,sonnets,0 lip,1,sonnets,0 drooping,1,sonnets,0 crooked,1,sonnets,0 Hearing,1,sonnets,0 eyes',1,sonnets,0 stormy,1,sonnets,0 Rough,1,sonnets,0 budding,1,sonnets,0 Accuse,1,sonnets,0 Two,1,sonnets,0 oblivious,1,sonnets,0 featureless,1,sonnets,0 laws,1,sonnets,0 frantic,1,sonnets,0 Nothing,1,sonnets,0 foison,1,sonnets,0 endured,1,sonnets,0 universe,1,sonnets,0 CLII,1,sonnets,0 CLIV,1,sonnets,0 travel's,1,sonnets,0 persuade,1,sonnets,0 unperfect,1,sonnets,0 divining,1,sonnets,0 feasting,1,sonnets,0 review,1,sonnets,0 masonry,1,sonnets,0 Divert,1,sonnets,0 beds',1,sonnets,0 CXXXII,1,sonnets,0 debate,1,sonnets,0 insufficiency,1,sonnets,0 mar,1,sonnets,0 CXXXIX,1,sonnets,0 CXXXIV,1,sonnets,0 expressing,1,sonnets,0 sway'st,1,sonnets,0 gains,1,sonnets,0 nourish'd,1,sonnets,0 heinous,1,sonnets,0 dial's,1,sonnets,0 Delights,1,sonnets,0 Towards,1,sonnets,0 Saturn,1,sonnets,0 smiling,1,sonnets,0 gulls,1,sonnets,0 vices,1,sonnets,0 forced,1,sonnets,0 gust,1,sonnets,0 distillation,1,sonnets,0 sauces,1,sonnets,0 begins,1,sonnets,0 posting,1,sonnets,0 Another,1,sonnets,0 kindling,1,sonnets,0 acceptable,1,sonnets,0 compounded,1,sonnets,0 poesy,1,sonnets,0 defaced,1,sonnets,0 inferior,1,sonnets,0 correction,1,sonnets,0 wretch's,1,sonnets,0 seemly,1,sonnets,0 trim,1,sonnets,0 phoenix,1,sonnets,0 defendant,1,sonnets,0 travell'd,1,sonnets,0 vilest,1,sonnets,0 disdaineth,1,sonnets,0 XLIII,1,sonnets,0 cheater,1,sonnets,0 censures,1,sonnets,0 tires,1,sonnets,0 Rise,1,sonnets,0 debarr'd,1,sonnets,0 dye,1,sonnets,0 rights,1,sonnets,0 breathers,1,sonnets,0 Enjoy'd,1,sonnets,0 blunting,1,sonnets,0 graciously,1,sonnets,0 determinate,1,sonnets,0 repay,1,sonnets,0 whit,1,sonnets,0 LXXXIII,1,sonnets,0 pleasant,1,sonnets,0 limit,1,sonnets,0 ladies,1,sonnets,0 debtor,1,sonnets,0 THAT,1,sonnets,0 Possessing,1,sonnets,0 'greeing,1,sonnets,0 Great,1,sonnets,0 gems,1,sonnets,0 simplicity,1,sonnets,0 'Had,1,sonnets,0 confess'd,1,sonnets,0 'love',1,sonnets,0 solve,1,sonnets,0 extern,1,sonnets,0 monarch's,1,sonnets,0 Unmoved,1,sonnets,0 rondure,1,sonnets,0 essays,1,sonnets,0 forgetfulness,1,sonnets,0 homage,1,sonnets,0 marriage,1,sonnets,0 appearing,1,sonnets,0 Adonis,1,sonnets,0 beguile,1,sonnets,0 lark,1,sonnets,0 CXLVII,1,sonnets,0 sometimes,1,sonnets,0 untainted,1,sonnets,0 Cheered,1,sonnets,0 respects,1,sonnets,0 renew'd,1,sonnets,0 politic,1,sonnets,0 phrase,1,sonnets,0 credit,1,sonnets,0 jollity,1,sonnets,0 fleeting,1,sonnets,0 inherit,1,sonnets,0 liquid,1,sonnets,0 thither,1,sonnets,0 late,1,sonnets,0 Sings,1,sonnets,0 reeks,1,sonnets,0 better'd,1,sonnets,0 gravity,1,sonnets,0 Eat,1,sonnets,0 LXXVII,1,sonnets,0 truant,1,sonnets,0 sleeping,1,sonnets,0 VII,1,sonnets,0 hush,1,sonnets,0 recompense,1,sonnets,0 peep,1,sonnets,0 jade,1,sonnets,0 silver,1,sonnets,0 list,1,sonnets,0 hurt,1,sonnets,0 CXXXVI,1,sonnets,0 suited,1,sonnets,0 Naming,1,sonnets,0 Chiding,1,sonnets,0 sepulchres,1,sonnets,0 impart,1,sonnets,0 Feed'st,1,sonnets,0 prouder,1,sonnets,0 Counting,1,sonnets,0 ragged,1,sonnets,0 vowing,1,sonnets,0 neigh,1,sonnets,0 books,1,sonnets,0 contend,1,sonnets,0 follow'd,1,sonnets,0 quietus,1,sonnets,0 limping,1,sonnets,0 mow,1,sonnets,0 pyramids,1,sonnets,0 dwells,1,sonnets,0 frank,1,sonnets,0 uprear,1,sonnets,0 mouths,1,sonnets,0 shady,1,sonnets,0 older,1,sonnets,0 corrupting,1,sonnets,0 painter's,1,sonnets,0 presage,1,sonnets,0 slay,1,sonnets,0 brag,1,sonnets,0 distemper'd,1,sonnets,0 invited,1,sonnets,0 attend,1,sonnets,0 provide,1,sonnets,0 centre,1,sonnets,0 Whoe'er,1,sonnets,0 confine,1,sonnets,0 dart,1,sonnets,0 mud,1,sonnets,0 losses,1,sonnets,0 ordering,1,sonnets,0 offender's,1,sonnets,0 Hung,1,sonnets,0 dun,1,sonnets,0 exchanged,1,sonnets,0 weigh,1,sonnets,0 weight,1,sonnets,0 land,1,sonnets,0 blessing,1,sonnets,0 dispatch,1,sonnets,0 rocks,1,sonnets,0 top,1,sonnets,0 injurious,1,sonnets,0 Wishing,1,sonnets,0 dry,1,sonnets,0 lamb,1,sonnets,0 sea's,1,sonnets,0 resting,1,sonnets,0 Bring,1,sonnets,0 undivided,1,sonnets,0 certain,1,sonnets,0 Until,1,sonnets,0 leap'd,1,sonnets,0 bewailed,1,sonnets,0 princes',1,sonnets,0 physician,1,sonnets,0 separable,1,sonnets,0 offence's,1,sonnets,0 vacant,1,sonnets,0 tripping,1,sonnets,0 vex'd,1,sonnets,0 Too,1,sonnets,0 gazed,1,sonnets,0 largess,1,sonnets,0 flown,1,sonnets,0 trees,1,sonnets,0 divided,1,sonnets,0 impair,1,sonnets,0 conceal'd,1,sonnets,0 private,1,sonnets,0 Dissuade,1,sonnets,0 sourest,1,sonnets,0 Savage,1,sonnets,0 shifting,1,sonnets,0 press'd,1,sonnets,0 expire,1,sonnets,0 boundless,1,sonnets,0 figured,1,sonnets,0 pebbled,1,sonnets,0 jealousy,1,sonnets,0 POET,1,sonnets,0 immured,1,sonnets,0 teeming,1,sonnets,0 awake,1,sonnets,0 figures,1,sonnets,0 darling,1,sonnets,0 hugely,1,sonnets,0 FROM,1,sonnets,0 Distill'd,1,sonnets,0 exchequer,1,sonnets,0 bier,1,sonnets,0 fragrant,1,sonnets,0 dedicated,1,sonnets,0 striving,1,sonnets,0 candles,1,sonnets,0 lace,1,sonnets,0 Find,1,sonnets,0 bids,1,sonnets,0 th',1,sonnets,0 Bound,1,sonnets,0 wombs,1,sonnets,0 spoils,1,sonnets,0 dressings,1,sonnets,0 perhaps,1,sonnets,0 makeless,1,sonnets,0 Darkening,1,sonnets,0 crown,1,sonnets,0 present'st,1,sonnets,0 wilfulness,1,sonnets,0 share,1,sonnets,0 LIVING,1,sonnets,0 dig,1,sonnets,0 LXXIII,1,sonnets,0 show'st,1,sonnets,0 sharp,1,sonnets,0 pour'st,1,sonnets,0 woo'd,1,sonnets,0 monsters,1,sonnets,0 ending,1,sonnets,0 servant's,1,sonnets,0 CXXIII,1,sonnets,0 remembered,1,sonnets,0 Grows,1,sonnets,0 cheque'd,2,sonnets,0 affords,2,sonnets,0 meet,2,sonnets,0 lusty,2,sonnets,0 true',2,sonnets,0 ignorance,2,sonnets,0 T,2,sonnets,0 guard,2,sonnets,0 Nay,2,sonnets,0 suffer,2,sonnets,0 belongs,2,sonnets,0 horse,2,sonnets,0 Alas,2,sonnets,0 advantage,2,sonnets,0 peace,2,sonnets,0 alack,2,sonnets,0 jacks,2,sonnets,0 distill'd,2,sonnets,0 robs,2,sonnets,0 health,2,sonnets,0 express,2,sonnets,0 painter,2,sonnets,0 held,2,sonnets,0 unrespected,2,sonnets,0 bounteous,2,sonnets,0 while,2,sonnets,0 slander,2,sonnets,0 Ere,2,sonnets,0 sour,2,sonnets,0 charter,2,sonnets,0 prey,2,sonnets,0 sort,2,sonnets,0 lively,2,sonnets,0 bosom's,2,sonnets,0 mute,2,sonnets,0 cast,2,sonnets,0 pleasing,2,sonnets,0 reign,2,sonnets,0 bending,2,sonnets,0 inconstant,2,sonnets,0 disdain,2,sonnets,0 Roses,2,sonnets,0 After,2,sonnets,0 friend's,2,sonnets,0 ruin'd,2,sonnets,0 years,2,sonnets,0 sorrows,2,sonnets,0 pilgrimage,2,sonnets,0 Come,2,sonnets,0 subjects,2,sonnets,0 Much,2,sonnets,0 policy,2,sonnets,0 gross,2,sonnets,0 poet's,2,sonnets,0 addition,2,sonnets,0 veins,2,sonnets,0 riches,2,sonnets,0 wait,2,sonnets,0 becoming,2,sonnets,0 wail,2,sonnets,0 Cupid,2,sonnets,0 something,2,sonnets,0 moving,2,sonnets,0 bareness,2,sonnets,0 shames,2,sonnets,0 sit,2,sonnets,0 comments,2,sonnets,0 imprison'd,2,sonnets,0 deceased,2,sonnets,0 Reserve,2,sonnets,0 deceived,2,sonnets,0 suit,2,sonnets,0 scorn,2,sonnets,0 yield,2,sonnets,0 forsake,2,sonnets,0 winds,2,sonnets,0 't,2,sonnets,0 acquainted,2,sonnets,0 deserts,2,sonnets,0 level,2,sonnets,0 either's,2,sonnets,0 mother,2,sonnets,0 becomes,2,sonnets,0 poverty,2,sonnets,0 esteem,2,sonnets,0 offence,2,sonnets,0 Our,2,sonnets,0 There,2,sonnets,0 bore,2,sonnets,0 showers,2,sonnets,0 untrue,2,sonnets,0 willing,2,sonnets,0 Wherein,2,sonnets,0 princes,2,sonnets,0 humble,2,sonnets,0 speechless,2,sonnets,0 feel,2,sonnets,0 saucy,2,sonnets,0 dial,2,sonnets,0 corrupt,2,sonnets,0 wind,2,sonnets,0 wink,2,sonnets,0 title,2,sonnets,0 obsequious,2,sonnets,0 outworn,2,sonnets,0 dearer,2,sonnets,0 wise,2,sonnets,0 bold,2,sonnets,0 died,2,sonnets,0 stop,2,sonnets,0 pretty,2,sonnets,0 steep,2,sonnets,0 wits,2,sonnets,0 praised,2,sonnets,0 created,2,sonnets,0 hungry,2,sonnets,0 objects,2,sonnets,0 healthful,2,sonnets,0 goddess,2,sonnets,0 pencil,2,sonnets,0 urge,2,sonnets,0 bitter,2,sonnets,0 morning,2,sonnets,0 strongly,2,sonnets,0 What's,2,sonnets,0 measure,2,sonnets,0 Ay,2,sonnets,0 perfection,2,sonnets,0 invent,2,sonnets,0 replete,2,sonnets,0 patience,2,sonnets,0 youthful,2,sonnets,0 bow,2,sonnets,0 Him,2,sonnets,0 knowing,2,sonnets,0 fortify,2,sonnets,0 among,2,sonnets,0 Still,2,sonnets,0 hopes,2,sonnets,0 Me,2,sonnets,0 pays,2,sonnets,0 kings,2,sonnets,0 unless,2,sonnets,0 hymns,2,sonnets,0 brings,2,sonnets,0 shines,2,sonnets,0 force,2,sonnets,0 hid,2,sonnets,0 finds,2,sonnets,0 strangely,2,sonnets,0 fortune's,2,sonnets,0 ease,2,sonnets,0 contracted,2,sonnets,0 dateless,2,sonnets,0 added,2,sonnets,0 sport,2,sonnets,0 Had,2,sonnets,0 ears,2,sonnets,0 gold,2,sonnets,0 sooner,2,sonnets,0 belied,2,sonnets,0 kindness,2,sonnets,0 Yourself,2,sonnets,0 sounds,2,sonnets,0 dote,2,sonnets,0 tables,2,sonnets,0 gaze,2,sonnets,0 weak,2,sonnets,0 bent,2,sonnets,0 quill,2,sonnets,0 frailties,2,sonnets,0 Speak,2,sonnets,0 twice,2,sonnets,0 despise,2,sonnets,0 extreme,2,sonnets,0 curse,2,sonnets,0 bud,2,sonnets,0 vows,2,sonnets,0 vassal,2,sonnets,0 travel,2,sonnets,0 divine,2,sonnets,0 stronger,2,sonnets,0 pitch,2,sonnets,0 vantage,2,sonnets,0 fulfil,2,sonnets,0 noted,2,sonnets,0 wretch,2,sonnets,0 miles,2,sonnets,0 Nature's,2,sonnets,0 betray,2,sonnets,0 aid,2,sonnets,0 jewels,2,sonnets,0 newer,2,sonnets,0 whereon,2,sonnets,0 profaned,2,sonnets,0 autumn,2,sonnets,0 vouchsafe,2,sonnets,0 depends,2,sonnets,0 Return,2,sonnets,0 thrive,2,sonnets,0 defence,2,sonnets,0 hands,2,sonnets,0 usurer,2,sonnets,0 makest,2,sonnets,0 possess'd,2,sonnets,0 privilege,2,sonnets,0 forget,2,sonnets,0 ah,2,sonnets,0 feast,2,sonnets,0 pursuit,2,sonnets,0 comment,2,sonnets,0 small,2,sonnets,0 aside,2,sonnets,0 whereof,2,sonnets,0 abide,2,sonnets,0 idle,2,sonnets,0 Myself,2,sonnets,0 morn,2,sonnets,0 glance,2,sonnets,0 hadst,2,sonnets,0 ink,2,sonnets,0 sweetness,2,sonnets,0 lest,2,sonnets,0 violet,2,sonnets,0 sightless,2,sonnets,0 nimble,2,sonnets,0 journey,2,sonnets,0 pure,2,sonnets,0 Because,2,sonnets,0 Came,2,sonnets,0 wasteful,2,sonnets,0 fierce,2,sonnets,0 blamed,2,sonnets,0 us,2,sonnets,0 Most,2,sonnets,0 keen,2,sonnets,0 crow,2,sonnets,0 welcome,2,sonnets,0 pale,2,sonnets,0 palate,2,sonnets,0 spur,2,sonnets,0 hang,2,sonnets,0 shun,2,sonnets,0 liberty,2,sonnets,0 Full,2,sonnets,0 deny,2,sonnets,0 drawn,2,sonnets,0 mourners,2,sonnets,0 perpetual,2,sonnets,0 open,2,sonnets,0 Under,2,sonnets,0 deaths,2,sonnets,0 abhor,2,sonnets,0 prepare,2,sonnets,0 nightly,2,sonnets,0 wastes,2,sonnets,0 neglect,2,sonnets,0 point,2,sonnets,0 strive,2,sonnets,0 devise,2,sonnets,0 shaken,2,sonnets,0 bosom,2,sonnets,0 little,2,sonnets,0 alive,2,sonnets,0 fiend,2,sonnets,0 creatures,2,sonnets,0 fond,2,sonnets,0 dyed,2,sonnets,0 monument,2,sonnets,0 ye,2,sonnets,0 Tired,2,sonnets,0 clearer,2,sonnets,0 cheque,2,sonnets,0 enemies,2,sonnets,0 sweetly,2,sonnets,0 deem'd,2,sonnets,0 broke,2,sonnets,0 Art,2,sonnets,0 guess,2,sonnets,0 guest,2,sonnets,0 lead,2,sonnets,0 watch,2,sonnets,0 often,2,sonnets,0 leap,2,sonnets,0 Kill,2,sonnets,0 mask'd,2,sonnets,0 Beauty,2,sonnets,0 sensual,2,sonnets,0 Gilding,2,sonnets,0 triumphant,2,sonnets,0 built,2,sonnets,0 note,2,sonnets,0 unknown,2,sonnets,0 repose,2,sonnets,0 thinks,2,sonnets,0 envy,2,sonnets,0 lack'd,2,sonnets,0 beast,2,sonnets,0 majesty,2,sonnets,0 remedy,2,sonnets,0 hawks,2,sonnets,0 slain,2,sonnets,0 chase,2,sonnets,0 learning,2,sonnets,0 THE,2,sonnets,0 question,2,sonnets,0 discontent,2,sonnets,0 seasons,2,sonnets,0 Makes,2,sonnets,0 plead,2,sonnets,0 robbery,2,sonnets,0 wrought,2,sonnets,0 belong,2,sonnets,0 concord,2,sonnets,0 Bearing,2,sonnets,0 chief,2,sonnets,0 dream,2,sonnets,0 temptation,2,sonnets,0 mark,2,sonnets,0 injuries,2,sonnets,0 bettering,2,sonnets,0 issue,2,sonnets,0 flatter,2,sonnets,0 riper,2,sonnets,0 special,2,sonnets,0 mountain,2,sonnets,0 benefit,2,sonnets,0 thievish,2,sonnets,0 worthless,2,sonnets,0 borrow'd,2,sonnets,0 Made,2,sonnets,0 compounds,2,sonnets,0 converted,2,sonnets,0 desired,2,sonnets,0 SONNETS,2,sonnets,0 possession,2,sonnets,0 breed,2,sonnets,0 slight,2,sonnets,0 affairs,2,sonnets,0 wrongs,2,sonnets,0 example,2,sonnets,0 off,2,sonnets,0 gay,2,sonnets,0 unseen,2,sonnets,0 creation,2,sonnets,0 influence,2,sonnets,0 walks,2,sonnets,0 Dear,2,sonnets,0 clock,2,sonnets,0 walls,2,sonnets,0 alters,2,sonnets,0 torture,2,sonnets,0 dust,2,sonnets,0 stage,2,sonnets,0 duty,2,sonnets,0 poet,2,sonnets,0 growing,2,sonnets,0 wood,2,sonnets,0 Knowing,2,sonnets,0 coming,2,sonnets,0 next,2,sonnets,0 bounty,2,sonnets,0 survive,2,sonnets,0 fix'd,2,sonnets,0 husbandry,2,sonnets,0 faces,2,sonnets,0 dreams,2,sonnets,0 ransom,2,sonnets,0 rotten,2,sonnets,0 forfeit,2,sonnets,0 tatter'd,2,sonnets,0 womb,2,sonnets,0 bitterness,2,sonnets,0 lust,2,sonnets,0 wondrous,2,sonnets,0 haply,2,sonnets,0 whence,2,sonnets,0 glad,2,sonnets,0 hideous,2,sonnets,0 guilty,2,sonnets,0 diseased,2,sonnets,0 quest,2,sonnets,0 cloud,2,sonnets,0 wilful,2,sonnets,0 churl,2,sonnets,0 humour,2,sonnets,0 wires,2,sonnets,0 heavily,2,sonnets,0 word,2,sonnets,0 allow,2,sonnets,0 esteem'd,2,sonnets,0 Mark,2,sonnets,0 perfect,2,sonnets,0 fine,2,sonnets,0 folly,2,sonnets,0 married,2,sonnets,0 bark,2,sonnets,0 thereby,2,sonnets,0 niggard,2,sonnets,0 mansion,2,sonnets,0 shown,2,sonnets,0 vex,2,sonnets,0 depart,2,sonnets,0 Stealing,2,sonnets,0 bars,2,sonnets,0 gilded,2,sonnets,0 Each,2,sonnets,0 soul's,2,sonnets,0 lay,2,sonnets,0 man's,2,sonnets,0 farthest,2,sonnets,0 torment,2,sonnets,0 master,2,sonnets,0 defect,2,sonnets,0 counterfeit,2,sonnets,0 sourly,2,sonnets,0 feeding,2,sonnets,0 falsehood,2,sonnets,0 vainly,2,sonnets,0 yellow,2,sonnets,0 seat,2,sonnets,0 interest,2,sonnets,0 perfumes,2,sonnets,0 elements,2,sonnets,0 copy,2,sonnets,0 captain,2,sonnets,0 goodness,2,sonnets,0 oppress'd,2,sonnets,0 aught,2,sonnets,0 presence,2,sonnets,0 feeling,2,sonnets,0 trespass,2,sonnets,0 unkindness,2,sonnets,0 look'd,2,sonnets,0 'twixt,2,sonnets,0 age's,2,sonnets,0 tells,2,sonnets,0 render,2,sonnets,0 sound,2,sonnets,0 sacred,2,sonnets,0 cry,2,sonnets,0 changing,2,sonnets,0 nights,2,sonnets,0 huge,2,sonnets,0 bail,2,sonnets,0 lovers,2,sonnets,0 remove,2,sonnets,0 souls,2,sonnets,0 blushing,2,sonnets,0 excellence,2,sonnets,0 whilst,2,sonnets,0 growest,2,sonnets,0 send,2,sonnets,0 deceive,2,sonnets,0 goes,2,sonnets,0 winters,2,sonnets,0 sullen,2,sonnets,0 canopy,2,sonnets,0 controlling,2,sonnets,0 triumph,2,sonnets,0 eat,2,sonnets,0 petty,2,sonnets,0 map,2,sonnets,0 commits,2,sonnets,0 confound,2,sonnets,0 spirits,2,sonnets,0 limbs,2,sonnets,0 alter'd,2,sonnets,0 careful,2,sonnets,0 seldom,2,sonnets,0 learn,2,sonnets,0 poets,2,sonnets,0 doing,2,sonnets,0 Finding,2,sonnets,0 remember,2,sonnets,0 Sometime,2,sonnets,0 lofty,2,sonnets,0 Sets,2,sonnets,0 antiquity,2,sonnets,0 Painting,2,sonnets,0 powerful,2,sonnets,0 fled,2,sonnets,0 fashion,2,sonnets,0 physic,2,sonnets,0 mourning,2,sonnets,0 telling,2,sonnets,0 last,2,sonnets,0 fever,2,sonnets,0 maladies,2,sonnets,0 Mad,2,sonnets,0 adjunct,2,sonnets,0 Looking,2,sonnets,0 suspect,2,sonnets,0 besides,2,sonnets,0 going,2,sonnets,0 content,2,sonnets,0 try,2,sonnets,0 silent,2,sonnets,0 'This,2,sonnets,0 leads,2,sonnets,0 widow,2,sonnets,0 Resembling,2,sonnets,0 lover's,2,sonnets,0 pattern,2,sonnets,0 asleep,2,sonnets,0 follow,2,sonnets,0 Die,2,sonnets,0 pent,2,sonnets,0 bred,2,sonnets,0 lame,2,sonnets,0 tie,2,sonnets,0 pass'd,2,sonnets,0 tired,2,sonnets,0 wills,2,sonnets,0 Unlook'd,2,sonnets,0 king,2,sonnets,0 alchemy,2,sonnets,0 mutual,2,sonnets,0 eyelids,2,sonnets,0 doting,2,sonnets,0 forbear,2,sonnets,0 remembrance,2,sonnets,0 breathe,2,sonnets,0 oaths,2,sonnets,0 himself,2,sonnets,0 bide,2,sonnets,0 fading,2,sonnets,0 turn'd,2,sonnets,0 vanish'd,2,sonnets,0 grounded,2,sonnets,0 sway,2,sonnets,0 brave,3,sonnets,0 answer,3,sonnets,0 forbid,3,sonnets,0 happier,3,sonnets,0 Pity,3,sonnets,0 heir,3,sonnets,0 double,3,sonnets,0 weary,3,sonnets,0 woman's,3,sonnets,0 shadows,3,sonnets,0 lawful,3,sonnets,0 haste,3,sonnets,0 bonds,3,sonnets,0 Will,3,sonnets,0 mend,3,sonnets,0 despised,3,sonnets,0 thorns,3,sonnets,0 chest,3,sonnets,0 nought,3,sonnets,0 works,3,sonnets,0 remain,3,sonnets,0 friends,3,sonnets,0 plague,3,sonnets,0 soon,3,sonnets,0 conscience,3,sonnets,0 draw,3,sonnets,0 pine,3,sonnets,0 grows,3,sonnets,0 line,3,sonnets,0 confounds,3,sonnets,0 injury,3,sonnets,0 sure,3,sonnets,0 fingers,3,sonnets,0 complexion,3,sonnets,0 teach,3,sonnets,0 perjured,3,sonnets,0 sinful,3,sonnets,0 ocean,3,sonnets,0 stands,3,sonnets,0 bastard,3,sonnets,0 virtuous,3,sonnets,0 audit,3,sonnets,0 anew,3,sonnets,0 birds,3,sonnets,0 son,3,sonnets,0 sworn,3,sonnets,0 'I,3,sonnets,0 cause,3,sonnets,0 amiss,3,sonnets,0 vile,3,sonnets,0 fight,3,sonnets,0 receives,3,sonnets,0 conceit,3,sonnets,0 fault,3,sonnets,0 above,3,sonnets,0 brief,3,sonnets,0 Whereto,3,sonnets,0 flesh,3,sonnets,0 want,3,sonnets,0 edge,3,sonnets,0 know'st,3,sonnets,0 seem'd,3,sonnets,0 hate',3,sonnets,0 cunning,3,sonnets,0 matter,3,sonnets,0 steel,3,sonnets,0 tend,3,sonnets,0 colour,3,sonnets,0 knowledge,3,sonnets,0 manners,3,sonnets,0 unkind,3,sonnets,0 wanting,3,sonnets,0 foes,3,sonnets,0 flattery,3,sonnets,0 infection,3,sonnets,0 pay,3,sonnets,0 His,3,sonnets,0 boy,3,sonnets,0 Lo,3,sonnets,0 razed,3,sonnets,0 eternity,3,sonnets,0 proof,3,sonnets,0 plea,3,sonnets,0 kept,3,sonnets,0 star,3,sonnets,0 approve,3,sonnets,0 bed,3,sonnets,0 means,3,sonnets,0 blest,3,sonnets,0 quick,3,sonnets,0 despair,3,sonnets,0 pass,3,sonnets,0 outlive,3,sonnets,0 god,3,sonnets,0 weed,3,sonnets,0 weep,3,sonnets,0 control,3,sonnets,0 burn,3,sonnets,0 got,3,sonnets,0 wear,3,sonnets,0 just,3,sonnets,0 conquest,3,sonnets,0 survey,3,sonnets,0 sins,3,sonnets,0 picture,3,sonnets,0 turns,3,sonnets,0 Both,3,sonnets,0 sail,3,sonnets,0 tyrant,3,sonnets,0 favour,3,sonnets,0 murderous,3,sonnets,0 Past,3,sonnets,0 stone,3,sonnets,0 seeming,3,sonnets,0 husband,3,sonnets,0 speed,3,sonnets,0 growth,3,sonnets,0 eye's,3,sonnets,0 moon,3,sonnets,0 wherein,3,sonnets,0 greater,3,sonnets,0 forgot,3,sonnets,0 hot,3,sonnets,0 thrice,3,sonnets,0 brought,3,sonnets,0 reasons,3,sonnets,0 remember'd,3,sonnets,0 half,3,sonnets,0 basest,3,sonnets,0 weeds,3,sonnets,0 acquaintance,3,sonnets,0 pluck,3,sonnets,0 course,3,sonnets,0 winter's,3,sonnets,0 mock,3,sonnets,0 frown,3,sonnets,0 twain,3,sonnets,0 pace,3,sonnets,0 foot,3,sonnets,0 fool,3,sonnets,0 maiden,3,sonnets,0 Are,3,sonnets,0 height,3,sonnets,0 main,3,sonnets,0 silence,3,sonnets,0 express'd,3,sonnets,0 almost,3,sonnets,0 wonder,3,sonnets,0 action,3,sonnets,0 gavest,3,sonnets,0 daily,3,sonnets,0 bears,3,sonnets,0 blunt,3,sonnets,0 She,3,sonnets,0 posterity,3,sonnets,0 evermore,3,sonnets,0 Thyself,3,sonnets,0 Dost,3,sonnets,0 mourn,3,sonnets,0 general,3,sonnets,0 effect,3,sonnets,0 elsewhere,3,sonnets,0 prize,3,sonnets,0 didst,3,sonnets,0 bloody,3,sonnets,0 dearest,3,sonnets,0 blot,3,sonnets,0 over,3,sonnets,0 number,3,sonnets,0 stain,3,sonnets,0 losing,3,sonnets,0 proved,3,sonnets,0 grave,3,sonnets,0 flies,3,sonnets,0 style,3,sonnets,0 five,3,sonnets,0 odour,3,sonnets,0 confined,3,sonnets,0 death's,3,sonnets,0 crown'd,3,sonnets,0 Can,3,sonnets,0 'Tis,3,sonnets,0 women's,3,sonnets,0 receivest,3,sonnets,0 fade,3,sonnets,0 vulgar,3,sonnets,0 takes,3,sonnets,0 taken,3,sonnets,0 rain,3,sonnets,0 farther,3,sonnets,0 cover,3,sonnets,0 fill'd,3,sonnets,0 ground,3,sonnets,0 character,3,sonnets,0 minds,3,sonnets,0 desert,3,sonnets,0 fall,3,sonnets,0 constancy,3,sonnets,0 wert,3,sonnets,0 grant,3,sonnets,0 methinks,3,sonnets,0 fame,3,sonnets,0 three,3,sonnets,0 work,3,sonnets,0 west,3,sonnets,0 ride,3,sonnets,0 flame,3,sonnets,0 vow,3,sonnets,0 fill,3,sonnets,0 bare,3,sonnets,0 kiss,3,sonnets,0 constant,3,sonnets,0 thousand,3,sonnets,0 shore,3,sonnets,0 home,3,sonnets,0 clear,3,sonnets,0 greet,3,sonnets,0 'Fair,3,sonnets,0 fairer,3,sonnets,0 decease,3,sonnets,0 cost,3,sonnets,0 heavenly,3,sonnets,0 therein,3,sonnets,0 wretched,3,sonnets,0 mother's,3,sonnets,0 ear,3,sonnets,0 clouds,3,sonnets,0 Before,3,sonnets,0 abuse,3,sonnets,0 body's,3,sonnets,0 thinking,3,sonnets,0 wound,3,sonnets,0 father,3,sonnets,0 April,3,sonnets,0 appetite,3,sonnets,0 windows,3,sonnets,0 simple,3,sonnets,0 witness,3,sonnets,0 expense,3,sonnets,0 laid,3,sonnets,0 dark,3,sonnets,0 another's,3,sonnets,0 shake,3,sonnets,0 burden,3,sonnets,0 Take,3,sonnets,0 record,3,sonnets,0 cross,3,sonnets,0 kill,3,sonnets,0 woman,3,sonnets,0 repair,3,sonnets,0 wouldst,3,sonnets,0 told,4,sonnets,0 red,4,sonnets,0 leisure,4,sonnets,0 mistress,4,sonnets,0 brass,4,sonnets,0 help,4,sonnets,0 assured,4,sonnets,0 single,4,sonnets,0 here,4,sonnets,0 groan,4,sonnets,0 toil,4,sonnets,0 appear,4,sonnets,0 although,4,sonnets,0 under,4,sonnets,0 worms,4,sonnets,0 calls,4,sonnets,0 cheeks,4,sonnets,0 song,4,sonnets,0 grown,4,sonnets,0 heat,4,sonnets,0 body,4,sonnets,0 touches,4,sonnets,0 sea,4,sonnets,0 Was,4,sonnets,0 second,4,sonnets,0 scythe,4,sonnets,0 These,4,sonnets,0 turn,4,sonnets,0 crime,4,sonnets,0 common,4,sonnets,0 worthy,4,sonnets,0 sum,4,sonnets,0 speaking,4,sonnets,0 rude,4,sonnets,0 sense,4,sonnets,0 praises,4,sonnets,0 Do,4,sonnets,0 wherefore,4,sonnets,0 While,4,sonnets,0 Her,4,sonnets,0 absent,4,sonnets,0 behind,4,sonnets,0 buds,4,sonnets,0 jewel,4,sonnets,0 used,4,sonnets,0 said,4,sonnets,0 story,4,sonnets,0 image,4,sonnets,0 air,4,sonnets,0 painting,4,sonnets,0 needs,4,sonnets,0 gain,4,sonnets,0 tongues,4,sonnets,0 Unless,4,sonnets,0 time's,4,sonnets,0 lends,4,sonnets,0 account,4,sonnets,0 sometime,4,sonnets,0 lost,4,sonnets,0 add,4,sonnets,0 removed,4,sonnets,0 forsworn,4,sonnets,0 contented,4,sonnets,0 errors,4,sonnets,0 report,4,sonnets,0 rare,4,sonnets,0 substance,4,sonnets,0 young,4,sonnets,0 ere,4,sonnets,0 high,4,sonnets,0 beauties,4,sonnets,0 minutes,4,sonnets,0 thief,4,sonnets,0 free,4,sonnets,0 Being,4,sonnets,0 taste,4,sonnets,0 former,4,sonnets,0 win,4,sonnets,0 break,4,sonnets,0 knife,4,sonnets,0 morrow,4,sonnets,0 prime,4,sonnets,0 abundance,4,sonnets,0 count,4,sonnets,0 Thine,4,sonnets,0 believe,4,sonnets,0 Three,4,sonnets,0 evil,4,sonnets,0 please,4,sonnets,0 ne'er,4,sonnets,0 rehearse,4,sonnets,0 bath,4,sonnets,0 hour,4,sonnets,0 comfort,4,sonnets,0 public,4,sonnets,0 given,4,sonnets,0 holds,4,sonnets,0 holy,4,sonnets,0 inward,4,sonnets,0 babe,4,sonnets,0 seek,4,sonnets,0 others',4,sonnets,0 increase,4,sonnets,0 unused,4,sonnets,0 blame,4,sonnets,0 return,4,sonnets,0 nature's,4,sonnets,0 sleep,4,sonnets,0 lays,4,sonnets,0 mad,4,sonnets,0 lease,4,sonnets,0 sovereign,4,sonnets,0 May,4,sonnets,0 shade,4,sonnets,0 Death,4,sonnets,0 numbers,4,sonnets,0 respect,4,sonnets,0 dare,4,sonnets,0 frame,4,sonnets,0 catch,4,sonnets,0 shine,4,sonnets,0 without,4,sonnets,0 smell,4,sonnets,0 lack,4,sonnets,0 tomb,5,sonnets,0 grew,5,sonnets,0 took,5,sonnets,0 motion,5,sonnets,0 truly,5,sonnets,0 painted,5,sonnets,0 tears,5,sonnets,0 trust,5,sonnets,0 graces,5,sonnets,0 birth,5,sonnets,0 saw,5,sonnets,0 Give,5,sonnets,0 gracious,5,sonnets,0 cheek,5,sonnets,0 golden,5,sonnets,0 making,5,sonnets,0 invention,5,sonnets,0 fell,5,sonnets,0 Such,5,sonnets,0 subject,5,sonnets,0 beloved,5,sonnets,0 scope,5,sonnets,0 merit,5,sonnets,0 worse,5,sonnets,0 brain,5,sonnets,0 absence,5,sonnets,0 One,5,sonnets,0 hence,5,sonnets,0 brand,5,sonnets,0 wish,5,sonnets,0 world's,5,sonnets,0 book,5,sonnets,0 else,5,sonnets,0 fairest,5,sonnets,0 side,5,sonnets,0 At,5,sonnets,0 Ah,5,sonnets,0 music,5,sonnets,0 eternal,5,sonnets,0 Nature,5,sonnets,0 Within,5,sonnets,0 play,5,sonnets,0 gave,5,sonnets,0 down,5,sonnets,0 grief,5,sonnets,0 canker,5,sonnets,0 ornament,5,sonnets,0 despite,5,sonnets,0 quite,5,sonnets,0 gift,5,sonnets,0 left,5,sonnets,0 lend,5,sonnets,0 boast,5,sonnets,0 buried,5,sonnets,0 doom,5,sonnets,0 done,5,sonnets,0 wrinkles,5,sonnets,0 loved,5,sonnets,0 spend,5,sonnets,0 men's,5,sonnets,0 hue,5,sonnets,0 More,5,sonnets,0 sweetest,5,sonnets,0 present,5,sonnets,0 pain,5,sonnets,0 moan,5,sonnets,0 Have,5,sonnets,0 Your,5,sonnets,0 keeps,5,sonnets,0 rank,5,sonnets,0 antique,5,sonnets,0 water,5,sonnets,0 faith,5,sonnets,0 into,5,sonnets,0 hide,5,sonnets,0 year,5,sonnets,0 yours,5,sonnets,0 mortal,5,sonnets,0 stars,5,sonnets,0 'gainst,5,sonnets,0 chide,5,sonnets,0 need,5,sonnets,0 mistress',5,sonnets,0 Were,5,sonnets,0 near,5,sonnets,0 oft,5,sonnets,0 sorrow,5,sonnets,0 cure,5,sonnets,0 only,5,sonnets,0 says,5,sonnets,0 rage,5,sonnets,0 sweets,5,sonnets,0 angel,5,sonnets,0 compare,5,sonnets,0 fortune,5,sonnets,0 roses,5,sonnets,0 Sweet,5,sonnets,0 lived,5,sonnets,0 base,5,sonnets,0 fast,5,sonnets,0 large,5,sonnets,0 short,5,sonnets,0 Although,5,sonnets,0 winter,5,sonnets,0 hearts,5,sonnets,0 tied,5,sonnets,0 barren,5,sonnets,0 purpose,5,sonnets,0 slow,5,sonnets,0 man,5,sonnets,0 'Will',5,sonnets,0 least,5,sonnets,0 spite,5,sonnets,0 Without,5,sonnets,0 nature,5,sonnets,0 date,5,sonnets,0 spring,5,sonnets,0 flower,5,sonnets,0 stol'n,5,sonnets,0 shape,5,sonnets,0 pity,6,sonnets,0 writ,6,sonnets,0 heart's,6,sonnets,0 care,6,sonnets,0 strength,6,sonnets,0 Whose,6,sonnets,0 hear,6,sonnets,0 head,6,sonnets,0 enough,6,sonnets,0 light,6,sonnets,0 within,6,sonnets,0 read,6,sonnets,0 taught,6,sonnets,0 wrong,6,sonnets,0 rhyme,6,sonnets,0 blind,6,sonnets,0 steal,6,sonnets,0 rest,6,sonnets,0 sick,6,sonnets,0 'Will,6,sonnets,0 canst,6,sonnets,0 On,6,sonnets,0 It,6,sonnets,0 past,6,sonnets,0 swift,6,sonnets,0 been,6,sonnets,0 longer,6,sonnets,0 sing,6,sonnets,0 go,6,sonnets,0 dwell,6,sonnets,0 fears,6,sonnets,0 spent,6,sonnets,0 excuse,6,sonnets,0 whether,6,sonnets,0 speak,6,sonnets,0 judgment,6,sonnets,0 Hath,6,sonnets,0 having,6,sonnets,0 through,6,sonnets,0 shouldst,6,sonnets,0 rose,6,sonnets,0 Doth,6,sonnets,0 precious,6,sonnets,0 Look,6,sonnets,0 heaven's,6,sonnets,0 wit,6,sonnets,0 heavy,6,sonnets,0 way,6,sonnets,0 war,6,sonnets,0 themselves,6,sonnets,0 dumb,6,sonnets,0 dull,6,sonnets,0 Make,6,sonnets,0 Till,6,sonnets,0 shows,6,sonnets,0 wealth,6,sonnets,0 hope,6,sonnets,0 reason,6,sonnets,0 green,6,sonnets,0 argument,6,sonnets,0 swear,6,sonnets,0 lovest,6,sonnets,0 straight,6,sonnets,0 lips,6,sonnets,0 strange,6,sonnets,0 Lest,6,sonnets,0 due,6,sonnets,0 ten,6,sonnets,0 Upon,7,sonnets,0 sad,7,sonnets,0 blessed,7,sonnets,0 sin,7,sonnets,0 set,7,sonnets,0 worst,7,sonnets,0 white,7,sonnets,0 thence,7,sonnets,0 honour,7,sonnets,0 bring,7,sonnets,0 parts,7,sonnets,0 Love's,7,sonnets,0 Those,7,sonnets,0 itself,7,sonnets,0 bad,7,sonnets,0 He,7,sonnets,0 Save,7,sonnets,0 shadow,7,sonnets,0 put,7,sonnets,0 breath,7,sonnets,0 breast,7,sonnets,0 Making,7,sonnets,0 seeing,7,sonnets,0 You,7,sonnets,0 less,7,sonnets,0 outward,7,sonnets,0 foul,7,sonnets,0 forth,7,sonnets,0 fresh,7,sonnets,0 tender,7,sonnets,0 very,7,sonnets,0 Some,7,sonnets,0 I'll,7,sonnets,0 slave,7,sonnets,0 living,7,sonnets,0 same,7,sonnets,0 Thus,7,sonnets,0 waste,7,sonnets,0 wide,7,sonnets,0 cold,7,sonnets,0 makes,7,sonnets,0 virtue,7,sonnets,0 behold,7,sonnets,0 joy,8,sonnets,0 hell,8,sonnets,0 decay,8,sonnets,0 view,8,sonnets,0 against,8,sonnets,0 skill,8,sonnets,0 disgrace,8,sonnets,0 faults,8,sonnets,0 born,8,sonnets,0 fear,8,sonnets,0 grow,8,sonnets,0 cruel,8,sonnets,0 flowers,8,sonnets,0 blood,8,sonnets,0 'tis,8,sonnets,0 Like,8,sonnets,0 deep,8,sonnets,0 memory,8,sonnets,0 loves,8,sonnets,0 lose,8,sonnets,0 beauteous,8,sonnets,0 delight,8,sonnets,0 Therefore,8,sonnets,0 child,8,sonnets,0 leaves,8,sonnets,0 This,8,sonnets,0 sake,8,sonnets,0 stand,8,sonnets,0 lines,8,sonnets,0 till,8,sonnets,0 gives,8,sonnets,0 lovely,8,sonnets,0 brow,8,sonnets,0 glory,8,sonnets,0 two,8,sonnets,0 cannot,8,sonnets,0 summer,8,sonnets,0 times,9,sonnets,0 treasure,9,sonnets,0 yourself,9,sonnets,0 another,9,sonnets,0 Now,9,sonnets,0 after,9,sonnets,0 therefore,9,sonnets,0 Be,9,sonnets,0 stay,9,sonnets,0 since,9,sonnets,0 gone,9,sonnets,0 store,9,sonnets,0 loss,9,sonnets,0 keep,9,sonnets,0 could,9,sonnets,0 loving,9,sonnets,0 great,9,sonnets,0 strong,9,sonnets,0 lives,9,sonnets,0 back,9,sonnets,0 power,9,sonnets,0 o'er,10,sonnets,0 soul,10,sonnets,0 words,10,sonnets,0 call,10,sonnets,0 full,10,sonnets,0 glass,10,sonnets,0 Not,10,sonnets,0 others,10,sonnets,0 Though,10,sonnets,0 desire,10,sonnets,0 deeds,10,sonnets,0 pen,10,sonnets,0 Is,10,sonnets,0 place,10,sonnets,0 right,10,sonnets,0 Against,10,sonnets,0 Love,10,sonnets,0 again,10,sonnets,0 All,10,sonnets,0 once,10,sonnets,0 fire,10,sonnets,0 found,10,sonnets,0 happy,10,sonnets,0 Shall,10,sonnets,0 Even,10,sonnets,0 take,10,sonnets,0 Let,10,sonnets,0 Mine,10,sonnets,0 leave,10,sonnets,0 write,10,sonnets,0 shame,10,sonnets,0 spirit,10,sonnets,0 die,10,sonnets,0 summer's,11,sonnets,0 Whilst,11,sonnets,0 sun,11,sonnets,0 bright,11,sonnets,0 pleasure,11,sonnets,0 bear,11,sonnets,0 any,11,sonnets,0 earth,11,sonnets,0 grace,11,sonnets,0 form,11,sonnets,0 end,11,sonnets,0 knows,11,sonnets,0 They,11,sonnets,0 who,11,sonnets,0 pride,11,sonnets,0 rich,11,sonnets,0 seen,11,sonnets,0 whom,11,sonnets,0 Where,11,sonnets,0 shalt,11,sonnets,0 kind,11,sonnets,0 Time's,12,sonnets,0 lies,12,sonnets,0 Why,12,sonnets,0 death,12,sonnets,0 looks,12,sonnets,0 long,12,sonnets,0 hate,12,sonnets,0 mayst,12,sonnets,0 Than,12,sonnets,0 change,12,sonnets,0 none,12,sonnets,0 woe,12,sonnets,0 before,12,sonnets,0 thing,12,sonnets,0 ever,12,sonnets,0 use,12,sonnets,0 seem,12,sonnets,0 hours,12,sonnets,0 black,13,sonnets,0 heaven,13,sonnets,0 each,13,sonnets,0 proud,13,sonnets,0 prove,13,sonnets,0 whose,13,sonnets,0 gentle,13,sonnets,0 From,13,sonnets,0 many,13,sonnets,0 why,13,sonnets,0 Time,13,sonnets,0 hold,13,sonnets,0 wilt,13,sonnets,0 come,13,sonnets,0 first,13,sonnets,0 lie,13,sonnets,0 both,14,sonnets,0 friend,14,sonnets,0 tell,14,sonnets,0 had,14,sonnets,0 By,14,sonnets,0 we,14,sonnets,0 things,14,sonnets,0 state,14,sonnets,0 think,14,sonnets,0 even,14,sonnets,0 thus,14,sonnets,0 poor,14,sonnets,0 What,14,sonnets,0 never,15,sonnets,0 good,15,sonnets,0 tongue,15,sonnets,0 age,15,sonnets,0 verse,15,sonnets,0 youth,15,sonnets,0 find,15,sonnets,0 men,15,sonnets,0 Since,15,sonnets,0 much,16,sonnets,0 Muse,16,sonnets,0 these,16,sonnets,0 there,16,sonnets,0 look,16,sonnets,0 dead,16,sonnets,0 an,16,sonnets,0 hast,16,sonnets,0 far,16,sonnets,0 mind,16,sonnets,0 our,16,sonnets,0 let,16,sonnets,0 other,16,sonnets,0 ',17,sonnets,0 A,17,sonnets,0 days,17,sonnets,0 sight,17,sonnets,0 beauty's,17,sonnets,0 name,17,sonnets,0 No,17,sonnets,0 know,17,sonnets,0 up,17,sonnets,0 made,17,sonnets,0 out,17,sonnets,0 too,17,sonnets,0 thought,18,sonnets,0 Who,18,sonnets,0 nothing,18,sonnets,0 better,18,sonnets,0 them,18,sonnets,0 away,18,sonnets,0 With,18,sonnets,0 thyself,18,sonnets,0 hand,18,sonnets,0 thoughts,18,sonnets,0 worth,19,sonnets,0 false,19,sonnets,0 Yet,19,sonnets,0 how,19,sonnets,0 face,19,sonnets,0 alone,19,sonnets,0 self,19,sonnets,0 love's,20,sonnets,0 Of,20,sonnets,0 dear,20,sonnets,0 ill,20,sonnets,0 part,20,sonnets,0 must,21,sonnets,0 at,21,sonnets,0 How,21,sonnets,0 would,21,sonnets,0 upon,22,sonnets,0 truth,22,sonnets,0 night,22,sonnets,0 best,22,sonnets,0 give,22,sonnets,0 show,22,sonnets,0 old,22,sonnets,0 life,23,sonnets,0 though,23,sonnets,0 some,24,sonnets,0 Nor,24,sonnets,0 most,25,sonnets,0 Thou,25,sonnets,0 was,25,sonnets,0 were,25,sonnets,0 may,25,sonnets,0 might,25,sonnets,0 such,26,sonnets,0 dost,26,sonnets,0 those,26,sonnets,0 well,26,sonnets,0 Thy,26,sonnets,0 did,26,sonnets,0 say,27,sonnets,0 new,27,sonnets,0 myself,27,sonnets,0 world,28,sonnets,0 like,28,sonnets,0 praise,28,sonnets,0 nor,28,sonnets,0 day,28,sonnets,0 being,28,sonnets,0 My,29,sonnets,0 live,29,sonnets,0 own,30,sonnets,0 every,31,sonnets,0 she,31,sonnets,0 yet,31,sonnets,0 in,287,sonnets,0 where,32,sonnets,0 If,34,sonnets,0 am,34,sonnets,0 if,34,sonnets,0 Then,34,sonnets,0 see,35,sonnets,0 him,35,sonnets,0 he,35,sonnets,0 now,35,sonnets,0 than,36,sonnets,0 In,36,sonnets,0 true,36,sonnets,0 Or,37,sonnets,0 hath,37,sonnets,0 make,37,sonnets,0 eye,38,sonnets,0 one,38,sonnets,0 still,39,sonnets,0 As,40,sonnets,0 thine,40,sonnets,0 then,41,sonnets,0 fair,41,sonnets,0 time,41,sonnets,0 they,42,sonnets,0 can,42,sonnets,0 or,42,sonnets,0 should,44,sonnets,0 Which,46,sonnets,0 her,47,sonnets,0 So,47,sonnets,0 O,49,sonnets,0 art,49,sonnets,0 when,49,sonnets,0 shall,49,sonnets,0 will,50,sonnets,0 beauty,50,sonnets,0 heart,51,sonnets,0 eyes,51,sonnets,0 sweet,51,sonnets,0 mine,53,sonnets,0 what,56,sonnets,0 When,57,sonnets,0 more,59,sonnets,0 which,61,sonnets,0 no,61,sonnets,0 their,62,sonnets,0 are,66,sonnets,0 from,68,sonnets,0 have,70,sonnets,0 For,73,sonnets,0 on,74,sonnets,0 but,75,sonnets,0 by,78,sonnets,0 my,335,sonnets,0 to,335,sonnets,0 To,80,sonnets,0 do,80,sonnets,0 as,81,sonnets,0 The,81,sonnets,0 doth,82,sonnets,0 That,82,sonnets,0 your,84,sonnets,0 I,342,sonnets,0 But,89,sonnets,0 this,95,sonnets,0 of,351,sonnets,0 it,98,sonnets,0 so,98,sonnets,0 for,98,sonnets,0 his,104,sonnets,0 you,104,sonnets,0 the,363,sonnets,0 all,109,sonnets,0 be,132,sonnets,0 a,147,sonnets,0 love,157,sonnets,0 not,157,sonnets,0 is,159,sonnets,0 thee,161,sonnets,0 me,162,sonnets,0 with,163,sonnets,0 thou,209,sonnets,0 that,238,sonnets,0 thy,240,sonnets,0 And,242,sonnets,0 and,247,sonnets,0 disarm,1,tempest,1611 peopled,1,tempest,1611 treason,1,tempest,1611 indignation,1,tempest,1611 islanders,1,tempest,1611 generation,1,tempest,1611 troubled,1,tempest,1611 regard,1,tempest,1611 'gaitist,1,tempest,1611 washing,1,tempest,1611 scrape,1,tempest,1611 Flesh,1,tempest,1611 instruments,1,tempest,1611 piss,1,tempest,1611 deafness,1,tempest,1611 relief,1,tempest,1611 Melting,1,tempest,1611 V,1,tempest,1611 times,1,tempest,1611 grew,1,tempest,1611 debts,1,tempest,1611 advantageous,1,tempest,1611 Hereditary,1,tempest,1611 injunction,1,tempest,1611 pits,1,tempest,1611 rectify,1,tempest,1611 Harmoniously,1,tempest,1611 advice,1,tempest,1611 fancy,1,tempest,1611 basis,1,tempest,1611 took,1,tempest,1611 SPOKEN,1,tempest,1611 John,1,tempest,1611 infected,1,tempest,1611 marrying,1,tempest,1611 Loved,1,tempest,1611 plaster,1,tempest,1611 motion,1,tempest,1611 closeness,1,tempest,1611 direful,1,tempest,1611 belongs,1,tempest,1611 leisure,1,tempest,1611 resist,1,tempest,1611 double,1,tempest,1611 truer,1,tempest,1611 viands,1,tempest,1611 weary,1,tempest,1611 footfall,1,tempest,1611 inveterate,1,tempest,1611 African,1,tempest,1611 horse,1,tempest,1611 discord,1,tempest,1611 badest,1,tempest,1611 'Lord',1,tempest,1611 fuel,1,tempest,1611 hinder,1,tempest,1611 instructs,1,tempest,1611 knell,1,tempest,1611 woman's,1,tempest,1611 cellar,1,tempest,1611 Weeps,1,tempest,1611 Fie,1,tempest,1611 securing,1,tempest,1611 honours,1,tempest,1611 wooden,1,tempest,1611 brown,1,tempest,1611 Nobody,1,tempest,1611 rascal,1,tempest,1611 resign,1,tempest,1611 rob,1,tempest,1611 suppose,1,tempest,1611 steals,1,tempest,1611 highness',1,tempest,1611 Beat,1,tempest,1611 Bear,1,tempest,1611 day's,1,tempest,1611 muse,1,tempest,1611 villain,1,tempest,1611 hush'd,1,tempest,1611 mountaineers,1,tempest,1611 destroyed,1,tempest,1611 Lingering,1,tempest,1611 devouring,1,tempest,1611 held,1,tempest,1611 Never,1,tempest,1611 Iris,1,tempest,1611 helps,1,tempest,1611 Refusing,1,tempest,1611 strengthen,1,tempest,1611 laughter,1,tempest,1611 dish,1,tempest,1611 swiftly,1,tempest,1611 entered,1,tempest,1611 frees,1,tempest,1611 flung,1,tempest,1611 Cock,1,tempest,1611 Measure,1,tempest,1611 poisonous,1,tempest,1611 fumes,1,tempest,1611 muscles,1,tempest,1611 Passion,1,tempest,1611 thorns,1,tempest,1611 sleepy,1,tempest,1611 vigilance,1,tempest,1611 miss't,1,tempest,1611 hers,1,tempest,1611 Preserve,1,tempest,1611 preciously,1,tempest,1611 trunk,1,tempest,1611 herd,1,tempest,1611 vain,1,tempest,1611 coral,1,tempest,1611 celestial,1,tempest,1611 braver,1,tempest,1611 chess,1,tempest,1611 unwholesome,1,tempest,1611 loathness,1,tempest,1611 disease,1,tempest,1611 blossom,1,tempest,1611 urchins,1,tempest,1611 sighs,1,tempest,1611 prosperous,1,tempest,1611 gorgeous,1,tempest,1611 Neapolitan,1,tempest,1611 toil,1,tempest,1611 honourable,1,tempest,1611 broom,1,tempest,1611 sunburnt,1,tempest,1611 brook,1,tempest,1611 sanctimonious,1,tempest,1611 executor,1,tempest,1611 dive,1,tempest,1611 brood,1,tempest,1611 instrument,1,tempest,1611 tears,1,tempest,1611 rid,1,tempest,1611 hanged,1,tempest,1611 succession,1,tempest,1611 understand,1,tempest,1611 appear,1,tempest,1611 flow,1,tempest,1611 lick,1,tempest,1611 exactly,1,tempest,1611 shelter,1,tempest,1611 throat,1,tempest,1611 sour,1,tempest,1611 terribly,1,tempest,1611 pied,1,tempest,1611 calls,1,tempest,1611 thirty,1,tempest,1611 beauty's,1,tempest,1611 terrible,1,tempest,1611 Wound,1,tempest,1611 innocence,1,tempest,1611 lapp'd,1,tempest,1611 loaden,1,tempest,1611 advocate,1,tempest,1611 Deservedly,1,tempest,1611 dreaming,1,tempest,1611 solemnized,1,tempest,1611 lieu,1,tempest,1611 yarely,1,tempest,1611 ivy,1,tempest,1611 pleasures,1,tempest,1611 dismissed,1,tempest,1611 contrary,1,tempest,1611 lied,1,tempest,1611 joys,1,tempest,1611 tilth,1,tempest,1611 Married,1,tempest,1611 requiring,1,tempest,1611 whoreson,1,tempest,1611 PERSONAE,1,tempest,1611 Incensed,1,tempest,1611 proclaim,1,tempest,1611 boy's,1,tempest,1611 demand,1,tempest,1611 mute,1,tempest,1611 spare,1,tempest,1611 docks,1,tempest,1611 rub,1,tempest,1611 extirpate,1,tempest,1611 song,1,tempest,1611 repulse,1,tempest,1611 lakes,1,tempest,1611 worser,1,tempest,1611 regions,1,tempest,1611 Once,1,tempest,1611 vast,1,tempest,1611 steaded,1,tempest,1611 assaults,1,tempest,1611 Fairly,1,tempest,1611 delivered,1,tempest,1611 strength,1,tempest,1611 bending,1,tempest,1611 soon,1,tempest,1611 disdain,1,tempest,1611 sons,1,tempest,1611 graced,1,tempest,1611 birth,1,tempest,1611 sterile,1,tempest,1611 sad,1,tempest,1611 everything,1,tempest,1611 feather,1,tempest,1611 After,1,tempest,1611 jest,1,tempest,1611 apparition,1,tempest,1611 stock,1,tempest,1611 sadly,1,tempest,1611 stripping,1,tempest,1611 spies,1,tempest,1611 slept,1,tempest,1611 remember'st,1,tempest,1611 sole,1,tempest,1611 grove,1,tempest,1611 thousands,1,tempest,1611 bombard,1,tempest,1611 fowling,1,tempest,1611 matters,1,tempest,1611 lakin,1,tempest,1611 befits,1,tempest,1611 grown,1,tempest,1611 Filth,1,tempest,1611 entrails,1,tempest,1611 'Stay,1,tempest,1611 inhabit,1,tempest,1611 grows,1,tempest,1611 hour's,1,tempest,1611 afire,1,tempest,1611 zenith,1,tempest,1611 resolve,1,tempest,1611 hoist,1,tempest,1611 lime,1,tempest,1611 crying,1,tempest,1611 endow'd,1,tempest,1611 gracious,1,tempest,1611 pike,1,tempest,1611 thou'rt,1,tempest,1611 Keep,1,tempest,1611 possesses,1,tempest,1611 snore,1,tempest,1611 delaying,1,tempest,1611 revels,1,tempest,1611 roar'd,1,tempest,1611 budge,1,tempest,1611 Scarcity,1,tempest,1611 disobey,1,tempest,1611 necessaries,1,tempest,1611 cheer,1,tempest,1611 hearing,1,tempest,1611 cabins,1,tempest,1611 lift,1,tempest,1611 golden,1,tempest,1611 dissolve,1,tempest,1611 knaves,1,tempest,1611 calm,1,tempest,1611 desperation,1,tempest,1611 glass,1,tempest,1611 making,1,tempest,1611 likeness,1,tempest,1611 chains,1,tempest,1611 unnecessarily,1,tempest,1611 complexion,1,tempest,1611 veins,1,tempest,1611 bated,1,tempest,1611 stuffs,1,tempest,1611 expeditious,1,tempest,1611 lesser,1,tempest,1611 features,1,tempest,1611 black,1,tempest,1611 moonshine,1,tempest,1611 visitation,1,tempest,1611 discovers,1,tempest,1611 cankers,1,tempest,1611 attend'st,1,tempest,1611 Gentle,1,tempest,1611 tortoise,1,tempest,1611 discovery,1,tempest,1611 Perchance,1,tempest,1611 phoenix',1,tempest,1611 six,1,tempest,1611 hereafter,1,tempest,1611 weaker,1,tempest,1611 rarest,1,tempest,1611 Dull,1,tempest,1611 sunk,1,tempest,1611 I'm,1,tempest,1611 cherubim,1,tempest,1611 boat,1,tempest,1611 yards,1,tempest,1611 islander,1,tempest,1611 speeches,1,tempest,1611 indignity,1,tempest,1611 conceive,1,tempest,1611 returned,1,tempest,1611 mushrooms,1,tempest,1611 Phoebus',1,tempest,1611 aged,1,tempest,1611 key,1,tempest,1611 subdued,1,tempest,1611 Dash'd,1,tempest,1611 bastard,1,tempest,1611 walk,1,tempest,1611 sustaining,1,tempest,1611 wall,1,tempest,1611 sex,1,tempest,1611 chain'd,1,tempest,1611 Paradise,1,tempest,1611 carrying,1,tempest,1611 totters,1,tempest,1611 deceiver,1,tempest,1611 bogs,1,tempest,1611 society,1,tempest,1611 Exposed,1,tempest,1611 kneel'd,1,tempest,1611 bat's,1,tempest,1611 'twas,1,tempest,1611 throne,1,tempest,1611 diminish,1,tempest,1611 drollery,1,tempest,1611 foreheads,1,tempest,1611 fell,1,tempest,1611 spy,1,tempest,1611 score,1,tempest,1611 livest,1,tempest,1611 ringlets,1,tempest,1611 deliver,1,tempest,1611 premises,1,tempest,1611 fringed,1,tempest,1611 worth,1,tempest,1611 sot,1,tempest,1611 Himself,1,tempest,1611 channels,1,tempest,1611 summons,1,tempest,1611 Such,1,tempest,1611 stripes,1,tempest,1611 chanticleer,1,tempest,1611 lowing,1,tempest,1611 Farewell,1,tempest,1611 plenty,1,tempest,1611 looking,1,tempest,1611 Silence,1,tempest,1611 weakly,1,tempest,1611 bow'd,1,tempest,1611 's,1,tempest,1611 impertinent,1,tempest,1611 bashful,1,tempest,1611 design,1,tempest,1611 husks,1,tempest,1611 disgrace,1,tempest,1611 deeply,1,tempest,1611 chat,1,tempest,1611 firebrand,1,tempest,1611 hunted,1,tempest,1611 beloved,1,tempest,1611 murkiest,1,tempest,1611 level,1,tempest,1611 instruct,1,tempest,1611 gather,1,tempest,1611 sets,1,tempest,1611 faults,1,tempest,1611 rarer,1,tempest,1611 trials,1,tempest,1611 barefoot,1,tempest,1611 Other,1,tempest,1611 suck,1,tempest,1611 either's,1,tempest,1611 puppets,1,tempest,1611 pieces,1,tempest,1611 fens,1,tempest,1611 bough,1,tempest,1611 executing,1,tempest,1611 thin,1,tempest,1611 Abhorred,1,tempest,1611 wink'st,1,tempest,1611 lightnings,1,tempest,1611 twilled,1,tempest,1611 sends,1,tempest,1611 savour,1,tempest,1611 suck'd,1,tempest,1611 throes,1,tempest,1611 poverty,1,tempest,1611 Allaying,1,tempest,1611 thieves,1,tempest,1611 minion,1,tempest,1611 Ceres',1,tempest,1611 rear,1,tempest,1611 diligent,1,tempest,1611 vile,1,tempest,1611 freckled,1,tempest,1611 wraths,1,tempest,1611 felt,1,tempest,1611 skins,1,tempest,1611 guide,1,tempest,1611 fight,1,tempest,1611 vanish,1,tempest,1611 staring,1,tempest,1611 snow,1,tempest,1611 receives,1,tempest,1611 points,1,tempest,1611 roots,1,tempest,1611 compassion,1,tempest,1611 charm'd,1,tempest,1611 profess,1,tempest,1611 palaces,1,tempest,1611 swoln,1,tempest,1611 figure,1,tempest,1611 kill'd,1,tempest,1611 rounded,1,tempest,1611 bestrew,1,tempest,1611 fault,1,tempest,1611 Weigh'd,1,tempest,1611 business',1,tempest,1611 falls,1,tempest,1611 Warm,1,tempest,1611 actions,1,tempest,1611 jay's,1,tempest,1611 abhorr'd,1,tempest,1611 loose,1,tempest,1611 seeks,1,tempest,1611 confer,1,tempest,1611 cherish,1,tempest,1611 whist,1,tempest,1611 Pardon,1,tempest,1611 showers,1,tempest,1611 relation,1,tempest,1611 white,1,tempest,1611 pease,1,tempest,1611 flatterer,1,tempest,1611 indulgence,1,tempest,1611 willing,1,tempest,1611 Wherein,1,tempest,1611 properly,1,tempest,1611 pageant,1,tempest,1611 sty,1,tempest,1611 fortitude,1,tempest,1611 paragon,1,tempest,1611 vanity,1,tempest,1611 brace,1,tempest,1611 Wipe,1,tempest,1611 companion,1,tempest,1611 Shortly,1,tempest,1611 painfully,1,tempest,1611 rein,1,tempest,1611 O'erstunk,1,tempest,1611 noblest,1,tempest,1611 infinite,1,tempest,1611 Unnatural,1,tempest,1611 cleave,1,tempest,1611 temporal,1,tempest,1611 relish,1,tempest,1611 tight,1,tempest,1611 'scaped,1,tempest,1611 coragio,1,tempest,1611 mistakings,1,tempest,1611 supportable,1,tempest,1611 malice,1,tempest,1611 loathly,1,tempest,1611 magistrate,1,tempest,1611 putter,1,tempest,1611 sailor,1,tempest,1611 let'st,1,tempest,1611 Old,1,tempest,1611 habited,1,tempest,1611 speaking,1,tempest,1611 hedgehogs,1,tempest,1611 prevent,1,tempest,1611 prized,1,tempest,1611 Bestow,1,tempest,1611 Vouchsafe,1,tempest,1611 ward,1,tempest,1611 tar,1,tempest,1611 nails,1,tempest,1611 Wondrous,1,tempest,1611 strong'st,1,tempest,1611 would't,1,tempest,1611 rend,1,tempest,1611 sphere,1,tempest,1611 Might,1,tempest,1611 Blow,1,tempest,1611 certes,1,tempest,1611 seems,1,tempest,1611 usurp,1,tempest,1611 latter,1,tempest,1611 wardrobe,1,tempest,1611 steal,1,tempest,1611 edge,1,tempest,1611 crisp,1,tempest,1611 abjure,1,tempest,1611 based,1,tempest,1611 entertainer,1,tempest,1611 goose,1,tempest,1611 bolt,1,tempest,1611 wise,1,tempest,1611 importuned,1,tempest,1611 Naiads,1,tempest,1611 died,1,tempest,1611 murder,1,tempest,1611 sooth,1,tempest,1611 displeasure,1,tempest,1611 travellers,1,tempest,1611 sense,1,tempest,1611 bully,1,tempest,1611 winning,1,tempest,1611 pierce,1,tempest,1611 popular,1,tempest,1611 wave,1,tempest,1611 bidding,1,tempest,1611 stop,1,tempest,1611 harbour,1,tempest,1611 spiriting,1,tempest,1611 baked,1,tempest,1611 merely,1,tempest,1611 Bury,1,tempest,1611 advancement,1,tempest,1611 throughly,1,tempest,1611 rule,1,tempest,1611 wash,1,tempest,1611 Burn,1,tempest,1611 melted,1,tempest,1611 mistake,1,tempest,1611 join'd,1,tempest,1611 desire,1,tempest,1611 brims,1,tempest,1611 steel,1,tempest,1611 wits,1,tempest,1611 party,1,tempest,1611 infirmity,1,tempest,1611 Point,1,tempest,1611 shorten,1,tempest,1611 Shrug'st,1,tempest,1611 foil,1,tempest,1611 nail,1,tempest,1611 knowledge,1,tempest,1611 Faith,1,tempest,1611 invert,1,tempest,1611 grind,1,tempest,1611 authority,1,tempest,1611 side,1,tempest,1611 snores,1,tempest,1611 verily,1,tempest,1611 level',1,tempest,1611 bowsprit,1,tempest,1611 invest,1,tempest,1611 enchant,1,tempest,1611 pillars,1,tempest,1611 hap,1,tempest,1611 Certainly,1,tempest,1611 hat,1,tempest,1611 backs,1,tempest,1611 dam's,1,tempest,1611 sorcery,1,tempest,1611 Batter,1,tempest,1611 Side,1,tempest,1611 climate,1,tempest,1611 Home,1,tempest,1611 varlets,1,tempest,1611 Holy,1,tempest,1611 noisemaker,1,tempest,1611 Draws,1,tempest,1611 utter,1,tempest,1611 acquaints,1,tempest,1611 sigh,1,tempest,1611 chronicle,1,tempest,1611 crabs,1,tempest,1611 BY,1,tempest,1611 twink,1,tempest,1611 exercise,1,tempest,1611 invulnerable,1,tempest,1611 enact,1,tempest,1611 unsettled,1,tempest,1611 perfection,1,tempest,1611 deformed,1,tempest,1611 Am,1,tempest,1611 razorable,1,tempest,1611 quarrel,1,tempest,1611 depend,1,tempest,1611 wronged,1,tempest,1611 hang'd,1,tempest,1611 surety,1,tempest,1611 meads,1,tempest,1611 scarce,1,tempest,1611 chaste,1,tempest,1611 unwonted,1,tempest,1611 approaching,1,tempest,1611 blows,1,tempest,1611 boy,1,tempest,1611 knowing,1,tempest,1611 govern,1,tempest,1611 vigour,1,tempest,1611 Those,1,tempest,1611 desperate,1,tempest,1611 Play,1,tempest,1611 Drink,1,tempest,1611 teen,1,tempest,1611 By'r,1,tempest,1611 bad,1,tempest,1611 flats,1,tempest,1611 O',1,tempest,1611 wrings,1,tempest,1611 sensible,1,tempest,1611 siege,1,tempest,1611 pays,1,tempest,1611 bat,1,tempest,1611 kings,1,tempest,1611 Says,1,tempest,1611 brained,1,tempest,1611 in's,1,tempest,1611 utensils,1,tempest,1611 Nurture,1,tempest,1611 Answer,1,tempest,1611 star,1,tempest,1611 tales,1,tempest,1611 pen,1,tempest,1611 Hey,1,tempest,1611 pitied,1,tempest,1611 peg,1,tempest,1611 spoon,1,tempest,1611 Letters,1,tempest,1611 remainder,1,tempest,1611 exact,1,tempest,1611 Something,1,tempest,1611 required,1,tempest,1611 flowers,1,tempest,1611 piteous,1,tempest,1611 bee,1,tempest,1611 meant,1,tempest,1611 sovereignty,1,tempest,1611 IV,1,tempest,1611 dinner,1,tempest,1611 blest,1,tempest,1611 peacocks,1,tempest,1611 enchanted,1,tempest,1611 surely,1,tempest,1611 precursors,1,tempest,1611 Sword,1,tempest,1611 deserved,1,tempest,1611 ease,1,tempest,1611 strokedst,1,tempest,1611 wither'd,1,tempest,1611 Heaviness,1,tempest,1611 pate,1,tempest,1611 revenue,1,tempest,1611 despair,1,tempest,1611 annual,1,tempest,1611 sport,1,tempest,1611 noses,1,tempest,1611 Hag,1,tempest,1611 pass,1,tempest,1611 troops,1,tempest,1611 cracks,1,tempest,1611 hope',1,tempest,1611 Has,1,tempest,1611 proud,1,tempest,1611 temples,1,tempest,1611 prompts,1,tempest,1611 sparrows,1,tempest,1611 stinging,1,tempest,1611 and's,1,tempest,1611 attentive,1,tempest,1611 Seems,1,tempest,1611 princesses,1,tempest,1611 temple,1,tempest,1611 badges,1,tempest,1611 kiss'd,1,tempest,1611 sought,1,tempest,1611 useless,1,tempest,1611 Drop,1,tempest,1611 gold,1,tempest,1611 drunkards,1,tempest,1611 royalty,1,tempest,1611 be'st,1,tempest,1611 divide,1,tempest,1611 bulk,1,tempest,1611 viceroys,1,tempest,1611 Dido',1,tempest,1611 sorry,1,tempest,1611 welkin's,1,tempest,1611 hills,1,tempest,1611 nigh,1,tempest,1611 Open,1,tempest,1611 bend,1,tempest,1611 busy,1,tempest,1611 stray,1,tempest,1611 mankind,1,tempest,1611 was't,1,tempest,1611 Heard,1,tempest,1611 canker,1,tempest,1611 leather,1,tempest,1611 knotty,1,tempest,1611 preserver,1,tempest,1611 suffer'd,1,tempest,1611 'Twould,1,tempest,1611 thunderbolt,1,tempest,1611 unfit,1,tempest,1611 kindness,1,tempest,1611 roarers,1,tempest,1611 neglecting,1,tempest,1611 breathing,1,tempest,1611 children,1,tempest,1611 saw'st,1,tempest,1611 goodlier,1,tempest,1611 prisoners,1,tempest,1611 awaked,1,tempest,1611 Seest,1,tempest,1611 dote,1,tempest,1611 interrupt,1,tempest,1611 turfy,1,tempest,1611 couch,1,tempest,1611 ordered,1,tempest,1611 Counsellor,1,tempest,1611 Execute,1,tempest,1611 celebration,1,tempest,1611 Confined,1,tempest,1611 wear,1,tempest,1611 lamps,1,tempest,1611 shadow,1,tempest,1611 bottles,1,tempest,1611 Abates,1,tempest,1611 manacle,1,tempest,1611 Bore,1,tempest,1611 Arabia,1,tempest,1611 escapedst,1,tempest,1611 suddenly,1,tempest,1611 forget'st,1,tempest,1611 stover,1,tempest,1611 prick'd,1,tempest,1611 happen'd,1,tempest,1611 jewel,1,tempest,1611 persuasion,1,tempest,1611 just,1,tempest,1611 'no,1,tempest,1611 goss,1,tempest,1611 theme,1,tempest,1611 murrain,1,tempest,1611 gunner,1,tempest,1611 Inhabits,1,tempest,1611 pailfuls,1,tempest,1611 gun,1,tempest,1611 undergoing,1,tempest,1611 mallows,1,tempest,1611 beget,1,tempest,1611 swift,1,tempest,1611 vows,1,tempest,1611 'so,1,tempest,1611 buy,1,tempest,1611 fathoms,1,tempest,1611 swims,1,tempest,1611 vassal,1,tempest,1611 raising,1,tempest,1611 travel,1,tempest,1611 used,1,tempest,1611 cruelly,1,tempest,1611 preserve,1,tempest,1611 bees,1,tempest,1611 jingling,1,tempest,1611 totally,1,tempest,1611 sins,1,tempest,1611 consciences,1,tempest,1611 stronger,1,tempest,1611 ensue,1,tempest,1611 picture,1,tempest,1611 nonpareil,1,tempest,1611 moody,1,tempest,1611 Dearly,1,tempest,1611 hourly,1,tempest,1611 footing,1,tempest,1611 north,1,tempest,1611 subtilties,1,tempest,1611 owest,1,tempest,1611 immortal,1,tempest,1611 lately,1,tempest,1611 cramp,1,tempest,1611 infections,1,tempest,1611 uplifted,1,tempest,1611 Both,1,tempest,1611 beginning,1,tempest,1611 Dashes,1,tempest,1611 How's,1,tempest,1611 grandmother,1,tempest,1611 begin,1,tempest,1611 abysm,1,tempest,1611 organ,1,tempest,1611 quite,1,tempest,1611 pearls,1,tempest,1611 God,1,tempest,1611 Trinculo's,1,tempest,1611 sleepers,1,tempest,1611 lorn,1,tempest,1611 entertain,1,tempest,1611 government,1,tempest,1611 instant,1,tempest,1611 twangling,1,tempest,1611 saffron,1,tempest,1611 affection,1,tempest,1611 engine,1,tempest,1611 promised,1,tempest,1611 image,1,tempest,1611 bosky,1,tempest,1611 blowing,1,tempest,1611 Fortune,1,tempest,1611 voyage,1,tempest,1611 Methought,1,tempest,1611 retain,1,tempest,1611 torments,1,tempest,1611 hearkens,1,tempest,1611 nostrils,1,tempest,1611 mole,1,tempest,1611 doit,1,tempest,1611 shrub,1,tempest,1611 corollary,1,tempest,1611 Here's,1,tempest,1611 faster,1,tempest,1611 bedimm'd,1,tempest,1611 oddly,1,tempest,1611 consider,1,tempest,1611 waspish,1,tempest,1611 sheep,1,tempest,1611 favour,1,tempest,1611 'Hell,1,tempest,1611 colts,1,tempest,1611 Hourly,1,tempest,1611 promontory,1,tempest,1611 tawny,1,tempest,1611 Ind,1,tempest,1611 Ambition,1,tempest,1611 opportune,1,tempest,1611 Advanced,1,tempest,1611 bead,1,tempest,1611 barley,1,tempest,1611 oozy,1,tempest,1611 beak,1,tempest,1611 beam,1,tempest,1611 Unless,1,tempest,1611 Past,1,tempest,1611 unbow'd,1,tempest,1611 whereon,1,tempest,1611 driving,1,tempest,1611 plays,1,tempest,1611 cradled,1,tempest,1611 deal,1,tempest,1611 Revenge,1,tempest,1611 liberal,1,tempest,1611 Cacaliban,1,tempest,1611 gait,1,tempest,1611 dignity,1,tempest,1611 worthily,1,tempest,1611 pluck'd,1,tempest,1611 scamels,1,tempest,1611 vault,1,tempest,1611 itch,1,tempest,1611 Besides,1,tempest,1611 stain'd,1,tempest,1611 lighted,1,tempest,1611 dower,1,tempest,1611 pierces,1,tempest,1611 boast,1,tempest,1611 nettle,1,tempest,1611 waist,1,tempest,1611 unwillingly,1,tempest,1611 stole,1,tempest,1611 suppler,1,tempest,1611 waits,1,tempest,1611 Sounds,1,tempest,1611 glistering,1,tempest,1611 Fright,1,tempest,1611 houses,1,tempest,1611 ay,1,tempest,1611 spongy,1,tempest,1611 cram,1,tempest,1611 Dolour,1,tempest,1611 possess'd,1,tempest,1611 shed,1,tempest,1611 approach,1,tempest,1611 manner,1,tempest,1611 Begun,1,tempest,1611 temperate,1,tempest,1611 Vines,1,tempest,1611 heard'st,1,tempest,1611 marketable,1,tempest,1611 prosper,1,tempest,1611 abominable,1,tempest,1611 paunch,1,tempest,1611 questions,1,tempest,1611 board,1,tempest,1611 attending,1,tempest,1611 threaten,1,tempest,1611 mows,1,tempest,1611 bites,1,tempest,1611 month,1,tempest,1611 hereabouts,1,tempest,1611 wisely,1,tempest,1611 'Scape,1,tempest,1611 strain,1,tempest,1611 crave,1,tempest,1611 aside,1,tempest,1611 dropsy,1,tempest,1611 Water,1,tempest,1611 Goes,1,tempest,1611 blasphemous,1,tempest,1611 wrangle,1,tempest,1611 acres,1,tempest,1611 Told,1,tempest,1611 whereof,1,tempest,1611 collected,1,tempest,1611 malignant,1,tempest,1611 Lays,1,tempest,1611 produce,1,tempest,1611 Took,1,tempest,1611 studies,1,tempest,1611 Ready,1,tempest,1611 caused,1,tempest,1611 crimes,1,tempest,1611 morn,1,tempest,1611 train,1,tempest,1611 enmity,1,tempest,1611 quickens,1,tempest,1611 Begin,1,tempest,1611 loves,1,tempest,1611 remembering,1,tempest,1611 sharply,1,tempest,1611 stout,1,tempest,1611 miserable,1,tempest,1611 loud,1,tempest,1611 offer'd,1,tempest,1611 endure,1,tempest,1611 'gins,1,tempest,1611 amply,1,tempest,1611 commands,1,tempest,1611 drift,1,tempest,1611 speak'st,1,tempest,1611 resides,1,tempest,1611 resolved,1,tempest,1611 curl'd,1,tempest,1611 shrieking,1,tempest,1611 spent,1,tempest,1611 frustrate,1,tempest,1611 hogshead,1,tempest,1611 afternoon,1,tempest,1611 dowle,1,tempest,1611 felony,1,tempest,1611 twenty,1,tempest,1611 brutish,1,tempest,1611 'bout,1,tempest,1611 removed,1,tempest,1611 defy,1,tempest,1611 swear'st,1,tempest,1611 beauteous,1,tempest,1611 greater,1,tempest,1611 bootless,1,tempest,1611 mischiefs,1,tempest,1611 Tooth'd,1,tempest,1611 knew,1,tempest,1611 deboshed,1,tempest,1611 sailor's,1,tempest,1611 serious,1,tempest,1611 hoodwink,1,tempest,1611 composed,1,tempest,1611 jocund,1,tempest,1611 harshness,1,tempest,1611 natures,1,tempest,1611 pure,1,tempest,1611 marr'd,1,tempest,1611 kernels,1,tempest,1611 briers,1,tempest,1611 Been,1,tempest,1611 wisest,1,tempest,1611 harp,1,tempest,1611 boil'd,1,tempest,1611 thrice,1,tempest,1611 killed,1,tempest,1611 graves,1,tempest,1611 events,1,tempest,1611 eats,1,tempest,1611 attach'd,1,tempest,1611 easy,1,tempest,1611 Thought,1,tempest,1611 scratch,1,tempest,1611 Jack,1,tempest,1611 outward,1,tempest,1611 plume,1,tempest,1611 humming,1,tempest,1611 pard,1,tempest,1611 reasonable,1,tempest,1611 weeks,1,tempest,1611 strutting,1,tempest,1611 fished,1,tempest,1611 weapon,1,tempest,1611 Kate,1,tempest,1611 manifold,1,tempest,1611 pull,1,tempest,1611 justled,1,tempest,1611 frost,1,tempest,1611 crow,1,tempest,1611 fraughting,1,tempest,1611 adders,1,tempest,1611 owls,1,tempest,1611 urchin,1,tempest,1611 rifted,1,tempest,1611 knit,1,tempest,1611 perfected,1,tempest,1611 welcome,1,tempest,1611 neat's,1,tempest,1611 hests,1,tempest,1611 unworthiness,1,tempest,1611 shallow,1,tempest,1611 Tend,1,tempest,1611 'widower,1,tempest,1611 weeds,1,tempest,1611 betrims,1,tempest,1611 repeat,1,tempest,1611 appears,1,tempest,1611 shun,1,tempest,1611 shut,1,tempest,1611 skilless,1,tempest,1611 surges,1,tempest,1611 sighing,1,tempest,1611 porridge,1,tempest,1611 Moon,1,tempest,1611 Coragio,1,tempest,1611 mighty,1,tempest,1611 particulars,1,tempest,1611 praise,1,tempest,1611 momentary,1,tempest,1611 halt,1,tempest,1611 spotted,1,tempest,1611 perpetual,1,tempest,1611 swabber,1,tempest,1611 test,1,tempest,1611 acquaintance,1,tempest,1611 expect,1,tempest,1611 vengeance,1,tempest,1611 oped,1,tempest,1611 Tyrant,1,tempest,1611 fort,1,tempest,1611 prepare,1,tempest,1611 kingdoms,1,tempest,1611 Neapolitans,1,tempest,1611 August,1,tempest,1611 dispersedly,1,tempest,1611 shaked,1,tempest,1611 appertaining,1,tempest,1611 hangs,1,tempest,1611 delight,1,tempest,1611 heaviness,1,tempest,1611 winter's,1,tempest,1611 plotted,1,tempest,1611 Tender,1,tempest,1611 Night,1,tempest,1611 money,1,tempest,1611 litter,1,tempest,1611 hum,1,tempest,1611 mock,1,tempest,1611 chastise,1,tempest,1611 forsworn,1,tempest,1611 owes,1,tempest,1611 Paphos,1,tempest,1611 howsoe'er,1,tempest,1611 owed,1,tempest,1611 strays,1,tempest,1611 bosom,1,tempest,1611 Indian,1,tempest,1611 fear'd,1,tempest,1611 worldly,1,tempest,1611 butler,1,tempest,1611 hats,1,tempest,1611 dismay,1,tempest,1611 bawling,1,tempest,1611 yielded,1,tempest,1611 billows,1,tempest,1611 shoe,1,tempest,1611 except,1,tempest,1611 fiend,1,tempest,1611 outstrip,1,tempest,1611 prepared,1,tempest,1611 courses,1,tempest,1611 ass,1,tempest,1611 clipt,1,tempest,1611 fellowly,1,tempest,1611 girl,1,tempest,1611 dyed,1,tempest,1611 fancies,1,tempest,1611 ebbs,1,tempest,1611 Yields,1,tempest,1611 sorcerer,1,tempest,1611 secret,1,tempest,1611 trice,1,tempest,1611 open'd,1,tempest,1611 furnish,1,tempest,1611 thanks,1,tempest,1611 brush'd,1,tempest,1611 trick,1,tempest,1611 prate,1,tempest,1611 clearer,1,tempest,1611 theirs,1,tempest,1611 purchased,1,tempest,1611 colour'd,1,tempest,1611 crabbed,1,tempest,1611 smells,1,tempest,1611 Delicate,1,tempest,1611 Sour,1,tempest,1611 sweetly,1,tempest,1611 Sometimes,1,tempest,1611 scandal'd,1,tempest,1611 justify,1,tempest,1611 Acknowledge,1,tempest,1611 hiss,1,tempest,1611 trial,1,tempest,1611 demanded,1,tempest,1611 ridiculous,1,tempest,1611 marge,1,tempest,1611 bountiful,1,tempest,1611 excel,1,tempest,1611 beetles,1,tempest,1611 Capering,1,tempest,1611 strongest,1,tempest,1611 bemock'd,1,tempest,1611 Imprison'd,1,tempest,1611 wetting,1,tempest,1611 change,1,tempest,1611 inquisition,1,tempest,1611 precedent,1,tempest,1611 Europe,1,tempest,1611 chapp'd,1,tempest,1611 Bids,1,tempest,1611 mutineer,1,tempest,1611 fooling,1,tempest,1611 nobler,1,tempest,1611 moping,1,tempest,1611 wheels,1,tempest,1611 drowsiness,1,tempest,1611 rarity,1,tempest,1611 molest,1,tempest,1611 Comes,1,tempest,1611 tumbling,1,tempest,1611 Marvellous,1,tempest,1611 Summon'd,1,tempest,1611 leas,1,tempest,1611 room,1,tempest,1611 scaped,1,tempest,1611 hunters,1,tempest,1611 distractions,1,tempest,1611 surfeited,1,tempest,1611 Kill,1,tempest,1611 breeds,1,tempest,1611 main,1,tempest,1611 syllable,1,tempest,1611 nay,1,tempest,1611 brewing,1,tempest,1611 Mountain,1,tempest,1611 honey,1,tempest,1611 carries,1,tempest,1611 Safely,1,tempest,1611 Admired,1,tempest,1611 shouldst,1,tempest,1611 takest,1,tempest,1611 clapp'd,1,tempest,1611 rapt,1,tempest,1611 retired,1,tempest,1611 Lords,1,tempest,1611 acquisition,1,tempest,1611 distance,1,tempest,1611 mountains,1,tempest,1611 whelp,1,tempest,1611 faith,1,tempest,1611 ARIEL'S,1,tempest,1611 incapable,1,tempest,1611 furtherer,1,tempest,1611 unrewarded,1,tempest,1611 nose,1,tempest,1611 patch,1,tempest,1611 neglect'st,1,tempest,1611 envy,1,tempest,1611 Venus,1,tempest,1611 newest,1,tempest,1611 correspondent,1,tempest,1611 trencher,1,tempest,1611 action,1,tempest,1611 proceed,1,tempest,1611 seriously,1,tempest,1611 occupation,1,tempest,1611 cedar,1,tempest,1611 Hang,1,tempest,1611 apple,1,tempest,1611 gently,1,tempest,1611 dulness,1,tempest,1611 now's,1,tempest,1611 infest,1,tempest,1611 circle,1,tempest,1611 shaking,1,tempest,1611 Pointing,1,tempest,1611 curtains,1,tempest,1611 azured,1,tempest,1611 rats,1,tempest,1611 Was't,1,tempest,1611 majesty,1,tempest,1611 temperance,1,tempest,1611 tended,1,tempest,1611 donation,1,tempest,1611 entertainment,1,tempest,1611 infancy,1,tempest,1611 rash,1,tempest,1611 Plants,1,tempest,1611 beard,1,tempest,1611 convulsions,1,tempest,1611 nook,1,tempest,1611 bravely,1,tempest,1611 estate,1,tempest,1611 faint,1,tempest,1611 traitors,1,tempest,1611 Dove,1,tempest,1611 vexations,1,tempest,1611 call'dst,1,tempest,1611 Irreparable,1,tempest,1611 pastime,1,tempest,1611 bottom,1,tempest,1611 Weak,1,tempest,1611 linens,1,tempest,1611 chaps,1,tempest,1611 admire,1,tempest,1611 Presently,1,tempest,1611 Mars's,1,tempest,1611 fails,1,tempest,1611 Down,1,tempest,1611 adventure,1,tempest,1611 glosses,1,tempest,1611 drunkenly,1,tempest,1611 ewe,1,tempest,1611 borne,1,tempest,1611 wolves,1,tempest,1611 learning,1,tempest,1611 admit,1,tempest,1611 young,1,tempest,1611 All's,1,tempest,1611 mount,1,tempest,1611 Expell'd,1,tempest,1611 sticks,1,tempest,1611 quickly,1,tempest,1611 mate,1,tempest,1611 arise,1,tempest,1611 shores,1,tempest,1611 payest,1,tempest,1611 barnacles,1,tempest,1611 baseless,1,tempest,1611 escaped,1,tempest,1611 requit,1,tempest,1611 counsellor,1,tempest,1611 who's,1,tempest,1611 odious,1,tempest,1611 Slave,1,tempest,1611 misery,1,tempest,1611 places,1,tempest,1611 be't,1,tempest,1611 rejoicing,1,tempest,1611 rarities,1,tempest,1611 islands,1,tempest,1611 vetches,1,tempest,1611 freely,1,tempest,1611 scarf,1,tempest,1611 say'st,1,tempest,1611 famous,1,tempest,1611 wonder'd,1,tempest,1611 inly,1,tempest,1611 Will't,1,tempest,1611 tutor,1,tempest,1611 precious,1,tempest,1611 sociable,1,tempest,1611 question,1,tempest,1611 ensuing,1,tempest,1611 contraries,1,tempest,1611 recount,1,tempest,1611 afflictions,1,tempest,1611 sigh'd,1,tempest,1611 attire,1,tempest,1611 furlongs,1,tempest,1611 tempestuous,1,tempest,1611 effect,1,tempest,1611 spurs,1,tempest,1611 device,1,tempest,1611 goblins,1,tempest,1611 graceful,1,tempest,1611 glut,1,tempest,1611 doors,1,tempest,1611 stare,1,tempest,1611 mill,1,tempest,1611 milk,1,tempest,1611 eaves,1,tempest,1611 deck'd,1,tempest,1611 ungently,1,tempest,1611 learnedly,1,tempest,1611 Widow,1,tempest,1611 teeth,1,tempest,1611 bleeds,1,tempest,1611 probable,1,tempest,1611 qualities,1,tempest,1611 cubit,1,tempest,1611 disproportion'd,1,tempest,1611 knave,1,tempest,1611 Makes,1,tempest,1611 Swears,1,tempest,1611 pricking,1,tempest,1611 purposes,1,tempest,1611 escape,1,tempest,1611 foolish,1,tempest,1611 towers,1,tempest,1611 purposed,1,tempest,1611 slowly,1,tempest,1611 observation,1,tempest,1611 dregs,1,tempest,1611 tackle,1,tempest,1611 confidence,1,tempest,1611 furze,1,tempest,1611 mantled,1,tempest,1611 beggar,1,tempest,1611 straightway,1,tempest,1611 insolent,1,tempest,1611 ghastly,1,tempest,1611 villanous,1,tempest,1611 mast,1,tempest,1611 Praise,1,tempest,1611 overblown,1,tempest,1611 Dropping,1,tempest,1611 kissing,1,tempest,1611 Trebles,1,tempest,1611 coward,1,tempest,1611 son's,1,tempest,1611 abstemious,1,tempest,1611 thick,1,tempest,1611 Bate,1,tempest,1611 Any,1,tempest,1611 wezand,1,tempest,1611 Marian,1,tempest,1611 Honour,1,tempest,1611 bettering,1,tempest,1611 furnish'd,1,tempest,1611 coronet,1,tempest,1611 Island,1,tempest,1611 mire,1,tempest,1611 Thee,1,tempest,1611 chick,1,tempest,1611 quoth,1,tempest,1611 brains,1,tempest,1611 painful,1,tempest,1611 gates,1,tempest,1611 tides,1,tempest,1611 candied,1,tempest,1611 chide,1,tempest,1611 chough,1,tempest,1611 arch,1,tempest,1611 missing,1,tempest,1611 constable,1,tempest,1611 Diffusest,1,tempest,1611 snare,1,tempest,1611 chirurgeonly,1,tempest,1611 parent,1,tempest,1611 apart,1,tempest,1611 sedged,1,tempest,1611 Made,1,tempest,1611 dainty,1,tempest,1611 ceremonies,1,tempest,1611 horrible,1,tempest,1611 oil,1,tempest,1611 stake,1,tempest,1611 miraculous,1,tempest,1611 firm,1,tempest,1611 ones,1,tempest,1611 louder,1,tempest,1611 forego,1,tempest,1611 sans,1,tempest,1611 banks,1,tempest,1611 nibbling,1,tempest,1611 Awaked,1,tempest,1611 trembling,1,tempest,1611 Italy,1,tempest,1611 bellowing,1,tempest,1611 stained,1,tempest,1611 pole,1,tempest,1611 opinion,1,tempest,1611 renown,1,tempest,1611 capp'd,1,tempest,1611 disturb'd,1,tempest,1611 winding,1,tempest,1611 wi',1,tempest,1611 gabble,1,tempest,1611 prescience,1,tempest,1611 stale,1,tempest,1611 at's,1,tempest,1611 neck,1,tempest,1611 sake,1,tempest,1611 understanding,1,tempest,1611 incharitable,1,tempest,1611 fits,1,tempest,1611 boarded,1,tempest,1611 Freedom,1,tempest,1611 desolate,1,tempest,1611 capable,1,tempest,1611 win,1,tempest,1611 grass'd,1,tempest,1611 Begins,1,tempest,1611 where'er,1,tempest,1611 sorceries,1,tempest,1611 provoke,1,tempest,1611 visits,1,tempest,1611 sicklemen,1,tempest,1611 'Twill,1,tempest,1611 bands,1,tempest,1611 confines,1,tempest,1611 relieved,1,tempest,1611 says,1,tempest,1611 heath,1,tempest,1611 unstanched,1,tempest,1611 unicorns,1,tempest,1611 forgetting,1,tempest,1611 ring,1,tempest,1611 screen,1,tempest,1611 measured,1,tempest,1611 rankest,1,tempest,1611 loving,1,tempest,1611 tabourer,1,tempest,1611 usurping,1,tempest,1611 upright,1,tempest,1611 Humanely,1,tempest,1611 sitting,1,tempest,1611 traffic,1,tempest,1611 prophesied,1,tempest,1611 Infused,1,tempest,1611 pioned,1,tempest,1611 allay,1,tempest,1611 abundance,1,tempest,1611 unseen,1,tempest,1611 influence,1,tempest,1611 stabs,1,tempest,1611 dollar,1,tempest,1611 Dear,1,tempest,1611 'mong,1,tempest,1611 grumblings,1,tempest,1611 clock,1,tempest,1611 Saw,1,tempest,1611 vouched,1,tempest,1611 ripe,1,tempest,1611 salutation,1,tempest,1611 you're,1,tempest,1611 continuance,1,tempest,1611 certainly,1,tempest,1611 widows,1,tempest,1611 Thine,1,tempest,1611 Incite,1,tempest,1611 Thus,1,tempest,1611 issued,1,tempest,1611 liked,1,tempest,1611 Bermoothes,1,tempest,1611 insubstantial,1,tempest,1611 dusky,1,tempest,1611 'The,1,tempest,1611 signories,1,tempest,1611 Merrily,1,tempest,1611 war,1,tempest,1611 stitches,1,tempest,1611 Fated,1,tempest,1611 snoring,1,tempest,1611 army,1,tempest,1611 staff,1,tempest,1611 founder'd,1,tempest,1611 driven,1,tempest,1611 mounting,1,tempest,1611 Worthy,1,tempest,1611 raven's,1,tempest,1611 actors,1,tempest,1611 tailor,1,tempest,1611 nuptial,1,tempest,1611 perforce,1,tempest,1611 oath,1,tempest,1611 print,1,tempest,1611 departing,1,tempest,1611 commander,1,tempest,1611 rite,1,tempest,1611 oats,1,tempest,1611 reeling,1,tempest,1611 arts,1,tempest,1611 they'll,1,tempest,1611 blemish,1,tempest,1611 rage,1,tempest,1611 groan'd,1,tempest,1611 Courtsied,1,tempest,1611 slipper,1,tempest,1611 reigning,1,tempest,1611 wanton,1,tempest,1611 lifted,1,tempest,1611 bereft,1,tempest,1611 Knowing,1,tempest,1611 apace,1,tempest,1611 bowing,1,tempest,1611 supper,1,tempest,1611 coming,1,tempest,1611 cockerel,1,tempest,1611 breakfast,1,tempest,1611 threats,1,tempest,1611 cursed,1,tempest,1611 Monsieur,1,tempest,1611 possess,1,tempest,1611 fade,1,tempest,1611 inaccessible,1,tempest,1611 throats,1,tempest,1611 rift,1,tempest,1611 robb'd,1,tempest,1611 Shalt,1,tempest,1611 surprised,1,tempest,1611 discase,1,tempest,1611 angle,1,tempest,1611 Ship,1,tempest,1611 requite,1,tempest,1611 Plunged,1,tempest,1611 freshness,1,tempest,1611 prompt,1,tempest,1611 faces,1,tempest,1611 dreams,1,tempest,1611 o'erthrown,1,tempest,1611 earthquake,1,tempest,1611 penitent,1,tempest,1611 Margery,1,tempest,1611 watery,1,tempest,1611 served,1,tempest,1611 Heaven,1,tempest,1611 muddy,1,tempest,1611 morsel,1,tempest,1611 fallen,1,tempest,1611 slavery,1,tempest,1611 marry,1,tempest,1611 dissolves,1,tempest,1611 earthly,1,tempest,1611 unback'd,1,tempest,1611 Hail,1,tempest,1611 prologue,1,tempest,1611 poison,1,tempest,1611 inform,1,tempest,1611 require,1,tempest,1611 Temperance,1,tempest,1611 god's,1,tempest,1611 royalties,1,tempest,1611 compass,1,tempest,1611 furzes,1,tempest,1611 dumb,1,tempest,1611 wondrous,1,tempest,1611 lust,1,tempest,1611 refreshing,1,tempest,1611 droop,1,tempest,1611 Prudence,1,tempest,1611 rain,1,tempest,1611 consent,1,tempest,1611 dull,1,tempest,1611 lorded,1,tempest,1611 lush,1,tempest,1611 stow'd,1,tempest,1611 nest,1,tempest,1611 whistle,1,tempest,1611 minister'd,1,tempest,1611 harvest,1,tempest,1611 serves,1,tempest,1611 waste,1,tempest,1611 gales,1,tempest,1611 Mall,1,tempest,1611 ope,1,tempest,1611 whence,1,tempest,1611 followers,1,tempest,1611 Noble,1,tempest,1611 uneasy,1,tempest,1611 madest,1,tempest,1611 belch,1,tempest,1611 Show,1,tempest,1611 fain,1,tempest,1611 minister,1,tempest,1611 sails,1,tempest,1611 violate,1,tempest,1611 evil,1,tempest,1611 durst,1,tempest,1611 ardour,1,tempest,1611 Many,1,tempest,1611 wept,1,tempest,1611 union,1,tempest,1611 pockets,1,tempest,1611 doublet,1,tempest,1611 Instinctively,1,tempest,1611 modesty,1,tempest,1611 stolen,1,tempest,1611 Brother,1,tempest,1611 desert,1,tempest,1611 visitor,1,tempest,1611 cares,1,tempest,1611 prattle,1,tempest,1611 article,1,tempest,1611 creature's,1,tempest,1611 Proceed,1,tempest,1611 lasting,1,tempest,1611 Jupiter,1,tempest,1611 bedded,1,tempest,1611 'go,1,tempest,1611 race,1,tempest,1611 methinks,1,tempest,1611 cared,1,tempest,1611 tricksy,1,tempest,1611 worm,1,tempest,1611 earthy,1,tempest,1611 worn,1,tempest,1611 chalk'd,1,tempest,1611 fins,1,tempest,1611 sowing,1,tempest,1611 colours,1,tempest,1611 heavily,1,tempest,1611 do't,1,tempest,1611 Heigh,1,tempest,1611 lodged,1,tempest,1611 west,1,tempest,1611 dancing,1,tempest,1611 firing,1,tempest,1611 ninny's,1,tempest,1611 endeavour,1,tempest,1611 flame,1,tempest,1611 murmur'st,1,tempest,1611 Excellent,1,tempest,1611 officer,1,tempest,1611 vow,1,tempest,1611 wheat,1,tempest,1611 Supposing,1,tempest,1611 Weeping,1,tempest,1611 oar'd,1,tempest,1611 GONZALO's,1,tempest,1611 admiration,1,tempest,1611 dalliance,1,tempest,1611 safety,1,tempest,1611 trident,1,tempest,1611 punish'd,1,tempest,1611 smote,1,tempest,1611 Burnt,1,tempest,1611 blister,1,tempest,1611 rattling,1,tempest,1611 folly,1,tempest,1611 particular,1,tempest,1611 Uninhabitable,1,tempest,1611 minded,1,tempest,1611 bare,1,tempest,1611 Worthily,1,tempest,1611 imposter,1,tempest,1611 meddle,1,tempest,1611 contentious,1,tempest,1611 worship,1,tempest,1611 tail,1,tempest,1611 surge,1,tempest,1611 divers,1,tempest,1611 Received,1,tempest,1611 herself,1,tempest,1611 an't,1,tempest,1611 forgets,1,tempest,1611 depart,1,tempest,1611 perceive,1,tempest,1611 chiefly,1,tempest,1611 beware,1,tempest,1611 Thank,1,tempest,1611 foaming,1,tempest,1611 detract,1,tempest,1611 bats,1,tempest,1611 bate,1,tempest,1611 lived,1,tempest,1611 Foul,1,tempest,1611 increasing,1,tempest,1611 gilded,1,tempest,1611 ebbing,1,tempest,1611 bird,1,tempest,1611 compensation,1,tempest,1611 freshly,1,tempest,1611 Befitting,1,tempest,1611 'Steal,1,tempest,1611 bass,1,tempest,1611 stinking,1,tempest,1611 trumpery,1,tempest,1611 flamed,1,tempest,1611 appointed,1,tempest,1611 cock,1,tempest,1611 tang,1,tempest,1611 Destiny,1,tempest,1611 bank,1,tempest,1611 breasted,1,tempest,1611 filberts,1,tempest,1611 hoop,1,tempest,1611 rising,1,tempest,1611 large,1,tempest,1611 emperor,1,tempest,1611 fare,1,tempest,1611 dismay'd,1,tempest,1611 volumes,1,tempest,1611 ache,1,tempest,1611 ecstasy,1,tempest,1611 cable,1,tempest,1611 farthest,1,tempest,1611 acorn,1,tempest,1611 falsely,1,tempest,1611 affliction,1,tempest,1611 provokes,1,tempest,1611 freshes,1,tempest,1611 did't,1,tempest,1611 fresher,1,tempest,1611 otherwise,1,tempest,1611 substitution,1,tempest,1611 compassed,1,tempest,1611 widest,1,tempest,1611 perish,1,tempest,1611 sixth,1,tempest,1611 refresh,1,tempest,1611 tutors,1,tempest,1611 rapier,1,tempest,1611 Rather,1,tempest,1611 shoot,1,tempest,1611 creep,1,tempest,1611 accident,1,tempest,1611 England,1,tempest,1611 Dew,1,tempest,1611 clear,1,tempest,1611 short,1,tempest,1611 holp,1,tempest,1611 Lay,1,tempest,1611 diversity,1,tempest,1611 dozen,1,tempest,1611 temper'd,1,tempest,1611 cur,1,tempest,1611 cut,1,tempest,1611 devour,1,tempest,1611 Arise,1,tempest,1611 closing,1,tempest,1611 defect,1,tempest,1611 acre,1,tempest,1611 honest,1,tempest,1611 Who's,1,tempest,1611 Flout,1,tempest,1611 Afric,1,tempest,1611 peerless,1,tempest,1611 loyal,1,tempest,1611 sinner,1,tempest,1611 Chiefly,1,tempest,1611 condemn,1,tempest,1611 rabble,1,tempest,1611 Cutting,1,tempest,1611 printless,1,tempest,1611 Foot,1,tempest,1611 liver,1,tempest,1611 besiege,1,tempest,1611 grudge,1,tempest,1611 Where's,1,tempest,1611 virtues,1,tempest,1611 licker,1,tempest,1611 falsehood,1,tempest,1611 legions,1,tempest,1611 provision,1,tempest,1611 windring,1,tempest,1611 notwithstanding,1,tempest,1611 calf's,1,tempest,1611 rootedly,1,tempest,1611 robes,1,tempest,1611 pignuts,1,tempest,1611 yellow,1,tempest,1611 manage,1,tempest,1611 verdure,1,tempest,1611 have's,1,tempest,1611 perfumed,1,tempest,1611 boded,1,tempest,1611 hunt,1,tempest,1611 Sitting,1,tempest,1611 hearty,1,tempest,1611 ignoble,1,tempest,1611 lying,1,tempest,1611 Adrian,1,tempest,1611 meanders,1,tempest,1611 contents,1,tempest,1611 Calls,1,tempest,1611 drenched,1,tempest,1611 inward,1,tempest,1611 bachelor,1,tempest,1611 fairer,1,tempest,1611 low,1,tempest,1611 sweat,1,tempest,1611 fault's,1,tempest,1611 foresees,1,tempest,1611 suits,1,tempest,1611 crept,1,tempest,1611 goodness,1,tempest,1611 oppress'd,1,tempest,1611 Seem,1,tempest,1611 massy,1,tempest,1611 pronounced,1,tempest,1611 Subject,1,tempest,1611 aught,1,tempest,1611 troth,1,tempest,1611 feeling,1,tempest,1611 south,1,tempest,1611 puppy,1,tempest,1611 AEneas',1,tempest,1611 defend,1,tempest,1611 wiselier,1,tempest,1611 adore,1,tempest,1611 hounds,1,tempest,1611 nerves,1,tempest,1611 trespass,1,tempest,1611 sports,1,tempest,1611 faded,1,tempest,1611 ended,1,tempest,1611 look'd,1,tempest,1611 elves,1,tempest,1611 topsail,1,tempest,1611 discretion,1,tempest,1611 arrows,1,tempest,1611 strengths,1,tempest,1611 pick'd,1,tempest,1611 pricks,1,tempest,1611 diddle,1,tempest,1611 shapen,1,tempest,1611 eld'st,1,tempest,1611 ditty,1,tempest,1611 corn,1,tempest,1611 fabric,1,tempest,1611 vainer,1,tempest,1611 wearied,1,tempest,1611 changing,1,tempest,1611 bunches,1,tempest,1611 increase,1,tempest,1611 hearken,1,tempest,1611 monkey,1,tempest,1611 He'ld,1,tempest,1611 Obey,1,tempest,1611 He'll,1,tempest,1611 avoid,1,tempest,1611 term'd,1,tempest,1611 therein,1,tempest,1611 blame,1,tempest,1611 Earth's,1,tempest,1611 entreat,1,tempest,1611 huge,1,tempest,1611 warrants,1,tempest,1611 heedfully,1,tempest,1611 funeral,1,tempest,1611 undergone,1,tempest,1611 Calibans,1,tempest,1611 inviting,1,tempest,1611 lovers,1,tempest,1611 self,1,tempest,1611 furrow,1,tempest,1611 Close,1,tempest,1611 Cry,1,tempest,1611 industrious,1,tempest,1611 tide,1,tempest,1611 moon's,1,tempest,1611 Just,1,tempest,1611 millions,1,tempest,1611 foretold,1,tempest,1611 penetrate,1,tempest,1611 post,1,tempest,1611 distracted,1,tempest,1611 bald,1,tempest,1611 report'st,1,tempest,1611 marmoset,1,tempest,1611 Mediterranean,1,tempest,1611 troll,1,tempest,1611 hollowly,1,tempest,1611 eyeball,1,tempest,1611 outrunning,1,tempest,1611 send,1,tempest,1611 reputed,1,tempest,1611 undo,1,tempest,1611 alas,1,tempest,1611 sent,1,tempest,1611 swell,1,tempest,1611 bade,1,tempest,1611 Cursed,1,tempest,1611 sow't,1,tempest,1611 genius,1,tempest,1611 carriage,1,tempest,1611 winters,1,tempest,1611 howl,1,tempest,1611 chose,1,tempest,1611 season,1,tempest,1611 match,1,tempest,1611 wearily,1,tempest,1611 aches,1,tempest,1611 misses,1,tempest,1611 methought,1,tempest,1611 Mistress,1,tempest,1611 bestow,1,tempest,1611 invite,1,tempest,1611 howl'd,1,tempest,1611 master's,1,tempest,1611 Ebbing,1,tempest,1611 coil,1,tempest,1611 Wallets,1,tempest,1611 Two,1,tempest,1611 'come',1,tempest,1611 dulling,1,tempest,1611 uglier,1,tempest,1611 credulous,1,tempest,1611 slow,1,tempest,1611 frantic,1,tempest,1611 unshrubb'd,1,tempest,1611 torch,1,tempest,1611 Nothing,1,tempest,1611 servants,1,tempest,1611 upbraid,1,tempest,1611 slumber,1,tempest,1611 'Bove,1,tempest,1611 Cell,1,tempest,1611 lays,1,tempest,1611 Spring,1,tempest,1611 aspersion,1,tempest,1611 cloudy,1,tempest,1611 mar,1,tempest,1611 Cheerly,1,tempest,1611 expressing,1,tempest,1611 sounded,1,tempest,1611 starts,1,tempest,1611 Butler,1,tempest,1611 careful,1,tempest,1611 Towards,1,tempest,1611 Absolute,1,tempest,1611 'scape,1,tempest,1611 conduct,1,tempest,1611 seldom,1,tempest,1611 featly,1,tempest,1611 steeds,1,tempest,1611 laughed,1,tempest,1611 doing,1,tempest,1611 cell's,1,tempest,1611 ratify,1,tempest,1611 form'd,1,tempest,1611 got'st,1,tempest,1611 Sometime,1,tempest,1611 sister,1,tempest,1611 phoenix,1,tempest,1611 treacherous,1,tempest,1611 parallel,1,tempest,1611 EPILOGUE,1,tempest,1611 High'st,1,tempest,1611 Does,1,tempest,1611 meeting,1,tempest,1611 employment,1,tempest,1611 rights,1,tempest,1611 abuse,1,tempest,1611 burns,1,tempest,1611 merciful,1,tempest,1611 laps,1,tempest,1611 kindlier,1,tempest,1611 cowslip's,1,tempest,1611 'Widow,1,tempest,1611 Great,1,tempest,1611 Meg,1,tempest,1611 fashion,1,tempest,1611 Twelve,1,tempest,1611 sever'd,1,tempest,1611 wound,1,tempest,1611 liege,1,tempest,1611 amain,1,tempest,1611 mourning,1,tempest,1611 Indeed,1,tempest,1611 honeycomb,1,tempest,1611 telling,1,tempest,1611 sometimes,1,tempest,1611 Marry,1,tempest,1611 jesting,1,tempest,1611 fever,1,tempest,1611 Kneels,1,tempest,1611 Trinculos,1,tempest,1611 Brimful,1,tempest,1611 attendants,1,tempest,1611 keepers,1,tempest,1611 beauty,1,tempest,1611 mutinous,1,tempest,1611 shroud,1,tempest,1611 Swum,1,tempest,1611 Done,1,tempest,1611 severally,1,tempest,1611 fright,1,tempest,1611 peer,1,tempest,1611 extend,1,tempest,1611 silver,1,tempest,1611 surpasseth,1,tempest,1611 levied,1,tempest,1611 April,1,tempest,1611 curfew,1,tempest,1611 weariness,1,tempest,1611 corners,1,tempest,1611 dow,1,tempest,1611 chatter,1,tempest,1611 blessedly,1,tempest,1611 Delight,1,tempest,1611 Lend,1,tempest,1611 going,1,tempest,1611 fathom,1,tempest,1611 mop,1,tempest,1611 Exactly,1,tempest,1611 'Mercy,1,tempest,1611 dwells,1,tempest,1611 try,1,tempest,1611 transported,1,tempest,1611 wildly,1,tempest,1611 silent,1,tempest,1611 Barns,1,tempest,1611 Concluding,1,tempest,1611 mouths,1,tempest,1611 forgiveness,1,tempest,1611 witness,1,tempest,1611 enjoin'd,1,tempest,1611 You'ld,1,tempest,1611 frippery,1,tempest,1611 island's,1,tempest,1611 distemper'd,1,tempest,1611 nutshell,1,tempest,1611 plantation,1,tempest,1611 confine,1,tempest,1611 princely,1,tempest,1611 with't,1,tempest,1611 savages,1,tempest,1611 amazedly,1,tempest,1611 Dis,1,tempest,1611 sulphurous,1,tempest,1611 majestic,1,tempest,1611 Lest,1,tempest,1611 lake,1,tempest,1611 flote,1,tempest,1611 precepts,1,tempest,1611 weigh,1,tempest,1611 pertly,1,tempest,1611 sudden,1,tempest,1611 rocky,1,tempest,1611 carcass,1,tempest,1611 austerely,1,tempest,1611 globe,1,tempest,1611 top,1,tempest,1611 kibe,1,tempest,1611 great'st,1,tempest,1611 lame,1,tempest,1611 Professes,1,tempest,1611 wonders,1,tempest,1611 Bring,1,tempest,1611 Untie,1,tempest,1611 DRAMATIS,1,tempest,1611 inches,1,tempest,1611 spendthrift,1,tempest,1611 whores,1,tempest,1611 thatch'd,1,tempest,1611 flout,1,tempest,1611 shift,1,tempest,1611 leap'd,1,tempest,1611 handsomely,1,tempest,1611 filthy,1,tempest,1611 Mum,1,tempest,1611 burden,1,tempest,1611 dams,1,tempest,1611 undergo,1,tempest,1611 prerogative,1,tempest,1611 shins,1,tempest,1611 tripping,1,tempest,1611 Bourn,1,tempest,1611 Too,1,tempest,1611 noontide,1,tempest,1611 Betid,1,tempest,1611 topping,1,tempest,1611 flows,1,tempest,1611 obedient,1,tempest,1611 Jester,1,tempest,1611 divided,1,tempest,1611 wills,1,tempest,1611 frail,1,tempest,1611 'How,1,tempest,1611 Fair,1,tempest,1611 fends,1,tempest,1611 smelt,1,tempest,1611 den,1,tempest,1611 aground,1,tempest,1611 unmitigable,1,tempest,1611 mis,1,tempest,1611 stomachs,1,tempest,1611 darling,1,tempest,1611 take't,1,tempest,1611 blasphemy,1,tempest,1611 princess,1,tempest,1611 toads,1,tempest,1611 mid,1,tempest,1611 Legged,1,tempest,1611 Fall,1,tempest,1611 remorse,1,tempest,1611 kill,1,tempest,1611 follow'st,1,tempest,1611 charity,1,tempest,1611 trifling,1,tempest,1611 spectacle,1,tempest,1611 Dido's,1,tempest,1611 Honest,1,tempest,1611 garners,1,tempest,1611 dedicated,1,tempest,1611 woman,1,tempest,1611 justle,1,tempest,1611 cooling,1,tempest,1611 earth'd,1,tempest,1611 'mongst,1,tempest,1611 charmingly,1,tempest,1611 breathe,1,tempest,1611 Fine,1,tempest,1611 Find,1,tempest,1611 obedience,1,tempest,1611 oaths,1,tempest,1611 bids,1,tempest,1611 lack,1,tempest,1611 leaky,1,tempest,1611 Bound,1,tempest,1611 wombs,1,tempest,1611 Resumes,1,tempest,1611 selves,1,tempest,1611 feater,1,tempest,1611 observing,1,tempest,1611 dig,1,tempest,1611 Fill,1,tempest,1611 vanish'd,1,tempest,1611 ending,1,tempest,1611 fortunes,1,tempest,1611 sway,1,tempest,1611 lads,1,tempest,1611 swam,1,tempest,1611 summer,1,tempest,1611 schoolmaster,1,tempest,1611 attended,2,tempest,1611 event,2,tempest,1611 heed,2,tempest,1611 meet,2,tempest,1611 quality,2,tempest,1611 lusty,2,tempest,1611 confused,2,tempest,1611 Nay,2,tempest,1611 join,2,tempest,1611 red,2,tempest,1611 library,2,tempest,1611 darest,2,tempest,1611 guilt,2,tempest,1611 speech,2,tempest,1611 tremble,2,tempest,1611 following,2,tempest,1611 Alas,2,tempest,1611 advantage,2,tempest,1611 royal,2,tempest,1611 stopp'd,2,tempest,1611 boys,2,tempest,1611 melt,2,tempest,1611 single,2,tempest,1611 Tell,2,tempest,1611 Neptune,2,tempest,1611 painted,2,tempest,1611 pardon'd,2,tempest,1611 bounteous,2,tempest,1611 dropp'd,2,tempest,1611 offer,2,tempest,1611 topmast,2,tempest,1611 angels,2,tempest,1611 advance,2,tempest,1611 fury,2,tempest,1611 withal,2,tempest,1611 nought,2,tempest,1611 rye,2,tempest,1611 trust,2,tempest,1611 nymph,2,tempest,1611 softly,2,tempest,1611 graces,2,tempest,1611 conscience,2,tempest,1611 Young,2,tempest,1611 relieve,2,tempest,1611 bearing,2,tempest,1611 years,2,tempest,1611 backward,2,tempest,1611 highness,2,tempest,1611 Much,2,tempest,1611 Remember,2,tempest,1611 sloth,2,tempest,1611 cheek,2,tempest,1611 voices,2,tempest,1611 madness,2,tempest,1611 pipe,2,tempest,1611 hanging,2,tempest,1611 fools,2,tempest,1611 teach,2,tempest,1611 soft,2,tempest,1611 Methinks,2,tempest,1611 blessed,2,tempest,1611 visit,2,tempest,1611 moving,2,tempest,1611 she's,2,tempest,1611 deeper,2,tempest,1611 sin,2,tempest,1611 body,2,tempest,1611 impossible,2,tempest,1611 Beyond,2,tempest,1611 think'st,2,tempest,1611 deity,2,tempest,1611 noises,2,tempest,1611 landed,2,tempest,1611 suit,2,tempest,1611 beasts,2,tempest,1611 lions,2,tempest,1611 disposed,2,tempest,1611 yield,2,tempest,1611 bringing,2,tempest,1611 gaberdine,2,tempest,1611 sworn,2,tempest,1611 scout,2,tempest,1611 wager,2,tempest,1611 sky,2,tempest,1611 groans,2,tempest,1611 wings,2,tempest,1611 sprites,2,tempest,1611 Servant,2,tempest,1611 suffered,2,tempest,1611 daughter's,2,tempest,1611 ourselves,2,tempest,1611 wrong,2,tempest,1611 vineyard,2,tempest,1611 brain,2,tempest,1611 piece,2,tempest,1611 twelve,2,tempest,1611 ways,2,tempest,1611 bore,2,tempest,1611 Whereof,2,tempest,1611 Setebos,2,tempest,1611 worthy,2,tempest,1611 Leave,2,tempest,1611 humble,2,tempest,1611 rigg'd,2,tempest,1611 fearful,2,tempest,1611 feed,2,tempest,1611 vanishes,2,tempest,1611 cease,2,tempest,1611 grow,2,tempest,1611 masters,2,tempest,1611 blind,2,tempest,1611 sword,2,tempest,1611 upon's,2,tempest,1611 ancient,2,tempest,1611 whisper,2,tempest,1611 choose,2,tempest,1611 wink,2,tempest,1611 kneel,2,tempest,1611 heaved,2,tempest,1611 know'st,2,tempest,1611 dies,2,tempest,1611 anon,2,tempest,1611 custom,2,tempest,1611 bulls,2,tempest,1611 claps,2,tempest,1611 cunning,2,tempest,1611 meal,2,tempest,1611 office,2,tempest,1611 gesture,2,tempest,1611 dear'st,2,tempest,1611 created,2,tempest,1611 Draw,2,tempest,1611 goddess,2,tempest,1611 Drinks,2,tempest,1611 morning,2,tempest,1611 manners,2,tempest,1611 strongly,2,tempest,1611 drinking,2,tempest,1611 aboard,2,tempest,1611 While,2,tempest,1611 hag,2,tempest,1611 crack,2,tempest,1611 Solemn,2,tempest,1611 pulse,2,tempest,1611 pay,2,tempest,1611 Him,2,tempest,1611 shortly,2,tempest,1611 smile,2,tempest,1611 Having,2,tempest,1611 Me,2,tempest,1611 gentleness,2,tempest,1611 unless,2,tempest,1611 to't,2,tempest,1611 Oh,2,tempest,1611 diligence,2,tempest,1611 Her,2,tempest,1611 changed,2,tempest,1611 kinds,2,tempest,1611 bless,2,tempest,1611 whole,2,tempest,1611 pinches,2,tempest,1611 step,2,tempest,1611 nobly,2,tempest,1611 Ding,2,tempest,1611 heads,2,tempest,1611 Thunder,2,tempest,1611 valiant,2,tempest,1611 gave,2,tempest,1611 straw,2,tempest,1611 metal,2,tempest,1611 bush,2,tempest,1611 Jove's,2,tempest,1611 perdition,2,tempest,1611 bell,2,tempest,1611 burn,2,tempest,1611 struck,2,tempest,1611 sounds,2,tempest,1611 tricks,2,tempest,1611 weak,2,tempest,1611 Save,2,tempest,1611 Behold,2,tempest,1611 Speak,2,tempest,1611 gape,2,tempest,1611 afore,2,tempest,1611 Didst,2,tempest,1611 curse,2,tempest,1611 Ye,2,tempest,1611 O'er,2,tempest,1611 longer,2,tempest,1611 gown,2,tempest,1611 divine,2,tempest,1611 'Twas,2,tempest,1611 rejoice,2,tempest,1611 crowns,2,tempest,1611 Shapes,2,tempest,1611 stooping,2,tempest,1611 deed,2,tempest,1611 sail,2,tempest,1611 gallows,2,tempest,1611 yea,2,tempest,1611 tyrant,2,tempest,1611 gift,2,tempest,1611 excellent,2,tempest,1611 aid,2,tempest,1611 deck,2,tempest,1611 clustering,2,tempest,1611 safe,2,tempest,1611 ooze,2,tempest,1611 tongues,2,tempest,1611 holiday,2,tempest,1611 played,2,tempest,1611 trash,2,tempest,1611 suggestion,2,tempest,1611 enforce,2,tempest,1611 touch'd,2,tempest,1611 husband,2,tempest,1611 quaint,2,tempest,1611 makest,2,tempest,1611 apes,2,tempest,1611 memory,2,tempest,1611 luggage,2,tempest,1611 move,2,tempest,1611 dong,2,tempest,1611 damn'd,2,tempest,1611 demi,2,tempest,1611 lo,2,tempest,1611 abide,2,tempest,1611 idle,2,tempest,1611 auspicious,2,tempest,1611 Myself,2,tempest,1611 Yea,2,tempest,1611 lest,2,tempest,1611 celebrate,2,tempest,1611 knot,2,tempest,1611 apparel,2,tempest,1611 blue,2,tempest,1611 ready,2,tempest,1611 show'd,2,tempest,1611 hot,2,tempest,1611 harm,2,tempest,1611 valour,2,tempest,1611 discourse,2,tempest,1611 Brought,2,tempest,1611 aye,2,tempest,1611 conspiracy,2,tempest,1611 messenger,2,tempest,1611 perform'd,2,tempest,1611 Full,2,tempest,1611 deny,2,tempest,1611 plain,2,tempest,1611 First,2,tempest,1611 course,2,tempest,1611 Fury,2,tempest,1611 form,2,tempest,1611 charmed,2,tempest,1611 ask,2,tempest,1611 stranger,2,tempest,1611 paid,2,tempest,1611 frown,2,tempest,1611 point,2,tempest,1611 entertain'd,2,tempest,1611 twain,2,tempest,1611 dreadful,2,tempest,1611 proper,2,tempest,1611 rough,2,tempest,1611 mudded,2,tempest,1611 food,2,tempest,1611 accidents,2,tempest,1611 knock,2,tempest,1611 banquet,2,tempest,1611 strangeness,2,tempest,1611 fen,2,tempest,1611 Reapers,2,tempest,1611 broke,2,tempest,1611 Art,2,tempest,1611 lead,2,tempest,1611 spoken,2,tempest,1611 Into,2,tempest,1611 rope,2,tempest,1611 occasion,2,tempest,1611 breathes,2,tempest,1611 destiny,2,tempest,1611 moved,2,tempest,1611 empty,2,tempest,1611 report,2,tempest,1611 Ten,2,tempest,1611 Canst,2,tempest,1611 mischief,2,tempest,1611 note,2,tempest,1611 omit,2,tempest,1611 thinks,2,tempest,1611 beast,2,tempest,1611 rare,2,tempest,1611 restore,2,tempest,1611 'Ban,2,tempest,1611 rate,2,tempest,1611 below,2,tempest,1611 hint,2,tempest,1611 bears,2,tempest,1611 drunkard,2,tempest,1611 companions,2,tempest,1611 hide,2,tempest,1611 sirrah,2,tempest,1611 glasses,2,tempest,1611 Soft,2,tempest,1611 chase,2,tempest,1611 Perform'd,2,tempest,1611 you'll,2,tempest,1611 springs,2,tempest,1611 Set,2,tempest,1611 presented,2,tempest,1611 Approach,2,tempest,1611 chins,2,tempest,1611 Therefore,2,tempest,1611 Lord,2,tempest,1611 powers,2,tempest,1611 Doth,2,tempest,1611 maze,2,tempest,1611 groves,2,tempest,1611 airy,2,tempest,1611 airs,2,tempest,1611 mortal,2,tempest,1611 towards,2,tempest,1611 blessings,2,tempest,1611 arrived,2,tempest,1611 fares,2,tempest,1611 Long,2,tempest,1611 singing,2,tempest,1611 mightst,2,tempest,1611 vent,2,tempest,1611 merrily,2,tempest,1611 bloody,2,tempest,1611 Could,2,tempest,1611 presently,2,tempest,1611 pickle,2,tempest,1611 known,2,tempest,1611 I'ld,2,tempest,1611 oracle,2,tempest,1611 wow,2,tempest,1611 inch,2,tempest,1611 infect,2,tempest,1611 miss,2,tempest,1611 need,2,tempest,1611 mountain,2,tempest,1611 over,2,tempest,1611 search,2,tempest,1611 trifle,2,tempest,1611 sucks,2,tempest,1611 lieutenant,2,tempest,1611 Alonso,2,tempest,1611 grave,2,tempest,1611 wrongs,2,tempest,1611 They'll,2,tempest,1611 odd,2,tempest,1611 retire,2,tempest,1611 dishonour,2,tempest,1611 wit,2,tempest,1611 We'll,2,tempest,1611 court,2,tempest,1611 knife,2,tempest,1611 prime,2,tempest,1611 banish'd,2,tempest,1611 bondage,2,tempest,1611 waking,2,tempest,1611 meaner,2,tempest,1611 oak,2,tempest,1611 subtle,2,tempest,1611 'We,2,tempest,1611 sinews,2,tempest,1611 plummet,2,tempest,1611 stick,2,tempest,1611 hurried,2,tempest,1611 standard,2,tempest,1611 growing,2,tempest,1611 themselves,2,tempest,1611 assure,2,tempest,1611 danger,2,tempest,1611 forward,2,tempest,1611 Providence,2,tempest,1611 hail,2,tempest,1611 news,2,tempest,1611 baseness,2,tempest,1611 joints,2,tempest,1611 taken,2,tempest,1611 undrown'd,2,tempest,1611 what's,2,tempest,1611 rotten,2,tempest,1611 fun,2,tempest,1611 anger,2,tempest,1611 perfidious,2,tempest,1611 angry,2,tempest,1611 went,2,tempest,1611 grass,2,tempest,1611 table,2,tempest,1611 dispersed,2,tempest,1611 weapons,2,tempest,1611 miracle,2,tempest,1611 amends,2,tempest,1611 wert,2,tempest,1611 Shake,2,tempest,1611 grant,2,tempest,1611 rack,2,tempest,1611 grand,2,tempest,1611 wore,2,tempest,1611 ride,2,tempest,1611 Sweet,2,tempest,1611 minute,2,tempest,1611 Argier,2,tempest,1611 Mark,2,tempest,1611 offices,2,tempest,1611 perfect,2,tempest,1611 passion,2,tempest,1611 swallow'd,2,tempest,1611 Bow,2,tempest,1611 savage,2,tempest,1611 continue,2,tempest,1611 preservation,2,tempest,1611 Beats,2,tempest,1611 wide,2,tempest,1611 pocket,2,tempest,1611 uncle,2,tempest,1611 cloven,2,tempest,1611 Work,2,tempest,1611 meaning,2,tempest,1611 Four,2,tempest,1611 Bravely,2,tempest,1611 weakness,2,tempest,1611 tame,2,tempest,1611 tabour,2,tempest,1611 dam,2,tempest,1611 Each,2,tempest,1611 Welcome,2,tempest,1611 mischance,2,tempest,1611 gallant,2,tempest,1611 is't,2,tempest,1611 constant,2,tempest,1611 Fate,2,tempest,1611 Hymen's,2,tempest,1611 gentlemen,2,tempest,1611 wild,2,tempest,1611 Every,2,tempest,1611 pardon,2,tempest,1611 bigger,2,tempest,1611 None,2,tempest,1611 fertile,2,tempest,1611 distinctly,2,tempest,1611 hollow,2,tempest,1611 request,2,tempest,1611 assist,2,tempest,1611 cheerly,2,tempest,1611 lives,2,tempest,1611 commonwealth,2,tempest,1611 task,2,tempest,1611 lungs,2,tempest,1611 alone,2,tempest,1611 cheerful,2,tempest,1611 always,2,tempest,1611 breasts,2,tempest,1611 kingdom,2,tempest,1611 seed,2,tempest,1611 we'll,2,tempest,1611 confederates,2,tempest,1611 sees,2,tempest,1611 shapes,2,tempest,1611 Believe,2,tempest,1611 True,2,tempest,1611 perish'd,2,tempest,1611 berries,2,tempest,1611 setting,2,tempest,1611 traitor,2,tempest,1611 thrust,2,tempest,1611 Pray,2,tempest,1611 bestir,2,tempest,1611 pour,2,tempest,1611 Know,2,tempest,1611 Through,2,tempest,1611 prayer,2,tempest,1611 souls,2,tempest,1611 remove,2,tempest,1611 return,2,tempest,1611 'Farewell,2,tempest,1611 skull,2,tempest,1611 goes,2,tempest,1611 seized,2,tempest,1611 pool,2,tempest,1611 couple,2,tempest,1611 merchant,2,tempest,1611 ebb,2,tempest,1611 foison,2,tempest,1611 persuade,2,tempest,1611 eat,2,tempest,1611 Silver,2,tempest,1611 imagination,2,tempest,1611 mad,2,tempest,1611 lazy,2,tempest,1611 reeds,2,tempest,1611 abroad,2,tempest,1611 cheated,2,tempest,1611 begins,2,tempest,1611 learn,2,tempest,1611 burst,2,tempest,1611 dread,2,tempest,1611 headed,2,tempest,1611 trim,2,tempest,1611 sovereign,2,tempest,1611 comforter,2,tempest,1611 limit,2,tempest,1611 harmony,2,tempest,1611 homage,2,tempest,1611 whiles,2,tempest,1611 lass,2,tempest,1611 Beseech,2,tempest,1611 inherit,2,tempest,1611 brooks,2,tempest,1611 sailors,2,tempest,1611 hush,2,tempest,1611 list,2,tempest,1611 follow'd,2,tempest,1611 mow,2,tempest,1611 assurance,2,tempest,1611 harpy,2,tempest,1611 dog,2,tempest,1611 honour'd,2,tempest,1611 dark,2,tempest,1611 dare,2,tempest,1611 toe,2,tempest,1611 Rich,2,tempest,1611 blessing,2,tempest,1611 instruction,2,tempest,1611 o'erboard,2,tempest,1611 vex'd,2,tempest,1611 greatness,2,tempest,1611 smell,2,tempest,1611 dew,2,tempest,1611 pronounce,2,tempest,1611 eyelids,2,tempest,1611 ten,2,tempest,1611 hest,2,tempest,1611 tread,2,tempest,1611 sands,2,tempest,1611 din,2,tempest,1611 wouldst,2,tempest,1611 turn'd,2,tempest,1611 enemy,2,tempest,1611 answer,3,tempest,1611 guard,3,tempest,1611 swords,3,tempest,1611 c,3,tempest,1611 days,3,tempest,1611 Hear,3,tempest,1611 country,3,tempest,1611 wicked,3,tempest,1611 Whether,3,tempest,1611 lower,3,tempest,1611 labours,3,tempest,1611 joy,3,tempest,1611 darkness,3,tempest,1611 its,3,tempest,1611 sort,3,tempest,1611 sore,3,tempest,1611 pinch,3,tempest,1611 remain,3,tempest,1611 friends,3,tempest,1611 lightning,3,tempest,1611 cast,3,tempest,1611 garment,3,tempest,1611 cramps,3,tempest,1611 draw,3,tempest,1611 pine,3,tempest,1611 dance,3,tempest,1611 words,3,tempest,1611 pile,3,tempest,1611 Mercy,3,tempest,1611 subjects,3,tempest,1611 fingers,3,tempest,1611 riches,3,tempest,1611 monster's,3,tempest,1611 bound,3,tempest,1611 'twere,3,tempest,1611 fleet,3,tempest,1611 wake,3,tempest,1611 embrace,3,tempest,1611 raised,3,tempest,1611 mantle,3,tempest,1611 Heavens,3,tempest,1611 cause,3,tempest,1611 second,3,tempest,1611 study,3,tempest,1611 stuff,3,tempest,1611 play'd,3,tempest,1611 release,3,tempest,1611 taught,3,tempest,1611 mocks,3,tempest,1611 afraid,3,tempest,1611 common,3,tempest,1611 encounter,3,tempest,1611 feel,3,tempest,1611 promise,3,tempest,1611 feet,3,tempest,1611 brine,3,tempest,1611 false,3,tempest,1611 wind,3,tempest,1611 others,3,tempest,1611 flesh,3,tempest,1611 Please,3,tempest,1611 heaven,3,tempest,1611 harmless,3,tempest,1611 bold,3,tempest,1611 seest,3,tempest,1611 Fetch,3,tempest,1611 beating,3,tempest,1611 voice,3,tempest,1611 spoke,3,tempest,1611 neither,3,tempest,1611 patience,3,tempest,1611 bow,3,tempest,1611 Whiles,3,tempest,1611 itself,3,tempest,1611 Lo,3,tempest,1611 inclined,3,tempest,1611 Stand,3,tempest,1611 butt,3,tempest,1611 kept,3,tempest,1611 creature,3,tempest,1611 sings,3,tempest,1611 innocent,3,tempest,1611 Within,3,tempest,1611 Ha,3,tempest,1611 means,3,tempest,1611 pleasure,3,tempest,1611 tribute,3,tempest,1611 bid,3,tempest,1611 Let's,3,tempest,1611 pox,3,tempest,1611 ague,3,tempest,1611 quiet,3,tempest,1611 blood,3,tempest,1611 obey,3,tempest,1611 control,3,tempest,1611 behind,3,tempest,1611 cat,3,tempest,1611 Put,3,tempest,1611 twice,3,tempest,1611 farewell,3,tempest,1611 Spirit,3,tempest,1611 pains,3,tempest,1611 Like,3,tempest,1611 pitch,3,tempest,1611 dogs,3,tempest,1611 virgin,3,tempest,1611 breath,3,tempest,1611 forgive,3,tempest,1611 magic,3,tempest,1611 stood,3,tempest,1611 dwell,3,tempest,1611 forget,3,tempest,1611 hadst,3,tempest,1611 Yes,3,tempest,1611 playing,3,tempest,1611 less,3,tempest,1611 Burthen,3,tempest,1611 those,3,tempest,1611 potent,3,tempest,1611 ill,3,tempest,1611 act,3,tempest,1611 nimble,3,tempest,1611 forgot,3,tempest,1611 More,3,tempest,1611 liberty,3,tempest,1611 four,3,tempest,1611 pluck,3,tempest,1611 Under,3,tempest,1611 logs,3,tempest,1611 strive,3,tempest,1611 alive,3,tempest,1611 creatures,3,tempest,1611 mayst,3,tempest,1611 touch,3,tempest,1611 enemies,3,tempest,1611 Hath,3,tempest,1611 howling,3,tempest,1611 having,3,tempest,1611 witch,3,tempest,1611 Should,3,tempest,1611 watch,3,tempest,1611 often,3,tempest,1611 through,3,tempest,1611 silence,3,tempest,1611 repose,3,tempest,1611 waked,3,tempest,1611 pinch'd,3,tempest,1611 tender,3,tempest,1611 year,3,tempest,1611 Alack,3,tempest,1611 strike,3,tempest,1611 Sit,3,tempest,1611 affections,3,tempest,1611 fairy,3,tempest,1611 perform,3,tempest,1611 ignorant,3,tempest,1611 Sea,3,tempest,1611 Look,3,tempest,1611 tempest,3,tempest,1611 dearest,3,tempest,1611 issue,3,tempest,1611 blow,3,tempest,1611 vision,3,tempest,1611 Antonio,3,tempest,1611 amazement,3,tempest,1611 discharge,3,tempest,1611 wet,3,tempest,1611 taste,3,tempest,1611 salt,3,tempest,1611 safely,3,tempest,1611 stomach,3,tempest,1611 why,3,tempest,1611 cure,3,tempest,1611 confined,3,tempest,1611 third,3,tempest,1611 standing,3,tempest,1611 save,3,tempest,1611 arms,3,tempest,1611 between,3,tempest,1611 ambition,3,tempest,1611 found,3,tempest,1611 brother's,3,tempest,1611 ends,3,tempest,1611 face,3,tempest,1611 waters,3,tempest,1611 Till,3,tempest,1611 cloud,3,tempest,1611 fortune,3,tempest,1611 please,3,tempest,1611 duck,3,tempest,1611 pleased,3,tempest,1611 fit,3,tempest,1611 profit,3,tempest,1611 ne'er,3,tempest,1611 bark,3,tempest,1611 shows,3,tempest,1611 bite,3,tempest,1611 patient,3,tempest,1611 waves,3,tempest,1611 Very,3,tempest,1611 fast,3,tempest,1611 man's,3,tempest,1611 Prosper,3,tempest,1611 carry,3,tempest,1611 wilt,3,tempest,1611 holy,3,tempest,1611 quit,3,tempest,1611 Although,3,tempest,1611 unto,3,tempest,1611 Wherefore,3,tempest,1611 Awake,3,tempest,1611 seas,3,tempest,1611 elements,3,tempest,1611 log,3,tempest,1611 seen,3,tempest,1611 seem,3,tempest,1611 talking,3,tempest,1611 Lie,3,tempest,1611 vessel,3,tempest,1611 condition,3,tempest,1611 heavenly,3,tempest,1611 tree,3,tempest,1611 beheld,3,tempest,1611 prison,3,tempest,1611 barren,3,tempest,1611 leagues,3,tempest,1611 clouds,3,tempest,1611 swim,3,tempest,1611 supplant,3,tempest,1611 Amen,3,tempest,1611 credit,3,tempest,1611 flat,3,tempest,1611 late,3,tempest,1611 virtue,3,tempest,1611 May,3,tempest,1611 Without,3,tempest,1611 hurt,3,tempest,1611 content,3,tempest,1611 Nymphs,3,tempest,1611 destroy,3,tempest,1611 dry,3,tempest,1611 shake,3,tempest,1611 Take,3,tempest,1611 he'll,3,tempest,1611 cabin,3,tempest,1611 soundly,3,tempest,1611 th',3,tempest,1611 hatches,3,tempest,1611 sharp,3,tempest,1611 women,3,tempest,1611 pity,4,tempest,1611 suffer,4,tempest,1611 for't,4,tempest,1611 heir,4,tempest,1611 rock,4,tempest,1611 bones,4,tempest,1611 roar,4,tempest,1611 space,4,tempest,1611 PROSPERO'S,4,tempest,1611 contract,4,tempest,1611 sight,4,tempest,1611 laugh,4,tempest,1611 truth,4,tempest,1611 works,4,tempest,1611 become,4,tempest,1611 case,4,tempest,1611 mercy,4,tempest,1611 Poor,4,tempest,1611 plague,4,tempest,1611 another,4,tempest,1611 something,4,tempest,1611 sit,4,tempest,1611 better,4,tempest,1611 against,4,tempest,1611 merry,4,tempest,1611 JUNO,4,tempest,1611 ashore,4,tempest,1611 mother,4,tempest,1611 worse,4,tempest,1611 turn,4,tempest,1611 sun,4,tempest,1611 Hence,4,tempest,1611 mean,4,tempest,1611 book,4,tempest,1611 project,4,tempest,1611 each,4,tempest,1611 I',4,tempest,1611 What's,4,tempest,1611 III,4,tempest,1611 An,4,tempest,1611 hey,4,tempest,1611 scurvy,4,tempest,1611 hid,4,tempest,1611 strangely,4,tempest,1611 Had,4,tempest,1611 past,4,tempest,1611 monstrous,4,tempest,1611 prove,4,tempest,1611 weep,4,tempest,1611 grief,4,tempest,1611 goodly,4,tempest,1611 people,4,tempest,1611 drowning,4,tempest,1611 sink,4,tempest,1611 solemn,4,tempest,1611 deep,4,tempest,1611 wreck,4,tempest,1611 needs,4,tempest,1611 sack,4,tempest,1611 hands,4,tempest,1611 sometime,4,tempest,1611 age,4,tempest,1611 spell,4,tempest,1611 jerkin,4,tempest,1611 brought,4,tempest,1611 plot,4,tempest,1611 hard,4,tempest,1611 Most,4,tempest,1611 half,4,tempest,1611 natural,4,tempest,1611 call'd,4,tempest,1611 prince,4,tempest,1611 midnight,4,tempest,1611 hate,4,tempest,1611 yare,4,tempest,1611 ye,4,tempest,1611 right,4,tempest,1611 few,4,tempest,1611 wreck'd,4,tempest,1611 Carthage,4,tempest,1611 gentle,4,tempest,1611 She,4,tempest,1611 child,4,tempest,1611 yours,4,tempest,1611 high,4,tempest,1611 prize,4,tempest,1611 dream,4,tempest,1611 comes,4,tempest,1611 woe,4,tempest,1611 devils,4,tempest,1611 let's,4,tempest,1611 labour,4,tempest,1611 trouble,4,tempest,1611 same,4,tempest,1611 get,4,tempest,1611 near,4,tempest,1611 break,4,tempest,1611 fetch,4,tempest,1611 beseech,4,tempest,1611 recover,4,tempest,1611 Say,4,tempest,1611 burthen,4,tempest,1611 heavy,4,tempest,1611 Can,4,tempest,1611 serve,4,tempest,1611 duke,4,tempest,1611 drops,4,tempest,1611 Even,4,tempest,1611 glad,4,tempest,1611 cried,4,tempest,1611 Make,4,tempest,1611 yond,4,tempest,1611 fine,4,tempest,1611 fill,4,tempest,1611 Lead,4,tempest,1611 boatswain,4,tempest,1611 tale,4,tempest,1611 talk,4,tempest,1611 lay,4,tempest,1611 thousand,4,tempest,1611 stroke,4,tempest,1611 hold,4,tempest,1611 home,4,tempest,1611 Claribel,4,tempest,1611 prayers,4,tempest,1611 hearts,4,tempest,1611 eyed,4,tempest,1611 drunk,4,tempest,1611 seek,4,tempest,1611 'twixt,4,tempest,1611 drunken,4,tempest,1611 Mine,4,tempest,1611 Dido,4,tempest,1611 person,4,tempest,1611 house,4,tempest,1611 hours,4,tempest,1611 roaring,4,tempest,1611 cold,4,tempest,1611 trod,4,tempest,1611 least,4,tempest,1611 met,4,tempest,1611 makes,4,tempest,1611 Since,4,tempest,1611 Sings,4,tempest,1611 books,4,tempest,1611 liquor,4,tempest,1611 catch,4,tempest,1611 lady,4,tempest,1611 told,5,tempest,1611 drop,5,tempest,1611 peace,5,tempest,1611 Wilt,5,tempest,1611 thought,5,tempest,1611 sleeps,5,tempest,1611 beest,5,tempest,1611 Whom,5,tempest,1611 care,5,tempest,1611 charge,5,tempest,1611 yourself,5,tempest,1611 charms,5,tempest,1611 Give,5,tempest,1611 sure,5,tempest,1611 calf,5,tempest,1611 warrant,5,tempest,1611 nymphs,5,tempest,1611 winds,5,tempest,1611 subject,5,tempest,1611 looks,5,tempest,1611 doubt,5,tempest,1611 These,5,tempest,1611 fellow,5,tempest,1611 born,5,tempest,1611 above,5,tempest,1611 weather,5,tempest,1611 hence,5,tempest,1611 wish,5,tempest,1611 There's,5,tempest,1611 Follow,5,tempest,1611 senses,5,tempest,1611 therefore,5,tempest,1611 canst,5,tempest,1611 II,5,tempest,1611 quick,5,tempest,1611 ears,5,tempest,1611 beyond,5,tempest,1611 sing,5,tempest,1611 servant,5,tempest,1611 wench,5,tempest,1611 ho,5,tempest,1611 loved,5,tempest,1611 hark,5,tempest,1611 speaks,5,tempest,1611 drawn,5,tempest,1611 fool,5,tempest,1611 ministers,5,tempest,1611 far,5,tempest,1611 delicate,5,tempest,1611 Against,5,tempest,1611 lords,5,tempest,1611 eye,5,tempest,1611 charm,5,tempest,1611 several,5,tempest,1611 there's,5,tempest,1611 mark,5,tempest,1611 state,5,tempest,1611 Being,5,tempest,1611 only,5,tempest,1611 mariners,5,tempest,1611 Ceres,5,tempest,1611 drowned,5,tempest,1611 hair,5,tempest,1611 ground,5,tempest,1611 company,5,tempest,1611 rich,5,tempest,1611 kiss,5,tempest,1611 Miranda,5,tempest,1611 given,5,tempest,1611 strong,5,tempest,1611 Juno,5,tempest,1611 back,5,tempest,1611 together,5,tempest,1611 purpose,5,tempest,1611 leave,5,tempest,1611 afeard,5,tempest,1611 Another,5,tempest,1611 thoughts,5,tempest,1611 Mariners,5,tempest,1611 marriage,5,tempest,1611 human,5,tempest,1611 attend,5,tempest,1611 He's,5,tempest,1611 drown'd,5,tempest,1611 himself,5,tempest,1611 die,5,tempest,1611 mistress,6,tempest,1611 help,6,tempest,1611 Must,6,tempest,1611 drink,6,tempest,1611 under,6,tempest,1611 soul,6,tempest,1611 run,6,tempest,1611 Upon,6,tempest,1611 Whose,6,tempest,1611 line,6,tempest,1611 full,6,tempest,1611 freedom,6,tempest,1611 Monster,6,tempest,1611 death,6,tempest,1611 further,6,tempest,1611 enough,6,tempest,1611 heavens,6,tempest,1611 thence,6,tempest,1611 language,6,tempest,1611 matter,6,tempest,1611 drown,6,tempest,1611 has,6,tempest,1611 bed,6,tempest,1611 play,6,tempest,1611 got,6,tempest,1611 IRIS,6,tempest,1611 story,6,tempest,1611 ha,6,tempest,1611 legs,6,tempest,1611 Sebastian,6,tempest,1611 Yet,6,tempest,1611 lose,6,tempest,1611 hang,6,tempest,1611 open,6,tempest,1611 present,6,tempest,1611 foot,6,tempest,1611 though,6,tempest,1611 Hast,6,tempest,1611 Hark,6,tempest,1611 FRANCISCO,6,tempest,1611 here's,6,tempest,1611 maid,6,tempest,1611 almost,6,tempest,1611 wonder,6,tempest,1611 none,6,tempest,1611 things,6,tempest,1611 Dost,6,tempest,1611 many,6,tempest,1611 CERES,6,tempest,1611 Ferdinand,6,tempest,1611 father's,6,tempest,1611 living,6,tempest,1611 fire,6,tempest,1611 Were,6,tempest,1611 five,6,tempest,1611 sorrow,6,tempest,1611 wood,6,tempest,1611 split,6,tempest,1611 next,6,tempest,1611 farther,6,tempest,1611 fair,6,tempest,1611 That's,6,tempest,1611 old,6,tempest,1611 tune,6,tempest,1611 thank,6,tempest,1611 green,6,tempest,1611 wife,6,tempest,1611 fellows,6,tempest,1611 sound,6,tempest,1611 Spirits,6,tempest,1611 Before,6,tempest,1611 widow,6,tempest,1611 Did,6,tempest,1611 follow,6,tempest,1611 land,6,tempest,1611 liest,6,tempest,1611 certain,6,tempest,1611 without,6,tempest,1611 remembrance,6,tempest,1611 crown,6,tempest,1611 while,7,tempest,1611 world,7,tempest,1611 Nor,7,tempest,1611 noise,7,tempest,1611 Their,7,tempest,1611 about,7,tempest,1611 honour,7,tempest,1611 service,7,tempest,1611 wine,7,tempest,1611 One,7,tempest,1611 want,7,tempest,1611 Though,7,tempest,1611 friend,7,tempest,1611 wast,7,tempest,1611 name,7,tempest,1611 in't,7,tempest,1611 god,7,tempest,1611 gone,7,tempest,1611 Prithee,7,tempest,1611 been,7,tempest,1611 tongue,7,tempest,1611 storm,7,tempest,1611 beat,7,tempest,1611 dead,7,tempest,1611 thyself,7,tempest,1611 Master,7,tempest,1611 noble,7,tempest,1611 place,7,tempest,1611 show,7,tempest,1611 Are,7,tempest,1611 King,7,tempest,1611 Your,7,tempest,1611 garments,7,tempest,1611 end,7,tempest,1611 believe,7,tempest,1611 'Tis,7,tempest,1611 Shall,7,tempest,1611 fall,7,tempest,1611 fly,7,tempest,1611 even,7,tempest,1611 reason,7,tempest,1611 torment,7,tempest,1611 Sycorax,7,tempest,1611 last,7,tempest,1611 nature,7,tempest,1611 awake,7,tempest,1611 shape,7,tempest,1611 to,263,tempest,1611 o'er,8,tempest,1611 lies,8,tempest,1611 head,8,tempest,1611 call,8,tempest,1611 Not,8,tempest,1611 Duke,8,tempest,1611 see,8,tempest,1611 Our,8,tempest,1611 king's,8,tempest,1611 fear,8,tempest,1611 His,8,tempest,1611 On,8,tempest,1611 Good,8,tempest,1611 said,8,tempest,1611 left,8,tempest,1611 part,8,tempest,1611 water,8,tempest,1611 mouth,8,tempest,1611 slave,8,tempest,1611 stand,8,tempest,1611 Well,8,tempest,1611 shore,8,tempest,1611 prithee,8,tempest,1611 camest,8,tempest,1611 sweet,8,tempest,1611 ear,8,tempest,1611 on't,8,tempest,1611 live,8,tempest,1611 command,8,tempest,1611 e'er,8,tempest,1611 invisible,9,tempest,1611 rather,9,tempest,1611 Tunis,9,tempest,1611 came,9,tempest,1611 light,9,tempest,1611 Was,9,tempest,1611 within,9,tempest,1611 away,9,tempest,1611 Out,9,tempest,1611 after,9,tempest,1611 night,9,tempest,1611 Re,9,tempest,1611 long,9,tempest,1611 that's,9,tempest,1611 moon,9,tempest,1611 loss,9,tempest,1611 devil,9,tempest,1611 grace,9,tempest,1611 little,9,tempest,1611 fresh,9,tempest,1611 Than,9,tempest,1611 new,9,tempest,1611 ACT,9,tempest,1611 ere,9,tempest,1611 Some,9,tempest,1611 myself,9,tempest,1611 Then,9,tempest,1611 once,9,tempest,1611 heard,9,tempest,1611 work,9,tempest,1611 word,9,tempest,1611 thunder,9,tempest,1611 hour,9,tempest,1611 till,9,tempest,1611 comfort,9,tempest,1611 Gonzalo,9,tempest,1611 hope,9,tempest,1611 swear,9,tempest,1611 use,9,tempest,1611 thus,9,tempest,1611 cry,9,tempest,1611 spirits,9,tempest,1611 remember,9,tempest,1611 asleep,9,tempest,1611 power,9,tempest,1611 other,9,tempest,1611 pray,10,tempest,1611 dukedom,10,tempest,1611 whose,10,tempest,1611 look,10,tempest,1611 bear,10,tempest,1611 earth,10,tempest,1611 From,10,tempest,1611 mind,10,tempest,1611 still,10,tempest,1611 poor,10,tempest,1611 two,10,tempest,1611 might,10,tempest,1611 kind,10,tempest,1611 SCENE,10,tempest,1611 a,266,tempest,1611 ',11,tempest,1611 Would,11,tempest,1611 There,11,tempest,1611 both,11,tempest,1611 At,11,tempest,1611 music,11,tempest,1611 Go,11,tempest,1611 down,11,tempest,1611 doth,11,tempest,1611 Caliban,11,tempest,1611 lost,11,tempest,1611 hand,11,tempest,1611 indeed,11,tempest,1611 bottle,11,tempest,1611 THE,11,tempest,1611 didst,11,tempest,1611 free,11,tempest,1611 TEMPEST,11,tempest,1611 heart,11,tempest,1611 way,11,tempest,1611 queen,11,tempest,1611 great,11,tempest,1611 lie,11,tempest,1611 business,12,tempest,1611 Will,12,tempest,1611 every,12,tempest,1611 saw,12,tempest,1611 Why,12,tempest,1611 Here,12,tempest,1611 dost,12,tempest,1611 put,12,tempest,1611 'tis,12,tempest,1611 i',12,tempest,1611 air,12,tempest,1611 dear,12,tempest,1611 love,12,tempest,1611 foul,12,tempest,1611 ship,12,tempest,1611 before,12,tempest,1611 could,12,tempest,1611 think,12,tempest,1611 thine,12,tempest,1611 three,12,tempest,1611 find,12,tempest,1611 hither,12,tempest,1611 sleep,12,tempest,1611 true,12,tempest,1611 shalt,12,tempest,1611 set,13,tempest,1611 rest,13,tempest,1611 Ay,13,tempest,1611 Be,13,tempest,1611 enter,13,tempest,1611 keep,13,tempest,1611 ADRIAN,13,tempest,1611 Have,13,tempest,1611 into,13,tempest,1611 All,13,tempest,1611 Let,13,tempest,1611 eyes,13,tempest,1611 let,13,tempest,1611 Prospero,13,tempest,1611 Thy,13,tempest,1611 brave,14,tempest,1611 he's,14,tempest,1611 tell,14,tempest,1611 By,14,tempest,1611 since,14,tempest,1611 It,14,tempest,1611 We,14,tempest,1611 Exeunt,14,tempest,1611 does,14,tempest,1611 isle,14,tempest,1611 made,14,tempest,1611 Sir,14,tempest,1611 nor,14,tempest,1611 They,14,tempest,1611 fish,14,tempest,1611 who,14,tempest,1611 thing,14,tempest,1611 day,14,tempest,1611 whom,14,tempest,1611 first,14,tempest,1611 may,14,tempest,1611 men,14,tempest,1611 being,14,tempest,1611 cell,14,tempest,1611 cannot,14,tempest,1611 Exit,14,tempest,1611 life,15,tempest,1611 nothing,15,tempest,1611 never,15,tempest,1611 best,15,tempest,1611 go,15,tempest,1611 forth,15,tempest,1611 hast,15,tempest,1611 Trinculo,15,tempest,1611 very,15,tempest,1611 ever,15,tempest,1611 Stephano,15,tempest,1611 of,271,tempest,1611 brother,16,tempest,1611 hear,16,tempest,1611 Who,16,tempest,1611 off,16,tempest,1611 Where,16,tempest,1611 much,17,tempest,1611 Now,17,tempest,1611 daughter,17,tempest,1611 bring,17,tempest,1611 else,17,tempest,1611 He,17,tempest,1611 Or,17,tempest,1611 So,17,tempest,1611 done,17,tempest,1611 'em,17,tempest,1611 Boatswain,18,tempest,1611 speak,18,tempest,1611 well,18,tempest,1611 Ariel,18,tempest,1611 When,18,tempest,1611 spirit,18,tempest,1611 must,19,tempest,1611 can,19,tempest,1611 any,19,tempest,1611 up,19,tempest,1611 where,19,tempest,1611 come,19,tempest,1611 father,19,tempest,1611 son,20,tempest,1611 Is,20,tempest,1611 own,20,tempest,1611 master,20,tempest,1611 too,20,tempest,1611 Come,21,tempest,1611 Aside,21,tempest,1611 yet,21,tempest,1611 know,21,tempest,1611 strange,21,tempest,1611 In,22,tempest,1611 Milan,22,tempest,1611 out,22,tempest,1611 island,22,tempest,1611 lord,23,tempest,1611 hath,23,tempest,1611 How,23,tempest,1611 Naples,23,tempest,1611 time,23,tempest,1611 some,24,tempest,1611 With,24,tempest,1611 Do,24,tempest,1611 You,24,tempest,1611 again,24,tempest,1611 had,25,tempest,1611 give,25,tempest,1611 take,25,tempest,1611 when,25,tempest,1611 she,26,tempest,1611 king,26,tempest,1611 say,27,tempest,1611 sea,27,tempest,1611 an,27,tempest,1611 art,27,tempest,1611 such,28,tempest,1611 than,28,tempest,1611 these,28,tempest,1611 Which,28,tempest,1611 o',28,tempest,1611 one,28,tempest,1611 Of,29,tempest,1611 should,29,tempest,1611 then,30,tempest,1611 how,30,tempest,1611 No,31,tempest,1611 Enter,31,tempest,1611 man,31,tempest,1611 did,32,tempest,1611 from,33,tempest,1611 As,34,tempest,1611 if,34,tempest,1611 This,34,tempest,1611 there,35,tempest,1611 My,35,tempest,1611 If,35,tempest,1611 upon,36,tempest,1611 good,36,tempest,1611 monster,37,tempest,1611 make,37,tempest,1611 mine,37,tempest,1611 were,37,tempest,1611 what,37,tempest,1611 For,38,tempest,1611 am,38,tempest,1611 us,38,tempest,1611 would,38,tempest,1611 most,39,tempest,1611 That,39,tempest,1611 or,40,tempest,1611 But,40,tempest,1611 was,41,tempest,1611 What,41,tempest,1611 their,42,tempest,1611 Thou,42,tempest,1611 like,43,tempest,1611 our,43,tempest,1611 FERDINAND,43,tempest,1611 here,45,tempest,1611 them,45,tempest,1611 sir,46,tempest,1611 we,46,tempest,1611 which,47,tempest,1611 TRINCULO,47,tempest,1611 at,47,tempest,1611 ALONSO,48,tempest,1611 O,49,tempest,1611 her,49,tempest,1611 A,52,tempest,1611 more,53,tempest,1611 shall,54,tempest,1611 no,55,tempest,1611 GONZALO,58,tempest,1611 MIRANDA,58,tempest,1611 on,58,tempest,1611 I'll,58,tempest,1611 CALIBAN,59,tempest,1611 by,61,tempest,1611 now,62,tempest,1611 they,63,tempest,1611 he,64,tempest,1611 so,67,tempest,1611 STEPHANO,67,tempest,1611 will,68,tempest,1611 To,69,tempest,1611 do,69,tempest,1611 ANTONIO,69,tempest,1611 are,69,tempest,1611 ARIEL,72,tempest,1611 him,73,tempest,1611 but,73,tempest,1611 as,76,tempest,1611 all,79,tempest,1611 SEBASTIAN,80,tempest,1611 thy,84,tempest,1611 for,91,tempest,1611 your,92,tempest,1611 his,95,tempest,1611 have,95,tempest,1611 The,97,tempest,1611 thee,98,tempest,1611 with,113,tempest,1611 it,118,tempest,1611 and,375,tempest,1611 be,121,tempest,1611 PROSPERO,129,tempest,1611 is,132,tempest,1611 in,140,tempest,1611 thou,142,tempest,1611 And,143,tempest,1611 not,148,tempest,1611 this,151,tempest,1611 that,152,tempest,1611 me,157,tempest,1611 the,421,tempest,1611 you,189,tempest,1611 I,447,tempest,1611 my,253,tempest,1611 brave,1,various,0 'why,1,various,0 framed,1,various,0 Short,1,various,0 horn,1,various,0 King,1,various,0 Brighter,1,various,0 cripple,1,various,0 married,1,various,0 infirmity,1,various,0 joined,1,various,0 Co,1,various,0 Love's,1,various,0 bare,1,various,0 thunder,1,various,0 Fare,1,various,0 brawl,1,various,0 Causer,1,various,0 fawn'd,1,various,0 conquer,1,various,0 shown,1,various,0 fairest,1,various,0 partial,1,various,0 goddess,1,various,0 Unto,1,various,0 Vows,1,various,0 colour'd,1,various,0 Bountiful,1,various,0 feather'd,1,various,0 stay'st,1,various,0 sick,1,various,0 sweetly,1,various,0 knowledge,1,various,0 refrain,1,various,0 blemish'd,1,various,0 mickle,1,various,0 needing,1,various,0 V,1,various,0 daring,1,various,0 daff'd,1,various,0 side,1,various,0 smiled,1,various,0 rhetoric,1,various,0 longing,1,various,0 dolefull'st,1,various,0 X,1,various,0 tragic,1,various,0 Fearfully,1,various,0 'and,1,various,0 Foul,1,various,0 gain'd,1,various,0 meaning,1,various,0 hour,1,various,0 morning,1,various,0 strongest,1,various,0 XVII,1,various,0 feign,1,various,0 howling,1,various,0 comfort,1,various,0 guess,1,various,0 SUNDRY,1,various,0 Leaving,1,various,0 bullet,1,various,0 fair'st,1,various,0 lead,1,various,0 rusty,1,various,0 cock,1,various,0 anthem,1,various,0 While,1,various,0 friendship,1,various,0 Between,1,various,0 Seemeth,1,various,0 watch,1,various,0 rarity,1,various,0 double,1,various,0 rivers,1,various,0 much,1,various,0 borrow,1,various,0 mistress,1,various,0 tame,1,various,0 secrets,1,various,0 sigh,1,various,0 Have,1,various,0 III,1,various,0 leap,1,various,0 hope,1,various,0 Crabbed,1,various,0 Celestial,1,various,0 through,1,various,0 feeble,1,various,0 lad,1,various,0 madrigals,1,various,0 Alas,1,various,0 shepherd,1,various,0 gallant,1,various,0 flatters,1,various,0 tale,1,various,0 smother'd,1,various,0 name,1,various,0 damsel,1,various,0 knell,1,various,0 NOTES,1,various,0 talk,1,various,0 woman's,1,various,0 constant,1,various,0 lay,1,various,0 Hearts,1,various,0 TURTLE,1,various,0 hang'd,1,various,0 shadows,1,various,0 scarce,1,various,0 chaste,1,various,0 which,1,various,0 orient,1,various,0 ran,1,various,0 jestings,1,various,0 Be,1,various,0 female,1,various,0 brows,1,various,0 Inconstancy,1,various,0 maid,1,various,0 Lean'd,1,various,0 castle,1,various,0 Softer,1,various,0 poetry,1,various,0 Those,1,various,0 scant,1,various,0 addict,1,various,0 refresh,1,various,0 itself,1,various,0 ban,1,various,0 hill,1,various,0 asunder,1,various,0 griefs,1,various,0 rams,1,various,0 shouldst,1,various,0 assured,1,various,0 bad,1,various,0 betakes,1,various,0 session,1,various,0 bay,1,various,0 bounced,1,various,0 scene,1,various,0 interdict,1,various,0 indeed,1,various,0 pardon,1,various,0 takest,1,various,0 swears,1,various,0 eternity,1,various,0 thought,1,various,0 holy,1,various,0 'here,1,various,0 treble,1,various,0 space,1,various,0 cruel,1,various,0 short,1,various,0 mountains,1,various,0 osier,1,various,0 OF,1,various,0 kept,1,various,0 Ruthless,1,various,0 creature,1,various,0 'Gainst,1,various,0 No,1,various,0 seizure,1,various,0 guiles,1,various,0 contending,1,various,0 tales,1,various,0 thinks,1,various,0 force,1,various,0 sings,1,various,0 renying,1,various,0 nibbler,1,various,0 midst,1,various,0 hie,1,various,0 Although,1,various,0 Venus,1,various,0 joy'd,1,various,0 Fraughted,1,various,0 Phoenix,1,various,0 where,1,various,0 changed,1,various,0 unto,1,various,0 gentle,1,various,0 loyal,1,various,0 Augur,1,various,0 II,1,various,0 argument,1,various,0 'Wander,1,various,0 Number,1,various,0 hers,1,various,0 Herald,1,various,0 Must,1,various,0 IT,1,various,0 IV,1,various,0 IX,1,various,0 beats,1,various,0 prodigal,1,various,0 strong,1,various,0 flood,1,various,0 herd,1,various,0 wherewith,1,various,0 decay,1,various,0 coral,1,various,0 Either,1,various,0 goods,1,various,0 givest,1,various,0 Is,1,various,0 It,1,various,0 Bad,1,various,0 blossom,1,various,0 mourn'st,1,various,0 wither'd,1,various,0 comest,1,various,0 east,1,various,0 Dissembled,1,various,0 despair,1,various,0 added,1,various,0 surplice,1,various,0 Had,1,various,0 Beasts,1,various,0 offer,1,various,0 paradise,1,various,0 past,1,various,0 Playing,1,various,0 pass,1,various,0 amber,1,various,0 naked,1,various,0 tender,1,various,0 vainly,1,various,0 things,1,various,0 proud,1,various,0 velvet,1,various,0 Trees,1,various,0 unmeet,1,various,0 glorious,1,various,0 Property,1,various,0 VI,1,various,0 Arabian,1,various,0 melodious,1,various,0 framing,1,various,0 ewes,1,various,0 myrtles,1,various,0 Bright,1,various,0 Sitting,1,various,0 cool,1,various,0 signs,1,various,0 nought,1,various,0 soul,1,various,0 Juno,1,various,0 allure,1,various,0 suggest,1,various,0 always,1,various,0 obey,1,various,0 commence,1,various,0 beauty's,1,various,0 lapp'd,1,various,0 Pandion,1,various,0 fairer,1,various,0 admire,1,various,0 'Pity,1,various,0 ravish,1,various,0 dreaming,1,various,0 Good,1,various,0 slain,1,various,0 resound,1,various,0 obsequy,1,various,0 XV,1,various,0 lively,1,various,0 lies,1,various,0 wether's,1,various,0 'did,1,various,0 use,1,various,0 ivy,1,various,0 XI,1,various,0 Clear,1,various,0 run,1,various,0 sorrowing,1,various,0 osiers,1,various,0 iron,1,various,0 strike,1,various,0 sore,1,various,0 posterity,1,various,0 From,1,various,0 Dowland,1,various,0 learning,1,various,0 seen,1,various,0 MUSIC,1,various,0 seem,1,various,0 sits,1,various,0 Faith's,1,various,0 joys,1,various,0 down,1,various,0 adore,1,various,0 vadeth,1,various,0 hills,1,various,0 entice,1,various,0 hounds,1,various,0 'thy,1,various,0 thrall,1,various,0 Upon,1,various,0 Pack,1,various,0 ended,1,various,0 Ne'er,1,various,0 cheeks,1,various,0 look'd,1,various,0 'twixt,1,various,0 parting,1,various,0 clasps,1,various,0 Spied,1,various,0 grief,1,various,0 sees,1,various,0 ignorant,1,various,0 Pluck'd,1,various,0 misery,1,various,0 Jove's,1,various,0 fields,1,various,0 age's,1,various,0 peeping,1,various,0 XXI,1,various,0 Therefore,1,various,0 commandement,1,various,0 jigs,1,various,0 gone,1,various,0 cost,1,various,0 urn,1,various,0 bell,1,various,0 whereas,1,various,0 lightning,1,various,0 Lord,1,various,0 thereof,1,various,0 Or,1,various,0 forgeries,1,various,0 belt,1,various,0 mix'd,1,various,0 got,1,various,0 supremes,1,various,0 Corydon,1,various,0 Doth,1,various,0 cap,1,various,0 TO,1,various,0 worser,1,various,0 troop,1,various,0 vanquish'd,1,various,0 pack'd,1,various,0 placed,1,various,0 Poor,1,various,0 XIII,1,various,0 tricks,1,various,0 XVI,1,various,0 strength,1,various,0 Lost,1,various,0 VIII,1,various,0 mourn,1,various,0 WHEN,1,various,0 shepherds,1,various,0 Mild,1,various,0 See,1,various,0 cry,1,various,0 Forbade,1,various,0 sigh'd,1,various,0 wistly,1,various,0 discontent,1,various,0 charge,1,various,0 disdain,1,various,0 weak,1,various,0 daylight,1,various,0 craft,1,various,0 person,1,various,0 other's,1,various,0 mortal,1,various,0 sad,1,various,0 distincts,1,various,0 stark,1,various,0 fever's,1,various,0 ringing,1,various,0 milk,1,various,0 sole,1,various,0 grove,1,various,0 blame,1,various,0 wiser,1,various,0 Long,1,various,0 charms,1,various,0 singing,1,various,0 hours,1,various,0 Plays,1,various,0 Air,1,various,0 exile,1,various,0 curtail,1,various,0 outburneth,1,various,0 bait,1,various,0 stars,1,various,0 strict,1,various,0 suffice,1,various,0 Use,1,various,0 kisses,1,various,0 prayer,1,various,0 suddenly,1,various,0 remove,1,various,0 LOVE'S,1,various,0 blushing,1,various,0 self,1,various,0 loudest,1,various,0 buds,1,various,0 seld,1,various,0 Senseless,1,various,0 Persuade,1,various,0 twice,1,various,0 soothing,1,various,0 farewell,1,various,0 sell,1,various,0 kirtle,1,various,0 end,1,various,0 let,1,various,0 blush,1,various,0 didst,1,various,0 bleeding,1,various,0 lily,1,various,0 'tis,1,various,0 bloody,1,various,0 brother,1,various,0 Keep,1,various,0 Press,1,various,0 plight,1,various,0 Philomela,1,various,0 THRENOS,1,various,0 trumpet,1,various,0 remote,1,various,0 untutor'd,1,various,0 'Farewell,1,various,0 toward,1,various,0 cold,1,various,0 AND,1,various,0 head,1,various,0 presently,1,various,0 loveless,1,various,0 Melodious,1,various,0 cheer,1,various,0 XX,1,various,0 chose,1,various,0 seized,1,various,0 'Twas,1,various,0 protestings,1,various,0 stories,1,various,0 fearing,1,various,0 foil'd,1,various,0 town,1,various,0 known,1,various,0 golden,1,various,0 calm,1,various,0 wells,1,various,0 appalled,1,various,0 call,1,various,0 Flocks,1,various,0 pipe,1,various,0 another,1,various,0 wot,1,various,0 'Tereu,1,various,0 comprehend,1,various,0 woo,1,various,0 attaint,1,various,0 blow,1,various,0 harbinger,1,various,0 minutes,1,various,0 crowns,1,various,0 Ethiope,1,various,0 teach,1,various,0 Not,1,various,0 tower,1,various,0 quite,1,various,0 craved,1,various,0 toys,1,various,0 God,1,various,0 craggy,1,various,0 first,1,various,0 nature's,1,various,0 dissembled,1,various,0 need,1,various,0 store,1,various,0 purity,1,various,0 i',1,various,0 Forth,1,various,0 XIX,1,various,0 requiem,1,various,0 triumph,1,various,0 XIV,1,various,0 Single,1,various,0 Dreading,1,various,0 boar,1,various,0 began,1,various,0 black,1,various,0 deer,1,various,0 once,1,various,0 moving,1,various,0 valleys,1,various,0 sleep,1,various,0 fetched,1,various,0 Made,1,various,0 Quickly,1,various,0 air,1,various,0 divining,1,various,0 embraced,1,various,0 go,1,various,0 deserve,1,various,0 Serve,1,various,0 tyrant,1,various,0 gift,1,various,0 lays,1,various,0 excellent,1,various,0 repent,1,various,0 'Air,1,various,0 leave,1,various,0 cloudy,1,various,0 plains,1,various,0 left,1,various,0 evening,1,various,0 painting,1,various,0 sable,1,various,0 spirits,1,various,0 sung,1,various,0 wed,1,various,0 Wish'd,1,various,0 SONNETS,1,various,0 gain,1,various,0 yes,1,various,0 Paler,1,various,0 succor,1,various,0 perjury,1,various,0 sin,1,various,0 Wrought,1,various,0 Spenser,1,various,0 construe,1,various,0 Unless,1,various,0 bequeath,1,various,0 dales,1,various,0 swearing,1,various,0 breed,1,various,0 Phoebus',1,various,0 oaks,1,various,0 turtle's,1,various,0 same,1,various,0 enough,1,various,0 deal,1,various,0 passage,1,various,0 cement,1,various,0 brook's,1,various,0 lording's,1,various,0 'Twixt,1,various,0 smiling,1,various,0 renown,1,various,0 priest,1,various,0 pluck'd,1,various,0 sting,1,various,0 poets,1,various,0 Tempteth,1,various,0 near,1,various,0 meetings,1,various,0 redress,1,various,0 thing,1,various,0 gall,1,various,0 compounded,1,various,0 youngster,1,various,0 vice,1,various,0 set,1,various,0 sake,1,various,0 touch'd,1,various,0 Study,1,various,0 sister,1,various,0 throw,1,various,0 defence,1,various,0 wake,1,various,0 Outfacing,1,various,0 buried,1,various,0 phoenix,1,various,0 makest,1,various,0 Deep,1,various,0 yields,1,various,0 speed,1,various,0 oft,1,various,0 anew,1,various,0 falser,1,various,0 suit,1,various,0 Heart's,1,various,0 approach,1,various,0 beasts,1,various,0 ah,1,various,0 XII,1,various,0 thyself,1,various,0 enclosed,1,various,0 yield,1,various,0 court,1,various,0 Since,1,various,0 break,1,various,0 shaded,1,various,0 dried,1,various,0 cinders,1,various,0 says,1,various,0 pleasant,1,various,0 that's,1,various,0 thoughts,1,various,0 Procure,1,various,0 cures,1,various,0 Such,1,various,0 loving,1,various,0 commend,1,various,0 simplicity,1,various,0 fears,1,various,0 thinking,1,various,0 gay,1,various,0 Well,1,various,0 sworn,1,various,0 gan,1,various,0 'Had,1,various,0 unseen,1,various,0 Farewell,1,various,0 punishment,1,various,0 mantle,1,various,0 banish,1,various,0 ANSWER,1,various,0 looking,1,various,0 'O,1,various,0 heard,1,various,0 Was,1,various,0 counsel,1,various,0 hotter,1,various,0 physic,1,various,0 Saw,1,various,0 idle,1,various,0 lark,1,various,0 bow'd,1,various,0 Live,1,various,0 earth,1,various,0 deface,1,various,0 within,1,various,0 filed,1,various,0 studs,1,various,0 death's,1,various,0 last,1,various,0 disgrace,1,various,0 lass,1,various,0 firmly,1,various,0 subtle,1,various,0 speeding,1,various,0 wings,1,various,0 threne,1,various,0 credit,1,various,0 grounds,1,various,0 precurrer,1,various,0 Thine,1,various,0 liked,1,various,0 Other,1,various,0 doubt,1,various,0 defying,1,various,0 Embroider'd,1,various,0 flameth,1,various,0 Exhale,1,various,0 thither,1,various,0 Green,1,various,0 late,1,various,0 called,1,various,0 vow'd,1,various,0 skips,1,various,0 Think,1,various,0 play'd,1,various,0 brakes,1,various,0 moon,1,various,0 stick,1,various,0 nill,1,various,0 wax,1,various,0 sleeping,1,various,0 VII,1,various,0 believe,1,various,0 amiss,1,various,0 rise,1,various,0 tuned,1,various,0 shrieking,1,various,0 bewray'd,1,various,0 drives,1,various,0 between,1,various,0 Reason,1,various,0 Adon's,1,various,0 peep,1,various,0 'Once,1,various,0 swains,1,various,0 loved,1,various,0 growing,1,various,0 taught,1,various,0 oath,1,various,0 devil,1,various,0 human,1,various,0 merit,1,various,0 Grace,1,various,0 defy,1,various,0 wrong,1,various,0 themselves,1,various,0 LET,1,various,0 act,1,various,0 found,1,various,0 nimble,1,various,0 pride,1,various,0 Careless,1,various,0 wanton,1,various,0 forgot,1,various,0 bias,1,various,0 slack,1,various,0 'Fie,1,various,0 serve,1,various,0 turn,1,various,0 confounded,1,various,0 untimely,1,various,0 content,1,various,0 pure,1,various,0 afraid,1,various,0 wont,1,various,0 Because,1,various,0 chorus,1,various,0 hot,1,various,0 own,1,various,0 complain,1,various,0 fellow,1,various,0 ways,1,various,0 Death,1,various,0 spying,1,various,0 clipp'd,1,various,0 daughter,1,various,0 lullaby,1,various,0 cursed,1,various,0 habit,1,various,0 easy,1,various,0 damask,1,various,0 denying,1,various,0 kill'd,1,various,0 hard,1,various,0 XVIII,1,various,0 outward,1,various,0 Smooth,1,various,0 fault,1,various,0 unlaced,1,various,0 fix'd,1,various,0 brag,1,various,0 part,1,various,0 dog,1,various,0 agree,1,various,0 fear,1,various,0 Nymphs,1,various,0 essence,1,various,0 crow,1,various,0 round,1,various,0 nightingale,1,various,0 Wooing,1,various,0 dark,1,various,0 gender,1,various,0 welcome,1,various,0 pelf,1,various,0 fowl,1,various,0 shallow,1,various,0 Touches,1,various,0 Distance,1,various,0 pale,1,various,0 coined,1,various,0 worthy,1,various,0 pearl,1,various,0 posies,1,various,0 frame,1,various,0 PASSIONATE,1,various,0 More,1,various,0 anger,1,various,0 weeping,1,various,0 spleen,1,various,0 PILGRIM,1,various,0 humble,1,various,0 treads,1,various,0 shining,1,various,0 ruth,1,various,0 hand,1,various,0 supp'd,1,various,0 descant,1,various,0 deny,1,various,0 supply,1,various,0 rocks,1,various,0 another's,1,various,0 clip,1,various,0 mourners,1,various,0 nest,1,various,0 lame,1,various,0 Spare,1,various,0 plainly,1,various,0 pleasance,1,various,0 timely,1,various,0 certain,1,various,0 lurk,1,various,0 halt,1,various,0 forth,1,various,0 Vow,1,various,0 tarriance,1,various,0 beguiled,1,various,0 youngling,1,various,0 bring,1,various,0 corrupt,1,various,0 Even,1,various,0 Unskilful,1,various,0 weather,1,various,0 choose,1,various,0 speaking,1,various,0 rubbing,1,various,0 wing,1,various,0 Take,1,various,0 heartless,1,various,0 abhor,1,various,0 plum,1,various,0 cite,1,various,0 unripe,1,various,0 shalt,1,various,0 wished,1,various,0 trees,1,various,0 cried,1,various,0 Living,1,various,0 evil,1,various,0 cross,1,various,0 smell,1,various,0 cabin,1,various,0 hangs,1,various,0 once's,1,various,0 drown'd,1,various,0 Herds,1,various,0 hence,1,various,0 gins,1,various,0 desert,1,various,0 figured,1,various,0 brim,1,various,0 heaven,1,various,0 apt,1,various,0 frown,1,various,0 Suspect,1,various,0 lecher,1,various,0 mutual,1,various,0 victor,1,various,0 foe,1,various,0 fall,1,various,0 spirit,1,various,0 Englishman,1,various,0 constancy,1,various,0 wander,1,various,0 tereu,1,various,0 old,1,various,0 PHOENIX,1,various,0 dies,1,various,0 wish,1,various,0 Though,1,various,0 kill,1,various,0 show,1,various,0 alive,1,various,0 spectacle,1,various,0 dreadful,1,various,0 dismal,1,various,0 methinks,1,various,0 bold,1,various,0 fragrant,1,various,0 please,1,various,0 three,1,various,0 defunctive,1,various,0 combat,1,various,0 rings,1,various,0 repair,1,various,0 directly,1,various,0 work,1,various,0 wounds,1,various,0 eagle,1,various,0 froward,1,various,0 'he,1,various,0 throws,1,various,0 dated,1,various,0 Whereupon,1,various,0 lack,1,various,0 hast,1,various,0 Simple,1,various,0 stall'd,1,various,0 company,1,various,0 world's,1,various,0 roses,1,various,0 Adon,1,various,0 word,1,various,0 Words,1,various,0 favors,1,various,0 other,1,various,0 voice,1,various,0 Hot,1,various,0 concordant,1,various,0 unjust,1,various,0 Mars,1,various,0 flame,1,various,0 minute,1,various,0 share,1,various,0 Flaming,1,various,0 Sorrow,1,various,0 doubts,1,various,0 fresh,1,various,0 rule,1,various,0 turn'd,1,various,0 wiles,1,various,0 gazes,1,various,0 'Mongst,1,various,0 office,1,various,0 desire,1,various,0 Turning,1,various,0 sharp,1,various,0 steep,1,various,0 dewy,1,various,0 hedge,1,various,0 ne'er,1,various,0 book,1,various,0 swan,1,various,0 unwed,1,various,0 left'st,2,various,0 parts,2,various,0 time,2,various,0 shepherd's,2,various,0 touch,2,various,0 wherefore,2,various,0 practise,2,various,0 proffer,2,various,0 chiefly,2,various,0 tell,2,various,0 myrtle,2,various,0 till,2,various,0 broke,2,various,0 fancy,2,various,0 kiss,2,various,0 often,2,various,0 burn'd,2,various,0 By,2,various,0 brittle,2,various,0 thousand,2,various,0 boy,2,various,0 smile,2,various,0 wild,2,various,0 Let,2,various,0 hold,2,various,0 rose,2,various,0 Truth,2,various,0 hell,2,various,0 master,2,various,0 flocks,2,various,0 On,2,various,0 Faithful,2,various,0 frowning,2,various,0 wonder,2,various,0 doleful,2,various,0 bed,2,various,0 here,2,various,0 pleasure,2,various,0 winter,2,various,0 vain,2,various,0 sighs,2,various,0 sight,2,various,0 sport,2,various,0 tears,2,various,0 Anon,2,various,0 Scarce,2,various,0 lovely,2,various,0 Cytherea,2,various,0 swear,2,various,0 plants,2,various,0 trust,2,various,0 thorn,2,various,0 wounded,2,various,0 friends,2,various,0 'the,2,various,0 care,2,various,0 Heart,2,various,0 whom,2,various,0 song,2,various,0 Age,2,various,0 ere,2,various,0 ditty,2,various,0 you,2,various,0 learned,2,various,0 Save,2,various,0 jest,2,various,0 tree,2,various,0 Through,2,various,0 again,2,various,0 many,2,various,0 myself,2,various,0 saw,2,various,0 post,2,various,0 bud,2,various,0 Neither,2,various,0 alas,2,various,0 used,2,various,0 been,2,various,0 together,2,various,0 mark,2,various,0 Like,2,various,0 comes,2,various,0 They,2,various,0 I'll,2,various,0 soft,2,various,0 heaven's,2,various,0 said,2,various,0 Two,2,various,0 death,2,various,0 breast,2,various,0 phoenix',2,various,0 before,2,various,0 thigh,2,various,0 division,2,various,0 bear,2,various,0 stood,2,various,0 vapour,2,various,0 needs,2,various,0 Were,2,various,0 sit,2,various,0 what,2,various,0 dear,2,various,0 long,2,various,0 think,2,various,0 better,2,various,0 warlike,2,various,0 lady's,2,various,0 makes,2,various,0 am,2,various,0 dye,2,various,0 move,2,various,0 sitting,2,various,0 month,2,various,0 crave,2,various,0 'T,2,various,0 cause,2,various,0 looks,2,various,0 faults,2,various,0 lover,2,various,0 loss,2,various,0 May,2,various,0 arms,2,various,0 trusty,2,various,0 ill,2,various,0 spend,2,various,0 These,2,various,0 fight,2,various,0 showed,2,various,0 turning,2,various,0 grace,2,various,0 try,2,various,0 we,2,various,0 us,2,various,0 falls,2,various,0 takes,2,various,0 Did,2,various,0 earthly,2,various,0 white,2,various,0 solace,2,various,0 Whilst,2,various,0 lute,2,various,0 feed,2,various,0 grow,2,various,0 out,2,various,0 Under,2,various,0 refused,2,various,0 dame,2,various,0 without,2,various,0 ground,2,various,0 king,2,various,0 length,2,various,0 want,2,various,0 forswore,2,various,0 Till,2,various,0 forsworn,2,various,0 saint,2,various,0 strive,2,various,0 twain,2,various,0 wise,2,various,0 What,2,various,0 fool,2,various,0 chastity,2,various,0 flattering,2,various,0 oaths,2,various,0 sense,2,various,0 moan,2,various,0 fiend,2,various,0 passing,2,various,0 ever,2,various,0 fie,2,various,0 pretty,2,various,0 summer,2,various,0 right,3,various,0 these,3,various,0 told,3,various,0 pity,3,various,0 bird,3,various,0 make,3,various,0 Ah,3,various,0 Beauty,3,various,0 great,3,various,0 take,3,various,0 alack,3,various,0 nay,3,various,0 reason,3,various,0 doubtful,3,various,0 'Even,3,various,0 None,3,various,0 green,3,various,0 every,3,various,0 flowers,3,various,0 brook,3,various,0 alone,3,various,0 fickle,3,various,0 best,3,various,0 back,3,various,0 come,3,various,0 either,3,various,0 weep,3,various,0 remain,3,various,0 world,3,various,0 straw,3,various,0 THE,3,various,0 must,3,various,0 dove,3,various,0 sound,3,various,0 So,3,various,0 bent,3,various,0 heavenly,3,various,0 leaves,3,various,0 lovest,3,various,0 years,3,various,0 put,3,various,0 Jove,3,various,0 gloss,3,various,0 bade,3,various,0 poor,3,various,0 lie,3,various,0 Fortune,3,various,0 ear,3,various,0 look,3,various,0 fire,3,various,0 nothing,3,various,0 spite,3,various,0 thine,3,various,0 merry,3,various,0 win,3,various,0 stand,3,various,0 why,3,various,0 scorn,3,various,0 love's,3,various,0 fled,3,various,0 lips,3,various,0 being,3,various,0 when,3,various,0 morn,3,various,0 loves,3,various,0 such,3,various,0 Thus,3,various,0 beauty,3,various,0 those,3,various,0 two,3,various,0 Where,3,various,0 conceit,3,various,0 shade,3,various,0 spring,3,various,0 Thy,3,various,0 up,3,various,0 Lest,3,various,0 turtle,3,various,0 knight,3,various,0 Here,3,various,0 praise,3,various,0 shine,3,various,0 pluck,3,various,0 false,3,various,0 flower,3,various,0 wind,3,various,0 art,3,various,0 tomorrow,3,various,0 delight,3,various,0 seems,3,various,0 Fair,3,various,0 should,3,various,0 forlorn,3,various,0 silly,3,various,0 woman,3,various,0 himself,3,various,0 Sweet,3,various,0 How,3,various,0 find,3,various,0 vow,3,various,0 lady,3,various,0 each,4,various,0 made,4,various,0 music,4,various,0 neither,4,various,0 never,4,various,0 help,4,various,0 Every,4,various,0 faith,4,various,0 eyes,4,various,0 prove,4,various,0 Which,4,various,0 truth,4,various,0 pleasures,4,various,0 vaded,4,various,0 Thou,4,various,0 say,4,various,0 some,4,various,0 broken,4,various,0 full,4,various,0 deep,4,various,0 man,4,various,0 men,4,various,0 sorrow,4,various,0 heart,4,various,0 lost,4,various,0 how,4,various,0 There,4,various,0 With,4,various,0 sun,4,various,0 whether,4,various,0 pain,4,various,0 One,4,various,0 had,5,various,0 upon,5,various,0 none,5,various,0 He,5,various,0 Love,5,various,0 god,5,various,0 whose,5,various,0 youth,5,various,0 nor,5,various,0 sing,5,various,0 glass,5,various,0 their,5,various,0 still,5,various,0 birds,5,various,0 or,5,various,0 then,5,various,0 true,5,various,0 Adonis,5,various,0 more,5,various,0 Yet,5,various,0 if,5,various,0 cannot,5,various,0 angel,5,various,0 shall,5,various,0 might,5,various,0 though,5,various,0 rest,5,various,0 have,5,various,0 women,5,various,0 there,6,various,0 Her,6,various,0 eye,6,various,0 soon,6,various,0 mine,6,various,0 hear,6,various,0 Then,6,various,0 breath,6,various,0 dead,6,various,0 see,6,various,0 they,6,various,0 fell,6,various,0 them,6,various,0 live,6,various,0 know,6,various,0 When,6,various,0 our,6,various,0 friend,6,various,0 queen,7,various,0 In,7,various,0 young,7,various,0 good,7,various,0 can,7,various,0 thus,7,various,0 now,7,various,0 tongue,7,various,0 may,7,various,0 at,7,various,0 an,7,various,0 from,7,various,0 away,7,various,0 both,7,various,0 than,7,various,0 well,7,various,0 O,8,various,0 Youth,8,various,0 day,8,various,0 sweet,8,various,0 quoth,8,various,0 could,8,various,0 do,8,various,0 would,8,various,0 too,8,various,0 are,8,various,0 were,8,various,0 doth,9,various,0 age,9,various,0 The,9,various,0 hath,9,various,0 As,10,various,0 him,10,various,0 night,10,various,0 yet,10,various,0 fair,10,various,0 by,11,various,0 no,11,various,0 one,11,various,0 A,12,various,0 My,12,various,0 If,12,various,0 She,12,various,0 But,12,various,0 this,12,various,0 but,13,various,0 All,13,various,0 on,13,various,0 like,14,various,0 did,14,various,0 For,14,various,0 he,15,various,0 it,15,various,0 That,17,various,0 his,17,various,0 for,17,various,0 all,18,various,0 so,18,various,0 ',20,various,0 To,20,various,0 will,21,various,0 thou,22,various,0 as,23,various,0 was,23,various,0 thy,23,various,0 be,30,various,0 thee,30,various,0 me,32,various,0 that,35,various,0 her,36,various,0 she,36,various,0 my,36,various,0 with,36,various,0 And,37,various,0 love,37,various,0 not,41,various,0 of,41,various,0 is,42,various,0 I,46,various,0 in,49,various,0 a,55,various,0 and,68,various,0 to,70,various,0 the,106,various,0 holding,1,kingjohn,1596 Retaining,1,kingjohn,1596 overbear,1,kingjohn,1596 Oppress'd,1,kingjohn,1596 silken,1,kingjohn,1596 answered,1,kingjohn,1596 pleading,1,kingjohn,1596 deputy,1,kingjohn,1596 degenerate,1,kingjohn,1596 event,1,kingjohn,1596 unreprievable,1,kingjohn,1596 embattailed,1,kingjohn,1596 advanced,1,kingjohn,1596 generation,1,kingjohn,1596 parchment,1,kingjohn,1596 toll,1,kingjohn,1596 quality,1,kingjohn,1596 grovelling,1,kingjohn,1596 moral,1,kingjohn,1596 sped,1,kingjohn,1596 accordingly,1,kingjohn,1596 imaginary,1,kingjohn,1596 ignorance,1,kingjohn,1596 womanish,1,kingjohn,1596 drawing,1,kingjohn,1596 relief,1,kingjohn,1596 lamentable,1,kingjohn,1596 c,1,kingjohn,1596 invisible,1,kingjohn,1596 crouch,1,kingjohn,1596 confused,1,kingjohn,1596 reverberate,1,kingjohn,1596 suffer,1,kingjohn,1596 misplaced,1,kingjohn,1596 O'erbearing,1,kingjohn,1596 cutting,1,kingjohn,1596 taking,1,kingjohn,1596 advice,1,kingjohn,1596 infant,1,kingjohn,1596 infected,1,kingjohn,1596 echo,1,kingjohn,1596 plaster,1,kingjohn,1596 beadle,1,kingjohn,1596 cheer'd,1,kingjohn,1596 yielding,1,kingjohn,1596 rank'd,1,kingjohn,1596 Controlment,1,kingjohn,1596 weary,1,kingjohn,1596 Heat,1,kingjohn,1596 Smacks,1,kingjohn,1596 contradict,1,kingjohn,1596 orders,1,kingjohn,1596 Envenom,1,kingjohn,1596 inveterate,1,kingjohn,1596 writ,1,kingjohn,1596 wish'd,1,kingjohn,1596 discord,1,kingjohn,1596 christendom,1,kingjohn,1596 possible,1,kingjohn,1596 treasure,1,kingjohn,1596 espy,1,kingjohn,1596 Friday,1,kingjohn,1596 shapeless,1,kingjohn,1596 New,1,kingjohn,1596 finished,1,kingjohn,1596 o'erlook'd,1,kingjohn,1596 PHILIP'S,1,kingjohn,1596 tore,1,kingjohn,1596 plagued,1,kingjohn,1596 alack,1,kingjohn,1596 Whether,1,kingjohn,1596 fainting,1,kingjohn,1596 whirl,1,kingjohn,1596 hasty,1,kingjohn,1596 cannons,1,kingjohn,1596 Messengers,1,kingjohn,1596 glorified,1,kingjohn,1596 breathless,1,kingjohn,1596 robs,1,kingjohn,1596 hoarding,1,kingjohn,1596 possesseth,1,kingjohn,1596 resign,1,kingjohn,1596 shoulders,1,kingjohn,1596 rob,1,kingjohn,1596 patches,1,kingjohn,1596 doubtful,1,kingjohn,1596 roi,1,kingjohn,1596 western,1,kingjohn,1596 stopp'd,1,kingjohn,1596 Wilt,1,kingjohn,1596 highness',1,kingjohn,1596 scattered,1,kingjohn,1596 roar,1,kingjohn,1596 muse,1,kingjohn,1596 counties,1,kingjohn,1596 Women,1,kingjohn,1596 worshipful,1,kingjohn,1596 undoubted,1,kingjohn,1596 Dauphin's,1,kingjohn,1596 speedy,1,kingjohn,1596 mell,1,kingjohn,1596 fangs,1,kingjohn,1596 suggestions,1,kingjohn,1596 swifter,1,kingjohn,1596 whereupon,1,kingjohn,1596 blustering,1,kingjohn,1596 clears,1,kingjohn,1596 strengthen,1,kingjohn,1596 laughter,1,kingjohn,1596 needles,1,kingjohn,1596 frowning,1,kingjohn,1596 mess,1,kingjohn,1596 slaughter's,1,kingjohn,1596 thorns,1,kingjohn,1596 dash'd,1,kingjohn,1596 'havoc,1,kingjohn,1596 seamen,1,kingjohn,1596 younger,1,kingjohn,1596 slaughter'd,1,kingjohn,1596 unurged,1,kingjohn,1596 extends,1,kingjohn,1596 easier,1,kingjohn,1596 hers,1,kingjohn,1596 philosophy,1,kingjohn,1596 pardon'd,1,kingjohn,1596 uphold,1,kingjohn,1596 Saving,1,kingjohn,1596 overlooks,1,kingjohn,1596 groat,1,kingjohn,1596 theatre,1,kingjohn,1596 vain,1,kingjohn,1596 wherewith,1,kingjohn,1596 violent,1,kingjohn,1596 Passing,1,kingjohn,1596 muzzled,1,kingjohn,1596 purer,1,kingjohn,1596 Black,1,kingjohn,1596 braver,1,kingjohn,1596 disjoin'd,1,kingjohn,1596 ruffian,1,kingjohn,1596 disease,1,kingjohn,1596 grin,1,kingjohn,1596 grim,1,kingjohn,1596 braved,1,kingjohn,1596 errand,1,kingjohn,1596 utterance,1,kingjohn,1596 learn'd,1,kingjohn,1596 Cardinal,1,kingjohn,1596 familiarly,1,kingjohn,1596 brook,1,kingjohn,1596 rumour,1,kingjohn,1596 Joan,1,kingjohn,1596 dive,1,kingjohn,1596 rods,1,kingjohn,1596 shifted,1,kingjohn,1596 commodity,1,kingjohn,1596 Cries,1,kingjohn,1596 looked,1,kingjohn,1596 outscold,1,kingjohn,1596 naked,1,kingjohn,1596 thirteen,1,kingjohn,1596 maintain,1,kingjohn,1596 drink,1,kingjohn,1596 match'd,1,kingjohn,1596 nought,1,kingjohn,1596 worms,1,kingjohn,1596 innocency,1,kingjohn,1596 jades,1,kingjohn,1596 thirty,1,kingjohn,1596 innocence,1,kingjohn,1596 beldams,1,kingjohn,1596 Stamps,1,kingjohn,1596 press,1,kingjohn,1596 solemnized,1,kingjohn,1596 lieu,1,kingjohn,1596 malicious,1,kingjohn,1596 strumpet,1,kingjohn,1596 lien,1,kingjohn,1596 Ugly,1,kingjohn,1596 conceiving,1,kingjohn,1596 pick,1,kingjohn,1596 heedful,1,kingjohn,1596 Pour,1,kingjohn,1596 Unyoke,1,kingjohn,1596 juggling,1,kingjohn,1596 Nought,1,kingjohn,1596 rated,1,kingjohn,1596 scruple,1,kingjohn,1596 wounded,1,kingjohn,1596 Stephen,1,kingjohn,1596 Married,1,kingjohn,1596 unconstant,1,kingjohn,1596 PERSONAE,1,kingjohn,1596 churchyard,1,kingjohn,1596 proclaim,1,kingjohn,1596 rescued,1,kingjohn,1596 boy's,1,kingjohn,1596 cherished,1,kingjohn,1596 cudgell'd,1,kingjohn,1596 spare,1,kingjohn,1596 saved,1,kingjohn,1596 lightning,1,kingjohn,1596 mingled,1,kingjohn,1596 rub,1,kingjohn,1596 case,1,kingjohn,1596 teaches,1,kingjohn,1596 battles,1,kingjohn,1596 early,1,kingjohn,1596 Richard's,1,kingjohn,1596 deputies,1,kingjohn,1596 attempt,1,kingjohn,1596 Alps,1,kingjohn,1596 mistook,1,kingjohn,1596 aery,1,kingjohn,1596 spared,1,kingjohn,1596 indirect,1,kingjohn,1596 breach,1,kingjohn,1596 Once,1,kingjohn,1596 vast,1,kingjohn,1596 interrupted,1,kingjohn,1596 advantages,1,kingjohn,1596 wrestling,1,kingjohn,1596 chid,1,kingjohn,1596 calfs,1,kingjohn,1596 practises,1,kingjohn,1596 Uncleanly,1,kingjohn,1596 Pyrenean,1,kingjohn,1596 foreigners,1,kingjohn,1596 Salute,1,kingjohn,1596 thank'd,1,kingjohn,1596 Fellow,1,kingjohn,1596 sadly,1,kingjohn,1596 spies,1,kingjohn,1596 reconciled,1,kingjohn,1596 slept,1,kingjohn,1596 sole,1,kingjohn,1596 thousands,1,kingjohn,1596 leaning,1,kingjohn,1596 soothest,1,kingjohn,1596 Rash,1,kingjohn,1596 townsmen,1,kingjohn,1596 relieve,1,kingjohn,1596 Excuse,1,kingjohn,1596 years,1,kingjohn,1596 Cool,1,kingjohn,1596 outside,1,kingjohn,1596 buffets,1,kingjohn,1596 fulsome,1,kingjohn,1596 backward,1,kingjohn,1596 inhabit,1,kingjohn,1596 lilies,1,kingjohn,1596 circumstance,1,kingjohn,1596 hammer'd,1,kingjohn,1596 shrouds,1,kingjohn,1596 corner,1,kingjohn,1596 Plains,1,kingjohn,1596 crying,1,kingjohn,1596 lime,1,kingjohn,1596 broken,1,kingjohn,1596 Rescue,1,kingjohn,1596 assemble,1,kingjohn,1596 lily,1,kingjohn,1596 boldness,1,kingjohn,1596 horror,1,kingjohn,1596 purse,1,kingjohn,1596 Mercy,1,kingjohn,1596 Remember,1,kingjohn,1596 possessed,1,kingjohn,1596 yearly,1,kingjohn,1596 drew,1,kingjohn,1596 meddling,1,kingjohn,1596 sure,1,kingjohn,1596 Only,1,kingjohn,1596 spurns,1,kingjohn,1596 wants,1,kingjohn,1596 lift,1,kingjohn,1596 policy,1,kingjohn,1596 madness,1,kingjohn,1596 soil,1,kingjohn,1596 calm,1,kingjohn,1596 demands,1,kingjohn,1596 paper,1,kingjohn,1596 calf,1,kingjohn,1596 stifled,1,kingjohn,1596 untread,1,kingjohn,1596 pipe,1,kingjohn,1596 bragging,1,kingjohn,1596 equality,1,kingjohn,1596 Worcester,1,kingjohn,1596 making,1,kingjohn,1596 visaged,1,kingjohn,1596 confining,1,kingjohn,1596 rites,1,kingjohn,1596 likeness,1,kingjohn,1596 beardless,1,kingjohn,1596 Volquessen,1,kingjohn,1596 fools,1,kingjohn,1596 addition,1,kingjohn,1596 noise,1,kingjohn,1596 richer,1,kingjohn,1596 toys,1,kingjohn,1596 Avaunt,1,kingjohn,1596 regreet,1,kingjohn,1596 bated,1,kingjohn,1596 Nob,1,kingjohn,1596 jeopardy,1,kingjohn,1596 purity,1,kingjohn,1596 lesser,1,kingjohn,1596 Dreading,1,kingjohn,1596 slippers,1,kingjohn,1596 Wade,1,kingjohn,1596 Aloft,1,kingjohn,1596 kin,1,kingjohn,1596 paltry,1,kingjohn,1596 slippery,1,kingjohn,1596 something,1,kingjohn,1596 Amazons,1,kingjohn,1596 defiance,1,kingjohn,1596 moving,1,kingjohn,1596 oftentimes,1,kingjohn,1596 companies,1,kingjohn,1596 Gentle,1,kingjohn,1596 mounts,1,kingjohn,1596 Win,1,kingjohn,1596 view,1,kingjohn,1596 ladies',1,kingjohn,1596 Perchance,1,kingjohn,1596 deserve,1,kingjohn,1596 untoward,1,kingjohn,1596 outface,1,kingjohn,1596 seeking,1,kingjohn,1596 wage,1,kingjohn,1596 waft,1,kingjohn,1596 sunk,1,kingjohn,1596 flatly,1,kingjohn,1596 spheres,1,kingjohn,1596 Pembroke,1,kingjohn,1596 sums,1,kingjohn,1596 sunset,1,kingjohn,1596 forage,1,kingjohn,1596 faithfully,1,kingjohn,1596 comments,1,kingjohn,1596 Beyond,1,kingjohn,1596 'twere,1,kingjohn,1596 usurp'd,1,kingjohn,1596 agent,1,kingjohn,1596 Persever,1,kingjohn,1596 fleet,1,kingjohn,1596 containing,1,kingjohn,1596 Offending,1,kingjohn,1596 raileth,1,kingjohn,1596 saying,1,kingjohn,1596 monarch,1,kingjohn,1596 vice,1,kingjohn,1596 virtuous,1,kingjohn,1596 Dover,1,kingjohn,1596 Canonized,1,kingjohn,1596 perplex,1,kingjohn,1596 Kneel,1,kingjohn,1596 carrying,1,kingjohn,1596 traveller,1,kingjohn,1596 Confronts,1,kingjohn,1596 society,1,kingjohn,1596 tithe,1,kingjohn,1596 chiefest,1,kingjohn,1596 unsure,1,kingjohn,1596 throng,1,kingjohn,1596 'twas,1,kingjohn,1596 bridal,1,kingjohn,1596 wedding,1,kingjohn,1596 Plantagenets,1,kingjohn,1596 rottenness,1,kingjohn,1596 peevish,1,kingjohn,1596 doubtless,1,kingjohn,1596 disposed,1,kingjohn,1596 scorn,1,kingjohn,1596 wildest,1,kingjohn,1596 Thinking,1,kingjohn,1596 unprepared,1,kingjohn,1596 forsake,1,kingjohn,1596 love's,1,kingjohn,1596 stealing,1,kingjohn,1596 dismember,1,kingjohn,1596 combine,1,kingjohn,1596 embrace,1,kingjohn,1596 Unthread,1,kingjohn,1596 windy,1,kingjohn,1596 Gain,1,kingjohn,1596 skill,1,kingjohn,1596 Purchase,1,kingjohn,1596 hammer,1,kingjohn,1596 apparent,1,kingjohn,1596 War,1,kingjohn,1596 topful,1,kingjohn,1596 wince,1,kingjohn,1596 't,1,kingjohn,1596 'maid,1,kingjohn,1596 qualified,1,kingjohn,1596 equity,1,kingjohn,1596 second,1,kingjohn,1596 permit,1,kingjohn,1596 sharpest,1,kingjohn,1596 pitiful,1,kingjohn,1596 instruct,1,kingjohn,1596 scorched,1,kingjohn,1596 unmatchable,1,kingjohn,1596 wings,1,kingjohn,1596 suck,1,kingjohn,1596 inviolable,1,kingjohn,1596 merciless,1,kingjohn,1596 pieces,1,kingjohn,1596 war's,1,kingjohn,1596 stuff,1,kingjohn,1596 Hear'st,1,kingjohn,1596 betwixt,1,kingjohn,1596 Unkind,1,kingjohn,1596 confronted,1,kingjohn,1596 unreverend,1,kingjohn,1596 stuck,1,kingjohn,1596 abstract,1,kingjohn,1596 minion,1,kingjohn,1596 taught,1,kingjohn,1596 brawl'd,1,kingjohn,1596 Needs,1,kingjohn,1596 felt,1,kingjohn,1596 sly,1,kingjohn,1596 claim'd,1,kingjohn,1596 skins,1,kingjohn,1596 Leaps,1,kingjohn,1596 compound,1,kingjohn,1596 breeches,1,kingjohn,1596 redeem,1,kingjohn,1596 received,1,kingjohn,1596 staring,1,kingjohn,1596 savagery,1,kingjohn,1596 snow,1,kingjohn,1596 conceit,1,kingjohn,1596 brain,1,kingjohn,1596 blooded,1,kingjohn,1596 cousin's,1,kingjohn,1596 confounded,1,kingjohn,1596 Look'st,1,kingjohn,1596 compassion,1,kingjohn,1596 Grow,1,kingjohn,1596 braced,1,kingjohn,1596 shower,1,kingjohn,1596 guarded,1,kingjohn,1596 Officers,1,kingjohn,1596 consequently,1,kingjohn,1596 differences,1,kingjohn,1596 moulded,1,kingjohn,1596 figure,1,kingjohn,1596 habit,1,kingjohn,1596 treading,1,kingjohn,1596 rounded,1,kingjohn,1596 direct,1,kingjohn,1596 absence,1,kingjohn,1596 later,1,kingjohn,1596 inglorious,1,kingjohn,1596 quake,1,kingjohn,1596 runs,1,kingjohn,1596 scold,1,kingjohn,1596 abhorr'd,1,kingjohn,1596 King'd,1,kingjohn,1596 encounter,1,kingjohn,1596 dearly,1,kingjohn,1596 ripping,1,kingjohn,1596 mark'd,1,kingjohn,1596 Pardon,1,kingjohn,1596 gossiping,1,kingjohn,1596 taper,1,kingjohn,1596 toasting,1,kingjohn,1596 expedition,1,kingjohn,1596 fruit,1,kingjohn,1596 repentent,1,kingjohn,1596 household,1,kingjohn,1596 untrue,1,kingjohn,1596 white,1,kingjohn,1596 swoon,1,kingjohn,1596 worthy,1,kingjohn,1596 Wherein,1,kingjohn,1596 properly,1,kingjohn,1596 deafs,1,kingjohn,1596 Leave,1,kingjohn,1596 'Look,1,kingjohn,1596 thence,1,kingjohn,1596 irregular,1,kingjohn,1596 Whilst,1,kingjohn,1596 King's,1,kingjohn,1596 cries,1,kingjohn,1596 speechless,1,kingjohn,1596 sum,1,kingjohn,1596 crier,1,kingjohn,1596 perplex'd,1,kingjohn,1596 vanity,1,kingjohn,1596 brace,1,kingjohn,1596 clutch,1,kingjohn,1596 reverence,1,kingjohn,1596 feed,1,kingjohn,1596 bride,1,kingjohn,1596 rust,1,kingjohn,1596 painfully,1,kingjohn,1596 cease,1,kingjohn,1596 promise,1,kingjohn,1596 infinite,1,kingjohn,1596 saucy,1,kingjohn,1596 swore,1,kingjohn,1596 blind,1,kingjohn,1596 neighbourhood,1,kingjohn,1596 sinewed,1,kingjohn,1596 lances,1,kingjohn,1596 mounteth,1,kingjohn,1596 ancient,1,kingjohn,1596 behaviors,1,kingjohn,1596 artillery,1,kingjohn,1596 stuff'd,1,kingjohn,1596 putting,1,kingjohn,1596 Fly,1,kingjohn,1596 infant's,1,kingjohn,1596 shrink,1,kingjohn,1596 Rejoice,1,kingjohn,1596 tiger,1,kingjohn,1596 feebled,1,kingjohn,1596 handiwork,1,kingjohn,1596 dreamer,1,kingjohn,1596 respective,1,kingjohn,1596 mirth,1,kingjohn,1596 strew'd,1,kingjohn,1596 doom'd,1,kingjohn,1596 wipe,1,kingjohn,1596 sign'd,1,kingjohn,1596 know'st,1,kingjohn,1596 ruin,1,kingjohn,1596 witnesses,1,kingjohn,1596 seest,1,kingjohn,1596 turned,1,kingjohn,1596 compromise,1,kingjohn,1596 directly,1,kingjohn,1596 linked,1,kingjohn,1596 murder,1,kingjohn,1596 eagle,1,kingjohn,1596 displeasure,1,kingjohn,1596 sense,1,kingjohn,1596 withheld,1,kingjohn,1596 gawds,1,kingjohn,1596 ambassador,1,kingjohn,1596 window,1,kingjohn,1596 world's,1,kingjohn,1596 wiry,1,kingjohn,1596 Snatch,1,kingjohn,1596 bidding,1,kingjohn,1596 incense,1,kingjohn,1596 baked,1,kingjohn,1596 Bury,1,kingjohn,1596 doubts,1,kingjohn,1596 Proves,1,kingjohn,1596 bone,1,kingjohn,1596 wash,1,kingjohn,1596 dealt,1,kingjohn,1596 mistake,1,kingjohn,1596 Lions,1,kingjohn,1596 cannoneer,1,kingjohn,1596 desire,1,kingjohn,1596 naturally,1,kingjohn,1596 revel,1,kingjohn,1596 steel,1,kingjohn,1596 fortified,1,kingjohn,1596 endamagement,1,kingjohn,1596 distrust,1,kingjohn,1596 wast,1,kingjohn,1596 ruled,1,kingjohn,1596 manly,1,kingjohn,1596 chastised,1,kingjohn,1596 tend,1,kingjohn,1596 colour,1,kingjohn,1596 gripe,1,kingjohn,1596 sceptre,1,kingjohn,1596 DE,1,kingjohn,1596 hungry,1,kingjohn,1596 intelligence,1,kingjohn,1596 everlastingly,1,kingjohn,1596 offers,1,kingjohn,1596 patch'd,1,kingjohn,1596 pencil,1,kingjohn,1596 grief's,1,kingjohn,1596 bitter,1,kingjohn,1596 smokes,1,kingjohn,1596 refrain,1,kingjohn,1596 tumult,1,kingjohn,1596 bastardy,1,kingjohn,1596 life's,1,kingjohn,1596 merriment,1,kingjohn,1596 bastards,1,kingjohn,1596 sauciness,1,kingjohn,1596 artificer,1,kingjohn,1596 slaves,1,kingjohn,1596 cudgel,1,kingjohn,1596 morning,1,kingjohn,1596 drown,1,kingjohn,1596 sequence,1,kingjohn,1596 mortality,1,kingjohn,1596 Leaving,1,kingjohn,1596 melancholy,1,kingjohn,1596 Hold,1,kingjohn,1596 Threaten,1,kingjohn,1596 has,1,kingjohn,1596 backs,1,kingjohn,1596 Foretell,1,kingjohn,1596 While,1,kingjohn,1596 intendeth,1,kingjohn,1596 overthrow,1,kingjohn,1596 o'ermasterest,1,kingjohn,1596 climate,1,kingjohn,1596 What's,1,kingjohn,1596 crack,1,kingjohn,1596 Draws,1,kingjohn,1596 utter,1,kingjohn,1596 horseback,1,kingjohn,1596 refuse,1,kingjohn,1596 serving,1,kingjohn,1596 fores,1,kingjohn,1596 streams,1,kingjohn,1596 religious,1,kingjohn,1596 foresaid,1,kingjohn,1596 Poison'd,1,kingjohn,1596 legitimate,1,kingjohn,1596 invulnerable,1,kingjohn,1596 exercise,1,kingjohn,1596 pulse,1,kingjohn,1596 kneeling,1,kingjohn,1596 unsettled,1,kingjohn,1596 perfection,1,kingjohn,1596 controversy,1,kingjohn,1596 paw,1,kingjohn,1596 infection,1,kingjohn,1596 spoil,1,kingjohn,1596 depend,1,kingjohn,1596 wronged,1,kingjohn,1596 usurpingly,1,kingjohn,1596 youthful,1,kingjohn,1596 bow,1,kingjohn,1596 Him,1,kingjohn,1596 loath,1,kingjohn,1596 Whiles,1,kingjohn,1596 hurly,1,kingjohn,1596 eternal,1,kingjohn,1596 Becomes,1,kingjohn,1596 knowing,1,kingjohn,1596 verify,1,kingjohn,1596 refined,1,kingjohn,1596 vigour,1,kingjohn,1596 unnatural,1,kingjohn,1596 crumble,1,kingjohn,1596 among,1,kingjohn,1596 desperate,1,kingjohn,1596 assault,1,kingjohn,1596 Still,1,kingjohn,1596 smile,1,kingjohn,1596 spoil'd,1,kingjohn,1596 spots,1,kingjohn,1596 Play,1,kingjohn,1596 hopes,1,kingjohn,1596 flats,1,kingjohn,1596 bad,1,kingjohn,1596 prodigious,1,kingjohn,1596 Nature,1,kingjohn,1596 Ourselves,1,kingjohn,1596 sensible,1,kingjohn,1596 performed,1,kingjohn,1596 perfume,1,kingjohn,1596 bar,1,kingjohn,1596 supporter,1,kingjohn,1596 spout,1,kingjohn,1596 ladyship,1,kingjohn,1596 plea,1,kingjohn,1596 Wounded,1,kingjohn,1596 arbitrate,1,kingjohn,1596 denies,1,kingjohn,1596 listen,1,kingjohn,1596 potents,1,kingjohn,1596 ingrateful,1,kingjohn,1596 strangest,1,kingjohn,1596 creature,1,kingjohn,1596 denied,1,kingjohn,1596 archbishop,1,kingjohn,1596 pen,1,kingjohn,1596 translate,1,kingjohn,1596 sings,1,kingjohn,1596 Standing,1,kingjohn,1596 closely,1,kingjohn,1596 mortality's,1,kingjohn,1596 hie,1,kingjohn,1596 finds,1,kingjohn,1596 conjointly,1,kingjohn,1596 wisdom,1,kingjohn,1596 spoon,1,kingjohn,1596 Mocking,1,kingjohn,1596 changed,1,kingjohn,1596 enter'd,1,kingjohn,1596 ague's,1,kingjohn,1596 tear,1,kingjohn,1596 Something,1,kingjohn,1596 medicine,1,kingjohn,1596 rumour's,1,kingjohn,1596 harness'd,1,kingjohn,1596 sovereignty,1,kingjohn,1596 fingers',1,kingjohn,1596 unruly,1,kingjohn,1596 Neroes,1,kingjohn,1596 blest,1,kingjohn,1596 owner,1,kingjohn,1596 aweless,1,kingjohn,1596 strangely,1,kingjohn,1596 husbands,1,kingjohn,1596 surely,1,kingjohn,1596 deserved,1,kingjohn,1596 scroyles,1,kingjohn,1596 goods,1,kingjohn,1596 indenture,1,kingjohn,1596 tribute,1,kingjohn,1596 path,1,kingjohn,1596 conqueror,1,kingjohn,1596 pate,1,kingjohn,1596 revenue,1,kingjohn,1596 revolting,1,kingjohn,1596 sport,1,kingjohn,1596 bloom,1,kingjohn,1596 condemned,1,kingjohn,1596 troops,1,kingjohn,1596 pass,1,kingjohn,1596 prisonment,1,kingjohn,1596 unmatched,1,kingjohn,1596 treachery,1,kingjohn,1596 rankness,1,kingjohn,1596 accoutrement,1,kingjohn,1596 changer,1,kingjohn,1596 temples,1,kingjohn,1596 customed,1,kingjohn,1596 Is't,1,kingjohn,1596 display'd,1,kingjohn,1596 swirl,1,kingjohn,1596 strew,1,kingjohn,1596 Mary's,1,kingjohn,1596 nice,1,kingjohn,1596 countries,1,kingjohn,1596 VI,1,kingjohn,1596 cull'd,1,kingjohn,1596 meritorious,1,kingjohn,1596 tumbled,1,kingjohn,1596 quantity,1,kingjohn,1596 Rising,1,kingjohn,1596 Gone,1,kingjohn,1596 Langton,1,kingjohn,1596 repetitions,1,kingjohn,1596 Apennines,1,kingjohn,1596 St,1,kingjohn,1596 Adieu,1,kingjohn,1596 Forgive,1,kingjohn,1596 warn'd,1,kingjohn,1596 god,1,kingjohn,1596 Compare,1,kingjohn,1596 worshipped,1,kingjohn,1596 depending,1,kingjohn,1596 Murder,1,kingjohn,1596 Thou'rt,1,kingjohn,1596 wrinkle,1,kingjohn,1596 sits,1,kingjohn,1596 week,1,kingjohn,1596 welkin's,1,kingjohn,1596 nigh,1,kingjohn,1596 Open,1,kingjohn,1596 buss,1,kingjohn,1596 straw,1,kingjohn,1596 tyrannize,1,kingjohn,1596 absent,1,kingjohn,1596 brabbler,1,kingjohn,1596 Drum,1,kingjohn,1596 metal,1,kingjohn,1596 days',1,kingjohn,1596 'borrow'd,1,kingjohn,1596 fields,1,kingjohn,1596 embounded,1,kingjohn,1596 Po,1,kingjohn,1596 Sits,1,kingjohn,1596 salute,1,kingjohn,1596 bell,1,kingjohn,1596 Acquainted,1,kingjohn,1596 Forego,1,kingjohn,1596 sprightful,1,kingjohn,1596 cocker'd,1,kingjohn,1596 canon,1,kingjohn,1596 hymn,1,kingjohn,1596 scruples,1,kingjohn,1596 struck,1,kingjohn,1596 sincerity,1,kingjohn,1596 countercheque,1,kingjohn,1596 accounts,1,kingjohn,1596 couch,1,kingjohn,1596 sacrament,1,kingjohn,1596 wedlock,1,kingjohn,1596 latest,1,kingjohn,1596 wear,1,kingjohn,1596 Life,1,kingjohn,1596 perilous,1,kingjohn,1596 abbey,1,kingjohn,1596 idleness,1,kingjohn,1596 welkin,1,kingjohn,1596 gape,1,kingjohn,1596 Born,1,kingjohn,1596 congeal,1,kingjohn,1596 excusing,1,kingjohn,1596 Dies,1,kingjohn,1596 tempts,1,kingjohn,1596 Lift,1,kingjohn,1596 Drawing,1,kingjohn,1596 suddenly,1,kingjohn,1596 bulwark,1,kingjohn,1596 jewel,1,kingjohn,1596 twice,1,kingjohn,1596 persuasion,1,kingjohn,1596 imprison,1,kingjohn,1596 conversant,1,kingjohn,1596 planks,1,kingjohn,1596 fifth,1,kingjohn,1596 Holds,1,kingjohn,1596 brooded,1,kingjohn,1596 friendly,1,kingjohn,1596 tedious,1,kingjohn,1596 ungodly,1,kingjohn,1596 vaults,1,kingjohn,1596 beforehand,1,kingjohn,1596 harbour'd,1,kingjohn,1596 bud,1,kingjohn,1596 Showing,1,kingjohn,1596 beget,1,kingjohn,1596 dangerously,1,kingjohn,1596 swift,1,kingjohn,1596 despite,1,kingjohn,1596 worship's,1,kingjohn,1596 buy,1,kingjohn,1596 submission,1,kingjohn,1596 frowns,1,kingjohn,1596 child's,1,kingjohn,1596 longer,1,kingjohn,1596 Meet,1,kingjohn,1596 Whate'er,1,kingjohn,1596 swine,1,kingjohn,1596 crack'd,1,kingjohn,1596 shifts,1,kingjohn,1596 enterprise,1,kingjohn,1596 ensue,1,kingjohn,1596 Whither,1,kingjohn,1596 sing,1,kingjohn,1596 savours,1,kingjohn,1596 hovers,1,kingjohn,1596 hourly,1,kingjohn,1596 fulness,1,kingjohn,1596 wells,1,kingjohn,1596 vantage,1,kingjohn,1596 footing,1,kingjohn,1596 ashamed,1,kingjohn,1596 grandsire,1,kingjohn,1596 traded,1,kingjohn,1596 lately,1,kingjohn,1596 chafed,1,kingjohn,1596 exteriorly,1,kingjohn,1596 beginning,1,kingjohn,1596 anointed,1,kingjohn,1596 begin,1,kingjohn,1596 Bethink,1,kingjohn,1596 organ,1,kingjohn,1596 pearls,1,kingjohn,1596 uses,1,kingjohn,1596 solemn,1,kingjohn,1596 dogs,1,kingjohn,1596 noted,1,kingjohn,1596 sham,1,kingjohn,1596 entertain,1,kingjohn,1596 ghost,1,kingjohn,1596 toothpick,1,kingjohn,1596 impatience,1,kingjohn,1596 departed,1,kingjohn,1596 prophetic,1,kingjohn,1596 instant,1,kingjohn,1596 wretch,1,kingjohn,1596 mood,1,kingjohn,1596 image,1,kingjohn,1596 Nature's,1,kingjohn,1596 underprop,1,kingjohn,1596 aim,1,kingjohn,1596 snatch'd,1,kingjohn,1596 doff,1,kingjohn,1596 tyrant,1,kingjohn,1596 unfeignedly,1,kingjohn,1596 satisfy,1,kingjohn,1596 raise,1,kingjohn,1596 aid,1,kingjohn,1596 repeating,1,kingjohn,1596 battery,1,kingjohn,1596 current,1,kingjohn,1596 carrion,1,kingjohn,1596 sheep,1,kingjohn,1596 prevented,1,kingjohn,1596 stood,1,kingjohn,1596 wreck,1,kingjohn,1596 mistemper'd,1,kingjohn,1596 Making,1,kingjohn,1596 stoop,1,kingjohn,1596 hearer's,1,kingjohn,1596 bead,1,kingjohn,1596 murderous,1,kingjohn,1596 beam,1,kingjohn,1596 legs,1,kingjohn,1596 bid'st,1,kingjohn,1596 notes,1,kingjohn,1596 ago,1,kingjohn,1596 infixed,1,kingjohn,1596 whereon,1,kingjohn,1596 invocation,1,kingjohn,1596 stone,1,kingjohn,1596 unworthy,1,kingjohn,1596 deal,1,kingjohn,1596 gilt,1,kingjohn,1596 PHILLIP,1,kingjohn,1596 dignity,1,kingjohn,1596 deaf,1,kingjohn,1596 walled,1,kingjohn,1596 abbots,1,kingjohn,1596 befriend,1,kingjohn,1596 lent,1,kingjohn,1596 Figured,1,kingjohn,1596 holiday,1,kingjohn,1596 nobleman,1,kingjohn,1596 Last,1,kingjohn,1596 Besides,1,kingjohn,1596 suggestion,1,kingjohn,1596 stain'd,1,kingjohn,1596 rhymes,1,kingjohn,1596 victors,1,kingjohn,1596 does,1,kingjohn,1596 dwarfish,1,kingjohn,1596 icy,1,kingjohn,1596 boast,1,kingjohn,1596 waist,1,kingjohn,1596 waits,1,kingjohn,1596 ice,1,kingjohn,1596 treaty,1,kingjohn,1596 restraint,1,kingjohn,1596 yields,1,kingjohn,1596 Northamptonshire,1,kingjohn,1596 shed,1,kingjohn,1596 manner,1,kingjohn,1596 ah,1,kingjohn,1596 supreme,1,kingjohn,1596 Neptune's,1,kingjohn,1596 onset,1,kingjohn,1596 doom,1,kingjohn,1596 twisted,1,kingjohn,1596 rouse,1,kingjohn,1596 rumours,1,kingjohn,1596 correct,1,kingjohn,1596 realm,1,kingjohn,1596 idiot,1,kingjohn,1596 hospitable,1,kingjohn,1596 that's,1,kingjohn,1596 wonderful,1,kingjohn,1596 cures,1,kingjohn,1596 frights,1,kingjohn,1596 ox,1,kingjohn,1596 handercher,1,kingjohn,1596 comment,1,kingjohn,1596 lo,1,kingjohn,1596 Second,1,kingjohn,1596 strain,1,kingjohn,1596 tattering,1,kingjohn,1596 strait,1,kingjohn,1596 aside,1,kingjohn,1596 thrill,1,kingjohn,1596 eyeless,1,kingjohn,1596 uncleanly,1,kingjohn,1596 mote,1,kingjohn,1596 Italian,1,kingjohn,1596 misbegotten,1,kingjohn,1596 wrinkled,1,kingjohn,1596 Told,1,kingjohn,1596 whereof,1,kingjohn,1596 Fortune's,1,kingjohn,1596 carriages,1,kingjohn,1596 collected,1,kingjohn,1596 birthrights,1,kingjohn,1596 craker,1,kingjohn,1596 huntsmen,1,kingjohn,1596 incessantly,1,kingjohn,1596 'Where,1,kingjohn,1596 account,1,kingjohn,1596 Myself,1,kingjohn,1596 sufficed,1,kingjohn,1596 smilest,1,kingjohn,1596 studies,1,kingjohn,1596 temper,1,kingjohn,1596 age,1,kingjohn,1596 o'ercast,1,kingjohn,1596 stout,1,kingjohn,1596 challenged,1,kingjohn,1596 impediment,1,kingjohn,1596 enjoys,1,kingjohn,1596 le,1,kingjohn,1596 Hostility,1,kingjohn,1596 Yes,1,kingjohn,1596 drift,1,kingjohn,1596 beholding,1,kingjohn,1596 Thrust,1,kingjohn,1596 achieved,1,kingjohn,1596 ample,1,kingjohn,1596 semblance,1,kingjohn,1596 Desiring,1,kingjohn,1596 Grief,1,kingjohn,1596 dispose,1,kingjohn,1596 afternoon,1,kingjohn,1596 knot,1,kingjohn,1596 spend,1,kingjohn,1596 Weakness,1,kingjohn,1596 roundure,1,kingjohn,1596 violet,1,kingjohn,1596 suspected,1,kingjohn,1596 sightless,1,kingjohn,1596 lock'd,1,kingjohn,1596 betime,1,kingjohn,1596 greater,1,kingjohn,1596 priories,1,kingjohn,1596 nimble,1,kingjohn,1596 knew,1,kingjohn,1596 supremacy,1,kingjohn,1596 disjoining,1,kingjohn,1596 Forwearied,1,kingjohn,1596 commandment,1,kingjohn,1596 show'd,1,kingjohn,1596 scatter'd,1,kingjohn,1596 clamours,1,kingjohn,1596 journey,1,kingjohn,1596 acquaint,1,kingjohn,1596 bristle,1,kingjohn,1596 valueless,1,kingjohn,1596 Fresh,1,kingjohn,1596 Been,1,kingjohn,1596 sun's,1,kingjohn,1596 unbegotten,1,kingjohn,1596 conversion,1,kingjohn,1596 wasteful,1,kingjohn,1596 choice,1,kingjohn,1596 hark,1,kingjohn,1596 tailor's,1,kingjohn,1596 hardly,1,kingjohn,1596 valour,1,kingjohn,1596 Seeing,1,kingjohn,1596 havoc,1,kingjohn,1596 ramping,1,kingjohn,1596 consummate,1,kingjohn,1596 transgression,1,kingjohn,1596 hare,1,kingjohn,1596 enfranchisement,1,kingjohn,1596 unmannerly,1,kingjohn,1596 howe'er,1,kingjohn,1596 strangle,1,kingjohn,1596 smith,1,kingjohn,1596 plume,1,kingjohn,1596 indigest,1,kingjohn,1596 Most,1,kingjohn,1596 weeks,1,kingjohn,1596 reasonable,1,kingjohn,1596 peering,1,kingjohn,1596 string,1,kingjohn,1596 controlment,1,kingjohn,1596 keen,1,kingjohn,1596 spleens,1,kingjohn,1596 madcap,1,kingjohn,1596 hug,1,kingjohn,1596 pull,1,kingjohn,1596 hue,1,kingjohn,1596 crow,1,kingjohn,1596 Christian,1,kingjohn,1596 divinely,1,kingjohn,1596 kingly,1,kingjohn,1596 Plainly,1,kingjohn,1596 nearer,1,kingjohn,1596 inflaming,1,kingjohn,1596 quarter'd,1,kingjohn,1596 submit,1,kingjohn,1596 nation,1,kingjohn,1596 fashion'd,1,kingjohn,1596 perform'd,1,kingjohn,1596 husband's,1,kingjohn,1596 Read,1,kingjohn,1596 Courage,1,kingjohn,1596 faintly,1,kingjohn,1596 signal,1,kingjohn,1596 consume,1,kingjohn,1596 reach,1,kingjohn,1596 four,1,kingjohn,1596 draws,1,kingjohn,1596 threaten'd,1,kingjohn,1596 provided,1,kingjohn,1596 praise,1,kingjohn,1596 Cain,1,kingjohn,1596 Infortunate,1,kingjohn,1596 perpetual,1,kingjohn,1596 excuse,1,kingjohn,1596 acquaintance,1,kingjohn,1596 guardian,1,kingjohn,1596 pluck,1,kingjohn,1596 disallow,1,kingjohn,1596 vengeance,1,kingjohn,1596 Palestine,1,kingjohn,1596 footsteps,1,kingjohn,1596 weeps,1,kingjohn,1596 occasions,1,kingjohn,1596 abhor,1,kingjohn,1596 abbeys,1,kingjohn,1596 plum,1,kingjohn,1596 impatient,1,kingjohn,1596 dragons',1,kingjohn,1596 bank'd,1,kingjohn,1596 bestained,1,kingjohn,1596 Bend,1,kingjohn,1596 dominions,1,kingjohn,1596 pair,1,kingjohn,1596 ship,1,kingjohn,1596 Bell,1,kingjohn,1596 hangs,1,kingjohn,1596 delight,1,kingjohn,1596 spit,1,kingjohn,1596 voluntaries,1,kingjohn,1596 soe'er,1,kingjohn,1596 Puts,1,kingjohn,1596 outrage,1,kingjohn,1596 mended,1,kingjohn,1596 trunks,1,kingjohn,1596 money,1,kingjohn,1596 temporize,1,kingjohn,1596 Husband,1,kingjohn,1596 mock,1,kingjohn,1596 chastise,1,kingjohn,1596 profound,1,kingjohn,1596 strive,1,kingjohn,1596 urgest,1,kingjohn,1596 shakes,1,kingjohn,1596 scorn'st,1,kingjohn,1596 owed,1,kingjohn,1596 metropolis,1,kingjohn,1596 infer,1,kingjohn,1596 Stays,1,kingjohn,1596 unfenced,1,kingjohn,1596 garnish,1,kingjohn,1596 combat,1,kingjohn,1596 proper,1,kingjohn,1596 petitions,1,kingjohn,1596 except,1,kingjohn,1596 gentry,1,kingjohn,1596 consideration,1,kingjohn,1596 bloodiest,1,kingjohn,1596 importance,1,kingjohn,1596 food,1,kingjohn,1596 contain,1,kingjohn,1596 excess,1,kingjohn,1596 object,1,kingjohn,1596 push,1,kingjohn,1596 fresh,1,kingjohn,1596 sojourn'd,1,kingjohn,1596 Lame,1,kingjohn,1596 sworest,1,kingjohn,1596 ye,1,kingjohn,1596 ransacking,1,kingjohn,1596 error,1,kingjohn,1596 suspire,1,kingjohn,1596 lock,1,kingjohn,1596 denounce,1,kingjohn,1596 alchemist,1,kingjohn,1596 Approaching,1,kingjohn,1596 Blood,1,kingjohn,1596 secret,1,kingjohn,1596 forcibly,1,kingjohn,1596 tresses,1,kingjohn,1596 beggars,1,kingjohn,1596 workmen,1,kingjohn,1596 unbruised,1,kingjohn,1596 trick,1,kingjohn,1596 inquire,1,kingjohn,1596 prate,1,kingjohn,1596 deadly,1,kingjohn,1596 few,1,kingjohn,1596 Apt,1,kingjohn,1596 fee,1,kingjohn,1596 beggary,1,kingjohn,1596 fed,1,kingjohn,1596 arras,1,kingjohn,1596 Misery's,1,kingjohn,1596 Ate,1,kingjohn,1596 behavior,1,kingjohn,1596 secondary,1,kingjohn,1596 Lymoges,1,kingjohn,1596 Acknowledge,1,kingjohn,1596 visited,1,kingjohn,1596 unneighbourly,1,kingjohn,1596 Possess'd,1,kingjohn,1596 foundation,1,kingjohn,1596 confirmers,1,kingjohn,1596 Stoop,1,kingjohn,1596 Creatures,1,kingjohn,1596 hazard,1,kingjohn,1596 enjoy,1,kingjohn,1596 gain'd,1,kingjohn,1596 strongest,1,kingjohn,1596 merrier,1,kingjohn,1596 moves,1,kingjohn,1596 precedent,1,kingjohn,1596 lead,1,kingjohn,1596 jaws,1,kingjohn,1596 Lucifer,1,kingjohn,1596 height,1,kingjohn,1596 odouriferous,1,kingjohn,1596 nobler,1,kingjohn,1596 wreck'd,1,kingjohn,1596 nods,1,kingjohn,1596 fat,1,kingjohn,1596 Leaves,1,kingjohn,1596 yesterday,1,kingjohn,1596 display,1,kingjohn,1596 rattle,1,kingjohn,1596 borrow,1,kingjohn,1596 lacking,1,kingjohn,1596 lean,1,kingjohn,1596 frenzy,1,kingjohn,1596 leap,1,kingjohn,1596 justice,1,kingjohn,1596 whispers,1,kingjohn,1596 tried,1,kingjohn,1596 discolour'd,1,kingjohn,1596 tarre,1,kingjohn,1596 through,1,kingjohn,1596 education,1,kingjohn,1596 Bedlam,1,kingjohn,1596 long'd,1,kingjohn,1596 cheats,1,kingjohn,1596 murderer's,1,kingjohn,1596 glorify,1,kingjohn,1596 breathes,1,kingjohn,1596 garments,1,kingjohn,1596 breeds,1,kingjohn,1596 destiny,1,kingjohn,1596 incurable,1,kingjohn,1596 securely,1,kingjohn,1596 main,1,kingjohn,1596 diffidence,1,kingjohn,1596 moved,1,kingjohn,1596 expected,1,kingjohn,1596 Become,1,kingjohn,1596 shameful,1,kingjohn,1596 freeze,1,kingjohn,1596 inside,1,kingjohn,1596 venture,1,kingjohn,1596 albeit,1,kingjohn,1596 swallowing,1,kingjohn,1596 glow,1,kingjohn,1596 requital,1,kingjohn,1596 Spoke,1,kingjohn,1596 empty,1,kingjohn,1596 canker'd,1,kingjohn,1596 tokens,1,kingjohn,1596 hill,1,kingjohn,1596 mousing,1,kingjohn,1596 forehead,1,kingjohn,1596 shouldst,1,kingjohn,1596 undeserved,1,kingjohn,1596 prisons,1,kingjohn,1596 mischief,1,kingjohn,1596 antique,1,kingjohn,1596 clamour,1,kingjohn,1596 retired,1,kingjohn,1596 rolling,1,kingjohn,1596 unwarily,1,kingjohn,1596 rape,1,kingjohn,1596 wilfully,1,kingjohn,1596 smallest,1,kingjohn,1596 pawn'd,1,kingjohn,1596 boisterously,1,kingjohn,1596 seizure,1,kingjohn,1596 Else,1,kingjohn,1596 deposed,1,kingjohn,1596 tends,1,kingjohn,1596 envy,1,kingjohn,1596 Paying,1,kingjohn,1596 proverb,1,kingjohn,1596 beast,1,kingjohn,1596 gauntlets,1,kingjohn,1596 retreat,1,kingjohn,1596 doleful,1,kingjohn,1596 imminent,1,kingjohn,1596 scroll,1,kingjohn,1596 presages,1,kingjohn,1596 expedition's,1,kingjohn,1596 Hang,1,kingjohn,1596 conquer'd,1,kingjohn,1596 unstained,1,kingjohn,1596 gently,1,kingjohn,1596 penny,1,kingjohn,1596 rainbow,1,kingjohn,1596 exhalation,1,kingjohn,1596 formless,1,kingjohn,1596 givest,1,kingjohn,1596 proudly,1,kingjohn,1596 curing,1,kingjohn,1596 clergymen,1,kingjohn,1596 daily,1,kingjohn,1596 interrogatories,1,kingjohn,1596 remedy,1,kingjohn,1596 rash,1,kingjohn,1596 brazen,1,kingjohn,1596 beard,1,kingjohn,1596 bravely,1,kingjohn,1596 estate,1,kingjohn,1596 limited,1,kingjohn,1596 etc,1,kingjohn,1596 effusion,1,kingjohn,1596 blunt,1,kingjohn,1596 blew,1,kingjohn,1596 candle,1,kingjohn,1596 sorrows',1,kingjohn,1596 banners,1,kingjohn,1596 Alack,1,kingjohn,1596 sirrah,1,kingjohn,1596 burthens,1,kingjohn,1596 chaps,1,kingjohn,1596 dangers,1,kingjohn,1596 Wear,1,kingjohn,1596 wandering,1,kingjohn,1596 maul,1,kingjohn,1596 adventure,1,kingjohn,1596 written,1,kingjohn,1596 excused,1,kingjohn,1596 alter,1,kingjohn,1596 Embrace,1,kingjohn,1596 picked,1,kingjohn,1596 arguments,1,kingjohn,1596 mount,1,kingjohn,1596 affections,1,kingjohn,1596 quickly,1,kingjohn,1596 bequeath'd,1,kingjohn,1596 Further,1,kingjohn,1596 glue,1,kingjohn,1596 escaped,1,kingjohn,1596 perform,1,kingjohn,1596 coronation,1,kingjohn,1596 who's,1,kingjohn,1596 Add,1,kingjohn,1596 ordinance,1,kingjohn,1596 evermore,1,kingjohn,1596 masque,1,kingjohn,1596 several,1,kingjohn,1596 quarter,1,kingjohn,1596 splendor,1,kingjohn,1596 Peter,1,kingjohn,1596 Unswear,1,kingjohn,1596 besmear'd,1,kingjohn,1596 Will't,1,kingjohn,1596 knighted,1,kingjohn,1596 assaileth,1,kingjohn,1596 revive,1,kingjohn,1596 injustice,1,kingjohn,1596 bethump'd,1,kingjohn,1596 general,1,kingjohn,1596 appointment,1,kingjohn,1596 spurn,1,kingjohn,1596 embracing,1,kingjohn,1596 scath,1,kingjohn,1596 device,1,kingjohn,1596 airy,1,kingjohn,1596 set'st,1,kingjohn,1596 strife,1,kingjohn,1596 reigns,1,kingjohn,1596 leaves,1,kingjohn,1596 charitable,1,kingjohn,1596 bleeds,1,kingjohn,1596 start,1,kingjohn,1596 conclusion,1,kingjohn,1596 creditor,1,kingjohn,1596 knave,1,kingjohn,1596 flinty,1,kingjohn,1596 halting,1,kingjohn,1596 lioness,1,kingjohn,1596 sacrifices,1,kingjohn,1596 Remembers,1,kingjohn,1596 Govern,1,kingjohn,1596 snarleth,1,kingjohn,1596 purposed,1,kingjohn,1596 slowly,1,kingjohn,1596 Hither,1,kingjohn,1596 observation,1,kingjohn,1596 male,1,kingjohn,1596 indifferency,1,kingjohn,1596 beads,1,kingjohn,1596 humorous,1,kingjohn,1596 tackle,1,kingjohn,1596 confidence,1,kingjohn,1596 anvil,1,kingjohn,1596 braying,1,kingjohn,1596 keeper,1,kingjohn,1596 insolent,1,kingjohn,1596 bloods,1,kingjohn,1596 Uncle,1,kingjohn,1596 regiments,1,kingjohn,1596 Could,1,kingjohn,1596 repeats,1,kingjohn,1596 unhair'd,1,kingjohn,1596 dearest,1,kingjohn,1596 Bearing,1,kingjohn,1596 chief,1,kingjohn,1596 throughout,1,kingjohn,1596 unattempted,1,kingjohn,1596 mark,1,kingjohn,1596 munition,1,kingjohn,1596 son's,1,kingjohn,1596 Exterior,1,kingjohn,1596 crimson,1,kingjohn,1596 thick,1,kingjohn,1596 I'ld,1,kingjohn,1596 afflicted,1,kingjohn,1596 woe,1,kingjohn,1596 blot,1,kingjohn,1596 steeps,1,kingjohn,1596 Any,1,kingjohn,1596 Richmond,1,kingjohn,1596 Crave,1,kingjohn,1596 vein,1,kingjohn,1596 forsook,1,kingjohn,1596 let's,1,kingjohn,1596 because,1,kingjohn,1596 flatter,1,kingjohn,1596 minutes,1,kingjohn,1596 greatest,1,kingjohn,1596 husbandless,1,kingjohn,1596 labour,1,kingjohn,1596 beside,1,kingjohn,1596 victorious,1,kingjohn,1596 shoulder,1,kingjohn,1596 ordain,1,kingjohn,1596 disrobe,1,kingjohn,1596 Counts,1,kingjohn,1596 using,1,kingjohn,1596 mountain,1,kingjohn,1596 arch,1,kingjohn,1596 seal'd,1,kingjohn,1596 amazement,1,kingjohn,1596 higher,1,kingjohn,1596 peremptory,1,kingjohn,1596 bleak,1,kingjohn,1596 Resolveth,1,kingjohn,1596 search,1,kingjohn,1596 Talks,1,kingjohn,1596 perusing,1,kingjohn,1596 circumference,1,kingjohn,1596 ordinary,1,kingjohn,1596 sightly,1,kingjohn,1596 borrow'd,1,kingjohn,1596 wantonness,1,kingjohn,1596 uttered,1,kingjohn,1596 fist,1,kingjohn,1596 Whatever,1,kingjohn,1596 letters,1,kingjohn,1596 casket,1,kingjohn,1596 scribbled,1,kingjohn,1596 LEWIS's,1,kingjohn,1596 ingrate,1,kingjohn,1596 mockery,1,kingjohn,1596 discarded,1,kingjohn,1596 fills,1,kingjohn,1596 examined,1,kingjohn,1596 desires,1,kingjohn,1596 Giving,1,kingjohn,1596 maintain'd,1,kingjohn,1596 Bequeath,1,kingjohn,1596 ones,1,kingjohn,1596 stain,1,kingjohn,1596 bear'st,1,kingjohn,1596 apish,1,kingjohn,1596 sans,1,kingjohn,1596 Commander,1,kingjohn,1596 Found,1,kingjohn,1596 bequeath,1,kingjohn,1596 banks,1,kingjohn,1596 Dyed,1,kingjohn,1596 proves,1,kingjohn,1596 breed,1,kingjohn,1596 losing,1,kingjohn,1596 slight,1,kingjohn,1596 troublesome,1,kingjohn,1596 desolation,1,kingjohn,1596 opinion,1,kingjohn,1596 renown,1,kingjohn,1596 disturb'd,1,kingjohn,1596 Gracing,1,kingjohn,1596 Liker,1,kingjohn,1596 resisting,1,kingjohn,1596 sale,1,kingjohn,1596 contemplation,1,kingjohn,1596 stalk,1,kingjohn,1596 Awakes,1,kingjohn,1596 murders,1,kingjohn,1596 'No,1,kingjohn,1596 salt,1,kingjohn,1596 majesties,1,kingjohn,1596 'My,1,kingjohn,1596 blushes,1,kingjohn,1596 purchase,1,kingjohn,1596 fits,1,kingjohn,1596 entreaties,1,kingjohn,1596 wit,1,kingjohn,1596 sides,1,kingjohn,1596 Deep,1,kingjohn,1596 Twice,1,kingjohn,1596 stamp,1,kingjohn,1596 Witness,1,kingjohn,1596 Discredit,1,kingjohn,1596 Coldly,1,kingjohn,1596 AUSTRIA'S,1,kingjohn,1596 where'er,1,kingjohn,1596 scalded,1,kingjohn,1596 provoke,1,kingjohn,1596 indue,1,kingjohn,1596 stomach,1,kingjohn,1596 Patch'd,1,kingjohn,1596 Taking,1,kingjohn,1596 impose,1,kingjohn,1596 bounden,1,kingjohn,1596 cross'd,1,kingjohn,1596 Rests,1,kingjohn,1596 detestable,1,kingjohn,1596 confined,1,kingjohn,1596 import,1,kingjohn,1596 disclaim'd,1,kingjohn,1596 hears,1,kingjohn,1596 fetch,1,kingjohn,1596 services,1,kingjohn,1596 Outside,1,kingjohn,1596 Rebellion,1,kingjohn,1596 happiness,1,kingjohn,1596 comfortless,1,kingjohn,1596 banish'd,1,kingjohn,1596 measures,1,kingjohn,1596 pours,1,kingjohn,1596 abundance,1,kingjohn,1596 gap,1,kingjohn,1596 different,1,kingjohn,1596 moment,1,kingjohn,1596 closet,1,kingjohn,1596 riot,1,kingjohn,1596 recover,1,kingjohn,1596 moles,1,kingjohn,1596 conspire,1,kingjohn,1596 frailty,1,kingjohn,1596 closed,1,kingjohn,1596 Dear,1,kingjohn,1596 prodigies,1,kingjohn,1596 dunghill,1,kingjohn,1596 clock,1,kingjohn,1596 sparrow,1,kingjohn,1596 offending,1,kingjohn,1596 Speed,1,kingjohn,1596 residence,1,kingjohn,1596 Germany,1,kingjohn,1596 count,1,kingjohn,1596 knightly,1,kingjohn,1596 fantasied,1,kingjohn,1596 landless,1,kingjohn,1596 continuance,1,kingjohn,1596 dishabited,1,kingjohn,1596 certainly,1,kingjohn,1596 protection,1,kingjohn,1596 fling,1,kingjohn,1596 copied,1,kingjohn,1596 burthen,1,kingjohn,1596 chevaliers,1,kingjohn,1596 chastisement,1,kingjohn,1596 forerunner,1,kingjohn,1596 likes,1,kingjohn,1596 vow'd,1,kingjohn,1596 Mercury,1,kingjohn,1596 Think,1,kingjohn,1596 stumbling,1,kingjohn,1596 sinews,1,kingjohn,1596 interr'd,1,kingjohn,1596 stick,1,kingjohn,1596 wax,1,kingjohn,1596 Throw,1,kingjohn,1596 staff,1,kingjohn,1596 tuned,1,kingjohn,1596 rise,1,kingjohn,1596 heave,1,kingjohn,1596 mounting,1,kingjohn,1596 powerless,1,kingjohn,1596 prevail,1,kingjohn,1596 swart,1,kingjohn,1596 barbarous,1,kingjohn,1596 between,1,kingjohn,1596 swinged,1,kingjohn,1596 print,1,kingjohn,1596 ambition,1,kingjohn,1596 bleed,1,kingjohn,1596 intend,1,kingjohn,1596 girdle,1,kingjohn,1596 fantasies,1,kingjohn,1596 hurries,1,kingjohn,1596 chants,1,kingjohn,1596 graceless,1,kingjohn,1596 rags,1,kingjohn,1596 preparing,1,kingjohn,1596 dying,1,kingjohn,1596 serve,1,kingjohn,1596 apace,1,kingjohn,1596 peradventure,1,kingjohn,1596 proceeding,1,kingjohn,1596 purpled,1,kingjohn,1596 Quoted,1,kingjohn,1596 supper,1,kingjohn,1596 coming,1,kingjohn,1596 multitude,1,kingjohn,1596 clod,1,kingjohn,1596 'at,1,kingjohn,1596 bells,1,kingjohn,1596 beseems,1,kingjohn,1596 threats,1,kingjohn,1596 Sticking,1,kingjohn,1596 pence,1,kingjohn,1596 dross,1,kingjohn,1596 possess,1,kingjohn,1596 festival,1,kingjohn,1596 enforced,1,kingjohn,1596 presences,1,kingjohn,1596 flags,1,kingjohn,1596 vulgar,1,kingjohn,1596 produces,1,kingjohn,1596 breadth,1,kingjohn,1596 dreams,1,kingjohn,1596 mettle,1,kingjohn,1596 earthquake,1,kingjohn,1596 Straight,1,kingjohn,1596 rages,1,kingjohn,1596 morsel,1,kingjohn,1596 takes,1,kingjohn,1596 faithless,1,kingjohn,1596 fallen,1,kingjohn,1596 taken,1,kingjohn,1596 conference,1,kingjohn,1596 exclamation,1,kingjohn,1596 what's,1,kingjohn,1596 reports,1,kingjohn,1596 rotten,1,kingjohn,1596 charged,1,kingjohn,1596 fondly,1,kingjohn,1596 labour'd,1,kingjohn,1596 cygnet,1,kingjohn,1596 royalties,1,kingjohn,1596 inclination,1,kingjohn,1596 dumb,1,kingjohn,1596 bitterness,1,kingjohn,1596 wife's,1,kingjohn,1596 Badly,1,kingjohn,1596 droop,1,kingjohn,1596 threatened,1,kingjohn,1596 Plead,1,kingjohn,1596 dull,1,kingjohn,1596 nest,1,kingjohn,1596 misheard,1,kingjohn,1596 minister'd,1,kingjohn,1596 dubb'd,1,kingjohn,1596 threatener,1,kingjohn,1596 farther,1,kingjohn,1596 touching,1,kingjohn,1596 belie,1,kingjohn,1596 grain,1,kingjohn,1596 drops,1,kingjohn,1596 determined,1,kingjohn,1596 unheard,1,kingjohn,1596 beguiled,1,kingjohn,1596 Vexing,1,kingjohn,1596 discontents,1,kingjohn,1596 stirs,1,kingjohn,1596 whence,1,kingjohn,1596 cover,1,kingjohn,1596 Ever,1,kingjohn,1596 anatomy,1,kingjohn,1596 Whispers,1,kingjohn,1596 gifts,1,kingjohn,1596 mightier,1,kingjohn,1596 concealed,1,kingjohn,1596 contempt,1,kingjohn,1596 guilty,1,kingjohn,1596 cried,1,kingjohn,1596 durst,1,kingjohn,1596 Sweat,1,kingjohn,1596 London,1,kingjohn,1596 'fore,1,kingjohn,1596 messengers,1,kingjohn,1596 union,1,kingjohn,1596 Thither,1,kingjohn,1596 hostess',1,kingjohn,1596 united,1,kingjohn,1596 miracle,1,kingjohn,1596 That's,1,kingjohn,1596 crystal,1,kingjohn,1596 saint,1,kingjohn,1596 quest,1,kingjohn,1596 foe,1,kingjohn,1596 amends,1,kingjohn,1596 hitherward,1,kingjohn,1596 wilful,1,kingjohn,1596 catechise,1,kingjohn,1596 glister,1,kingjohn,1596 darkly,1,kingjohn,1596 answers,1,kingjohn,1596 bastinado,1,kingjohn,1596 race,1,kingjohn,1596 please,1,kingjohn,1596 quartered,1,kingjohn,1596 cards,1,kingjohn,1596 scorns,1,kingjohn,1596 wounds,1,kingjohn,1596 endeared,1,kingjohn,1596 earthy,1,kingjohn,1596 letter,1,kingjohn,1596 thunder's,1,kingjohn,1596 company,1,kingjohn,1596 Submit,1,kingjohn,1596 dancing,1,kingjohn,1596 fig,1,kingjohn,1596 cannons',1,kingjohn,1596 Sweet,1,kingjohn,1596 Deny,1,kingjohn,1596 minute,1,kingjohn,1596 Mark,1,kingjohn,1596 impeach,1,kingjohn,1596 Lincoln,1,kingjohn,1596 Zounds,1,kingjohn,1596 Calais,1,kingjohn,1596 howsoever,1,kingjohn,1596 cherry,1,kingjohn,1596 savage,1,kingjohn,1596 continue,1,kingjohn,1596 clap,1,kingjohn,1596 battering,1,kingjohn,1596 channel,1,kingjohn,1596 damnation,1,kingjohn,1596 you',1,kingjohn,1596 buckled,1,kingjohn,1596 folly,1,kingjohn,1596 external,1,kingjohn,1596 horn,1,kingjohn,1596 float,1,kingjohn,1596 Lead,1,kingjohn,1596 Fast,1,kingjohn,1596 thereby,1,kingjohn,1596 Near,1,kingjohn,1596 rebuke,1,kingjohn,1596 coops,1,kingjohn,1596 contagious,1,kingjohn,1596 bloodshed,1,kingjohn,1596 Fare,1,kingjohn,1596 answer'd,1,kingjohn,1596 Austria's,1,kingjohn,1596 Unto,1,kingjohn,1596 shows,1,kingjohn,1596 pocket,1,kingjohn,1596 LYMOGES,1,kingjohn,1596 divers,1,kingjohn,1596 solemnize,1,kingjohn,1596 herself,1,kingjohn,1596 wealth,1,kingjohn,1596 lines,1,kingjohn,1596 grappling,1,kingjohn,1596 poison'd,1,kingjohn,1596 Jerusalem,1,kingjohn,1596 depart,1,kingjohn,1596 butcher,1,kingjohn,1596 prospect,1,kingjohn,1596 Preach,1,kingjohn,1596 perceive,1,kingjohn,1596 namely,1,kingjohn,1596 betters,1,kingjohn,1596 partly,1,kingjohn,1596 patient,1,kingjohn,1596 scenes,1,kingjohn,1596 madly,1,kingjohn,1596 setter,1,kingjohn,1596 o'erswell,1,kingjohn,1596 lived,1,kingjohn,1596 'Good,1,kingjohn,1596 bars,1,kingjohn,1596 meaning,1,kingjohn,1596 Four,1,kingjohn,1596 triumphantly,1,kingjohn,1596 ramm'd,1,kingjohn,1596 prophesy,1,kingjohn,1596 mouth'd,1,kingjohn,1596 dialogue,1,kingjohn,1596 deliver'd,1,kingjohn,1596 bounce,1,kingjohn,1596 slanderous,1,kingjohn,1596 invasion,1,kingjohn,1596 dissever,1,kingjohn,1596 unscratch'd,1,kingjohn,1596 dad,1,kingjohn,1596 cools,1,kingjohn,1596 motive,1,kingjohn,1596 convicted,1,kingjohn,1596 disfigured,1,kingjohn,1596 subjection,1,kingjohn,1596 disorder,1,kingjohn,1596 dam,1,kingjohn,1596 will'd,1,kingjohn,1596 peised,1,kingjohn,1596 hating,1,kingjohn,1596 named,1,kingjohn,1596 Seats,1,kingjohn,1596 powder,1,kingjohn,1596 surly,1,kingjohn,1596 Welcome,1,kingjohn,1596 Hang'd,1,kingjohn,1596 lad,1,kingjohn,1596 soul's,1,kingjohn,1596 ache,1,kingjohn,1596 Partly,1,kingjohn,1596 coat,1,kingjohn,1596 calendar,1,kingjohn,1596 wrapp'd,1,kingjohn,1596 constant,1,kingjohn,1596 witchcraft,1,kingjohn,1596 amiable,1,kingjohn,1596 inflamed,1,kingjohn,1596 departure,1,kingjohn,1596 man's,1,kingjohn,1596 farthest,1,kingjohn,1596 falsely,1,kingjohn,1596 wrested,1,kingjohn,1596 affliction,1,kingjohn,1596 Knew,1,kingjohn,1596 provokes,1,kingjohn,1596 gentlemen,1,kingjohn,1596 Assured,1,kingjohn,1596 Henry,1,kingjohn,1596 Trust,1,kingjohn,1596 carry,1,kingjohn,1596 torment,1,kingjohn,1596 asunder,1,kingjohn,1596 Already,1,kingjohn,1596 Rather,1,kingjohn,1596 undetermined,1,kingjohn,1596 Led,1,kingjohn,1596 cloddy,1,kingjohn,1596 creep,1,kingjohn,1596 eyeballs,1,kingjohn,1596 shook,1,kingjohn,1596 mutines,1,kingjohn,1596 Foreknowing,1,kingjohn,1596 concludes,1,kingjohn,1596 swears,1,kingjohn,1596 inseparable,1,kingjohn,1596 chapel,1,kingjohn,1596 Canterbury,1,kingjohn,1596 holp,1,kingjohn,1596 Law,1,kingjohn,1596 None,1,kingjohn,1596 hole,1,kingjohn,1596 articles,1,kingjohn,1596 peaceful,1,kingjohn,1596 upholdeth,1,kingjohn,1596 dozen,1,kingjohn,1596 devout,1,kingjohn,1596 concluded,1,kingjohn,1596 helmets,1,kingjohn,1596 cut,1,kingjohn,1596 follows,1,kingjohn,1596 unvex'd,1,kingjohn,1596 dragon,1,kingjohn,1596 pangs,1,kingjohn,1596 boyish,1,kingjohn,1596 Alcides',1,kingjohn,1596 Who's,1,kingjohn,1596 counterfeit,1,kingjohn,1596 dominations,1,kingjohn,1596 useful,1,kingjohn,1596 loyal,1,kingjohn,1596 argument,1,kingjohn,1596 besieged,1,kingjohn,1596 fronts,1,kingjohn,1596 winter,1,kingjohn,1596 remnant,1,kingjohn,1596 sparkle,1,kingjohn,1596 Form,1,kingjohn,1596 want'st,1,kingjohn,1596 conjure,1,kingjohn,1596 Rome's,1,kingjohn,1596 vainly,1,kingjohn,1596 prayers,1,kingjohn,1596 shout,1,kingjohn,1596 robes,1,kingjohn,1596 Anon,1,kingjohn,1596 manage,1,kingjohn,1596 prithee,1,kingjohn,1596 souse,1,kingjohn,1596 along,1,kingjohn,1596 fourteen,1,kingjohn,1596 glittering,1,kingjohn,1596 cheerful,1,kingjohn,1596 copy,1,kingjohn,1596 fickle,1,kingjohn,1596 Attended,1,kingjohn,1596 inconsiderate,1,kingjohn,1596 eyed,1,kingjohn,1596 sweat,1,kingjohn,1596 greens,1,kingjohn,1596 acts,1,kingjohn,1596 drunk,1,kingjohn,1596 lengths,1,kingjohn,1596 states,1,kingjohn,1596 babe,1,kingjohn,1596 conquerors,1,kingjohn,1596 Shadowing,1,kingjohn,1596 needful,1,kingjohn,1596 canonized,1,kingjohn,1596 baby,1,kingjohn,1596 offspring,1,kingjohn,1596 Right,1,kingjohn,1596 currents,1,kingjohn,1596 Seek,1,kingjohn,1596 heralds,1,kingjohn,1596 promiseth,1,kingjohn,1596 feathers,1,kingjohn,1596 Clapp'd,1,kingjohn,1596 fitting,1,kingjohn,1596 talking,1,kingjohn,1596 either,1,kingjohn,1596 troth,1,kingjohn,1596 adulterates,1,kingjohn,1596 feeling,1,kingjohn,1596 puppy,1,kingjohn,1596 Devoured,1,kingjohn,1596 scamble,1,kingjohn,1596 Lie,1,kingjohn,1596 cow,1,kingjohn,1596 meantime,1,kingjohn,1596 angerly,1,kingjohn,1596 covetousness,1,kingjohn,1596 others',1,kingjohn,1596 strengths,1,kingjohn,1596 pick'd,1,kingjohn,1596 age's,1,kingjohn,1596 pricks,1,kingjohn,1596 valued,1,kingjohn,1596 condition,1,kingjohn,1596 prudent,1,kingjohn,1596 hundreds,1,kingjohn,1596 vehement,1,kingjohn,1596 liking,1,kingjohn,1596 Mine,1,kingjohn,1596 Patience,1,kingjohn,1596 battle,1,kingjohn,1596 eld'st,1,kingjohn,1596 Believe,1,kingjohn,1596 supernal,1,kingjohn,1596 expectation,1,kingjohn,1596 aspiring,1,kingjohn,1596 assailed,1,kingjohn,1596 untrimmed,1,kingjohn,1596 traitor,1,kingjohn,1596 marking,1,kingjohn,1596 needless,1,kingjohn,1596 Pope's,1,kingjohn,1596 Pray,1,kingjohn,1596 wearied,1,kingjohn,1596 changing,1,kingjohn,1596 usage,1,kingjohn,1596 affright,1,kingjohn,1596 'twill,1,kingjohn,1596 avoid,1,kingjohn,1596 tree,1,kingjohn,1596 briefly,1,kingjohn,1596 pour,1,kingjohn,1596 nights,1,kingjohn,1596 Know,1,kingjohn,1596 Through,1,kingjohn,1596 Deliver,1,kingjohn,1596 chests,1,kingjohn,1596 lovest,1,kingjohn,1596 hours,1,kingjohn,1596 ribb'd,1,kingjohn,1596 entreat,1,kingjohn,1596 funeral,1,kingjohn,1596 jolly,1,kingjohn,1596 kindred,1,kingjohn,1596 Use,1,kingjohn,1596 Send,1,kingjohn,1596 silverly,1,kingjohn,1596 self,1,kingjohn,1596 corruptibly,1,kingjohn,1596 fairly,1,kingjohn,1596 modern,1,kingjohn,1596 raven,1,kingjohn,1596 indirectly,1,kingjohn,1596 believed,1,kingjohn,1596 Cry,1,kingjohn,1596 industrious,1,kingjohn,1596 sell,1,kingjohn,1596 'God,1,kingjohn,1596 aloud,1,kingjohn,1596 module,1,kingjohn,1596 disjoin,1,kingjohn,1596 whilst,1,kingjohn,1596 harbourage,1,kingjohn,1596 pavilion,1,kingjohn,1596 bald,1,kingjohn,1596 stored,1,kingjohn,1596 oppose,1,kingjohn,1596 thimbles,1,kingjohn,1596 'Vive,1,kingjohn,1596 leg,1,kingjohn,1596 bleeding,1,kingjohn,1596 unowed,1,kingjohn,1596 fearfully,1,kingjohn,1596 reform'd,1,kingjohn,1596 folded,1,kingjohn,1596 hedged,1,kingjohn,1596 reputed,1,kingjohn,1596 trusting,1,kingjohn,1596 grieves,1,kingjohn,1596 remote,1,kingjohn,1596 pops,1,kingjohn,1596 becks,1,kingjohn,1596 sexton,1,kingjohn,1596 contemn'd,1,kingjohn,1596 greeting,1,kingjohn,1596 stable,1,kingjohn,1596 seized,1,kingjohn,1596 sullen,1,kingjohn,1596 fearing,1,kingjohn,1596 whereso'er,1,kingjohn,1596 hiding,1,kingjohn,1596 dispossess'd,1,kingjohn,1596 injurer,1,kingjohn,1596 orderless,1,kingjohn,1596 passionate,1,kingjohn,1596 protest,1,kingjohn,1596 methought,1,kingjohn,1596 safer,1,kingjohn,1596 bestow,1,kingjohn,1596 buckets,1,kingjohn,1596 coin,1,kingjohn,1596 crooked,1,kingjohn,1596 instead,1,kingjohn,1596 coil,1,kingjohn,1596 invasive,1,kingjohn,1596 Coz,1,kingjohn,1596 bags,1,kingjohn,1596 controlling,1,kingjohn,1596 until,1,kingjohn,1596 farthings,1,kingjohn,1596 spider,1,kingjohn,1596 slow,1,kingjohn,1596 choke,1,kingjohn,1596 stench,1,kingjohn,1596 struggle,1,kingjohn,1596 wrist,1,kingjohn,1596 Subjected,1,kingjohn,1596 honesty,1,kingjohn,1596 evening,1,kingjohn,1596 clouds,1,kingjohn,1596 confound,1,kingjohn,1596 maw,1,kingjohn,1596 Strength,1,kingjohn,1596 barr'd,1,kingjohn,1596 perjury,1,kingjohn,1596 volume,1,kingjohn,1596 Strong,1,kingjohn,1596 disposing,1,kingjohn,1596 'scape,1,kingjohn,1596 afeard,1,kingjohn,1596 Exampled,1,kingjohn,1596 sells,1,kingjohn,1596 Five,1,kingjohn,1596 smiling,1,kingjohn,1596 forced,1,kingjohn,1596 imprisoned,1,kingjohn,1596 outlook,1,kingjohn,1596 fleshly,1,kingjohn,1596 eel,1,kingjohn,1596 burst,1,kingjohn,1596 Finding,1,kingjohn,1596 spits,1,kingjohn,1596 form'd,1,kingjohn,1596 sadness,1,kingjohn,1596 inferior,1,kingjohn,1596 chosen,1,kingjohn,1596 Abortives,1,kingjohn,1596 island,1,kingjohn,1596 Basilisco,1,kingjohn,1596 bargains,1,kingjohn,1596 'once,1,kingjohn,1596 mew,1,kingjohn,1596 Removed,1,kingjohn,1596 armours,1,kingjohn,1596 treacherous,1,kingjohn,1596 censured,1,kingjohn,1596 travell'd,1,kingjohn,1596 vilest,1,kingjohn,1596 maker,1,kingjohn,1596 According,1,kingjohn,1596 Does,1,kingjohn,1596 meeting,1,kingjohn,1596 bottoms,1,kingjohn,1596 murder'd,1,kingjohn,1596 employment,1,kingjohn,1596 evils,1,kingjohn,1596 determine,1,kingjohn,1596 pawns,1,kingjohn,1596 grievously,1,kingjohn,1596 seduced,1,kingjohn,1596 burns,1,kingjohn,1596 murder's,1,kingjohn,1596 Except,1,kingjohn,1596 whip,1,kingjohn,1596 ocean's,1,kingjohn,1596 limit,1,kingjohn,1596 ladies,1,kingjohn,1596 battlements,1,kingjohn,1596 fled,1,kingjohn,1596 counts,1,kingjohn,1596 crafty,1,kingjohn,1596 hastily,1,kingjohn,1596 murmuring,1,kingjohn,1596 principle,1,kingjohn,1596 withdraw,1,kingjohn,1596 henceforth,1,kingjohn,1596 physic,1,kingjohn,1596 Amen,1,kingjohn,1596 Bastards,1,kingjohn,1596 volley,1,kingjohn,1596 parched,1,kingjohn,1596 dismiss,1,kingjohn,1596 Clamours,1,kingjohn,1596 armado,1,kingjohn,1596 terror,1,kingjohn,1596 respects,1,kingjohn,1596 unseasonable,1,kingjohn,1596 homes,1,kingjohn,1596 plucks,1,kingjohn,1596 flat,1,kingjohn,1596 spill,1,kingjohn,1596 Mad,1,kingjohn,1596 fasting,1,kingjohn,1596 evilly,1,kingjohn,1596 thither,1,kingjohn,1596 BURGH,1,kingjohn,1596 late,1,kingjohn,1596 sheathe,1,kingjohn,1596 attendants,1,kingjohn,1596 adjunct,1,kingjohn,1596 tug,1,kingjohn,1596 VII,1,kingjohn,1596 sleeping,1,kingjohn,1596 affecteth,1,kingjohn,1596 suspect,1,kingjohn,1596 hush,1,kingjohn,1596 JAMES,1,kingjohn,1596 fright,1,kingjohn,1596 recompense,1,kingjohn,1596 besides,1,kingjohn,1596 unhack'd,1,kingjohn,1596 pagan,1,kingjohn,1596 list,1,kingjohn,1596 whet,1,kingjohn,1596 puissance,1,kingjohn,1596 levied,1,kingjohn,1596 April,1,kingjohn,1596 sword's,1,kingjohn,1596 breaking,1,kingjohn,1596 squire,1,kingjohn,1596 prouder,1,kingjohn,1596 clippeth,1,kingjohn,1596 corners,1,kingjohn,1596 bribed,1,kingjohn,1596 devoured,1,kingjohn,1596 unpleasing,1,kingjohn,1596 going,1,kingjohn,1596 moe,1,kingjohn,1596 compell'd,1,kingjohn,1596 windows,1,kingjohn,1596 leading,1,kingjohn,1596 corruption,1,kingjohn,1596 unsured,1,kingjohn,1596 newness,1,kingjohn,1596 Forethought,1,kingjohn,1596 try,1,kingjohn,1596 shrewd,1,kingjohn,1596 wildly,1,kingjohn,1596 assurance,1,kingjohn,1596 prodigiously,1,kingjohn,1596 date,1,kingjohn,1596 dispiteous,1,kingjohn,1596 clouts,1,kingjohn,1596 inconstancy,1,kingjohn,1596 proffer'd,1,kingjohn,1596 reply,1,kingjohn,1596 Legitimation,1,kingjohn,1596 Resembling,1,kingjohn,1596 presage,1,kingjohn,1596 John's,1,kingjohn,1596 Religiously,1,kingjohn,1596 employ,1,kingjohn,1596 brag,1,kingjohn,1596 pattern,1,kingjohn,1596 judged,1,kingjohn,1596 stifle,1,kingjohn,1596 Mount,1,kingjohn,1596 Colbrand,1,kingjohn,1596 dog,1,kingjohn,1596 wrathful,1,kingjohn,1596 pell,1,kingjohn,1596 honour'd,1,kingjohn,1596 harsh,1,kingjohn,1596 confine,1,kingjohn,1596 contemptuous,1,kingjohn,1596 ordering,1,kingjohn,1596 dare,1,kingjohn,1596 however,1,kingjohn,1596 indirection,1,kingjohn,1596 sounding,1,kingjohn,1596 ensues,1,kingjohn,1596 weight,1,kingjohn,1596 frighting,1,kingjohn,1596 Together,1,kingjohn,1596 carcass,1,kingjohn,1596 businesses,1,kingjohn,1596 destroy,1,kingjohn,1596 fifteen,1,kingjohn,1596 blessing,1,kingjohn,1596 dispatch,1,kingjohn,1596 fellowship,1,kingjohn,1596 bred,1,kingjohn,1596 Gurney,1,kingjohn,1596 lamb,1,kingjohn,1596 pigmy,1,kingjohn,1596 Swearing,1,kingjohn,1596 snatch,1,kingjohn,1596 instantly,1,kingjohn,1596 Bring,1,kingjohn,1596 DRAMATIS,1,kingjohn,1596 flout,1,kingjohn,1596 tie,1,kingjohn,1596 rescue,1,kingjohn,1596 promotions,1,kingjohn,1596 vacant,1,kingjohn,1596 burden,1,kingjohn,1596 Knight,1,kingjohn,1596 tripping,1,kingjohn,1596 Desires,1,kingjohn,1596 commanding,1,kingjohn,1596 Too,1,kingjohn,1596 usurper,1,kingjohn,1596 Take,1,kingjohn,1596 bargain,1,kingjohn,1596 gnat,1,kingjohn,1596 Left,1,kingjohn,1596 fence,1,kingjohn,1596 Stuffs,1,kingjohn,1596 usurpation,1,kingjohn,1596 divided,1,kingjohn,1596 frail,1,kingjohn,1596 ascend,1,kingjohn,1596 Kneeling,1,kingjohn,1596 smell,1,kingjohn,1596 private,1,kingjohn,1596 convertite,1,kingjohn,1596 dwelling,1,kingjohn,1596 Fair,1,kingjohn,1596 command,1,kingjohn,1596 expire,1,kingjohn,1596 boundless,1,kingjohn,1596 blaspheme,1,kingjohn,1596 cincture,1,kingjohn,1596 pronounce,1,kingjohn,1596 Saying,1,kingjohn,1596 endavour,1,kingjohn,1596 spectacle,1,kingjohn,1596 False,1,kingjohn,1596 Insinuation,1,kingjohn,1596 solemnity,1,kingjohn,1596 Find,1,kingjohn,1596 denouncing,1,kingjohn,1596 intends,1,kingjohn,1596 Absey,1,kingjohn,1596 market,1,kingjohn,1596 misspoke,1,kingjohn,1596 conspired,1,kingjohn,1596 cabby,1,kingjohn,1596 propertied,1,kingjohn,1596 perhaps,1,kingjohn,1596 treat,1,kingjohn,1596 prey'd,1,kingjohn,1596 selves,1,kingjohn,1596 undertake,1,kingjohn,1596 Brief,1,kingjohn,1596 foster'd,1,kingjohn,1596 dim,1,kingjohn,1596 chambers,1,kingjohn,1596 Holding,1,kingjohn,1596 unwash'd,1,kingjohn,1596 nation's,1,kingjohn,1596 sharp,1,kingjohn,1596 seek'st,1,kingjohn,1596 woo'd,1,kingjohn,1596 shock,1,kingjohn,1596 ending,1,kingjohn,1596 sway,1,kingjohn,1596 Confound,1,kingjohn,1596 summer,1,kingjohn,1596 swan,1,kingjohn,1596 attended,2,kingjohn,1596 kingdom's,2,kingjohn,1596 islanders,2,kingjohn,1596 religion,2,kingjohn,1596 James,2,kingjohn,1596 armies,2,kingjohn,1596 forbid,2,kingjohn,1596 advised,2,kingjohn,1596 times,2,kingjohn,1596 guard,2,kingjohn,1596 join,2,kingjohn,1596 red,2,kingjohn,1596 darest,2,kingjohn,1596 composition,2,kingjohn,1596 leisure,2,kingjohn,1596 country,2,kingjohn,1596 business,2,kingjohn,1596 Alas,2,kingjohn,1596 alike,2,kingjohn,1596 woman's,2,kingjohn,1596 honours,2,kingjohn,1596 preparation,2,kingjohn,1596 bonds,2,kingjohn,1596 assured,2,kingjohn,1596 health,2,kingjohn,1596 assistance,2,kingjohn,1596 easily,2,kingjohn,1596 express,2,kingjohn,1596 held,2,kingjohn,1596 drowsy,2,kingjohn,1596 Stay,2,kingjohn,1596 painted,2,kingjohn,1596 spake,2,kingjohn,1596 decay,2,kingjohn,1596 Citizens,2,kingjohn,1596 toil,2,kingjohn,1596 drum,2,kingjohn,1596 instrument,2,kingjohn,1596 fought,2,kingjohn,1596 angels,2,kingjohn,1596 although,2,kingjohn,1596 withal,2,kingjohn,1596 damned,2,kingjohn,1596 sore,2,kingjohn,1596 pleasures,2,kingjohn,1596 contrary,2,kingjohn,1596 Whom,2,kingjohn,1596 become,2,kingjohn,1596 excommunicate,2,kingjohn,1596 Pope,2,kingjohn,1596 stirring,2,kingjohn,1596 reign,2,kingjohn,1596 sons,2,kingjohn,1596 giant,2,kingjohn,1596 camp,2,kingjohn,1596 drive,2,kingjohn,1596 enemies',2,kingjohn,1596 'What,2,kingjohn,1596 sold,2,kingjohn,1596 confusion,2,kingjohn,1596 grows,2,kingjohn,1596 incensed,2,kingjohn,1596 injury,2,kingjohn,1596 broker,2,kingjohn,1596 Much,2,kingjohn,1596 heal,2,kingjohn,1596 cheek,2,kingjohn,1596 fingers,2,kingjohn,1596 dogged,2,kingjohn,1596 golden,2,kingjohn,1596 breaks,2,kingjohn,1596 soft,2,kingjohn,1596 Methinks,2,kingjohn,1596 calamity,2,kingjohn,1596 wait,2,kingjohn,1596 widow's,2,kingjohn,1596 coldly,2,kingjohn,1596 towns,2,kingjohn,1596 shames,2,kingjohn,1596 sung,2,kingjohn,1596 compliment,2,kingjohn,1596 Withhold,2,kingjohn,1596 stands,2,kingjohn,1596 enough,2,kingjohn,1596 dispossess,2,kingjohn,1596 worthiest,2,kingjohn,1596 enkindled,2,kingjohn,1596 tooth,2,kingjohn,1596 walk,2,kingjohn,1596 merry,2,kingjohn,1596 deceit,2,kingjohn,1596 landed,2,kingjohn,1596 throne,2,kingjohn,1596 fell,2,kingjohn,1596 yield,2,kingjohn,1596 peril,2,kingjohn,1596 deliver,2,kingjohn,1596 worth,2,kingjohn,1596 Himself,2,kingjohn,1596 Such,2,kingjohn,1596 steps,2,kingjohn,1596 murderer,2,kingjohn,1596 winds,2,kingjohn,1596 Farewell,2,kingjohn,1596 constraint,2,kingjohn,1596 'O,2,kingjohn,1596 Silence,2,kingjohn,1596 stern,2,kingjohn,1596 thin,2,kingjohn,1596 play'd,2,kingjohn,1596 scope,2,kingjohn,1596 becomes,2,kingjohn,1596 conjunction,2,kingjohn,1596 adverse,2,kingjohn,1596 amiss,2,kingjohn,1596 swelling,2,kingjohn,1596 ourselves,2,kingjohn,1596 everlasting,2,kingjohn,1596 worse,2,kingjohn,1596 merit,2,kingjohn,1596 heavens,2,kingjohn,1596 monster,2,kingjohn,1596 afraid,2,kingjohn,1596 Pandulph,2,kingjohn,1596 civil,2,kingjohn,1596 kill'd,2,kingjohn,1596 Turn,2,kingjohn,1596 plots,2,kingjohn,1596 actions,2,kingjohn,1596 loose,2,kingjohn,1596 cherish,2,kingjohn,1596 commit,2,kingjohn,1596 Sound,2,kingjohn,1596 eldest,2,kingjohn,1596 complete,2,kingjohn,1596 above,2,kingjohn,1596 accent,2,kingjohn,1596 feel,2,kingjohn,1596 feet,2,kingjohn,1596 whisper,2,kingjohn,1596 weather,2,kingjohn,1596 Old,2,kingjohn,1596 Sands,2,kingjohn,1596 wins,2,kingjohn,1596 usurp,2,kingjohn,1596 seems,2,kingjohn,1596 upholds,2,kingjohn,1596 Englishman,2,kingjohn,1596 unacquainted,2,kingjohn,1596 requests,2,kingjohn,1596 anon,2,kingjohn,1596 summon,2,kingjohn,1596 hatch,2,kingjohn,1596 warm,2,kingjohn,1596 voice,2,kingjohn,1596 wars,2,kingjohn,1596 cunning,2,kingjohn,1596 melted,2,kingjohn,1596 Turning,2,kingjohn,1596 bright,2,kingjohn,1596 nephew,2,kingjohn,1596 knowledge,2,kingjohn,1596 strongly,2,kingjohn,1596 foes,2,kingjohn,1596 rivers,2,kingjohn,1596 Drawn,2,kingjohn,1596 offend,2,kingjohn,1596 talks,2,kingjohn,1596 Ah,2,kingjohn,1596 Am,2,kingjohn,1596 stubborn,2,kingjohn,1596 quarrel,2,kingjohn,1596 hang'd,2,kingjohn,1596 surety,2,kingjohn,1596 slander'd,2,kingjohn,1596 neither,2,kingjohn,1596 lands,2,kingjohn,1596 cruel,2,kingjohn,1596 to't,2,kingjohn,1596 begun,2,kingjohn,1596 ashes,2,kingjohn,1596 Ha,2,kingjohn,1596 beg,2,kingjohn,1596 pleasure,2,kingjohn,1596 ease,2,kingjohn,1596 meteors,2,kingjohn,1596 east,2,kingjohn,1596 despair,2,kingjohn,1596 step,2,kingjohn,1596 nobility,2,kingjohn,1596 Up,2,kingjohn,1596 glorious,2,kingjohn,1596 interruption,2,kingjohn,1596 monstrous,2,kingjohn,1596 quiet,2,kingjohn,1596 corrupted,2,kingjohn,1596 titles,2,kingjohn,1596 annoyance,2,kingjohn,1596 sought,2,kingjohn,1596 moons,2,kingjohn,1596 valiant,2,kingjohn,1596 weep,2,kingjohn,1596 bend,2,kingjohn,1596 canker,2,kingjohn,1596 control,2,kingjohn,1596 belief,2,kingjohn,1596 miscarry,2,kingjohn,1596 behind,2,kingjohn,1596 difference,2,kingjohn,1596 sounds,2,kingjohn,1596 altar,2,kingjohn,1596 orchard,2,kingjohn,1596 yon,2,kingjohn,1596 weak,2,kingjohn,1596 weal,2,kingjohn,1596 Save,2,kingjohn,1596 bent,2,kingjohn,1596 parle,2,kingjohn,1596 Behold,2,kingjohn,1596 Lies,2,kingjohn,1596 Put,2,kingjohn,1596 a',2,kingjohn,1596 serpent,2,kingjohn,1596 farewell,2,kingjohn,1596 conquest,2,kingjohn,1596 vaulty,2,kingjohn,1596 used,2,kingjohn,1596 Enough,2,kingjohn,1596 sins,2,kingjohn,1596 stronger,2,kingjohn,1596 paint,2,kingjohn,1596 beds,2,kingjohn,1596 smack,2,kingjohn,1596 inheritance,2,kingjohn,1596 quite,2,kingjohn,1596 river,2,kingjohn,1596 monk,2,kingjohn,1596 God's,2,kingjohn,1596 stay'd,2,kingjohn,1596 promised,2,kingjohn,1596 Soldiers,2,kingjohn,1596 servant,2,kingjohn,1596 marches,2,kingjohn,1596 lineal,2,kingjohn,1596 safe,2,kingjohn,1596 beat,2,kingjohn,1596 gain,2,kingjohn,1596 Unless,2,kingjohn,1596 plays,2,kingjohn,1596 victory,2,kingjohn,1596 priest,2,kingjohn,1596 gild,2,kingjohn,1596 pluck'd,2,kingjohn,1596 time's,2,kingjohn,1596 Return,2,kingjohn,1596 thrive,2,kingjohn,1596 redress,2,kingjohn,1596 gall,2,kingjohn,1596 destruction,2,kingjohn,1596 touch'd,2,kingjohn,1596 makest,2,kingjohn,1596 ay,2,kingjohn,1596 game,2,kingjohn,1596 possess'd,2,kingjohn,1596 privilege,2,kingjohn,1596 Startles,2,kingjohn,1596 newly,2,kingjohn,1596 temperate,2,kingjohn,1596 Sheriff,2,kingjohn,1596 fixed,2,kingjohn,1596 humours,2,kingjohn,1596 feast,2,kingjohn,1596 small,2,kingjohn,1596 shears,2,kingjohn,1596 utmost,2,kingjohn,1596 idly,2,kingjohn,1596 produce,2,kingjohn,1596 lout,2,kingjohn,1596 train,2,kingjohn,1596 add,2,kingjohn,1596 ho,2,kingjohn,1596 spent,2,kingjohn,1596 lest,2,kingjohn,1596 loved,2,kingjohn,1596 swear'st,2,kingjohn,1596 beauteous,2,kingjohn,1596 Whoever,2,kingjohn,1596 ready,2,kingjohn,1596 spot,2,kingjohn,1596 zealous,2,kingjohn,1596 reasons,2,kingjohn,1596 oppression,2,kingjohn,1596 hard,2,kingjohn,1596 unlook'd,2,kingjohn,1596 isle,2,kingjohn,1596 employ'd,2,kingjohn,1596 More,2,kingjohn,1596 natural,2,kingjohn,1596 hazards,2,kingjohn,1596 midnight,2,kingjohn,1596 kingdoms,2,kingjohn,1596 purged,2,kingjohn,1596 Commend,2,kingjohn,1596 stranger,2,kingjohn,1596 litter,2,kingjohn,1596 owes,2,kingjohn,1596 devise,2,kingjohn,1596 heretic,2,kingjohn,1596 stones,2,kingjohn,1596 hate,2,kingjohn,1596 fear'd,2,kingjohn,1596 alive,2,kingjohn,1596 shot,2,kingjohn,1596 fool,2,kingjohn,1596 winking,2,kingjohn,1596 fall'n,2,kingjohn,1596 rough,2,kingjohn,1596 fiend,2,kingjohn,1596 renowned,2,kingjohn,1596 ass,2,kingjohn,1596 fond,2,kingjohn,1596 maiden,2,kingjohn,1596 armour,2,kingjohn,1596 Arm,2,kingjohn,1596 bought,2,kingjohn,1596 Among,2,kingjohn,1596 theirs,2,kingjohn,1596 touch,2,kingjohn,1596 trial,2,kingjohn,1596 ridiculous,2,kingjohn,1596 willingly,2,kingjohn,1596 Art,2,kingjohn,1596 superfluous,2,kingjohn,1596 Into,2,kingjohn,1596 Should,2,kingjohn,1596 George,2,kingjohn,1596 watch,2,kingjohn,1596 Command,2,kingjohn,1596 equal,2,kingjohn,1596 maid,2,kingjohn,1596 report,2,kingjohn,1596 griefs,2,kingjohn,1596 breathed,2,kingjohn,1596 rose,2,kingjohn,1596 indeed,2,kingjohn,1596 Ireland,2,kingjohn,1596 couldst,2,kingjohn,1596 mountains,2,kingjohn,1596 riding,2,kingjohn,1596 prosperity,2,kingjohn,1596 marks,2,kingjohn,1596 wonder,2,kingjohn,1596 beats,2,kingjohn,1596 mounted,2,kingjohn,1596 circle,2,kingjohn,1596 shaking,2,kingjohn,1596 tickling,2,kingjohn,1596 spread,2,kingjohn,1596 ours,2,kingjohn,1596 feature,2,kingjohn,1596 slain,2,kingjohn,1596 oppressed,2,kingjohn,1596 chase,2,kingjohn,1596 strike,2,kingjohn,1596 posterity,2,kingjohn,1596 admit,2,kingjohn,1596 progress,2,kingjohn,1596 Goodwin,2,kingjohn,1596 dares,2,kingjohn,1596 say'st,2,kingjohn,1596 cloak,2,kingjohn,1596 sociable,2,kingjohn,1596 discontent,2,kingjohn,1596 effect,2,kingjohn,1596 doors,2,kingjohn,1596 other's,2,kingjohn,1596 mortal,2,kingjohn,1596 fares,2,kingjohn,1596 soldiers,2,kingjohn,1596 stars,2,kingjohn,1596 Presented,2,kingjohn,1596 foolish,2,kingjohn,1596 already,2,kingjohn,1596 dowry,2,kingjohn,1596 chair,2,kingjohn,1596 beggar,2,kingjohn,1596 courage,2,kingjohn,1596 Father,2,kingjohn,1596 presently,2,kingjohn,1596 coward,2,kingjohn,1596 ranks,2,kingjohn,1596 known,2,kingjohn,1596 grandam's,2,kingjohn,1596 quench,2,kingjohn,1596 blow,2,kingjohn,1596 tides,2,kingjohn,1596 threatening,2,kingjohn,1596 free,2,kingjohn,1596 over,2,kingjohn,1596 number,2,kingjohn,1596 apart,2,kingjohn,1596 horrible,2,kingjohn,1596 disguised,2,kingjohn,1596 firm,2,kingjohn,1596 living,2,kingjohn,1596 close,2,kingjohn,1596 stained,2,kingjohn,1596 affairs,2,kingjohn,1596 passage,2,kingjohn,1596 example,2,kingjohn,1596 sake,2,kingjohn,1596 former,2,kingjohn,1596 throw,2,kingjohn,1596 oft,2,kingjohn,1596 capable,2,kingjohn,1596 We'll,2,kingjohn,1596 slanderer,2,kingjohn,1596 court,2,kingjohn,1596 woes,2,kingjohn,1596 ring,2,kingjohn,1596 provinces,2,kingjohn,1596 beseech,2,kingjohn,1596 allay,2,kingjohn,1596 allegiance,2,kingjohn,1596 unexpected,2,kingjohn,1596 flight,2,kingjohn,1596 ripe,2,kingjohn,1596 torture,2,kingjohn,1596 army,2,kingjohn,1596 duty,2,kingjohn,1596 perforce,2,kingjohn,1596 intent,2,kingjohn,1596 revolts,2,kingjohn,1596 found,2,kingjohn,1596 enraged,2,kingjohn,1596 forward,2,kingjohn,1596 wanton,2,kingjohn,1596 uncle's,2,kingjohn,1596 bullets,2,kingjohn,1596 Milan,2,kingjohn,1596 ends,2,kingjohn,1596 next,2,kingjohn,1596 Three,2,kingjohn,1596 cursed,2,kingjohn,1596 religiously,2,kingjohn,1596 curses,2,kingjohn,1596 robb'd,2,kingjohn,1596 cull,2,kingjohn,1596 faces,2,kingjohn,1596 Hubert's,2,kingjohn,1596 duke,2,kingjohn,1596 Hail,2,kingjohn,1596 trodden,2,kingjohn,1596 angel,2,kingjohn,1596 opposite,2,kingjohn,1596 sways,2,kingjohn,1596 compulsion,2,kingjohn,1596 knight,2,kingjohn,1596 rail,2,kingjohn,1596 supply,2,kingjohn,1596 rain,2,kingjohn,1596 waters,2,kingjohn,1596 ope,2,kingjohn,1596 angry,2,kingjohn,1596 glad,2,kingjohn,1596 Strike,2,kingjohn,1596 hideous,2,kingjohn,1596 Show,2,kingjohn,1596 table,2,kingjohn,1596 create,2,kingjohn,1596 dispatch'd,2,kingjohn,1596 evil,2,kingjohn,1596 Many,2,kingjohn,1596 Time,2,kingjohn,1596 giving,2,kingjohn,1596 clearly,2,kingjohn,1596 Hadst,2,kingjohn,1596 Bigot,2,kingjohn,1596 lasting,2,kingjohn,1596 methinks,2,kingjohn,1596 humour,2,kingjohn,1596 fly,2,kingjohn,1596 clay,2,kingjohn,1596 fine,2,kingjohn,1596 stains,2,kingjohn,1596 ribs,2,kingjohn,1596 punish'd,2,kingjohn,1596 married,2,kingjohn,1596 bare,2,kingjohn,1596 host,2,kingjohn,1596 worship,2,kingjohn,1596 holiness,2,kingjohn,1596 practise,2,kingjohn,1596 smooth,2,kingjohn,1596 base,2,kingjohn,1596 Cut,2,kingjohn,1596 tame,2,kingjohn,1596 rising,2,kingjohn,1596 names,2,kingjohn,1596 emperor,2,kingjohn,1596 trumpets,2,kingjohn,1596 feeble,2,kingjohn,1596 gallant,2,kingjohn,1596 coal,2,kingjohn,1596 is't,2,kingjohn,1596 talk,2,kingjohn,1596 bind,2,kingjohn,1596 stroke,2,kingjohn,1596 given,2,kingjohn,1596 watchful,2,kingjohn,1596 beshrew,2,kingjohn,1596 shore,2,kingjohn,1596 thank,2,kingjohn,1596 green,2,kingjohn,1596 dangerous,2,kingjohn,1596 master,2,kingjohn,1596 hollow,2,kingjohn,1596 giddy,2,kingjohn,1596 Lives,2,kingjohn,1596 Arise,2,kingjohn,1596 feasts,2,kingjohn,1596 request,2,kingjohn,1596 Grandam,2,kingjohn,1596 inundation,2,kingjohn,1596 resolution,2,kingjohn,1596 gives,2,kingjohn,1596 task,2,kingjohn,1596 legions,2,kingjohn,1596 seas,2,kingjohn,1596 lovely,2,kingjohn,1596 commission,2,kingjohn,1596 cool,2,kingjohn,1596 inward,2,kingjohn,1596 adieu,2,kingjohn,1596 fairer,2,kingjohn,1596 low,2,kingjohn,1596 ugly,2,kingjohn,1596 Prince,2,kingjohn,1596 meagre,2,kingjohn,1596 we'll,2,kingjohn,1596 aught,2,kingjohn,1596 south,2,kingjohn,1596 defend,2,kingjohn,1596 sees,2,kingjohn,1596 dauntless,2,kingjohn,1596 tells,2,kingjohn,1596 tidings,2,kingjohn,1596 troop,2,kingjohn,1596 sacred,2,kingjohn,1596 cord,2,kingjohn,1596 Innocent,2,kingjohn,1596 Abbey,2,kingjohn,1596 extremes,2,kingjohn,1596 remove,2,kingjohn,1596 beheld,2,kingjohn,1596 secure,2,kingjohn,1596 Heralds,2,kingjohn,1596 excellence,2,kingjohn,1596 Trumpet,2,kingjohn,1596 post,2,kingjohn,1596 Cuts,2,kingjohn,1596 led,2,kingjohn,1596 grieved,2,kingjohn,1596 deceive,2,kingjohn,1596 sickness,2,kingjohn,1596 Two,2,kingjohn,1596 thread,2,kingjohn,1596 sleep,2,kingjohn,1596 eat,2,kingjohn,1596 lays,2,kingjohn,1596 least,2,kingjohn,1596 learn,2,kingjohn,1596 doing,2,kingjohn,1596 Another,2,kingjohn,1596 elbow,2,kingjohn,1596 rights,2,kingjohn,1596 heartily,2,kingjohn,1596 whiles,2,kingjohn,1596 territories,2,kingjohn,1596 discontented,2,kingjohn,1596 severally,2,kingjohn,1596 hurt,2,kingjohn,1596 urged,2,kingjohn,1596 entrance,2,kingjohn,1596 laid,2,kingjohn,1596 distemper'd,2,kingjohn,1596 confirm,2,kingjohn,1596 happily,2,kingjohn,1596 perchance,2,kingjohn,1596 Washes,2,kingjohn,1596 boisterous,2,kingjohn,1596 weigh,2,kingjohn,1596 sudden,2,kingjohn,1596 rocks,2,kingjohn,1596 top,2,kingjohn,1596 reverend,2,kingjohn,1596 coupled,2,kingjohn,1596 Bind,2,kingjohn,1596 Teach,2,kingjohn,1596 behold,2,kingjohn,1596 undergo,2,kingjohn,1596 vex'd,2,kingjohn,1596 grapple,2,kingjohn,1596 Christendom,2,kingjohn,1596 ambitious,2,kingjohn,1596 tempt,2,kingjohn,1596 he'll,2,kingjohn,1596 dew,2,kingjohn,1596 awake,2,kingjohn,1596 princess,2,kingjohn,1596 ten,2,kingjohn,1596 amen,2,kingjohn,1596 charity,2,kingjohn,1596 Kent,2,kingjohn,1596 remembrance,2,kingjohn,1596 repair,2,kingjohn,1596 flattering,2,kingjohn,1596 Frenchmen's,2,kingjohn,1596 shape,2,kingjohn,1596 lack,2,kingjohn,1596 direction,2,kingjohn,1596 wouldst,2,kingjohn,1596 turn'd,2,kingjohn,1596 troubled,3,kingjohn,1596 villany,3,kingjohn,1596 truce,3,kingjohn,1596 pity,3,kingjohn,1596 days,3,kingjohn,1596 churlish,3,kingjohn,1596 double,3,kingjohn,1596 tremble,3,kingjohn,1596 prophet,3,kingjohn,1596 wicked,3,kingjohn,1596 robe,3,kingjohn,1596 suppose,3,kingjohn,1596 Bear,3,kingjohn,1596 joy,3,kingjohn,1596 Never,3,kingjohn,1596 every,3,kingjohn,1596 prisoner,3,kingjohn,1596 understand,3,kingjohn,1596 rue,3,kingjohn,1596 Would,3,kingjohn,1596 bowels,3,kingjohn,1596 care,3,kingjohn,1596 soon,3,kingjohn,1596 After,3,kingjohn,1596 jest,3,kingjohn,1596 saw,3,kingjohn,1596 line,3,kingjohn,1596 sorrows,3,kingjohn,1596 Austria,3,kingjohn,1596 gracious,3,kingjohn,1596 Keep,3,kingjohn,1596 subjects,3,kingjohn,1596 heat,3,kingjohn,1596 faiths,3,kingjohn,1596 perjured,3,kingjohn,1596 further,3,kingjohn,1596 ocean,3,kingjohn,1596 march'd,3,kingjohn,1596 deceased,3,kingjohn,1596 wall,3,kingjohn,1596 slaughter,3,kingjohn,1596 sea,3,kingjohn,1596 Aside,3,kingjohn,1596 suit,3,kingjohn,1596 lions,3,kingjohn,1596 confident,3,kingjohn,1596 Was,3,kingjohn,1596 'I,3,kingjohn,1596 Spain,3,kingjohn,1596 Executioner,3,kingjohn,1596 worst,3,kingjohn,1596 common,3,kingjohn,1596 daughter,3,kingjohn,1596 king's,3,kingjohn,1596 elder,3,kingjohn,1596 rush,3,kingjohn,1596 Pomfret,3,kingjohn,1596 beaten,3,kingjohn,1596 others,3,kingjohn,1596 flesh,3,kingjohn,1596 One,3,kingjohn,1596 dies,3,kingjohn,1596 Cousin,3,kingjohn,1596 died,3,kingjohn,1596 rebellion,3,kingjohn,1596 pretty,3,kingjohn,1596 office,3,kingjohn,1596 join'd,3,kingjohn,1596 book,3,kingjohn,1596 tent,3,kingjohn,1596 aspect,3,kingjohn,1596 urge,3,kingjohn,1596 unadvised,3,kingjohn,1596 blows,3,kingjohn,1596 deeds,3,kingjohn,1596 voluntary,3,kingjohn,1596 Lo,3,kingjohn,1596 siege,3,kingjohn,1596 Stand,3,kingjohn,1596 blots,3,kingjohn,1596 brings,3,kingjohn,1596 past,3,kingjohn,1596 heads,3,kingjohn,1596 breathing,3,kingjohn,1596 JOHN'S,3,kingjohn,1596 Re,3,kingjohn,1596 shadow,3,kingjohn,1596 vows,3,kingjohn,1596 north,3,kingjohn,1596 Both,3,kingjohn,1596 i',3,kingjohn,1596 storm,3,kingjohn,1596 sail,3,kingjohn,1596 forgive,3,kingjohn,1596 confess,3,kingjohn,1596 breast,3,kingjohn,1596 air,3,kingjohn,1596 repent,3,kingjohn,1596 Here's,3,kingjohn,1596 favour,3,kingjohn,1596 tongues,3,kingjohn,1596 Edmundsbury,3,kingjohn,1596 enforce,3,kingjohn,1596 lady's,3,kingjohn,1596 loves,3,kingjohn,1596 hadst,3,kingjohn,1596 Yea,3,kingjohn,1596 resolved,3,kingjohn,1596 removed,3,kingjohn,1596 defy,3,kingjohn,1596 pure,3,kingjohn,1596 easy,3,kingjohn,1596 outward,3,kingjohn,1596 messenger,3,kingjohn,1596 Call,3,kingjohn,1596 palm,3,kingjohn,1596 deny,3,kingjohn,1596 plain,3,kingjohn,1596 prepare,3,kingjohn,1596 present,3,kingjohn,1596 point,3,kingjohn,1596 yielded,3,kingjohn,1596 faithful,3,kingjohn,1596 prepared,3,kingjohn,1596 Hast,3,kingjohn,1596 chance,3,kingjohn,1596 native,3,kingjohn,1596 cheque,3,kingjohn,1596 enemies,3,kingjohn,1596 broke,3,kingjohn,1596 Hath,3,kingjohn,1596 kindled,3,kingjohn,1596 nobles,3,kingjohn,1596 far,3,kingjohn,1596 occasion,3,kingjohn,1596 peers,3,kingjohn,1596 castle,3,kingjohn,1596 nay,3,kingjohn,1596 note,3,kingjohn,1596 noon,3,kingjohn,1596 tender,3,kingjohn,1596 things,3,kingjohn,1596 faint,3,kingjohn,1596 year,3,kingjohn,1596 liable,3,kingjohn,1596 borne,3,kingjohn,1596 shores,3,kingjohn,1596 Set,3,kingjohn,1596 youth,3,kingjohn,1596 question,3,kingjohn,1596 arrived,3,kingjohn,1596 teeth,3,kingjohn,1596 Makes,3,kingjohn,1596 purposes,3,kingjohn,1596 towers,3,kingjohn,1596 end,3,kingjohn,1596 blush,3,kingjohn,1596 'gainst,3,kingjohn,1596 Son,3,kingjohn,1596 Count,3,kingjohn,1596 smoke,3,kingjohn,1596 Made,3,kingjohn,1596 expedient,3,kingjohn,1596 behalf,3,kingjohn,1596 taste,3,kingjohn,1596 maids,3,kingjohn,1596 pound,3,kingjohn,1596 discipline,3,kingjohn,1596 Poictiers,3,kingjohn,1596 hateful,3,kingjohn,1596 cure,3,kingjohn,1596 usurping,3,kingjohn,1596 city's,3,kingjohn,1596 walks,3,kingjohn,1596 Say,3,kingjohn,1596 Alarums,3,kingjohn,1596 save,3,kingjohn,1596 champion,3,kingjohn,1596 Thus,3,kingjohn,1596 crown'd,3,kingjohn,1596 audience,3,kingjohn,1596 hair,3,kingjohn,1596 grossly,3,kingjohn,1596 poison,3,kingjohn,1596 spleen,3,kingjohn,1596 owe,3,kingjohn,1596 wondrous,3,kingjohn,1596 consent,3,kingjohn,1596 hundred,3,kingjohn,1596 Make,3,kingjohn,1596 wert,3,kingjohn,1596 grant,3,kingjohn,1596 three,3,kingjohn,1596 palace,3,kingjohn,1596 west,3,kingjohn,1596 perfect,3,kingjohn,1596 fill,3,kingjohn,1596 ta'en,3,kingjohn,1596 wide,3,kingjohn,1596 queen,3,kingjohn,1596 wives,3,kingjohn,1596 bounds,3,kingjohn,1596 fare,3,kingjohn,1596 excursions,3,kingjohn,1596 wild,3,kingjohn,1596 shoot,3,kingjohn,1596 streets,3,kingjohn,1596 seal,3,kingjohn,1596 falsehood,3,kingjohn,1596 bawd,3,kingjohn,1596 interest,3,kingjohn,1596 hairs,3,kingjohn,1596 seen,3,kingjohn,1596 seem,3,kingjohn,1596 harmful,3,kingjohn,1596 'twixt,3,kingjohn,1596 person,3,kingjohn,1596 house,3,kingjohn,1596 heels,3,kingjohn,1596 huge,3,kingjohn,1596 tide,3,kingjohn,1596 prison,3,kingjohn,1596 roaring,3,kingjohn,1596 together,3,kingjohn,1596 sent,3,kingjohn,1596 abroad,3,kingjohn,1596 spite,3,kingjohn,1596 conduct,3,kingjohn,1596 rheum,3,kingjohn,1596 remember,3,kingjohn,1596 sovereign,3,kingjohn,1596 marriage,3,kingjohn,1596 fever,3,kingjohn,1596 citizens,3,kingjohn,1596 Without,3,kingjohn,1596 bias,3,kingjohn,1596 mouths,3,kingjohn,1596 Did,3,kingjohn,1596 catch,3,kingjohn,1596 Geffrey,3,kingjohn,1596 armed,3,kingjohn,1596 den,3,kingjohn,1596 remorse,3,kingjohn,1596 kill,3,kingjohn,1596 woman,3,kingjohn,1596 parley,3,kingjohn,1596 breathe,3,kingjohn,1596 enemy,3,kingjohn,1596 fortunes,3,kingjohn,1596 indignation,4,kingjohn,1596 swords,4,kingjohn,1596 Hear,4,kingjohn,1596 burn'd,4,kingjohn,1596 help,4,kingjohn,1596 bones,4,kingjohn,1596 truly,4,kingjohn,1596 Tell,4,kingjohn,1596 proceedings,4,kingjohn,1596 while,4,kingjohn,1596 sight,4,kingjohn,1596 honourable,4,kingjohn,1596 offer,4,kingjohn,1596 fury,4,kingjohn,1596 signs,4,kingjohn,1596 trust,4,kingjohn,1596 cheeks,4,kingjohn,1596 demand,4,kingjohn,1596 cast,4,kingjohn,1596 draw,4,kingjohn,1596 veins,4,kingjohn,1596 teach,4,kingjohn,1596 amity,4,kingjohn,1596 Duke,4,kingjohn,1596 embassy,4,kingjohn,1596 sit,4,kingjohn,1596 subject,4,kingjohn,1596 counsel,4,kingjohn,1596 looks,4,kingjohn,1596 sky,4,kingjohn,1596 offence,4,kingjohn,1596 turn,4,kingjohn,1596 fellow,4,kingjohn,1596 princes,4,kingjohn,1596 service,4,kingjohn,1596 sword,4,kingjohn,1596 malice,4,kingjohn,1596 bring,4,kingjohn,1596 wind,4,kingjohn,1596 sooth,4,kingjohn,1596 matter,4,kingjohn,1596 Plantagenet,4,kingjohn,1596 parts,4,kingjohn,1596 party,4,kingjohn,1596 spoke,4,kingjohn,1596 wherefore,4,kingjohn,1596 burning,4,kingjohn,1596 manners,4,kingjohn,1596 measure,4,kingjohn,1596 pay,4,kingjohn,1596 blown,4,kingjohn,1596 innocent,4,kingjohn,1596 Within,4,kingjohn,1596 II,4,kingjohn,1596 whole,4,kingjohn,1596 Had,4,kingjohn,1596 gold,4,kingjohn,1596 gave,4,kingjohn,1596 children,4,kingjohn,1596 people,4,kingjohn,1596 Speak,4,kingjohn,1596 Saint,4,kingjohn,1596 just,4,kingjohn,1596 deep,4,kingjohn,1596 vouchsafe,4,kingjohn,1596 door,4,kingjohn,1596 move,4,kingjohn,1596 damn'd,4,kingjohn,1596 Executioners,4,kingjohn,1596 idle,4,kingjohn,1596 loud,4,kingjohn,1596 Melun,4,kingjohn,1596 place,4,kingjohn,1596 knee,4,kingjohn,1596 Because,4,kingjohn,1596 men's,4,kingjohn,1596 knit,4,kingjohn,1596 call'd,4,kingjohn,1596 Full,4,kingjohn,1596 drawn,4,kingjohn,1596 whether,4,kingjohn,1596 Under,4,kingjohn,1596 arm,4,kingjohn,1596 fiery,4,kingjohn,1596 frown,4,kingjohn,1596 thanks,4,kingjohn,1596 Sirrah,4,kingjohn,1596 change,4,kingjohn,1596 march,4,kingjohn,1596 Touraine,4,kingjohn,1596 water,4,kingjohn,1596 almost,4,kingjohn,1596 She,4,kingjohn,1596 awhile,4,kingjohn,1596 precious,4,kingjohn,1596 tempest,4,kingjohn,1596 mind,4,kingjohn,1596 wrought,4,kingjohn,1596 slave,4,kingjohn,1596 Were,4,kingjohn,1596 pause,4,kingjohn,1596 wrongs,4,kingjohn,1596 near,4,kingjohn,1596 retire,4,kingjohn,1596 sorrow,4,kingjohn,1596 loving,4,kingjohn,1596 morrow,4,kingjohn,1596 brother's,4,kingjohn,1596 irons,4,kingjohn,1596 Heaven,4,kingjohn,1596 foreign,4,kingjohn,1596 womb,4,kingjohn,1596 Swinstead,4,kingjohn,1596 judge,4,kingjohn,1596 kinsman,4,kingjohn,1596 fit,4,kingjohn,1596 passion,4,kingjohn,1596 vow,4,kingjohn,1596 thunder,4,kingjohn,1596 gentleman,4,kingjohn,1596 Earl,4,kingjohn,1596 wilt,4,kingjohn,1596 pardon,4,kingjohn,1596 flood,4,kingjohn,1596 Maine,4,kingjohn,1596 cry,4,kingjohn,1596 send,4,kingjohn,1596 goes,4,kingjohn,1596 madam,4,kingjohn,1596 lie,4,kingjohn,1596 Ascension,4,kingjohn,1596 heinous,4,kingjohn,1596 forces,4,kingjohn,1596 straight,4,kingjohn,1596 warlike,4,kingjohn,1596 met,4,kingjohn,1596 recreant,4,kingjohn,1596 lips,4,kingjohn,1596 Indeed,4,kingjohn,1596 last,4,kingjohn,1596 Anjou,4,kingjohn,1596 strange,4,kingjohn,1596 nature,4,kingjohn,1596 content,4,kingjohn,1596 attend,4,kingjohn,1596 princely,4,kingjohn,1596 greatness,4,kingjohn,1596 cannon,4,kingjohn,1596 obedience,4,kingjohn,1596 tread,4,kingjohn,1596 order,4,kingjohn,1596 e'er,4,kingjohn,1596 ESSEX,4,kingjohn,1596 told,5,kingjohn,1596 drop,5,kingjohn,1596 took,5,kingjohn,1596 heir,5,kingjohn,1596 zeal,5,kingjohn,1596 pray,5,kingjohn,1596 GURNEY,5,kingjohn,1596 mercy,5,kingjohn,1596 plague,5,kingjohn,1596 charge,5,kingjohn,1596 birth,5,kingjohn,1596 amazed,5,kingjohn,1596 trumpet,5,kingjohn,1596 toward,5,kingjohn,1596 blessed,5,kingjohn,1596 black,5,kingjohn,1596 light,5,kingjohn,1596 bastard,5,kingjohn,1596 PETER,5,kingjohn,1596 Attendants,5,kingjohn,1596 read,5,kingjohn,1596 These,5,kingjohn,1596 Bretagne,5,kingjohn,1596 fearful,5,kingjohn,1596 brief,5,kingjohn,1596 lion's,5,kingjohn,1596 soldier,5,kingjohn,1596 want,5,kingjohn,1596 wish,5,kingjohn,1596 mean,5,kingjohn,1596 authority,5,kingjohn,1596 kept,5,kingjohn,1596 canst,5,kingjohn,1596 force,5,kingjohn,1596 Her,5,kingjohn,1596 enter,5,kingjohn,1596 IV,5,kingjohn,1596 ears,5,kingjohn,1596 royalty,5,kingjohn,1596 burn,5,kingjohn,1596 got,5,kingjohn,1596 de,5,kingjohn,1596 approach,5,kingjohn,1596 cousin,5,kingjohn,1596 lost,5,kingjohn,1596 grace,5,kingjohn,1596 welcome,5,kingjohn,1596 pale,5,kingjohn,1596 liberty,5,kingjohn,1596 open,5,kingjohn,1596 dreadful,5,kingjohn,1596 though,5,kingjohn,1596 revenge,5,kingjohn,1596 room,5,kingjohn,1596 action,5,kingjohn,1596 hide,5,kingjohn,1596 Coeur,5,kingjohn,1596 Look,5,kingjohn,1596 issue,5,kingjohn,1596 won,5,kingjohn,1596 wrath,5,kingjohn,1596 possession,5,kingjohn,1596 thing,5,kingjohn,1596 pomp,5,kingjohn,1596 niece,5,kingjohn,1596 Can,5,kingjohn,1596 themselves,5,kingjohn,1596 danger,5,kingjohn,1596 marry,5,kingjohn,1596 Brother,5,kingjohn,1596 Chatillon,5,kingjohn,1596 fast,5,kingjohn,1596 large,5,kingjohn,1596 hope,5,kingjohn,1596 Commodity,5,kingjohn,1596 calf's,5,kingjohn,1596 wife,5,kingjohn,1596 presence,5,kingjohn,1596 sound,5,kingjohn,1596 thrust,5,kingjohn,1596 brow,5,kingjohn,1596 spirits,5,kingjohn,1596 glory,5,kingjohn,1596 Since,5,kingjohn,1596 thoughts,5,kingjohn,1596 virtue,5,kingjohn,1596 May,5,kingjohn,1596 silver,5,kingjohn,1596 widow,5,kingjohn,1596 Lest,5,kingjohn,1596 certain,5,kingjohn,1596 shake,5,kingjohn,1596 kind,5,kingjohn,1596 lusty,6,kingjohn,1596 brows,6,kingjohn,1596 lawful,6,kingjohn,1596 thought,6,kingjohn,1596 rather,6,kingjohn,1596 Must,6,kingjohn,1596 under,6,kingjohn,1596 strength,6,kingjohn,1596 conscience,6,kingjohn,1596 yourself,6,kingjohn,1596 Young,6,kingjohn,1596 Nor,6,kingjohn,1596 bound,6,kingjohn,1596 body,6,kingjohn,1596 church,6,kingjohn,1596 Their,6,kingjohn,1596 fight,6,kingjohn,1596 sun,6,kingjohn,1596 title,6,kingjohn,1596 Though,6,kingjohn,1596 stir,6,kingjohn,1596 Ay,6,kingjohn,1596 therefore,6,kingjohn,1596 means,6,kingjohn,1596 begot,6,kingjohn,1596 pains,6,kingjohn,1596 God,6,kingjohn,1596 Fortune,6,kingjohn,1596 needs,6,kingjohn,1596 husband,6,kingjohn,1596 defence,6,kingjohn,1596 legate,6,kingjohn,1596 loss,6,kingjohn,1596 Geffrey's,6,kingjohn,1596 harm,6,kingjohn,1596 ask,6,kingjohn,1596 having,6,kingjohn,1596 Between,6,kingjohn,1596 Madam,6,kingjohn,1596 Peace,6,kingjohn,1596 high,6,kingjohn,1596 knows,6,kingjohn,1596 five,6,kingjohn,1596 why,6,kingjohn,1596 only,6,kingjohn,1596 heavy,6,kingjohn,1596 dust,6,kingjohn,1596 happy,6,kingjohn,1596 faced,6,kingjohn,1596 ne'er,6,kingjohn,1596 kiss,6,kingjohn,1596 Herald,6,kingjohn,1596 lives,6,kingjohn,1596 hearts,6,kingjohn,1596 use,6,kingjohn,1596 kingdom,6,kingjohn,1596 crest,6,kingjohn,1596 souls,6,kingjohn,1596 cold,6,kingjohn,1596 limbs,6,kingjohn,1596 Away,6,kingjohn,1596 wound,6,kingjohn,1596 Salisbury,6,kingjohn,1596 Death,6,kingjohn,1596 follow,6,kingjohn,1596 brave,7,kingjohn,1596 motion,7,kingjohn,1596 Will,7,kingjohn,1596 villain,7,kingjohn,1596 tears,7,kingjohn,1596 run,7,kingjohn,1596 Give,7,kingjohn,1596 highness,7,kingjohn,1596 call,7,kingjohn,1596 another,7,kingjohn,1596 Not,7,kingjohn,1596 doubt,7,kingjohn,1596 league,7,kingjohn,1596 Here,7,kingjohn,1596 false,7,kingjohn,1596 rude,7,kingjohn,1596 hence,7,kingjohn,1596 stop,7,kingjohn,1596 There's,7,kingjohn,1596 else,7,kingjohn,1596 III,7,kingjohn,1596 At,7,kingjohn,1596 On,7,kingjohn,1596 Go,7,kingjohn,1596 bed,7,kingjohn,1596 play,7,kingjohn,1596 prove,7,kingjohn,1596 'tis,7,kingjohn,1596 Like,7,kingjohn,1596 said,7,kingjohn,1596 deed,7,kingjohn,1596 ROBERT,7,kingjohn,1596 left,7,kingjohn,1596 long,7,kingjohn,1596 forget,7,kingjohn,1596 fierce,7,kingjohn,1596 hang,7,kingjohn,1596 mighty,7,kingjohn,1596 city,7,kingjohn,1596 forsworn,7,kingjohn,1596 show,7,kingjohn,1596 mayst,7,kingjohn,1596 Therefore,7,kingjohn,1596 They,7,kingjohn,1596 state,7,kingjohn,1596 once,7,kingjohn,1596 Being,7,kingjohn,1596 MELUN,7,kingjohn,1596 LADY,7,kingjohn,1596 England's,7,kingjohn,1596 believe,7,kingjohn,1596 oath,7,kingjohn,1596 fortune,7,kingjohn,1596 colours,7,kingjohn,1596 ever,7,kingjohn,1596 uncle,7,kingjohn,1596 reason,7,kingjohn,1596 unto,7,kingjohn,1596 revolt,7,kingjohn,1596 drums,7,kingjohn,1596 hither,7,kingjohn,1596 match,7,kingjohn,1596 beauty,7,kingjohn,1596 grandam,8,kingjohn,1596 meet,8,kingjohn,1596 V,8,kingjohn,1596 advantage,8,kingjohn,1596 hell,8,kingjohn,1596 full,8,kingjohn,1596 warrant,8,kingjohn,1596 cause,8,kingjohn,1596 vile,8,kingjohn,1596 wrong,8,kingjohn,1596 after,8,kingjohn,1596 rest,8,kingjohn,1596 each,8,kingjohn,1596 stay,8,kingjohn,1596 since,8,kingjohn,1596 bid,8,kingjohn,1596 FAULCONBRIDGE,8,kingjohn,1596 dear,8,kingjohn,1596 hands,8,kingjohn,1596 speed,8,kingjohn,1596 lose,8,kingjohn,1596 act,8,kingjohn,1596 speaks,8,kingjohn,1596 foul,8,kingjohn,1596 Lords,8,kingjohn,1596 All,8,kingjohn,1596 skin,8,kingjohn,1596 comes,8,kingjohn,1596 grave,8,kingjohn,1596 win,8,kingjohn,1596 says,8,kingjohn,1596 'Tis,8,kingjohn,1596 ground,8,kingjohn,1596 pleased,8,kingjohn,1596 thousand,8,kingjohn,1596 holds,8,kingjohn,1596 home,8,kingjohn,1596 swear,8,kingjohn,1596 purpose,8,kingjohn,1596 pope,8,kingjohn,1596 mad,8,kingjohn,1596 Constance,8,kingjohn,1596 live,8,kingjohn,1596 respect,8,kingjohn,1596 And,264,kingjohn,1596 royal,9,kingjohn,1596 haste,9,kingjohn,1596 CHATILLON,9,kingjohn,1596 came,9,kingjohn,1596 nothing,9,kingjohn,1596 sworn,9,kingjohn,1596 within,9,kingjohn,1596 born,9,kingjohn,1596 fault,9,kingjohn,1596 claim,9,kingjohn,1596 An,9,kingjohn,1596 itself,9,kingjohn,1596 proud,9,kingjohn,1596 Robert's,9,kingjohn,1596 brought,9,kingjohn,1596 course,9,kingjohn,1596 Are,9,kingjohn,1596 Against,9,kingjohn,1596 Sir,9,kingjohn,1596 Some,9,kingjohn,1596 Rome,9,kingjohn,1596 Well,9,kingjohn,1596 walls,9,kingjohn,1596 rage,9,kingjohn,1596 Till,9,kingjohn,1596 Blanch,9,kingjohn,1596 rich,9,kingjohn,1596 safety,9,kingjohn,1596 hour,9,kingjohn,1596 comfort,9,kingjohn,1596 tale,9,kingjohn,1596 law,9,kingjohn,1596 Lewis,9,kingjohn,1596 seek,9,kingjohn,1596 whom,9,kingjohn,1596 thus,9,kingjohn,1596 return,9,kingjohn,1596 poor,9,kingjohn,1596 ear,9,kingjohn,1596 Before,9,kingjohn,1596 Thy,9,kingjohn,1596 die,9,kingjohn,1596 Nay,10,kingjohn,1596 sad,10,kingjohn,1596 about,10,kingjohn,1596 friend,10,kingjohn,1596 sick,10,kingjohn,1596 Arthur's,10,kingjohn,1596 fears,10,kingjohn,1596 earth,10,kingjohn,1596 Yet,10,kingjohn,1596 bosom,10,kingjohn,1596 new,10,kingjohn,1596 HENRY,10,kingjohn,1596 powers,10,kingjohn,1596 ere,10,kingjohn,1596 yours,10,kingjohn,1596 Richard,10,kingjohn,1596 many,10,kingjohn,1596 nor,10,kingjohn,1596 myself,10,kingjohn,1596 didst,10,kingjohn,1596 father's,10,kingjohn,1596 heard,10,kingjohn,1596 way,10,kingjohn,1596 own,10,kingjohn,1596 work,10,kingjohn,1596 word,10,kingjohn,1596 PRINCE,10,kingjohn,1596 alone,10,kingjohn,1596 mother's,10,kingjohn,1596 makes,10,kingjohn,1596 liege,10,kingjohn,1596 lion,10,kingjohn,1596 two,10,kingjohn,1596 Exit,10,kingjohn,1596 himself,10,kingjohn,1596 o'er,11,kingjohn,1596 lies,11,kingjohn,1596 iron,11,kingjohn,1596 friends,11,kingjohn,1596 Whose,11,kingjohn,1596 some,11,kingjohn,1596 There,11,kingjohn,1596 side,11,kingjohn,1596 cardinal,11,kingjohn,1596 Good,11,kingjohn,1596 gone,11,kingjohn,1596 been,11,kingjohn,1596 thyself,11,kingjohn,1596 noble,11,kingjohn,1596 devil,11,kingjohn,1596 half,11,kingjohn,1596 form,11,kingjohn,1596 lords,11,kingjohn,1596 none,11,kingjohn,1596 mouth,11,kingjohn,1596 gates,11,kingjohn,1596 need,11,kingjohn,1596 get,11,kingjohn,1596 break,11,kingjohn,1596 Citizen,11,kingjohn,1596 fall,11,kingjohn,1596 till,11,kingjohn,1596 back,11,kingjohn,1596 being,11,kingjohn,1596 without,11,kingjohn,1596 crown,11,kingjohn,1596 words,12,kingjohn,1596 sin,12,kingjohn,1596 Out,12,kingjohn,1596 fear,12,kingjohn,1596 best,12,kingjohn,1596 grief,12,kingjohn,1596 hot,12,kingjohn,1596 field,12,kingjohn,1596 Lady,12,kingjohn,1596 Have,12,kingjohn,1596 Lord,12,kingjohn,1596 Doth,12,kingjohn,1596 still,12,kingjohn,1596 Robert,12,kingjohn,1596 sweet,12,kingjohn,1596 leave,12,kingjohn,1596 Faulconbridge,12,kingjohn,1596 might,12,kingjohn,1596 lady,12,kingjohn,1596 truth,13,kingjohn,1596 Come,13,kingjohn,1596 town,13,kingjohn,1596 both,13,kingjohn,1596 Do,13,kingjohn,1596 put,13,kingjohn,1596 curse,13,kingjohn,1596 most,13,kingjohn,1596 ill,13,kingjohn,1596 prince,13,kingjohn,1596 forth,13,kingjohn,1596 could,13,kingjohn,1596 old,13,kingjohn,1596 first,13,kingjohn,1596 Messenger,13,kingjohn,1596 Philip,13,kingjohn,1596 shalt,13,kingjohn,1596 spirit,13,kingjohn,1596 other,13,kingjohn,1596 answer,14,kingjohn,1596 brother,14,kingjohn,1596 better,14,kingjohn,1596 honour,14,kingjohn,1596 His,14,kingjohn,1596 Be,14,kingjohn,1596 part,14,kingjohn,1596 foot,14,kingjohn,1596 where,14,kingjohn,1596 gentle,14,kingjohn,1596 very,14,kingjohn,1596 same,14,kingjohn,1596 who,14,kingjohn,1596 find,14,kingjohn,1596 strong,14,kingjohn,1596 BLANCH,14,kingjohn,1596 cannot,14,kingjohn,1596 power,14,kingjohn,1596 BIGOT,15,kingjohn,1596 tell,15,kingjohn,1596 done,15,kingjohn,1596 keep,15,kingjohn,1596 First,15,kingjohn,1596 Than,15,kingjohn,1596 fire,15,kingjohn,1596 Shall,15,kingjohn,1596 lay,15,kingjohn,1596 English,15,kingjohn,1596 Where,15,kingjohn,1596 head,16,kingjohn,1596 she,16,kingjohn,1596 set,16,kingjohn,1596 No,16,kingjohn,1596 bear,16,kingjohn,1596 Angiers,16,kingjohn,1596 any,16,kingjohn,1596 hast,16,kingjohn,1596 into,16,kingjohn,1596 ACT,16,kingjohn,1596 From,16,kingjohn,1596 stand,16,kingjohn,1596 face,16,kingjohn,1596 news,16,kingjohn,1596 even,16,kingjohn,1596 holy,16,kingjohn,1596 Why,17,kingjohn,1596 against,17,kingjohn,1596 Our,17,kingjohn,1596 look,17,kingjohn,1596 You,17,kingjohn,1596 How,17,kingjohn,1596 young,17,kingjohn,1596 off,17,kingjohn,1596 heart,17,kingjohn,1596 Even,17,kingjohn,1596 man,17,kingjohn,1596 SCENE,17,kingjohn,1596 ',18,kingjohn,1596 French,18,kingjohn,1596 name,18,kingjohn,1596 dost,18,kingjohn,1596 breath,18,kingjohn,1596 dead,18,kingjohn,1596 how,18,kingjohn,1596 little,18,kingjohn,1596 King,18,kingjohn,1596 bloody,18,kingjohn,1596 hold,18,kingjohn,1596 shame,18,kingjohn,1596 of,530,kingjohn,1596 Now,19,kingjohn,1596 away,19,kingjohn,1596 kings,19,kingjohn,1596 Dauphin,19,kingjohn,1596 whose,19,kingjohn,1596 lord,19,kingjohn,1596 faith,19,kingjohn,1596 child,19,kingjohn,1596 Then,19,kingjohn,1596 Let,19,kingjohn,1596 much,20,kingjohn,1596 hear,20,kingjohn,1596 night,20,kingjohn,1596 can,20,kingjohn,1596 yet,20,kingjohn,1596 majesty,20,kingjohn,1596 one,20,kingjohn,1596 take,20,kingjohn,1596 When,20,kingjohn,1596 too,20,kingjohn,1596 soul,21,kingjohn,1596 Upon,21,kingjohn,1596 Who,21,kingjohn,1596 never,21,kingjohn,1596 We,21,kingjohn,1596 speak,21,kingjohn,1596 AUSTRIA,21,kingjohn,1596 great,21,kingjohn,1596 By,22,kingjohn,1596 It,22,kingjohn,1596 down,22,kingjohn,1596 So,22,kingjohn,1596 those,22,kingjohn,1596 know,22,kingjohn,1596 art,22,kingjohn,1596 eye,22,kingjohn,1596 thine,22,kingjohn,1596 war,22,kingjohn,1596 time,22,kingjohn,1596 men,22,kingjohn,1596 see,23,kingjohn,1596 He,23,kingjohn,1596 Your,23,kingjohn,1596 life,24,kingjohn,1596 than,24,kingjohn,1596 Exeunt,24,kingjohn,1596 tongue,24,kingjohn,1596 before,24,kingjohn,1596 think,24,kingjohn,1596 true,24,kingjohn,1596 Or,25,kingjohn,1596 when,25,kingjohn,1596 had,26,kingjohn,1596 there,26,kingjohn,1596 I'll,26,kingjohn,1596 arms,26,kingjohn,1596 QUEEN,26,kingjohn,1596 father,26,kingjohn,1596 John,27,kingjohn,1596 give,27,kingjohn,1596 fair,27,kingjohn,1596 Arthur,27,kingjohn,1596 world,28,kingjohn,1596 they,28,kingjohn,1596 boy,28,kingjohn,1596 doth,28,kingjohn,1596 ELINOR,28,kingjohn,1596 made,28,kingjohn,1596 Thou,28,kingjohn,1596 CARDINAL,28,kingjohn,1596 PANDULPH,28,kingjohn,1596 were,28,kingjohn,1596 sir,29,kingjohn,1596 PEMBROKE,29,kingjohn,1596 Which,29,kingjohn,1596 go,29,kingjohn,1596 land,29,kingjohn,1596 death,30,kingjohn,1596 such,30,kingjohn,1596 mother,30,kingjohn,1596 eyes,30,kingjohn,1596 mine,31,kingjohn,1596 come,31,kingjohn,1596 which,32,kingjohn,1596 Hubert,32,kingjohn,1596 again,32,kingjohn,1596 ARTHUR,32,kingjohn,1596 may,32,kingjohn,1596 Of,33,kingjohn,1596 Is,33,kingjohn,1596 right,33,kingjohn,1596 If,34,kingjohn,1596 good,34,kingjohn,1596 LEWIS,35,kingjohn,1596 As,35,kingjohn,1596 In,35,kingjohn,1596 here,36,kingjohn,1596 must,36,kingjohn,1596 like,36,kingjohn,1596 us,36,kingjohn,1596 should,36,kingjohn,1596 This,36,kingjohn,1596 A,37,kingjohn,1596 say,37,kingjohn,1596 them,37,kingjohn,1596 let,37,kingjohn,1596 did,37,kingjohn,1596 peace,38,kingjohn,1596 am,38,kingjohn,1596 an,38,kingjohn,1596 or,38,kingjohn,1596 With,39,kingjohn,1596 love,39,kingjohn,1596 CONSTANCE,40,kingjohn,1596 would,40,kingjohn,1596 son,41,kingjohn,1596 out,41,kingjohn,1596 upon,42,kingjohn,1596 My,42,kingjohn,1596 more,42,kingjohn,1596 Enter,43,kingjohn,1596 England,44,kingjohn,1596 blood,45,kingjohn,1596 if,45,kingjohn,1596 are,45,kingjohn,1596 day,45,kingjohn,1596 SALISBURY,45,kingjohn,1596 then,46,kingjohn,1596 For,46,kingjohn,1596 make,46,kingjohn,1596 What,46,kingjohn,1596 a,302,kingjohn,1596 heaven,47,kingjohn,1596 well,47,kingjohn,1596 what,47,kingjohn,1596 king,48,kingjohn,1596 her,49,kingjohn,1596 PHILIP,49,kingjohn,1596 now,49,kingjohn,1596 these,50,kingjohn,1596 up,51,kingjohn,1596 was,51,kingjohn,1596 no,52,kingjohn,1596 at,53,kingjohn,1596 hand,57,kingjohn,1596 their,58,kingjohn,1596 France,60,kingjohn,1596 hath,60,kingjohn,1596 HUBERT,63,kingjohn,1596 But,64,kingjohn,1596 from,68,kingjohn,1596 O,70,kingjohn,1596 thee,78,kingjohn,1596 by,78,kingjohn,1596 we,85,kingjohn,1596 do,87,kingjohn,1596 all,87,kingjohn,1596 have,87,kingjohn,1596 but,88,kingjohn,1596 he,89,kingjohn,1596 him,90,kingjohn,1596 on,93,kingjohn,1596 as,96,kingjohn,1596 shall,99,kingjohn,1596 thy,100,kingjohn,1596 That,102,kingjohn,1596 our,103,kingjohn,1596 the,616,kingjohn,1596 will,106,kingjohn,1596 BASTARD,107,kingjohn,1596 for,108,kingjohn,1596 so,109,kingjohn,1596 The,115,kingjohn,1596 To,120,kingjohn,1596 JOHN,124,kingjohn,1596 it,143,kingjohn,1596 I,399,kingjohn,1596 to,399,kingjohn,1596 thou,148,kingjohn,1596 his,149,kingjohn,1596 your,155,kingjohn,1596 be,158,kingjohn,1596 with,166,kingjohn,1596 me,167,kingjohn,1596 is,169,kingjohn,1596 KING,176,kingjohn,1596 and,437,kingjohn,1596 not,183,kingjohn,1596 that,205,kingjohn,1596 you,208,kingjohn,1596 my,239,kingjohn,1596 this,240,kingjohn,1596 in,245,kingjohn,1596 brave,1,kinglear,1603 intermission,1,kinglear,1603 attended,1,kinglear,1603 holding,1,kinglear,1603 profession,1,kinglear,1603 indignation,1,kinglear,1603 tadpole,1,kinglear,1603 answered,1,kinglear,1603 Tremble,1,kinglear,1603 You're,1,kinglear,1603 degenerate,1,kinglear,1603 event,1,kinglear,1603 advanced,1,kinglear,1603 meiny,1,kinglear,1603 cage,1,kinglear,1603 generation,1,kinglear,1603 regard,1,kinglear,1603 authorities,1,kinglear,1603 answerer,1,kinglear,1603 asses,1,kinglear,1603 sumpter,1,kinglear,1603 instruments,1,kinglear,1603 adultress,1,kinglear,1603 tomb,1,kinglear,1603 moral,1,kinglear,1603 horns,1,kinglear,1603 gauntlet,1,kinglear,1603 ignorance,1,kinglear,1603 name's,1,kinglear,1603 father',1,kinglear,1603 transform,1,kinglear,1603 advised,1,kinglear,1603 times,1,kinglear,1603 S,1,kinglear,1603 smiled,1,kinglear,1603 grey,1,kinglear,1603 Prove,1,kinglear,1603 happier,1,kinglear,1603 lamentable,1,kinglear,1603 injunction,1,kinglear,1603 c,1,kinglear,1603 o,1,kinglear,1603 mistaking,1,kinglear,1603 smiles,1,kinglear,1603 Yours,1,kinglear,1603 worst',1,kinglear,1603 red,1,kinglear,1603 Scythian,1,kinglear,1603 Few,1,kinglear,1603 Laying,1,kinglear,1603 advice,1,kinglear,1603 groom,1,kinglear,1603 unfitness,1,kinglear,1603 invades,1,kinglear,1603 suspend,1,kinglear,1603 sizes,1,kinglear,1603 Whoop,1,kinglear,1603 consumption,1,kinglear,1603 halloo,1,kinglear,1603 infected,1,kinglear,1603 afar,1,kinglear,1603 corky,1,kinglear,1603 Loved,1,kinglear,1603 Duchess,1,kinglear,1603 beadle,1,kinglear,1603 motion,1,kinglear,1603 bespoke,1,kinglear,1603 reciprocal,1,kinglear,1603 copulation,1,kinglear,1603 Inform'd,1,kinglear,1603 heir,1,kinglear,1603 double,1,kinglear,1603 bereaved,1,kinglear,1603 necessities,1,kinglear,1603 tremble,1,kinglear,1603 contradict,1,kinglear,1603 barber,1,kinglear,1603 treasury,1,kinglear,1603 disquietly,1,kinglear,1603 bleed'st,1,kinglear,1603 burn'd,1,kinglear,1603 discord,1,kinglear,1603 generous,1,kinglear,1603 Alas,1,kinglear,1603 instructs,1,kinglear,1603 tyrant's,1,kinglear,1603 shadowy,1,kinglear,1603 conductor,1,kinglear,1603 commodities,1,kinglear,1603 leavetaking,1,kinglear,1603 Unfriended,1,kinglear,1603 follies,1,kinglear,1603 entire,1,kinglear,1603 advantage,1,kinglear,1603 brows,1,kinglear,1603 Hearty,1,kinglear,1603 Sleepest,1,kinglear,1603 brown,1,kinglear,1603 nursing,1,kinglear,1603 Display'd,1,kinglear,1603 riddle,1,kinglear,1603 hasty,1,kinglear,1603 Villain,1,kinglear,1603 Messengers,1,kinglear,1603 depraved,1,kinglear,1603 thankfully,1,kinglear,1603 alight,1,kinglear,1603 noiseless,1,kinglear,1603 breathless,1,kinglear,1603 element,1,kinglear,1603 rot,1,kinglear,1603 wren,1,kinglear,1603 o'ertake,1,kinglear,1603 resign,1,kinglear,1603 rob,1,kinglear,1603 rod,1,kinglear,1603 offender,1,kinglear,1603 mend,1,kinglear,1603 stopp'd,1,kinglear,1603 Wilt,1,kinglear,1603 lowness,1,kinglear,1603 chiding,1,kinglear,1603 Beat,1,kinglear,1603 uncovered,1,kinglear,1603 Women,1,kinglear,1603 discernings,1,kinglear,1603 simples,1,kinglear,1603 Interest,1,kinglear,1603 boys,1,kinglear,1603 Strives,1,kinglear,1603 painter,1,kinglear,1603 jot,1,kinglear,1603 held,1,kinglear,1603 mell,1,kinglear,1603 foster,1,kinglear,1603 fangs,1,kinglear,1603 enormous,1,kinglear,1603 appertains,1,kinglear,1603 helps,1,kinglear,1603 reserved,1,kinglear,1603 cords,1,kinglear,1603 whereupon,1,kinglear,1603 clears,1,kinglear,1603 moiety,1,kinglear,1603 'ay',1,kinglear,1603 steeples,1,kinglear,1603 single,1,kinglear,1603 mutations,1,kinglear,1603 freer,1,kinglear,1603 frowning,1,kinglear,1603 duteous,1,kinglear,1603 Stretch,1,kinglear,1603 Beweep,1,kinglear,1603 writes,1,kinglear,1603 dirt,1,kinglear,1603 vigilance,1,kinglear,1603 wrap,1,kinglear,1603 joint,1,kinglear,1603 Thou'dst,1,kinglear,1603 proceedings,1,kinglear,1603 dropp'd,1,kinglear,1603 mere,1,kinglear,1603 halters,1,kinglear,1603 put's,1,kinglear,1603 mean'st,1,kinglear,1603 repents,1,kinglear,1603 o'erheard,1,kinglear,1603 Cried,1,kinglear,1603 ruffian,1,kinglear,1603 grim,1,kinglear,1603 super,1,kinglear,1603 cohorts,1,kinglear,1603 comest,1,kinglear,1603 learn'd,1,kinglear,1603 rip,1,kinglear,1603 rid,1,kinglear,1603 fought,1,kinglear,1603 wield,1,kinglear,1603 flow,1,kinglear,1603 its,1,kinglear,1603 lick,1,kinglear,1603 frontlet,1,kinglear,1603 raggedness,1,kinglear,1603 shelter,1,kinglear,1603 derive,1,kinglear,1603 throat,1,kinglear,1603 withal,1,kinglear,1603 stumbled,1,kinglear,1603 admirable,1,kinglear,1603 pined,1,kinglear,1603 thirty,1,kinglear,1603 Dispose,1,kinglear,1603 cheap,1,kinglear,1603 ravish,1,kinglear,1603 press,1,kinglear,1603 blinding,1,kinglear,1603 malicious,1,kinglear,1603 rail'd,1,kinglear,1603 odds,1,kinglear,1603 absolute,1,kinglear,1603 damned,1,kinglear,1603 Post,1,kinglear,1603 bosom'd,1,kinglear,1603 pick,1,kinglear,1603 pinch,1,kinglear,1603 fretful,1,kinglear,1603 kinder,1,kinglear,1603 Began,1,kinglear,1603 Pour,1,kinglear,1603 Quite,1,kinglear,1603 accuser's,1,kinglear,1603 invested,1,kinglear,1603 surgeons,1,kinglear,1603 joys,1,kinglear,1603 Whom,1,kinglear,1603 Were't,1,kinglear,1603 cheques,1,kinglear,1603 Stew'd,1,kinglear,1603 neighbour'd,1,kinglear,1603 tyrannous,1,kinglear,1603 unconstant,1,kinglear,1603 curious,1,kinglear,1603 PERSONAE,1,kinglear,1603 wither,1,kinglear,1603 carp,1,kinglear,1603 parings,1,kinglear,1603 Light,1,kinglear,1603 radiance,1,kinglear,1603 boy's,1,kinglear,1603 demand,1,kinglear,1603 clamorous,1,kinglear,1603 spare,1,kinglear,1603 germens,1,kinglear,1603 docks,1,kinglear,1603 spark,1,kinglear,1603 vary,1,kinglear,1603 lightning,1,kinglear,1603 Horrible,1,kinglear,1603 mingled,1,kinglear,1603 soothe,1,kinglear,1603 soliciting,1,kinglear,1603 battles,1,kinglear,1603 oldest,1,kinglear,1603 utter'd,1,kinglear,1603 walking,1,kinglear,1603 autumn's,1,kinglear,1603 bridegroom,1,kinglear,1603 mistook,1,kinglear,1603 quench'd,1,kinglear,1603 swimming,1,kinglear,1603 spared,1,kinglear,1603 breach,1,kinglear,1603 lustre,1,kinglear,1603 pursue,1,kinglear,1603 ise,1,kinglear,1603 subscription,1,kinglear,1603 stoops,1,kinglear,1603 beneath,1,kinglear,1603 Over,1,kinglear,1603 advantages,1,kinglear,1603 delivered,1,kinglear,1603 roguish,1,kinglear,1603 childed,1,kinglear,1603 soon,1,kinglear,1603 practises,1,kinglear,1603 disdain,1,kinglear,1603 graced,1,kinglear,1603 surfeit,1,kinglear,1603 wanderers,1,kinglear,1603 giant,1,kinglear,1603 birth,1,kinglear,1603 chud,1,kinglear,1603 lacks,1,kinglear,1603 amazed,1,kinglear,1603 brothel,1,kinglear,1603 spied,1,kinglear,1603 feather,1,kinglear,1603 jest,1,kinglear,1603 stock,1,kinglear,1603 restoring,1,kinglear,1603 enemies',1,kinglear,1603 working,1,kinglear,1603 ruin'd,1,kinglear,1603 reconciles,1,kinglear,1603 sap,1,kinglear,1603 relieve,1,kinglear,1603 sat,1,kinglear,1603 skirted,1,kinglear,1603 toss,1,kinglear,1603 outside,1,kinglear,1603 flaw'd,1,kinglear,1603 assembly,1,kinglear,1603 array'd,1,kinglear,1603 line,1,kinglear,1603 Jove,1,kinglear,1603 bluntly,1,kinglear,1603 Pins,1,kinglear,1603 call'st,1,kinglear,1603 worthied,1,kinglear,1603 pilgrimage,1,kinglear,1603 choleric,1,kinglear,1603 machination,1,kinglear,1603 losest,1,kinglear,1603 usurps,1,kinglear,1603 Combine,1,kinglear,1603 crying,1,kinglear,1603 endow'd,1,kinglear,1603 dandy,1,kinglear,1603 remotion,1,kinglear,1603 gracious,1,kinglear,1603 mind's,1,kinglear,1603 verbal,1,kinglear,1603 boarish,1,kinglear,1603 lily,1,kinglear,1603 beacon,1,kinglear,1603 thou'rt,1,kinglear,1603 Flew,1,kinglear,1603 posts,1,kinglear,1603 sectary,1,kinglear,1603 additions,1,kinglear,1603 Woe,1,kinglear,1603 dejected,1,kinglear,1603 Ourself,1,kinglear,1603 sparks,1,kinglear,1603 salutations,1,kinglear,1603 Fled,1,kinglear,1603 rosemary,1,kinglear,1603 worthier,1,kinglear,1603 sloth,1,kinglear,1603 'Enough,1,kinglear,1603 shanks,1,kinglear,1603 wants,1,kinglear,1603 Cost,1,kinglear,1603 trotting,1,kinglear,1603 voices,1,kinglear,1603 policy,1,kinglear,1603 town,1,kinglear,1603 babes,1,kinglear,1603 golden,1,kinglear,1603 Renege,1,kinglear,1603 hanging,1,kinglear,1603 officers,1,kinglear,1603 Yield,1,kinglear,1603 Hecate,1,kinglear,1603 finding,1,kinglear,1603 likeness,1,kinglear,1603 desperately,1,kinglear,1603 century,1,kinglear,1603 wantons,1,kinglear,1603 Importune,1,kinglear,1603 sit'st,1,kinglear,1603 quagmire,1,kinglear,1603 deprive,1,kinglear,1603 suum,1,kinglear,1603 rageth,1,kinglear,1603 Avaunt,1,kinglear,1603 benefits,1,kinglear,1603 Detains,1,kinglear,1603 abode,1,kinglear,1603 covering,1,kinglear,1603 visit,1,kinglear,1603 lesser,1,kinglear,1603 amity,1,kinglear,1603 wail,1,kinglear,1603 Sought,1,kinglear,1603 Humanity,1,kinglear,1603 ingenious,1,kinglear,1603 overture,1,kinglear,1603 simpering,1,kinglear,1603 kin,1,kinglear,1603 Cupid,1,kinglear,1603 moonshine,1,kinglear,1603 perjured,1,kinglear,1603 Monster,1,kinglear,1603 worsted,1,kinglear,1603 Gentle,1,kinglear,1603 cities,1,kinglear,1603 antipathy,1,kinglear,1603 Transport,1,kinglear,1603 towns,1,kinglear,1603 view,1,kinglear,1603 discovery,1,kinglear,1603 Fellows,1,kinglear,1603 pillow,1,kinglear,1603 seeking,1,kinglear,1603 execution,1,kinglear,1603 shamed,1,kinglear,1603 hereafter,1,kinglear,1603 rarest,1,kinglear,1603 slightly,1,kinglear,1603 summon'd,1,kinglear,1603 suns,1,kinglear,1603 flashes,1,kinglear,1603 I'm,1,kinglear,1603 Off,1,kinglear,1603 weighed,1,kinglear,1603 monkeys,1,kinglear,1603 sung,1,kinglear,1603 I'd,1,kinglear,1603 boat,1,kinglear,1603 Jesters,1,kinglear,1603 afflict,1,kinglear,1603 perdy,1,kinglear,1603 history,1,kinglear,1603 perdu,1,kinglear,1603 concealment,1,kinglear,1603 deeper,1,kinglear,1603 sin,1,kinglear,1603 stranger'd,1,kinglear,1603 conceive,1,kinglear,1603 conception,1,kinglear,1603 Phoebus',1,kinglear,1603 orbs,1,kinglear,1603 rememberest,1,kinglear,1603 impossible,1,kinglear,1603 violently,1,kinglear,1603 defuse,1,kinglear,1603 unsightly,1,kinglear,1603 mowing,1,kinglear,1603 usurp'd,1,kinglear,1603 enkindle,1,kinglear,1603 noises,1,kinglear,1603 sustaining,1,kinglear,1603 invention,1,kinglear,1603 illustrious,1,kinglear,1603 merry,1,kinglear,1603 virtuous,1,kinglear,1603 shrill,1,kinglear,1603 Catch,1,kinglear,1603 reproving,1,kinglear,1603 deceived,1,kinglear,1603 flying,1,kinglear,1603 Deserved,1,kinglear,1603 throngs,1,kinglear,1603 Unburthen'd,1,kinglear,1603 slaughter,1,kinglear,1603 society,1,kinglear,1603 spherical,1,kinglear,1603 throne,1,kinglear,1603 suit,1,kinglear,1603 laying,1,kinglear,1603 geese,1,kinglear,1603 Mean,1,kinglear,1603 scorn,1,kinglear,1603 score,1,kinglear,1603 peril,1,kinglear,1603 love's,1,kinglear,1603 halter,1,kinglear,1603 stealing,1,kinglear,1603 birds,1,kinglear,1603 Hysterica,1,kinglear,1603 retinue,1,kinglear,1603 convenience,1,kinglear,1603 cradle,1,kinglear,1603 earnestly,1,kinglear,1603 thunders,1,kinglear,1603 rubb'd,1,kinglear,1603 knives,1,kinglear,1603 sot,1,kinglear,1603 engraffed,1,kinglear,1603 indiscretion,1,kinglear,1603 sol,1,kinglear,1603 channels,1,kinglear,1603 summons,1,kinglear,1603 steps,1,kinglear,1603 sop,1,kinglear,1603 abuses,1,kinglear,1603 skill,1,kinglear,1603 unpossessing,1,kinglear,1603 lives',1,kinglear,1603 constrains,1,kinglear,1603 mantle,1,kinglear,1603 Instantly,1,kinglear,1603 Exasperates,1,kinglear,1603 deformity,1,kinglear,1603 Conferring,1,kinglear,1603 'I,1,kinglear,1603 kindle,1,kinglear,1603 woundings,1,kinglear,1603 interlude,1,kinglear,1603 stern,1,kinglear,1603 Points,1,kinglear,1603 kindly,1,kinglear,1603 equity,1,kinglear,1603 second,1,kinglear,1603 permit,1,kinglear,1603 deeply,1,kinglear,1603 firmly,1,kinglear,1603 wages,1,kinglear,1603 hefted,1,kinglear,1603 pitiful,1,kinglear,1603 sky,1,kinglear,1603 gather,1,kinglear,1603 groans,1,kinglear,1603 knapped,1,kinglear,1603 camps,1,kinglear,1603 sets,1,kinglear,1603 childhood,1,kinglear,1603 doubt,1,kinglear,1603 unaccommodated,1,kinglear,1603 either's,1,kinglear,1603 'Down,1,kinglear,1603 dally,1,kinglear,1603 stuff,1,kinglear,1603 reveal'd,1,kinglear,1603 Spake,1,kinglear,1603 executing,1,kinglear,1603 thin,1,kinglear,1603 dearth,1,kinglear,1603 Burning,1,kinglear,1603 play'd,1,kinglear,1603 cruels,1,kinglear,1603 Abhorred,1,kinglear,1603 scope,1,kinglear,1603 pieced,1,kinglear,1603 buoy'd,1,kinglear,1603 becomes,1,kinglear,1603 cheese,1,kinglear,1603 lightnings,1,kinglear,1603 foulness,1,kinglear,1603 affect,1,kinglear,1603 suffered,1,kinglear,1603 daughter's,1,kinglear,1603 suck'd,1,kinglear,1603 poverty,1,kinglear,1603 Authority,1,kinglear,1603 dissolutions,1,kinglear,1603 exhibition,1,kinglear,1603 declining,1,kinglear,1603 ourselves,1,kinglear,1603 thieves,1,kinglear,1603 puissant,1,kinglear,1603 diligent,1,kinglear,1603 taught,1,kinglear,1603 Topple,1,kinglear,1603 Albion,1,kinglear,1603 Peruse,1,kinglear,1603 Contending,1,kinglear,1603 loosen,1,kinglear,1603 broils,1,kinglear,1603 Bench,1,kinglear,1603 guide,1,kinglear,1603 Diminish'd,1,kinglear,1603 bluntness,1,kinglear,1603 breeches,1,kinglear,1603 wear'st,1,kinglear,1603 redeem,1,kinglear,1603 Learn,1,kinglear,1603 fortunately,1,kinglear,1603 debosh'd,1,kinglear,1603 briefness,1,kinglear,1603 Wast,1,kinglear,1603 conceit,1,kinglear,1603 opportunities,1,kinglear,1603 Commit,1,kinglear,1603 Rowland,1,kinglear,1603 wakest,1,kinglear,1603 climbing,1,kinglear,1603 puppet's,1,kinglear,1603 crime,1,kinglear,1603 revives,1,kinglear,1603 courtier,1,kinglear,1603 palaces,1,kinglear,1603 twelve,1,kinglear,1603 guarded,1,kinglear,1603 foppish,1,kinglear,1603 wawl,1,kinglear,1603 offensive,1,kinglear,1603 choughs,1,kinglear,1603 habit,1,kinglear,1603 figure,1,kinglear,1603 bliss,1,kinglear,1603 dieted,1,kinglear,1603 Turk,1,kinglear,1603 threading,1,kinglear,1603 fastened,1,kinglear,1603 Tigers,1,kinglear,1603 toucheth,1,kinglear,1603 beggarly,1,kinglear,1603 Wise,1,kinglear,1603 detain,1,kinglear,1603 showest,1,kinglear,1603 passio,1,kinglear,1603 abhorr'd,1,kinglear,1603 encounter,1,kinglear,1603 seeks,1,kinglear,1603 confer,1,kinglear,1603 dearly,1,kinglear,1603 stung,1,kinglear,1603 unable,1,kinglear,1603 flatterer,1,kinglear,1603 master',1,kinglear,1603 worthy,1,kinglear,1603 jakes,1,kinglear,1603 bursts,1,kinglear,1603 flattered,1,kinglear,1603 thence,1,kinglear,1603 memories,1,kinglear,1603 Whilst,1,kinglear,1603 sue,1,kinglear,1603 sub,1,kinglear,1603 obeyed,1,kinglear,1603 biding,1,kinglear,1603 element's,1,kinglear,1603 Report,1,kinglear,1603 govern'd,1,kinglear,1603 reprovable,1,kinglear,1603 mutinies,1,kinglear,1603 elder,1,kinglear,1603 grumble,1,kinglear,1603 vanity,1,kinglear,1603 Wipe,1,kinglear,1603 companion,1,kinglear,1603 accent,1,kinglear,1603 civet,1,kinglear,1603 foins,1,kinglear,1603 rein,1,kinglear,1603 buttered,1,kinglear,1603 spaniel,1,kinglear,1603 promise,1,kinglear,1603 Sepulchring,1,kinglear,1603 descent,1,kinglear,1603 punish,1,kinglear,1603 bows,1,kinglear,1603 Owes,1,kinglear,1603 Spare,1,kinglear,1603 plainly,1,kinglear,1603 Unnatural,1,kinglear,1603 pinfold,1,kinglear,1603 claim,1,kinglear,1603 relish,1,kinglear,1603 descend,1,kinglear,1603 saucy,1,kinglear,1603 Repose,1,kinglear,1603 swore,1,kinglear,1603 impetuous,1,kinglear,1603 malice,1,kinglear,1603 Search,1,kinglear,1603 comrade,1,kinglear,1603 upon's,1,kinglear,1603 loathly,1,kinglear,1603 lances,1,kinglear,1603 suffering,1,kinglear,1603 Turlygod,1,kinglear,1603 lanced,1,kinglear,1603 Whereto,1,kinglear,1603 conceals,1,kinglear,1603 wine,1,kinglear,1603 rude,1,kinglear,1603 wing,1,kinglear,1603 patrimony,1,kinglear,1603 wishes,1,kinglear,1603 Aloof,1,kinglear,1603 intrinse,1,kinglear,1603 porter,1,kinglear,1603 boil,1,kinglear,1603 Fly,1,kinglear,1603 soldier,1,kinglear,1603 ward,1,kinglear,1603 tax,1,kinglear,1603 ungovern'd,1,kinglear,1603 whelk'd,1,kinglear,1603 brewers,1,kinglear,1603 wins,1,kinglear,1603 oily,1,kinglear,1603 comedy,1,kinglear,1603 caves,1,kinglear,1603 Along,1,kinglear,1603 Blow,1,kinglear,1603 Vaunt,1,kinglear,1603 Safer,1,kinglear,1603 length,1,kinglear,1603 rent,1,kinglear,1603 knees,1,kinglear,1603 battle's,1,kinglear,1603 Please,1,kinglear,1603 outlaw'd,1,kinglear,1603 entertained,1,kinglear,1603 wenches',1,kinglear,1603 wipe,1,kinglear,1603 abjure,1,kinglear,1603 heaved,1,kinglear,1603 unbutton,1,kinglear,1603 summit,1,kinglear,1603 incestuous,1,kinglear,1603 dies,1,kinglear,1603 bolt,1,kinglear,1603 ponder,1,kinglear,1603 anon,1,kinglear,1603 servile,1,kinglear,1603 maidenliest,1,kinglear,1603 near's,1,kinglear,1603 Expose,1,kinglear,1603 'GONERIL,1,kinglear,1603 custom,1,kinglear,1603 accuse,1,kinglear,1603 succeed,1,kinglear,1603 Putting,1,kinglear,1603 sooth,1,kinglear,1603 property,1,kinglear,1603 parricides,1,kinglear,1603 world's,1,kinglear,1603 Angering,1,kinglear,1603 hatch,1,kinglear,1603 bidding,1,kinglear,1603 malady,1,kinglear,1603 ungracious,1,kinglear,1603 dismantle,1,kinglear,1603 wars,1,kinglear,1603 dice,1,kinglear,1603 tailors',1,kinglear,1603 advancement,1,kinglear,1603 throughly,1,kinglear,1603 meat,1,kinglear,1603 Burn,1,kinglear,1603 distress,1,kinglear,1603 join'd,1,kinglear,1603 flowing,1,kinglear,1603 steep,1,kinglear,1603 domestic,1,kinglear,1603 crazed,1,kinglear,1603 roofs,1,kinglear,1603 boon,1,kinglear,1603 upbraids,1,kinglear,1603 framed,1,kinglear,1603 Repair,1,kinglear,1603 colour,1,kinglear,1603 infirmity,1,kinglear,1603 Love's,1,kinglear,1603 praises,1,kinglear,1603 tens,1,kinglear,1603 menaces,1,kinglear,1603 aspect,1,kinglear,1603 jarring,1,kinglear,1603 big,1,kinglear,1603 smokes,1,kinglear,1603 shorter,1,kinglear,1603 bills,1,kinglear,1603 zed,1,kinglear,1603 mistaken,1,kinglear,1603 Crown'd,1,kinglear,1603 bastardy,1,kinglear,1603 bastards,1,kinglear,1603 slaves,1,kinglear,1603 morning,1,kinglear,1603 invest,1,kinglear,1603 forks,1,kinglear,1603 Takes,1,kinglear,1603 vengeances,1,kinglear,1603 mortality,1,kinglear,1603 Kent's,1,kinglear,1603 Leaving,1,kinglear,1603 enjoy'd,1,kinglear,1603 besort,1,kinglear,1603 melancholy,1,kinglear,1603 discreet,1,kinglear,1603 hap,1,kinglear,1603 visible,1,kinglear,1603 bog,1,kinglear,1603 Drew,1,kinglear,1603 snuff,1,kinglear,1603 adjoining,1,kinglear,1603 carbuncle,1,kinglear,1603 sweeten,1,kinglear,1603 scared,1,kinglear,1603 rivers,1,kinglear,1603 Belike,1,kinglear,1603 paramoured,1,kinglear,1603 maledictions,1,kinglear,1603 serving,1,kinglear,1603 hay,1,kinglear,1603 distinguish,1,kinglear,1603 compeers,1,kinglear,1603 sigh,1,kinglear,1603 Sick,1,kinglear,1603 kneeling,1,kinglear,1603 flattery,1,kinglear,1603 immediacy,1,kinglear,1603 pat,1,kinglear,1603 messes,1,kinglear,1603 spoil,1,kinglear,1603 infection,1,kinglear,1603 stubborn,1,kinglear,1603 Oppressed,1,kinglear,1603 depend,1,kinglear,1603 hang'd,1,kinglear,1603 wronged,1,kinglear,1603 meads,1,kinglear,1603 Looks,1,kinglear,1603 Hound,1,kinglear,1603 amplify,1,kinglear,1603 lugg'd,1,kinglear,1603 Stocks,1,kinglear,1603 loath,1,kinglear,1603 Croak,1,kinglear,1603 reason'd,1,kinglear,1603 volk,1,kinglear,1603 deeds,1,kinglear,1603 sequent,1,kinglear,1603 Shunn'd,1,kinglear,1603 wash'd,1,kinglear,1603 hey,1,kinglear,1603 lance,1,kinglear,1603 murderers,1,kinglear,1603 La,1,kinglear,1603 Having,1,kinglear,1603 teem,1,kinglear,1603 bolds,1,kinglear,1603 Nature,1,kinglear,1603 goodliest,1,kinglear,1603 bay,1,kinglear,1603 Escaped,1,kinglear,1603 scurvy,1,kinglear,1603 perfume,1,kinglear,1603 razed,1,kinglear,1603 lands,1,kinglear,1603 flaws,1,kinglear,1603 livered,1,kinglear,1603 Centaurs,1,kinglear,1603 pew,1,kinglear,1603 gentleness,1,kinglear,1603 musty,1,kinglear,1603 unless,1,kinglear,1603 bestirred,1,kinglear,1603 cotes,1,kinglear,1603 Says,1,kinglear,1603 Suspend,1,kinglear,1603 in't,1,kinglear,1603 dimensions,1,kinglear,1603 in's,1,kinglear,1603 kept,1,kinglear,1603 Persian,1,kinglear,1603 merited,1,kinglear,1603 pities,1,kinglear,1603 warring,1,kinglear,1603 pen,1,kinglear,1603 pitiless,1,kinglear,1603 judging,1,kinglear,1603 conflicting,1,kinglear,1603 Decline,1,kinglear,1603 force,1,kinglear,1603 'parel,1,kinglear,1603 innocent,1,kinglear,1603 Tooth,1,kinglear,1603 fitchew,1,kinglear,1603 remainder,1,kinglear,1603 miracles,1,kinglear,1603 hit,1,kinglear,1603 exact,1,kinglear,1603 buzz,1,kinglear,1603 disclaims,1,kinglear,1603 required,1,kinglear,1603 piteous,1,kinglear,1603 Ho,1,kinglear,1603 sovereignty,1,kinglear,1603 mopping,1,kinglear,1603 grime,1,kinglear,1603 unruly,1,kinglear,1603 whole,1,kinglear,1603 trowest,1,kinglear,1603 Effects,1,kinglear,1603 husbands,1,kinglear,1603 deserved,1,kinglear,1603 ease,1,kinglear,1603 digest,1,kinglear,1603 derides,1,kinglear,1603 politician,1,kinglear,1603 braggart,1,kinglear,1603 arrest,1,kinglear,1603 path,1,kinglear,1603 Stain,1,kinglear,1603 fated,1,kinglear,1603 conqueror,1,kinglear,1603 unchaste,1,kinglear,1603 added,1,kinglear,1603 stock'd,1,kinglear,1603 pinched,1,kinglear,1603 cautions,1,kinglear,1603 adder,1,kinglear,1603 troops,1,kinglear,1603 hides,1,kinglear,1603 football,1,kinglear,1603 ears,1,kinglear,1603 pit,1,kinglear,1603 hemlock,1,kinglear,1603 treachers,1,kinglear,1603 changes,1,kinglear,1603 Sunshine,1,kinglear,1603 buoy,1,kinglear,1603 Up,1,kinglear,1603 madded,1,kinglear,1603 Ursa,1,kinglear,1603 ague,1,kinglear,1603 countries,1,kinglear,1603 Mere,1,kinglear,1603 yourselves,1,kinglear,1603 nobly,1,kinglear,1603 Rising,1,kinglear,1603 adulterers,1,kinglear,1603 unfed,1,kinglear,1603 Gone,1,kinglear,1603 revenues,1,kinglear,1603 halcyon,1,kinglear,1603 corrupter,1,kinglear,1603 churches,1,kinglear,1603 Propinquity,1,kinglear,1603 became,1,kinglear,1603 corrupted,1,kinglear,1603 Dukes,1,kinglear,1603 titles,1,kinglear,1603 theft,1,kinglear,1603 offered,1,kinglear,1603 strain'd,1,kinglear,1603 priests,1,kinglear,1603 Howl,1,kinglear,1603 Plate,1,kinglear,1603 moons,1,kinglear,1603 gowns,1,kinglear,1603 angler,1,kinglear,1603 lenders',1,kinglear,1603 royalty,1,kinglear,1603 divide,1,kinglear,1603 costard,1,kinglear,1603 sits,1,kinglear,1603 apothecary,1,kinglear,1603 Marshal,1,kinglear,1603 Mend,1,kinglear,1603 busy,1,kinglear,1603 Conceive,1,kinglear,1603 stray,1,kinglear,1603 Dearer,1,kinglear,1603 Drum,1,kinglear,1603 canker,1,kinglear,1603 metal,1,kinglear,1603 preserved,1,kinglear,1603 bush,1,kinglear,1603 pandar,1,kinglear,1603 miscarry,1,kinglear,1603 cold'st,1,kinglear,1603 bury,1,kinglear,1603 burn,1,kinglear,1603 Thou'lt,1,kinglear,1603 crust,1,kinglear,1603 Beating,1,kinglear,1603 reeking,1,kinglear,1603 madman,1,kinglear,1603 gasted,1,kinglear,1603 Sa,1,kinglear,1603 meats,1,kinglear,1603 sounds,1,kinglear,1603 clearest,1,kinglear,1603 tricks,1,kinglear,1603 moreover,1,kinglear,1603 roughness,1,kinglear,1603 defects,1,kinglear,1603 dote,1,kinglear,1603 darkling,1,kinglear,1603 couch,1,kinglear,1603 Bold,1,kinglear,1603 weal,1,kinglear,1603 Confined,1,kinglear,1603 plaited,1,kinglear,1603 mistress's,1,kinglear,1603 craft,1,kinglear,1603 Child,1,kinglear,1603 Life,1,kinglear,1603 Hasten,1,kinglear,1603 remembers,1,kinglear,1603 rich'd,1,kinglear,1603 Mumbling,1,kinglear,1603 planetary,1,kinglear,1603 Pur,1,kinglear,1603 mainly,1,kinglear,1603 Bore,1,kinglear,1603 samphire,1,kinglear,1603 meanest,1,kinglear,1603 afore,1,kinglear,1603 renounce,1,kinglear,1603 Drawing,1,kinglear,1603 questrists,1,kinglear,1603 block,1,kinglear,1603 curst,1,kinglear,1603 Pre,1,kinglear,1603 Fathers,1,kinglear,1603 usurers,1,kinglear,1603 jewel,1,kinglear,1603 Prescribe,1,kinglear,1603 Didst,1,kinglear,1603 eater,1,kinglear,1603 silk,1,kinglear,1603 extreme,1,kinglear,1603 Holds,1,kinglear,1603 Strip,1,kinglear,1603 conquest,1,kinglear,1603 bur,1,kinglear,1603 verity,1,kinglear,1603 swift,1,kinglear,1603 vows,1,kinglear,1603 nettles,1,kinglear,1603 mystery,1,kinglear,1603 waterish,1,kinglear,1603 moods,1,kinglear,1603 Bringing,1,kinglear,1603 Ajax,1,kinglear,1603 amongst,1,kinglear,1603 Above,1,kinglear,1603 vassal,1,kinglear,1603 disguise,1,kinglear,1603 preserve,1,kinglear,1603 About,1,kinglear,1603 swine,1,kinglear,1603 casement,1,kinglear,1603 divine,1,kinglear,1603 pains,1,kinglear,1603 garters,1,kinglear,1603 hurricanoes,1,kinglear,1603 picture,1,kinglear,1603 Blasts,1,kinglear,1603 Whither,1,kinglear,1603 deservings,1,kinglear,1603 begs,1,kinglear,1603 vantage,1,kinglear,1603 pared,1,kinglear,1603 lately,1,kinglear,1603 exist,1,kinglear,1603 hurts,1,kinglear,1603 dolours,1,kinglear,1603 demanding,1,kinglear,1603 How's,1,kinglear,1603 convey'd,1,kinglear,1603 anointed,1,kinglear,1603 potential,1,kinglear,1603 garb,1,kinglear,1603 chafes,1,kinglear,1603 Bethink,1,kinglear,1603 tower,1,kinglear,1603 pearls,1,kinglear,1603 untender,1,kinglear,1603 jointly,1,kinglear,1603 store,1,kinglear,1603 noted,1,kinglear,1603 opposeless,1,kinglear,1603 entertain,1,kinglear,1603 ghost,1,kinglear,1603 impatience,1,kinglear,1603 God's,1,kinglear,1603 deed,1,kinglear,1603 panting,1,kinglear,1603 depositaries,1,kinglear,1603 deer,1,kinglear,1603 pleasure's,1,kinglear,1603 concealing,1,kinglear,1603 engine,1,kinglear,1603 promised,1,kinglear,1603 whereto,1,kinglear,1603 mood,1,kinglear,1603 papers,1,kinglear,1603 miles,1,kinglear,1603 Nature's,1,kinglear,1603 betray,1,kinglear,1603 confess,1,kinglear,1603 impossibilities,1,kinglear,1603 paste,1,kinglear,1603 Methought,1,kinglear,1603 cadent,1,kinglear,1603 yea,1,kinglear,1603 raise,1,kinglear,1603 Fear,1,kinglear,1603 repent,1,kinglear,1603 Here's,1,kinglear,1603 borest,1,kinglear,1603 consider,1,kinglear,1603 Create,1,kinglear,1603 cracked,1,kinglear,1603 jewels,1,kinglear,1603 prevented,1,kinglear,1603 debt,1,kinglear,1603 stool,1,kinglear,1603 Dolphin,1,kinglear,1603 fa,1,kinglear,1603 gain,1,kinglear,1603 whirlipool,1,kinglear,1603 faith'd,1,kinglear,1603 Pass,1,kinglear,1603 ago,1,kinglear,1603 Past,1,kinglear,1603 deficient,1,kinglear,1603 weakens,1,kinglear,1603 rails,1,kinglear,1603 player,1,kinglear,1603 Dismissing,1,kinglear,1603 bo,1,kinglear,1603 obligation,1,kinglear,1603 caitiff,1,kinglear,1603 monger,1,kinglear,1603 ant,1,kinglear,1603 vouchsafe,1,kinglear,1603 victory,1,kinglear,1603 radiant,1,kinglear,1603 'father',1,kinglear,1603 pluck'd,1,kinglear,1603 likely,1,kinglear,1603 vault,1,kinglear,1603 Stocking,1,kinglear,1603 liars,1,kinglear,1603 discerning,1,kinglear,1603 suggestion,1,kinglear,1603 lend,1,kinglear,1603 imperfections,1,kinglear,1603 redress,1,kinglear,1603 poise,1,kinglear,1603 boast,1,kinglear,1603 Late,1,kinglear,1603 gale,1,kinglear,1603 waist,1,kinglear,1603 sects,1,kinglear,1603 defence,1,kinglear,1603 usurer,1,kinglear,1603 handy,1,kinglear,1603 Feel,1,kinglear,1603 List,1,kinglear,1603 cocks,1,kinglear,1603 gentlewoman,1,kinglear,1603 spreads,1,kinglear,1603 ah,1,kinglear,1603 Blows,1,kinglear,1603 fourscore,1,kinglear,1603 Enforce,1,kinglear,1603 piercing,1,kinglear,1603 beast's,1,kinglear,1603 crosses,1,kinglear,1603 mills,1,kinglear,1603 dried,1,kinglear,1603 button,1,kinglear,1603 hospitable,1,kinglear,1603 oh,1,kinglear,1603 abominable,1,kinglear,1603 heretics,1,kinglear,1603 ask'd,1,kinglear,1603 cowardly,1,kinglear,1603 attending,1,kinglear,1603 bastardizing,1,kinglear,1603 fears,1,kinglear,1603 bites,1,kinglear,1603 unprized,1,kinglear,1603 plant,1,kinglear,1603 region,1,kinglear,1603 settling,1,kinglear,1603 strain,1,kinglear,1603 'casion,1,kinglear,1603 crave,1,kinglear,1603 detector,1,kinglear,1603 roused,1,kinglear,1603 Deliver'd,1,kinglear,1603 wrinkles,1,kinglear,1603 mi,1,kinglear,1603 sharper,1,kinglear,1603 Curan,1,kinglear,1603 Conspirant,1,kinglear,1603 crawl,1,kinglear,1603 catastrophe,1,kinglear,1603 Pinion,1,kinglear,1603 Gods,1,kinglear,1603 account,1,kinglear,1603 auspicious,1,kinglear,1603 bitch,1,kinglear,1603 milky,1,kinglear,1603 attendant,1,kinglear,1603 mingle,1,kinglear,1603 dog's,1,kinglear,1603 Took,1,kinglear,1603 Ready,1,kinglear,1603 pilferings,1,kinglear,1603 value,1,kinglear,1603 enmity,1,kinglear,1603 smilets,1,kinglear,1603 inn,1,kinglear,1603 scornful,1,kinglear,1603 side's,1,kinglear,1603 glance,1,kinglear,1603 offences,1,kinglear,1603 find'st,1,kinglear,1603 begg'd,1,kinglear,1603 Filial,1,kinglear,1603 pursued,1,kinglear,1603 miserable,1,kinglear,1603 challenged,1,kinglear,1603 persecutions,1,kinglear,1603 loud,1,kinglear,1603 offer'd,1,kinglear,1603 la,1,kinglear,1603 causes,1,kinglear,1603 alteration,1,kinglear,1603 ado,1,kinglear,1603 parents,1,kinglear,1603 loss,1,kinglear,1603 'bove,1,kinglear,1603 sweetness,1,kinglear,1603 beholding,1,kinglear,1603 add,1,kinglear,1603 Acquaint,1,kinglear,1603 playing,1,kinglear,1603 semblance,1,kinglear,1603 dumbness,1,kinglear,1603 Obidicut,1,kinglear,1603 frustrate,1,kinglear,1603 Lipsbury,1,kinglear,1603 lest,1,kinglear,1603 Merlin,1,kinglear,1603 Sennet,1,kinglear,1603 all's,1,kinglear,1603 bobtail,1,kinglear,1603 devil,1,kinglear,1603 continent,1,kinglear,1603 Grace,1,kinglear,1603 defy,1,kinglear,1603 necessary,1,kinglear,1603 swear'st,1,kinglear,1603 ch'ill,1,kinglear,1603 Smite,1,kinglear,1603 bootless,1,kinglear,1603 spouse,1,kinglear,1603 knee,1,kinglear,1603 scatter'd,1,kinglear,1603 expiration,1,kinglear,1603 untimely,1,kinglear,1603 journey,1,kinglear,1603 harshness,1,kinglear,1603 wagtail,1,kinglear,1603 nighted,1,kinglear,1603 acquaint,1,kinglear,1603 natures,1,kinglear,1603 pure,1,kinglear,1603 hog,1,kinglear,1603 raineth,1,kinglear,1603 Been,1,kinglear,1603 Infirmity,1,kinglear,1603 climb,1,kinglear,1603 Came,1,kinglear,1603 thrice,1,kinglear,1603 brothels,1,kinglear,1603 clipp'd,1,kinglear,1603 hark,1,kinglear,1603 Pull,1,kinglear,1603 accents,1,kinglear,1603 graves,1,kinglear,1603 chalky,1,kinglear,1603 hardly,1,kinglear,1603 Haply,1,kinglear,1603 reasons,1,kinglear,1603 Seeing,1,kinglear,1603 oppression,1,kinglear,1603 personal,1,kinglear,1603 tenderly,1,kinglear,1603 hare,1,kinglear,1603 blamed,1,kinglear,1603 outward,1,kinglear,1603 unmannerly,1,kinglear,1603 Break,1,kinglear,1603 howe'er,1,kinglear,1603 Brought,1,kinglear,1603 uncaught,1,kinglear,1603 front,1,kinglear,1603 faints,1,kinglear,1603 incline,1,kinglear,1603 fasten'd,1,kinglear,1603 seconds,1,kinglear,1603 Dinner,1,kinglear,1603 weapon,1,kinglear,1603 aye,1,kinglear,1603 packings,1,kinglear,1603 hall,1,kinglear,1603 conspiracy,1,kinglear,1603 crow,1,kinglear,1603 haunts,1,kinglear,1603 round,1,kinglear,1603 poorly,1,kinglear,1603 labouring,1,kinglear,1603 Arms,1,kinglear,1603 dissipation,1,kinglear,1603 General,1,kinglear,1603 Harbour,1,kinglear,1603 continents,1,kinglear,1603 infirmities,1,kinglear,1603 toasted,1,kinglear,1603 text,1,kinglear,1603 shallow,1,kinglear,1603 mysteries,1,kinglear,1603 trill'd,1,kinglear,1603 perform'd,1,kinglear,1603 see't,1,kinglear,1603 serpent's,1,kinglear,1603 'Let,1,kinglear,1603 faintly,1,kinglear,1603 strings,1,kinglear,1603 Trumpets,1,kinglear,1603 Beware,1,kinglear,1603 t',1,kinglear,1603 nobleness,1,kinglear,1603 Hopdance,1,kinglear,1603 shut,1,kinglear,1603 Full,1,kinglear,1603 four,1,kinglear,1603 draws,1,kinglear,1603 porridge,1,kinglear,1603 sincere,1,kinglear,1603 threaten'd,1,kinglear,1603 chambermaids,1,kinglear,1603 suitors,1,kinglear,1603 forty,1,kinglear,1603 pant,1,kinglear,1603 school,1,kinglear,1603 provided,1,kinglear,1603 particulars,1,kinglear,1603 whore's,1,kinglear,1603 During,1,kinglear,1603 miscarried,1,kinglear,1603 handles,1,kinglear,1603 shell,1,kinglear,1603 spotted,1,kinglear,1603 marching,1,kinglear,1603 potency,1,kinglear,1603 acquaintance,1,kinglear,1603 madam's,1,kinglear,1603 stelled,1,kinglear,1603 Under,1,kinglear,1603 essay,1,kinglear,1603 Caius,1,kinglear,1603 Untimely,1,kinglear,1603 rashness,1,kinglear,1603 Smile,1,kinglear,1603 exalt,1,kinglear,1603 occasions,1,kinglear,1603 brothers,1,kinglear,1603 fork,1,kinglear,1603 knocks,1,kinglear,1603 'Dear,1,kinglear,1603 Commend,1,kinglear,1603 gathers,1,kinglear,1603 dominions,1,kinglear,1603 crum,1,kinglear,1603 Unwhipp'd,1,kinglear,1603 clothier's,1,kinglear,1603 stranger,1,kinglear,1603 hangs,1,kinglear,1603 heaviness,1,kinglear,1603 Occasions,1,kinglear,1603 lameness,1,kinglear,1603 extremest,1,kinglear,1603 diest,1,kinglear,1603 outrage,1,kinglear,1603 litter,1,kinglear,1603 wretchedness,1,kinglear,1603 fore,1,kinglear,1603 ford,1,kinglear,1603 ballow,1,kinglear,1603 bellyful,1,kinglear,1603 fops,1,kinglear,1603 Robes,1,kinglear,1603 owes,1,kinglear,1603 incurr'd,1,kinglear,1603 Ingratitude,1,kinglear,1603 devise,1,kinglear,1603 paternal,1,kinglear,1603 persevere,1,kinglear,1603 forlorn,1,kinglear,1603 fear'd,1,kinglear,1603 pack,1,kinglear,1603 rings,1,kinglear,1603 proper,1,kinglear,1603 hurtless,1,kinglear,1603 shod,1,kinglear,1603 shoe,1,kinglear,1603 sliver,1,kinglear,1603 precipitating,1,kinglear,1603 consideration,1,kinglear,1603 Proper,1,kinglear,1603 flatter'd,1,kinglear,1603 images,1,kinglear,1603 prepared,1,kinglear,1603 bearer,1,kinglear,1603 yard,1,kinglear,1603 Hot,1,kinglear,1603 testimony,1,kinglear,1603 excess,1,kinglear,1603 creatures,1,kinglear,1603 tearing,1,kinglear,1603 Weary,1,kinglear,1603 fresh,1,kinglear,1603 avouched,1,kinglear,1603 zo,1,kinglear,1603 louse,1,kinglear,1603 mayst,1,kinglear,1603 attempting,1,kinglear,1603 Yields,1,kinglear,1603 nearly,1,kinglear,1603 fold,1,kinglear,1603 border'd,1,kinglear,1603 applied,1,kinglear,1603 secret,1,kinglear,1603 trice,1,kinglear,1603 stocking,1,kinglear,1603 casualties,1,kinglear,1603 She'll,1,kinglear,1603 Arm,1,kinglear,1603 foppery,1,kinglear,1603 Torches,1,kinglear,1603 soundest,1,kinglear,1603 fell'd,1,kinglear,1603 unnumber'd,1,kinglear,1603 trick,1,kinglear,1603 undone,1,kinglear,1603 strangeness,1,kinglear,1603 partial,1,kinglear,1603 Think'st,1,kinglear,1603 glib,1,kinglear,1603 fee,1,kinglear,1603 Intelligence,1,kinglear,1603 vurther,1,kinglear,1603 fed,1,kinglear,1603 smells,1,kinglear,1603 Hard,1,kinglear,1603 Pursue,1,kinglear,1603 fen,1,kinglear,1603 ministers,1,kinglear,1603 array,1,kinglear,1603 revenging,1,kinglear,1603 naughty,1,kinglear,1603 behavior,1,kinglear,1603 warp'd,1,kinglear,1603 fiends',1,kinglear,1603 show'dst,1,kinglear,1603 flatteries,1,kinglear,1603 token,1,kinglear,1603 Pantingly,1,kinglear,1603 tooth'd,1,kinglear,1603 Bessy,1,kinglear,1603 sophisticated,1,kinglear,1603 demanded,1,kinglear,1603 ceases,1,kinglear,1603 tribe,1,kinglear,1603 rivals,1,kinglear,1603 Fathom,1,kinglear,1603 beetles,1,kinglear,1603 broke,1,kinglear,1603 Art,1,kinglear,1603 plackets,1,kinglear,1603 guess,1,kinglear,1603 beams,1,kinglear,1603 liver'd,1,kinglear,1603 moves,1,kinglear,1603 precedent,1,kinglear,1603 Cover,1,kinglear,1603 capital,1,kinglear,1603 alarum'd,1,kinglear,1603 Bids,1,kinglear,1603 ventured,1,kinglear,1603 height,1,kinglear,1603 witch,1,kinglear,1603 kicked,1,kinglear,1603 trumpet's,1,kinglear,1603 Alive,1,kinglear,1603 scalding,1,kinglear,1603 watch,1,kinglear,1603 rarity,1,kinglear,1603 deniest,1,kinglear,1603 Horses,1,kinglear,1603 Shows,1,kinglear,1603 borrow,1,kinglear,1603 finical,1,kinglear,1603 contented,1,kinglear,1603 leak,1,kinglear,1603 beaks,1,kinglear,1603 Fourscore,1,kinglear,1603 repeals,1,kinglear,1603 Captains,1,kinglear,1603 Man's,1,kinglear,1603 criest,1,kinglear,1603 Kill,1,kinglear,1603 esperance,1,kinglear,1603 indisposed,1,kinglear,1603 condemn'd,1,kinglear,1603 breathes,1,kinglear,1603 twinkled,1,kinglear,1603 Tearing,1,kinglear,1603 confederacy,1,kinglear,1603 breeds,1,kinglear,1603 Ripeness,1,kinglear,1603 Wounds,1,kinglear,1603 syllable,1,kinglear,1603 mortified,1,kinglear,1603 shameful,1,kinglear,1603 venture,1,kinglear,1603 rigor,1,kinglear,1603 nay,1,kinglear,1603 counterfeiting,1,kinglear,1603 unloose,1,kinglear,1603 Spoke,1,kinglear,1603 Ten,1,kinglear,1603 empty,1,kinglear,1603 drench'd,1,kinglear,1603 nations,1,kinglear,1603 wrench'd,1,kinglear,1603 griefs,1,kinglear,1603 abated,1,kinglear,1603 apprehension,1,kinglear,1603 Infect,1,kinglear,1603 heretofore,1,kinglear,1603 Tripping,1,kinglear,1603 guiltless,1,kinglear,1603 session,1,kinglear,1603 Mastiff,1,kinglear,1603 sickly,1,kinglear,1603 motley,1,kinglear,1603 'Gainst,1,kinglear,1603 unknown,1,kinglear,1603 repose,1,kinglear,1603 Else,1,kinglear,1603 square,1,kinglear,1603 apply,1,kinglear,1603 marks,1,kinglear,1603 sapient,1,kinglear,1603 contains,1,kinglear,1603 penury,1,kinglear,1603 Madman,1,kinglear,1603 retreat,1,kinglear,1603 Crack,1,kinglear,1603 rare,1,kinglear,1603 fraught,1,kinglear,1603 Opposed,1,kinglear,1603 unquietly,1,kinglear,1603 hire,1,kinglear,1603 occupation,1,kinglear,1603 Election,1,kinglear,1603 cataracts,1,kinglear,1603 presages,1,kinglear,1603 provoking,1,kinglear,1603 Vengeance,1,kinglear,1603 farmer's,1,kinglear,1603 beats,1,kinglear,1603 Strive,1,kinglear,1603 apple,1,kinglear,1603 Dwells,1,kinglear,1603 scald,1,kinglear,1603 circle,1,kinglear,1603 shaking,1,kinglear,1603 Bad,1,kinglear,1603 curtains,1,kinglear,1603 Judicious,1,kinglear,1603 forsaken,1,kinglear,1603 Nuncle,1,kinglear,1603 major,1,kinglear,1603 mildness,1,kinglear,1603 whining,1,kinglear,1603 'Thou,1,kinglear,1603 Loyal,1,kinglear,1603 temperance,1,kinglear,1603 brazed,1,kinglear,1603 entertainment,1,kinglear,1603 luxury,1,kinglear,1603 'Sleep,1,kinglear,1603 remedy,1,kinglear,1603 brazen,1,kinglear,1603 bravely,1,kinglear,1603 estate,1,kinglear,1603 faint,1,kinglear,1603 furr'd,1,kinglear,1603 knots,1,kinglear,1603 snuffs,1,kinglear,1603 candle,1,kinglear,1603 hasten,1,kinglear,1603 feature,1,kinglear,1603 entirely,1,kinglear,1603 Sleeps,1,kinglear,1603 banners,1,kinglear,1603 roundest,1,kinglear,1603 Withold,1,kinglear,1603 clovest,1,kinglear,1603 pastime,1,kinglear,1603 See't,1,kinglear,1603 soiled,1,kinglear,1603 Wear,1,kinglear,1603 treason's,1,kinglear,1603 oppressed,1,kinglear,1603 machinations,1,kinglear,1603 squires,1,kinglear,1603 courtezan,1,kinglear,1603 Down,1,kinglear,1603 slower,1,kinglear,1603 thankless,1,kinglear,1603 goatish,1,kinglear,1603 o'erpaid,1,kinglear,1603 bridges,1,kinglear,1603 Court,1,kinglear,1603 anatomize,1,kinglear,1603 Briefly,1,kinglear,1603 perused,1,kinglear,1603 wolves,1,kinglear,1603 Naughty,1,kinglear,1603 arguments,1,kinglear,1603 All's,1,kinglear,1603 equally,1,kinglear,1603 garden,1,kinglear,1603 arise,1,kinglear,1603 o'erlook,1,kinglear,1603 Consider,1,kinglear,1603 adopted,1,kinglear,1603 fairs,1,kinglear,1603 adultery,1,kinglear,1603 Slave,1,kinglear,1603 Gallow,1,kinglear,1603 presented,1,kinglear,1603 unhappy,1,kinglear,1603 Approach,1,kinglear,1603 Darest,1,kinglear,1603 ordinance,1,kinglear,1603 be't,1,kinglear,1603 places,1,kinglear,1603 Lord,1,kinglear,1603 eggs,1,kinglear,1603 schoolmasters,1,kinglear,1603 madman's,1,kinglear,1603 'Sisters,1,kinglear,1603 avouch,1,kinglear,1603 swallows,1,kinglear,1603 mouse,1,kinglear,1603 Age,1,kinglear,1603 opulent,1,kinglear,1603 Will't,1,kinglear,1603 vanquish'd,1,kinglear,1603 whispered,1,kinglear,1603 wall'd,1,kinglear,1603 trespasses,1,kinglear,1603 unusual,1,kinglear,1603 bemadding,1,kinglear,1603 'Ay',1,kinglear,1603 contraries,1,kinglear,1603 unprovided,1,kinglear,1603 Lost,1,kinglear,1603 Knows,1,kinglear,1603 throwest,1,kinglear,1603 attire,1,kinglear,1603 quarrel's,1,kinglear,1603 gorged,1,kinglear,1603 consort,1,kinglear,1603 effect,1,kinglear,1603 spurn,1,kinglear,1603 seasons,1,kinglear,1603 spurs,1,kinglear,1603 sinn'd,1,kinglear,1603 lodge,1,kinglear,1603 daylight,1,kinglear,1603 airs,1,kinglear,1603 lecher's,1,kinglear,1603 distaff,1,kinglear,1603 stare,1,kinglear,1603 jovial,1,kinglear,1603 arrives,1,kinglear,1603 poisoned,1,kinglear,1603 milk,1,kinglear,1603 boasted,1,kinglear,1603 Slain,1,kinglear,1603 Hobbididence,1,kinglear,1603 mile,1,kinglear,1603 mortar,1,kinglear,1603 mild,1,kinglear,1603 sessa,1,kinglear,1603 elf,1,kinglear,1603 'If,1,kinglear,1603 Long,1,kinglear,1603 disdain'd,1,kinglear,1603 Darnel,1,kinglear,1603 teeth,1,kinglear,1603 packs,1,kinglear,1603 covert,1,kinglear,1603 satisfaction,1,kinglear,1603 conclusion,1,kinglear,1603 Makes,1,kinglear,1603 filth,1,kinglear,1603 sacrifices,1,kinglear,1603 Soon,1,kinglear,1603 bosoms,1,kinglear,1603 Remembers,1,kinglear,1603 escape,1,kinglear,1603 watched,1,kinglear,1603 blanket,1,kinglear,1603 Throned,1,kinglear,1603 watches,1,kinglear,1603 Darkness,1,kinglear,1603 observation,1,kinglear,1603 vent,1,kinglear,1603 fortnight,1,kinglear,1603 quakes,1,kinglear,1603 wrought,1,kinglear,1603 hissing,1,kinglear,1603 keeper,1,kinglear,1603 dowry,1,kinglear,1603 hereditary,1,kinglear,1603 malt,1,kinglear,1603 insolent,1,kinglear,1603 lowest,1,kinglear,1603 discerns,1,kinglear,1603 reading,1,kinglear,1603 procure,1,kinglear,1603 obscured,1,kinglear,1603 vortnight,1,kinglear,1603 bolted,1,kinglear,1603 beach,1,kinglear,1603 Father,1,kinglear,1603 skin,1,kinglear,1603 villanous,1,kinglear,1603 guessingly,1,kinglear,1603 organs,1,kinglear,1603 tenth,1,kinglear,1603 mare,1,kinglear,1603 forests,1,kinglear,1603 persuades,1,kinglear,1603 kissing,1,kinglear,1603 dream,1,kinglear,1603 incite,1,kinglear,1603 ranks,1,kinglear,1603 persuaded,1,kinglear,1603 disnatured,1,kinglear,1603 thick,1,kinglear,1603 raiment,1,kinglear,1603 blot,1,kinglear,1603 devils,1,kinglear,1603 contemned'st,1,kinglear,1603 coronet,1,kinglear,1603 Invades,1,kinglear,1603 mire,1,kinglear,1603 farms,1,kinglear,1603 Revoke,1,kinglear,1603 flatter,1,kinglear,1603 inch,1,kinglear,1603 Affliction,1,kinglear,1603 gates,1,kinglear,1603 address,1,kinglear,1603 slenderly,1,kinglear,1603 shoulder,1,kinglear,1603 chide,1,kinglear,1603 special,1,kinglear,1603 mist,1,kinglear,1603 fret,1,kinglear,1603 arch,1,kinglear,1603 benefit,1,kinglear,1603 fish,1,kinglear,1603 sinning,1,kinglear,1603 minikin,1,kinglear,1603 plenteous,1,kinglear,1603 crab's,1,kinglear,1603 feelingly,1,kinglear,1603 bleak,1,kinglear,1603 engender'd,1,kinglear,1603 cozen'd,1,kinglear,1603 discharge,1,kinglear,1603 reposal,1,kinglear,1603 naught,1,kinglear,1603 ordinary,1,kinglear,1603 laughs,1,kinglear,1603 pother,1,kinglear,1603 undivulged,1,kinglear,1603 fantastically,1,kinglear,1603 parent,1,kinglear,1603 borrow'd,1,kinglear,1603 doubted,1,kinglear,1603 unbolted,1,kinglear,1603 Being,1,kinglear,1603 greediness,1,kinglear,1603 Jug,1,kinglear,1603 discarded,1,kinglear,1603 oil,1,kinglear,1603 mistress',1,kinglear,1603 accommodate,1,kinglear,1603 sayest,1,kinglear,1603 Filths,1,kinglear,1603 Offering,1,kinglear,1603 monopoly,1,kinglear,1603 Commanded,1,kinglear,1603 firm,1,kinglear,1603 wed,1,kinglear,1603 web,1,kinglear,1603 desired,1,kinglear,1603 living,1,kinglear,1603 stain,1,kinglear,1603 bear'st,1,kinglear,1603 apish,1,kinglear,1603 Lending,1,kinglear,1603 musters,1,kinglear,1603 Found,1,kinglear,1603 behalf,1,kinglear,1603 ratsbane,1,kinglear,1603 headlong,1,kinglear,1603 Halloo,1,kinglear,1603 Coming,1,kinglear,1603 sharpness,1,kinglear,1603 ducking,1,kinglear,1603 suspicion,1,kinglear,1603 affairs,1,kinglear,1603 coining,1,kinglear,1603 'Twixt,1,kinglear,1603 stink,1,kinglear,1603 sting,1,kinglear,1603 They'll,1,kinglear,1603 Tray,1,kinglear,1603 contemplation,1,kinglear,1603 neat,1,kinglear,1603 merits,1,kinglear,1603 'No,1,kinglear,1603 flies,1,kinglear,1603 stale,1,kinglear,1603 salt,1,kinglear,1603 pound,1,kinglear,1603 'My,1,kinglear,1603 carefully,1,kinglear,1603 unhappily,1,kinglear,1603 understanding,1,kinglear,1603 retire,1,kinglear,1603 fittest,1,kinglear,1603 former,1,kinglear,1603 pomp,1,kinglear,1603 Friends,1,kinglear,1603 Arraign,1,kinglear,1603 Look'd,1,kinglear,1603 vines,1,kinglear,1603 Denied,1,kinglear,1603 Freedom,1,kinglear,1603 Run,1,kinglear,1603 Frateretto,1,kinglear,1603 employed,1,kinglear,1603 untented,1,kinglear,1603 Armed,1,kinglear,1603 stamp,1,kinglear,1603 Witness,1,kinglear,1603 stile,1,kinglear,1603 whirlwinds,1,kinglear,1603 festinate,1,kinglear,1603 capable,1,kinglear,1603 win,1,kinglear,1603 message,1,kinglear,1603 father'd,1,kinglear,1603 blushed,1,kinglear,1603 proposed,1,kinglear,1603 provoke,1,kinglear,1603 hateful,1,kinglear,1603 unsubstantial,1,kinglear,1603 stomach,1,kinglear,1603 shiver'd,1,kinglear,1603 perpendicularly,1,kinglear,1603 dung,1,kinglear,1603 evasion,1,kinglear,1603 imaginations,1,kinglear,1603 impose,1,kinglear,1603 operation,1,kinglear,1603 publish'd,1,kinglear,1603 bread,1,kinglear,1603 confined,1,kinglear,1603 curs,1,kinglear,1603 import,1,kinglear,1603 bawds,1,kinglear,1603 fetch,1,kinglear,1603 creating,1,kinglear,1603 ring,1,kinglear,1603 gad,1,kinglear,1603 upright,1,kinglear,1603 comfortless,1,kinglear,1603 thwart,1,kinglear,1603 bondage,1,kinglear,1603 falchion,1,kinglear,1603 loop'd,1,kinglear,1603 allay,1,kinglear,1603 pension,1,kinglear,1603 gap,1,kinglear,1603 different,1,kinglear,1603 beastly,1,kinglear,1603 moment,1,kinglear,1603 manifest,1,kinglear,1603 allegiance,1,kinglear,1603 waking,1,kinglear,1603 protect,1,kinglear,1603 posted,1,kinglear,1603 dizzy,1,kinglear,1603 bestow'd,1,kinglear,1603 walks,1,kinglear,1603 dawning,1,kinglear,1603 oak,1,kinglear,1603 Dear,1,kinglear,1603 cuts,1,kinglear,1603 disquantity,1,kinglear,1603 quicken,1,kinglear,1603 sustain'd,1,kinglear,1603 sparrow,1,kinglear,1603 Desire,1,kinglear,1603 flight,1,kinglear,1603 walls,1,kinglear,1603 ripe,1,kinglear,1603 furnishings,1,kinglear,1603 Alarums,1,kinglear,1603 Germany,1,kinglear,1603 standing,1,kinglear,1603 mildews,1,kinglear,1603 death's,1,kinglear,1603 you're,1,kinglear,1603 nursery,1,kinglear,1603 certainly,1,kinglear,1603 patiently,1,kinglear,1603 champion,1,kinglear,1603 protection,1,kinglear,1603 See'st,1,kinglear,1603 Thine,1,kinglear,1603 cockney,1,kinglear,1603 unseal,1,kinglear,1603 issues,1,kinglear,1603 likes,1,kinglear,1603 called,1,kinglear,1603 Wantest,1,kinglear,1603 stiff,1,kinglear,1603 cutter,1,kinglear,1603 frog,1,kinglear,1603 earnest,1,kinglear,1603 wax,1,kinglear,1603 carbonado,1,kinglear,1603 Intelligent,1,kinglear,1603 able,1,kinglear,1603 Worthy,1,kinglear,1603 retention,1,kinglear,1603 heave,1,kinglear,1603 trusts,1,kinglear,1603 balm'd,1,kinglear,1603 Hangs,1,kinglear,1603 godson,1,kinglear,1603 trusty,1,kinglear,1603 nuptial,1,kinglear,1603 important,1,kinglear,1603 avert,1,kinglear,1603 ambition,1,kinglear,1603 Forced,1,kinglear,1603 oats,1,kinglear,1603 girdle,1,kinglear,1603 changeable,1,kinglear,1603 sufferance,1,kinglear,1603 enraged,1,kinglear,1603 fellow's,1,kinglear,1603 wood,1,kinglear,1603 assure,1,kinglear,1603 slayer,1,kinglear,1603 herring,1,kinglear,1603 forward,1,kinglear,1603 sallets,1,kinglear,1603 wanton,1,kinglear,1603 thrill'd,1,kinglear,1603 wool,1,kinglear,1603 hags,1,kinglear,1603 Spit,1,kinglear,1603 ends,1,kinglear,1603 Knowing,1,kinglear,1603 proceeding,1,kinglear,1603 price,1,kinglear,1603 prick,1,kinglear,1603 supper,1,kinglear,1603 spectacles,1,kinglear,1603 owl,1,kinglear,1603 warmth,1,kinglear,1603 split,1,kinglear,1603 women's,1,kinglear,1603 next,1,kinglear,1603 cushions,1,kinglear,1603 threats,1,kinglear,1603 times',1,kinglear,1603 cursed,1,kinglear,1603 affirm,1,kinglear,1603 Monsieur,1,kinglear,1603 fur,1,kinglear,1603 enforced,1,kinglear,1603 stripp'd,1,kinglear,1603 Shame,1,kinglear,1603 breaches,1,kinglear,1603 into't,1,kinglear,1603 curses,1,kinglear,1603 newt,1,kinglear,1603 Gives,1,kinglear,1603 grossly,1,kinglear,1603 thunderbolts,1,kinglear,1603 mightily,1,kinglear,1603 Shalt,1,kinglear,1603 vulgar,1,kinglear,1603 familiar,1,kinglear,1603 anchoring,1,kinglear,1603 operative,1,kinglear,1603 rustling,1,kinglear,1603 raging,1,kinglear,1603 gladly,1,kinglear,1603 baseness,1,kinglear,1603 rake,1,kinglear,1603 surrender,1,kinglear,1603 ransom,1,kinglear,1603 fruitfully,1,kinglear,1603 worships,1,kinglear,1603 rages,1,kinglear,1603 Heaven,1,kinglear,1603 faced,1,kinglear,1603 butterflies,1,kinglear,1603 validity,1,kinglear,1603 reports,1,kinglear,1603 put'st,1,kinglear,1603 charges,1,kinglear,1603 rotten,1,kinglear,1603 Touches,1,kinglear,1603 poison,1,kinglear,1603 fum,1,kinglear,1603 unnaturalness,1,kinglear,1603 wreath,1,kinglear,1603 angel,1,kinglear,1603 weeping,1,kinglear,1603 darker,1,kinglear,1603 superflux,1,kinglear,1603 spleen,1,kinglear,1603 foreign,1,kinglear,1603 tamely,1,kinglear,1603 Sharp,1,kinglear,1603 tatter'd,1,kinglear,1603 sways,1,kinglear,1603 lechers,1,kinglear,1603 misconstruction,1,kinglear,1603 womb,1,kinglear,1603 compulsion,1,kinglear,1603 knight,1,kinglear,1603 owe,1,kinglear,1603 rail,1,kinglear,1603 supply,1,kinglear,1603 equalities,1,kinglear,1603 animal,1,kinglear,1603 threatened,1,kinglear,1603 demonstration,1,kinglear,1603 resume,1,kinglear,1603 fro,1,kinglear,1603 shortens,1,kinglear,1603 waters,1,kinglear,1603 yoke,1,kinglear,1603 Saddle,1,kinglear,1603 drops,1,kinglear,1603 lurk,1,kinglear,1603 serves,1,kinglear,1603 unbonneted,1,kinglear,1603 waste,1,kinglear,1603 marble,1,kinglear,1603 ope,1,kinglear,1603 angry,1,kinglear,1603 went,1,kinglear,1603 unfortunate,1,kinglear,1603 whence,1,kinglear,1603 Noble,1,kinglear,1603 cover,1,kinglear,1603 vexes,1,kinglear,1603 madest,1,kinglear,1603 Even,1,kinglear,1603 kibes,1,kinglear,1603 preach,1,kinglear,1603 Show,1,kinglear,1603 guardians,1,kinglear,1603 guilty,1,kinglear,1603 create,1,kinglear,1603 grieve,1,kinglear,1603 guilts,1,kinglear,1603 locked,1,kinglear,1603 Sarum,1,kinglear,1603 snail,1,kinglear,1603 cried,1,kinglear,1603 Unhappy,1,kinglear,1603 bruise,1,kinglear,1603 diseases,1,kinglear,1603 wanted,1,kinglear,1603 minds,1,kinglear,1603 Time,1,kinglear,1603 judge,1,kinglear,1603 pockets,1,kinglear,1603 weapons,1,kinglear,1603 pigmy's,1,kinglear,1603 contemns,1,kinglear,1603 desert,1,kinglear,1603 diamonds,1,kinglear,1603 lendings,1,kinglear,1603 epileptic,1,kinglear,1603 Improper,1,kinglear,1603 quest,1,kinglear,1603 plumed,1,kinglear,1603 foh,1,kinglear,1603 victor,1,kinglear,1603 vermin,1,kinglear,1603 embossed,1,kinglear,1603 hitherward,1,kinglear,1603 distract,1,kinglear,1603 wilful,1,kinglear,1603 Blanch,1,kinglear,1603 Shake,1,kinglear,1603 dragon's,1,kinglear,1603 grant,1,kinglear,1603 answers,1,kinglear,1603 swells,1,kinglear,1603 rack,1,kinglear,1603 Corruption,1,kinglear,1603 justification,1,kinglear,1603 methinks,1,kinglear,1603 silly,1,kinglear,1603 woeful,1,kinglear,1603 trundle,1,kinglear,1603 tardiness,1,kinglear,1603 simular,1,kinglear,1603 dissuaded,1,kinglear,1603 dialect,1,kinglear,1603 discover,1,kinglear,1603 tune,1,kinglear,1603 amities,1,kinglear,1603 threw,1,kinglear,1603 wore,1,kinglear,1603 do't,1,kinglear,1603 clay,1,kinglear,1603 aidant,1,kinglear,1603 predominance,1,kinglear,1603 silks,1,kinglear,1603 allot,1,kinglear,1603 Deny,1,kinglear,1603 endeavour,1,kinglear,1603 flame,1,kinglear,1603 Sorrow,1,kinglear,1603 offices,1,kinglear,1603 gazing,1,kinglear,1603 dues,1,kinglear,1603 licensed,1,kinglear,1603 lists,1,kinglear,1603 vow,1,kinglear,1603 wheat,1,kinglear,1603 film,1,kinglear,1603 Louder,1,kinglear,1603 Unmerciful,1,kinglear,1603 Rule,1,kinglear,1603 Attend,1,kinglear,1603 admiration,1,kinglear,1603 savage,1,kinglear,1603 clap,1,kinglear,1603 assume,1,kinglear,1603 cackling,1,kinglear,1603 horn,1,kinglear,1603 Near,1,kinglear,1603 redresses,1,kinglear,1603 enridged,1,kinglear,1603 answer'd,1,kinglear,1603 contentious,1,kinglear,1603 notion,1,kinglear,1603 tavern,1,kinglear,1603 neutral,1,kinglear,1603 surge,1,kinglear,1603 pocket,1,kinglear,1603 thereat,1,kinglear,1603 unfold,1,kinglear,1603 wealth,1,kinglear,1603 creaking,1,kinglear,1603 smooth,1,kinglear,1603 mates,1,kinglear,1603 beware,1,kinglear,1603 Beneath,1,kinglear,1603 Maugre,1,kinglear,1603 divest,1,kinglear,1603 tike,1,kinglear,1603 marjoram,1,kinglear,1603 whither,1,kinglear,1603 'Good,1,kinglear,1603 flickering,1,kinglear,1603 traitorous,1,kinglear,1603 opposites,1,kinglear,1603 disasters,1,kinglear,1603 dullard,1,kinglear,1603 bird,1,kinglear,1603 waved,1,kinglear,1603 stinking,1,kinglear,1603 strikes,1,kinglear,1603 gratitude,1,kinglear,1603 prophesy,1,kinglear,1603 'Alack,1,kinglear,1603 ditch,1,kinglear,1603 appointed,1,kinglear,1603 speak't,1,kinglear,1603 attask'd,1,kinglear,1603 oldness,1,kinglear,1603 Smulkin,1,kinglear,1603 prophets,1,kinglear,1603 cullionly,1,kinglear,1603 contriving,1,kinglear,1603 derogate,1,kinglear,1603 Sessa,1,kinglear,1603 flames,1,kinglear,1603 cools,1,kinglear,1603 balm,1,kinglear,1603 motive,1,kinglear,1603 Officer,1,kinglear,1603 Striving,1,kinglear,1603 felicitate,1,kinglear,1603 bounds,1,kinglear,1603 rising,1,kinglear,1603 secrets,1,kinglear,1603 strove,1,kinglear,1603 prefer,1,kinglear,1603 redeems,1,kinglear,1603 auricular,1,kinglear,1603 evidence,1,kinglear,1603 songs,1,kinglear,1603 drinks,1,kinglear,1603 lad,1,kinglear,1603 meets,1,kinglear,1603 lights,1,kinglear,1603 shepherd,1,kinglear,1603 o'erwhelm,1,kinglear,1603 tall,1,kinglear,1603 complaint,1,kinglear,1603 benefited,1,kinglear,1603 insulted,1,kinglear,1603 kite,1,kinglear,1603 inflamed,1,kinglear,1603 departure,1,kinglear,1603 knighthood,1,kinglear,1603 fruitful,1,kinglear,1603 Prosper,1,kinglear,1603 cup,1,kinglear,1603 tart,1,kinglear,1603 fordid,1,kinglear,1603 Appear,1,kinglear,1603 cue,1,kinglear,1603 cub,1,kinglear,1603 Trust,1,kinglear,1603 shirts,1,kinglear,1603 folds,1,kinglear,1603 me's,1,kinglear,1603 sixth,1,kinglear,1603 impress'd,1,kinglear,1603 torment,1,kinglear,1603 thrusting,1,kinglear,1603 tutors,1,kinglear,1603 mothers,1,kinglear,1603 Rather,1,kinglear,1603 rapier,1,kinglear,1603 alms,1,kinglear,1603 distribution,1,kinglear,1603 sights,1,kinglear,1603 Led,1,kinglear,1603 shoot,1,kinglear,1603 ought,1,kinglear,1603 pledge,1,kinglear,1603 forbearance,1,kinglear,1603 shook,1,kinglear,1603 eels,1,kinglear,1603 Requires,1,kinglear,1603 bigger,1,kinglear,1603 bethought,1,kinglear,1603 lecherous,1,kinglear,1603 interposes,1,kinglear,1603 professed,1,kinglear,1603 holp,1,kinglear,1603 blasting,1,kinglear,1603 Lay,1,kinglear,1603 portion,1,kinglear,1603 green,1,kinglear,1603 Cunning,1,kinglear,1603 firmament,1,kinglear,1603 greet,1,kinglear,1603 Burst,1,kinglear,1603 waywardness,1,kinglear,1603 hollow,1,kinglear,1603 concluded,1,kinglear,1603 Adultery,1,kinglear,1603 devour,1,kinglear,1603 unstate,1,kinglear,1603 acre,1,kinglear,1603 dragon,1,kinglear,1603 horse's,1,kinglear,1603 oyster,1,kinglear,1603 cowards,1,kinglear,1603 Couldst,1,kinglear,1603 moulten,1,kinglear,1603 loyal,1,kinglear,1603 abatement,1,kinglear,1603 argument,1,kinglear,1603 revolt,1,kinglear,1603 untuned,1,kinglear,1603 Lag,1,kinglear,1603 condemn,1,kinglear,1603 winter,1,kinglear,1603 forsooth,1,kinglear,1603 rabble,1,kinglear,1603 invade,1,kinglear,1603 tiny,1,kinglear,1603 grudge,1,kinglear,1603 resolution,1,kinglear,1603 slanders,1,kinglear,1603 smilingly,1,kinglear,1603 epicurism,1,kinglear,1603 counsels,1,kinglear,1603 seal,1,kinglear,1603 favours,1,kinglear,1603 Fall'n,1,kinglear,1603 fitter,1,kinglear,1603 building,1,kinglear,1603 choler,1,kinglear,1603 profits,1,kinglear,1603 goodman,1,kinglear,1603 wombed,1,kinglear,1603 zwaggered,1,kinglear,1603 Ingrateful,1,kinglear,1603 Blanket,1,kinglear,1603 peascod,1,kinglear,1603 Vex,1,kinglear,1603 also,1,kinglear,1603 bawd,1,kinglear,1603 disclaim,1,kinglear,1603 terrors,1,kinglear,1603 cope,1,kinglear,1603 discommend,1,kinglear,1603 ignobly,1,kinglear,1603 interest,1,kinglear,1603 robed,1,kinglear,1603 hunt,1,kinglear,1603 along,1,kinglear,1603 fourteen,1,kinglear,1603 elements,1,kinglear,1603 fickle,1,kinglear,1603 Nero,1,kinglear,1603 cool,1,kinglear,1603 Necessity's,1,kinglear,1603 lying,1,kinglear,1603 moulds,1,kinglear,1603 waiting,1,kinglear,1603 attendance,1,kinglear,1603 Juno,1,kinglear,1603 winged,1,kinglear,1603 favour'd,1,kinglear,1603 comforting,1,kinglear,1603 Rumble,1,kinglear,1603 recounting,1,kinglear,1603 adieu,1,kinglear,1603 eyed,1,kinglear,1603 sweat,1,kinglear,1603 fumiter,1,kinglear,1603 ugly,1,kinglear,1603 territory,1,kinglear,1603 babe,1,kinglear,1603 remediate,1,kinglear,1603 Allows,1,kinglear,1603 converse,1,kinglear,1603 suits,1,kinglear,1603 publish,1,kinglear,1603 thereto,1,kinglear,1603 Right,1,kinglear,1603 oppress'd,1,kinglear,1603 weaves,1,kinglear,1603 feathers,1,kinglear,1603 we'ld,1,kinglear,1603 material,1,kinglear,1603 inheriting,1,kinglear,1603 troth,1,kinglear,1603 Truly,1,kinglear,1603 masts,1,kinglear,1603 adore,1,kinglear,1603 trespass,1,kinglear,1603 supposed,1,kinglear,1603 gnawn,1,kinglear,1603 Lie,1,kinglear,1603 cow,1,kinglear,1603 News,1,kinglear,1603 Ne'er,1,kinglear,1603 Restoration,1,kinglear,1603 discretion,1,kinglear,1603 values,1,kinglear,1603 divorce,1,kinglear,1603 strengths,1,kinglear,1603 rivall'd,1,kinglear,1603 heavens',1,kinglear,1603 pricks,1,kinglear,1603 tells,1,kinglear,1603 champains,1,kinglear,1603 Legitimate,1,kinglear,1603 kennel,1,kinglear,1603 hound,1,kinglear,1603 mix'd,1,kinglear,1603 lifting,1,kinglear,1603 Resolve,1,kinglear,1603 expectation,1,kinglear,1603 counsell'd,1,kinglear,1603 suspects,1,kinglear,1603 arrant,1,kinglear,1603 replied,1,kinglear,1603 rotundity,1,kinglear,1603 observants,1,kinglear,1603 'Your,1,kinglear,1603 thrust,1,kinglear,1603 Milk,1,kinglear,1603 oeillades,1,kinglear,1603 needless,1,kinglear,1603 sacred,1,kinglear,1603 exploit,1,kinglear,1603 fishermen,1,kinglear,1603 Gentlemen,1,kinglear,1603 scourged,1,kinglear,1603 increase,1,kinglear,1603 usage,1,kinglear,1603 gossamer,1,kinglear,1603 Service,1,kinglear,1603 pestilent,1,kinglear,1603 Obey,1,kinglear,1603 Haste,1,kinglear,1603 robbers',1,kinglear,1603 cheerless,1,kinglear,1603 avoid,1,kinglear,1603 nights,1,kinglear,1603 lethargied,1,kinglear,1603 undistinguish'd,1,kinglear,1603 Athenian,1,kinglear,1603 goal,1,kinglear,1603 forfended,1,kinglear,1603 huge,1,kinglear,1603 jolly,1,kinglear,1603 tranced,1,kinglear,1603 unpublish'd,1,kinglear,1603 extremes,1,kinglear,1603 Send,1,kinglear,1603 port,1,kinglear,1603 remove,1,kinglear,1603 miscreant,1,kinglear,1603 secure,1,kinglear,1603 furrow,1,kinglear,1603 believed,1,kinglear,1603 Trumpet,1,kinglear,1603 aloud,1,kinglear,1603 vulture,1,kinglear,1603 Meantime,1,kinglear,1603 blank,1,kinglear,1603 Fields,1,kinglear,1603 penning,1,kinglear,1603 whilst,1,kinglear,1603 bald,1,kinglear,1603 stored,1,kinglear,1603 fearfully,1,kinglear,1603 pots,1,kinglear,1603 Neither,1,kinglear,1603 nakedness,1,kinglear,1603 alas,1,kinglear,1603 talk'd,1,kinglear,1603 swell,1,kinglear,1603 nurse,1,kinglear,1603 remedies,1,kinglear,1603 enguard,1,kinglear,1603 regards,1,kinglear,1603 Cure,1,kinglear,1603 che,1,kinglear,1603 whereso'er,1,kinglear,1603 season,1,kinglear,1603 wolvish,1,kinglear,1603 sickness,1,kinglear,1603 Remain,1,kinglear,1603 Natures,1,kinglear,1603 protest,1,kinglear,1603 pool,1,kinglear,1603 methought,1,kinglear,1603 safer,1,kinglear,1603 attaint,1,kinglear,1603 ceremonious,1,kinglear,1603 conferr'd,1,kinglear,1603 headier,1,kinglear,1603 howl'd,1,kinglear,1603 fleshment,1,kinglear,1603 fairies,1,kinglear,1603 chanced,1,kinglear,1603 started,1,kinglear,1603 Hearing,1,kinglear,1603 eyes',1,kinglear,1603 bags,1,kinglear,1603 nature's,1,kinglear,1603 ebb,1,kinglear,1603 Wisdom,1,kinglear,1603 trot,1,kinglear,1603 unfee'd,1,kinglear,1603 trow,1,kinglear,1603 sorely,1,kinglear,1603 laws,1,kinglear,1603 credulous,1,kinglear,1603 brow,1,kinglear,1603 fetches,1,kinglear,1603 torch,1,kinglear,1603 stench,1,kinglear,1603 Inform,1,kinglear,1603 Quickly,1,kinglear,1603 vouch'd,1,kinglear,1603 numb'd,1,kinglear,1603 Theban,1,kinglear,1603 Spring,1,kinglear,1603 speculations,1,kinglear,1603 reprieve,1,kinglear,1603 imagination,1,kinglear,1603 midway,1,kinglear,1603 debate,1,kinglear,1603 map,1,kinglear,1603 shealed,1,kinglear,1603 Makest,1,kinglear,1603 fiends,1,kinglear,1603 alter'd,1,kinglear,1603 imports,1,kinglear,1603 starts,1,kinglear,1603 nonny,1,kinglear,1603 hewgh,1,kinglear,1603 squint,1,kinglear,1603 squiny,1,kinglear,1603 heinous,1,kinglear,1603 distressed,1,kinglear,1603 taint,1,kinglear,1603 careful,1,kinglear,1603 Strong,1,kinglear,1603 spite,1,kinglear,1603 minces,1,kinglear,1603 dislocate,1,kinglear,1603 Dower'd,1,kinglear,1603 future,1,kinglear,1603 Five,1,kinglear,1603 lubber's,1,kinglear,1603 smiling,1,kinglear,1603 imprisoned,1,kinglear,1603 Camelot,1,kinglear,1603 forces,1,kinglear,1603 starve,1,kinglear,1603 Dogs,1,kinglear,1603 Another,1,kinglear,1603 spits,1,kinglear,1603 dismiss'd,1,kinglear,1603 ALBANY's,1,kinglear,1603 forked,1,kinglear,1603 compounded,1,kinglear,1603 cleaving,1,kinglear,1603 warlike,1,kinglear,1603 dealing,1,kinglear,1603 correction,1,kinglear,1603 Sometime,1,kinglear,1603 headed,1,kinglear,1603 snatching,1,kinglear,1603 swim,1,kinglear,1603 treacherous,1,kinglear,1603 censured,1,kinglear,1603 ounce,1,kinglear,1603 According,1,kinglear,1603 'Affectionate,1,kinglear,1603 sovereign,1,kinglear,1603 ruinous,1,kinglear,1603 comforted,1,kinglear,1603 abuse,1,kinglear,1603 whites,1,kinglear,1603 Degenerate,1,kinglear,1603 Tripp'd,1,kinglear,1603 confirmation,1,kinglear,1603 whip,1,kinglear,1603 fully,1,kinglear,1603 venomously,1,kinglear,1603 body's,1,kinglear,1603 recreant,1,kinglear,1603 monthly,1,kinglear,1603 powerful,1,kinglear,1603 Met,1,kinglear,1603 sprigs,1,kinglear,1603 biting,1,kinglear,1603 thinking,1,kinglear,1603 astronomical,1,kinglear,1603 Rive,1,kinglear,1603 sever'd,1,kinglear,1603 confess'd,1,kinglear,1603 pernicious,1,kinglear,1603 murmuring,1,kinglear,1603 quarrels,1,kinglear,1603 Reverbs,1,kinglear,1603 withdraw,1,kinglear,1603 henceforth,1,kinglear,1603 whipp'st,1,kinglear,1603 strokes,1,kinglear,1603 banner,1,kinglear,1603 physic,1,kinglear,1603 bellow'd,1,kinglear,1603 captives,1,kinglear,1603 justicers,1,kinglear,1603 Pushes,1,kinglear,1603 mourning,1,kinglear,1603 beguile,1,kinglear,1603 lark,1,kinglear,1603 amorous,1,kinglear,1603 telling,1,kinglear,1603 sometimes,1,kinglear,1603 terror,1,kinglear,1603 respects,1,kinglear,1603 Singe,1,kinglear,1603 nativity,1,kinglear,1603 Pierce,1,kinglear,1603 politic,1,kinglear,1603 phrase,1,kinglear,1603 lash,1,kinglear,1603 lym,1,kinglear,1603 credit,1,kinglear,1603 flay,1,kinglear,1603 flax,1,kinglear,1603 plucks,1,kinglear,1603 flat,1,kinglear,1603 spill,1,kinglear,1603 Produce,1,kinglear,1603 inherit,1,kinglear,1603 diffidences,1,kinglear,1603 sterility,1,kinglear,1603 tameness,1,kinglear,1603 lawyer,1,kinglear,1603 impertinency,1,kinglear,1603 fitness,1,kinglear,1603 farmhouse,1,kinglear,1603 throwing,1,kinglear,1603 dishonour'd,1,kinglear,1603 Looking,1,kinglear,1603 pranks,1,kinglear,1603 hush,1,kinglear,1603 Reason,1,kinglear,1603 peep,1,kinglear,1603 extend,1,kinglear,1603 gets,1,kinglear,1603 list,1,kinglear,1603 revenged,1,kinglear,1603 levied,1,kinglear,1603 curfew,1,kinglear,1603 divinity,1,kinglear,1603 breaking,1,kinglear,1603 were't,1,kinglear,1603 Winter's,1,kinglear,1603 unsettle,1,kinglear,1603 villages,1,kinglear,1603 chatter,1,kinglear,1603 venge,1,kinglear,1603 bias,1,kinglear,1603 unspoke,1,kinglear,1603 urges,1,kinglear,1603 books,1,kinglear,1603 entreaty,1,kinglear,1603 defiles,1,kinglear,1603 urged,1,kinglear,1603 leading,1,kinglear,1603 Goose,1,kinglear,1603 try,1,kinglear,1603 frank,1,kinglear,1603 pight,1,kinglear,1603 sentence,1,kinglear,1603 mouths,1,kinglear,1603 unsanctified,1,kinglear,1603 Truth's,1,kinglear,1603 risen,1,kinglear,1603 leads,1,kinglear,1603 interess'd,1,kinglear,1603 World,1,kinglear,1603 rises,1,kinglear,1603 moisten'd,1,kinglear,1603 shaft,1,kinglear,1603 therewithal,1,kinglear,1603 expense,1,kinglear,1603 brag,1,kinglear,1603 pattern,1,kinglear,1603 laid,1,kinglear,1603 Lurk,1,kinglear,1603 Fairest,1,kinglear,1603 confirm,1,kinglear,1603 glares,1,kinglear,1603 wrathful,1,kinglear,1603 portable,1,kinglear,1603 pell,1,kinglear,1603 pebbles,1,kinglear,1603 confine,1,kinglear,1603 dart,1,kinglear,1603 nightingale,1,kinglear,1603 honour's,1,kinglear,1603 Gracious,1,kinglear,1603 however,1,kinglear,1603 holla,1,kinglear,1603 lake,1,kinglear,1603 Detested,1,kinglear,1603 toe,1,kinglear,1603 weight,1,kinglear,1603 sudden,1,kinglear,1603 stratagem,1,kinglear,1603 catch,1,kinglear,1603 lord's,1,kinglear,1603 humbled,1,kinglear,1603 pelican,1,kinglear,1603 assaulted,1,kinglear,1603 pent,1,kinglear,1603 destroy,1,kinglear,1603 privily,1,kinglear,1603 'faith,1,kinglear,1603 hoping,1,kinglear,1603 fordone,1,kinglear,1603 globe,1,kinglear,1603 hotly,1,kinglear,1603 fellowship,1,kinglear,1603 inched,1,kinglear,1603 Preferment,1,kinglear,1603 proclamation,1,kinglear,1603 poisons,1,kinglear,1603 mum,1,kinglear,1603 mun,1,kinglear,1603 needed,1,kinglear,1603 cowish,1,kinglear,1603 servest,1,kinglear,1603 mature,1,kinglear,1603 DRAMATIS,1,kinglear,1603 slew,1,kinglear,1603 whores,1,kinglear,1603 success,1,kinglear,1603 shift,1,kinglear,1603 gored,1,kinglear,1603 cozener,1,kinglear,1603 tie,1,kinglear,1603 altitude,1,kinglear,1603 rescue,1,kinglear,1603 physician,1,kinglear,1603 Mum,1,kinglear,1603 window'd,1,kinglear,1603 vex'd,1,kinglear,1603 flown,1,kinglear,1603 largest,1,kinglear,1603 tempt,1,kinglear,1603 pendulous,1,kinglear,1603 obedient,1,kinglear,1603 he'll,1,kinglear,1603 Losses,1,kinglear,1603 tired,1,kinglear,1603 he'ld,1,kinglear,1603 wills,1,kinglear,1603 divided,1,kinglear,1603 Ride,1,kinglear,1603 cross,1,kinglear,1603 stol'n,1,kinglear,1603 gorge,1,kinglear,1603 Talk,1,kinglear,1603 private,1,kinglear,1603 drown'd,1,kinglear,1603 Fair,1,kinglear,1603 smelt,1,kinglear,1603 Dry,1,kinglear,1603 boots,1,kinglear,1603 press'd,1,kinglear,1603 arbitrement,1,kinglear,1603 brim,1,kinglear,1603 flakes,1,kinglear,1603 slip,1,kinglear,1603 gloves,1,kinglear,1603 couriers,1,kinglear,1603 lecher,1,kinglear,1603 princess,1,kinglear,1603 mutual,1,kinglear,1603 Reverse,1,kinglear,1603 summoners,1,kinglear,1603 whoremaster,1,kinglear,1603 ten,1,kinglear,1603 Fall,1,kinglear,1603 remorse,1,kinglear,1603 striving,1,kinglear,1603 repair,1,kinglear,1603 shoes,1,kinglear,1603 conjuring,1,kinglear,1603 disbranch,1,kinglear,1603 breathe,1,kinglear,1603 Idle,1,kinglear,1603 cutpurses,1,kinglear,1603 oaths,1,kinglear,1603 flattering,1,kinglear,1603 clotpoll,1,kinglear,1603 lack,1,kinglear,1603 th',1,kinglear,1603 queasy,1,kinglear,1603 tread,1,kinglear,1603 market,1,kinglear,1603 Parted,1,kinglear,1603 bide,1,kinglear,1603 hunting,1,kinglear,1603 selves,1,kinglear,1603 undertake,1,kinglear,1603 crows,1,kinglear,1603 sands,1,kinglear,1603 e'en,1,kinglear,1603 order,1,kinglear,1603 elbows,1,kinglear,1603 o'erwatch'd,1,kinglear,1603 jelly,1,kinglear,1603 squints,1,kinglear,1603 show'st,1,kinglear,1603 unremoveable,1,kinglear,1603 origin,1,kinglear,1603 lust'st,1,kinglear,1603 punished,1,kinglear,1603 Tut,1,kinglear,1603 revoked,1,kinglear,1603 hedge,1,kinglear,1603 Weapons,1,kinglear,1603 exeunt,1,kinglear,1603 remembered,1,kinglear,1603 schoolmaster,1,kinglear,1603 plagues,2,kinglear,1603 heed,2,kinglear,1603 lusty,2,kinglear,1603 forbid,2,kinglear,1603 tripped,2,kinglear,1603 infirm,2,kinglear,1603 ports,2,kinglear,1603 extremity,2,kinglear,1603 fancy,2,kinglear,1603 composition,2,kinglear,1603 apprehend,2,kinglear,1603 for't,2,kinglear,1603 verge,2,kinglear,1603 Fools,2,kinglear,1603 leisure,2,kinglear,1603 country,2,kinglear,1603 foxes,2,kinglear,1603 rat,2,kinglear,1603 wooden,2,kinglear,1603 bones,2,kinglear,1603 hollowness,2,kinglear,1603 labours,2,kinglear,1603 preparation,2,kinglear,1603 GLOUCESTER's,2,kinglear,1603 offended,2,kinglear,1603 assured,2,kinglear,1603 doubtful,2,kinglear,1603 highness',2,kinglear,1603 day's,2,kinglear,1603 express,2,kinglear,1603 helm,2,kinglear,1603 sleeps,2,kinglear,1603 despised,2,kinglear,1603 laughter,2,kinglear,1603 eight,2,kinglear,1603 dependants,2,kinglear,1603 younger,2,kinglear,1603 clothes,2,kinglear,1603 Despite,2,kinglear,1603 trunk,2,kinglear,1603 spake,2,kinglear,1603 violent,2,kinglear,1603 lodging,2,kinglear,1603 decay,2,kinglear,1603 Either,2,kinglear,1603 disease,2,kinglear,1603 prisoner,2,kinglear,1603 while,2,kinglear,1603 gorgeous,2,kinglear,1603 honourable,2,kinglear,1603 Far,2,kinglear,1603 adversary,2,kinglear,1603 allowance,2,kinglear,1603 fury,2,kinglear,1603 drink,2,kinglear,1603 nought,2,kinglear,1603 laugh,2,kinglear,1603 prey,2,kinglear,1603 terrible,2,kinglear,1603 patron,2,kinglear,1603 sore,2,kinglear,1603 pleasures,2,kinglear,1603 become,2,kinglear,1603 goest,2,kinglear,1603 proclaim,2,kinglear,1603 saved,2,kinglear,1603 cart,2,kinglear,1603 worser,2,kinglear,1603 practised,2,kinglear,1603 chin,2,kinglear,1603 bending,2,kinglear,1603 graces,2,kinglear,1603 sad,2,kinglear,1603 Fellow,2,kinglear,1603 drive,2,kinglear,1603 spies,2,kinglear,1603 slept,2,kinglear,1603 confusion,2,kinglear,1603 charms,2,kinglear,1603 bearing,2,kinglear,1603 opposed,2,kinglear,1603 broken,2,kinglear,1603 Pillicock,2,kinglear,1603 horror,2,kinglear,1603 Knights,2,kinglear,1603 possesses,2,kinglear,1603 plight,2,kinglear,1603 Remember,2,kinglear,1603 Know'st,2,kinglear,1603 aroint,2,kinglear,1603 drew,2,kinglear,1603 enemy's,2,kinglear,1603 Only,2,kinglear,1603 cheek,2,kinglear,1603 dissolve,2,kinglear,1603 gross,2,kinglear,1603 breaks,2,kinglear,1603 soft,2,kinglear,1603 richer,2,kinglear,1603 stealth,2,kinglear,1603 deserve,2,kinglear,1603 six,2,kinglear,1603 wage,2,kinglear,1603 compliment,2,kinglear,1603 speeches,2,kinglear,1603 warrant,2,kinglear,1603 Beyond,2,kinglear,1603 think'st,2,kinglear,1603 subdued,2,kinglear,1603 tooth,2,kinglear,1603 deprived,2,kinglear,1603 landed,2,kinglear,1603 Thou'ldst,2,kinglear,1603 yield,2,kinglear,1603 spy,2,kinglear,1603 nine,2,kinglear,1603 deliver,2,kinglear,1603 embrace,2,kinglear,1603 Himself,2,kinglear,1603 justicer,2,kinglear,1603 Farewell,2,kinglear,1603 raised,2,kinglear,1603 follower,2,kinglear,1603 looking,2,kinglear,1603 it's,2,kinglear,1603 qualified,2,kinglear,1603 pieces,2,kinglear,1603 dowers,2,kinglear,1603 bewray,2,kinglear,1603 savour,2,kinglear,1603 colder,2,kinglear,1603 merit,2,kinglear,1603 wrote,2,kinglear,1603 snow,2,kinglear,1603 brain,2,kinglear,1603 blooded,2,kinglear,1603 skies,2,kinglear,1603 ways,2,kinglear,1603 differences,2,kinglear,1603 Whereof,2,kinglear,1603 kill'd,2,kinglear,1603 Turn,2,kinglear,1603 loathed,2,kinglear,1603 terms,2,kinglear,1603 affected,2,kinglear,1603 commit,2,kinglear,1603 Sound,2,kinglear,1603 eldest,2,kinglear,1603 Pardon,2,kinglear,1603 Wherein,2,kinglear,1603 princes,2,kinglear,1603 cries,2,kinglear,1603 brach,2,kinglear,1603 poorest,2,kinglear,1603 fearful,2,kinglear,1603 feet,2,kinglear,1603 beaten,2,kinglear,1603 'Faith,2,kinglear,1603 masters,2,kinglear,1603 cuckoo,2,kinglear,1603 weather,2,kinglear,1603 choose,2,kinglear,1603 prevent,2,kinglear,1603 bourn,2,kinglear,1603 Hence,2,kinglear,1603 kneel,2,kinglear,1603 Stop,2,kinglear,1603 title,2,kinglear,1603 brand,2,kinglear,1603 hates,2,kinglear,1603 wish,2,kinglear,1603 thrown,2,kinglear,1603 stop,2,kinglear,1603 incense,2,kinglear,1603 loins,2,kinglear,1603 rule,2,kinglear,1603 lunatic,2,kinglear,1603 ruled,2,kinglear,1603 manhood,2,kinglear,1603 French,2,kinglear,1603 praised,2,kinglear,1603 tend,2,kinglear,1603 Follow,2,kinglear,1603 goddess,2,kinglear,1603 conditions,2,kinglear,1603 bin,2,kinglear,1603 wherefore,2,kinglear,1603 ha',2,kinglear,1603 life's,2,kinglear,1603 chamber,2,kinglear,1603 stir,2,kinglear,1603 burning,2,kinglear,1603 unkind,2,kinglear,1603 steward,2,kinglear,1603 eminence,2,kinglear,1603 foes,2,kinglear,1603 measure,2,kinglear,1603 Am,2,kinglear,1603 music,2,kinglear,1603 fogs,2,kinglear,1603 pah,2,kinglear,1603 Whiles,2,kinglear,1603 Throwing,2,kinglear,1603 govern,2,kinglear,1603 houseless,2,kinglear,1603 Those,2,kinglear,1603 shortly,2,kinglear,1603 desperate,2,kinglear,1603 blown,2,kinglear,1603 Still,2,kinglear,1603 smile,2,kinglear,1603 bad,2,kinglear,1603 spout,2,kinglear,1603 ingrateful,2,kinglear,1603 tales,2,kinglear,1603 to't,2,kinglear,1603 shines,2,kinglear,1603 pitied,2,kinglear,1603 diligence,2,kinglear,1603 pawn,2,kinglear,1603 Within,2,kinglear,1603 Something,2,kinglear,1603 medicine,2,kinglear,1603 flowers,2,kinglear,1603 approve,2,kinglear,1603 blest,2,kinglear,1603 quick,2,kinglear,1603 contracted,2,kinglear,1603 zir,2,kinglear,1603 noses,2,kinglear,1603 pin,2,kinglear,1603 treachery,2,kinglear,1603 Almost,2,kinglear,1603 step,2,kinglear,1603 VI,2,kinglear,1603 curled,2,kinglear,1603 begot,2,kinglear,1603 conjunct,2,kinglear,1603 sought,2,kinglear,1603 madmen,2,kinglear,1603 gold,2,kinglear,1603 drunkards,2,kinglear,1603 valiant,2,kinglear,1603 dressed,2,kinglear,1603 sith,2,kinglear,1603 challenge,2,kinglear,1603 bend,2,kinglear,1603 Allow,2,kinglear,1603 rebel,2,kinglear,1603 control,2,kinglear,1603 cat,2,kinglear,1603 prisoners,2,kinglear,1603 'tween,2,kinglear,1603 Flibbertigibbet,2,kinglear,1603 bent,2,kinglear,1603 Behold,2,kinglear,1603 jealous,2,kinglear,1603 Tucket,2,kinglear,1603 suddenly,2,kinglear,1603 serpent,2,kinglear,1603 friendly,2,kinglear,1603 anguish,2,kinglear,1603 degree,2,kinglear,1603 beget,2,kinglear,1603 buy,2,kinglear,1603 longer,2,kinglear,1603 crack'd,2,kinglear,1603 sing,2,kinglear,1603 stretch,2,kinglear,1603 Got,2,kinglear,1603 owest,2,kinglear,1603 afoot,2,kinglear,1603 Modo,2,kinglear,1603 Holla,2,kinglear,1603 reservation,2,kinglear,1603 retain,2,kinglear,1603 excellent,2,kinglear,1603 dispositions,2,kinglear,1603 Advise,2,kinglear,1603 tithing,2,kinglear,1603 murderous,2,kinglear,1603 Apollo,2,kinglear,1603 tongues,2,kinglear,1603 stone,2,kinglear,1603 gait,2,kinglear,1603 seeming,2,kinglear,1603 dower,2,kinglear,1603 gall,2,kinglear,1603 torches,2,kinglear,1603 nicely,2,kinglear,1603 ay,2,kinglear,1603 comforts,2,kinglear,1603 prediction,2,kinglear,1603 crab,2,kinglear,1603 privilege,2,kinglear,1603 approach,2,kinglear,1603 manner,2,kinglear,1603 forget,2,kinglear,1603 doom,2,kinglear,1603 realm,2,kinglear,1603 portend,2,kinglear,1603 disorder'd,2,kinglear,1603 cliff,2,kinglear,1603 commend,2,kinglear,1603 month,2,kinglear,1603 bodies,2,kinglear,1603 delay,2,kinglear,1603 necessity,2,kinglear,1603 Told,2,kinglear,1603 Myself,2,kinglear,1603 produce,2,kinglear,1603 temper,2,kinglear,1603 'twould,2,kinglear,1603 crimes,2,kinglear,1603 loves,2,kinglear,1603 Yea,2,kinglear,1603 speak'st,2,kinglear,1603 ample,2,kinglear,1603 wherein,2,kinglear,1603 brutish,2,kinglear,1603 greater,2,kinglear,1603 nimble,2,kinglear,1603 show'd,2,kinglear,1603 forgot,2,kinglear,1603 serious,2,kinglear,1603 slack,2,kinglear,1603 men's,2,kinglear,1603 toad,2,kinglear,1603 harm,2,kinglear,1603 valour,2,kinglear,1603 eats,2,kinglear,1603 running,2,kinglear,1603 easy,2,kinglear,1603 descry,2,kinglear,1603 manifold,2,kinglear,1603 Read,2,kinglear,1603 husband's,2,kinglear,1603 natural,2,kinglear,1603 acknowledge,2,kinglear,1603 hang,2,kinglear,1603 Follow'd,2,kinglear,1603 Pluck,2,kinglear,1603 shun,2,kinglear,1603 Lady,2,kinglear,1603 liberty,2,kinglear,1603 mighty,2,kinglear,1603 praise,2,kinglear,1603 perpetual,2,kinglear,1603 Hum,2,kinglear,1603 form,2,kinglear,1603 return'd,2,kinglear,1603 fiery,2,kinglear,1603 mock,2,kinglear,1603 apt,2,kinglear,1603 Prepare,2,kinglear,1603 detested,2,kinglear,1603 rough,2,kinglear,1603 tyranny,2,kinglear,1603 revenge,2,kinglear,1603 ass,2,kinglear,1603 Alarum,2,kinglear,1603 rightly,2,kinglear,1603 ingratitude,2,kinglear,1603 Kind,2,kinglear,1603 thanks,2,kinglear,1603 deadly,2,kinglear,1603 Again,2,kinglear,1603 cheque,2,kinglear,1603 enemies,2,kinglear,1603 trial,2,kinglear,1603 enjoy,2,kinglear,1603 having,2,kinglear,1603 superfluous,2,kinglear,1603 march,2,kinglear,1603 compact,2,kinglear,1603 nobles,2,kinglear,1603 tough,2,kinglear,1603 fitly,2,kinglear,1603 leap,2,kinglear,1603 hawthorn,2,kinglear,1603 main,2,kinglear,1603 scant,2,kinglear,1603 report,2,kinglear,1603 Canst,2,kinglear,1603 build,2,kinglear,1603 dowerless,2,kinglear,1603 faith,2,kinglear,1603 Half,2,kinglear,1603 Back,2,kinglear,1603 beast,2,kinglear,1603 wakes,2,kinglear,1603 wonder,2,kinglear,1603 proceed,2,kinglear,1603 action,2,kinglear,1603 saucily,2,kinglear,1603 Hang,2,kinglear,1603 deserving,2,kinglear,1603 rats,2,kinglear,1603 Britain,2,kinglear,1603 riots,2,kinglear,1603 rash,2,kinglear,1603 ours,2,kinglear,1603 traitors,2,kinglear,1603 overtake,2,kinglear,1603 pregnant,2,kinglear,1603 Love,2,kinglear,1603 substance,2,kinglear,1603 Striking,2,kinglear,1603 Sit,2,kinglear,1603 visage,2,kinglear,1603 mate,2,kinglear,1603 Royal,2,kinglear,1603 you'll,2,kinglear,1603 loses,2,kinglear,1603 who's,2,kinglear,1603 ignorant,2,kinglear,1603 Set,2,kinglear,1603 youth,2,kinglear,1603 several,2,kinglear,1603 See,2,kinglear,1603 strife,2,kinglear,1603 leaves,2,kinglear,1603 benison,2,kinglear,1603 fares,2,kinglear,1603 singing,2,kinglear,1603 varlet,2,kinglear,1603 prize,2,kinglear,1603 mightst,2,kinglear,1603 shield,2,kinglear,1603 Persuade,2,kinglear,1603 purposed,2,kinglear,1603 already,2,kinglear,1603 chair,2,kinglear,1603 arraign,2,kinglear,1603 Could,2,kinglear,1603 skip,2,kinglear,1603 dearest,2,kinglear,1603 woe,2,kinglear,1603 blow,2,kinglear,1603 brains,2,kinglear,1603 craves,2,kinglear,1603 labour,2,kinglear,1603 ruffle,2,kinglear,1603 heaven's,2,kinglear,1603 unnecessary,2,kinglear,1603 number,2,kinglear,1603 Cornwall's,2,kinglear,1603 horrible,2,kinglear,1603 stake,2,kinglear,1603 wet,2,kinglear,1603 scanted,2,kinglear,1603 breed,2,kinglear,1603 close,2,kinglear,1603 duchess,2,kinglear,1603 sake,2,kinglear,1603 Mahu,2,kinglear,1603 relieved,2,kinglear,1603 cure,2,kinglear,1603 pretence,2,kinglear,1603 woes,2,kinglear,1603 knife,2,kinglear,1603 hears,2,kinglear,1603 loving,2,kinglear,1603 bandy,2,kinglear,1603 influence,2,kinglear,1603 closet,2,kinglear,1603 'no',2,kinglear,1603 dunghill,2,kinglear,1603 Sure,2,kinglear,1603 negligence,2,kinglear,1603 save,2,kinglear,1603 mice,2,kinglear,1603 speedily,2,kinglear,1603 Think,2,kinglear,1603 nether,2,kinglear,1603 blasts,2,kinglear,1603 'The,2,kinglear,1603 stick,2,kinglear,1603 stage,2,kinglear,1603 war,2,kinglear,1603 imperfect,2,kinglear,1603 Can,2,kinglear,1603 barbarous,2,kinglear,1603 they'll,2,kinglear,1603 apace,2,kinglear,1603 wont,2,kinglear,1603 villains,2,kinglear,1603 Sister,2,kinglear,1603 belly,2,kinglear,1603 bounty,2,kinglear,1603 caught,2,kinglear,1603 notice,2,kinglear,1603 faces,2,kinglear,1603 seize,2,kinglear,1603 served,2,kinglear,1603 vicious,2,kinglear,1603 require,2,kinglear,1603 opposite,2,kinglear,1603 dull,2,kinglear,1603 whistle,2,kinglear,1603 farther,2,kinglear,1603 beguiled,2,kinglear,1603 disorders,2,kinglear,1603 clout,2,kinglear,1603 stirs,2,kinglear,1603 wrong'd,2,kinglear,1603 fail,2,kinglear,1603 hideous,2,kinglear,1603 contempt,2,kinglear,1603 wholesome,2,kinglear,1603 ground,2,kinglear,1603 character,2,kinglear,1603 messengers,2,kinglear,1603 Brother,2,kinglear,1603 miracle,2,kinglear,1603 cares,2,kinglear,1603 acknowledged,2,kinglear,1603 Hadst,2,kinglear,1603 wert,2,kinglear,1603 Jupiter,2,kinglear,1603 returns,2,kinglear,1603 pleased,2,kinglear,1603 worm,2,kinglear,1603 wickedness,2,kinglear,1603 allow,2,kinglear,1603 Sweet,2,kinglear,1603 restrain'd,2,kinglear,1603 vor,2,kinglear,1603 perfect,2,kinglear,1603 fine,2,kinglear,1603 safety,2,kinglear,1603 punish'd,2,kinglear,1603 minded,2,kinglear,1603 host,2,kinglear,1603 ta'en,2,kinglear,1603 shown,2,kinglear,1603 wide,2,kinglear,1603 tail,2,kinglear,1603 shows,2,kinglear,1603 bite,2,kinglear,1603 poison'd,2,kinglear,1603 depart,2,kinglear,1603 perceive,2,kinglear,1603 betters,2,kinglear,1603 censure,2,kinglear,1603 meaning,2,kinglear,1603 friendship,2,kinglear,1603 Very,2,kinglear,1603 tame,2,kinglear,1603 fast,2,kinglear,1603 large,2,kinglear,1603 named,2,kinglear,1603 Each,2,kinglear,1603 Ch'ill,2,kinglear,1603 trumpets,2,kinglear,1603 Welcome,2,kinglear,1603 Beloved,2,kinglear,1603 constant,2,kinglear,1603 bans,2,kinglear,1603 arm'd,2,kinglear,1603 affliction,2,kinglear,1603 bind,2,kinglear,1603 stroke,2,kinglear,1603 dangerous,2,kinglear,1603 cur,2,kinglear,1603 Although,2,kinglear,1603 fires,2,kinglear,1603 Fiery,2,kinglear,1603 subscribed,2,kinglear,1603 virtues,2,kinglear,1603 prayers,2,kinglear,1603 manage,2,kinglear,1603 hairs,2,kinglear,1603 loo,2,kinglear,1603 always,2,kinglear,1603 captain,2,kinglear,1603 serviceable,2,kinglear,1603 needful,2,kinglear,1603 approves,2,kinglear,1603 knowest,2,kinglear,1603 presence,2,kinglear,1603 cod,2,kinglear,1603 harmful,2,kinglear,1603 look'd,2,kinglear,1603 sees,2,kinglear,1603 valued,2,kinglear,1603 condition,2,kinglear,1603 period,2,kinglear,1603 liking,2,kinglear,1603 Mine,2,kinglear,1603 fellows,2,kinglear,1603 prophecy,2,kinglear,1603 True,2,kinglear,1603 troop,2,kinglear,1603 heavenly,2,kinglear,1603 divisions,2,kinglear,1603 He'll,2,kinglear,1603 modest,2,kinglear,1603 'twill,2,kinglear,1603 tree,2,kinglear,1603 loyalty,2,kinglear,1603 Through,2,kinglear,1603 lovest,2,kinglear,1603 badness,2,kinglear,1603 glove,2,kinglear,1603 Use,2,kinglear,1603 Cry,2,kinglear,1603 post,2,kinglear,1603 oppose,2,kinglear,1603 bleeding,2,kinglear,1603 roaring,2,kinglear,1603 mother's,2,kinglear,1603 undo,2,kinglear,1603 contemn'd,2,kinglear,1603 match,2,kinglear,1603 blast,2,kinglear,1603 aright,2,kinglear,1603 lip,2,kinglear,1603 sheets,2,kinglear,1603 evening,2,kinglear,1603 sounded,2,kinglear,1603 abroad,2,kinglear,1603 comfortable,2,kinglear,1603 conduct,2,kinglear,1603 reward,2,kinglear,1603 burst,2,kinglear,1603 doing,2,kinglear,1603 travell'd,2,kinglear,1603 upward,2,kinglear,1603 meeting,2,kinglear,1603 EARL,2,kinglear,1603 employment,2,kinglear,1603 determine,2,kinglear,1603 pleasant,2,kinglear,1603 ladies,2,kinglear,1603 Men,2,kinglear,1603 Great,2,kinglear,1603 fled,2,kinglear,1603 punishment,2,kinglear,1603 liege,2,kinglear,1603 lion,2,kinglear,1603 Marry,2,kinglear,1603 revenges,2,kinglear,1603 VII,2,kinglear,1603 beauty,2,kinglear,1603 Without,2,kinglear,1603 besides,2,kinglear,1603 suited,2,kinglear,1603 squire,2,kinglear,1603 intelligent,2,kinglear,1603 appetite,2,kinglear,1603 pelting,2,kinglear,1603 Lend,2,kinglear,1603 fathom,2,kinglear,1603 daub,2,kinglear,1603 conflict,2,kinglear,1603 silent,2,kinglear,1603 assurance,2,kinglear,1603 Death,2,kinglear,1603 simple,2,kinglear,1603 'This,2,kinglear,1603 spring,2,kinglear,1603 forgiveness,2,kinglear,1603 widow,2,kinglear,1603 cover'd,2,kinglear,1603 honour'd,2,kinglear,1603 sulphurous,2,kinglear,1603 frame,2,kinglear,1603 miseries,2,kinglear,1603 bred,2,kinglear,1603 liest,2,kinglear,1603 reverend,2,kinglear,1603 instantly,2,kinglear,1603 Until,2,kinglear,1603 guests,2,kinglear,1603 Bind,2,kinglear,1603 filthy,2,kinglear,1603 Too,2,kinglear,1603 dame,2,kinglear,1603 awake,2,kinglear,1603 False,2,kinglear,1603 Find,2,kinglear,1603 intends,2,kinglear,1603 turn'd,2,kinglear,1603 women,2,kinglear,1603 treason,3,kinglear,1603 parted,3,kinglear,1603 grew,3,kinglear,1603 suffer,3,kinglear,1603 days,3,kinglear,1603 fathers,3,kinglear,1603 weary,3,kinglear,1603 wears,3,kinglear,1603 peasant,3,kinglear,1603 woman's,3,kinglear,1603 Fie,3,kinglear,1603 gray,3,kinglear,1603 wicked,3,kinglear,1603 honours,3,kinglear,1603 lawful,3,kinglear,1603 alack,3,kinglear,1603 support,3,kinglear,1603 health,3,kinglear,1603 Bear,3,kinglear,1603 joy,3,kinglear,1603 proclaim'd,3,kinglear,1603 hell,3,kinglear,1603 Stay,3,kinglear,1603 truly,3,kinglear,1603 vain,3,kinglear,1603 offer,3,kinglear,1603 understand,3,kinglear,1603 Albany's,3,kinglear,1603 horrid,3,kinglear,1603 soul,3,kinglear,1603 lies,3,kinglear,1603 advise,3,kinglear,1603 remain,3,kinglear,1603 cheeks,3,kinglear,1603 Oswald,3,kinglear,1603 charge,3,kinglear,1603 seven,3,kinglear,1603 sons,3,kinglear,1603 grown,3,kinglear,1603 grows,3,kinglear,1603 sorrows,3,kinglear,1603 Keep,3,kinglear,1603 heat,3,kinglear,1603 knaves,3,kinglear,1603 making,3,kinglear,1603 noise,3,kinglear,1603 Get,3,kinglear,1603 aged,3,kinglear,1603 key,3,kinglear,1603 walk,3,kinglear,1603 wall,3,kinglear,1603 yeoman,3,kinglear,1603 wake,3,kinglear,1603 'twas,3,kinglear,1603 sworn,3,kinglear,1603 subject,3,kinglear,1603 study,3,kinglear,1603 beloved,3,kinglear,1603 faults,3,kinglear,1603 benediction,3,kinglear,1603 felt,3,kinglear,1603 monster,3,kinglear,1603 profess,3,kinglear,1603 common,3,kinglear,1603 Leave,3,kinglear,1603 brief,3,kinglear,1603 speaking,3,kinglear,1603 nails,3,kinglear,1603 night's,3,kinglear,1603 dearer,3,kinglear,1603 hated,3,kinglear,1603 Fetch,3,kinglear,1603 seem'd,3,kinglear,1603 pierce,3,kinglear,1603 pretty,3,kinglear,1603 breeding,3,kinglear,1603 boot,3,kinglear,1603 desire,3,kinglear,1603 parts,3,kinglear,1603 bit,3,kinglear,1603 authority,3,kinglear,1603 crack,3,kinglear,1603 altogether,3,kinglear,1603 therefore,3,kinglear,1603 bow,3,kinglear,1603 suffers,3,kinglear,1603 among,3,kinglear,1603 bar,3,kinglear,1603 Singing,3,kinglear,1603 cruel,3,kinglear,1603 creature,3,kinglear,1603 star,3,kinglear,1603 hid,3,kinglear,1603 tear,3,kinglear,1603 bless,3,kinglear,1603 fortune's,3,kinglear,1603 despair,3,kinglear,1603 play,3,kinglear,1603 sport,3,kinglear,1603 past,3,kinglear,1603 tenant,3,kinglear,1603 monstrous,3,kinglear,1603 heads,3,kinglear,1603 whore,3,kinglear,1603 got,3,kinglear,1603 kindness,3,kinglear,1603 cap,3,kinglear,1603 struck,3,kinglear,1603 learned,3,kinglear,1603 weak,3,kinglear,1603 Save,3,kinglear,1603 treasons,3,kinglear,1603 sustain,3,kinglear,1603 shadow,3,kinglear,1603 Put,3,kinglear,1603 Dies,3,kinglear,1603 eclipses,3,kinglear,1603 used,3,kinglear,1603 Like,3,kinglear,1603 'Twas,3,kinglear,1603 hourly,3,kinglear,1603 ashamed,3,kinglear,1603 turns,3,kinglear,1603 crowns,3,kinglear,1603 affection,3,kinglear,1603 forgive,3,kinglear,1603 image,3,kinglear,1603 Fortune,3,kinglear,1603 beat,3,kinglear,1603 yes,3,kinglear,1603 speed,3,kinglear,1603 door,3,kinglear,1603 banished,3,kinglear,1603 prosper,3,kinglear,1603 know't,3,kinglear,1603 eyeless,3,kinglear,1603 whereof,3,kinglear,1603 idle,3,kinglear,1603 sometime,3,kinglear,1603 Reads,3,kinglear,1603 Because,3,kinglear,1603 plot,3,kinglear,1603 speaks,3,kinglear,1603 basest,3,kinglear,1603 sa,3,kinglear,1603 weeds,3,kinglear,1603 call'd,3,kinglear,1603 trade,3,kinglear,1603 She's,3,kinglear,1603 vengeance,3,kinglear,1603 neglect,3,kinglear,1603 footed,3,kinglear,1603 frown,3,kinglear,1603 stones,3,kinglear,1603 dreadful,3,kinglear,1603 fall'n,3,kinglear,1603 duke's,3,kinglear,1603 object,3,kinglear,1603 fond,3,kinglear,1603 Hast,3,kinglear,1603 beggars,3,kinglear,1603 King,3,kinglear,1603 Hark,3,kinglear,1603 touch,3,kinglear,1603 Ask,3,kinglear,1603 delicate,3,kinglear,1603 perceived,3,kinglear,1603 Bedlam,3,kinglear,1603 keeps,3,kinglear,1603 DUKE,3,kinglear,1603 tarry,3,kinglear,1603 rank,3,kinglear,1603 mischief,3,kinglear,1603 clamour,3,kinglear,1603 Better,3,kinglear,1603 nose,3,kinglear,1603 gentle,3,kinglear,1603 waked,3,kinglear,1603 gavest,3,kinglear,1603 noon,3,kinglear,1603 Pointing,3,kinglear,1603 below,3,kinglear,1603 Flourish,3,kinglear,1603 bears,3,kinglear,1603 slain,3,kinglear,1603 philosopher,3,kinglear,1603 borne,3,kinglear,1603 quickly,3,kinglear,1603 dares,3,kinglear,1603 say'st,3,kinglear,1603 Doth,3,kinglear,1603 doors,3,kinglear,1603 exchange,3,kinglear,1603 soldiers,3,kinglear,1603 purposes,3,kinglear,1603 coward,3,kinglear,1603 injuries,3,kinglear,1603 thief,3,kinglear,1603 trifle,3,kinglear,1603 Made,3,kinglear,1603 disguised,3,kinglear,1603 Horns,3,kinglear,1603 division,3,kinglear,1603 wrath,3,kinglear,1603 ones,3,kinglear,1603 opinion,3,kinglear,1603 grave,3,kinglear,1603 wrongs,3,kinglear,1603 neck,3,kinglear,1603 banishment,3,kinglear,1603 throw,3,kinglear,1603 sides,3,kinglear,1603 youngest,3,kinglear,1603 Thus,3,kinglear,1603 dust,3,kinglear,1603 believe,3,kinglear,1603 tailor,3,kinglear,1603 intend,3,kinglear,1603 rags,3,kinglear,1603 mongrel,3,kinglear,1603 hair,3,kinglear,1603 fix'd,3,kinglear,1603 taken,3,kinglear,1603 what's,3,kinglear,1603 Hail,3,kinglear,1603 anger,3,kinglear,1603 fox,3,kinglear,1603 followers,3,kinglear,1603 glad,3,kinglear,1603 Strike,3,kinglear,1603 curiosity,3,kinglear,1603 Mark,3,kinglear,1603 Shut,3,kinglear,1603 rich,3,kinglear,1603 folly,3,kinglear,1603 particular,3,kinglear,1603 bark,3,kinglear,1603 duties,3,kinglear,1603 lordship,3,kinglear,1603 gilded,3,kinglear,1603 kiss,3,kinglear,1603 cock,3,kinglear,1603 plainness,3,kinglear,1603 names,3,kinglear,1603 tale,3,kinglear,1603 thousand,3,kinglear,1603 sojourn,3,kinglear,1603 convey,3,kinglear,1603 holy,3,kinglear,1603 quit,3,kinglear,1603 unto,3,kinglear,1603 strong,3,kinglear,1603 provision,3,kinglear,1603 convenient,3,kinglear,1603 commission,3,kinglear,1603 contents,3,kinglear,1603 goodness,3,kinglear,1603 Seek,3,kinglear,1603 either,3,kinglear,1603 feeling,3,kinglear,1603 'twixt,3,kinglear,1603 coxcombs,3,kinglear,1603 corn,3,kinglear,1603 Know,3,kinglear,1603 wretches,3,kinglear,1603 hours,3,kinglear,1603 wretched,3,kinglear,1603 dislike,3,kinglear,1603 tied,3,kinglear,1603 howl,3,kinglear,1603 bestow,3,kinglear,1603 servants,3,kinglear,1603 eat,3,kinglear,1603 honesty,3,kinglear,1603 vices,3,kinglear,1603 begins,3,kinglear,1603 learn,3,kinglear,1603 Does,3,kinglear,1603 rights,3,kinglear,1603 thoughts,3,kinglear,1603 lips,3,kinglear,1603 fashion,3,kinglear,1603 on's,3,kinglear,1603 severally,3,kinglear,1603 harms,3,kinglear,1603 asleep,3,kinglear,1603 dry,3,kinglear,1603 dotage,3,kinglear,1603 behold,3,kinglear,1603 Kneeling,3,kinglear,1603 command,3,kinglear,1603 justly,3,kinglear,1603 forbear,3,kinglear,1603 sharp,3,kinglear,1603 monsters,3,kinglear,1603 sway,3,kinglear,1603 guard,4,kinglear,1603 Stands,4,kinglear,1603 writ,4,kinglear,1603 haste,4,kinglear,1603 space,4,kinglear,1603 speedy,4,kinglear,1603 Tell,4,kinglear,1603 darkness,4,kinglear,1603 hers,4,kinglear,1603 Help,4,kinglear,1603 naked,4,kinglear,1603 maintain,4,kinglear,1603 thou'lt,4,kinglear,1603 case,4,kinglear,1603 camp,4,kinglear,1603 madness,4,kinglear,1603 glass,4,kinglear,1603 addition,4,kinglear,1603 riotous,4,kinglear,1603 she's,4,kinglear,1603 sit,4,kinglear,1603 light,4,kinglear,1603 fell,4,kinglear,1603 counsel,4,kinglear,1603 countenance,4,kinglear,1603 's,4,kinglear,1603 middle,4,kinglear,1603 mother,4,kinglear,1603 betwixt,4,kinglear,1603 reverence,4,kinglear,1603 cease,4,kinglear,1603 Might,4,kinglear,1603 know'st,4,kinglear,1603 bold,4,kinglear,1603 bond,4,kinglear,1603 cunning,4,kinglear,1603 mean,4,kinglear,1603 wast,4,kinglear,1603 party,4,kinglear,1603 spoke,4,kinglear,1603 tent,4,kinglear,1603 Draw,4,kinglear,1603 bitter,4,kinglear,1603 sick,4,kinglear,1603 each,4,kinglear,1603 senses,4,kinglear,1603 knowledge,4,kinglear,1603 I',4,kinglear,1603 manners,4,kinglear,1603 Hold,4,kinglear,1603 offend,4,kinglear,1603 legitimate,4,kinglear,1603 quarrel,4,kinglear,1603 blows,4,kinglear,1603 Stand,4,kinglear,1603 proof,4,kinglear,1603 finds,4,kinglear,1603 beg,4,kinglear,1603 dinner,4,kinglear,1603 revenue,4,kinglear,1603 earl,4,kinglear,1603 sorry,4,kinglear,1603 straw,4,kinglear,1603 difference,4,kinglear,1603 children,4,kinglear,1603 fifty,4,kinglear,1603 twice,4,kinglear,1603 curse,4,kinglear,1603 gate,4,kinglear,1603 sister's,4,kinglear,1603 Both,4,kinglear,1603 begin,4,kinglear,1603 dogs,4,kinglear,1603 deep,4,kinglear,1603 wretch,4,kinglear,1603 ha,4,kinglear,1603 Cannot,4,kinglear,1603 sheep,4,kinglear,1603 safe,4,kinglear,1603 legs,4,kinglear,1603 lady's,4,kinglear,1603 Second,4,kinglear,1603 commands,4,kinglear,1603 choice,4,kinglear,1603 fierce,4,kinglear,1603 field,4,kinglear,1603 messenger,4,kinglear,1603 appears,4,kinglear,1603 deny,4,kinglear,1603 pluck,4,kinglear,1603 whether,4,kinglear,1603 open,4,kinglear,1603 harder,4,kinglear,1603 pain,4,kinglear,1603 money,4,kinglear,1603 point,4,kinglear,1603 twain,4,kinglear,1603 bosom,4,kinglear,1603 alive,4,kinglear,1603 rogue,4,kinglear,1603 scarcely,4,kinglear,1603 Attendant,4,kinglear,1603 Sirrah,4,kinglear,1603 Hath,4,kinglear,1603 often,4,kinglear,1603 garments,4,kinglear,1603 moved,4,kinglear,1603 maid,4,kinglear,1603 hill,4,kinglear,1603 shouldst,4,kinglear,1603 note,4,kinglear,1603 almost,4,kinglear,1603 tender,4,kinglear,1603 hide,4,kinglear,1603 year,4,kinglear,1603 dukes,4,kinglear,1603 misery,4,kinglear,1603 Therefore,4,kinglear,1603 awhile,4,kinglear,1603 precious,4,kinglear,1603 yours,4,kinglear,1603 general,4,kinglear,1603 towards,4,kinglear,1603 tempest,4,kinglear,1603 foolish,4,kinglear,1603 egg,4,kinglear,1603 mark,4,kinglear,1603 knows,4,kinglear,1603 issue,4,kinglear,1603 Thee,4,kinglear,1603 Third,4,kinglear,1603 marvel,4,kinglear,1603 one's,4,kinglear,1603 trouble,4,kinglear,1603 Giving,4,kinglear,1603 Were,4,kinglear,1603 rogues,4,kinglear,1603 We'll,4,kinglear,1603 court,4,kinglear,1603 heath,4,kinglear,1603 morrow,4,kinglear,1603 coxcomb,4,kinglear,1603 Say,4,kinglear,1603 heavy,4,kinglear,1603 receive,4,kinglear,1603 oath,4,kinglear,1603 bleed,4,kinglear,1603 pride,4,kinglear,1603 wheel,4,kinglear,1603 Bid,4,kinglear,1603 charged,4,kinglear,1603 wolf,4,kinglear,1603 fain,4,kinglear,1603 evil,4,kinglear,1603 durst,4,kinglear,1603 yond,4,kinglear,1603 company,4,kinglear,1603 palace,4,kinglear,1603 ride,4,kinglear,1603 fie,4,kinglear,1603 passion,4,kinglear,1603 ne'er,4,kinglear,1603 Fare,4,kinglear,1603 herself,4,kinglear,1603 practise,4,kinglear,1603 patient,4,kinglear,1603 hope,4,kinglear,1603 is't,4,kinglear,1603 Lear's,4,kinglear,1603 Earl,4,kinglear,1603 wild,4,kinglear,1603 short,4,kinglear,1603 hearts,4,kinglear,1603 aught,4,kinglear,1603 unkindness,4,kinglear,1603 courtesy,4,kinglear,1603 person,4,kinglear,1603 heels,4,kinglear,1603 prison,4,kinglear,1603 together,4,kinglear,1603 endured,4,kinglear,1603 write,4,kinglear,1603 spirits,4,kinglear,1603 dread,4,kinglear,1603 Since,4,kinglear,1603 follow'd,4,kinglear,1603 content,4,kinglear,1603 Did,4,kinglear,1603 perchance,4,kinglear,1603 due,4,kinglear,1603 blessing,4,kinglear,1603 dispatch,4,kinglear,1603 top,4,kinglear,1603 Bring,4,kinglear,1603 armed,4,kinglear,1603 charity,4,kinglear,1603 bids,4,kinglear,1603 crown,4,kinglear,1603 e'er,4,kinglear,1603 enemy,4,kinglear,1603 Hear,5,kinglear,1603 following,5,kinglear,1603 royal,5,kinglear,1603 Never,5,kinglear,1603 Must,5,kinglear,1603 hearted,5,kinglear,1603 Ere,5,kinglear,1603 calls,5,kinglear,1603 run,5,kinglear,1603 whoreson,5,kinglear,1603 mercy,5,kinglear,1603 strength,5,kinglear,1603 saw,5,kinglear,1603 years,5,kinglear,1603 fools,5,kinglear,1603 black,5,kinglear,1603 Such,5,kinglear,1603 winds,5,kinglear,1603 Was,5,kinglear,1603 Their,5,kinglear,1603 fight,5,kinglear,1603 received,5,kinglear,1603 Out,5,kinglear,1603 born,5,kinglear,1603 falls,5,kinglear,1603 runs,5,kinglear,1603 sun,5,kinglear,1603 above,5,kinglear,1603 blind,5,kinglear,1603 ancient,5,kinglear,1603 seems,5,kinglear,1603 One,5,kinglear,1603 sense,5,kinglear,1603 warm,5,kinglear,1603 voice,5,kinglear,1603 office,5,kinglear,1603 At,5,kinglear,1603 changed,5,kinglear,1603 bid,5,kinglear,1603 Had,5,kinglear,1603 proud,5,kinglear,1603 obey,5,kinglear,1603 behind,5,kinglear,1603 people,5,kinglear,1603 tongue,5,kinglear,1603 favour,5,kinglear,1603 stood,5,kinglear,1603 Bless,5,kinglear,1603 deal,5,kinglear,1603 Return,5,kinglear,1603 thrive,5,kinglear,1603 thyself,5,kinglear,1603 hadst,5,kinglear,1603 endure,5,kinglear,1603 act,5,kinglear,1603 hot,5,kinglear,1603 welcome,5,kinglear,1603 Call,5,kinglear,1603 prince,5,kinglear,1603 drawn,5,kinglear,1603 present,5,kinglear,1603 hate,5,kinglear,1603 ye,5,kinglear,1603 chance,5,kinglear,1603 new,5,kinglear,1603 change,5,kinglear,1603 spoken,5,kinglear,1603 Into,5,kinglear,1603 through,5,kinglear,1603 Against,5,kinglear,1603 indeed,5,kinglear,1603 Peace,5,kinglear,1603 stars,5,kinglear,1603 end,5,kinglear,1603 British,5,kinglear,1603 didst,5,kinglear,1603 beggar,5,kinglear,1603 presently,5,kinglear,1603 let's,5,kinglear,1603 over,5,kinglear,1603 free,5,kinglear,1603 taste,5,kinglear,1603 only,5,kinglear,1603 services,5,kinglear,1603 banish'd,5,kinglear,1603 army,5,kinglear,1603 perforce,5,kinglear,1603 themselves,5,kinglear,1603 brother's,5,kinglear,1603 marry,5,kinglear,1603 lust,5,kinglear,1603 disposition,5,kinglear,1603 Till,5,kinglear,1603 work,5,kinglear,1603 colours,5,kinglear,1603 fly,5,kinglear,1603 bare,5,kinglear,1603 queen,5,kinglear,1603 hour,5,kinglear,1603 comfort,5,kinglear,1603 fare,5,kinglear,1603 talk,5,kinglear,1603 law,5,kinglear,1603 None,5,kinglear,1603 cut,5,kinglear,1603 follows,5,kinglear,1603 Where's,5,kinglear,1603 Wherefore,5,kinglear,1603 swear,5,kinglear,1603 low,5,kinglear,1603 defend,5,kinglear,1603 battle,5,kinglear,1603 sent,5,kinglear,1603 herald,5,kinglear,1603 effects,5,kinglear,1603 mar,5,kinglear,1603 'scape,5,kinglear,1603 straight,5,kinglear,1603 on't,5,kinglear,1603 hurt,5,kinglear,1603 respect,5,kinglear,1603 attend,5,kinglear,1603 dare,5,kinglear,1603 Lest,5,kinglear,1603 certain,5,kinglear,1603 daughters',5,kinglear,1603 obedience,5,kinglear,1603 shape,5,kinglear,1603 wouldst,5,kinglear,1603 V,6,kinglear,1603 took,6,kinglear,1603 mistress,6,kinglear,1603 peace,6,kinglear,1603 rascal,6,kinglear,1603 trust,6,kinglear,1603 cast,6,kinglear,1603 highness,6,kinglear,1603 purse,6,kinglear,1603 teach,6,kinglear,1603 stands,6,kinglear,1603 looks,6,kinglear,1603 These,6,kinglear,1603 piece,6,kinglear,1603 grow,6,kinglear,1603 service,6,kinglear,1603 false,6,kinglear,1603 others,6,kinglear,1603 Albany,6,kinglear,1603 CURAN,6,kinglear,1603 side,6,kinglear,1603 unnatural,6,kinglear,1603 Her,6,kinglear,1603 pleasure,6,kinglear,1603 Let's,6,kinglear,1603 pass,6,kinglear,1603 just,6,kinglear,1603 de,6,kinglear,1603 needs,6,kinglear,1603 hands,6,kinglear,1603 earth,6,kinglear,1603 lose,6,kinglear,1603 twenty,6,kinglear,1603 More,6,kinglear,1603 ask,6,kinglear,1603 foot,6,kinglear,1603 food,6,kinglear,1603 judgment,6,kinglear,1603 Madam,6,kinglear,1603 lords,6,kinglear,1603 sirrah,6,kinglear,1603 mouth,6,kinglear,1603 ere,6,kinglear,1603 inform'd,6,kinglear,1603 oft,6,kinglear,1603 says,6,kinglear,1603 third,6,kinglear,1603 intent,6,kinglear,1603 danger,6,kinglear,1603 happy,6,kinglear,1603 fall,6,kinglear,1603 three,6,kinglear,1603 lay,6,kinglear,1603 given,6,kinglear,1603 carry,6,kinglear,1603 wilt,6,kinglear,1603 Who's,6,kinglear,1603 Herald,6,kinglear,1603 horses,6,kinglear,1603 prithee,6,kinglear,1603 we'll,6,kinglear,1603 entreat,6,kinglear,1603 self,6,kinglear,1603 ear,6,kinglear,1603 least,6,kinglear,1603 remember,6,kinglear,1603 met,6,kinglear,1603 He's,6,kinglear,1603 without,6,kinglear,1603 smell,6,kinglear,1603 spirit,6,kinglear,1603 woman,6,kinglear,1603 fortunes,6,kinglear,1603 quality,7,kinglear,1603 taking,7,kinglear,1603 whipped,7,kinglear,1603 appear,7,kinglear,1603 truth,7,kinglear,1603 care,7,kinglear,1603 plague,7,kinglear,1603 toward,7,kinglear,1603 paper,7,kinglear,1603 Methinks,7,kinglear,1603 something,7,kinglear,1603 enough,7,kinglear,1603 bastard,7,kinglear,1603 sea,7,kinglear,1603 abused,7,kinglear,1603 offence,7,kinglear,1603 vile,7,kinglear,1603 wrong,7,kinglear,1603 fault,7,kinglear,1603 want,7,kinglear,1603 heaven,7,kinglear,1603 Though,7,kinglear,1603 murder,7,kinglear,1603 displeasure,7,kinglear,1603 There's,7,kinglear,1603 he's,7,kinglear,1603 What's,7,kinglear,1603 An,7,kinglear,1603 scarce,7,kinglear,1603 neither,7,kinglear,1603 patience,7,kinglear,1603 canst,7,kinglear,1603 stay,7,kinglear,1603 grief,7,kinglear,1603 Prithee,7,kinglear,1603 said,7,kinglear,1603 instant,7,kinglear,1603 breath,7,kinglear,1603 Soldiers,7,kinglear,1603 moon,7,kinglear,1603 lost,7,kinglear,1603 ill,7,kinglear,1603 First,7,kinglear,1603 show,7,kinglear,1603 right,7,kinglear,1603 here's,7,kinglear,1603 lead,7,kinglear,1603 Should,7,kinglear,1603 justice,7,kinglear,1603 Storm,7,kinglear,1603 strike,7,kinglear,1603 Dost,7,kinglear,1603 question,7,kinglear,1603 bloody,7,kinglear,1603 'gainst,7,kinglear,1603 get,7,kinglear,1603 wit,7,kinglear,1603 sorrow,7,kinglear,1603 break,7,kinglear,1603 hovel,7,kinglear,1603 news,7,kinglear,1603 Make,7,kinglear,1603 That's,7,kinglear,1603 thunder,7,kinglear,1603 day,7,kinglear,1603 pardon,7,kinglear,1603 honest,7,kinglear,1603 gives,7,kinglear,1603 wife,7,kinglear,1603 return,7,kinglear,1603 Tom's,7,kinglear,1603 lie,7,kinglear,1603 Nothing,7,kinglear,1603 Before,7,kinglear,1603 Away,7,kinglear,1603 virtue,7,kinglear,1603 dark,7,kinglear,1603 land,7,kinglear,1603 shake,7,kinglear,1603 meet,8,kinglear,1603 Nay,8,kinglear,1603 under,8,kinglear,1603 friends,8,kinglear,1603 sure,8,kinglear,1603 Duke,8,kinglear,1603 bound,8,kinglear,1603 body,8,kinglear,1603 where's,8,kinglear,1603 Attendants,8,kinglear,1603 read,8,kinglear,1603 heavens,8,kinglear,1603 wise,8,kinglear,1603 Ha,8,kinglear,1603 bed,8,kinglear,1603 prove,8,kinglear,1603 wear,8,kinglear,1603 air,8,kinglear,1603 servant,8,kinglear,1603 left,8,kinglear,1603 that's,8,kinglear,1603 small,8,kinglear,1603 Yet,8,kinglear,1603 Yes,8,kinglear,1603 loved,8,kinglear,1603 ready,8,kinglear,1603 arm,8,kinglear,1603 water,8,kinglear,1603 none,8,kinglear,1603 majesty,8,kinglear,1603 beard,8,kinglear,1603 powers,8,kinglear,1603 Some,8,kinglear,1603 I'ld,8,kinglear,1603 beseech,8,kinglear,1603 rage,8,kinglear,1603 coming,8,kinglear,1603 'em,8,kinglear,1603 base,8,kinglear,1603 thank,8,kinglear,1603 lives,8,kinglear,1603 alone,8,kinglear,1603 seem,8,kinglear,1603 Pray,8,kinglear,1603 blame,8,kinglear,1603 send,8,kinglear,1603 sleep,8,kinglear,1603 leave,8,kinglear,1603 BURGUNDY,8,kinglear,1603 last,8,kinglear,1603 going,8,kinglear,1603 Knight,8,kinglear,1603 kill,8,kinglear,1603 himself,8,kinglear,1603 told,9,kinglear,1603 speech,9,kinglear,1603 help,9,kinglear,1603 drum,9,kinglear,1603 tears,9,kinglear,1603 Would,9,kinglear,1603 yourself,9,kinglear,1603 Whose,9,kinglear,1603 words,9,kinglear,1603 another,9,kinglear,1603 worth,9,kinglear,1603 worst,9,kinglear,1603 worse,9,kinglear,1603 On,9,kinglear,1603 wisdom,9,kinglear,1603 II,9,kinglear,1603 weep,9,kinglear,1603 farewell,9,kinglear,1603 storm,9,kinglear,1603 husband,9,kinglear,1603 train,9,kinglear,1603 Servants,9,kinglear,1603 brought,9,kinglear,1603 hard,9,kinglear,1603 plain,9,kinglear,1603 high,9,kinglear,1603 Look,9,kinglear,1603 father's,9,kinglear,1603 once,9,kinglear,1603 letters,9,kinglear,1603 near,9,kinglear,1603 five,9,kinglear,1603 duty,9,kinglear,1603 between,9,kinglear,1603 serve,9,kinglear,1603 hundred,9,kinglear,1603 fair,9,kinglear,1603 please,9,kinglear,1603 sweet,9,kinglear,1603 sound,9,kinglear,1603 cry,9,kinglear,1603 goes,9,kinglear,1603 May,9,kinglear,1603 might,9,kinglear,1603 pity,10,kinglear,1603 rather,10,kinglear,1603 Edgar,10,kinglear,1603 white,10,kinglear,1603 honour,10,kinglear,1603 feel,10,kinglear,1603 flesh,10,kinglear,1603 knights,10,kinglear,1603 wits,10,kinglear,1603 else,10,kinglear,1603 Gloucester's,10,kinglear,1603 castle,10,kinglear,1603 things,10,kinglear,1603 She,10,kinglear,1603 young,10,kinglear,1603 myself,10,kinglear,1603 state,10,kinglear,1603 FRANCE,10,kinglear,1603 same,10,kinglear,1603 arms,10,kinglear,1603 gentleman,10,kinglear,1603 home,10,kinglear,1603 whom,10,kinglear,1603 led,10,kinglear,1603 Messenger,10,kinglear,1603 strange,10,kinglear,1603 shame,10,kinglear,1603 not,266,kinglear,1603 o'er,11,kinglear,1603 horse,11,kinglear,1603 sisters,11,kinglear,1603 sight,11,kinglear,1603 Poor,11,kinglear,1603 further,11,kinglear,1603 Servant,11,kinglear,1603 turn,11,kinglear,1603 There,11,kinglear,1603 about,11,kinglear,1603 wind,11,kinglear,1603 hence,11,kinglear,1603 rest,11,kinglear,1603 stocks,11,kinglear,1603 has,11,kinglear,1603 IV,11,kinglear,1603 gave,11,kinglear,1603 Re,11,kinglear,1603 age,11,kinglear,1603 those,11,kinglear,1603 Most,11,kinglear,1603 Are,11,kinglear,1603 far,11,kinglear,1603 From,11,kinglear,1603 known,11,kinglear,1603 need,11,kinglear,1603 heard,11,kinglear,1603 found,11,kinglear,1603 face,11,kinglear,1603 rain,11,kinglear,1603 fit,11,kinglear,1603 purpose,11,kinglear,1603 Man,11,kinglear,1603 late,11,kinglear,1603 dog,11,kinglear,1603 shalt,11,kinglear,1603 die,11,kinglear,1603 Upon,12,kinglear,1603 trumpet,12,kinglear,1603 full,12,kinglear,1603 Nor,12,kinglear,1603 Burgundy,12,kinglear,1603 Doctor,12,kinglear,1603 Here,12,kinglear,1603 III,12,kinglear,1603 means,12,kinglear,1603 blood,12,kinglear,1603 Speak,12,kinglear,1603 Cornwall,12,kinglear,1603 does,12,kinglear,1603 ho,12,kinglear,1603 Goneril,12,kinglear,1603 half,12,kinglear,1603 Have,12,kinglear,1603 eye,12,kinglear,1603 Alack,12,kinglear,1603 child,12,kinglear,1603 many,12,kinglear,1603 mind,12,kinglear,1603 why,12,kinglear,1603 Well,12,kinglear,1603 fortune,12,kinglear,1603 even,12,kinglear,1603 reason,12,kinglear,1603 kingdom,12,kinglear,1603 back,12,kinglear,1603 Captain,12,kinglear,1603 Take,12,kinglear,1603 kind,12,kinglear,1603 came,13,kinglear,1603 Aside,13,kinglear,1603 cause,13,kinglear,1603 after,13,kinglear,1603 Old,13,kinglear,1603 long,13,kinglear,1603 part,13,kinglear,1603 forth,13,kinglear,1603 there's,13,kinglear,1603 slave,13,kinglear,1603 Then,13,kinglear,1603 word,13,kinglear,1603 seen,13,kinglear,1603 traitor,13,kinglear,1603 makes,13,kinglear,1603 live,13,kinglear,1603 follow,13,kinglear,1603 every,14,kinglear,1603 draw,14,kinglear,1603 name,14,kinglear,1603 look,14,kinglear,1603 bear,14,kinglear,1603 course,14,kinglear,1603 They,14,kinglear,1603 Shall,14,kinglear,1603 man's,14,kinglear,1603 use,14,kinglear,1603 cold,14,kinglear,1603 men,14,kinglear,1603 true,14,kinglear,1603 ',15,kinglear,1603 business,15,kinglear,1603 thought,15,kinglear,1603 Dover,15,kinglear,1603 fear,15,kinglear,1603 bring,15,kinglear,1603 matter,15,kinglear,1603 boy,15,kinglear,1603 OF,15,kinglear,1603 We,15,kinglear,1603 whose,15,kinglear,1603 doth,15,kinglear,1603 put,15,kinglear,1603 done,15,kinglear,1603 foul,15,kinglear,1603 though,15,kinglear,1603 fire,15,kinglear,1603 duke,15,kinglear,1603 find,15,kinglear,1603 till,15,kinglear,1603 hither,15,kinglear,1603 being,15,kinglear,1603 in,271,kinglear,1603 answer,16,kinglear,1603 nuncle,16,kinglear,1603 Will,16,kinglear,1603 call,16,kinglear,1603 Not,16,kinglear,1603 't,16,kinglear,1603 within,16,kinglear,1603 both,16,kinglear,1603 Be,16,kinglear,1603 itself,16,kinglear,1603 since,16,kinglear,1603 enter,16,kinglear,1603 Or,16,kinglear,1603 dead,16,kinglear,1603 keep,16,kinglear,1603 little,16,kinglear,1603 Than,16,kinglear,1603 All,16,kinglear,1603 before,16,kinglear,1603 seek,16,kinglear,1603 house,16,kinglear,1603 Tom,16,kinglear,1603 power,16,kinglear,1603 set,17,kinglear,1603 sword,17,kinglear,1603 Ay,17,kinglear,1603 His,17,kinglear,1603 Go,17,kinglear,1603 Good,17,kinglear,1603 gone,17,kinglear,1603 into,17,kinglear,1603 could,17,kinglear,1603 Lear,17,kinglear,1603 hold,17,kinglear,1603 pray,18,kinglear,1603 brother,18,kinglear,1603 against,18,kinglear,1603 any,18,kinglear,1603 noble,18,kinglear,1603 less,18,kinglear,1603 stand,18,kinglear,1603 off,18,kinglear,1603 first,18,kinglear,1603 mad,18,kinglear,1603 cannot,18,kinglear,1603 lady,18,kinglear,1603 the,786,kinglear,1603 world,19,kinglear,1603 death,19,kinglear,1603 Our,19,kinglear,1603 friend,19,kinglear,1603 It,19,kinglear,1603 grace,19,kinglear,1603 fiend,19,kinglear,1603 Your,19,kinglear,1603 again,19,kinglear,1603 knave,19,kinglear,1603 Regan,19,kinglear,1603 did,19,kinglear,1603 Kent,19,kinglear,1603 villain,20,kinglear,1603 best,20,kinglear,1603 dost,20,kinglear,1603 dear,20,kinglear,1603 o',20,kinglear,1603 give,20,kinglear,1603 made,20,kinglear,1603 mine,20,kinglear,1603 think,20,kinglear,1603 ever,20,kinglear,1603 Where,20,kinglear,1603 Thy,20,kinglear,1603 Give,21,kinglear,1603 Of,21,kinglear,1603 hast,21,kinglear,1603 Sir,21,kinglear,1603 very,21,kinglear,1603 thing,21,kinglear,1603 hear,22,kinglear,1603 France,22,kinglear,1603 Cordelia,22,kinglear,1603 By,22,kinglear,1603 down,22,kinglear,1603 comes,22,kinglear,1603 thus,22,kinglear,1603 head,23,kinglear,1603 Do,23,kinglear,1603 where,23,kinglear,1603 thine,23,kinglear,1603 still,23,kinglear,1603 two,23,kinglear,1603 other,23,kinglear,1603 place,24,kinglear,1603 'Tis,24,kinglear,1603 master,24,kinglear,1603 daughters,24,kinglear,1603 i',25,kinglear,1603 how,25,kinglear,1603 own,25,kinglear,1603 gods,25,kinglear,1603 Gloucester,26,kinglear,1603 Now,26,kinglear,1603 better,26,kinglear,1603 fellow,26,kinglear,1603 never,26,kinglear,1603 hand,26,kinglear,1603 ACT,26,kinglear,1603 were,26,kinglear,1603 great,26,kinglear,1603 madam,26,kinglear,1603 nothing,27,kinglear,1603 tell,27,kinglear,1603 Is,27,kinglear,1603 way,27,kinglear,1603 letter,27,kinglear,1603 SCENE,27,kinglear,1603 As,28,kinglear,1603 So,28,kinglear,1603 nor,28,kinglear,1603 time,28,kinglear,1603 son,29,kinglear,1603 daughter,29,kinglear,1603 'tis,29,kinglear,1603 been,29,kinglear,1603 sister,29,kinglear,1603 much,30,kinglear,1603 away,30,kinglear,1603 In,30,kinglear,1603 some,31,kinglear,1603 With,31,kinglear,1603 For,31,kinglear,1603 Edmund,32,kinglear,1603 up,32,kinglear,1603 too,32,kinglear,1603 life,33,kinglear,1603 say,33,kinglear,1603 Who,33,kinglear,1603 these,33,kinglear,1603 Exeunt,33,kinglear,1603 then,34,kinglear,1603 Which,34,kinglear,1603 who,34,kinglear,1603 had,35,kinglear,1603 nature,35,kinglear,1603 upon,36,kinglear,1603 He,36,kinglear,1603 night,36,kinglear,1603 speak,36,kinglear,1603 one,36,kinglear,1603 Let,36,kinglear,1603 can,37,kinglear,1603 eyes,37,kinglear,1603 poor,37,kinglear,1603 Come,38,kinglear,1603 should,38,kinglear,1603 such,39,kinglear,1603 when,39,kinglear,1603 art,40,kinglear,1603 Thou,40,kinglear,1603 let,40,kinglear,1603 When,40,kinglear,1603 go,41,kinglear,1603 an,41,kinglear,1603 Why,42,kinglear,1603 CORDELIA,42,kinglear,1603 most,43,kinglear,1603 which,44,kinglear,1603 must,44,kinglear,1603 she,44,kinglear,1603 there,44,kinglear,1603 How,44,kinglear,1603 yet,45,kinglear,1603 old,45,kinglear,1603 may,45,kinglear,1603 Exit,45,kinglear,1603 like,46,kinglear,1603 make,46,kinglear,1603 was,46,kinglear,1603 if,47,kinglear,1603 fool,47,kinglear,1603 see,48,kinglear,1603 Gentleman,48,kinglear,1603 they,49,kinglear,1603 love,49,kinglear,1603 This,49,kinglear,1603 heart,49,kinglear,1603 or,50,kinglear,1603 But,50,kinglear,1603 come,50,kinglear,1603 A,51,kinglear,1603 than,51,kinglear,1603 us,51,kinglear,1603 hath,52,kinglear,1603 here,53,kinglear,1603 them,53,kinglear,1603 OSWALD,53,kinglear,1603 now,53,kinglear,1603 take,53,kinglear,1603 My,55,kinglear,1603 would,55,kinglear,1603 well,56,kinglear,1603 at,57,kinglear,1603 You,58,kinglear,1603 No,59,kinglear,1603 their,60,kinglear,1603 we,62,kinglear,1603 what,62,kinglear,1603 CORNWALL,63,kinglear,1603 Enter,63,kinglear,1603 father,63,kinglear,1603 If,64,kinglear,1603 king,65,kinglear,1603 good,67,kinglear,1603 ALBANY,67,kinglear,1603 man,67,kinglear,1603 out,68,kinglear,1603 by,69,kinglear,1603 GONERIL,71,kinglear,1603 I'll,71,kinglear,1603 know,72,kinglear,1603 Fool,73,kinglear,1603 more,75,kinglear,1603 What,75,kinglear,1603 O,82,kinglear,1603 and,594,kinglear,1603 from,83,kinglear,1603 but,84,kinglear,1603 am,84,kinglear,1603 shall,85,kinglear,1603 REGAN,86,kinglear,1603 all,91,kinglear,1603 no,92,kinglear,1603 do,93,kinglear,1603 on,93,kinglear,1603 sir,94,kinglear,1603 as,94,kinglear,1603 lord,96,kinglear,1603 our,96,kinglear,1603 That,98,kinglear,1603 EDMUND,99,kinglear,1603 a,366,kinglear,1603 I,622,kinglear,1603 so,113,kinglear,1603 will,113,kinglear,1603 are,117,kinglear,1603 The,122,kinglear,1603 for,123,kinglear,1603 her,126,kinglear,1603 EDGAR,126,kinglear,1603 thee,135,kinglear,1603 he,137,kinglear,1603 GLOUCESTER,141,kinglear,1603 thy,141,kinglear,1603 To,142,kinglear,1603 And,144,kinglear,1603 you,401,kinglear,1603 my,402,kinglear,1603 be,154,kinglear,1603 KENT,156,kinglear,1603 it,171,kinglear,1603 with,175,kinglear,1603 thou,179,kinglear,1603 to,438,kinglear,1603 this,187,kinglear,1603 of,447,kinglear,1603 is,192,kinglear,1603 his,193,kinglear,1603 have,194,kinglear,1603 him,198,kinglear,1603 your,205,kinglear,1603 me,228,kinglear,1603 LEAR,236,kinglear,1603 KING,243,kinglear,1603 that,250,kinglear,1603 brave,1,cymbeline,1609 fealty,1,cymbeline,1609 attended,1,cymbeline,1609 holding,1,cymbeline,1609 plagues,1,cymbeline,1609 profession,1,cymbeline,1609 befal,1,cymbeline,1609 rejoicingly,1,cymbeline,1609 religion,1,cymbeline,1609 Howsoe'er,1,cymbeline,1609 mutability,1,cymbeline,1609 event,1,cymbeline,1609 neighbouring,1,cymbeline,1609 cage,1,cymbeline,1609 shepherd's,1,cymbeline,1609 jet,1,cymbeline,1609 Romish,1,cymbeline,1609 regard,1,cymbeline,1609 Touching,1,cymbeline,1609 payments,1,cymbeline,1609 tomb,1,cymbeline,1609 scraps,1,cymbeline,1609 proffer,1,cymbeline,1609 accordingly,1,cymbeline,1609 ignorance,1,cymbeline,1609 relief,1,cymbeline,1609 thunderer,1,cymbeline,1609 advised,1,cymbeline,1609 guard,1,cymbeline,1609 Stands,1,cymbeline,1609 riveted,1,cymbeline,1609 debts,1,cymbeline,1609 meed,1,cymbeline,1609 guise,1,cymbeline,1609 lamentable,1,cymbeline,1609 invisible,1,cymbeline,1609 stomachers,1,cymbeline,1609 Yours,1,cymbeline,1609 rebukes,1,cymbeline,1609 slaughtering,1,cymbeline,1609 hangings,1,cymbeline,1609 s,1,cymbeline,1609 blurr'd,1,cymbeline,1609 advice,1,cymbeline,1609 Proud,1,cymbeline,1609 extremity,1,cymbeline,1609 dined,1,cymbeline,1609 marrying,1,cymbeline,1609 afore't,1,cymbeline,1609 reputation,1,cymbeline,1609 guilt,1,cymbeline,1609 crook'd,1,cymbeline,1609 apprehend,1,cymbeline,1609 for's,1,cymbeline,1609 Loves,1,cymbeline,1609 yielding,1,cymbeline,1609 Fools,1,cymbeline,1609 belongs,1,cymbeline,1609 resist,1,cymbeline,1609 jay,1,cymbeline,1609 preferred,1,cymbeline,1609 truer,1,cymbeline,1609 fitment,1,cymbeline,1609 dream'd,1,cymbeline,1609 testimonies,1,cymbeline,1609 viands,1,cymbeline,1609 weasel,1,cymbeline,1609 diminution,1,cymbeline,1609 wears,1,cymbeline,1609 dream's,1,cymbeline,1609 writ,1,cymbeline,1609 steer'd,1,cymbeline,1609 coasts,1,cymbeline,1609 planted,1,cymbeline,1609 spectators,1,cymbeline,1609 rat,1,cymbeline,1609 possible,1,cymbeline,1609 reign'd,1,cymbeline,1609 Grew,1,cymbeline,1609 tyrant's,1,cymbeline,1609 brats,1,cymbeline,1609 slackly,1,cymbeline,1609 peasant,1,cymbeline,1609 Tenantius',1,cymbeline,1609 Weeps,1,cymbeline,1609 New,1,cymbeline,1609 Shall's,1,cymbeline,1609 shadows,1,cymbeline,1609 wicked,1,cymbeline,1609 peruse,1,cymbeline,1609 female,1,cymbeline,1609 brows,1,cymbeline,1609 Outsells,1,cymbeline,1609 pitying,1,cymbeline,1609 nursing,1,cymbeline,1609 peculiar,1,cymbeline,1609 hasty,1,cymbeline,1609 dagger,1,cymbeline,1609 Affected,1,cymbeline,1609 rode,1,cymbeline,1609 Villain,1,cymbeline,1609 Messengers,1,cymbeline,1609 foolery,1,cymbeline,1609 rot,1,cymbeline,1609 interpreted,1,cymbeline,1609 preparation,1,cymbeline,1609 offended,1,cymbeline,1609 dominion,1,cymbeline,1609 shoulders,1,cymbeline,1609 rob,1,cymbeline,1609 matron,1,cymbeline,1609 offender,1,cymbeline,1609 scene,1,cymbeline,1609 highness',1,cymbeline,1609 Bear,1,cymbeline,1609 day's,1,cymbeline,1609 roar,1,cymbeline,1609 wiving,1,cymbeline,1609 trivial,1,cymbeline,1609 Endows,1,cymbeline,1609 space,1,cymbeline,1609 express,1,cymbeline,1609 neighbour's,1,cymbeline,1609 brands,1,cymbeline,1609 epitaph,1,cymbeline,1609 fanes,1,cymbeline,1609 overbuys,1,cymbeline,1609 Leonitus,1,cymbeline,1609 vaulting,1,cymbeline,1609 Pitied,1,cymbeline,1609 helps,1,cymbeline,1609 dire,1,cymbeline,1609 Deny't,1,cymbeline,1609 moiety,1,cymbeline,1609 Sicilius',1,cymbeline,1609 wager'd,1,cymbeline,1609 despised,1,cymbeline,1609 violets,1,cymbeline,1609 fliers,1,cymbeline,1609 laughter,1,cymbeline,1609 Kills,1,cymbeline,1609 freer,1,cymbeline,1609 fumes,1,cymbeline,1609 sleepy,1,cymbeline,1609 writes,1,cymbeline,1609 dirt,1,cymbeline,1609 darkness,1,cymbeline,1609 Hanging,1,cymbeline,1609 painted,1,cymbeline,1609 zephyrs,1,cymbeline,1609 Gailia,1,cymbeline,1609 baubles,1,cymbeline,1609 denials,1,cymbeline,1609 broths,1,cymbeline,1609 groan,1,cymbeline,1609 vain,1,cymbeline,1609 pittikins,1,cymbeline,1609 decay,1,cymbeline,1609 celestial,1,cymbeline,1609 Black,1,cymbeline,1609 Cried,1,cymbeline,1609 vale,1,cymbeline,1609 loathness,1,cymbeline,1609 grin,1,cymbeline,1609 while,1,cymbeline,1609 supplyant,1,cymbeline,1609 sighs,1,cymbeline,1609 corresponding,1,cymbeline,1609 utterance,1,cymbeline,1609 comest,1,cymbeline,1609 Perplex'd,1,cymbeline,1609 rip,1,cymbeline,1609 answering,1,cymbeline,1609 hearted,1,cymbeline,1609 tears,1,cymbeline,1609 topmast,1,cymbeline,1609 Woman,1,cymbeline,1609 looked,1,cymbeline,1609 naked,1,cymbeline,1609 comers,1,cymbeline,1609 angels,1,cymbeline,1609 Lovers,1,cymbeline,1609 summer's,1,cymbeline,1609 ravening,1,cymbeline,1609 sots,1,cymbeline,1609 Unknown,1,cymbeline,1609 maintain,1,cymbeline,1609 flow,1,cymbeline,1609 its,1,cymbeline,1609 teachers,1,cymbeline,1609 'mulier',1,cymbeline,1609 exactly,1,cymbeline,1609 although,1,cymbeline,1609 valuation,1,cymbeline,1609 bring'st,1,cymbeline,1609 Frighted,1,cymbeline,1609 appeal,1,cymbeline,1609 sour,1,cymbeline,1609 laugh,1,cymbeline,1609 horrid,1,cymbeline,1609 admirable,1,cymbeline,1609 prey,1,cymbeline,1609 calls,1,cymbeline,1609 thou'lt,1,cymbeline,1609 untaught,1,cymbeline,1609 Cowards,1,cymbeline,1609 Abhorr'd,1,cymbeline,1609 terrible,1,cymbeline,1609 lapp'd,1,cymbeline,1609 referr'd,1,cymbeline,1609 crickets,1,cymbeline,1609 advocate,1,cymbeline,1609 ravish,1,cymbeline,1609 odds,1,cymbeline,1609 iron,1,cymbeline,1609 conceiving,1,cymbeline,1609 damned,1,cymbeline,1609 demesnes,1,cymbeline,1609 Post,1,cymbeline,1609 pick,1,cymbeline,1609 lids,1,cymbeline,1609 stamp'd,1,cymbeline,1609 pinch,1,cymbeline,1609 Money,1,cymbeline,1609 hardiness,1,cymbeline,1609 works,1,cymbeline,1609 Quite,1,cymbeline,1609 disobedience,1,cymbeline,1609 joys,1,cymbeline,1609 rated,1,cymbeline,1609 scruple,1,cymbeline,1609 cloyed,1,cymbeline,1609 wounded,1,cymbeline,1609 Golden,1,cymbeline,1609 Married,1,cymbeline,1609 tyrannous,1,cymbeline,1609 recreation,1,cymbeline,1609 cheeks,1,cymbeline,1609 whoreson,1,cymbeline,1609 carl,1,cymbeline,1609 PERSONAE,1,cymbeline,1609 Personates,1,cymbeline,1609 mute,1,cymbeline,1609 Renew,1,cymbeline,1609 Lessen'd,1,cymbeline,1609 crutch,1,cymbeline,1609 soliciting,1,cymbeline,1609 aer',1,cymbeline,1609 Pretty,1,cymbeline,1609 early,1,cymbeline,1609 Instructs,1,cymbeline,1609 Flow,1,cymbeline,1609 softly,1,cymbeline,1609 song,1,cymbeline,1609 laced,1,cymbeline,1609 repulse,1,cymbeline,1609 coffers,1,cymbeline,1609 quench'd,1,cymbeline,1609 regions,1,cymbeline,1609 pursue,1,cymbeline,1609 lustre,1,cymbeline,1609 beneath,1,cymbeline,1609 assaults,1,cymbeline,1609 plague,1,cymbeline,1609 Over,1,cymbeline,1609 reign,1,cymbeline,1609 order'd,1,cymbeline,1609 Forget,1,cymbeline,1609 charge,1,cymbeline,1609 counted,1,cymbeline,1609 disdain,1,cymbeline,1609 hunger's,1,cymbeline,1609 graced,1,cymbeline,1609 divination,1,cymbeline,1609 amazed,1,cymbeline,1609 feels,1,cymbeline,1609 feather,1,cymbeline,1609 apparition,1,cymbeline,1609 camp,1,cymbeline,1609 enemies',1,cymbeline,1609 pine,1,cymbeline,1609 thousands,1,cymbeline,1609 sold,1,cymbeline,1609 Young,1,cymbeline,1609 unjustly,1,cymbeline,1609 relieve,1,cymbeline,1609 grown,1,cymbeline,1609 bearing,1,cymbeline,1609 Swift,1,cymbeline,1609 stream,1,cymbeline,1609 constantly,1,cymbeline,1609 line,1,cymbeline,1609 atone,1,cymbeline,1609 bathe,1,cymbeline,1609 dependencies,1,cymbeline,1609 repast,1,cymbeline,1609 Tongue,1,cymbeline,1609 opposed,1,cymbeline,1609 smothering,1,cymbeline,1609 corner,1,cymbeline,1609 prop,1,cymbeline,1609 Orleans,1,cymbeline,1609 crying,1,cymbeline,1609 limb,1,cymbeline,1609 verbal,1,cymbeline,1609 thou'rt,1,cymbeline,1609 horror,1,cymbeline,1609 possesses,1,cymbeline,1609 afterwards,1,cymbeline,1609 snore,1,cymbeline,1609 plight,1,cymbeline,1609 posts,1,cymbeline,1609 corse,1,cymbeline,1609 Much,1,cymbeline,1609 heat,1,cymbeline,1609 habits,1,cymbeline,1609 differs,1,cymbeline,1609 Woe,1,cymbeline,1609 sparks,1,cymbeline,1609 drew,1,cymbeline,1609 o'erjoy'd,1,cymbeline,1609 manacles,1,cymbeline,1609 worthier,1,cymbeline,1609 sloth,1,cymbeline,1609 opprest,1,cymbeline,1609 shanks,1,cymbeline,1609 Quiet,1,cymbeline,1609 Only,1,cymbeline,1609 wants,1,cymbeline,1609 primroses,1,cymbeline,1609 fingers,1,cymbeline,1609 voices,1,cymbeline,1609 babes,1,cymbeline,1609 knaves,1,cymbeline,1609 soil,1,cymbeline,1609 calm,1,cymbeline,1609 demands,1,cymbeline,1609 sacrilegious,1,cymbeline,1609 breaks,1,cymbeline,1609 officers,1,cymbeline,1609 rider,1,cymbeline,1609 Yield,1,cymbeline,1609 making,1,cymbeline,1609 resumed,1,cymbeline,1609 sixteen,1,cymbeline,1609 wrong'st,1,cymbeline,1609 century,1,cymbeline,1609 brotherly,1,cymbeline,1609 addition,1,cymbeline,1609 veins,1,cymbeline,1609 Methinks,1,cymbeline,1609 hardiment,1,cymbeline,1609 richer,1,cymbeline,1609 riches,1,cymbeline,1609 weights,1,cymbeline,1609 toys,1,cymbeline,1609 abode,1,cymbeline,1609 runagate,1,cymbeline,1609 covering,1,cymbeline,1609 Recoil,1,cymbeline,1609 visit,1,cymbeline,1609 arithmetic,1,cymbeline,1609 boar,1,cymbeline,1609 perjured,1,cymbeline,1609 confirms,1,cymbeline,1609 Knighthoods,1,cymbeline,1609 monster's,1,cymbeline,1609 ladies',1,cymbeline,1609 backside,1,cymbeline,1609 Comparative,1,cymbeline,1609 six,1,cymbeline,1609 execution,1,cymbeline,1609 shamed,1,cymbeline,1609 lasts,1,cymbeline,1609 wage,1,cymbeline,1609 slightly,1,cymbeline,1609 feodary,1,cymbeline,1609 I'm,1,cymbeline,1609 monkeys,1,cymbeline,1609 weighed,1,cymbeline,1609 embassy,1,cymbeline,1609 whatsoever,1,cymbeline,1609 sit,1,cymbeline,1609 Charms,1,cymbeline,1609 conceive,1,cymbeline,1609 Phoebus',1,cymbeline,1609 imprison'd,1,cymbeline,1609 courtly,1,cymbeline,1609 aged,1,cymbeline,1609 striking,1,cymbeline,1609 sender,1,cymbeline,1609 friended,1,cymbeline,1609 ken,1,cymbeline,1609 deceased,1,cymbeline,1609 key,1,cymbeline,1609 sweet'st,1,cymbeline,1609 Change,1,cymbeline,1609 think'st,1,cymbeline,1609 subdued,1,cymbeline,1609 agent,1,cymbeline,1609 fingering,1,cymbeline,1609 fleet,1,cymbeline,1609 imitation,1,cymbeline,1609 tooth,1,cymbeline,1609 deity,1,cymbeline,1609 scowl,1,cymbeline,1609 containing,1,cymbeline,1609 question'dst,1,cymbeline,1609 affiance,1,cymbeline,1609 sex,1,cymbeline,1609 thankings,1,cymbeline,1609 favourer,1,cymbeline,1609 learnings,1,cymbeline,1609 mocking,1,cymbeline,1609 Kneel,1,cymbeline,1609 Do't,1,cymbeline,1609 traveller,1,cymbeline,1609 society,1,cymbeline,1609 she'll,1,cymbeline,1609 audit,1,cymbeline,1609 rottenness,1,cymbeline,1609 laying,1,cymbeline,1609 peevish,1,cymbeline,1609 lions,1,cymbeline,1609 beasts,1,cymbeline,1609 doubtless,1,cymbeline,1609 prettiest,1,cymbeline,1609 ancestry,1,cymbeline,1609 snatches,1,cymbeline,1609 Thinking,1,cymbeline,1609 Revenged,1,cymbeline,1609 altars,1,cymbeline,1609 stealing,1,cymbeline,1609 deliver,1,cymbeline,1609 allured,1,cymbeline,1609 cradle,1,cymbeline,1609 knives,1,cymbeline,1609 Leonatus's,1,cymbeline,1609 Himself,1,cymbeline,1609 vine,1,cymbeline,1609 delivers,1,cymbeline,1609 steps,1,cymbeline,1609 famed,1,cymbeline,1609 justicer,1,cymbeline,1609 becomed,1,cymbeline,1609 Merely,1,cymbeline,1609 murderer,1,cymbeline,1609 Farewell,1,cymbeline,1609 follower,1,cymbeline,1609 experiences,1,cymbeline,1609 mantle,1,cymbeline,1609 fangled,1,cymbeline,1609 apparent,1,cymbeline,1609 where't,1,cymbeline,1609 pictured,1,cymbeline,1609 ballasting,1,cymbeline,1609 countenance,1,cymbeline,1609 dignities,1,cymbeline,1609 attends,1,cymbeline,1609 larges,1,cymbeline,1609 darted,1,cymbeline,1609 stern,1,cymbeline,1609 it's,1,cymbeline,1609 sharded,1,cymbeline,1609 surmises,1,cymbeline,1609 kindly,1,cymbeline,1609 cloy'd,1,cymbeline,1609 livery,1,cymbeline,1609 forthwith,1,cymbeline,1609 andirons,1,cymbeline,1609 Heavens,1,cymbeline,1609 qualified,1,cymbeline,1609 Winnow,1,cymbeline,1609 foreshow'd,1,cymbeline,1609 permit,1,cymbeline,1609 woodman,1,cymbeline,1609 multitudes,1,cymbeline,1609 middle,1,cymbeline,1609 beloved,1,cymbeline,1609 'Ods,1,cymbeline,1609 wages,1,cymbeline,1609 reck,1,cymbeline,1609 shipping,1,cymbeline,1609 commends,1,cymbeline,1609 sky,1,cymbeline,1609 instruct,1,cymbeline,1609 hatch'd,1,cymbeline,1609 parish,1,cymbeline,1609 camps,1,cymbeline,1609 Itself,1,cymbeline,1609 trials,1,cymbeline,1609 Doctor,1,cymbeline,1609 gripes,1,cymbeline,1609 O'ercome,1,cymbeline,1609 Other,1,cymbeline,1609 suck,1,cymbeline,1609 Adder,1,cymbeline,1609 horses',1,cymbeline,1609 war's,1,cymbeline,1609 pickaxes,1,cymbeline,1609 HELEN,1,cymbeline,1609 play'd,1,cymbeline,1609 Hear'st,1,cymbeline,1609 Screw'd,1,cymbeline,1609 mutation,1,cymbeline,1609 daughter's,1,cymbeline,1609 Experience,1,cymbeline,1609 appear'd,1,cymbeline,1609 throes,1,cymbeline,1609 induced,1,cymbeline,1609 how'er,1,cymbeline,1609 purchasing,1,cymbeline,1609 seats,1,cymbeline,1609 stuck,1,cymbeline,1609 standers,1,cymbeline,1609 exhibition,1,cymbeline,1609 giants,1,cymbeline,1609 vanquisheth,1,cymbeline,1609 ourselves,1,cymbeline,1609 goddesses,1,cymbeline,1609 thieves,1,cymbeline,1609 minion,1,cymbeline,1609 mellow,1,cymbeline,1609 sprited,1,cymbeline,1609 reap,1,cymbeline,1609 benediction,1,cymbeline,1609 sly,1,cymbeline,1609 accursed,1,cymbeline,1609 Tereus,1,cymbeline,1609 wrong,1,cymbeline,1609 compound,1,cymbeline,1609 receiver,1,cymbeline,1609 embracements,1,cymbeline,1609 beseeming,1,cymbeline,1609 vanish,1,cymbeline,1609 briefness,1,cymbeline,1609 debtors,1,cymbeline,1609 snow,1,cymbeline,1609 ante,1,cymbeline,1609 monster,1,cymbeline,1609 roots,1,cymbeline,1609 confounded,1,cymbeline,1609 turf,1,cymbeline,1609 charm'd,1,cymbeline,1609 chased,1,cymbeline,1609 Grow,1,cymbeline,1609 afraid,1,cymbeline,1609 qualm'd,1,cymbeline,1609 palaces,1,cymbeline,1609 Be't,1,cymbeline,1609 chaser,1,cymbeline,1609 worlds,1,cymbeline,1609 habit,1,cymbeline,1609 figure,1,cymbeline,1609 dieter,1,cymbeline,1609 civil,1,cymbeline,1609 direct,1,cymbeline,1609 reed,1,cymbeline,1609 reek,1,cymbeline,1609 Despairing,1,cymbeline,1609 encounter'd,1,cymbeline,1609 plots,1,cymbeline,1609 churls,1,cymbeline,1609 feat,1,cymbeline,1609 variable,1,cymbeline,1609 actions,1,cymbeline,1609 prohibition,1,cymbeline,1609 terms,1,cymbeline,1609 sweeten'd,1,cymbeline,1609 seeks,1,cymbeline,1609 confer,1,cymbeline,1609 commix,1,cymbeline,1609 eldest,1,cymbeline,1609 Pardon,1,cymbeline,1609 mark'd,1,cymbeline,1609 Posthumus',1,cymbeline,1609 cook'd,1,cymbeline,1609 hitting,1,cymbeline,1609 untrue,1,cymbeline,1609 relation,1,cymbeline,1609 willing,1,cymbeline,1609 certainties,1,cymbeline,1609 Wherein,1,cymbeline,1609 stupefy,1,cymbeline,1609 Yearly,1,cymbeline,1609 saw't,1,cymbeline,1609 'Tween,1,cymbeline,1609 thence,1,cymbeline,1609 covetings,1,cymbeline,1609 bestrid,1,cymbeline,1609 cries,1,cymbeline,1609 Vexations,1,cymbeline,1609 humble,1,cymbeline,1609 speechless,1,cymbeline,1609 Embracing,1,cymbeline,1609 shining,1,cymbeline,1609 sum,1,cymbeline,1609 govern'd,1,cymbeline,1609 sur,1,cymbeline,1609 brace,1,cymbeline,1609 ancestor,1,cymbeline,1609 voyages,1,cymbeline,1609 bowl,1,cymbeline,1609 slavish,1,cymbeline,1609 feet,1,cymbeline,1609 descent,1,cymbeline,1609 bows,1,cymbeline,1609 Spare,1,cymbeline,1609 hoodwink'd,1,cymbeline,1609 temporal,1,cymbeline,1609 casually,1,cymbeline,1609 look's,1,cymbeline,1609 relish,1,cymbeline,1609 Search,1,cymbeline,1609 Behind,1,cymbeline,1609 courages,1,cymbeline,1609 upon't,1,cymbeline,1609 eglantine,1,cymbeline,1609 suffering,1,cymbeline,1609 gibes,1,cymbeline,1609 wrists,1,cymbeline,1609 venerable,1,cymbeline,1609 conceal,1,cymbeline,1609 stiller,1,cymbeline,1609 unsunn'd,1,cymbeline,1609 Whereto,1,cymbeline,1609 weather,1,cymbeline,1609 lucre,1,cymbeline,1609 rude,1,cymbeline,1609 prized,1,cymbeline,1609 redeem'd,1,cymbeline,1609 ribbed,1,cymbeline,1609 bolts,1,cymbeline,1609 shrine,1,cymbeline,1609 cuckold,1,cymbeline,1609 attired,1,cymbeline,1609 Ascends,1,cymbeline,1609 monarchs,1,cymbeline,1609 knights,1,cymbeline,1609 Rates,1,cymbeline,1609 Dark,1,cymbeline,1609 tender'd,1,cymbeline,1609 rebelling,1,cymbeline,1609 rarely,1,cymbeline,1609 Dare,1,cymbeline,1609 title,1,cymbeline,1609 executioner,1,cymbeline,1609 Sparkles,1,cymbeline,1609 Advancing,1,cymbeline,1609 entertained,1,cymbeline,1609 edge,1,cymbeline,1609 doom'd,1,cymbeline,1609 harmless,1,cymbeline,1609 dearer,1,cymbeline,1609 wipe,1,cymbeline,1609 heaved,1,cymbeline,1609 mountainous,1,cymbeline,1609 wholly,1,cymbeline,1609 ensign,1,cymbeline,1609 unkinglike,1,cymbeline,1609 know'st,1,cymbeline,1609 dies,1,cymbeline,1609 diet,1,cymbeline,1609 trifles,1,cymbeline,1609 ruin,1,cymbeline,1609 renew,1,cymbeline,1609 rowel,1,cymbeline,1609 importuned,1,cymbeline,1609 turned,1,cymbeline,1609 horsemen,1,cymbeline,1609 mannish,1,cymbeline,1609 thrown,1,cymbeline,1609 imperious,1,cymbeline,1609 clasp,1,cymbeline,1609 displeasure,1,cymbeline,1609 victuals,1,cymbeline,1609 seem'd,1,cymbeline,1609 winning,1,cymbeline,1609 ambassador,1,cymbeline,1609 world's,1,cymbeline,1609 loins,1,cymbeline,1609 harbour,1,cymbeline,1609 Proved,1,cymbeline,1609 crescent,1,cymbeline,1609 sanguine,1,cymbeline,1609 doubts,1,cymbeline,1609 throughly,1,cymbeline,1609 basilisk,1,cymbeline,1609 melted,1,cymbeline,1609 distress,1,cymbeline,1609 mistake,1,cymbeline,1609 join'd,1,cymbeline,1609 stirr'd,1,cymbeline,1609 Gallian,1,cymbeline,1609 circumstances,1,cymbeline,1609 Inclined,1,cymbeline,1609 unshaked,1,cymbeline,1609 domestic,1,cymbeline,1609 gentleman's,1,cymbeline,1609 dear'st,1,cymbeline,1609 Blessed,1,cymbeline,1609 roofs,1,cymbeline,1609 manly,1,cymbeline,1609 gentlewoman's,1,cymbeline,1609 bright,1,cymbeline,1609 creates,1,cymbeline,1609 party,1,cymbeline,1609 gripe,1,cymbeline,1609 infirmity,1,cymbeline,1609 created,1,cymbeline,1609 sceptre,1,cymbeline,1609 praises,1,cymbeline,1609 sympathy,1,cymbeline,1609 tainting,1,cymbeline,1609 Postures,1,cymbeline,1609 conditions,1,cymbeline,1609 opening,1,cymbeline,1609 bitter,1,cymbeline,1609 attemptable,1,cymbeline,1609 smokes,1,cymbeline,1609 bills,1,cymbeline,1609 preferr'd,1,cymbeline,1609 mistaken,1,cymbeline,1609 scandal,1,cymbeline,1609 prince's,1,cymbeline,1609 bathing,1,cymbeline,1609 ha',1,cymbeline,1609 life's,1,cymbeline,1609 bastards,1,cymbeline,1609 emptiness,1,cymbeline,1609 keys,1,cymbeline,1609 burning,1,cymbeline,1609 gratify,1,cymbeline,1609 enfeebles,1,cymbeline,1609 mortality,1,cymbeline,1609 forespent,1,cymbeline,1609 Hold,1,cymbeline,1609 waken'd,1,cymbeline,1609 visible,1,cymbeline,1609 begetting,1,cymbeline,1609 backs,1,cymbeline,1609 Titan,1,cymbeline,1609 snuff,1,cymbeline,1609 While,1,cymbeline,1609 drudge,1,cymbeline,1609 adjoining,1,cymbeline,1609 carbuncle,1,cymbeline,1609 Struck,1,cymbeline,1609 sweeten,1,cymbeline,1609 Home,1,cymbeline,1609 inferiors,1,cymbeline,1609 Augustus',1,cymbeline,1609 crack,1,cymbeline,1609 sweeter,1,cymbeline,1609 foes,1,cymbeline,1609 Draws,1,cymbeline,1609 Drawn,1,cymbeline,1609 rivers,1,cymbeline,1609 unscalable,1,cymbeline,1609 utter,1,cymbeline,1609 repented,1,cymbeline,1609 refuse,1,cymbeline,1609 discern,1,cymbeline,1609 offend,1,cymbeline,1609 clement,1,cymbeline,1609 serving,1,cymbeline,1609 distinguish,1,cymbeline,1609 descends,1,cymbeline,1609 exercise,1,cymbeline,1609 Fidele's,1,cymbeline,1609 sorer,1,cymbeline,1609 stowage,1,cymbeline,1609 flattery,1,cymbeline,1609 inter'gatories,1,cymbeline,1609 balls,1,cymbeline,1609 appeased,1,cymbeline,1609 Ah,1,cymbeline,1609 tasting,1,cymbeline,1609 altogether,1,cymbeline,1609 infection,1,cymbeline,1609 packing,1,cymbeline,1609 quarrel,1,cymbeline,1609 fool's,1,cymbeline,1609 amplify,1,cymbeline,1609 Means,1,cymbeline,1609 hilding,1,cymbeline,1609 heresy,1,cymbeline,1609 motives,1,cymbeline,1609 freeness,1,cymbeline,1609 fool'd,1,cymbeline,1609 jackanapes,1,cymbeline,1609 bow,1,cymbeline,1609 shaming,1,cymbeline,1609 loath,1,cymbeline,1609 wronger,1,cymbeline,1609 Stick,1,cymbeline,1609 Corrupters,1,cymbeline,1609 vigour,1,cymbeline,1609 wash'd,1,cymbeline,1609 unnatural,1,cymbeline,1609 reason's,1,cymbeline,1609 Solicit'st,1,cymbeline,1609 fortify,1,cymbeline,1609 lance,1,cymbeline,1609 voluntary,1,cymbeline,1609 foam'd,1,cymbeline,1609 Play,1,cymbeline,1609 bag,1,cymbeline,1609 told'st,1,cymbeline,1609 pointed,1,cymbeline,1609 Lo,1,cymbeline,1609 flats,1,cymbeline,1609 pander,1,cymbeline,1609 verier,1,cymbeline,1609 prone,1,cymbeline,1609 Ourselves,1,cymbeline,1609 warrior,1,cymbeline,1609 wrings,1,cymbeline,1609 imagined,1,cymbeline,1609 bay,1,cymbeline,1609 siege,1,cymbeline,1609 Philomel,1,cymbeline,1609 razed,1,cymbeline,1609 mapped,1,cymbeline,1609 disarmeth,1,cymbeline,1609 lands,1,cymbeline,1609 unlustrous,1,cymbeline,1609 empery,1,cymbeline,1609 Winning,1,cymbeline,1609 prethee,1,cymbeline,1609 unless,1,cymbeline,1609 in's,1,cymbeline,1609 Accessible,1,cymbeline,1609 kept,1,cymbeline,1609 Albeit,1,cymbeline,1609 harebell,1,cymbeline,1609 creature,1,cymbeline,1609 merited,1,cymbeline,1609 beautiful,1,cymbeline,1609 defied,1,cymbeline,1609 dreaded,1,cymbeline,1609 tales,1,cymbeline,1609 diligence,1,cymbeline,1609 gamesome,1,cymbeline,1609 hie,1,cymbeline,1609 hid,1,cymbeline,1609 innocent,1,cymbeline,1609 wisdom,1,cymbeline,1609 Exposing,1,cymbeline,1609 Exceeding,1,cymbeline,1609 Something,1,cymbeline,1609 Revengingly,1,cymbeline,1609 Ha,1,cymbeline,1609 o'ervalues,1,cymbeline,1609 dew's,1,cymbeline,1609 calves',1,cymbeline,1609 locking,1,cymbeline,1609 sovereignty,1,cymbeline,1609 feigned,1,cymbeline,1609 dinner,1,cymbeline,1609 Allayments,1,cymbeline,1609 damm'd,1,cymbeline,1609 whole,1,cymbeline,1609 tallow,1,cymbeline,1609 'Stand,1,cymbeline,1609 surely,1,cymbeline,1609 ambush,1,cymbeline,1609 prison'd,1,cymbeline,1609 quick,1,cymbeline,1609 ease,1,cymbeline,1609 Perfumes,1,cymbeline,1609 'mulier,1,cymbeline,1609 path,1,cymbeline,1609 wither'd,1,cymbeline,1609 furnaces,1,cymbeline,1609 unchaste,1,cymbeline,1609 pate,1,cymbeline,1609 revenue,1,cymbeline,1609 stew,1,cymbeline,1609 enrich,1,cymbeline,1609 commendation,1,cymbeline,1609 abhorred,1,cymbeline,1609 buys,1,cymbeline,1609 pass,1,cymbeline,1609 troops,1,cymbeline,1609 hides,1,cymbeline,1609 off's,1,cymbeline,1609 Swallows,1,cymbeline,1609 Has,1,cymbeline,1609 proud,1,cymbeline,1609 mortally,1,cymbeline,1609 pox,1,cymbeline,1609 Is't,1,cymbeline,1609 madded,1,cymbeline,1609 grandfather,1,cymbeline,1609 Answering,1,cymbeline,1609 glorious,1,cymbeline,1609 prompts,1,cymbeline,1609 strew,1,cymbeline,1609 scriptures,1,cymbeline,1609 Gold,1,cymbeline,1609 quantity,1,cymbeline,1609 nobly,1,cymbeline,1609 Gone,1,cymbeline,1609 o'erthrow,1,cymbeline,1609 sire,1,cymbeline,1609 allure,1,cymbeline,1609 quiet,1,cymbeline,1609 corrupted,1,cymbeline,1609 Cytherea,1,cymbeline,1609 Adieu,1,cymbeline,1609 theft,1,cymbeline,1609 priests,1,cymbeline,1609 roof's,1,cymbeline,1609 ascension,1,cymbeline,1609 whore,1,cymbeline,1609 haunt,1,cymbeline,1609 Continues,1,cymbeline,1609 'overcame,1,cymbeline,1609 madmen,1,cymbeline,1609 brawns,1,cymbeline,1609 Murder,1,cymbeline,1609 catalogue,1,cymbeline,1609 repeated,1,cymbeline,1609 sits,1,cymbeline,1609 morning's,1,cymbeline,1609 week,1,cymbeline,1609 sulphur,1,cymbeline,1609 nigh,1,cymbeline,1609 absent,1,cymbeline,1609 Prouder,1,cymbeline,1609 Heard,1,cymbeline,1609 bush,1,cymbeline,1609 belied,1,cymbeline,1609 Jove's,1,cymbeline,1609 fields,1,cymbeline,1609 pandar,1,cymbeline,1609 belief,1,cymbeline,1609 imagine,1,cymbeline,1609 Present,1,cymbeline,1609 Continued,1,cymbeline,1609 suffer'd,1,cymbeline,1609 'Twould,1,cymbeline,1609 thunderbolt,1,cymbeline,1609 whereat,1,cymbeline,1609 Preservers,1,cymbeline,1609 protract,1,cymbeline,1609 goodly,1,cymbeline,1609 Thou'lt,1,cymbeline,1609 crare,1,cymbeline,1609 posture,1,cymbeline,1609 car,1,cymbeline,1609 tabled,1,cymbeline,1609 cap,1,cymbeline,1609 tendance,1,cymbeline,1609 prisoners,1,cymbeline,1609 shielded,1,cymbeline,1609 tell'st,1,cymbeline,1609 attention,1,cymbeline,1609 homely,1,cymbeline,1609 Rejoiced,1,cymbeline,1609 sounds,1,cymbeline,1609 Bitter,1,cymbeline,1609 Dishonestly,1,cymbeline,1609 tricks,1,cymbeline,1609 'tween,1,cymbeline,1609 Outvenoms,1,cymbeline,1609 devilish,1,cymbeline,1609 tables,1,cymbeline,1609 immediate,1,cymbeline,1609 furnished,1,cymbeline,1609 tablet,1,cymbeline,1609 stealer,1,cymbeline,1609 Foundations,1,cymbeline,1609 bent,1,cymbeline,1609 canopied,1,cymbeline,1609 craft,1,cymbeline,1609 kindnesses,1,cymbeline,1609 imperial,1,cymbeline,1609 Strange,1,cymbeline,1609 infectious,1,cymbeline,1609 Severn,1,cymbeline,1609 bugs,1,cymbeline,1609 sustain,1,cymbeline,1609 enlargement,1,cymbeline,1609 perilous,1,cymbeline,1609 Put,1,cymbeline,1609 waving,1,cymbeline,1609 Died,1,cymbeline,1609 manacle,1,cymbeline,1609 courtesies,1,cymbeline,1609 captains,1,cymbeline,1609 Disdaining,1,cymbeline,1609 tickled,1,cymbeline,1609 suddenly,1,cymbeline,1609 Boldness,1,cymbeline,1609 probation,1,cymbeline,1609 Didst,1,cymbeline,1609 persuasion,1,cymbeline,1609 Tarquin,1,cymbeline,1609 keep'st,1,cymbeline,1609 delay'd,1,cymbeline,1609 conversant,1,cymbeline,1609 Famous,1,cymbeline,1609 just,1,cymbeline,1609 Egregious,1,cymbeline,1609 strewings,1,cymbeline,1609 jealosy,1,cymbeline,1609 tedious,1,cymbeline,1609 friendly,1,cymbeline,1609 conquest,1,cymbeline,1609 testify,1,cymbeline,1609 derogation,1,cymbeline,1609 ditch'd,1,cymbeline,1609 twinn'd,1,cymbeline,1609 curse,1,cymbeline,1609 Showing,1,cymbeline,1609 counterchange,1,cymbeline,1609 beget,1,cymbeline,1609 Shakes,1,cymbeline,1609 Bringing,1,cymbeline,1609 herein,1,cymbeline,1609 amongst,1,cymbeline,1609 'Do't,1,cymbeline,1609 vassal,1,cymbeline,1609 Above,1,cymbeline,1609 travel,1,cymbeline,1609 gather'd,1,cymbeline,1609 Proclaims,1,cymbeline,1609 frowns,1,cymbeline,1609 used,1,cymbeline,1609 tailors,1,cymbeline,1609 disguise,1,cymbeline,1609 dependency,1,cymbeline,1609 bees,1,cymbeline,1609 Thou'st,1,cymbeline,1609 O'er,1,cymbeline,1609 Meet,1,cymbeline,1609 About,1,cymbeline,1609 admired,1,cymbeline,1609 casement,1,cymbeline,1609 gout,1,cymbeline,1609 sins,1,cymbeline,1609 year's,1,cymbeline,1609 ambassadors,1,cymbeline,1609 Toad,1,cymbeline,1609 sink,1,cymbeline,1609 savoury,1,cymbeline,1609 jump,1,cymbeline,1609 dispraising,1,cymbeline,1609 nonpareil,1,cymbeline,1609 beds,1,cymbeline,1609 Vanquish,1,cymbeline,1609 Whither,1,cymbeline,1609 stretch,1,cymbeline,1609 quire,1,cymbeline,1609 fulness,1,cymbeline,1609 audacity,1,cymbeline,1609 ashamed,1,cymbeline,1609 north,1,cymbeline,1609 grandsire,1,cymbeline,1609 turns,1,cymbeline,1609 orderly,1,cymbeline,1609 gasp,1,cymbeline,1609 averting,1,cymbeline,1609 immortal,1,cymbeline,1609 lately,1,cymbeline,1609 hurts,1,cymbeline,1609 dolours,1,cymbeline,1609 destitute,1,cymbeline,1609 search'd,1,cymbeline,1609 Behoves,1,cymbeline,1609 o'ergrown,1,cymbeline,1609 convey'd,1,cymbeline,1609 tirest,1,cymbeline,1609 Attending,1,cymbeline,1609 untender,1,cymbeline,1609 store,1,cymbeline,1609 Fitting,1,cymbeline,1609 arrogant,1,cymbeline,1609 noted,1,cymbeline,1609 entertain,1,cymbeline,1609 eagles,1,cymbeline,1609 storm,1,cymbeline,1609 deliverance,1,cymbeline,1609 impatience,1,cymbeline,1609 God's,1,cymbeline,1609 Ordain'd,1,cymbeline,1609 sear'd,1,cymbeline,1609 deem,1,cymbeline,1609 sail,1,cymbeline,1609 virgin,1,cymbeline,1609 government,1,cymbeline,1609 enchants,1,cymbeline,1609 Prefer,1,cymbeline,1609 stay'd,1,cymbeline,1609 Waking,1,cymbeline,1609 affection,1,cymbeline,1609 forgive,1,cymbeline,1609 valleys,1,cymbeline,1609 promised,1,cymbeline,1609 plate,1,cymbeline,1609 betray,1,cymbeline,1609 ha,1,cymbeline,1609 blowing,1,cymbeline,1609 clear'd,1,cymbeline,1609 voyage,1,cymbeline,1609 Goodly,1,cymbeline,1609 promises,1,cymbeline,1609 torments,1,cymbeline,1609 Purpose,1,cymbeline,1609 keeping,1,cymbeline,1609 supplyment,1,cymbeline,1609 nostrils,1,cymbeline,1609 gallows,1,cymbeline,1609 continues,1,cymbeline,1609 Publish,1,cymbeline,1609 du,1,cymbeline,1609 tyrant,1,cymbeline,1609 barely,1,cymbeline,1609 aid,1,cymbeline,1609 omnes,1,cymbeline,1609 strut,1,cymbeline,1609 Best,1,cymbeline,1609 battery,1,cymbeline,1609 took'st,1,cymbeline,1609 jewels,1,cymbeline,1609 Part,1,cymbeline,1609 deck,1,cymbeline,1609 batters,1,cymbeline,1609 painting,1,cymbeline,1609 prevented,1,cymbeline,1609 fetter'd,1,cymbeline,1609 ooze,1,cymbeline,1609 violence,1,cymbeline,1609 stool,1,cymbeline,1609 stoop,1,cymbeline,1609 Longs,1,cymbeline,1609 yes,1,cymbeline,1609 unfledged,1,cymbeline,1609 tongued,1,cymbeline,1609 untwine,1,cymbeline,1609 beak,1,cymbeline,1609 pervert,1,cymbeline,1609 tongues,1,cymbeline,1609 legs,1,cymbeline,1609 bid'st,1,cymbeline,1609 whereon,1,cymbeline,1609 unworthy,1,cymbeline,1609 peck'd,1,cymbeline,1609 excelled,1,cymbeline,1609 Rides,1,cymbeline,1609 Revenge,1,cymbeline,1609 moveables,1,cymbeline,1609 yokes,1,cymbeline,1609 victory,1,cymbeline,1609 Safe,1,cymbeline,1609 priest,1,cymbeline,1609 seeing,1,cymbeline,1609 pluck'd,1,cymbeline,1609 Pays,1,cymbeline,1609 lent,1,cymbeline,1609 Besides,1,cymbeline,1609 played,1,cymbeline,1609 accuser,1,cymbeline,1609 enforce,1,cymbeline,1609 victors,1,cymbeline,1609 gall,1,cymbeline,1609 outwardly,1,cymbeline,1609 forged,1,cymbeline,1609 defence,1,cymbeline,1609 wren's,1,cymbeline,1609 restraint,1,cymbeline,1609 tapesty,1,cymbeline,1609 nicely,1,cymbeline,1609 by't,1,cymbeline,1609 Divide,1,cymbeline,1609 sample,1,cymbeline,1609 spongy,1,cymbeline,1609 yields,1,cymbeline,1609 Laud,1,cymbeline,1609 comforts,1,cymbeline,1609 promising,1,cymbeline,1609 reckon,1,cymbeline,1609 ah,1,cymbeline,1609 enclosed,1,cymbeline,1609 supreme,1,cymbeline,1609 wench,1,cymbeline,1609 Neptune's,1,cymbeline,1609 Displace,1,cymbeline,1609 rangers,1,cymbeline,1609 cured,1,cymbeline,1609 disorder's,1,cymbeline,1609 tinct,1,cymbeline,1609 wonderful,1,cymbeline,1609 cures,1,cymbeline,1609 incivil,1,cymbeline,1609 know't,1,cymbeline,1609 Increase,1,cymbeline,1609 board,1,cymbeline,1609 soaring,1,cymbeline,1609 pang'd,1,cymbeline,1609 mows,1,cymbeline,1609 hostage,1,cymbeline,1609 passable,1,cymbeline,1609 sufficeth,1,cymbeline,1609 orphans',1,cymbeline,1609 commendations,1,cymbeline,1609 wisely,1,cymbeline,1609 region,1,cymbeline,1609 arrearages,1,cymbeline,1609 moss,1,cymbeline,1609 between's,1,cymbeline,1609 crave,1,cymbeline,1609 roused,1,cymbeline,1609 Goes,1,cymbeline,1609 gibbets,1,cymbeline,1609 CLOTEN'S,1,cymbeline,1609 Pleaseth,1,cymbeline,1609 remainders,1,cymbeline,1609 routs,1,cymbeline,1609 prevailed,1,cymbeline,1609 insultment,1,cymbeline,1609 backdoor,1,cymbeline,1609 playfellow,1,cymbeline,1609 Live,1,cymbeline,1609 account,1,cymbeline,1609 med'cinable,1,cymbeline,1609 produce,1,cymbeline,1609 lout,1,cymbeline,1609 cooked,1,cymbeline,1609 Ready,1,cymbeline,1609 caused,1,cymbeline,1609 Begin,1,cymbeline,1609 lover,1,cymbeline,1609 gyves,1,cymbeline,1609 scornful,1,cymbeline,1609 aer,1,cymbeline,1609 expulsion,1,cymbeline,1609 offences,1,cymbeline,1609 Success,1,cymbeline,1609 begg'd,1,cymbeline,1609 sharply,1,cymbeline,1609 pursued,1,cymbeline,1609 loud,1,cymbeline,1609 miserable,1,cymbeline,1609 enjoys,1,cymbeline,1609 endure,1,cymbeline,1609 offer'd,1,cymbeline,1609 'gins,1,cymbeline,1609 ado,1,cymbeline,1609 parents,1,cymbeline,1609 moon,1,cymbeline,1609 Fairness,1,cymbeline,1609 Minerva,1,cymbeline,1609 speak'st,1,cymbeline,1609 partners,1,cymbeline,1609 dragons,1,cymbeline,1609 semblance,1,cymbeline,1609 potent,1,cymbeline,1609 franklin's,1,cymbeline,1609 importantly,1,cymbeline,1609 Breathe,1,cymbeline,1609 all's,1,cymbeline,1609 ace,1,cymbeline,1609 explication,1,cymbeline,1609 apparel,1,cymbeline,1609 'bout,1,cymbeline,1609 blue,1,cymbeline,1609 violet,1,cymbeline,1609 heap'st,1,cymbeline,1609 lets,1,cymbeline,1609 smart,1,cymbeline,1609 nimble,1,cymbeline,1609 It's,1,cymbeline,1609 Pisanio's,1,cymbeline,1609 madding,1,cymbeline,1609 trims,1,cymbeline,1609 Triumphs,1,cymbeline,1609 attain,1,cymbeline,1609 Discourse,1,cymbeline,1609 journey,1,cymbeline,1609 waggish,1,cymbeline,1609 fainter,1,cymbeline,1609 enchafed,1,cymbeline,1609 appease,1,cymbeline,1609 pure,1,cymbeline,1609 withering,1,cymbeline,1609 load,1,cymbeline,1609 Came,1,cymbeline,1609 boil'd,1,cymbeline,1609 graves,1,cymbeline,1609 hark,1,cymbeline,1609 hardly,1,cymbeline,1609 Reposing,1,cymbeline,1609 Seeing,1,cymbeline,1609 eats,1,cymbeline,1609 running,1,cymbeline,1609 plot,1,cymbeline,1609 cherubins,1,cymbeline,1609 fierce,1,cymbeline,1609 bodily,1,cymbeline,1609 discourse,1,cymbeline,1609 Jack,1,cymbeline,1609 park,1,cymbeline,1609 induce,1,cymbeline,1609 remember't,1,cymbeline,1609 speaks,1,cymbeline,1609 incline,1,cymbeline,1609 swathing,1,cymbeline,1609 distil,1,cymbeline,1609 isle,1,cymbeline,1609 fasten'd,1,cymbeline,1609 reinforce,1,cymbeline,1609 Profane,1,cymbeline,1609 plod,1,cymbeline,1609 robber,1,cymbeline,1609 December,1,cymbeline,1609 aye,1,cymbeline,1609 hall,1,cymbeline,1609 sinks,1,cymbeline,1609 cancel,1,cymbeline,1609 poorly,1,cymbeline,1609 knit,1,cymbeline,1609 infirmities,1,cymbeline,1609 quarter'd,1,cymbeline,1609 unworthiness,1,cymbeline,1609 submit,1,cymbeline,1609 fowl,1,cymbeline,1609 basest,1,cymbeline,1609 coldest,1,cymbeline,1609 openness,1,cymbeline,1609 finish,1,cymbeline,1609 shortness,1,cymbeline,1609 noisome,1,cymbeline,1609 Stark,1,cymbeline,1609 perform'd,1,cymbeline,1609 thrift,1,cymbeline,1609 Read,1,cymbeline,1609 husband's,1,cymbeline,1609 spur,1,cymbeline,1609 see't,1,cymbeline,1609 Happy,1,cymbeline,1609 shunned,1,cymbeline,1609 Continue,1,cymbeline,1609 strings,1,cymbeline,1609 rushes,1,cymbeline,1609 re,1,cymbeline,1609 hang,1,cymbeline,1609 Follow'd,1,cymbeline,1609 Pluck,1,cymbeline,1609 shun,1,cymbeline,1609 appears,1,cymbeline,1609 liberty,1,cymbeline,1609 nobleness,1,cymbeline,1609 journal,1,cymbeline,1609 shut,1,cymbeline,1609 Full,1,cymbeline,1609 swiftest,1,cymbeline,1609 four,1,cymbeline,1609 surges,1,cymbeline,1609 threaten'd,1,cymbeline,1609 provider,1,cymbeline,1609 joyful,1,cymbeline,1609 remembrancer,1,cymbeline,1609 rudest,1,cymbeline,1609 provided,1,cymbeline,1609 particulars,1,cymbeline,1609 During,1,cymbeline,1609 spotted,1,cymbeline,1609 Hum,1,cymbeline,1609 acquaintance,1,cymbeline,1609 untender'd,1,cymbeline,1609 Smile,1,cymbeline,1609 occasions,1,cymbeline,1609 Hurt,1,cymbeline,1609 form,1,cymbeline,1609 knocks,1,cymbeline,1609 abhor,1,cymbeline,1609 laming,1,cymbeline,1609 skirmish,1,cymbeline,1609 harder,1,cymbeline,1609 confederate,1,cymbeline,1609 shaked,1,cymbeline,1609 pair,1,cymbeline,1609 ship,1,cymbeline,1609 courts,1,cymbeline,1609 hangs,1,cymbeline,1609 return'd,1,cymbeline,1609 fiery,1,cymbeline,1609 wagging,1,cymbeline,1609 ape,1,cymbeline,1609 Puts,1,cymbeline,1609 diest,1,cymbeline,1609 fore,1,cymbeline,1609 wretchedness,1,cymbeline,1609 delve,1,cymbeline,1609 Ajax',1,cymbeline,1609 outprized,1,cymbeline,1609 apt,1,cymbeline,1609 bellyful,1,cymbeline,1609 Dispatch,1,cymbeline,1609 Cave,1,cymbeline,1609 Helen,1,cymbeline,1609 orisons,1,cymbeline,1609 howsoe'er,1,cymbeline,1609 shop,1,cymbeline,1609 forlorn,1,cymbeline,1609 fear'd,1,cymbeline,1609 worldly,1,cymbeline,1609 Quail,1,cymbeline,1609 laboursome,1,cymbeline,1609 puts,1,cymbeline,1609 fishes,1,cymbeline,1609 yielded,1,cymbeline,1609 fear's,1,cymbeline,1609 Sayest,1,cymbeline,1609 faithful,1,cymbeline,1609 moan,1,cymbeline,1609 SICILIUS,1,cymbeline,1609 Fell,1,cymbeline,1609 importance,1,cymbeline,1609 food,1,cymbeline,1609 Quake,1,cymbeline,1609 signior,1,cymbeline,1609 stricter,1,cymbeline,1609 depender,1,cymbeline,1609 confection,1,cymbeline,1609 athwart,1,cymbeline,1609 Gordian,1,cymbeline,1609 testimony,1,cymbeline,1609 renowned,1,cymbeline,1609 beetle,1,cymbeline,1609 fond,1,cymbeline,1609 girl,1,cymbeline,1609 scarcely,1,cymbeline,1609 Lolling,1,cymbeline,1609 'Mongst,1,cymbeline,1609 error,1,cymbeline,1609 Men's,1,cymbeline,1609 vaulted,1,cymbeline,1609 conclusions,1,cymbeline,1609 learns,1,cymbeline,1609 stone's,1,cymbeline,1609 Care,1,cymbeline,1609 Obedience,1,cymbeline,1609 trice,1,cymbeline,1609 placing,1,cymbeline,1609 She'll,1,cymbeline,1609 open'd,1,cymbeline,1609 Arm,1,cymbeline,1609 smallness,1,cymbeline,1609 Strikes,1,cymbeline,1609 havior,1,cymbeline,1609 boughs,1,cymbeline,1609 trick,1,cymbeline,1609 unprizable,1,cymbeline,1609 distinction,1,cymbeline,1609 debitor,1,cymbeline,1609 undone,1,cymbeline,1609 Harm,1,cymbeline,1609 deadly,1,cymbeline,1609 few,1,cymbeline,1609 colour'd,1,cymbeline,1609 fed,1,cymbeline,1609 Again,1,cymbeline,1609 arras,1,cymbeline,1609 Contemn,1,cymbeline,1609 ministers,1,cymbeline,1609 cheque,1,cymbeline,1609 outsell,1,cymbeline,1609 justify,1,cymbeline,1609 Richer,1,cymbeline,1609 niceness,1,cymbeline,1609 inquiry,1,cymbeline,1609 Elysium,1,cymbeline,1609 conversation,1,cymbeline,1609 trial,1,cymbeline,1609 Stoop,1,cymbeline,1609 Creatures,1,cymbeline,1609 gain'd,1,cymbeline,1609 tasted,1,cymbeline,1609 unpaved,1,cymbeline,1609 feign,1,cymbeline,1609 guess,1,cymbeline,1609 masterless,1,cymbeline,1609 merrier,1,cymbeline,1609 lead,1,cymbeline,1609 precedent,1,cymbeline,1609 spoken,1,cymbeline,1609 Europe,1,cymbeline,1609 witch,1,cymbeline,1609 throw't,1,cymbeline,1609 delighted,1,cymbeline,1609 execute,1,cymbeline,1609 watch,1,cymbeline,1609 luck,1,cymbeline,1609 label,1,cymbeline,1609 sluggish,1,cymbeline,1609 fan,1,cymbeline,1609 borrow,1,cymbeline,1609 roof,1,cymbeline,1609 Comes,1,cymbeline,1609 dreading,1,cymbeline,1609 elected,1,cymbeline,1609 giglot,1,cymbeline,1609 hunters,1,cymbeline,1609 fitt'st,1,cymbeline,1609 spritely,1,cymbeline,1609 long'd,1,cymbeline,1609 condemn'd,1,cymbeline,1609 pretending,1,cymbeline,1609 effected,1,cymbeline,1609 deceiving,1,cymbeline,1609 Phoebus,1,cymbeline,1609 keeps,1,cymbeline,1609 ventures,1,cymbeline,1609 breeds,1,cymbeline,1609 heavier,1,cymbeline,1609 sprightly,1,cymbeline,1609 disedged,1,cymbeline,1609 'what,1,cymbeline,1609 swallowing,1,cymbeline,1609 costlier,1,cymbeline,1609 carried,1,cymbeline,1609 'Thus,1,cymbeline,1609 hind,1,cymbeline,1609 endurest,1,cymbeline,1609 tokens,1,cymbeline,1609 Safely,1,cymbeline,1609 Repairs,1,cymbeline,1609 bravest,1,cymbeline,1609 reported,1,cymbeline,1609 hill,1,cymbeline,1609 paled,1,cymbeline,1609 apprehension,1,cymbeline,1609 idiots,1,cymbeline,1609 Whispering,1,cymbeline,1609 bravery,1,cymbeline,1609 takest,1,cymbeline,1609 Knock,1,cymbeline,1609 retired,1,cymbeline,1609 raps,1,cymbeline,1609 freezing,1,cymbeline,1609 built,1,cymbeline,1609 bores,1,cymbeline,1609 'Gainst,1,cymbeline,1609 Better,1,cymbeline,1609 fourth,1,cymbeline,1609 garrison'd,1,cymbeline,1609 procuring,1,cymbeline,1609 thinks,1,cymbeline,1609 omit,1,cymbeline,1609 Half,1,cymbeline,1609 apply,1,cymbeline,1609 marks,1,cymbeline,1609 Venus,1,cymbeline,1609 contains,1,cymbeline,1609 Pieces,1,cymbeline,1609 number'd,1,cymbeline,1609 Back,1,cymbeline,1609 fraught,1,cymbeline,1609 craftied,1,cymbeline,1609 waked,1,cymbeline,1609 workman,1,cymbeline,1609 gavest,1,cymbeline,1609 hire,1,cymbeline,1609 capon,1,cymbeline,1609 opposition,1,cymbeline,1609 Hang,1,cymbeline,1609 dress,1,cymbeline,1609 restore,1,cymbeline,1609 conquer'd,1,cymbeline,1609 mounted,1,cymbeline,1609 societies,1,cymbeline,1609 greatness',1,cymbeline,1609 Smiled,1,cymbeline,1609 noon,1,cymbeline,1609 Presents,1,cymbeline,1609 circle,1,cymbeline,1609 rate,1,cymbeline,1609 deserving,1,cymbeline,1609 azured,1,cymbeline,1609 below,1,cymbeline,1609 foresay,1,cymbeline,1609 conceited,1,cymbeline,1609 Consign,1,cymbeline,1609 speediness,1,cymbeline,1609 vantages,1,cymbeline,1609 contention,1,cymbeline,1609 hint,1,cymbeline,1609 donation,1,cymbeline,1609 daily,1,cymbeline,1609 rout,1,cymbeline,1609 entertainment,1,cymbeline,1609 rash,1,cymbeline,1609 queens,1,cymbeline,1609 nimbler,1,cymbeline,1609 beard,1,cymbeline,1609 clothe,1,cymbeline,1609 Assumed,1,cymbeline,1609 furr'd,1,cymbeline,1609 scar,1,cymbeline,1609 wildness,1,cymbeline,1609 blunt,1,cymbeline,1609 companions,1,cymbeline,1609 traitors,1,cymbeline,1609 meanly,1,cymbeline,1609 Beginning,1,cymbeline,1609 feature,1,cymbeline,1609 styled,1,cymbeline,1609 cowslip,1,cymbeline,1609 pinching,1,cymbeline,1609 need'st,1,cymbeline,1609 pastime,1,cymbeline,1609 sirrah,1,cymbeline,1609 Base,1,cymbeline,1609 chase,1,cymbeline,1609 'saw',1,cymbeline,1609 likelihood,1,cymbeline,1609 courtezan,1,cymbeline,1609 annoy,1,cymbeline,1609 Striking,1,cymbeline,1609 citizen,1,cymbeline,1609 franchise,1,cymbeline,1609 learning,1,cymbeline,1609 Peep,1,cymbeline,1609 charm,1,cymbeline,1609 narrow,1,cymbeline,1609 mount,1,cymbeline,1609 All's,1,cymbeline,1609 affections,1,cymbeline,1609 equally,1,cymbeline,1609 shores,1,cymbeline,1609 Further,1,cymbeline,1609 Royal,1,cymbeline,1609 fairy,1,cymbeline,1609 staggers,1,cymbeline,1609 exiled,1,cymbeline,1609 loses,1,cymbeline,1609 counsellor,1,cymbeline,1609 slowness,1,cymbeline,1609 springs,1,cymbeline,1609 unhappy,1,cymbeline,1609 ordinance,1,cymbeline,1609 Murderous,1,cymbeline,1609 partner'd,1,cymbeline,1609 places,1,cymbeline,1609 shall's,1,cymbeline,1609 Protects,1,cymbeline,1609 rejoicing,1,cymbeline,1609 several,1,cymbeline,1609 anger'd,1,cymbeline,1609 circumstantial,1,cymbeline,1609 say'st,1,cymbeline,1609 Clotens,1,cymbeline,1609 cloak,1,cymbeline,1609 wonder'd,1,cymbeline,1609 Thyself,1,cymbeline,1609 knighted,1,cymbeline,1609 leaving,1,cymbeline,1609 consul,1,cymbeline,1609 performers,1,cymbeline,1609 mistresses,1,cymbeline,1609 wall'd,1,cymbeline,1609 sociable,1,cymbeline,1609 dirty,1,cymbeline,1609 resisted,1,cymbeline,1609 Known,1,cymbeline,1609 afflictions,1,cymbeline,1609 disprovest,1,cymbeline,1609 loyal'st,1,cymbeline,1609 discontent,1,cymbeline,1609 seasons,1,cymbeline,1609 fragments,1,cymbeline,1609 spurs,1,cymbeline,1609 device,1,cymbeline,1609 pretend,1,cymbeline,1609 lodge,1,cymbeline,1609 doors,1,cymbeline,1609 'He,1,cymbeline,1609 other's,1,cymbeline,1609 likewise,1,cymbeline,1609 distaff,1,cymbeline,1609 stare,1,cymbeline,1609 leaven,1,cymbeline,1609 kissed,1,cymbeline,1609 Richard,1,cymbeline,1609 blessings,1,cymbeline,1609 chariots,1,cymbeline,1609 sacrifice,1,cymbeline,1609 mile,1,cymbeline,1609 tribunes,1,cymbeline,1609 'If,1,cymbeline,1609 fares,1,cymbeline,1609 wiser,1,cymbeline,1609 Long,1,cymbeline,1609 outstood,1,cymbeline,1609 charitable,1,cymbeline,1609 usuries,1,cymbeline,1609 disdain'd,1,cymbeline,1609 varlet,1,cymbeline,1609 'Came',1,cymbeline,1609 stride,1,cymbeline,1609 covers,1,cymbeline,1609 prize,1,cymbeline,1609 saving,1,cymbeline,1609 creditor,1,cymbeline,1609 Makes,1,cymbeline,1609 knave,1,cymbeline,1609 halting,1,cymbeline,1609 sacrifices,1,cymbeline,1609 loudest,1,cymbeline,1609 Sons,1,cymbeline,1609 resty,1,cymbeline,1609 blanket,1,cymbeline,1609 Spider,1,cymbeline,1609 robbery,1,cymbeline,1609 Grant,1,cymbeline,1609 casual,1,cymbeline,1609 starting,1,cymbeline,1609 confidence,1,cymbeline,1609 keeper,1,cymbeline,1609 shuffle,1,cymbeline,1609 straightway,1,cymbeline,1609 bloods,1,cymbeline,1609 handmaids,1,cymbeline,1609 Queen,1,cymbeline,1609 beach,1,cymbeline,1609 egg,1,cymbeline,1609 villanous,1,cymbeline,1609 parties,1,cymbeline,1609 tenth,1,cymbeline,1609 Comelius,1,cymbeline,1609 dismission,1,cymbeline,1609 sunbeams,1,cymbeline,1609 unsought,1,cymbeline,1609 mark,1,cymbeline,1609 son's,1,cymbeline,1609 monsieur,1,cymbeline,1609 ninth,1,cymbeline,1609 Nice,1,cymbeline,1609 veriest,1,cymbeline,1609 incite,1,cymbeline,1609 mart,1,cymbeline,1609 employments,1,cymbeline,1609 persuaded,1,cymbeline,1609 crimson,1,cymbeline,1609 Glide,1,cymbeline,1609 I'ld,1,cymbeline,1609 afflicted,1,cymbeline,1609 'Two,1,cymbeline,1609 furnish'd,1,cymbeline,1609 quench,1,cymbeline,1609 oracle,1,cymbeline,1609 apartments,1,cymbeline,1609 mire,1,cymbeline,1609 Sky,1,cymbeline,1609 Thee,1,cymbeline,1609 because,1,cymbeline,1609 leaf's,1,cymbeline,1609 infinitely,1,cymbeline,1609 tender'st,1,cymbeline,1609 shrinking,1,cymbeline,1609 judgments,1,cymbeline,1609 brains,1,cymbeline,1609 'Those,1,cymbeline,1609 Crush,1,cymbeline,1609 beside,1,cymbeline,1609 abridgement,1,cymbeline,1609 Thersites',1,cymbeline,1609 shoulder,1,cymbeline,1609 chide,1,cymbeline,1609 disrobe,1,cymbeline,1609 miss,1,cymbeline,1609 Captives,1,cymbeline,1609 arch,1,cymbeline,1609 fish,1,cymbeline,1609 seal'd,1,cymbeline,1609 captive,1,cymbeline,1609 adventured,1,cymbeline,1609 Remaining,1,cymbeline,1609 trifle,1,cymbeline,1609 laughs,1,cymbeline,1609 graze,1,cymbeline,1609 smoke,1,cymbeline,1609 Parthian,1,cymbeline,1609 marvel,1,cymbeline,1609 Nile,1,cymbeline,1609 dainty,1,cymbeline,1609 thigh,1,cymbeline,1609 mockery,1,cymbeline,1609 trouble,1,cymbeline,1609 warmer,1,cymbeline,1609 stairs,1,cymbeline,1609 mistress',1,cymbeline,1609 changest,1,cymbeline,1609 Stepp'd,1,cymbeline,1609 wet,1,cymbeline,1609 sand,1,cymbeline,1609 Commanded,1,cymbeline,1609 cookery,1,cymbeline,1609 manner'd,1,cymbeline,1609 possession,1,cymbeline,1609 'worthy,1,cymbeline,1609 lengthening,1,cymbeline,1609 blindness,1,cymbeline,1609 Moulded,1,cymbeline,1609 Wert,1,cymbeline,1609 behalf,1,cymbeline,1609 lengthen'd,1,cymbeline,1609 dignified,1,cymbeline,1609 affairs,1,cymbeline,1609 cravens,1,cymbeline,1609 coining,1,cymbeline,1609 troublesome,1,cymbeline,1609 desolation,1,cymbeline,1609 proved,1,cymbeline,1609 renown,1,cymbeline,1609 striplings,1,cymbeline,1609 accomplish'd,1,cymbeline,1609 wrongs,1,cymbeline,1609 They'll,1,cymbeline,1609 sale,1,cymbeline,1609 estimations,1,cymbeline,1609 sow'd,1,cymbeline,1609 merits,1,cymbeline,1609 example,1,cymbeline,1609 stale,1,cymbeline,1609 pound,1,cymbeline,1609 salt,1,cymbeline,1609 'My,1,cymbeline,1609 abate,1,cymbeline,1609 retire,1,cymbeline,1609 purchase,1,cymbeline,1609 safely,1,cymbeline,1609 smoky,1,cymbeline,1609 knock'd,1,cymbeline,1609 wonderfully,1,cymbeline,1609 discipline,1,cymbeline,1609 lessens,1,cymbeline,1609 liberties,1,cymbeline,1609 five,1,cymbeline,1609 enters,1,cymbeline,1609 backwards,1,cymbeline,1609 unspoken,1,cymbeline,1609 goats,1,cymbeline,1609 curb'd,1,cymbeline,1609 provoke,1,cymbeline,1609 hateful,1,cymbeline,1609 thoroughly,1,cymbeline,1609 chaffless,1,cymbeline,1609 'Twill,1,cymbeline,1609 bands,1,cymbeline,1609 forfeiters,1,cymbeline,1609 herbs,1,cymbeline,1609 Taking,1,cymbeline,1609 defunct,1,cymbeline,1609 relieved,1,cymbeline,1609 cure,1,cymbeline,1609 Champ,1,cymbeline,1609 pretence,1,cymbeline,1609 youngest,1,cymbeline,1609 import,1,cymbeline,1609 measured,1,cymbeline,1609 Plenty,1,cymbeline,1609 upright,1,cymbeline,1609 Clotens',1,cymbeline,1609 Dream,1,cymbeline,1609 gan,1,cymbeline,1609 gap,1,cymbeline,1609 humanity,1,cymbeline,1609 moment,1,cymbeline,1609 Stoop'd,1,cymbeline,1609 closet,1,cymbeline,1609 Dead,1,cymbeline,1609 protect,1,cymbeline,1609 posted,1,cymbeline,1609 city's,1,cymbeline,1609 dawning,1,cymbeline,1609 handed,1,cymbeline,1609 oak,1,cymbeline,1609 Dear,1,cymbeline,1609 pudency,1,cymbeline,1609 ransom's,1,cymbeline,1609 obsequies,1,cymbeline,1609 ript,1,cymbeline,1609 back'd,1,cymbeline,1609 Lucina,1,cymbeline,1609 ransom'd,1,cymbeline,1609 Subdues,1,cymbeline,1609 choked,1,cymbeline,1609 voucher,1,cymbeline,1609 negligence,1,cymbeline,1609 death's,1,cymbeline,1609 Joy'd,1,cymbeline,1609 distress'd,1,cymbeline,1609 stepmothers,1,cymbeline,1609 integrity,1,cymbeline,1609 masks,1,cymbeline,1609 nursery,1,cymbeline,1609 aptness,1,cymbeline,1609 subtle,1,cymbeline,1609 Bows,1,cymbeline,1609 revolve,1,cymbeline,1609 speedily,1,cymbeline,1609 comparison,1,cymbeline,1609 Willingly,1,cymbeline,1609 cowslips,1,cymbeline,1609 operate,1,cymbeline,1609 issues,1,cymbeline,1609 Philarmonus,1,cymbeline,1609 Excited,1,cymbeline,1609 squire's,1,cymbeline,1609 interr'd,1,cymbeline,1609 cutter,1,cymbeline,1609 Motion,1,cymbeline,1609 earnest,1,cymbeline,1609 wax,1,cymbeline,1609 Throw,1,cymbeline,1609 'Thy,1,cymbeline,1609 Encounter,1,cymbeline,1609 raven's,1,cymbeline,1609 barbarous,1,cymbeline,1609 clock's,1,cymbeline,1609 hopeless,1,cymbeline,1609 perforce,1,cymbeline,1609 Agreed,1,cymbeline,1609 Slaver,1,cymbeline,1609 print,1,cymbeline,1609 ambition,1,cymbeline,1609 revolts,1,cymbeline,1609 becomest,1,cymbeline,1609 Ambitions,1,cymbeline,1609 girdle,1,cymbeline,1609 sufferance,1,cymbeline,1609 fervor,1,cymbeline,1609 arts,1,cymbeline,1609 reeling,1,cymbeline,1609 wood,1,cymbeline,1609 knowingly,1,cymbeline,1609 brother's,1,cymbeline,1609 pride,1,cymbeline,1609 kinsmen,1,cymbeline,1609 wanton,1,cymbeline,1609 journey's,1,cymbeline,1609 rags,1,cymbeline,1609 Spit,1,cymbeline,1609 bedfellow,1,cymbeline,1609 kitchen,1,cymbeline,1609 declare,1,cymbeline,1609 Conspired,1,cymbeline,1609 reveller,1,cymbeline,1609 price,1,cymbeline,1609 wont,1,cymbeline,1609 prick,1,cymbeline,1609 spectacles,1,cymbeline,1609 Endure,1,cymbeline,1609 owl,1,cymbeline,1609 coming,1,cymbeline,1609 Detest,1,cymbeline,1609 confiscate,1,cymbeline,1609 forfend,1,cymbeline,1609 women's,1,cymbeline,1609 Romans',1,cymbeline,1609 wheel,1,cymbeline,1609 pounds,1,cymbeline,1609 Three,1,cymbeline,1609 cursed,1,cymbeline,1609 lapse,1,cymbeline,1609 stoop'd,1,cymbeline,1609 affirm,1,cymbeline,1609 'shrew,1,cymbeline,1609 confiners,1,cymbeline,1609 swan's,1,cymbeline,1609 stripp'd,1,cymbeline,1609 curses,1,cymbeline,1609 fade,1,cymbeline,1609 Gives,1,cymbeline,1609 robb'd,1,cymbeline,1609 discover'd,1,cymbeline,1609 factor,1,cymbeline,1609 anchors,1,cymbeline,1609 adorer,1,cymbeline,1609 fact,1,cymbeline,1609 rustling,1,cymbeline,1609 godhead,1,cymbeline,1609 seize,1,cymbeline,1609 Express,1,cymbeline,1609 ransom,1,cymbeline,1609 penitent,1,cymbeline,1609 oppositions,1,cymbeline,1609 Heaven,1,cymbeline,1609 Prunes,1,cymbeline,1609 Cupid's,1,cymbeline,1609 estates,1,cymbeline,1609 fallen,1,cymbeline,1609 betid,1,cymbeline,1609 conference,1,cymbeline,1609 unparagoned,1,cymbeline,1609 earthly,1,cymbeline,1609 coiner,1,cymbeline,1609 certainty,1,cymbeline,1609 Big,1,cymbeline,1609 anger,1,cymbeline,1609 vicious,1,cymbeline,1609 forfeit,1,cymbeline,1609 thoroughfare,1,cymbeline,1609 killing,1,cymbeline,1609 labour'd,1,cymbeline,1609 movers,1,cymbeline,1609 blazon'st,1,cymbeline,1609 womb,1,cymbeline,1609 Prisoners,1,cymbeline,1609 knight,1,cymbeline,1609 bitterness,1,cymbeline,1609 dumb,1,cymbeline,1609 lopp'd,1,cymbeline,1609 lust,1,cymbeline,1609 wife's,1,cymbeline,1609 rail,1,cymbeline,1609 supply,1,cymbeline,1609 definite,1,cymbeline,1609 rudeness,1,cymbeline,1609 rain,1,cymbeline,1609 unite,1,cymbeline,1609 functions,1,cymbeline,1609 movest,1,cymbeline,1609 cups,1,cymbeline,1609 duly,1,cymbeline,1609 Lamentable,1,cymbeline,1609 minister'd,1,cymbeline,1609 'live,1,cymbeline,1609 resume,1,cymbeline,1609 waters,1,cymbeline,1609 wolf,1,cymbeline,1609 belie,1,cymbeline,1609 timely,1,cymbeline,1609 Amongst,1,cymbeline,1609 Nobler,1,cymbeline,1609 harvest,1,cymbeline,1609 torturers,1,cymbeline,1609 embark'd,1,cymbeline,1609 unsatisfied,1,cymbeline,1609 wooer,1,cymbeline,1609 doers',1,cymbeline,1609 flash,1,cymbeline,1609 fox,1,cymbeline,1609 Forbear,1,cymbeline,1609 staider,1,cymbeline,1609 hundred,1,cymbeline,1609 vexed,1,cymbeline,1609 stirs,1,cymbeline,1609 unfortunate,1,cymbeline,1609 satiate,1,cymbeline,1609 fail,1,cymbeline,1609 fill'd,1,cymbeline,1609 travelling,1,cymbeline,1609 file,1,cymbeline,1609 unseduced,1,cymbeline,1609 belch,1,cymbeline,1609 compare,1,cymbeline,1609 minister,1,cymbeline,1609 heirs,1,cymbeline,1609 sails,1,cymbeline,1609 create,1,cymbeline,1609 imperceiverant,1,cymbeline,1609 wholesome,1,cymbeline,1609 violate,1,cymbeline,1609 dispatch'd,1,cymbeline,1609 fretted,1,cymbeline,1609 vomit,1,cymbeline,1609 perishing,1,cymbeline,1609 assail,1,cymbeline,1609 cried,1,cymbeline,1609 durst,1,cymbeline,1609 Many,1,cymbeline,1609 wept,1,cymbeline,1609 minds,1,cymbeline,1609 diseased,1,cymbeline,1609 judge,1,cymbeline,1609 doublet,1,cymbeline,1609 modesty,1,cymbeline,1609 miracle,1,cymbeline,1609 desert,1,cymbeline,1609 hugeness,1,cymbeline,1609 crystal,1,cymbeline,1609 unlearn'd,1,cymbeline,1609 cares,1,cymbeline,1609 Promises,1,cymbeline,1609 victor,1,cymbeline,1609 amends,1,cymbeline,1609 constancy,1,cymbeline,1609 cloys,1,cymbeline,1609 answers,1,cymbeline,1609 Greeks,1,cymbeline,1609 workers,1,cymbeline,1609 race,1,cymbeline,1609 kinsman,1,cymbeline,1609 methinks,1,cymbeline,1609 fame,1,cymbeline,1609 silly,1,cymbeline,1609 Evil,1,cymbeline,1609 simular,1,cymbeline,1609 scorns,1,cymbeline,1609 irregulous,1,cymbeline,1609 dissuaded,1,cymbeline,1609 Capitol,1,cymbeline,1609 discover,1,cymbeline,1609 Whereupon,1,cymbeline,1609 confections,1,cymbeline,1609 colours,1,cymbeline,1609 prolong'd,1,cymbeline,1609 do's,1,cymbeline,1609 worthiness,1,cymbeline,1609 Fixing,1,cymbeline,1609 ride,1,cymbeline,1609 Mary,1,cymbeline,1609 pantler,1,cymbeline,1609 Mars,1,cymbeline,1609 restrain'd,1,cymbeline,1609 esteem'd,1,cymbeline,1609 flame,1,cymbeline,1609 Mark,1,cymbeline,1609 officer,1,cymbeline,1609 scabbard,1,cymbeline,1609 offices,1,cymbeline,1609 Shook,1,cymbeline,1609 vow,1,cymbeline,1609 swallow'd,1,cymbeline,1609 fill,1,cymbeline,1609 Bow,1,cymbeline,1609 lean'd,1,cymbeline,1609 punish'd,1,cymbeline,1609 preservation,1,cymbeline,1609 Lead,1,cymbeline,1609 hose,1,cymbeline,1609 distemper,1,cymbeline,1609 O'erpays,1,cymbeline,1609 bard,1,cymbeline,1609 'given,1,cymbeline,1609 Fare,1,cymbeline,1609 host,1,cymbeline,1609 tavern,1,cymbeline,1609 wide,1,cymbeline,1609 astronomer,1,cymbeline,1609 Strains,1,cymbeline,1609 tail,1,cymbeline,1609 worship,1,cymbeline,1609 daisied,1,cymbeline,1609 wealth,1,cymbeline,1609 uncle,1,cymbeline,1609 an't,1,cymbeline,1609 vex,1,cymbeline,1609 Reading,1,cymbeline,1609 butcher,1,cymbeline,1609 perceive,1,cymbeline,1609 Bears,1,cymbeline,1609 chiefly,1,cymbeline,1609 beginners,1,cymbeline,1609 partly,1,cymbeline,1609 Partition,1,cymbeline,1609 wives,1,cymbeline,1609 madly,1,cymbeline,1609 wonted,1,cymbeline,1609 bate,1,cymbeline,1609 whither,1,cymbeline,1609 Offend,1,cymbeline,1609 Glad,1,cymbeline,1609 Tenantius,1,cymbeline,1609 behest,1,cymbeline,1609 Stealing,1,cymbeline,1609 meaning,1,cymbeline,1609 dullard,1,cymbeline,1609 incur,1,cymbeline,1609 waved,1,cymbeline,1609 gratitude,1,cymbeline,1609 Answer'd,1,cymbeline,1609 rustic,1,cymbeline,1609 bane,1,cymbeline,1609 appointed,1,cymbeline,1609 slanderous,1,cymbeline,1609 band,1,cymbeline,1609 winterly,1,cymbeline,1609 friendship,1,cymbeline,1609 'Gan,1,cymbeline,1609 hook,1,cymbeline,1609 unlaid,1,cymbeline,1609 Very,1,cymbeline,1609 motive,1,cymbeline,1609 ripely,1,cymbeline,1609 creeps,1,cymbeline,1609 subjection,1,cymbeline,1609 items,1,cymbeline,1609 names,1,cymbeline,1609 secrets,1,cymbeline,1609 Friendly,1,cymbeline,1609 cooks,1,cymbeline,1609 Field,1,cymbeline,1609 Each,1,cymbeline,1609 evidence,1,cymbeline,1609 Welcome,1,cymbeline,1609 mischance,1,cymbeline,1609 lights,1,cymbeline,1609 gallant,1,cymbeline,1609 ache,1,cymbeline,1609 creek,1,cymbeline,1609 Statist,1,cymbeline,1609 Awaking,1,cymbeline,1609 reckon'd,1,cymbeline,1609 witchcraft,1,cymbeline,1609 departure,1,cymbeline,1609 sojourn,1,cymbeline,1609 affliction,1,cymbeline,1609 unpeople,1,cymbeline,1609 fruitful,1,cymbeline,1609 aloft,1,cymbeline,1609 Appear,1,cymbeline,1609 Assured,1,cymbeline,1609 shameless,1,cymbeline,1609 clouted,1,cymbeline,1609 sufficient,1,cymbeline,1609 chaliced,1,cymbeline,1609 hunters',1,cymbeline,1609 perish,1,cymbeline,1609 provoked,1,cymbeline,1609 Fold,1,cymbeline,1609 torment,1,cymbeline,1609 Slight,1,cymbeline,1609 Linen,1,cymbeline,1609 reft'st,1,cymbeline,1609 asunder,1,cymbeline,1609 sixty,1,cymbeline,1609 alms,1,cymbeline,1609 greets,1,cymbeline,1609 Every,1,cymbeline,1609 occident,1,cymbeline,1609 recorded,1,cymbeline,1609 holds,1,cymbeline,1609 empire,1,cymbeline,1609 dungeon,1,cymbeline,1609 chapel,1,cymbeline,1609 condemnation,1,cymbeline,1609 holp,1,cymbeline,1609 clean,1,cymbeline,1609 gaolers,1,cymbeline,1609 Lay,1,cymbeline,1609 Rubies,1,cymbeline,1609 articles,1,cymbeline,1609 dozen,1,cymbeline,1609 affirmation,1,cymbeline,1609 greet,1,cymbeline,1609 workmanship,1,cymbeline,1609 stand'st,1,cymbeline,1609 famine,1,cymbeline,1609 pupil,1,cymbeline,1609 concluded,1,cymbeline,1609 sweepers,1,cymbeline,1609 dishes,1,cymbeline,1609 sweats,1,cymbeline,1609 Lives,1,cymbeline,1609 covenants,1,cymbeline,1609 follows,1,cymbeline,1609 feasts,1,cymbeline,1609 counterfeit,1,cymbeline,1609 Afric,1,cymbeline,1609 Frame,1,cymbeline,1609 abatement,1,cymbeline,1609 argument,1,cymbeline,1609 Breeds,1,cymbeline,1609 carcasses,1,cymbeline,1609 diedst,1,cymbeline,1609 condemn,1,cymbeline,1609 flood,1,cymbeline,1609 liver,1,cymbeline,1609 Syenna's,1,cymbeline,1609 Where's,1,cymbeline,1609 writing,1,cymbeline,1609 resolution,1,cymbeline,1609 preconsul,1,cymbeline,1609 Roman's,1,cymbeline,1609 seal,1,cymbeline,1609 acorn'd,1,cymbeline,1609 building,1,cymbeline,1609 task,1,cymbeline,1609 notwithstanding,1,cymbeline,1609 Fore,1,cymbeline,1609 vexing,1,cymbeline,1609 fitted,1,cymbeline,1609 master'd,1,cymbeline,1609 complaining,1,cymbeline,1609 terrors,1,cymbeline,1609 feeler's,1,cymbeline,1609 lungs,1,cymbeline,1609 country's,1,cymbeline,1609 yellow,1,cymbeline,1609 garbage,1,cymbeline,1609 Arabian,1,cymbeline,1609 evident,1,cymbeline,1609 sear,1,cymbeline,1609 tempters,1,cymbeline,1609 perfumes,1,cymbeline,1609 cheerful,1,cymbeline,1609 supplies,1,cymbeline,1609 Cleopatra,1,cymbeline,1609 cool,1,cymbeline,1609 Sluttery,1,cymbeline,1609 Cydnus,1,cymbeline,1609 vexation,1,cymbeline,1609 contents,1,cymbeline,1609 Attended,1,cymbeline,1609 favour's,1,cymbeline,1609 endowments,1,cymbeline,1609 Martial,1,cymbeline,1609 always,1,cymbeline,1609 convince,1,cymbeline,1609 undergoes,1,cymbeline,1609 inward,1,cymbeline,1609 leaping,1,cymbeline,1609 fairer,1,cymbeline,1609 eyed,1,cymbeline,1609 sweat,1,cymbeline,1609 ugly,1,cymbeline,1609 acts,1,cymbeline,1609 states,1,cymbeline,1609 letting,1,cymbeline,1609 free't,1,cymbeline,1609 babe,1,cymbeline,1609 serviceable,1,cymbeline,1609 expound,1,cymbeline,1609 converse,1,cymbeline,1609 needful,1,cymbeline,1609 reckoning,1,cymbeline,1609 thereto,1,cymbeline,1609 'Our,1,cymbeline,1609 weep'st,1,cymbeline,1609 plentiful,1,cymbeline,1609 comb,1,cymbeline,1609 singular,1,cymbeline,1609 material,1,cymbeline,1609 Chickens,1,cymbeline,1609 presence,1,cymbeline,1609 Ghost,1,cymbeline,1609 feeling,1,cymbeline,1609 adore,1,cymbeline,1609 rotting,1,cymbeline,1609 Companions,1,cymbeline,1609 nerves,1,cymbeline,1609 supposed,1,cymbeline,1609 Ne'er,1,cymbeline,1609 divineness,1,cymbeline,1609 trolls,1,cymbeline,1609 values,1,cymbeline,1609 others',1,cymbeline,1609 Italians,1,cymbeline,1609 pick'd,1,cymbeline,1609 conclude,1,cymbeline,1609 peeping,1,cymbeline,1609 condition,1,cymbeline,1609 differing,1,cymbeline,1609 steep'd,1,cymbeline,1609 exorciser,1,cymbeline,1609 cost,1,cymbeline,1609 fellows,1,cymbeline,1609 sound,1,cymbeline,1609 True,1,cymbeline,1609 dotards,1,cymbeline,1609 shaped,1,cymbeline,1609 bowls,1,cymbeline,1609 expectation,1,cymbeline,1609 assailed,1,cymbeline,1609 needless,1,cymbeline,1609 Groan,1,cymbeline,1609 changing,1,cymbeline,1609 mistrusted,1,cymbeline,1609 usage,1,cymbeline,1609 turbans,1,cymbeline,1609 whate'er,1,cymbeline,1609 tomboys,1,cymbeline,1609 puttock,1,cymbeline,1609 Maids,1,cymbeline,1609 modest,1,cymbeline,1609 vouching,1,cymbeline,1609 'twill,1,cymbeline,1609 cased,1,cymbeline,1609 Camest,1,cymbeline,1609 briefly,1,cymbeline,1609 nights,1,cymbeline,1609 testiness,1,cymbeline,1609 Civility,1,cymbeline,1609 Through,1,cymbeline,1609 Deliver,1,cymbeline,1609 wretches,1,cymbeline,1609 drugs,1,cymbeline,1609 greedy,1,cymbeline,1609 cushion,1,cymbeline,1609 curtail,1,cymbeline,1609 bait,1,cymbeline,1609 Reflect,1,cymbeline,1609 approach'd,1,cymbeline,1609 kindred,1,cymbeline,1609 jolly,1,cymbeline,1609 glove,1,cymbeline,1609 countrymen,1,cymbeline,1609 Send,1,cymbeline,1609 inviting,1,cymbeline,1609 remove,1,cymbeline,1609 raved,1,cymbeline,1609 beheld,1,cymbeline,1609 secure,1,cymbeline,1609 vouchsafes,1,cymbeline,1609 enrich'd,1,cymbeline,1609 Sent,1,cymbeline,1609 remarkable,1,cymbeline,1609 excellence,1,cymbeline,1609 believed,1,cymbeline,1609 believes,1,cymbeline,1609 Obedient,1,cymbeline,1609 Honour'd,1,cymbeline,1609 cinque,1,cymbeline,1609 see'st,1,cymbeline,1609 oppose,1,cymbeline,1609 unspeaking,1,cymbeline,1609 allowed,1,cymbeline,1609 Appear'd,1,cymbeline,1609 air's,1,cymbeline,1609 Nursing,1,cymbeline,1609 remedies,1,cymbeline,1609 Sell,1,cymbeline,1609 arch'd,1,cymbeline,1609 uplift,1,cymbeline,1609 deceive,1,cymbeline,1609 goer,1,cymbeline,1609 carriage,1,cymbeline,1609 eyest,1,cymbeline,1609 chose,1,cymbeline,1609 barren,1,cymbeline,1609 Ta'en,1,cymbeline,1609 fearing,1,cymbeline,1609 hiding,1,cymbeline,1609 countryman,1,cymbeline,1609 brogues,1,cymbeline,1609 quarrelous,1,cymbeline,1609 Remain,1,cymbeline,1609 consummation,1,cymbeline,1609 afterward,1,cymbeline,1609 pool,1,cymbeline,1609 Stronger,1,cymbeline,1609 ripp'd,1,cymbeline,1609 methought,1,cymbeline,1609 safer,1,cymbeline,1609 drooping,1,cymbeline,1609 crooked,1,cymbeline,1609 leagued,1,cymbeline,1609 seem'st,1,cymbeline,1609 chances,1,cymbeline,1609 Hearing,1,cymbeline,1609 missed,1,cymbeline,1609 threat,1,cymbeline,1609 untie,1,cymbeline,1609 Accuse,1,cymbeline,1609 until,1,cymbeline,1609 trow,1,cymbeline,1609 credulous,1,cymbeline,1609 perpetuity,1,cymbeline,1609 choke,1,cymbeline,1609 servants,1,cymbeline,1609 Inform,1,cymbeline,1609 forwardness,1,cymbeline,1609 borrowed,1,cymbeline,1609 slumber,1,cymbeline,1609 suitor,1,cymbeline,1609 ramps,1,cymbeline,1609 liegers,1,cymbeline,1609 approvers,1,cymbeline,1609 honesty,1,cymbeline,1609 unguarded,1,cymbeline,1609 Puppies,1,cymbeline,1609 debate,1,cymbeline,1609 'Justice,1,cymbeline,1609 adoption,1,cymbeline,1609 acquittance,1,cymbeline,1609 Preserved,1,cymbeline,1609 loyally,1,cymbeline,1609 alter'd,1,cymbeline,1609 barr'd,1,cymbeline,1609 volume,1,cymbeline,1609 gains,1,cymbeline,1609 taint,1,cymbeline,1609 guts,1,cymbeline,1609 spite,1,cymbeline,1609 Signior,1,cymbeline,1609 ruddock,1,cymbeline,1609 Absolute,1,cymbeline,1609 afeard,1,cymbeline,1609 mine's,1,cymbeline,1609 skipp'd,1,cymbeline,1609 Saturn,1,cymbeline,1609 pasture,1,cymbeline,1609 unlike,1,cymbeline,1609 future,1,cymbeline,1609 Five,1,cymbeline,1609 colted,1,cymbeline,1609 consequence,1,cymbeline,1609 azure,1,cymbeline,1609 strides,1,cymbeline,1609 reward,1,cymbeline,1609 begins,1,cymbeline,1609 burst,1,cymbeline,1609 starve,1,cymbeline,1609 posting,1,cymbeline,1609 look'dst,1,cymbeline,1609 steeds,1,cymbeline,1609 Dorothy,1,cymbeline,1609 dread,1,cymbeline,1609 ratify,1,cymbeline,1609 compounded,1,cymbeline,1609 impious,1,cymbeline,1609 outwent,1,cymbeline,1609 lofty,1,cymbeline,1609 breaker,1,cymbeline,1609 trip,1,cymbeline,1609 treacherous,1,cymbeline,1609 parallel,1,cymbeline,1609 herd's,1,cymbeline,1609 lamenting,1,cymbeline,1609 Always,1,cymbeline,1609 According,1,cymbeline,1609 Rise,1,cymbeline,1609 Dissembling,1,cymbeline,1609 fatherly,1,cymbeline,1609 sovereign,1,cymbeline,1609 nobody,1,cymbeline,1609 employment,1,cymbeline,1609 partisans,1,cymbeline,1609 street,1,cymbeline,1609 evils,1,cymbeline,1609 comforted,1,cymbeline,1609 Clock,1,cymbeline,1609 swerve,1,cymbeline,1609 perturb'd,1,cymbeline,1609 whiter,1,cymbeline,1609 hares,1,cymbeline,1609 confirmation,1,cymbeline,1609 pleasant,1,cymbeline,1609 Except,1,cymbeline,1609 limit,1,cymbeline,1609 uncross'd,1,cymbeline,1609 heartily,1,cymbeline,1609 pressing,1,cymbeline,1609 crafty,1,cymbeline,1609 sauced,1,cymbeline,1609 'Welcome,1,cymbeline,1609 remaining,1,cymbeline,1609 hanging's,1,cymbeline,1609 withdraw,1,cymbeline,1609 ask'st,1,cymbeline,1609 Mercurial,1,cymbeline,1609 harmony,1,cymbeline,1609 unbar,1,cymbeline,1609 henceforth,1,cymbeline,1609 inspired,1,cymbeline,1609 question'd,1,cymbeline,1609 on's,1,cymbeline,1609 Amen,1,cymbeline,1609 Whoreson,1,cymbeline,1609 pages,1,cymbeline,1609 captives,1,cymbeline,1609 Indeed,1,cymbeline,1609 marriage,1,cymbeline,1609 amorous,1,cymbeline,1609 pursuest,1,cymbeline,1609 mannerly,1,cymbeline,1609 Cupids,1,cymbeline,1609 whiles,1,cymbeline,1609 telling,1,cymbeline,1609 German,1,cymbeline,1609 thereupon,1,cymbeline,1609 lint,1,cymbeline,1609 sometimes,1,cymbeline,1609 Marry,1,cymbeline,1609 respects,1,cymbeline,1609 eunuch,1,cymbeline,1609 resembles,1,cymbeline,1609 fever,1,cymbeline,1609 renew'd,1,cymbeline,1609 pavement,1,cymbeline,1609 synod,1,cymbeline,1609 jollity,1,cymbeline,1609 talents,1,cymbeline,1609 flat,1,cymbeline,1609 fasting,1,cymbeline,1609 inherit,1,cymbeline,1609 unbent,1,cymbeline,1609 pious,1,cymbeline,1609 tenderness,1,cymbeline,1609 mutest,1,cymbeline,1609 tub,1,cymbeline,1609 Greet,1,cymbeline,1609 lawyer,1,cymbeline,1609 danger's,1,cymbeline,1609 tickle,1,cymbeline,1609 jack,1,cymbeline,1609 fitness,1,cymbeline,1609 VII,1,cymbeline,1609 Happiness,1,cymbeline,1609 throwing,1,cymbeline,1609 herblets,1,cymbeline,1609 Looking,1,cymbeline,1609 mineral,1,cymbeline,1609 betimes,1,cymbeline,1609 suspect,1,cymbeline,1609 hush,1,cymbeline,1609 sailors,1,cymbeline,1609 peer,1,cymbeline,1609 recompense,1,cymbeline,1609 peep,1,cymbeline,1609 human,1,cymbeline,1609 Hecuba,1,cymbeline,1609 weariness,1,cymbeline,1609 tributary,1,cymbeline,1609 Mighty,1,cymbeline,1609 eighteen,1,cymbeline,1609 prouder,1,cymbeline,1609 corners,1,cymbeline,1609 chatter,1,cymbeline,1609 counters,1,cymbeline,1609 Lust,1,cymbeline,1609 venge,1,cymbeline,1609 neigh,1,cymbeline,1609 inlay,1,cymbeline,1609 moe,1,cymbeline,1609 cell,1,cymbeline,1609 windows,1,cymbeline,1609 Render,1,cymbeline,1609 entreats,1,cymbeline,1609 forestall,1,cymbeline,1609 leading,1,cymbeline,1609 undertaking,1,cymbeline,1609 shade,1,cymbeline,1609 viperous,1,cymbeline,1609 newness,1,cymbeline,1609 wildly,1,cymbeline,1609 pight,1,cymbeline,1609 collection,1,cymbeline,1609 Chaste,1,cymbeline,1609 hired,1,cymbeline,1609 widow,1,cymbeline,1609 figure's,1,cymbeline,1609 therewithal,1,cymbeline,1609 wounding,1,cymbeline,1609 brag,1,cymbeline,1609 inventory,1,cymbeline,1609 Mount,1,cymbeline,1609 bran,1,cymbeline,1609 unparagon'd,1,cymbeline,1609 instructions,1,cymbeline,1609 provide,1,cymbeline,1609 mangled,1,cymbeline,1609 matrons,1,cymbeline,1609 confine,1,cymbeline,1609 dart,1,cymbeline,1609 stakes,1,cymbeline,1609 browse,1,cymbeline,1609 dark,1,cymbeline,1609 court'sy,1,cymbeline,1609 Falls,1,cymbeline,1609 sulphurous,1,cymbeline,1609 majestic,1,cymbeline,1609 Lest,1,cymbeline,1609 weigh,1,cymbeline,1609 ponds,1,cymbeline,1609 frame,1,cymbeline,1609 Something's,1,cymbeline,1609 solace,1,cymbeline,1609 ensues,1,cymbeline,1609 weight,1,cymbeline,1609 Aeneas,1,cymbeline,1609 scorpion,1,cymbeline,1609 catch,1,cymbeline,1609 oceans,1,cymbeline,1609 carcass,1,cymbeline,1609 lord's,1,cymbeline,1609 supp'd,1,cymbeline,1609 crystalline,1,cymbeline,1609 primrose,1,cymbeline,1609 blessing,1,cymbeline,1609 soothsayer,1,cymbeline,1609 roasted,1,cymbeline,1609 adulteries,1,cymbeline,1609 dry,1,cymbeline,1609 great'st,1,cymbeline,1609 Depending,1,cymbeline,1609 snatch,1,cymbeline,1609 Bring,1,cymbeline,1609 DRAMATIS,1,cymbeline,1609 Until,1,cymbeline,1609 success,1,cymbeline,1609 til,1,cymbeline,1609 tie,1,cymbeline,1609 shake,1,cymbeline,1609 Bind,1,cymbeline,1609 wrying,1,cymbeline,1609 flower,1,cymbeline,1609 leans,1,cymbeline,1609 Desires,1,cymbeline,1609 duller,1,cymbeline,1609 damn,1,cymbeline,1609 rareness,1,cymbeline,1609 flown,1,cymbeline,1609 bargain,1,cymbeline,1609 gnat,1,cymbeline,1609 Sinon's,1,cymbeline,1609 flows,1,cymbeline,1609 record,1,cymbeline,1609 cognizance,1,cymbeline,1609 tired,1,cymbeline,1609 reserve,1,cymbeline,1609 cross,1,cymbeline,1609 smell,1,cymbeline,1609 tamings,1,cymbeline,1609 outlustres,1,cymbeline,1609 Pardon's,1,cymbeline,1609 reviving,1,cymbeline,1609 Talk,1,cymbeline,1609 Accommodated,1,cymbeline,1609 private,1,cymbeline,1609 Fair,1,cymbeline,1609 smelt,1,cymbeline,1609 Uncertain,1,cymbeline,1609 arbitrement,1,cymbeline,1609 Direct,1,cymbeline,1609 shells,1,cymbeline,1609 figured,1,cymbeline,1609 corporal,1,cymbeline,1609 jealousy,1,cymbeline,1609 speaker,1,cymbeline,1609 slip,1,cymbeline,1609 stomachs,1,cymbeline,1609 tainted,1,cymbeline,1609 Finds,1,cymbeline,1609 If't,1,cymbeline,1609 amen,1,cymbeline,1609 Try,1,cymbeline,1609 Profess,1,cymbeline,1609 Fall,1,cymbeline,1609 bier,1,cymbeline,1609 justly,1,cymbeline,1609 haunted,1,cymbeline,1609 False,1,cymbeline,1609 gallowses,1,cymbeline,1609 Distinction,1,cymbeline,1609 Mingle,1,cymbeline,1609 neighbour,1,cymbeline,1609 clotpoll,1,cymbeline,1609 languishing,1,cymbeline,1609 th',1,cymbeline,1609 coin'd,1,cymbeline,1609 perhaps,1,cymbeline,1609 horrider,1,cymbeline,1609 feated,1,cymbeline,1609 easiliest,1,cymbeline,1609 mornings,1,cymbeline,1609 foster'd,1,cymbeline,1609 weringly,1,cymbeline,1609 Distinguish,1,cymbeline,1609 din,1,cymbeline,1609 contain'd,1,cymbeline,1609 discourtesy,1,cymbeline,1609 chambers,1,cymbeline,1609 geck,1,cymbeline,1609 dig,1,cymbeline,1609 ships,1,cymbeline,1609 Desired,1,cymbeline,1609 vilely,1,cymbeline,1609 adjourn'd,1,cymbeline,1609 seek'st,1,cymbeline,1609 monsters,1,cymbeline,1609 Disloyal,1,cymbeline,1609 sail'd,1,cymbeline,1609 prides,1,cymbeline,1609 You're,2,cymbeline,1609 heel,2,cymbeline,1609 quality,2,cymbeline,1609 Prove,2,cymbeline,1609 enjoyed,2,cymbeline,1609 days,2,cymbeline,1609 groom,2,cymbeline,1609 drop,2,cymbeline,1609 fathers,2,cymbeline,1609 double,2,cymbeline,1609 weary,2,cymbeline,1609 wish'd,2,cymbeline,1609 following,2,cymbeline,1609 treasure,2,cymbeline,1609 stately,2,cymbeline,1609 Fie,2,cymbeline,1609 lawful,2,cymbeline,1609 haste,2,cymbeline,1609 thankfully,2,cymbeline,1609 mend,2,cymbeline,1609 easily,2,cymbeline,1609 mountaineers,2,cymbeline,1609 construction,2,cymbeline,1609 held,2,cymbeline,1609 sleeps,2,cymbeline,1609 reserved,2,cymbeline,1609 Stay,2,cymbeline,1609 dish,2,cymbeline,1609 frowning,2,cymbeline,1609 duteous,2,cymbeline,1609 poisonous,2,cymbeline,1609 exceeds,2,cymbeline,1609 Tell,2,cymbeline,1609 younger,2,cymbeline,1609 contract,2,cymbeline,1609 Discover,2,cymbeline,1609 mere,2,cymbeline,1609 lodging,2,cymbeline,1609 Either,2,cymbeline,1609 Help,2,cymbeline,1609 toil,2,cymbeline,1609 learn'd,2,cymbeline,1609 succession,2,cymbeline,1609 understand,2,cymbeline,1609 richly,2,cymbeline,1609 fury,2,cymbeline,1609 drink,2,cymbeline,1609 throat,2,cymbeline,1609 worms,2,cymbeline,1609 press,2,cymbeline,1609 strumpet,2,cymbeline,1609 advise,2,cymbeline,1609 absolute,2,cymbeline,1609 sore,2,cymbeline,1609 ancestors,2,cymbeline,1609 pleasures,2,cymbeline,1609 Philario,2,cymbeline,1609 curious,2,cymbeline,1609 boy's,2,cymbeline,1609 saved,2,cymbeline,1609 mingled,2,cymbeline,1609 saves,2,cymbeline,1609 cats,2,cymbeline,1609 mercy,2,cymbeline,1609 extort,2,cymbeline,1609 sadly,2,cymbeline,1609 drive,2,cymbeline,1609 grows,2,cymbeline,1609 fortunate,2,cymbeline,1609 broken,2,cymbeline,1609 lily,2,cymbeline,1609 injury,2,cymbeline,1609 subjects,2,cymbeline,1609 Remember,2,cymbeline,1609 concerns,2,cymbeline,1609 toward,2,cymbeline,1609 Know'st,2,cymbeline,1609 headless,2,cymbeline,1609 characters,2,cymbeline,1609 hanging,2,cymbeline,1609 glass,2,cymbeline,1609 noise,2,cymbeline,1609 furious,2,cymbeline,1609 'mollis,2,cymbeline,1609 blessed,2,cymbeline,1609 freedom,2,cymbeline,1609 lesser,2,cymbeline,1609 becoming,2,cymbeline,1609 ingenious,2,cymbeline,1609 kin,2,cymbeline,1609 began,2,cymbeline,1609 slippery,2,cymbeline,1609 companies,2,cymbeline,1609 pillow,2,cymbeline,1609 history,2,cymbeline,1609 sums,2,cymbeline,1609 speeches,2,cymbeline,1609 warrant,2,cymbeline,1609 orbs,2,cymbeline,1609 Beyond,2,cymbeline,1609 laugh'd,2,cymbeline,1609 muster'd,2,cymbeline,1609 worthiest,2,cymbeline,1609 ourself,2,cymbeline,1609 merry,2,cymbeline,1609 virtuous,2,cymbeline,1609 wake,2,cymbeline,1609 Dutchman,2,cymbeline,1609 'When,2,cymbeline,1609 Deserves,2,cymbeline,1609 languish,2,cymbeline,1609 landed,2,cymbeline,1609 disposed,2,cymbeline,1609 score,2,cymbeline,1609 embrace,2,cymbeline,1609 Wake,2,cymbeline,1609 sworn,2,cymbeline,1609 subject,2,cymbeline,1609 pictures,2,cymbeline,1609 'O,2,cymbeline,1609 livers,2,cymbeline,1609 admittance,2,cymbeline,1609 acquainted,2,cymbeline,1609 deeply,2,cymbeline,1609 gather,2,cymbeline,1609 sets,2,cymbeline,1609 betwixt,2,cymbeline,1609 worst,2,cymbeline,1609 esteem,2,cymbeline,1609 gaoler,2,cymbeline,1609 diligent,2,cymbeline,1609 merit,2,cymbeline,1609 lingering,2,cymbeline,1609 revived,2,cymbeline,1609 profess,2,cymbeline,1609 rhyme,2,cymbeline,1609 brags,2,cymbeline,1609 proceeded,2,cymbeline,1609 falls,2,cymbeline,1609 encounter,2,cymbeline,1609 commit,2,cymbeline,1609 taper,2,cymbeline,1609 fruit,2,cymbeline,1609 white,2,cymbeline,1609 charming,2,cymbeline,1609 Leave,2,cymbeline,1609 Report,2,cymbeline,1609 paragon,2,cymbeline,1609 perplex'd,2,cymbeline,1609 girls,2,cymbeline,1609 feel,2,cymbeline,1609 noblest,2,cymbeline,1609 infinite,2,cymbeline,1609 beaten,2,cymbeline,1609 directed,2,cymbeline,1609 'Faith,2,cymbeline,1609 masters,2,cymbeline,1609 blind,2,cymbeline,1609 Betwixt,2,cymbeline,1609 ancient,2,cymbeline,1609 Guard,2,cymbeline,1609 wishes,2,cymbeline,1609 wink,2,cymbeline,1609 bauble,2,cymbeline,1609 from's,2,cymbeline,1609 Hence,2,cymbeline,1609 language,2,cymbeline,1609 dedicate,2,cymbeline,1609 Might,2,cymbeline,1609 mirth,2,cymbeline,1609 steal,2,cymbeline,1609 strew'd,2,cymbeline,1609 hated,2,cymbeline,1609 tools,2,cymbeline,1609 anon,2,cymbeline,1609 custom,2,cymbeline,1609 accuse,2,cymbeline,1609 murder,2,cymbeline,1609 throws,2,cymbeline,1609 Putting,2,cymbeline,1609 window,2,cymbeline,1609 stop,2,cymbeline,1609 bond,2,cymbeline,1609 cunning,2,cymbeline,1609 steel,2,cymbeline,1609 boon,2,cymbeline,1609 manhood,2,cymbeline,1609 parts,2,cymbeline,1609 Love's,2,cymbeline,1609 tent,2,cymbeline,1609 intelligence,2,cymbeline,1609 goddess,2,cymbeline,1609 senses,2,cymbeline,1609 outlaws,2,cymbeline,1609 stir,2,cymbeline,1609 slaves,2,cymbeline,1609 manners,2,cymbeline,1609 Takes,2,cymbeline,1609 strongly,2,cymbeline,1609 melancholy,2,cymbeline,1609 hat,2,cymbeline,1609 aboard,2,cymbeline,1609 Solemn,2,cymbeline,1609 depend,2,cymbeline,1609 hang'd,2,cymbeline,1609 Jovial,2,cymbeline,1609 Whiles,2,cymbeline,1609 Becomes,2,cymbeline,1609 deeds,2,cymbeline,1609 among,2,cymbeline,1609 desperate,2,cymbeline,1609 assault,2,cymbeline,1609 smile,2,cymbeline,1609 Having,2,cymbeline,1609 hopes,2,cymbeline,1609 Nature,2,cymbeline,1609 O',2,cymbeline,1609 Me,2,cymbeline,1609 pays,2,cymbeline,1609 bar,2,cymbeline,1609 canst,2,cymbeline,1609 star,2,cymbeline,1609 brings,2,cymbeline,1609 pen,2,cymbeline,1609 sings,2,cymbeline,1609 Spaniard,2,cymbeline,1609 to's,2,cymbeline,1609 pawn,2,cymbeline,1609 Mulmutius,2,cymbeline,1609 enter'd,2,cymbeline,1609 tear,2,cymbeline,1609 medicine,2,cymbeline,1609 approve,2,cymbeline,1609 beg,2,cymbeline,1609 Ho,2,cymbeline,1609 ills,2,cymbeline,1609 bless,2,cymbeline,1609 strangely,2,cymbeline,1609 incontinency,2,cymbeline,1609 east,2,cymbeline,1609 despair,2,cymbeline,1609 added,2,cymbeline,1609 noses,2,cymbeline,1609 covenant,2,cymbeline,1609 VI,2,cymbeline,1609 begot,2,cymbeline,1609 titles,2,cymbeline,1609 god,2,cymbeline,1609 royalty,2,cymbeline,1609 Thou'rt,2,cymbeline,1609 Arviragus,2,cymbeline,1609 bend,2,cymbeline,1609 Receive,2,cymbeline,1609 behind,2,cymbeline,1609 bury,2,cymbeline,1609 difference,2,cymbeline,1609 kindness,2,cymbeline,1609 breathing,2,cymbeline,1609 jointed,2,cymbeline,1609 Behold,2,cymbeline,1609 people,2,cymbeline,1609 buds,2,cymbeline,1609 silk,2,cymbeline,1609 swift,2,cymbeline,1609 preserve,2,cymbeline,1609 longer,2,cymbeline,1609 stronger,2,cymbeline,1609 pains,2,cymbeline,1609 gate,2,cymbeline,1609 picture,2,cymbeline,1609 'Twas,2,cymbeline,1609 vantage,2,cymbeline,1609 Both,2,cymbeline,1609 wagers,2,cymbeline,1609 solemn,2,cymbeline,1609 deep,2,cymbeline,1609 deer,2,cymbeline,1609 miles,2,cymbeline,1609 Country,2,cymbeline,1609 Fortune,2,cymbeline,1609 embraced,2,cymbeline,1609 satisfy,2,cymbeline,1609 excellent,2,cymbeline,1609 repent,2,cymbeline,1609 SONG,2,cymbeline,1609 Here's,2,cymbeline,1609 debt,2,cymbeline,1609 needs,2,cymbeline,1609 wreck,2,cymbeline,1609 Blest,2,cymbeline,1609 gain,2,cymbeline,1609 Leonatus',2,cymbeline,1609 ago,2,cymbeline,1609 Past,2,cymbeline,1609 swearing,2,cymbeline,1609 shes,2,cymbeline,1609 Dalmatians,2,cymbeline,1609 dignity,2,cymbeline,1609 likely,2,cymbeline,1609 Last,2,cymbeline,1609 thrive,2,cymbeline,1609 stole,2,cymbeline,1609 makest,2,cymbeline,1609 speed,2,cymbeline,1609 apes,2,cymbeline,1609 game,2,cymbeline,1609 banished,2,cymbeline,1609 betray'd,2,cymbeline,1609 approbation,2,cymbeline,1609 fears,2,cymbeline,1609 strain,2,cymbeline,1609 banish,2,cymbeline,1609 sharper,2,cymbeline,1609 look'st,2,cymbeline,1609 temper,2,cymbeline,1609 accomplished,2,cymbeline,1609 eminent,2,cymbeline,1609 hadst,2,cymbeline,1609 ink,2,cymbeline,1609 levy,2,cymbeline,1609 commands,2,cymbeline,1609 add,2,cymbeline,1609 knot,2,cymbeline,1609 spend,2,cymbeline,1609 suspected,2,cymbeline,1609 feats,2,cymbeline,1609 lock'd,2,cymbeline,1609 knew,2,cymbeline,1609 winner,2,cymbeline,1609 show'd,2,cymbeline,1609 mountaineer,2,cymbeline,1609 serious,2,cymbeline,1609 knee,2,cymbeline,1609 men's,2,cymbeline,1609 Been,2,cymbeline,1609 Caesars,2,cymbeline,1609 climb,2,cymbeline,1609 clipp'd,2,cymbeline,1609 graver,2,cymbeline,1609 Haply,2,cymbeline,1609 warm'd,2,cymbeline,1609 easy,2,cymbeline,1609 outward,2,cymbeline,1609 seconds,2,cymbeline,1609 Army,2,cymbeline,1609 Diana's,2,cymbeline,1609 nearer,2,cymbeline,1609 senate,2,cymbeline,1609 Hercules,2,cymbeline,1609 weeds,2,cymbeline,1609 hardness,2,cymbeline,1609 trace,2,cymbeline,1609 sweetest,2,cymbeline,1609 mighty,2,cymbeline,1609 open,2,cymbeline,1609 Under,2,cymbeline,1609 heaviness,2,cymbeline,1609 winter's,2,cymbeline,1609 soe'er,2,cymbeline,1609 money,2,cymbeline,1609 mended,2,cymbeline,1609 mock,2,cymbeline,1609 frown,2,cymbeline,1609 exquisite,2,cymbeline,1609 strive,2,cymbeline,1609 twain,2,cymbeline,1609 bosom,2,cymbeline,1609 Cambria,2,cymbeline,1609 proper,2,cymbeline,1609 rough,2,cymbeline,1609 fiend,2,cymbeline,1609 ass,2,cymbeline,1609 accidents,2,cymbeline,1609 pikes,2,cymbeline,1609 monument,2,cymbeline,1609 beggars,2,cymbeline,1609 knock,2,cymbeline,1609 bought,2,cymbeline,1609 Among,2,cymbeline,1609 Sirrah,2,cymbeline,1609 longing,2,cymbeline,1609 demanded,2,cymbeline,1609 hazard,2,cymbeline,1609 Art,2,cymbeline,1609 beams,2,cymbeline,1609 moves,2,cymbeline,1609 leaf,2,cymbeline,1609 march,2,cymbeline,1609 Into,2,cymbeline,1609 frenzy,2,cymbeline,1609 delicate,2,cymbeline,1609 Command,2,cymbeline,1609 justice,2,cymbeline,1609 occasion,2,cymbeline,1609 equal,2,cymbeline,1609 main,2,cymbeline,1609 moved,2,cymbeline,1609 expected,2,cymbeline,1609 consider'd,2,cymbeline,1609 rank,2,cymbeline,1609 rosy,2,cymbeline,1609 griefs,2,cymbeline,1609 silence,2,cymbeline,1609 needle,2,cymbeline,1609 venison,2,cymbeline,1609 rooted,2,cymbeline,1609 tends,2,cymbeline,1609 envy,2,cymbeline,1609 penny,2,cymbeline,1609 guided,2,cymbeline,1609 remedy,2,cymbeline,1609 faint,2,cymbeline,1609 affront,2,cymbeline,1609 tenor,2,cymbeline,1609 Sleeps,2,cymbeline,1609 Alack,2,cymbeline,1609 descended,2,cymbeline,1609 pregnant,2,cymbeline,1609 mock'd,2,cymbeline,1609 disloyal,2,cymbeline,1609 quickly,2,cymbeline,1609 garden,2,cymbeline,1609 Consider,2,cymbeline,1609 who's,2,cymbeline,1609 adultery,2,cymbeline,1609 Set,2,cymbeline,1609 misery,2,cymbeline,1609 Therefore,2,cymbeline,1609 mouth,2,cymbeline,1609 housewife,2,cymbeline,1609 Doth,2,cymbeline,1609 revive,2,cymbeline,1609 Dost,2,cymbeline,1609 See,2,cymbeline,1609 Tribunes,2,cymbeline,1609 effect,2,cymbeline,1609 spurn,2,cymbeline,1609 err,2,cymbeline,1609 high,2,cymbeline,1609 industry,2,cymbeline,1609 exchange,2,cymbeline,1609 soldiers,2,cymbeline,1609 probable,2,cymbeline,1609 qualities,2,cymbeline,1609 satisfaction,2,cymbeline,1609 stars,2,cymbeline,1609 mightst,2,cymbeline,1609 purposes,2,cymbeline,1609 purposed,2,cymbeline,1609 vent,2,cymbeline,1609 wrought,2,cymbeline,1609 reading,2,cymbeline,1609 contradiction,2,cymbeline,1609 kissing,2,cymbeline,1609 injuries,2,cymbeline,1609 devils,2,cymbeline,1609 let's,2,cymbeline,1609 vision,2,cymbeline,1609 gates,2,cymbeline,1609 benefit,2,cymbeline,1609 higher,2,cymbeline,1609 missing,2,cymbeline,1609 discharge,2,cymbeline,1609 apart,2,cymbeline,1609 disguised,2,cymbeline,1609 compounds,2,cymbeline,1609 firm,2,cymbeline,1609 grew'st,2,cymbeline,1609 desired,2,cymbeline,1609 fire,2,cymbeline,1609 stain,2,cymbeline,1609 banks,2,cymbeline,1609 breed,2,cymbeline,1609 close,2,cymbeline,1609 passage,2,cymbeline,1609 reflection,2,cymbeline,1609 sake,2,cymbeline,1609 dishonour,2,cymbeline,1609 wit,2,cymbeline,1609 sides,2,cymbeline,1609 stamp,2,cymbeline,1609 disdains,2,cymbeline,1609 stomach,2,cymbeline,1609 break,2,cymbeline,1609 knife,2,cymbeline,1609 services,2,cymbeline,1609 happiness,2,cymbeline,1609 third,2,cymbeline,1609 sitting,2,cymbeline,1609 meaner,2,cymbeline,1609 closes,2,cymbeline,1609 ducats,2,cymbeline,1609 flight,2,cymbeline,1609 walls,2,cymbeline,1609 residence,2,cymbeline,1609 standing,2,cymbeline,1609 'Lack,2,cymbeline,1609 count,2,cymbeline,1609 remains,2,cymbeline,1609 flint,2,cymbeline,1609 patiently,2,cymbeline,1609 Damn'd,2,cymbeline,1609 called,2,cymbeline,1609 stiff,2,cymbeline,1609 Boys,2,cymbeline,1609 flourish,2,cymbeline,1609 Worthy,2,cymbeline,1609 receive,2,cymbeline,1609 growing,2,cymbeline,1609 rage,2,cymbeline,1609 instinct,2,cymbeline,1609 villains,2,cymbeline,1609 bounty,2,cymbeline,1609 enforced,2,cymbeline,1609 Senators,2,cymbeline,1609 familiar,2,cymbeline,1609 baseness,2,cymbeline,1609 dreams,2,cymbeline,1609 rages,2,cymbeline,1609 taken,2,cymbeline,1609 marry,2,cymbeline,1609 charged,2,cymbeline,1609 inform,2,cymbeline,1609 weeping,2,cymbeline,1609 nest,2,cymbeline,1609 waste,2,cymbeline,1609 marble,2,cymbeline,1609 doubling,2,cymbeline,1609 ope,2,cymbeline,1609 Presenting,2,cymbeline,1609 watching,2,cymbeline,1609 Nobly,2,cymbeline,1609 hunger,2,cymbeline,1609 yond,2,cymbeline,1609 cloth,2,cymbeline,1609 'fore,2,cymbeline,1609 stolen,2,cymbeline,1609 fog,2,cymbeline,1609 wander,2,cymbeline,1609 humour,2,cymbeline,1609 wounds,2,cymbeline,1609 worn,2,cymbeline,1609 fighting,2,cymbeline,1609 clay,2,cymbeline,1609 minute,2,cymbeline,1609 fine,2,cymbeline,1609 Attend,2,cymbeline,1609 Boy,2,cymbeline,1609 safety,2,cymbeline,1609 continue,2,cymbeline,1609 duties,2,cymbeline,1609 Unto,2,cymbeline,1609 shows,2,cymbeline,1609 pocket,2,cymbeline,1609 lines,2,cymbeline,1609 poison'd,2,cymbeline,1609 practise,2,cymbeline,1609 adornment,2,cymbeline,1609 censure,2,cymbeline,1609 increasing,2,cymbeline,1609 gilded,2,cymbeline,1609 freshly,2,cymbeline,1609 stinking,2,cymbeline,1609 allow'd,2,cymbeline,1609 Knocks,2,cymbeline,1609 derogate,2,cymbeline,1609 named,2,cymbeline,1609 bill,2,cymbeline,1609 fare,2,cymbeline,1609 lad,2,cymbeline,1609 talk,2,cymbeline,1609 folks,2,cymbeline,1609 otherwise,2,cymbeline,1609 stroke,2,cymbeline,1609 sixth,2,cymbeline,1609 wild,2,cymbeline,1609 Rather,2,cymbeline,1609 forbearance,2,cymbeline,1609 accident,2,cymbeline,1609 bigger,2,cymbeline,1609 swears,2,cymbeline,1609 None,2,cymbeline,1609 satisfying,2,cymbeline,1609 Arise,2,cymbeline,1609 Although,2,cymbeline,1609 pangs,2,cymbeline,1609 fires,2,cymbeline,1609 request,2,cymbeline,1609 revolt,2,cymbeline,1609 winter,2,cymbeline,1609 horses,2,cymbeline,1609 Day,2,cymbeline,1609 slanders,2,cymbeline,1609 train'd,2,cymbeline,1609 favours,2,cymbeline,1609 prayers,2,cymbeline,1609 seat,2,cymbeline,1609 hairs,2,cymbeline,1609 cook,2,cymbeline,1609 lying,2,cymbeline,1609 suits,2,cymbeline,1609 aught,2,cymbeline,1609 runagates,2,cymbeline,1609 courtesy,2,cymbeline,1609 divorce,2,cymbeline,1609 vessel,2,cymbeline,1609 cord,2,cymbeline,1609 heavenly,2,cymbeline,1609 He'ld,2,cymbeline,1609 He'll,2,cymbeline,1609 avoid,2,cymbeline,1609 tree,2,cymbeline,1609 loyalty,2,cymbeline,1609 Know,2,cymbeline,1609 million,2,cymbeline,1609 entreat,2,cymbeline,1609 wretched,2,cymbeline,1609 tied,2,cymbeline,1609 lovers,2,cymbeline,1609 Close,2,cymbeline,1609 aloud,2,cymbeline,1609 whilst,2,cymbeline,1609 leg,2,cymbeline,1609 bleeding,2,cymbeline,1609 roaring,2,cymbeline,1609 mother's,2,cymbeline,1609 undo,2,cymbeline,1609 alas,2,cymbeline,1609 ghosts,2,cymbeline,1609 goes,2,cymbeline,1609 seized,2,cymbeline,1609 sickness,2,cymbeline,1609 sheets,2,cymbeline,1609 laws,2,cymbeline,1609 lordship's,2,cymbeline,1609 Nothing,2,cymbeline,1609 petty,2,cymbeline,1609 wearing,2,cymbeline,1609 fiends,2,cymbeline,1609 conduct,2,cymbeline,1609 smiling,2,cymbeline,1609 sadness,2,cymbeline,1609 sister,2,cymbeline,1609 glory,2,cymbeline,1609 readiness,2,cymbeline,1609 Does,2,cymbeline,1609 meeting,2,cymbeline,1609 abuse,2,cymbeline,1609 whit,2,cymbeline,1609 thinking,2,cymbeline,1609 fashion,2,cymbeline,1609 Pannonians,2,cymbeline,1609 strokes,2,cymbeline,1609 physic,2,cymbeline,1609 lark,2,cymbeline,1609 portends,2,cymbeline,1609 Sleep,2,cymbeline,1609 credit,2,cymbeline,1609 attendants,2,cymbeline,1609 sleeping,2,cymbeline,1609 severally,2,cymbeline,1609 appetite,2,cymbeline,1609 follow'd,2,cymbeline,1609 floor,2,cymbeline,1609 silent,2,cymbeline,1609 simple,2,cymbeline,1609 Therein,2,cymbeline,1609 sentence,2,cymbeline,1609 spring,2,cymbeline,1609 numbers,2,cymbeline,1609 You'll,2,cymbeline,1609 slay,2,cymbeline,1609 employ,2,cymbeline,1609 dog,2,cymbeline,1609 respect,2,cymbeline,1609 honour'd,2,cymbeline,1609 harsh,2,cymbeline,1609 perchance,2,cymbeline,1609 Die,2,cymbeline,1609 Together,2,cymbeline,1609 He's,2,cymbeline,1609 'faith,2,cymbeline,1609 dispatch,2,cymbeline,1609 rocks,2,cymbeline,1609 injurious,2,cymbeline,1609 bred,2,cymbeline,1609 lamb,2,cymbeline,1609 poisons,2,cymbeline,1609 emperor's,2,cymbeline,1609 mature,2,cymbeline,1609 inches,2,cymbeline,1609 slew,2,cymbeline,1609 harts,2,cymbeline,1609 rescue,2,cymbeline,1609 behold,2,cymbeline,1609 finish'd,2,cymbeline,1609 undergo,2,cymbeline,1609 Too,2,cymbeline,1609 dame,2,cymbeline,1609 he'ld,2,cymbeline,1609 frail,2,cymbeline,1609 Kneeling,2,cymbeline,1609 dew,2,cymbeline,1609 figures,2,cymbeline,1609 spirit,2,cymbeline,1609 Unlike,2,cymbeline,1609 repair,2,cymbeline,1609 shirt,2,cymbeline,1609 whereunto,2,cymbeline,1609 Find,2,cymbeline,1609 flattering,2,cymbeline,1609 bids,2,cymbeline,1609 shape,2,cymbeline,1609 hangman,2,cymbeline,1609 tread,2,cymbeline,1609 bide,2,cymbeline,1609 hunting,2,cymbeline,1609 crows,2,cymbeline,1609 sands,2,cymbeline,1609 lopped,2,cymbeline,1609 vanish'd,2,cymbeline,1609 exeunt,2,cymbeline,1609 summer,2,cymbeline,1609 treason,3,cymbeline,1609 parted,3,cymbeline,1609 swords,3,cymbeline,1609 happier,3,cymbeline,1609 join,3,cymbeline,1609 taking,3,cymbeline,1609 description,3,cymbeline,1609 Hear,3,cymbeline,1609 speech,3,cymbeline,1609 tremble,3,cymbeline,1609 honours,3,cymbeline,1609 alack,3,cymbeline,1609 rascal,3,cymbeline,1609 health,3,cymbeline,1609 Never,3,cymbeline,1609 single,3,cymbeline,1609 miss'd,3,cymbeline,1609 finger,3,cymbeline,1609 spake,3,cymbeline,1609 sight,3,cymbeline,1609 honourable,3,cymbeline,1609 instrument,3,cymbeline,1609 appear,3,cymbeline,1609 nought,3,cymbeline,1609 lightning,3,cymbeline,1609 breach,3,cymbeline,1609 graces,3,cymbeline,1609 sad,3,cymbeline,1609 After,3,cymbeline,1609 stock,3,cymbeline,1609 sole,3,cymbeline,1609 confusion,3,cymbeline,1609 cheer,3,cymbeline,1609 madness,3,cymbeline,1609 chimney,3,cymbeline,1609 soft,3,cymbeline,1609 view,3,cymbeline,1609 deserve,3,cymbeline,1609 seeking,3,cymbeline,1609 rarest,3,cymbeline,1609 prevail'd,3,cymbeline,1609 walk,3,cymbeline,1609 flying,3,cymbeline,1609 throne,3,cymbeline,1609 skill,3,cymbeline,1609 confident,3,cymbeline,1609 winds,3,cymbeline,1609 plenty,3,cymbeline,1609 where's,3,cymbeline,1609 counsel,3,cymbeline,1609 design,3,cymbeline,1609 wager,3,cymbeline,1609 looks,3,cymbeline,1609 wings,3,cymbeline,1609 faults,3,cymbeline,1609 pieces,3,cymbeline,1609 taught,3,cymbeline,1609 wrote,3,cymbeline,1609 received,3,cymbeline,1609 courtiers,3,cymbeline,1609 Out,3,cymbeline,1609 turn,3,cymbeline,1609 courtier,3,cymbeline,1609 guarded,3,cymbeline,1609 Officers,3,cymbeline,1609 bore,3,cymbeline,1609 dearly,3,cymbeline,1609 Whilst,3,cymbeline,1609 elder,3,cymbeline,1609 companion,3,cymbeline,1609 reverence,3,cymbeline,1609 feed,3,cymbeline,1609 fearful,3,cymbeline,1609 cease,3,cymbeline,1609 saucy,3,cymbeline,1609 speaking,3,cymbeline,1609 choose,3,cymbeline,1609 wind,3,cymbeline,1609 wing,3,cymbeline,1609 lion's,3,cymbeline,1609 flesh,3,cymbeline,1609 knees,3,cymbeline,1609 Musicians,3,cymbeline,1609 bolt,3,cymbeline,1609 directly,3,cymbeline,1609 wave,3,cymbeline,1609 bidding,3,cymbeline,1609 voice,3,cymbeline,1609 coast,3,cymbeline,1609 breeding,3,cymbeline,1609 meat,3,cymbeline,1609 meal,3,cymbeline,1609 office,3,cymbeline,1609 boot,3,cymbeline,1609 wast,3,cymbeline,1609 book,3,cymbeline,1609 colour,3,cymbeline,1609 big,3,cymbeline,1609 wherefore,3,cymbeline,1609 sign,3,cymbeline,1609 measure,3,cymbeline,1609 Am,3,cymbeline,1609 chaste,3,cymbeline,1609 Leonati,3,cymbeline,1609 force,3,cymbeline,1609 hit,3,cymbeline,1609 deserved,3,cymbeline,1609 sport,3,cymbeline,1609 election,3,cymbeline,1609 Almost,3,cymbeline,1609 step,3,cymbeline,1609 Julius,3,cymbeline,1609 heads,3,cymbeline,1609 became,3,cymbeline,1609 obey,3,cymbeline,1609 sooner,3,cymbeline,1609 Save,3,cymbeline,1609 Speak,3,cymbeline,1609 meanest,3,cymbeline,1609 Senseless,3,cymbeline,1609 theme,3,cymbeline,1609 despite,3,cymbeline,1609 vows,3,cymbeline,1609 quite,3,cymbeline,1609 dogs,3,cymbeline,1609 failing,3,cymbeline,1609 deed,3,cymbeline,1609 wretch,3,cymbeline,1609 confess,3,cymbeline,1609 Soldiers,3,cymbeline,1609 mole,3,cymbeline,1609 truest,3,cymbeline,1609 beat,3,cymbeline,1609 stone,3,cymbeline,1609 deal,3,cymbeline,1609 radiant,3,cymbeline,1609 touch'd,3,cymbeline,1609 ay,3,cymbeline,1609 boats,3,cymbeline,1609 memory,3,cymbeline,1609 amend,3,cymbeline,1609 forget,3,cymbeline,1609 feast,3,cymbeline,1609 commend,3,cymbeline,1609 whereof,3,cymbeline,1609 sometime,3,cymbeline,1609 Myself,3,cymbeline,1609 value,3,cymbeline,1609 morn,3,cymbeline,1609 Yea,3,cymbeline,1609 spent,3,cymbeline,1609 swell'd,3,cymbeline,1609 brought,3,cymbeline,1609 crow,3,cymbeline,1609 round,3,cymbeline,1609 crop,3,cymbeline,1609 senseless,3,cymbeline,1609 Call,3,cymbeline,1609 deny,3,cymbeline,1609 foul,3,cymbeline,1609 excuse,3,cymbeline,1609 expect,3,cymbeline,1609 constrain'd,3,cymbeline,1609 midnight,3,cymbeline,1609 She's,3,cymbeline,1609 pain,3,cymbeline,1609 haven,3,cymbeline,1609 stones,3,cymbeline,1609 shot,3,cymbeline,1609 winking,3,cymbeline,1609 gentry,3,cymbeline,1609 fall'n,3,cymbeline,1609 object,3,cymbeline,1609 lock,3,cymbeline,1609 term,3,cymbeline,1609 secret,3,cymbeline,1609 Hast,3,cymbeline,1609 beggary,3,cymbeline,1609 enjoy,3,cymbeline,1609 broke,3,cymbeline,1609 new,3,cymbeline,1609 root,3,cymbeline,1609 nobler,3,cymbeline,1609 bedchamber,3,cymbeline,1609 empty,3,cymbeline,1609 lords,3,cymbeline,1609 mountains,3,cymbeline,1609 riding,3,cymbeline,1609 whelp,3,cymbeline,1609 water,3,cymbeline,1609 Apparitions,3,cymbeline,1609 locks,3,cymbeline,1609 Peace,3,cymbeline,1609 bravely,3,cymbeline,1609 estate,3,cymbeline,1609 bottom,3,cymbeline,1609 Soft,3,cymbeline,1609 adventure,3,cymbeline,1609 borne,3,cymbeline,1609 perform,3,cymbeline,1609 parting,3,cymbeline,1609 ignorant,3,cymbeline,1609 dares,3,cymbeline,1609 awhile,3,cymbeline,1609 freely,3,cymbeline,1609 question,3,cymbeline,1609 general,3,cymbeline,1609 Look,3,cymbeline,1609 beggar,3,cymbeline,1609 presently,3,cymbeline,1609 coward,3,cymbeline,1609 thick,3,cymbeline,1609 Son,3,cymbeline,1609 woe,3,cymbeline,1609 woo,3,cymbeline,1609 won,3,cymbeline,1609 heaven's,3,cymbeline,1609 mountain,3,cymbeline,1609 long'st,3,cymbeline,1609 taste,3,cymbeline,1609 neat,3,cymbeline,1609 flies,3,cymbeline,1609 neck,3,cymbeline,1609 former,3,cymbeline,1609 banishment,3,cymbeline,1609 throw,3,cymbeline,1609 handkerchief,3,cymbeline,1609 sorrow,3,cymbeline,1609 beastly,3,cymbeline,1609 protection,3,cymbeline,1609 army,3,cymbeline,1609 tailor,3,cymbeline,1609 between,3,cymbeline,1609 commanded,3,cymbeline,1609 oath,3,cymbeline,1609 dying,3,cymbeline,1609 served,3,cymbeline,1609 owe,3,cymbeline,1609 haply,3,cymbeline,1609 dull,3,cymbeline,1609 yoke,3,cymbeline,1609 drops,3,cymbeline,1609 falling,3,cymbeline,1609 whence,3,cymbeline,1609 Proceed,3,cymbeline,1609 wert,3,cymbeline,1609 pleased,3,cymbeline,1609 west,3,cymbeline,1609 'em,3,cymbeline,1609 Sweet,3,cymbeline,1609 profit,3,cymbeline,1609 admiration,3,cymbeline,1609 savage,3,cymbeline,1609 folly,3,cymbeline,1609 bare,3,cymbeline,1609 answer'd,3,cymbeline,1609 mansion,3,cymbeline,1609 unfold,3,cymbeline,1609 depart,3,cymbeline,1609 public,3,cymbeline,1609 cock,3,cymbeline,1609 prefer,3,cymbeline,1609 emperor,3,cymbeline,1609 tale,3,cymbeline,1609 man's,3,cymbeline,1609 quit,3,cymbeline,1609 short,3,cymbeline,1609 dangerous,3,cymbeline,1609 Who's,3,cymbeline,1609 loyal,3,cymbeline,1609 virtues,3,cymbeline,1609 hearts,3,cymbeline,1609 seas,3,cymbeline,1609 interest,3,cymbeline,1609 commission,3,cymbeline,1609 Juno,3,cymbeline,1609 troth,3,cymbeline,1609 ended,3,cymbeline,1609 'twixt,3,cymbeline,1609 tidings,3,cymbeline,1609 Dian,3,cymbeline,1609 Believe,3,cymbeline,1609 cry,3,cymbeline,1609 Gentlemen,3,cymbeline,1609 souls,3,cymbeline,1609 penetrate,3,cymbeline,1609 prison,3,cymbeline,1609 sent,3,cymbeline,1609 nurse,3,cymbeline,1609 fairies,3,cymbeline,1609 nature's,3,cymbeline,1609 effects,3,cymbeline,1609 eat,3,cymbeline,1609 queen's,3,cymbeline,1609 pray'd,3,cymbeline,1609 least,3,cymbeline,1609 Imogen's,3,cymbeline,1609 learn,3,cymbeline,1609 forces,3,cymbeline,1609 remember,3,cymbeline,1609 warlike,3,cymbeline,1609 met,3,cymbeline,1609 Gaolers,3,cymbeline,1609 thoughts,3,cymbeline,1609 ladies,3,cymbeline,1609 debtor,3,cymbeline,1609 body's,3,cymbeline,1609 confess'd,3,cymbeline,1609 wound,3,cymbeline,1609 revenges,3,cymbeline,1609 Without,3,cymbeline,1609 extend,3,cymbeline,1609 silver,3,cymbeline,1609 cordial,3,cymbeline,1609 Guiderius,3,cymbeline,1609 confirm,3,cymbeline,1609 miseries,3,cymbeline,1609 shift,3,cymbeline,1609 physician,3,cymbeline,1609 unpaid,3,cymbeline,1609 greatness,3,cymbeline,1609 awake,3,cymbeline,1609 done't,3,cymbeline,1609 charity,3,cymbeline,1609 forbear,3,cymbeline,1609 'mongst,3,cymbeline,1609 obedience,3,cymbeline,1609 oaths,3,cymbeline,1609 undertake,3,cymbeline,1609 e'er,3,cymbeline,1609 lads,3,cymbeline,1609 times,4,cymbeline,1609 suffer,4,cymbeline,1609 motion,4,cymbeline,1609 for't,4,cymbeline,1609 heir,4,cymbeline,1609 Alas,4,cymbeline,1609 woman's,4,cymbeline,1609 advantage,4,cymbeline,1609 bonds,4,cymbeline,1609 assured,4,cymbeline,1609 fought,4,cymbeline,1609 of's,4,cymbeline,1609 run,4,cymbeline,1609 Whom,4,cymbeline,1609 wing'd,4,cymbeline,1609 become,4,cymbeline,1609 demand,4,cymbeline,1609 cast,4,cymbeline,1609 case,4,cymbeline,1609 attempt,4,cymbeline,1609 Once,4,cymbeline,1609 strength,4,cymbeline,1609 slept,4,cymbeline,1609 Jove,4,cymbeline,1609 Caesar's,4,cymbeline,1609 dram,4,cymbeline,1609 gracious,4,cymbeline,1609 golden,4,cymbeline,1609 Philario's,4,cymbeline,1609 fools,4,cymbeline,1609 I'd,4,cymbeline,1609 stands,4,cymbeline,1609 vice,4,cymbeline,1609 scorn,4,cymbeline,1609 fell,4,cymbeline,1609 abused,4,cymbeline,1609 peril,4,cymbeline,1609 branches,4,cymbeline,1609 second,4,cymbeline,1609 vile,4,cymbeline,1609 felt,4,cymbeline,1609 France,4,cymbeline,1609 common,4,cymbeline,1609 absence,4,cymbeline,1609 Cassibelan,4,cymbeline,1609 promise,4,cymbeline,1609 humbly,4,cymbeline,1609 grow,4,cymbeline,1609 brief,4,cymbeline,1609 malice,4,cymbeline,1609 Please,4,cymbeline,1609 wise,4,cymbeline,1609 pretty,4,cymbeline,1609 morning,4,cymbeline,1609 granted,4,cymbeline,1609 box,4,cymbeline,1609 kings,4,cymbeline,1609 cruel,4,cymbeline,1609 in't,4,cymbeline,1609 stay,4,cymbeline,1609 shines,4,cymbeline,1609 wedded,4,cymbeline,1609 kiss'd,4,cymbeline,1609 children,4,cymbeline,1609 dost,4,cymbeline,1609 exile,4,cymbeline,1609 twice,4,cymbeline,1609 farewell,4,cymbeline,1609 buy,4,cymbeline,1609 sing,4,cymbeline,1609 hourly,4,cymbeline,1609 begin,4,cymbeline,1609 instant,4,cymbeline,1609 Cannot,4,cymbeline,1609 breast,4,cymbeline,1609 consider,4,cymbeline,1609 bear,4,cymbeline,1609 notes,4,cymbeline,1609 lend,4,cymbeline,1609 boast,4,cymbeline,1609 door,4,cymbeline,1609 move,4,cymbeline,1609 attending,4,cymbeline,1609 small,4,cymbeline,1609 abide,4,cymbeline,1609 Gods,4,cymbeline,1609 earth,4,cymbeline,1609 age,4,cymbeline,1609 lest,4,cymbeline,1609 devil,4,cymbeline,1609 greater,4,cymbeline,1609 half,4,cymbeline,1609 pale,4,cymbeline,1609 page,4,cymbeline,1609 vengeance,4,cymbeline,1609 hate,4,cymbeline,1609 alive,4,cymbeline,1609 chastity,4,cymbeline,1609 revenge,4,cymbeline,1609 Attendant,4,cymbeline,1609 mayst,4,cymbeline,1609 thanks,4,cymbeline,1609 Captains,4,cymbeline,1609 Tribune,4,cymbeline,1609 unknown,4,cymbeline,1609 cedar,4,cymbeline,1609 majesty,4,cymbeline,1609 hide,4,cymbeline,1609 strike,4,cymbeline,1609 powers,4,cymbeline,1609 child,4,cymbeline,1609 towards,4,cymbeline,1609 foolish,4,cymbeline,1609 Augustus,4,cymbeline,1609 didst,4,cymbeline,1609 'gainst,4,cymbeline,1609 slave,4,cymbeline,1609 issue,4,cymbeline,1609 state,4,cymbeline,1609 Polydote,4,cymbeline,1609 labour,4,cymbeline,1609 over,4,cymbeline,1609 search,4,cymbeline,1609 letters,4,cymbeline,1609 living,4,cymbeline,1609 doctor,4,cymbeline,1609 slight,4,cymbeline,1609 opinion,4,cymbeline,1609 fits,4,cymbeline,1609 Morgan,4,cymbeline,1609 cross'd,4,cymbeline,1609 clock,4,cymbeline,1609 Say,4,cymbeline,1609 Lud's,4,cymbeline,1609 heavy,4,cymbeline,1609 believe,4,cymbeline,1609 forward,4,cymbeline,1609 next,4,cymbeline,1609 faces,4,cymbeline,1609 takes,4,cymbeline,1609 Hail,4,cymbeline,1609 angel,4,cymbeline,1609 Even,4,cymbeline,1609 contempt,4,cymbeline,1609 That's,4,cymbeline,1609 foe,4,cymbeline,1609 grant,4,cymbeline,1609 tune,4,cymbeline,1609 company,4,cymbeline,1609 perfect,4,cymbeline,1609 thunder,4,cymbeline,1609 Mother,4,cymbeline,1609 herself,4,cymbeline,1609 patient,4,cymbeline,1609 strikes,4,cymbeline,1609 kiss,4,cymbeline,1609 fast,4,cymbeline,1609 constant,4,cymbeline,1609 pardon,4,cymbeline,1609 cowards,4,cymbeline,1609 strong,4,cymbeline,1609 Wherefore,4,cymbeline,1609 falsehood,4,cymbeline,1609 hunt,4,cymbeline,1609 goodness,4,cymbeline,1609 south,4,cymbeline,1609 render,4,cymbeline,1609 make't,4,cymbeline,1609 traitor,4,cymbeline,1609 preferment,4,cymbeline,1609 therein,4,cymbeline,1609 hours,4,cymbeline,1609 hither,4,cymbeline,1609 season,4,cymbeline,1609 match,4,cymbeline,1609 'His,4,cymbeline,1609 Euriphile,4,cymbeline,1609 abroad,4,cymbeline,1609 doing,4,cymbeline,1609 punishment,4,cymbeline,1609 liege,4,cymbeline,1609 Beseech,4,cymbeline,1609 beauty,4,cymbeline,1609 content,4,cymbeline,1609 try,4,cymbeline,1609 witness,4,cymbeline,1609 laid,4,cymbeline,1609 attend,4,cymbeline,1609 he'll,4,cymbeline,1609 wills,4,cymbeline,1609 pronounce,4,cymbeline,1609 ten,4,cymbeline,1609 lack,4,cymbeline,1609 sharp,4,cymbeline,1609 fortunes,4,cymbeline,1609 o'er,5,cymbeline,1609 horse,5,cymbeline,1609 business,5,cymbeline,1609 alike,5,cymbeline,1609 rock,5,cymbeline,1609 hell,5,cymbeline,1609 prisoner,5,cymbeline,1609 drug,5,cymbeline,1609 slander,5,cymbeline,1609 Ere,5,cymbeline,1609 soul,5,cymbeline,1609 lies,5,cymbeline,1609 birth,5,cymbeline,1609 purse,5,cymbeline,1609 cheek,5,cymbeline,1609 town,5,cymbeline,1609 paper,5,cymbeline,1609 hereafter,5,cymbeline,1609 sin,5,cymbeline,1609 'twere,5,cymbeline,1609 slaughter,5,cymbeline,1609 sea,5,cymbeline,1609 stuff,5,cymbeline,1609 king's,5,cymbeline,1609 princes,5,cymbeline,1609 swore,5,cymbeline,1609 want,5,cymbeline,1609 There's,5,cymbeline,1609 praised,5,cymbeline,1609 else,5,cymbeline,1609 knowledge,5,cymbeline,1609 sigh,5,cymbeline,1609 At,5,cymbeline,1609 knowing,5,cymbeline,1609 Still,5,cymbeline,1609 to't,5,cymbeline,1609 Go,5,cymbeline,1609 Wales,5,cymbeline,1609 weep,5,cymbeline,1609 struck,5,cymbeline,1609 weak,5,cymbeline,1609 beyond,5,cymbeline,1609 divine,5,cymbeline,1609 crack'd,5,cymbeline,1609 yea,5,cymbeline,1609 gift,5,cymbeline,1609 Unless,5,cymbeline,1609 seeming,5,cymbeline,1609 lady's,5,cymbeline,1609 damn'd,5,cymbeline,1609 Reads,5,cymbeline,1609 loves,5,cymbeline,1609 Yes,5,cymbeline,1609 ho,5,cymbeline,1609 twenty,5,cymbeline,1609 hot,5,cymbeline,1609 valour,5,cymbeline,1609 field,5,cymbeline,1609 natural,5,cymbeline,1609 prince,5,cymbeline,1609 course,5,cymbeline,1609 Cloten's,5,cymbeline,1609 fresh,5,cymbeline,1609 ye,5,cymbeline,1609 Polydore,5,cymbeline,1609 right,5,cymbeline,1609 Against,5,cymbeline,1609 ours,5,cymbeline,1609 slain,5,cymbeline,1609 arise,5,cymbeline,1609 you'll,5,cymbeline,1609 leaves,5,cymbeline,1609 already,5,cymbeline,1609 courage,5,cymbeline,1609 dearest,5,cymbeline,1609 need,5,cymbeline,1609 father's,5,cymbeline,1609 wrath,5,cymbeline,1609 ones,5,cymbeline,1609 'Twixt,5,cymbeline,1609 bracelet,5,cymbeline,1609 bondage,5,cymbeline,1609 save,5,cymbeline,1609 torture,5,cymbeline,1609 dust,5,cymbeline,1609 Think,5,cymbeline,1609 duty,5,cymbeline,1609 themselves,5,cymbeline,1609 happy,5,cymbeline,1609 notice,5,cymbeline,1609 news,5,cymbeline,1609 Shall,5,cymbeline,1609 grieve,5,cymbeline,1609 Make,5,cymbeline,1609 Till,5,cymbeline,1609 fortune,5,cymbeline,1609 wore,5,cymbeline,1609 married,5,cymbeline,1609 till,5,cymbeline,1609 bird,5,cymbeline,1609 thousand,5,cymbeline,1609 wilt,5,cymbeline,1609 unto,5,cymbeline,1609 lives,5,cymbeline,1609 legions,5,cymbeline,1609 kingdom,5,cymbeline,1609 look'd,5,cymbeline,1609 person,5,cymbeline,1609 blame,5,cymbeline,1609 slow,5,cymbeline,1609 ear,5,cymbeline,1609 spirits,5,cymbeline,1609 Another,5,cymbeline,1609 straight,5,cymbeline,1609 fled,5,cymbeline,1609 lips,5,cymbeline,1609 last,5,cymbeline,1609 thither,5,cymbeline,1609 opportunity,5,cymbeline,1609 top,5,cymbeline,1609 shame,5,cymbeline,1609 power,5,cymbeline,1609 remembrance,5,cymbeline,1609 Senator,5,cymbeline,1609 crown,5,cymbeline,1609 wouldst,5,cymbeline,1609 told,6,cymbeline,1609 villany,6,cymbeline,1609 royal,6,cymbeline,1609 help,6,cymbeline,1609 joy,6,cymbeline,1609 clothes,6,cymbeline,1609 spare,6,cymbeline,1609 soon,6,cymbeline,1609 Give,6,cymbeline,1609 light,6,cymbeline,1609 's,6,cymbeline,1609 doubt,6,cymbeline,1609 Thanks,6,cymbeline,1609 Attendants,6,cymbeline,1609 offence,6,cymbeline,1609 fight,6,cymbeline,1609 piece,6,cymbeline,1609 kill'd,6,cymbeline,1609 fault,6,cymbeline,1609 others,6,cymbeline,1609 wish,6,cymbeline,1609 bold,6,cymbeline,1609 wars,6,cymbeline,1609 Ladies,6,cymbeline,1609 Do,6,cymbeline,1609 he's,6,cymbeline,1609 each,6,cymbeline,1609 side,6,cymbeline,1609 I',6,cymbeline,1609 has,6,cymbeline,1609 An,6,cymbeline,1609 therefore,6,cymbeline,1609 Those,6,cymbeline,1609 itself,6,cymbeline,1609 bad,6,cymbeline,1609 Stand,6,cymbeline,1609 proof,6,cymbeline,1609 means,6,cymbeline,1609 Let's,6,cymbeline,1609 play,6,cymbeline,1609 temple,6,cymbeline,1609 valiant,6,cymbeline,1609 Prithee,6,cymbeline,1609 got,6,cymbeline,1609 jewel,6,cymbeline,1609 Like,6,cymbeline,1609 breath,6,cymbeline,1609 Fear,6,cymbeline,1609 favour,6,cymbeline,1609 safe,6,cymbeline,1609 does,6,cymbeline,1609 hands,6,cymbeline,1609 wherein,6,cymbeline,1609 loved,6,cymbeline,1609 lose,6,cymbeline,1609 ready,6,cymbeline,1609 forgot,6,cymbeline,1609 praise,6,cymbeline,1609 Caius,6,cymbeline,1609 paid,6,cymbeline,1609 creatures,6,cymbeline,1609 having,6,cymbeline,1609 here's,6,cymbeline,1609 change,6,cymbeline,1609 shouldst,6,cymbeline,1609 faith,6,cymbeline,1609 almost,6,cymbeline,1609 Gallia,6,cymbeline,1609 dream,6,cymbeline,1609 free,6,cymbeline,1609 get,6,cymbeline,1609 fetch,6,cymbeline,1609 what's,6,cymbeline,1609 glad,6,cymbeline,1609 ne'er,6,cymbeline,1609 lordship,6,cymbeline,1609 lived,6,cymbeline,1609 reason,6,cymbeline,1609 cut,6,cymbeline,1609 prithee,6,cymbeline,1609 either,6,cymbeline,1609 Mine,6,cymbeline,1609 battle,6,cymbeline,1609 house,6,cymbeline,1609 sleep,6,cymbeline,1609 Messenger,6,cymbeline,1609 Before,6,cymbeline,1609 Great,6,cymbeline,1609 late,6,cymbeline,1609 besides,6,cymbeline,1609 revenged,6,cymbeline,1609 going,6,cymbeline,1609 princely,6,cymbeline,1609 due,6,cymbeline,1609 land,6,cymbeline,1609 lane,6,cymbeline,1609 certain,6,cymbeline,1609 stol'n,6,cymbeline,1609 country,7,cymbeline,1609 Wilt,7,cymbeline,1609 trunk,7,cymbeline,1609 under,7,cymbeline,1609 truth,7,cymbeline,1609 trust,7,cymbeline,1609 care,7,cymbeline,1609 Poor,7,cymbeline,1609 draw,7,cymbeline,1609 something,7,cymbeline,1609 Their,7,cymbeline,1609 cause,7,cymbeline,1609 above,7,cymbeline,1609 seems,7,cymbeline,1609 died,7,cymbeline,1609 sense,7,cymbeline,1609 rest,7,cymbeline,1609 fairest,7,cymbeline,1609 scarce,7,cymbeline,1609 neither,7,cymbeline,1609 Her,7,cymbeline,1609 blest,7,cymbeline,1609 past,7,cymbeline,1609 ears,7,cymbeline,1609 story,7,cymbeline,1609 Italian,7,cymbeline,1609 loss,7,cymbeline,1609 diamond,7,cymbeline,1609 ill,7,cymbeline,1609 harm,7,cymbeline,1609 drawn,7,cymbeline,1609 forth,7,cymbeline,1609 arm,7,cymbeline,1609 foot,7,cymbeline,1609 Hark,7,cymbeline,1609 touch,7,cymbeline,1609 judgment,7,cymbeline,1609 often,7,cymbeline,1609 room,7,cymbeline,1609 Madam,7,cymbeline,1609 garments,7,cymbeline,1609 indeed,7,cymbeline,1609 gentle,7,cymbeline,1609 wonder,7,cymbeline,1609 knows,7,cymbeline,1609 once,7,cymbeline,1609 Made,7,cymbeline,1609 Being,7,cymbeline,1609 same,7,cymbeline,1609 win,7,cymbeline,1609 morrow,7,cymbeline,1609 you're,7,cymbeline,1609 Thus,7,cymbeline,1609 arms,7,cymbeline,1609 serve,7,cymbeline,1609 face,7,cymbeline,1609 poison,7,cymbeline,1609 do't,7,cymbeline,1609 is't,7,cymbeline,1609 law,7,cymbeline,1609 Iachimo,7,cymbeline,1609 swear,7,cymbeline,1609 low,7,cymbeline,1609 back,7,cymbeline,1609 seem,7,cymbeline,1609 self,7,cymbeline,1609 send,7,cymbeline,1609 mad,7,cymbeline,1609 hurt,7,cymbeline,1609 Take,7,cymbeline,1609 kind,7,cymbeline,1609 command,7,cymbeline,1609 princess,7,cymbeline,1609 kill,7,cymbeline,1609 truly,8,cymbeline,1609 garment,8,cymbeline,1609 Cadwal,8,cymbeline,1609 yourself,8,cymbeline,1609 hearing,8,cymbeline,1609 full,8,cymbeline,1609 she's,8,cymbeline,1609 'twas,8,cymbeline,1609 suit,8,cymbeline,1609 yield,8,cymbeline,1609 Such,8,cymbeline,1609 't,8,cymbeline,1609 about,8,cymbeline,1609 soldier,8,cymbeline,1609 One,8,cymbeline,1609 pay,8,cymbeline,1609 patience,8,cymbeline,1609 flowers,8,cymbeline,1609 pleasure,8,cymbeline,1609 Had,8,cymbeline,1609 grief,8,cymbeline,1609 wear,8,cymbeline,1609 act,8,cymbeline,1609 brothers,8,cymbeline,1609 ask,8,cymbeline,1609 stranger,8,cymbeline,1609 little,8,cymbeline,1609 action,8,cymbeline,1609 Belarius,8,cymbeline,1609 mortal,8,cymbeline,1609 British,8,cymbeline,1609 bloody,8,cymbeline,1609 thief,8,cymbeline,1609 grave,8,cymbeline,1609 thine,8,cymbeline,1609 oft,8,cymbeline,1609 beseech,8,cymbeline,1609 banish'd,8,cymbeline,1609 danger,8,cymbeline,1609 went,8,cymbeline,1609 base,8,cymbeline,1609 gentlemen,8,cymbeline,1609 holy,8,cymbeline,1609 wife,8,cymbeline,1609 alone,8,cymbeline,1609 use,8,cymbeline,1609 we'll,8,cymbeline,1609 seek,8,cymbeline,1609 Two,8,cymbeline,1609 virtue,8,cymbeline,1609 May,8,cymbeline,1609 dare,8,cymbeline,1609 turn'd,8,cymbeline,1609 meet,9,cymbeline,1609 V,9,cymbeline,1609 pity,9,cymbeline,1609 Romans,9,cymbeline,1609 remain,9,cymbeline,1609 conscience,9,cymbeline,1609 Soothsayer,9,cymbeline,1609 Whose,9,cymbeline,1609 saw,9,cymbeline,1609 Sicilius,9,cymbeline,1609 These,9,cymbeline,1609 brain,9,cymbeline,1609 eagle,9,cymbeline,1609 music,9,cymbeline,1609 IV,9,cymbeline,1609 sorry,9,cymbeline,1609 tongue,9,cymbeline,1609 servant,9,cymbeline,1609 thyself,9,cymbeline,1609 Most,9,cymbeline,1609 point,9,cymbeline,1609 show,9,cymbeline,1609 fool,9,cymbeline,1609 chance,9,cymbeline,1609 Briton,9,cymbeline,1609 Fidele,9,cymbeline,1609 Should,9,cymbeline,1609 through,9,cymbeline,1609 nay,9,cymbeline,1609 rare,9,cymbeline,1609 ere,9,cymbeline,1609 why,9,cymbeline,1609 angry,9,cymbeline,1609 work,9,cymbeline,1609 rich,9,cymbeline,1609 ta'en,9,cymbeline,1609 home,9,cymbeline,1609 master's,9,cymbeline,1609 write,9,cymbeline,1609 Since,9,cymbeline,1609 Away,9,cymbeline,1609 Did,9,cymbeline,1609 enemy,9,cymbeline,1609 women,9,cymbeline,1609 another,10,cymbeline,1609 Now,10,cymbeline,1609 bound,10,cymbeline,1609 body,10,cymbeline,1609 within,10,cymbeline,1609 read,10,cymbeline,1609 worse,10,cymbeline,1609 desire,10,cymbeline,1609 matter,10,cymbeline,1609 spoke,10,cymbeline,1609 On,10,cymbeline,1609 II,10,cymbeline,1609 bid,10,cymbeline,1609 prove,10,cymbeline,1609 husband,10,cymbeline,1609 Yet,10,cymbeline,1609 grace,10,cymbeline,1609 young,10,cymbeline,1609 precious,10,cymbeline,1609 Could,10,cymbeline,1609 there's,10,cymbeline,1609 known,10,cymbeline,1609 Italy,10,cymbeline,1609 only,10,cymbeline,1609 war,10,cymbeline,1609 Can,10,cymbeline,1609 found,10,cymbeline,1609 Brother,10,cymbeline,1609 fall,10,cymbeline,1609 please,10,cymbeline,1609 Cymbeline's,10,cymbeline,1609 hour,10,cymbeline,1609 given,10,cymbeline,1609 hold,10,cymbeline,1609 Pray,10,cymbeline,1609 cold,10,cymbeline,1609 took,11,cymbeline,1609 friends,11,cymbeline,1609 years,11,cymbeline,1609 highness,11,cymbeline,1609 call,11,cymbeline,1609 Nor,11,cymbeline,1609 further,11,cymbeline,1609 against,11,cymbeline,1609 set,11,cymbeline,1609 worth,11,cymbeline,1609 fellow,11,cymbeline,1609 born,11,cymbeline,1609 sun,11,cymbeline,1609 bring,11,cymbeline,1609 heaven,11,cymbeline,1609 since,11,cymbeline,1609 tribute,11,cymbeline,1609 Britons,11,cymbeline,1609 said,11,cymbeline,1609 dear,11,cymbeline,1609 lost,11,cymbeline,1609 welcome,11,cymbeline,1609 Are,11,cymbeline,1609 tender,11,cymbeline,1609 things,11,cymbeline,1609 Haven,11,cymbeline,1609 We'll,11,cymbeline,1609 Well,11,cymbeline,1609 letter,11,cymbeline,1609 word,11,cymbeline,1609 palace,11,cymbeline,1609 comfort,11,cymbeline,1609 lay,11,cymbeline,1609 sweet,11,cymbeline,1609 makes,11,cymbeline,1609 follow,11,cymbeline,1609 shalt,11,cymbeline,1609 the,779,cymbeline,1609 Frenchman,12,cymbeline,1609 boys,12,cymbeline,1609 hers,12,cymbeline,1609 Must,12,cymbeline,1609 sure,12,cymbeline,1609 Though,12,cymbeline,1609 friend,12,cymbeline,1609 chamber,12,cymbeline,1609 III,12,cymbeline,1609 gold,12,cymbeline,1609 gave,12,cymbeline,1609 air,12,cymbeline,1609 that's,12,cymbeline,1609 hard,12,cymbeline,1609 call'd,12,cymbeline,1609 present,12,cymbeline,1609 note,12,cymbeline,1609 Some,12,cymbeline,1609 mind,12,cymbeline,1609 They,12,cymbeline,1609 Were,12,cymbeline,1609 near,12,cymbeline,1609 heard,12,cymbeline,1609 thank,12,cymbeline,1609 honest,12,cymbeline,1609 return,12,cymbeline,1609 without,12,cymbeline,1609 woman,12,cymbeline,1609 himself,12,cymbeline,1609 to,524,cymbeline,1609 answer,13,cymbeline,1609 Nay,13,cymbeline,1609 peace,13,cymbeline,1609 every,13,cymbeline,1609 Would,13,cymbeline,1609 Upon,13,cymbeline,1609 came,13,cymbeline,1609 heavens,13,cymbeline,1609 Here,13,cymbeline,1609 sword,13,cymbeline,1609 mean,13,cymbeline,1609 sick,13,cymbeline,1609 What's,13,cymbeline,1609 boy,13,cymbeline,1609 blood,13,cymbeline,1609 Lords,13,cymbeline,1609 Lucius,13,cymbeline,1609 three,13,cymbeline,1609 fly,13,cymbeline,1609 purpose,13,cymbeline,1609 Captain,13,cymbeline,1609 on't,13,cymbeline,1609 live,13,cymbeline,1609 Cymbeline,13,cymbeline,1609 strange,13,cymbeline,1609 pray,14,cymbeline,1609 words,14,cymbeline,1609 brother,14,cymbeline,1609 enough,14,cymbeline,1609 Re,14,cymbeline,1609 i',14,cymbeline,1609 hast,14,cymbeline,1609 Rome,14,cymbeline,1609 stand,14,cymbeline,1609 fair,14,cymbeline,1609 ground,14,cymbeline,1609 gentleman,14,cymbeline,1609 Caesar,14,cymbeline,1609 Gaoler,14,cymbeline,1609 seen,14,cymbeline,1609 together,14,cymbeline,1609 Cloten,14,cymbeline,1609 not,270,cymbeline,1609 thought,15,cymbeline,1609 sons,15,cymbeline,1609 Was,15,cymbeline,1609 There,15,cymbeline,1609 tell,15,cymbeline,1609 Ay,15,cymbeline,1609 Good,15,cymbeline,1609 left,15,cymbeline,1609 eye,15,cymbeline,1609 Sir,15,cymbeline,1609 youth,15,cymbeline,1609 Jupiter,15,cymbeline,1609 fit,15,cymbeline,1609 hope,15,cymbeline,1609 lie,15,cymbeline,1609 villain,16,cymbeline,1609 cave,16,cymbeline,1609 CORNELIUS,16,cymbeline,1609 after,16,cymbeline,1609 worthy,16,cymbeline,1609 hence,16,cymbeline,1609 down,16,cymbeline,1609 any,16,cymbeline,1609 none,16,cymbeline,1609 yours,16,cymbeline,1609 Then,16,cymbeline,1609 before,16,cymbeline,1609 even,16,cymbeline,1609 day,16,cymbeline,1609 nature,16,cymbeline,1609 might,16,cymbeline,1609 head,17,cymbeline,1609 better,17,cymbeline,1609 away,17,cymbeline,1609 daughter,17,cymbeline,1609 both,17,cymbeline,1609 night,17,cymbeline,1609 part,17,cymbeline,1609 end,17,cymbeline,1609 comes,17,cymbeline,1609 old,17,cymbeline,1609 ever,17,cymbeline,1609 PHILARIO,17,cymbeline,1609 poor,17,cymbeline,1609 Thy,17,cymbeline,1609 Milford,18,cymbeline,1609 Not,18,cymbeline,1609 service,18,cymbeline,1609 gone,18,cymbeline,1609 doth,18,cymbeline,1609 less,18,cymbeline,1609 keep,18,cymbeline,1609 More,18,cymbeline,1609 Lady,18,cymbeline,1609 Than,18,cymbeline,1609 Hath,18,cymbeline,1609 far,18,cymbeline,1609 report,18,cymbeline,1609 into,18,cymbeline,1609 eyes,18,cymbeline,1609 madam,18,cymbeline,1609 hear,19,cymbeline,1609 bed,19,cymbeline,1609 enter,19,cymbeline,1609 put,19,cymbeline,1609 look,19,cymbeline,1609 long,19,cymbeline,1609 place,19,cymbeline,1609 myself,19,cymbeline,1609 ring,19,cymbeline,1609 Let,19,cymbeline,1609 rather,20,cymbeline,1609 Come,20,cymbeline,1609 name,20,cymbeline,1609 noble,20,cymbeline,1609 still,20,cymbeline,1609 off,20,cymbeline,1609 whom,20,cymbeline,1609 men,20,cymbeline,1609 die,20,cymbeline,1609 Will,21,cymbeline,1609 world,21,cymbeline,1609 mother,21,cymbeline,1609 Our,21,cymbeline,1609 best,21,cymbeline,1609 very,21,cymbeline,1609 way,21,cymbeline,1609 Gentleman,21,cymbeline,1609 cannot,21,cymbeline,1609 whose,22,cymbeline,1609 Or,22,cymbeline,1609 dead,22,cymbeline,1609 though,22,cymbeline,1609 From,22,cymbeline,1609 many,22,cymbeline,1609 'Tis,22,cymbeline,1609 first,22,cymbeline,1609 other,22,cymbeline,1609 those,23,cymbeline,1609 Have,23,cymbeline,1609 She,23,cymbeline,1609 could,23,cymbeline,1609 thus,23,cymbeline,1609 in,279,cymbeline,1609 done,24,cymbeline,1609 give,24,cymbeline,1609 again,24,cymbeline,1609 All,24,cymbeline,1609 Where,24,cymbeline,1609 Pisanio,25,cymbeline,1609 Why,25,cymbeline,1609 fear,25,cymbeline,1609 false,25,cymbeline,1609 never,25,cymbeline,1609 Imogen,25,cymbeline,1609 go,25,cymbeline,1609 Leonatus,25,cymbeline,1609 great,25,cymbeline,1609 mistress,26,cymbeline,1609 Who,26,cymbeline,1609 death,26,cymbeline,1609 nothing,26,cymbeline,1609 son,26,cymbeline,1609 His,26,cymbeline,1609 Be,26,cymbeline,1609 We,26,cymbeline,1609 where,26,cymbeline,1609 leave,26,cymbeline,1609 ',27,cymbeline,1609 CAIUS,27,cymbeline,1609 hand,27,cymbeline,1609 ACT,27,cymbeline,1609 court,27,cymbeline,1609 find,27,cymbeline,1609 master,27,cymbeline,1609 When,27,cymbeline,1609 heart,28,cymbeline,1609 own,28,cymbeline,1609 queen,28,cymbeline,1609 SCENE,28,cymbeline,1609 honour,29,cymbeline,1609 these,29,cymbeline,1609 love,29,cymbeline,1609 art,29,cymbeline,1609 nor,29,cymbeline,1609 who,29,cymbeline,1609 much,30,cymbeline,1609 Aside,30,cymbeline,1609 see,30,cymbeline,1609 up,30,cymbeline,1609 speak,30,cymbeline,1609 Roman,30,cymbeline,1609 say,31,cymbeline,1609 It,31,cymbeline,1609 how,31,cymbeline,1609 true,31,cymbeline,1609 two,31,cymbeline,1609 life,32,cymbeline,1609 Exeunt,32,cymbeline,1609 gods,32,cymbeline,1609 father,32,cymbeline,1609 lady,32,cymbeline,1609 'tis,33,cymbeline,1609 thing,33,cymbeline,1609 LUCIUS,33,cymbeline,1609 let,33,cymbeline,1609 and,545,cymbeline,1609 been,34,cymbeline,1609 an,34,cymbeline,1609 Exit,34,cymbeline,1609 By,35,cymbeline,1609 Your,35,cymbeline,1609 Britain,35,cymbeline,1609 think,35,cymbeline,1609 out,35,cymbeline,1609 come,35,cymbeline,1609 In,36,cymbeline,1609 Posthumus,36,cymbeline,1609 o',36,cymbeline,1609 well,36,cymbeline,1609 may,36,cymbeline,1609 when,36,cymbeline,1609 king,36,cymbeline,1609 some,37,cymbeline,1609 can,37,cymbeline,1609 most,37,cymbeline,1609 QUEEN,37,cymbeline,1609 being,39,cymbeline,1609 there,40,cymbeline,1609 mine,40,cymbeline,1609 take,40,cymbeline,1609 Second,41,cymbeline,1609 Is,42,cymbeline,1609 No,43,cymbeline,1609 He,43,cymbeline,1609 Which,43,cymbeline,1609 made,44,cymbeline,1609 upon,45,cymbeline,1609 My,45,cymbeline,1609 This,45,cymbeline,1609 time,45,cymbeline,1609 know,46,cymbeline,1609 were,46,cymbeline,1609 For,47,cymbeline,1609 must,48,cymbeline,1609 Lord,48,cymbeline,1609 too,48,cymbeline,1609 With,49,cymbeline,1609 If,49,cymbeline,1609 How,49,cymbeline,1609 did,49,cymbeline,1609 Of,50,cymbeline,1609 yet,50,cymbeline,1609 So,51,cymbeline,1609 Enter,51,cymbeline,1609 such,52,cymbeline,1609 they,53,cymbeline,1609 man,53,cymbeline,1609 like,54,cymbeline,1609 now,54,cymbeline,1609 here,55,cymbeline,1609 make,56,cymbeline,1609 then,57,cymbeline,1609 lord,57,cymbeline,1609 As,58,cymbeline,1609 their,58,cymbeline,1609 should,58,cymbeline,1609 Thou,58,cymbeline,1609 hath,60,cymbeline,1609 What,60,cymbeline,1609 You,61,cymbeline,1609 if,61,cymbeline,1609 what,61,cymbeline,1609 First,62,cymbeline,1609 ARVIRAGUS,64,cymbeline,1609 would,65,cymbeline,1609 one,67,cymbeline,1609 good,68,cymbeline,1609 I'll,68,cymbeline,1609 us,69,cymbeline,1609 them,71,cymbeline,1609 than,73,cymbeline,1609 had,73,cymbeline,1609 or,73,cymbeline,1609 BELARIUS,73,cymbeline,1609 at,74,cymbeline,1609 GUIDERIUS,76,cymbeline,1609 sir,77,cymbeline,1609 O,78,cymbeline,1609 PISANIO,79,cymbeline,1609 she,80,cymbeline,1609 which,81,cymbeline,1609 my,337,cymbeline,1609 shall,82,cymbeline,1609 do,83,cymbeline,1609 am,85,cymbeline,1609 thee,86,cymbeline,1609 we,86,cymbeline,1609 But,87,cymbeline,1609 IACHIMO,89,cymbeline,1609 A,90,cymbeline,1609 more,90,cymbeline,1609 by,91,cymbeline,1609 CLOTEN,91,cymbeline,1609 from,91,cymbeline,1609 you,347,cymbeline,1609 LEONATUS,92,cymbeline,1609 POSTHUMUS,92,cymbeline,1609 no,92,cymbeline,1609 on,92,cymbeline,1609 all,95,cymbeline,1609 will,97,cymbeline,1609 was,103,cymbeline,1609 are,105,cymbeline,1609 our,105,cymbeline,1609 thou,107,cymbeline,1609 That,113,cymbeline,1609 thy,114,cymbeline,1609 CYMBELINE,124,cymbeline,1609 a,389,cymbeline,1609 IMOGEN,137,cymbeline,1609 but,142,cymbeline,1609 To,150,cymbeline,1609 he,156,cymbeline,1609 so,159,cymbeline,1609 with,169,cymbeline,1609 And,170,cymbeline,1609 this,175,cymbeline,1609 him,175,cymbeline,1609 as,178,cymbeline,1609 his,182,cymbeline,1609 I,700,cymbeline,1609 for,190,cymbeline,1609 her,191,cymbeline,1609 The,192,cymbeline,1609 have,194,cymbeline,1609 your,198,cymbeline,1609 of,477,cymbeline,1609 me,228,cymbeline,1609 be,234,cymbeline,1609 is,249,cymbeline,1609 it,249,cymbeline,1609 that,252,cymbeline,1609 attended,1,coriolanus,1607 plagues,1,coriolanus,1607 treason,1,coriolanus,1607 discharged,1,coriolanus,1607 unelected,1,coriolanus,1607 event,1,coriolanus,1607 heed,1,coriolanus,1607 timed,1,coriolanus,1607 regard,1,coriolanus,1607 brawn,1,coriolanus,1607 Touching,1,coriolanus,1607 Choler,1,coriolanus,1607 armies,1,coriolanus,1607 daws,1,coriolanus,1607 'larum,1,coriolanus,1607 tomb,1,coriolanus,1607 chairs,1,coriolanus,1607 parted,1,coriolanus,1607 unreasonably,1,coriolanus,1607 Brutus,1,coriolanus,1607 advised,1,coriolanus,1607 venomous,1,coriolanus,1607 meed,1,coriolanus,1607 X,1,coriolanus,1607 muster,1,coriolanus,1607 happier,1,coriolanus,1607 unsaluted,1,coriolanus,1607 confused,1,coriolanus,1607 godded,1,coriolanus,1607 nothings,1,coriolanus,1607 join,1,coriolanus,1607 Flutter'd,1,coriolanus,1607 coign,1,coriolanus,1607 taking,1,coriolanus,1607 bitterest,1,coriolanus,1607 days,1,coriolanus,1607 Longer,1,coriolanus,1607 safeguard,1,coriolanus,1607 pestilence,1,coriolanus,1607 placeth,1,coriolanus,1607 fancy,1,coriolanus,1607 infant,1,coriolanus,1607 infected,1,coriolanus,1607 dames,1,coriolanus,1607 darest,1,coriolanus,1607 Loved,1,coriolanus,1607 Amazonian,1,coriolanus,1607 priority,1,coriolanus,1607 composition,1,coriolanus,1607 fathers,1,coriolanus,1607 doubly,1,coriolanus,1607 counterfeitly,1,coriolanus,1607 yielding,1,coriolanus,1607 belongs,1,coriolanus,1607 resist,1,coriolanus,1607 truer,1,coriolanus,1607 necessities,1,coriolanus,1607 muck,1,coriolanus,1607 tremble,1,coriolanus,1607 Scandal'd,1,coriolanus,1607 wears,1,coriolanus,1607 inveterate,1,coriolanus,1607 bereaves,1,coriolanus,1607 bleed'st,1,coriolanus,1607 planted,1,coriolanus,1607 burn'd,1,coriolanus,1607 foxes,1,coriolanus,1607 splinters,1,coriolanus,1607 twin,1,coriolanus,1607 Alas,1,coriolanus,1607 unburied,1,coriolanus,1607 quietness,1,coriolanus,1607 factions,1,coriolanus,1607 lament,1,coriolanus,1607 knell,1,coriolanus,1607 brats,1,coriolanus,1607 bleared,1,coriolanus,1607 youngly,1,coriolanus,1607 finished,1,coriolanus,1607 Shall's,1,coriolanus,1607 torn,1,coriolanus,1607 Bolder,1,coriolanus,1607 entire,1,coriolanus,1607 brown,1,coriolanus,1607 Censorinus,1,coriolanus,1607 alack,1,coriolanus,1607 pitying,1,coriolanus,1607 Fix,1,coriolanus,1607 unborn,1,coriolanus,1607 witchcraft's,1,coriolanus,1607 'Beseech,1,coriolanus,1607 Messengers,1,coriolanus,1607 bones,1,coriolanus,1607 Embarquements,1,coriolanus,1607 purge,1,coriolanus,1607 labours,1,coriolanus,1607 foolery,1,coriolanus,1607 breathless,1,coriolanus,1607 support,1,coriolanus,1607 obstinate,1,coriolanus,1607 bedward,1,coriolanus,1607 forbad,1,coriolanus,1607 rascal,1,coriolanus,1607 health,1,coriolanus,1607 Despising,1,coriolanus,1607 rod,1,coriolanus,1607 mend,1,coriolanus,1607 heart's,1,coriolanus,1607 apprehended,1,coriolanus,1607 Beat,1,coriolanus,1607 spoons,1,coriolanus,1607 roar,1,coriolanus,1607 assistance,1,coriolanus,1607 muse,1,coriolanus,1607 trivial,1,coriolanus,1607 waxed,1,coriolanus,1607 easily,1,coriolanus,1607 marvell'd,1,coriolanus,1607 villain,1,coriolanus,1607 hush'd,1,coriolanus,1607 butchers,1,coriolanus,1607 testy,1,coriolanus,1607 cypress,1,coriolanus,1607 jot,1,coriolanus,1607 construction,1,coriolanus,1607 speedy,1,coriolanus,1607 Subscribed,1,coriolanus,1607 Never,1,coriolanus,1607 destroyer,1,coriolanus,1607 swifter,1,coriolanus,1607 harrow,1,coriolanus,1607 Permitted,1,coriolanus,1607 Stay,1,coriolanus,1607 laughter,1,coriolanus,1607 warning,1,coriolanus,1607 shunning,1,coriolanus,1607 twos,1,coriolanus,1607 entered,1,coriolanus,1607 flung,1,coriolanus,1607 unaching,1,coriolanus,1607 season'd,1,coriolanus,1607 exceeds,1,coriolanus,1607 enigma,1,coriolanus,1607 toge,1,coriolanus,1607 miss'd,1,coriolanus,1607 singly,1,coriolanus,1607 Unbuckling,1,coriolanus,1607 sleepy,1,coriolanus,1607 Neptune,1,coriolanus,1607 writes,1,coriolanus,1607 younger,1,coriolanus,1607 osprey,1,coriolanus,1607 Honourable,1,coriolanus,1607 joint,1,coriolanus,1607 painted,1,coriolanus,1607 Whereby,1,coriolanus,1607 clothes,1,coriolanus,1607 calmness,1,coriolanus,1607 vail,1,coriolanus,1607 'Come,1,coriolanus,1607 infringe,1,coriolanus,1607 richest,1,coriolanus,1607 denials,1,coriolanus,1607 groan,1,coriolanus,1607 cranks,1,coriolanus,1607 trunk,1,coriolanus,1607 imitate,1,coriolanus,1607 vain,1,coriolanus,1607 proceedings,1,coriolanus,1607 dropp'd,1,coriolanus,1607 spake,1,coriolanus,1607 mere,1,coriolanus,1607 decay,1,coriolanus,1607 Supplied,1,coriolanus,1607 Especially,1,coriolanus,1607 unwholesome,1,coriolanus,1607 prisoner,1,coriolanus,1607 sighs,1,coriolanus,1607 sowl,1,coriolanus,1607 edifices,1,coriolanus,1607 Seducing,1,coriolanus,1607 prosperous,1,coriolanus,1607 errand,1,coriolanus,1607 utterance,1,coriolanus,1607 comest,1,coriolanus,1607 learn'd,1,coriolanus,1607 marketplace,1,coriolanus,1607 answering,1,coriolanus,1607 brook,1,coriolanus,1607 alias,1,coriolanus,1607 Held,1,coriolanus,1607 rumour,1,coriolanus,1607 Fan,1,coriolanus,1607 brood,1,coriolanus,1607 accidentally,1,coriolanus,1607 Wife,1,coriolanus,1607 hanged,1,coriolanus,1607 slander,1,coriolanus,1607 advance,1,coriolanus,1607 blanks,1,coriolanus,1607 understand,1,coriolanus,1607 allowance,1,coriolanus,1607 Resolved,1,coriolanus,1607 Unknown,1,coriolanus,1607 conducted,1,coriolanus,1607 themes,1,coriolanus,1607 Yielded,1,coriolanus,1607 flow,1,coriolanus,1607 lick,1,coriolanus,1607 although,1,coriolanus,1607 fury,1,coriolanus,1607 years',1,coriolanus,1607 signs,1,coriolanus,1607 charter,1,coriolanus,1607 singularity,1,coriolanus,1607 pleaders,1,coriolanus,1607 insurrections,1,coriolanus,1607 suggest,1,coriolanus,1607 Verily,1,coriolanus,1607 terrible,1,coriolanus,1607 taunts,1,coriolanus,1607 yonder,1,coriolanus,1607 Mortal,1,coriolanus,1607 baits,1,coriolanus,1607 ravish,1,coriolanus,1607 press,1,coriolanus,1607 advise,1,coriolanus,1607 bosom's,1,coriolanus,1607 odds,1,coriolanus,1607 iron,1,coriolanus,1607 tribunes',1,coriolanus,1607 Audience,1,coriolanus,1607 stools,1,coriolanus,1607 pleasures,1,coriolanus,1607 stamp'd,1,coriolanus,1607 Condemning,1,coriolanus,1607 hardiness,1,coriolanus,1607 supplication,1,coriolanus,1607 kinder,1,coriolanus,1607 rates,1,coriolanus,1607 thirst,1,coriolanus,1607 acclamations,1,coriolanus,1607 disobedience,1,coriolanus,1607 invested,1,coriolanus,1607 lulls,1,coriolanus,1607 bower,1,coriolanus,1607 PERSONAE,1,coriolanus,1607 churchyard,1,coriolanus,1607 considering,1,coriolanus,1607 pouring,1,coriolanus,1607 Anger's,1,coriolanus,1607 greyhound,1,coriolanus,1607 Insolent,1,coriolanus,1607 baited,1,coriolanus,1607 O'erborne,1,coriolanus,1607 crutch,1,coriolanus,1607 Lesser,1,coriolanus,1607 rub,1,coriolanus,1607 unlikely,1,coriolanus,1607 convented,1,coriolanus,1607 Scout,1,coriolanus,1607 case,1,coriolanus,1607 Endue,1,coriolanus,1607 Calmly,1,coriolanus,1607 thumb,1,coriolanus,1607 teaches,1,coriolanus,1607 oldest,1,coriolanus,1607 utter'd,1,coriolanus,1607 attempt,1,coriolanus,1607 Carry,1,coriolanus,1607 repulse,1,coriolanus,1607 regions,1,coriolanus,1607 pleasing,1,coriolanus,1607 titleless,1,coriolanus,1607 vast,1,coriolanus,1607 interrupted,1,coriolanus,1607 stirring,1,coriolanus,1607 comes't,1,coriolanus,1607 delivered,1,coriolanus,1607 passions,1,coriolanus,1607 chin,1,coriolanus,1607 counter,1,coriolanus,1607 VIII,1,coriolanus,1607 sanctifies,1,coriolanus,1607 graces,1,coriolanus,1607 palates,1,coriolanus,1607 rejourn,1,coriolanus,1607 shrinks,1,coriolanus,1607 honester,1,coriolanus,1607 graced,1,coriolanus,1607 surfeit,1,coriolanus,1607 Coin,1,coriolanus,1607 birth,1,coriolanus,1607 patroness,1,coriolanus,1607 sad,1,coriolanus,1607 feels,1,coriolanus,1607 conscience,1,coriolanus,1607 jest,1,coriolanus,1607 pins,1,coriolanus,1607 spawn,1,coriolanus,1607 pint,1,coriolanus,1607 stock,1,coriolanus,1607 can't,1,coriolanus,1607 carbon,1,coriolanus,1607 enemies',1,coriolanus,1607 seconded,1,coriolanus,1607 sole,1,coriolanus,1607 'What,1,coriolanus,1607 sold,1,coriolanus,1607 thousands,1,coriolanus,1607 grove,1,coriolanus,1607 dissentious,1,coriolanus,1607 charms,1,coriolanus,1607 opposer,1,coriolanus,1607 relieve,1,coriolanus,1607 mastership,1,coriolanus,1607 'Stay,1,coriolanus,1607 stream,1,coriolanus,1607 Deucalion,1,coriolanus,1607 link,1,coriolanus,1607 hour's,1,coriolanus,1607 fortunate,1,coriolanus,1607 atone,1,coriolanus,1607 prosperously,1,coriolanus,1607 lamentation,1,coriolanus,1607 unswept,1,coriolanus,1607 Gentry,1,coriolanus,1607 Provoked,1,coriolanus,1607 corner,1,coriolanus,1607 crying,1,coriolanus,1607 limb,1,coriolanus,1607 amended,1,coriolanus,1607 assemble,1,coriolanus,1607 Ye're,1,coriolanus,1607 brother,1,coriolanus,1607 thou'rt,1,coriolanus,1607 Keep,1,coriolanus,1607 proceeds,1,coriolanus,1607 restrain'st,1,coriolanus,1607 subjects,1,coriolanus,1607 corse,1,coriolanus,1607 restitution,1,coriolanus,1607 habits,1,coriolanus,1607 function,1,coriolanus,1607 awry,1,coriolanus,1607 stalls,1,coriolanus,1607 possessed,1,coriolanus,1607 heal,1,coriolanus,1607 heighten'd,1,coriolanus,1607 budge,1,coriolanus,1607 Corn,1,coriolanus,1607 rein'd,1,coriolanus,1607 enemy's,1,coriolanus,1607 For's,1,coriolanus,1607 reechy,1,coriolanus,1607 husewife,1,coriolanus,1607 Volumnia,1,coriolanus,1607 softer,1,coriolanus,1607 demands,1,coriolanus,1607 paper,1,coriolanus,1607 desperation,1,coriolanus,1607 pipe,1,coriolanus,1607 hanging,1,coriolanus,1607 Yield,1,coriolanus,1607 suffrage,1,coriolanus,1607 sixteen,1,coriolanus,1607 Take't,1,coriolanus,1607 teach,1,coriolanus,1607 target,1,coriolanus,1607 'Tear,1,coriolanus,1607 benefits,1,coriolanus,1607 Tyrannical,1,coriolanus,1607 blessed,1,coriolanus,1607 freedom,1,coriolanus,1607 control't,1,coriolanus,1607 wait,1,coriolanus,1607 wail,1,coriolanus,1607 arithmetic,1,coriolanus,1607 Senate,1,coriolanus,1607 kin,1,coriolanus,1607 slippery,1,coriolanus,1607 asker,1,coriolanus,1607 black,1,coriolanus,1607 asked,1,coriolanus,1607 general's,1,coriolanus,1607 herdsmen,1,coriolanus,1607 widow'd,1,coriolanus,1607 moving,1,coriolanus,1607 counterpoise,1,coriolanus,1607 batten,1,coriolanus,1607 unholy,1,coriolanus,1607 groats,1,coriolanus,1607 Win,1,coriolanus,1607 cities,1,coriolanus,1607 monster's,1,coriolanus,1607 towns,1,coriolanus,1607 discovery,1,coriolanus,1607 famously,1,coriolanus,1607 pursuing,1,coriolanus,1607 handling,1,coriolanus,1607 plucked,1,coriolanus,1607 shamed,1,coriolanus,1607 weaker,1,coriolanus,1607 rarest,1,coriolanus,1607 Mistake,1,coriolanus,1607 summon'd,1,coriolanus,1607 smoking,1,coriolanus,1607 centuries,1,coriolanus,1607 Attach,1,coriolanus,1607 shames,1,coriolanus,1607 cannibally,1,coriolanus,1607 I'd,1,coriolanus,1607 whatsoever,1,coriolanus,1607 talked,1,coriolanus,1607 wounds',1,coriolanus,1607 concealment,1,coriolanus,1607 returned,1,coriolanus,1607 Phoebus',1,coriolanus,1607 violently,1,coriolanus,1607 Beyond,1,coriolanus,1607 pretences,1,coriolanus,1607 ages,1,coriolanus,1607 laugh'd,1,coriolanus,1607 subdues,1,coriolanus,1607 edicts,1,coriolanus,1607 bastard,1,coriolanus,1607 saddle,1,coriolanus,1607 scourge,1,coriolanus,1607 deity,1,coriolanus,1607 walk,1,coriolanus,1607 wall,1,coriolanus,1607 invention,1,coriolanus,1607 sew,1,coriolanus,1607 fatigate,1,coriolanus,1607 merry,1,coriolanus,1607 vice,1,coriolanus,1607 monster'd,1,coriolanus,1607 deceived,1,coriolanus,1607 coals,1,coriolanus,1607 factionary,1,coriolanus,1607 arguing,1,coriolanus,1607 Deserved,1,coriolanus,1607 throngs,1,coriolanus,1607 Do't,1,coriolanus,1607 catching,1,coriolanus,1607 Measureless,1,coriolanus,1607 butts,1,coriolanus,1607 kneel'd,1,coriolanus,1607 unclog,1,coriolanus,1607 audit,1,coriolanus,1607 valiantness,1,coriolanus,1607 throng,1,coriolanus,1607 Aside,1,coriolanus,1607 Irons,1,coriolanus,1607 Thou'ldst,1,coriolanus,1607 lions,1,coriolanus,1607 doubtless,1,coriolanus,1607 disposed,1,coriolanus,1607 Thinking,1,coriolanus,1607 nine,1,coriolanus,1607 perfidiously,1,coriolanus,1607 love's,1,coriolanus,1607 actor,1,coriolanus,1607 fidiused,1,coriolanus,1607 Mildly,1,coriolanus,1607 confirmed,1,coriolanus,1607 combine,1,coriolanus,1607 Meeting,1,coriolanus,1607 Mangles,1,coriolanus,1607 embrace,1,coriolanus,1607 request's,1,coriolanus,1607 delivers,1,coriolanus,1607 soothed,1,coriolanus,1607 scorn'd,1,coriolanus,1607 stripes,1,coriolanus,1607 displace,1,coriolanus,1607 tatter,1,coriolanus,1607 salve,1,coriolanus,1607 experienced,1,coriolanus,1607 Merely,1,coriolanus,1607 Vagabond,1,coriolanus,1607 bringing,1,coriolanus,1607 winds,1,coriolanus,1607 follower,1,coriolanus,1607 raised,1,coriolanus,1607 augurer,1,coriolanus,1607 potch,1,coriolanus,1607 cedars,1,coriolanus,1607 looking,1,coriolanus,1607 Lictors,1,coriolanus,1607 apparent,1,coriolanus,1607 'O,1,coriolanus,1607 enroll'd,1,coriolanus,1607 counsel,1,coriolanus,1607 belonging,1,coriolanus,1607 attends,1,coriolanus,1607 procured,1,coriolanus,1607 fosset,1,coriolanus,1607 sued,1,coriolanus,1607 design,1,coriolanus,1607 Heavens,1,coriolanus,1607 permit,1,coriolanus,1607 competency,1,coriolanus,1607 extremities,1,coriolanus,1607 middle,1,coriolanus,1607 centurions,1,coriolanus,1607 wager,1,coriolanus,1607 Howsoever,1,coriolanus,1607 instruct,1,coriolanus,1607 wings,1,coriolanus,1607 groans,1,coriolanus,1607 Penelope,1,coriolanus,1607 sets,1,coriolanus,1607 O'ercome,1,coriolanus,1607 Thanks,1,coriolanus,1607 fellest,1,coriolanus,1607 horses',1,coriolanus,1607 fens,1,coriolanus,1607 stuff,1,coriolanus,1607 Hear'st,1,coriolanus,1607 becomes,1,coriolanus,1607 Slew,1,coriolanus,1607 Breaking,1,coriolanus,1607 bewray,1,coriolanus,1607 affect,1,coriolanus,1607 daughter's,1,coriolanus,1607 appear'd,1,coriolanus,1607 mutually,1,coriolanus,1607 induced,1,coriolanus,1607 purchasing,1,coriolanus,1607 stuck,1,coriolanus,1607 seats,1,coriolanus,1607 Rights,1,coriolanus,1607 colder,1,coriolanus,1607 mellow,1,coriolanus,1607 gaoler,1,coriolanus,1607 vile,1,coriolanus,1607 Kindly,1,coriolanus,1607 wedged,1,coriolanus,1607 sprang,1,coriolanus,1607 broils,1,coriolanus,1607 standest,1,coriolanus,1607 burdens,1,coriolanus,1607 waged,1,coriolanus,1607 compound,1,coriolanus,1607 getter,1,coriolanus,1607 embracements,1,coriolanus,1607 Upon's,1,coriolanus,1607 Plough,1,coriolanus,1607 Learn,1,coriolanus,1607 passes,1,coriolanus,1607 bustle,1,coriolanus,1607 Able,1,coriolanus,1607 hautboys,1,coriolanus,1607 doublets,1,coriolanus,1607 snow,1,coriolanus,1607 fawning,1,coriolanus,1607 dances,1,coriolanus,1607 Commit,1,coriolanus,1607 monster,1,coriolanus,1607 compassion,1,coriolanus,1607 Cato's,1,coriolanus,1607 profess,1,coriolanus,1607 weeded,1,coriolanus,1607 cambric,1,coriolanus,1607 cicatrices,1,coriolanus,1607 shower,1,coriolanus,1607 twelve,1,coriolanus,1607 Bestride,1,coriolanus,1607 guarded,1,coriolanus,1607 born,1,coriolanus,1607 Officers,1,coriolanus,1607 woollen,1,coriolanus,1607 bore,1,coriolanus,1607 Tush,1,coriolanus,1607 estimate,1,coriolanus,1607 Whereof,1,coriolanus,1607 treading,1,coriolanus,1607 kill'd,1,coriolanus,1607 tuns,1,coriolanus,1607 surplus,1,coriolanus,1607 comely,1,coriolanus,1607 Turn,1,coriolanus,1607 arriving,1,coriolanus,1607 mummers,1,coriolanus,1607 Wash,1,coriolanus,1607 reek,1,coriolanus,1607 reel,1,coriolanus,1607 seller,1,coriolanus,1607 plots,1,coriolanus,1607 Aufidiuses,1,coriolanus,1607 variable,1,coriolanus,1607 Wish,1,coriolanus,1607 scold,1,coriolanus,1607 virgin'd,1,coriolanus,1607 seeks,1,coriolanus,1607 affected,1,coriolanus,1607 dearly,1,coriolanus,1607 Pardon,1,coriolanus,1607 bribe,1,coriolanus,1607 Wine,1,coriolanus,1607 expedition,1,coriolanus,1607 fruit,1,coriolanus,1607 swiftness,1,coriolanus,1607 opposers,1,coriolanus,1607 consented,1,coriolanus,1607 Entrance,1,coriolanus,1607 willing,1,coriolanus,1607 certainties,1,coriolanus,1607 properly,1,coriolanus,1607 subsisting,1,coriolanus,1607 saw't,1,coriolanus,1607 'Look,1,coriolanus,1607 flattered,1,coriolanus,1607 bestrid,1,coriolanus,1607 coloured,1,coriolanus,1607 tush,1,coriolanus,1607 servanted,1,coriolanus,1607 speechless,1,coriolanus,1607 mutinies,1,coriolanus,1607 ruth,1,coriolanus,1607 disbench'd,1,coriolanus,1607 rakes,1,coriolanus,1607 companion,1,coriolanus,1607 desirers,1,coriolanus,1607 outdone,1,coriolanus,1607 feed,1,coriolanus,1607 rust,1,coriolanus,1607 ancestor,1,coriolanus,1607 bowl,1,coriolanus,1607 provand,1,coriolanus,1607 bencher,1,coriolanus,1607 aidless,1,coriolanus,1607 beaten,1,coriolanus,1607 Afterwards,1,coriolanus,1607 relish,1,coriolanus,1607 upon's,1,coriolanus,1607 lances,1,coriolanus,1607 magistrate,1,coriolanus,1607 accept,1,coriolanus,1607 tag,1,coriolanus,1607 giber,1,coriolanus,1607 liest',1,coriolanus,1607 whisper,1,coriolanus,1607 lurch'd,1,coriolanus,1607 criminal,1,coriolanus,1607 rubbing,1,coriolanus,1607 designments,1,coriolanus,1607 wishes,1,coriolanus,1607 whined,1,coriolanus,1607 kam,1,coriolanus,1607 prized,1,coriolanus,1607 stuff'd,1,coriolanus,1607 applause,1,coriolanus,1607 ceremony,1,coriolanus,1607 Banished,1,coriolanus,1607 Retire,1,coriolanus,1607 language,1,coriolanus,1607 Wondrous,1,coriolanus,1607 Living,1,coriolanus,1607 hailstone,1,coriolanus,1607 kneel,1,coriolanus,1607 Filling,1,coriolanus,1607 rend,1,coriolanus,1607 Crying,1,coriolanus,1607 sconce,1,coriolanus,1607 Stop,1,coriolanus,1607 seems,1,coriolanus,1607 title,1,coriolanus,1607 agreeing,1,coriolanus,1607 rent,1,coriolanus,1607 usury,1,coriolanus,1607 steal,1,coriolanus,1607 edge,1,coriolanus,1607 stead,1,coriolanus,1607 wipe,1,coriolanus,1607 Friend,1,coriolanus,1607 access,1,coriolanus,1607 mountainous,1,coriolanus,1607 Unseparable,1,coriolanus,1607 debile,1,coriolanus,1607 bolt,1,coriolanus,1607 dies,1,coriolanus,1607 malign,1,coriolanus,1607 renew,1,coriolanus,1607 go'st,1,coriolanus,1607 requests,1,coriolanus,1607 seest,1,coriolanus,1607 turned,1,coriolanus,1607 stubble,1,coriolanus,1607 tyrannical,1,coriolanus,1607 died,1,coriolanus,1607 Accept,1,coriolanus,1607 thrown,1,coriolanus,1607 eagle,1,coriolanus,1607 cormorant,1,coriolanus,1607 throws,1,coriolanus,1607 sense,1,coriolanus,1607 Fights,1,coriolanus,1607 beating,1,coriolanus,1607 bidding,1,coriolanus,1607 warm,1,coriolanus,1607 loins,1,coriolanus,1607 minnows,1,coriolanus,1607 stocks,1,coriolanus,1607 Confusion's,1,coriolanus,1607 Bury,1,coriolanus,1607 bond,1,coriolanus,1607 bulks,1,coriolanus,1607 cunning,1,coriolanus,1607 Wave,1,coriolanus,1607 melted,1,coriolanus,1607 distress,1,coriolanus,1607 circumvention,1,coriolanus,1607 join'd,1,coriolanus,1607 mingling,1,coriolanus,1607 revel,1,coriolanus,1607 steep,1,coriolanus,1607 t'other,1,coriolanus,1607 wast,1,coriolanus,1607 observe,1,coriolanus,1607 creeping,1,coriolanus,1607 viand,1,coriolanus,1607 manhood,1,coriolanus,1607 framed,1,coriolanus,1607 tend,1,coriolanus,1607 school'd,1,coriolanus,1607 colour,1,coriolanus,1607 coffin'd,1,coriolanus,1607 infirmity,1,coriolanus,1607 created,1,coriolanus,1607 verdict,1,coriolanus,1607 Draw,1,coriolanus,1607 viper,1,coriolanus,1607 intelligence,1,coriolanus,1607 offers,1,coriolanus,1607 o'erleap,1,coriolanus,1607 patch'd,1,coriolanus,1607 goddess,1,coriolanus,1607 tending,1,coriolanus,1607 Raised,1,coriolanus,1607 apoplexy,1,coriolanus,1607 aspect,1,coriolanus,1607 vigilant,1,coriolanus,1607 urge,1,coriolanus,1607 twine,1,coriolanus,1607 abundantly,1,coriolanus,1607 Insult,1,coriolanus,1607 Daughter,1,coriolanus,1607 Sentinels,1,coriolanus,1607 bristled,1,coriolanus,1607 mistaken,1,coriolanus,1607 drove,1,coriolanus,1607 mulberry,1,coriolanus,1607 grind,1,coriolanus,1607 contrived,1,coriolanus,1607 bastards,1,coriolanus,1607 marriages,1,coriolanus,1607 chamber,1,coriolanus,1607 tapers,1,coriolanus,1607 cudgel,1,coriolanus,1607 gratify,1,coriolanus,1607 falter,1,coriolanus,1607 Takes,1,coriolanus,1607 spectatorship,1,coriolanus,1607 statutes,1,coriolanus,1607 strongly,1,coriolanus,1607 Hold,1,coriolanus,1607 discreet,1,coriolanus,1607 physical,1,coriolanus,1607 hap,1,coriolanus,1607 gawded,1,coriolanus,1607 drachm,1,coriolanus,1607 Certainly,1,coriolanus,1607 backs,1,coriolanus,1607 planet,1,coriolanus,1607 wanting,1,coriolanus,1607 A',1,coriolanus,1607 unmeriting,1,coriolanus,1607 carbuncle,1,coriolanus,1607 Unheard,1,coriolanus,1607 crack,1,coriolanus,1607 Drawn,1,coriolanus,1607 rivers,1,coriolanus,1607 horror's,1,coriolanus,1607 utter,1,coriolanus,1607 offend,1,coriolanus,1607 Hydra,1,coriolanus,1607 Cominius',1,coriolanus,1607 talks,1,coriolanus,1607 seventy,1,coriolanus,1607 chronicle,1,coriolanus,1607 hereto,1,coriolanus,1607 infection,1,coriolanus,1607 tonight,1,coriolanus,1607 quarrel,1,coriolanus,1607 corslet,1,coriolanus,1607 Summon,1,coriolanus,1607 surety,1,coriolanus,1607 molehill,1,coriolanus,1607 scarce,1,coriolanus,1607 chaste,1,coriolanus,1607 balms,1,coriolanus,1607 particularise,1,coriolanus,1607 Whiles,1,coriolanus,1607 Becomes,1,coriolanus,1607 knowing,1,coriolanus,1607 army's,1,coriolanus,1607 shortly,1,coriolanus,1607 adversaries,1,coriolanus,1607 wash'd,1,coriolanus,1607 Counsel,1,coriolanus,1607 hew,1,coriolanus,1607 lance,1,coriolanus,1607 mechanics,1,coriolanus,1607 behold'st,1,coriolanus,1607 hen,1,coriolanus,1607 sensibly,1,coriolanus,1607 plough'd,1,coriolanus,1607 'aged,1,coriolanus,1607 Lo,1,coriolanus,1607 outweighs,1,coriolanus,1607 Nature,1,coriolanus,1607 Ourselves,1,coriolanus,1607 warrior,1,coriolanus,1607 sensible,1,coriolanus,1607 inclined,1,coriolanus,1607 ass's,1,coriolanus,1607 dictator,1,coriolanus,1607 shunless,1,coriolanus,1607 cockle,1,coriolanus,1607 pays,1,coriolanus,1607 eternity,1,coriolanus,1607 proof,1,coriolanus,1607 interims,1,coriolanus,1607 vanquisher,1,coriolanus,1607 gangrened,1,coriolanus,1607 in's,1,coriolanus,1607 scarfs,1,coriolanus,1607 Advance,1,coriolanus,1607 kept,1,coriolanus,1607 canst,1,coriolanus,1607 Answer,1,coriolanus,1607 brings,1,coriolanus,1607 begun,1,coriolanus,1607 twist,1,coriolanus,1607 Standing,1,coriolanus,1607 pawn,1,coriolanus,1607 interior,1,coriolanus,1607 hie,1,coriolanus,1607 Tutus,1,coriolanus,1607 changed,1,coriolanus,1607 lesson'd,1,coriolanus,1607 goaded,1,coriolanus,1607 disturbing,1,coriolanus,1607 Loaden,1,coriolanus,1607 flowers,1,coriolanus,1607 required,1,coriolanus,1607 demerits,1,coriolanus,1607 approve,1,coriolanus,1607 portance,1,coriolanus,1607 fines,1,coriolanus,1607 sovereignty,1,coriolanus,1607 pleasure,1,coriolanus,1607 unroof'd,1,coriolanus,1607 Custom,1,coriolanus,1607 rumour'd,1,coriolanus,1607 IX,1,coriolanus,1607 dinner,1,coriolanus,1607 guardant,1,coriolanus,1607 fortune's,1,coriolanus,1607 quick,1,coriolanus,1607 ease,1,coriolanus,1607 braggart,1,coriolanus,1607 cuckolds,1,coriolanus,1607 proverbs,1,coriolanus,1607 pestering,1,coriolanus,1607 Stain,1,coriolanus,1607 despair,1,coriolanus,1607 pinched,1,coriolanus,1607 Doubt,1,coriolanus,1607 sport,1,coriolanus,1607 noses,1,coriolanus,1607 greasy,1,coriolanus,1607 hoarded,1,coriolanus,1607 whipp'd,1,coriolanus,1607 billeted,1,coriolanus,1607 Almost,1,coriolanus,1607 wedded,1,coriolanus,1607 earn,1,coriolanus,1607 pow,1,coriolanus,1607 diversely,1,coriolanus,1607 glorious,1,coriolanus,1607 prompts,1,coriolanus,1607 strew,1,coriolanus,1607 vesture,1,coriolanus,1607 formerly,1,coriolanus,1607 tumbled,1,coriolanus,1607 devotion,1,coriolanus,1607 Rising,1,coriolanus,1607 awaken,1,coriolanus,1607 shunn'd,1,coriolanus,1607 perceive's,1,coriolanus,1607 quiet,1,coriolanus,1607 ridges,1,coriolanus,1607 changeling,1,coriolanus,1607 sirs,1,coriolanus,1607 valour's,1,coriolanus,1607 courteous,1,coriolanus,1607 Forgive,1,coriolanus,1607 theft,1,coriolanus,1607 plants,1,coriolanus,1607 sought,1,coriolanus,1607 depending,1,coriolanus,1607 catalogue,1,coriolanus,1607 quicken'd,1,coriolanus,1607 pleader,1,coriolanus,1607 weed,1,coriolanus,1607 Thou'rt,1,coriolanus,1607 opposers',1,coriolanus,1607 'we,1,coriolanus,1607 reckless,1,coriolanus,1607 young'st,1,coriolanus,1607 sulphur,1,coriolanus,1607 Mend,1,coriolanus,1607 conies,1,coriolanus,1607 hills,1,coriolanus,1607 bend,1,coriolanus,1607 grief,1,coriolanus,1607 wealsmen,1,coriolanus,1607 mankind,1,coriolanus,1607 audible,1,coriolanus,1607 Worshipful,1,coriolanus,1607 humane,1,coriolanus,1607 Allow,1,coriolanus,1607 sooner,1,coriolanus,1607 Heart,1,coriolanus,1607 imagine,1,coriolanus,1607 'mildly,1,coriolanus,1607 tumble,1,coriolanus,1607 'Rise,1,coriolanus,1607 drench,1,coriolanus,1607 dove,1,coriolanus,1607 Sits,1,coriolanus,1607 whereat,1,coriolanus,1607 Plague,1,coriolanus,1607 kindness,1,coriolanus,1607 posture,1,coriolanus,1607 cat,1,coriolanus,1607 Beating,1,coriolanus,1607 cap,1,coriolanus,1607 Yourself,1,coriolanus,1607 reeking,1,coriolanus,1607 fisting,1,coriolanus,1607 differency,1,coriolanus,1607 uncertainty,1,coriolanus,1607 tricks,1,coriolanus,1607 shepherds,1,coriolanus,1607 dote,1,coriolanus,1607 flouted,1,coriolanus,1607 Murdering,1,coriolanus,1607 Bold,1,coriolanus,1607 learned,1,coriolanus,1607 gaze,1,coriolanus,1607 weak,1,coriolanus,1607 latest,1,coriolanus,1607 Save,1,coriolanus,1607 bent,1,coriolanus,1607 craft,1,coriolanus,1607 gall'd,1,coriolanus,1607 remembers,1,coriolanus,1607 Abated,1,coriolanus,1607 shadow,1,coriolanus,1607 buildings,1,coriolanus,1607 jealous,1,coriolanus,1607 Arabia,1,coriolanus,1607 meanest,1,coriolanus,1607 Drawing,1,coriolanus,1607 bended,1,coriolanus,1607 prating,1,coriolanus,1607 insurrection's,1,coriolanus,1607 inshell'd,1,coriolanus,1607 a',1,coriolanus,1607 serpent,1,coriolanus,1607 usurers,1,coriolanus,1607 jewel,1,coriolanus,1607 twice,1,coriolanus,1607 traducement,1,coriolanus,1607 transport,1,coriolanus,1607 Resume,1,coriolanus,1607 eaten,1,coriolanus,1607 flay'd,1,coriolanus,1607 despise,1,coriolanus,1607 extreme,1,coriolanus,1607 Watch'd,1,coriolanus,1607 theme,1,coriolanus,1607 murrain,1,coriolanus,1607 established,1,coriolanus,1607 Whene'er,1,coriolanus,1607 unproperly,1,coriolanus,1607 degree,1,coriolanus,1607 verity,1,coriolanus,1607 Directitude,1,coriolanus,1607 dangerously,1,coriolanus,1607 moods,1,coriolanus,1607 solemness,1,coriolanus,1607 swims,1,coriolanus,1607 insinuating,1,coriolanus,1607 amongst,1,coriolanus,1607 raising,1,coriolanus,1607 tailors,1,coriolanus,1607 hurry,1,coriolanus,1607 Nobility,1,coriolanus,1607 O'er,1,coriolanus,1607 survey,1,coriolanus,1607 Enough,1,coriolanus,1607 About,1,coriolanus,1607 Meet,1,coriolanus,1607 directitude,1,coriolanus,1607 paint,1,coriolanus,1607 jump,1,coriolanus,1607 picture,1,coriolanus,1607 conscienced,1,coriolanus,1607 Wrench,1,coriolanus,1607 sing,1,coriolanus,1607 floating,1,coriolanus,1607 hourly,1,coriolanus,1607 Refused,1,coriolanus,1607 calling,1,coriolanus,1607 eject,1,coriolanus,1607 north,1,coriolanus,1607 attain'd,1,coriolanus,1607 gash,1,coriolanus,1607 upper,1,coriolanus,1607 consulship,1,coriolanus,1607 lately,1,coriolanus,1607 piles,1,coriolanus,1607 acceptance,1,coriolanus,1607 hurts,1,coriolanus,1607 chafed,1,coriolanus,1607 beginning,1,coriolanus,1607 afoot,1,coriolanus,1607 garb,1,coriolanus,1607 inheritance,1,coriolanus,1607 Name,1,coriolanus,1607 sir',1,coriolanus,1607 Chide,1,coriolanus,1607 slave's,1,coriolanus,1607 stooping,1,coriolanus,1607 eagles,1,coriolanus,1607 undercrest,1,coriolanus,1607 impatience,1,coriolanus,1607 taints,1,coriolanus,1607 AUFIDIUS',1,coriolanus,1607 panting,1,coriolanus,1607 childish,1,coriolanus,1607 solely,1,coriolanus,1607 virgin,1,coriolanus,1607 sail,1,coriolanus,1607 wiped,1,coriolanus,1607 forgive,1,coriolanus,1607 wreak,1,coriolanus,1607 engine,1,coriolanus,1607 bewitchment,1,coriolanus,1607 carelessness,1,coriolanus,1607 eloquence,1,coriolanus,1607 miles,1,coriolanus,1607 hear't,1,coriolanus,1607 projects,1,coriolanus,1607 Fortune,1,coriolanus,1607 aim,1,coriolanus,1607 reservation,1,coriolanus,1607 Traitor,1,coriolanus,1607 keeping,1,coriolanus,1607 embraced,1,coriolanus,1607 Dispropertied,1,coriolanus,1607 Fear,1,coriolanus,1607 shrug,1,coriolanus,1607 attempted,1,coriolanus,1607 unbarbed,1,coriolanus,1607 Best,1,coriolanus,1607 consider,1,coriolanus,1607 battery,1,coriolanus,1607 current,1,coriolanus,1607 sheep,1,coriolanus,1607 affecting,1,coriolanus,1607 favour,1,coriolanus,1607 Destroy'd,1,coriolanus,1607 painting,1,coriolanus,1607 prevented,1,coriolanus,1607 defenders,1,coriolanus,1607 needs,1,coriolanus,1607 stoop,1,coriolanus,1607 empiricutic,1,coriolanus,1607 beam,1,coriolanus,1607 Pass,1,coriolanus,1607 swearing,1,coriolanus,1607 whereon,1,coriolanus,1607 unworthy,1,coriolanus,1607 gilt,1,coriolanus,1607 deal,1,coriolanus,1607 depends,1,coriolanus,1607 aims,1,coriolanus,1607 deaf,1,coriolanus,1607 priest,1,coriolanus,1607 pluck'd,1,coriolanus,1607 Spread,1,coriolanus,1607 itch,1,coriolanus,1607 Splitting,1,coriolanus,1607 Besides,1,coriolanus,1607 makers,1,coriolanus,1607 thrive,1,coriolanus,1607 enforce,1,coriolanus,1607 redress,1,coriolanus,1607 Alexander,1,coriolanus,1607 recommend,1,coriolanus,1607 forged,1,coriolanus,1607 sack,1,coriolanus,1607 suppler,1,coriolanus,1607 lady's,1,coriolanus,1607 edges,1,coriolanus,1607 ice,1,coriolanus,1607 nicely,1,coriolanus,1607 by't,1,coriolanus,1607 Divide,1,coriolanus,1607 List,1,coriolanus,1607 trophy,1,coriolanus,1607 houses,1,coriolanus,1607 comforts,1,coriolanus,1607 speed,1,coriolanus,1607 boats,1,coriolanus,1607 apes,1,coriolanus,1607 depopulate,1,coriolanus,1607 crab,1,coriolanus,1607 quarry,1,coriolanus,1607 smear'd,1,coriolanus,1607 cruelty,1,coriolanus,1607 accompany,1,coriolanus,1607 'Deny,1,coriolanus,1607 forges,1,coriolanus,1607 Pluto,1,coriolanus,1607 suckle,1,coriolanus,1607 newly,1,coriolanus,1607 piercing,1,coriolanus,1607 Cushions,1,coriolanus,1607 fixed,1,coriolanus,1607 doom,1,coriolanus,1607 colic,1,coriolanus,1607 mills,1,coriolanus,1607 hospitable,1,coriolanus,1607 unfill'd,1,coriolanus,1607 betray'd,1,coriolanus,1607 reins,1,coriolanus,1607 ask'd,1,coriolanus,1607 attending,1,coriolanus,1607 pursuit,1,coriolanus,1607 soaring,1,coriolanus,1607 congregations,1,coriolanus,1607 Yonder,1,coriolanus,1607 month,1,coriolanus,1607 passable,1,coriolanus,1607 delay,1,coriolanus,1607 generosity,1,coriolanus,1607 plant,1,coriolanus,1607 necessity,1,coriolanus,1607 boasting,1,coriolanus,1607 fairness,1,coriolanus,1607 fifes,1,coriolanus,1607 bodied,1,coriolanus,1607 idly,1,coriolanus,1607 interjoin,1,coriolanus,1607 complexions,1,coriolanus,1607 slightness,1,coriolanus,1607 curbs,1,coriolanus,1607 porch,1,coriolanus,1607 slily,1,coriolanus,1607 seventeen,1,coriolanus,1607 whereof,1,coriolanus,1607 thankful,1,coriolanus,1607 collected,1,coriolanus,1607 Live,1,coriolanus,1607 flamens,1,coriolanus,1607 Reads,1,coriolanus,1607 mingle,1,coriolanus,1607 auburn,1,coriolanus,1607 barr'st,1,coriolanus,1607 Publius,1,coriolanus,1607 cousin,1,coriolanus,1607 Ready,1,coriolanus,1607 temper,1,coriolanus,1607 caused,1,coriolanus,1607 'Shall',1,coriolanus,1607 barbarians,1,coriolanus,1607 enmity,1,coriolanus,1607 spell,1,coriolanus,1607 lover,1,coriolanus,1607 unswayable,1,coriolanus,1607 Tabours,1,coriolanus,1607 lots,1,coriolanus,1607 expulsion,1,coriolanus,1607 hadst,1,coriolanus,1607 offences,1,coriolanus,1607 Hostilius,1,coriolanus,1607 stout,1,coriolanus,1607 loud,1,coriolanus,1607 measles,1,coriolanus,1607 lightly,1,coriolanus,1607 ado,1,coriolanus,1607 alteration,1,coriolanus,1607 wars',1,coriolanus,1607 Wouldst,1,coriolanus,1607 laboured,1,coriolanus,1607 Ulysses',1,coriolanus,1607 drift,1,coriolanus,1607 beholding,1,coriolanus,1607 achieved,1,coriolanus,1607 Servants,1,coriolanus,1607 lest,1,coriolanus,1607 expel,1,coriolanus,1607 Breathe,1,coriolanus,1607 dries,1,coriolanus,1607 devil,1,coriolanus,1607 knot,1,coriolanus,1607 apparel,1,coriolanus,1607 'bout,1,coriolanus,1607 hostile,1,coriolanus,1607 bruising,1,coriolanus,1607 strains,1,coriolanus,1607 necessary,1,coriolanus,1607 feats,1,coriolanus,1607 smart,1,coriolanus,1607 poor'st,1,coriolanus,1607 doves',1,coriolanus,1607 Whoever,1,coriolanus,1607 commandment,1,coriolanus,1607 spot,1,coriolanus,1607 kings',1,coriolanus,1607 Translate,1,coriolanus,1607 Marcus,1,coriolanus,1607 scatter'd,1,coriolanus,1607 Velutus,1,coriolanus,1607 marr'd,1,coriolanus,1607 hot,1,coriolanus,1607 load,1,coriolanus,1607 'voided,1,coriolanus,1607 briers,1,coriolanus,1607 Guards,1,coriolanus,1607 hoo,1,coriolanus,1607 presume,1,coriolanus,1607 owns,1,coriolanus,1607 napes,1,coriolanus,1607 thrice,1,coriolanus,1607 accents,1,coriolanus,1607 graves,1,coriolanus,1607 prescription,1,coriolanus,1607 graver,1,coriolanus,1607 methink,1,coriolanus,1607 warm'd,1,coriolanus,1607 havoc,1,coriolanus,1607 executed,1,coriolanus,1607 tempted,1,coriolanus,1607 catched,1,coriolanus,1607 botcher's,1,coriolanus,1607 bodily,1,coriolanus,1607 Unshout,1,coriolanus,1607 'Though,1,coriolanus,1607 accounted,1,coriolanus,1607 hare,1,coriolanus,1607 discourse,1,coriolanus,1607 grained,1,coriolanus,1607 puny,1,coriolanus,1607 scratch,1,coriolanus,1607 Jack,1,coriolanus,1607 Break,1,coriolanus,1607 front,1,coriolanus,1607 suggested,1,coriolanus,1607 incline,1,coriolanus,1607 frighted,1,coriolanus,1607 Opposing,1,coriolanus,1607 remember'd,1,coriolanus,1607 Plebeians,1,coriolanus,1607 soldier's,1,coriolanus,1607 affects,1,coriolanus,1607 hall,1,coriolanus,1607 hale,1,coriolanus,1607 frost,1,coriolanus,1607 miscarries,1,coriolanus,1607 messenger,1,coriolanus,1607 perfecter,1,coriolanus,1607 beggar's,1,coriolanus,1607 kingly,1,coriolanus,1607 senseless,1,coriolanus,1607 quarter'd,1,coriolanus,1607 submit,1,coriolanus,1607 basest,1,coriolanus,1607 impression,1,coriolanus,1607 mysteries,1,coriolanus,1607 nation,1,coriolanus,1607 palm,1,coriolanus,1607 spun,1,coriolanus,1607 Real,1,coriolanus,1607 noisome,1,coriolanus,1607 palate,1,coriolanus,1607 perform'd,1,coriolanus,1607 Read,1,coriolanus,1607 husband's,1,coriolanus,1607 lockram,1,coriolanus,1607 Tent,1,coriolanus,1607 natural,1,coriolanus,1607 spur,1,coriolanus,1607 faintly,1,coriolanus,1607 treads,1,coriolanus,1607 Flower,1,coriolanus,1607 re,1,coriolanus,1607 consume,1,coriolanus,1607 Lady,1,coriolanus,1607 liberty,1,coriolanus,1607 hardness,1,coriolanus,1607 plain,1,coriolanus,1607 drawn,1,coriolanus,1607 severity,1,coriolanus,1607 forty,1,coriolanus,1607 joyful,1,coriolanus,1607 school,1,coriolanus,1607 remembrances,1,coriolanus,1607 particulars,1,coriolanus,1607 During,1,coriolanus,1607 wisdoms,1,coriolanus,1607 examine,1,coriolanus,1607 perpetual,1,coriolanus,1607 marching,1,coriolanus,1607 potency,1,coriolanus,1607 acquaintance,1,coriolanus,1607 curt'sy,1,coriolanus,1607 multitudinous,1,coriolanus,1607 casque,1,coriolanus,1607 commendable,1,coriolanus,1607 rudely,1,coriolanus,1607 open,1,coriolanus,1607 hazards,1,coriolanus,1607 virginal,1,coriolanus,1607 midnight,1,coriolanus,1607 page,1,coriolanus,1607 broiled,1,coriolanus,1607 deaths,1,coriolanus,1607 gibingly,1,coriolanus,1607 Boils,1,coriolanus,1607 prepare,1,coriolanus,1607 abhor,1,coriolanus,1607 nightly,1,coriolanus,1607 yawn,1,coriolanus,1607 'Coriolanus,1,coriolanus,1607 ash,1,coriolanus,1607 'head,1,coriolanus,1607 rack'd,1,coriolanus,1607 Commend,1,coriolanus,1607 Deserve,1,coriolanus,1607 confederate,1,coriolanus,1607 shent,1,coriolanus,1607 tomorrow,1,coriolanus,1607 courts,1,coriolanus,1607 hangs,1,coriolanus,1607 fasts,1,coriolanus,1607 spit,1,coriolanus,1607 wagging,1,coriolanus,1607 outrage,1,coriolanus,1607 extremest,1,coriolanus,1607 money,1,coriolanus,1607 fore,1,coriolanus,1607 haver,1,coriolanus,1607 apt,1,coriolanus,1607 profound,1,coriolanus,1607 footed,1,coriolanus,1607 Prepare,1,coriolanus,1607 City,1,coriolanus,1607 Ingratitude,1,coriolanus,1607 curdied,1,coriolanus,1607 shaken,1,coriolanus,1607 shop,1,coriolanus,1607 kindest,1,coriolanus,1607 shot,1,coriolanus,1607 Cast,1,coriolanus,1607 yielded,1,coriolanus,1607 proper,1,coriolanus,1607 amplified,1,coriolanus,1607 refusal,1,coriolanus,1607 bragg'd,1,coriolanus,1607 awe,1,coriolanus,1607 louts,1,coriolanus,1607 companionship,1,coriolanus,1607 patrician,1,coriolanus,1607 food,1,coriolanus,1607 Cats,1,coriolanus,1607 tyranny,1,coriolanus,1607 yarn,1,coriolanus,1607 Small,1,coriolanus,1607 babies,1,coriolanus,1607 unactive,1,coriolanus,1607 Wears,1,coriolanus,1607 agents,1,coriolanus,1607 tearing,1,coriolanus,1607 prevailing,1,coriolanus,1607 object,1,coriolanus,1607 fresh,1,coriolanus,1607 scarcely,1,coriolanus,1607 gird,1,coriolanus,1607 malkin,1,coriolanus,1607 rightly,1,coriolanus,1607 error,1,coriolanus,1607 feverous,1,coriolanus,1607 fold,1,coriolanus,1607 contemning,1,coriolanus,1607 ingratitude,1,coriolanus,1607 Hob,1,coriolanus,1607 armour,1,coriolanus,1607 friendliness,1,coriolanus,1607 applied,1,coriolanus,1607 pushed,1,coriolanus,1607 Care,1,coriolanus,1607 ungravely,1,coriolanus,1607 Hast,1,coriolanus,1607 beggars,1,coriolanus,1607 knock,1,coriolanus,1607 unbruised,1,coriolanus,1607 inquire,1,coriolanus,1607 distinction,1,coriolanus,1607 deadly,1,coriolanus,1607 Harp,1,coriolanus,1607 Think'st,1,coriolanus,1607 few,1,coriolanus,1607 Sirrah,1,coriolanus,1607 fed,1,coriolanus,1607 native,1,coriolanus,1607 Again,1,coriolanus,1607 Associated,1,coriolanus,1607 smells,1,coriolanus,1607 Pursue,1,coriolanus,1607 fen,1,coriolanus,1607 defender,1,coriolanus,1607 ministers,1,coriolanus,1607 cheque,1,coriolanus,1607 reinforcement,1,coriolanus,1607 behavior,1,coriolanus,1607 sanctuary,1,coriolanus,1607 Contend,1,coriolanus,1607 Scars,1,coriolanus,1607 visited,1,coriolanus,1607 Action,1,coriolanus,1607 token,1,coriolanus,1607 broil,1,coriolanus,1607 conversation,1,coriolanus,1607 foundation,1,coriolanus,1607 Content,1,coriolanus,1607 ridiculous,1,coriolanus,1607 bountiful,1,coriolanus,1607 crueller,1,coriolanus,1607 thwartings,1,coriolanus,1607 enjoy,1,coriolanus,1607 Art,1,coriolanus,1607 strongest,1,coriolanus,1607 merrier,1,coriolanus,1607 moves,1,coriolanus,1607 distributed,1,coriolanus,1607 consumed,1,coriolanus,1607 throw't,1,coriolanus,1607 requited,1,coriolanus,1607 Between,1,coriolanus,1607 watch,1,coriolanus,1607 yesterday,1,coriolanus,1607 Usher,1,coriolanus,1607 roof,1,coriolanus,1607 lean,1,coriolanus,1607 particularly,1,coriolanus,1607 elected,1,coriolanus,1607 Agrippa,1,coriolanus,1607 scabs,1,coriolanus,1607 calved,1,coriolanus,1607 Kill,1,coriolanus,1607 occasion,1,coriolanus,1607 consulships,1,coriolanus,1607 tried,1,coriolanus,1607 spritely,1,coriolanus,1607 palms,1,coriolanus,1607 effected,1,coriolanus,1607 'Death,1,coriolanus,1607 smother'd,1,coriolanus,1607 trier,1,coriolanus,1607 Madam,1,coriolanus,1607 Shout,1,coriolanus,1607 Lycurguses,1,coriolanus,1607 mask'd,1,coriolanus,1607 destiny,1,coriolanus,1607 expected,1,coriolanus,1607 Grecian,1,coriolanus,1607 suck'dst,1,coriolanus,1607 maid,1,coriolanus,1607 ballad,1,coriolanus,1607 requital,1,coriolanus,1607 rank,1,coriolanus,1607 Spoke,1,coriolanus,1607 canker'd,1,coriolanus,1607 nations,1,coriolanus,1607 mutiners,1,coriolanus,1607 apprehension,1,coriolanus,1607 enmity's,1,coriolanus,1607 mischief,1,coriolanus,1607 antique,1,coriolanus,1607 clamour,1,coriolanus,1607 scape,1,coriolanus,1607 Misguide,1,coriolanus,1607 rapt,1,coriolanus,1607 retired,1,coriolanus,1607 faction,1,coriolanus,1607 couldst,1,coriolanus,1607 distance,1,coriolanus,1607 unburnt,1,coriolanus,1607 triumphant,1,coriolanus,1607 retires,1,coriolanus,1607 built,1,coriolanus,1607 'longs,1,coriolanus,1607 pawn'd,1,coriolanus,1607 incapable,1,coriolanus,1607 nourish,1,coriolanus,1607 unknown,1,coriolanus,1607 darts,1,coriolanus,1607 repose,1,coriolanus,1607 fourth,1,coriolanus,1607 omit,1,coriolanus,1607 rooted,1,coriolanus,1607 apply,1,coriolanus,1607 suppliants,1,coriolanus,1607 contains,1,coriolanus,1607 Back,1,coriolanus,1607 caparison,1,coriolanus,1607 pretext,1,coriolanus,1607 beast,1,coriolanus,1607 retreat,1,coriolanus,1607 rare,1,coriolanus,1607 trencher,1,coriolanus,1607 waked,1,coriolanus,1607 strucken,1,coriolanus,1607 occupation,1,coriolanus,1607 salter,1,coriolanus,1607 pates,1,coriolanus,1607 locks,1,coriolanus,1607 acting,1,coriolanus,1607 Believe't,1,coriolanus,1607 gosling,1,coriolanus,1607 mulled,1,coriolanus,1607 noon,1,coriolanus,1607 guider,1,coriolanus,1607 'Brutus,1,coriolanus,1607 guided,1,coriolanus,1607 distribute,1,coriolanus,1607 deserving,1,coriolanus,1607 rove,1,coriolanus,1607 lonely,1,coriolanus,1607 major,1,coriolanus,1607 indifferently,1,coriolanus,1607 'Thou,1,coriolanus,1607 conveyances,1,coriolanus,1607 hatching,1,coriolanus,1607 temperance,1,coriolanus,1607 hint,1,coriolanus,1607 donation,1,coriolanus,1607 evade,1,coriolanus,1607 prank,1,coriolanus,1607 remedy,1,coriolanus,1607 affrights,1,coriolanus,1607 fester,1,coriolanus,1607 glean,1,coriolanus,1607 bravely,1,coriolanus,1607 estate,1,coriolanus,1607 leasing,1,coriolanus,1607 faint,1,coriolanus,1607 companions,1,coriolanus,1607 traitors,1,coriolanus,1607 Six,1,coriolanus,1607 year,1,coriolanus,1607 'Sicinius,1,coriolanus,1607 banners,1,coriolanus,1607 Alack,1,coriolanus,1607 admitting,1,coriolanus,1607 kneels,1,coriolanus,1607 austerity,1,coriolanus,1607 descended,1,coriolanus,1607 sirrah,1,coriolanus,1607 burrows,1,coriolanus,1607 bottom,1,coriolanus,1607 dangers,1,coriolanus,1607 admire,1,coriolanus,1607 glasses,1,coriolanus,1607 She,1,coriolanus,1607 fails,1,coriolanus,1607 Soft,1,coriolanus,1607 restrain,1,coriolanus,1607 chase,1,coriolanus,1607 rectorship,1,coriolanus,1607 thankless,1,coriolanus,1607 Intends,1,coriolanus,1607 written,1,coriolanus,1607 rougher,1,coriolanus,1607 posterity,1,coriolanus,1607 citizen,1,coriolanus,1607 perused,1,coriolanus,1607 visage,1,coriolanus,1607 Sit,1,coriolanus,1607 admit,1,coriolanus,1607 alter,1,coriolanus,1607 All's,1,coriolanus,1607 sticks,1,coriolanus,1607 pleasers,1,coriolanus,1607 allaying,1,coriolanus,1607 contrariety,1,coriolanus,1607 quickly,1,coriolanus,1607 begging,1,coriolanus,1607 Further,1,coriolanus,1607 Lose,1,coriolanus,1607 counsellor,1,coriolanus,1607 who's,1,coriolanus,1607 napless,1,coriolanus,1607 springs,1,coriolanus,1607 ordinance,1,coriolanus,1607 orange,1,coriolanus,1607 charters,1,coriolanus,1607 scars,1,coriolanus,1607 Trail,1,coriolanus,1607 defective,1,coriolanus,1607 crammed,1,coriolanus,1607 freely,1,coriolanus,1607 scarf,1,coriolanus,1607 mouse,1,coriolanus,1607 Thyself,1,coriolanus,1607 Convenient,1,coriolanus,1607 precious,1,coriolanus,1607 grateful,1,coriolanus,1607 ensuing,1,coriolanus,1607 placed,1,coriolanus,1607 foxship,1,coriolanus,1607 mourn,1,coriolanus,1607 freedoms,1,coriolanus,1607 Thrusts,1,coriolanus,1607 inform'd,1,coriolanus,1607 sigh'd,1,coriolanus,1607 spurn,1,coriolanus,1607 fragments,1,coriolanus,1607 Tying,1,coriolanus,1607 graceful,1,coriolanus,1607 articulate,1,coriolanus,1607 elsewhere,1,coriolanus,1607 grandchild,1,coriolanus,1607 milk,1,coriolanus,1607 Slain,1,coriolanus,1607 Long,1,coriolanus,1607 charitable,1,coriolanus,1607 Unmuffling,1,coriolanus,1607 varlet,1,coriolanus,1607 stride,1,coriolanus,1607 Hector's,1,coriolanus,1607 Regard,1,coriolanus,1607 probable,1,coriolanus,1607 stars,1,coriolanus,1607 'It,1,coriolanus,1607 saving,1,coriolanus,1607 shreds,1,coriolanus,1607 knave,1,coriolanus,1607 kisses,1,coriolanus,1607 Presented,1,coriolanus,1607 pricking,1,coriolanus,1607 bosoms,1,coriolanus,1607 stitchery,1,coriolanus,1607 foolish,1,coriolanus,1607 robbery,1,coriolanus,1607 paltering,1,coriolanus,1607 Mark'd,1,coriolanus,1607 purposed,1,coriolanus,1607 unvulnerable,1,coriolanus,1607 Rebell'd,1,coriolanus,1607 silenced,1,coriolanus,1607 male,1,coriolanus,1607 dregs,1,coriolanus,1607 Ladders,1,coriolanus,1607 fortnight,1,coriolanus,1607 merrily,1,coriolanus,1607 humorous,1,coriolanus,1607 confidence,1,coriolanus,1607 anvil,1,coriolanus,1607 wrought,1,coriolanus,1607 process,1,coriolanus,1607 chair,1,coriolanus,1607 mantled,1,coriolanus,1607 chain,1,coriolanus,1607 hereditary,1,coriolanus,1607 covets,1,coriolanus,1607 insolent,1,coriolanus,1607 quaked,1,coriolanus,1607 bolted,1,coriolanus,1607 beach,1,coriolanus,1607 coy'd,1,coriolanus,1607 egg,1,coriolanus,1607 woolvish,1,coriolanus,1607 dearest,1,coriolanus,1607 partake,1,coriolanus,1607 'Do,1,coriolanus,1607 tenth,1,coriolanus,1607 contradiction,1,coriolanus,1607 onward,1,coriolanus,1607 tartness,1,coriolanus,1607 Shouts,1,coriolanus,1607 coward,1,coriolanus,1607 Scratches,1,coriolanus,1607 Tarquins,1,coriolanus,1607 maliciously,1,coriolanus,1607 persuaded,1,coriolanus,1607 foil'd,1,coriolanus,1607 raiment,1,coriolanus,1607 Honour,1,coriolanus,1607 coverture,1,coriolanus,1607 conduits,1,coriolanus,1607 achieve,1,coriolanus,1607 forsook,1,coriolanus,1607 disadvantage,1,coriolanus,1607 because,1,coriolanus,1607 wow,1,coriolanus,1607 quoth,1,coriolanus,1607 leader,1,coriolanus,1607 judgments,1,coriolanus,1607 revengeful,1,coriolanus,1607 greatest,1,coriolanus,1607 painful,1,coriolanus,1607 conspectuities,1,coriolanus,1607 entombed,1,coriolanus,1607 beside,1,coriolanus,1607 rumourer,1,coriolanus,1607 shoulder,1,coriolanus,1607 thief,1,coriolanus,1607 fundamental,1,coriolanus,1607 auger's,1,coriolanus,1607 miss,1,coriolanus,1607 using,1,coriolanus,1607 arch,1,coriolanus,1607 seal'd,1,coriolanus,1607 fish,1,coriolanus,1607 threatening,1,coriolanus,1607 brethren,1,coriolanus,1607 Lead'st,1,coriolanus,1607 abed,1,coriolanus,1607 dishonours,1,coriolanus,1607 accompanied,1,coriolanus,1607 discharge,1,coriolanus,1607 naught,1,coriolanus,1607 pother,1,coriolanus,1607 heaviest,1,coriolanus,1607 rive,1,coriolanus,1607 parent,1,coriolanus,1607 apart,1,coriolanus,1607 uttered,1,coriolanus,1607 accusation,1,coriolanus,1607 letters,1,coriolanus,1607 cobbled,1,coriolanus,1607 one's,1,coriolanus,1607 thigh,1,coriolanus,1607 mockery,1,coriolanus,1607 storehouse,1,coriolanus,1607 Tickled,1,coriolanus,1607 navel,1,coriolanus,1607 disguised,1,coriolanus,1607 stake,1,coriolanus,1607 division,1,coriolanus,1607 Perhaps,1,coriolanus,1607 thorough,1,coriolanus,1607 living,1,coriolanus,1607 stain,1,coriolanus,1607 knaves',1,coriolanus,1607 mockers,1,coriolanus,1607 milder,1,coriolanus,1607 Wert,1,coriolanus,1607 breed,1,coriolanus,1607 oaks,1,coriolanus,1607 shorten'd,1,coriolanus,1607 trembling,1,coriolanus,1607 mountebank,1,coriolanus,1607 affairs,1,coriolanus,1607 begged,1,coriolanus,1607 maids,1,coriolanus,1607 troublesome,1,coriolanus,1607 unsever'd,1,coriolanus,1607 'Twixt,1,coriolanus,1607 renown,1,coriolanus,1607 dignifies,1,coriolanus,1607 adversely,1,coriolanus,1607 sow'd,1,coriolanus,1607 leanness,1,coriolanus,1607 example,1,coriolanus,1607 Scaling,1,coriolanus,1607 flies,1,coriolanus,1607 stale,1,coriolanus,1607 salt,1,coriolanus,1607 pound,1,coriolanus,1607 rogues,1,coriolanus,1607 preservative,1,coriolanus,1607 'My,1,coriolanus,1607 fittest,1,coriolanus,1607 Friends,1,coriolanus,1607 sided,1,coriolanus,1607 Look'd,1,coriolanus,1607 Confess,1,coriolanus,1607 Run,1,coriolanus,1607 Twice,1,coriolanus,1607 disdains,1,coriolanus,1607 Galen,1,coriolanus,1607 mutable,1,coriolanus,1607 thoroughly,1,coriolanus,1607 'Twill,1,coriolanus,1607 recomforted,1,coriolanus,1607 ostler,1,coriolanus,1607 court,1,coriolanus,1607 curb,1,coriolanus,1607 Aged,1,coriolanus,1607 receipt,1,coriolanus,1607 relieved,1,coriolanus,1607 envying,1,coriolanus,1607 bread,1,coriolanus,1607 confined,1,coriolanus,1607 knife,1,coriolanus,1607 establish'd,1,coriolanus,1607 fetch,1,coriolanus,1607 Blush,1,coriolanus,1607 devour'd,1,coriolanus,1607 annals,1,coriolanus,1607 thrives,1,coriolanus,1607 gan,1,coriolanus,1607 obeys,1,coriolanus,1607 gap,1,coriolanus,1607 harlot's,1,coriolanus,1607 beastly,1,coriolanus,1607 Throng,1,coriolanus,1607 fielded,1,coriolanus,1607 pertinent,1,coriolanus,1607 manifest,1,coriolanus,1607 waking,1,coriolanus,1607 meaner,1,coriolanus,1607 icicle,1,coriolanus,1607 walks,1,coriolanus,1607 files,1,coriolanus,1607 heaps,1,coriolanus,1607 Saw,1,coriolanus,1607 heapt,1,coriolanus,1607 flight,1,coriolanus,1607 Speed,1,coriolanus,1607 unmusical,1,coriolanus,1607 Sham,1,coriolanus,1607 Insisting,1,coriolanus,1607 vouches,1,coriolanus,1607 Servingmen,1,coriolanus,1607 death's,1,coriolanus,1607 integrity,1,coriolanus,1607 aptness,1,coriolanus,1607 refuge,1,coriolanus,1607 senate's,1,coriolanus,1607 maims,1,coriolanus,1607 flint,1,coriolanus,1607 official,1,coriolanus,1607 decrees,1,coriolanus,1607 returning,1,coriolanus,1607 scarr'd,1,coriolanus,1607 wiping,1,coriolanus,1607 issued,1,coriolanus,1607 invincible,1,coriolanus,1607 Dian's,1,coriolanus,1607 defying,1,coriolanus,1607 Numa's,1,coriolanus,1607 decreed,1,coriolanus,1607 'We,1,coriolanus,1607 issues,1,coriolanus,1607 called,1,coriolanus,1607 'True,1,coriolanus,1607 sinews,1,coriolanus,1607 accomplish,1,coriolanus,1607 'The,1,coriolanus,1607 stick,1,coriolanus,1607 Shed,1,coriolanus,1607 earnest,1,coriolanus,1607 stage,1,coriolanus,1607 hurried,1,coriolanus,1607 imperfect,1,coriolanus,1607 spacious,1,coriolanus,1607 Inclinable,1,coriolanus,1607 linger,1,coriolanus,1607 able,1,coriolanus,1607 rise,1,coriolanus,1607 mail'd,1,coriolanus,1607 trusts,1,coriolanus,1607 actors,1,coriolanus,1607 prevail,1,coriolanus,1607 drives,1,coriolanus,1607 hopeless,1,coriolanus,1607 commanded,1,coriolanus,1607 nuptial,1,coriolanus,1607 audience,1,coriolanus,1607 Agreed,1,coriolanus,1607 They've,1,coriolanus,1607 revolts,1,coriolanus,1607 intend,1,coriolanus,1607 fellow's,1,coriolanus,1607 enraged,1,coriolanus,1607 epitome,1,coriolanus,1607 Piercing,1,coriolanus,1607 brother's,1,coriolanus,1607 greetings,1,coriolanus,1607 wanton,1,coriolanus,1607 mules,1,coriolanus,1607 preparing,1,coriolanus,1607 dying,1,coriolanus,1607 Ransoming,1,coriolanus,1607 bedfellow,1,coriolanus,1607 instinct,1,coriolanus,1607 covetous,1,coriolanus,1607 admitted,1,coriolanus,1607 kitchen,1,coriolanus,1607 peradventure,1,coriolanus,1607 brunt,1,coriolanus,1607 supper,1,coriolanus,1607 spectacles,1,coriolanus,1607 spectacled,1,coriolanus,1607 complain,1,coriolanus,1607 women's,1,coriolanus,1607 pounds,1,coriolanus,1607 next,1,coriolanus,1607 stayed,1,coriolanus,1607 pence,1,coriolanus,1607 violentest,1,coriolanus,1607 possess,1,coriolanus,1607 damask,1,coriolanus,1607 notice,1,coriolanus,1607 cluck'd,1,coriolanus,1607 Gives,1,coriolanus,1607 Shalt,1,coriolanus,1607 familiar,1,coriolanus,1607 eaters,1,coriolanus,1607 gladly,1,coriolanus,1607 husbandry,1,coriolanus,1607 divines,1,coriolanus,1607 womb's,1,coriolanus,1607 baseness,1,coriolanus,1607 seize,1,coriolanus,1607 thankfulness,1,coriolanus,1607 darken,1,coriolanus,1607 served,1,coriolanus,1607 morsel,1,coriolanus,1607 dissolved,1,coriolanus,1607 faced,1,coriolanus,1607 butterflies,1,coriolanus,1607 unhearts,1,coriolanus,1607 fallen,1,coriolanus,1607 purest,1,coriolanus,1607 inherent,1,coriolanus,1607 earthly,1,coriolanus,1607 size,1,coriolanus,1607 spleen,1,coriolanus,1607 foreign,1,coriolanus,1607 killing,1,coriolanus,1607 movers,1,coriolanus,1607 inclination,1,coriolanus,1607 compass,1,coriolanus,1607 dumb,1,coriolanus,1607 mammocked,1,coriolanus,1607 wife's,1,coriolanus,1607 haply,1,coriolanus,1607 dislikes,1,coriolanus,1607 rain,1,coriolanus,1607 doings,1,coriolanus,1607 functions,1,coriolanus,1607 Red,1,coriolanus,1607 supple,1,coriolanus,1607 psalteries,1,coriolanus,1607 sewing,1,coriolanus,1607 waters,1,coriolanus,1607 yoke,1,coriolanus,1607 sedition,1,coriolanus,1607 determined,1,coriolanus,1607 Amongst,1,coriolanus,1607 harvest,1,coriolanus,1607 rapture,1,coriolanus,1607 outdares,1,coriolanus,1607 plumes,1,coriolanus,1607 falling,1,coriolanus,1607 unfortunate,1,coriolanus,1607 followers,1,coriolanus,1607 fill'd,1,coriolanus,1607 gifts,1,coriolanus,1607 information,1,coriolanus,1607 unstable,1,coriolanus,1607 minister,1,coriolanus,1607 Whoop'd,1,coriolanus,1607 doubled,1,coriolanus,1607 grieve,1,coriolanus,1607 repined,1,coriolanus,1607 thwack,1,coriolanus,1607 cried,1,coriolanus,1607 evil,1,coriolanus,1607 inkling,1,coriolanus,1607 profane,1,coriolanus,1607 minds,1,coriolanus,1607 had',1,coriolanus,1607 Time,1,coriolanus,1607 cloth,1,coriolanus,1607 Thither,1,coriolanus,1607 highly,1,coriolanus,1607 cautelous,1,coriolanus,1607 polled,1,coriolanus,1607 fob,1,coriolanus,1607 orb,1,coriolanus,1607 article,1,coriolanus,1607 fog,1,coriolanus,1607 cloud,1,coriolanus,1607 hitherward,1,coriolanus,1607 unbuild,1,coriolanus,1607 surcease,1,coriolanus,1607 Quintus,1,coriolanus,1607 cared,1,coriolanus,1607 vaward,1,coriolanus,1607 returns,1,coriolanus,1607 muniments,1,coriolanus,1607 parcels,1,coriolanus,1607 CORIOLANUS'S,1,coriolanus,1607 fins,1,coriolanus,1607 multiplying,1,coriolanus,1607 tune,1,coriolanus,1607 fane,1,coriolanus,1607 Reports,1,coriolanus,1607 Call't,1,coriolanus,1607 worthiness,1,coriolanus,1607 fighting,1,coriolanus,1607 caution,1,coriolanus,1607 prattling,1,coriolanus,1607 unjust,1,coriolanus,1607 Sweet,1,coriolanus,1607 Deny,1,coriolanus,1607 restrain'd,1,coriolanus,1607 minute,1,coriolanus,1607 vow,1,coriolanus,1607 fill,1,coriolanus,1607 safety,1,coriolanus,1607 trident,1,coriolanus,1607 task'd,1,coriolanus,1607 punish'd,1,coriolanus,1607 channel,1,coriolanus,1607 smote,1,coriolanus,1607 horn,1,coriolanus,1607 Beats,1,coriolanus,1607 Fast,1,coriolanus,1607 incorporate,1,coriolanus,1607 married,1,coriolanus,1607 barm,1,coriolanus,1607 Near,1,coriolanus,1607 duties,1,coriolanus,1607 pinn'd,1,coriolanus,1607 notion,1,coriolanus,1607 exposture,1,coriolanus,1607 wide,1,coriolanus,1607 Unto,1,coriolanus,1607 worship,1,coriolanus,1607 pocket,1,coriolanus,1607 ostentation,1,coriolanus,1607 bite,1,coriolanus,1607 Mother,1,coriolanus,1607 herself,1,coriolanus,1607 wealth,1,coriolanus,1607 fawn,1,coriolanus,1607 poison'd,1,coriolanus,1607 queen,1,coriolanus,1607 butcher,1,coriolanus,1607 Constrains,1,coriolanus,1607 cloven,1,coriolanus,1607 Bears,1,coriolanus,1607 beware,1,coriolanus,1607 Beneath,1,coriolanus,1607 counterpoised,1,coriolanus,1607 Thank,1,coriolanus,1607 bath,1,coriolanus,1607 lived,1,coriolanus,1607 bate,1,coriolanus,1607 whither,1,coriolanus,1607 'Good,1,coriolanus,1607 traitorous,1,coriolanus,1607 microcosm,1,coriolanus,1607 forenoon,1,coriolanus,1607 gilded,1,coriolanus,1607 dastard,1,coriolanus,1607 waved,1,coriolanus,1607 nervy,1,coriolanus,1607 triumphantly,1,coriolanus,1607 gratitude,1,coriolanus,1607 trumpeter,1,coriolanus,1607 kick'd,1,coriolanus,1607 Cut,1,coriolanus,1607 ditch,1,coriolanus,1607 speak't,1,coriolanus,1607 grapes,1,coriolanus,1607 Wednesday,1,coriolanus,1607 motive,1,coriolanus,1607 hoot,1,coriolanus,1607 tame,1,coriolanus,1607 weakness,1,coriolanus,1607 tabour,1,coriolanus,1607 names,1,coriolanus,1607 dam,1,coriolanus,1607 lenity,1,coriolanus,1607 conveying,1,coriolanus,1607 prefer,1,coriolanus,1607 freshest,1,coriolanus,1607 dismay'd,1,coriolanus,1607 fare,1,coriolanus,1607 converses,1,coriolanus,1607 surly,1,coriolanus,1607 crafted,1,coriolanus,1607 meets,1,coriolanus,1607 feeble,1,coriolanus,1607 author,1,coriolanus,1607 soul's,1,coriolanus,1607 shepherd,1,coriolanus,1607 ally,1,coriolanus,1607 empoison'd,1,coriolanus,1607 o'erwhelm,1,coriolanus,1607 accusers,1,coriolanus,1607 Destroy,1,coriolanus,1607 complaint,1,coriolanus,1607 vented,1,coriolanus,1607 arm'd,1,coriolanus,1607 'Sdeath,1,coriolanus,1607 feebly,1,coriolanus,1607 falsely,1,coriolanus,1607 Consul,1,coriolanus,1607 scented,1,coriolanus,1607 gentlemen,1,coriolanus,1607 cup,1,coriolanus,1607 appearance,1,coriolanus,1607 high'st,1,coriolanus,1607 otherwise,1,coriolanus,1607 deliberate,1,coriolanus,1607 unwise,1,coriolanus,1607 shops,1,coriolanus,1607 folds,1,coriolanus,1607 impress'd,1,coriolanus,1607 Assist,1,coriolanus,1607 madst,1,coriolanus,1607 asunder,1,coriolanus,1607 mothers,1,coriolanus,1607 reproof,1,coriolanus,1607 distribution,1,coriolanus,1607 bewail,1,coriolanus,1607 sights,1,coriolanus,1607 Worth,1,coriolanus,1607 Volscians',1,coriolanus,1607 apron,1,coriolanus,1607 voluptuously,1,coriolanus,1607 freelier,1,coriolanus,1607 Requires,1,coriolanus,1607 bigger,1,coriolanus,1607 hyperbolical,1,coriolanus,1607 quit,1,coriolanus,1607 Officious,1,coriolanus,1607 moths,1,coriolanus,1607 darken'd,1,coriolanus,1607 Dreamt,1,coriolanus,1607 greet,1,coriolanus,1607 stand'st,1,coriolanus,1607 unknit,1,coriolanus,1607 pupil,1,coriolanus,1607 cur,1,coriolanus,1607 giddy,1,coriolanus,1607 Although,1,coriolanus,1607 survivor,1,coriolanus,1607 defect,1,coriolanus,1607 ranges,1,coriolanus,1607 feasts,1,coriolanus,1607 Who's,1,coriolanus,1607 counterfeit,1,coriolanus,1607 spices,1,coriolanus,1607 ripest,1,coriolanus,1607 Afric,1,coriolanus,1607 cowards,1,coriolanus,1607 plebeii,1,coriolanus,1607 loyal,1,coriolanus,1607 assist,1,coriolanus,1607 carcasses,1,coriolanus,1607 controll'd,1,coriolanus,1607 tire,1,coriolanus,1607 condemn,1,coriolanus,1607 fronts,1,coriolanus,1607 Fool,1,coriolanus,1607 forsooth,1,coriolanus,1607 flood,1,coriolanus,1607 sourly,1,coriolanus,1607 commonwealth,1,coriolanus,1607 state's,1,coriolanus,1607 horses,1,coriolanus,1607 writing,1,coriolanus,1607 wondering,1,coriolanus,1607 resolution,1,coriolanus,1607 Wherefore,1,coriolanus,1607 tauntingly,1,coriolanus,1607 smilingly,1,coriolanus,1607 horsed,1,coriolanus,1607 agued,1,coriolanus,1607 buttock,1,coriolanus,1607 bits,1,coriolanus,1607 favours,1,coriolanus,1607 conjure,1,coriolanus,1607 schoolboys',1,coriolanus,1607 inherited,1,coriolanus,1607 puling,1,coriolanus,1607 convenient,1,coriolanus,1607 abilities,1,coriolanus,1607 Holloa,1,coriolanus,1607 Seize,1,coriolanus,1607 surer,1,coriolanus,1607 Anon,1,coriolanus,1607 disclaim,1,coriolanus,1607 inevitable,1,coriolanus,1607 dissension,1,coriolanus,1607 approved,1,coriolanus,1607 have't,1,coriolanus,1607 Marcians,1,coriolanus,1607 seat,1,coriolanus,1607 adopt,1,coriolanus,1607 rigorous,1,coriolanus,1607 Served,1,coriolanus,1607 elements,1,coriolanus,1607 cool,1,coriolanus,1607 Adrian,1,coriolanus,1607 lying,1,coriolanus,1607 vexation,1,coriolanus,1607 sours,1,coriolanus,1607 favour'd,1,coriolanus,1607 examples,1,coriolanus,1607 low,1,coriolanus,1607 deepest,1,coriolanus,1607 contagion,1,coriolanus,1607 acts,1,coriolanus,1607 remission,1,coriolanus,1607 sinking,1,coriolanus,1607 palsied,1,coriolanus,1607 baby,1,coriolanus,1607 crept,1,coriolanus,1607 Right,1,coriolanus,1607 weep'st,1,coriolanus,1607 pronounced,1,coriolanus,1607 knowest,1,coriolanus,1607 Clapp'd,1,coriolanus,1607 fights,1,coriolanus,1607 talking,1,coriolanus,1607 presence,1,coriolanus,1607 Spies,1,coriolanus,1607 nerves,1,coriolanus,1607 progeny,1,coriolanus,1607 unkindness,1,coriolanus,1607 Lie,1,coriolanus,1607 marvellous,1,coriolanus,1607 Ne'er,1,coriolanus,1607 discretion,1,coriolanus,1607 camest,1,coriolanus,1607 lapsing,1,coriolanus,1607 understood,1,coriolanus,1607 burned,1,coriolanus,1607 conclude,1,coriolanus,1607 tells,1,coriolanus,1607 prudent,1,coriolanus,1607 select,1,coriolanus,1607 handkerchers,1,coriolanus,1607 liking,1,coriolanus,1607 On's,1,coriolanus,1607 urn,1,coriolanus,1607 tidings,1,coriolanus,1607 Patience,1,coriolanus,1607 coxcombs,1,coriolanus,1607 hound,1,coriolanus,1607 cote,1,coriolanus,1607 crest,1,coriolanus,1607 Ingrate,1,coriolanus,1607 counsell'd,1,coriolanus,1607 Suffer't,1,coriolanus,1607 vassals,1,coriolanus,1607 'Fine,1,coriolanus,1607 percussion,1,coriolanus,1607 censor,1,coriolanus,1607 Killing,1,coriolanus,1607 needless,1,coriolanus,1607 Seal,1,coriolanus,1607 Dick,1,coriolanus,1607 confirm'd,1,coriolanus,1607 Dissentious,1,coriolanus,1607 'Marcius,1,coriolanus,1607 entangled,1,coriolanus,1607 He'ld,1,coriolanus,1607 'twill,1,coriolanus,1607 hostages,1,coriolanus,1607 Plaster,1,coriolanus,1607 Repeal,1,coriolanus,1607 pout,1,coriolanus,1607 downright,1,coriolanus,1607 chests,1,coriolanus,1607 Fillip,1,coriolanus,1607 generals,1,coriolanus,1607 goat,1,coriolanus,1607 entreat,1,coriolanus,1607 tradesmen,1,coriolanus,1607 'Tribunes,1,coriolanus,1607 judicious,1,coriolanus,1607 prayer,1,coriolanus,1607 countenances,1,coriolanus,1607 remove,1,coriolanus,1607 franchises,1,coriolanus,1607 gusts,1,coriolanus,1607 self,1,coriolanus,1607 seld,1,coriolanus,1607 fairly,1,coriolanus,1607 according,1,coriolanus,1607 Cry,1,coriolanus,1607 tide,1,coriolanus,1607 capacity,1,coriolanus,1607 millions,1,coriolanus,1607 work's,1,coriolanus,1607 post,1,coriolanus,1607 bale,1,coriolanus,1607 water'd,1,coriolanus,1607 oppose,1,coriolanus,1607 Sigh'd,1,coriolanus,1607 leg,1,coriolanus,1607 prison,1,coriolanus,1607 hooting,1,coriolanus,1607 glowing,1,coriolanus,1607 roaring,1,coriolanus,1607 Neither,1,coriolanus,1607 undo,1,coriolanus,1607 Self,1,coriolanus,1607 grieves,1,coriolanus,1607 remote,1,coriolanus,1607 skull,1,coriolanus,1607 talk'd,1,coriolanus,1607 remedies,1,coriolanus,1607 Opinion,1,coriolanus,1607 dogg'd,1,coriolanus,1607 herald,1,coriolanus,1607 camels,1,coriolanus,1607 Ithaca,1,coriolanus,1607 limitation,1,coriolanus,1607 insensible,1,coriolanus,1607 barren,1,coriolanus,1607 statue,1,coriolanus,1607 fearing,1,coriolanus,1607 embassies,1,coriolanus,1607 countryman,1,coriolanus,1607 Cleave,1,coriolanus,1607 Following,1,coriolanus,1607 commonalty,1,coriolanus,1607 match,1,coriolanus,1607 baes,1,coriolanus,1607 ushers,1,coriolanus,1607 blast,1,coriolanus,1607 Triton,1,coriolanus,1607 aches,1,coriolanus,1607 'your,1,coriolanus,1607 Cog,1,coriolanus,1607 methought,1,coriolanus,1607 safer,1,coriolanus,1607 bonnet,1,coriolanus,1607 raying,1,coriolanus,1607 participate,1,coriolanus,1607 sincerely,1,coriolanus,1607 crooked,1,coriolanus,1607 unchilded,1,coriolanus,1607 until,1,coriolanus,1607 triumph,1,coriolanus,1607 parcel,1,coriolanus,1607 Manifest,1,coriolanus,1607 endures,1,coriolanus,1607 thread,1,coriolanus,1607 laws,1,coriolanus,1607 regarded,1,coriolanus,1607 commons',1,coriolanus,1607 choke,1,coriolanus,1607 achieving,1,coriolanus,1607 capitulate,1,coriolanus,1607 requested,1,coriolanus,1607 'Forgive,1,coriolanus,1607 persuade,1,coriolanus,1607 Preoccupied,1,coriolanus,1607 senator,1,coriolanus,1607 vouch'd,1,coriolanus,1607 reprieve,1,coriolanus,1607 Coriolanus',1,coriolanus,1607 litter'd,1,coriolanus,1607 mad,1,coriolanus,1607 abhorring,1,coriolanus,1607 write,1,coriolanus,1607 map,1,coriolanus,1607 mar,1,coriolanus,1607 Tread,1,coriolanus,1607 clouds,1,coriolanus,1607 spirits,1,coriolanus,1607 confound,1,coriolanus,1607 fiends,1,coriolanus,1607 limbs,1,coriolanus,1607 barr'd,1,coriolanus,1607 starts,1,coriolanus,1607 Places,1,coriolanus,1607 volume,1,coriolanus,1607 debase,1,coriolanus,1607 nourish'd,1,coriolanus,1607 encounters,1,coriolanus,1607 Ancus,1,coriolanus,1607 threes,1,coriolanus,1607 pray'd,1,coriolanus,1607 conn'd,1,coriolanus,1607 spite,1,coriolanus,1607 disposing,1,coriolanus,1607 comfortable,1,coriolanus,1607 mercenary,1,coriolanus,1607 temporized,1,coriolanus,1607 Towards,1,coriolanus,1607 conduct,1,coriolanus,1607 unlike,1,coriolanus,1607 rheum,1,coriolanus,1607 cement,1,coriolanus,1607 smiling,1,coriolanus,1607 reward,1,coriolanus,1607 quired,1,coriolanus,1607 impossibility,1,coriolanus,1607 correcting,1,coriolanus,1607 Upbraid's,1,coriolanus,1607 leash,1,coriolanus,1607 spits,1,coriolanus,1607 dismiss'd,1,coriolanus,1607 compounded,1,coriolanus,1607 chastely,1,coriolanus,1607 inferior,1,coriolanus,1607 Sometime,1,coriolanus,1607 sister,1,coriolanus,1607 banishers,1,coriolanus,1607 mournfully,1,coriolanus,1607 headed,1,coriolanus,1607 breaker,1,coriolanus,1607 lurk'd,1,coriolanus,1607 decayed,1,coriolanus,1607 trim,1,coriolanus,1607 disciplined,1,coriolanus,1607 maker,1,coriolanus,1607 ounce,1,coriolanus,1607 readiness,1,coriolanus,1607 grafted,1,coriolanus,1607 proudlier,1,coriolanus,1607 stirrup,1,coriolanus,1607 sovereign,1,coriolanus,1607 unscann'd,1,coriolanus,1607 'Patricians,1,coriolanus,1607 rights,1,coriolanus,1607 lectures,1,coriolanus,1607 scornfully,1,coriolanus,1607 verified,1,coriolanus,1607 burnt,1,coriolanus,1607 hares,1,coriolanus,1607 assuage,1,coriolanus,1607 ravisher,1,coriolanus,1607 recreant,1,coriolanus,1607 Assemble,1,coriolanus,1607 envied,1,coriolanus,1607 Enters,1,coriolanus,1607 fled,1,coriolanus,1607 thinking,1,coriolanus,1607 Junius,1,coriolanus,1607 blended,1,coriolanus,1607 Twelve,1,coriolanus,1607 hastily,1,coriolanus,1607 eleven,1,coriolanus,1607 sauced,1,coriolanus,1607 'Welcome,1,coriolanus,1607 crafts,1,coriolanus,1607 spire,1,coriolanus,1607 withdraw,1,coriolanus,1607 southward,1,coriolanus,1607 chats,1,coriolanus,1607 lion,1,coriolanus,1607 pages,1,coriolanus,1607 captives,1,coriolanus,1607 forgetfulness,1,coriolanus,1607 Bastards,1,coriolanus,1607 Pushes,1,coriolanus,1607 mourning,1,coriolanus,1607 o'erbear,1,coriolanus,1607 petitionary,1,coriolanus,1607 grains,1,coriolanus,1607 telling,1,coriolanus,1607 afflicts,1,coriolanus,1607 sometimes,1,coriolanus,1607 terror,1,coriolanus,1607 petition'd,1,coriolanus,1607 eunuch,1,coriolanus,1607 cymbals,1,coriolanus,1607 lethargy,1,coriolanus,1607 peck,1,coriolanus,1607 humanely,1,coriolanus,1607 homes,1,coriolanus,1607 synod,1,coriolanus,1607 Man,1,coriolanus,1607 flaw,1,coriolanus,1607 flag,1,coriolanus,1607 parasite's,1,coriolanus,1607 tenderness,1,coriolanus,1607 Publicola,1,coriolanus,1607 Requite,1,coriolanus,1607 sackbuts,1,coriolanus,1607 highway,1,coriolanus,1607 fitness,1,coriolanus,1607 keepers,1,coriolanus,1607 throwing,1,coriolanus,1607 manifests,1,coriolanus,1607 Done,1,coriolanus,1607 muffled,1,coriolanus,1607 customary,1,coriolanus,1607 fright,1,coriolanus,1607 Reason,1,coriolanus,1607 notched,1,coriolanus,1607 peer,1,coriolanus,1607 recompense,1,coriolanus,1607 levies,1,coriolanus,1607 Without,1,coriolanus,1607 peep,1,coriolanus,1607 besides,1,coriolanus,1607 silver,1,coriolanus,1607 Olympus,1,coriolanus,1607 howbeit,1,coriolanus,1607 Hecuba,1,coriolanus,1607 o'erwhelm'd,1,coriolanus,1607 breaking,1,coriolanus,1607 nurse's,1,coriolanus,1607 lovelier,1,coriolanus,1607 become't,1,coriolanus,1607 bonneted,1,coriolanus,1607 contemn,1,coriolanus,1607 entreaty,1,coriolanus,1607 barking,1,coriolanus,1607 follow'd,1,coriolanus,1607 windows,1,coriolanus,1607 dislodged,1,coriolanus,1607 urged,1,coriolanus,1607 simply,1,coriolanus,1607 cupboarding,1,coriolanus,1607 viperous,1,coriolanus,1607 shade,1,coriolanus,1607 transported,1,coriolanus,1607 frank,1,coriolanus,1607 Therein,1,coriolanus,1607 sentence,1,coriolanus,1607 entrance,1,coriolanus,1607 cornets,1,coriolanus,1607 risen,1,coriolanus,1607 earned,1,coriolanus,1607 innovator,1,coriolanus,1607 tackle's,1,coriolanus,1607 hardening,1,coriolanus,1607 complainings,1,coriolanus,1607 Tie,1,coriolanus,1607 brag,1,coriolanus,1607 inventory,1,coriolanus,1607 laid,1,coriolanus,1607 confirm,1,coriolanus,1607 provide,1,coriolanus,1607 corrected,1,coriolanus,1607 Prosperity,1,coriolanus,1607 pebbles,1,coriolanus,1607 harsh,1,coriolanus,1607 matrons,1,coriolanus,1607 confine,1,coriolanus,1607 Conjectural,1,coriolanus,1607 with's,1,coriolanus,1607 princely,1,coriolanus,1607 dark,1,coriolanus,1607 needer,1,coriolanus,1607 occupations,1,coriolanus,1607 Commands,1,coriolanus,1607 precepts,1,coriolanus,1607 weigh,1,coriolanus,1607 nodding,1,coriolanus,1607 cracking,1,coriolanus,1607 solace,1,coriolanus,1607 Together,1,coriolanus,1607 land,1,coriolanus,1607 catch,1,coriolanus,1607 ha't,1,coriolanus,1607 widens,1,coriolanus,1607 Lets,1,coriolanus,1607 pent,1,coriolanus,1607 assaulted,1,coriolanus,1607 Envied,1,coriolanus,1607 bussing,1,coriolanus,1607 humbler,1,coriolanus,1607 hoping,1,coriolanus,1607 injurious,1,coriolanus,1607 comeliness,1,coriolanus,1607 fellowship,1,coriolanus,1607 hotly,1,coriolanus,1607 unparallel'd,1,coriolanus,1607 dry,1,coriolanus,1607 great'st,1,coriolanus,1607 lame,1,coriolanus,1607 clutch'd,1,coriolanus,1607 needed,1,coriolanus,1607 instantly,1,coriolanus,1607 resting,1,coriolanus,1607 Bring,1,coriolanus,1607 flour,1,coriolanus,1607 mature,1,coriolanus,1607 DRAMATIS,1,coriolanus,1607 inches,1,coriolanus,1607 Clambering,1,coriolanus,1607 garlic,1,coriolanus,1607 childishness,1,coriolanus,1607 tie,1,coriolanus,1607 altitude,1,coriolanus,1607 rescue,1,coriolanus,1607 hews,1,coriolanus,1607 physician,1,coriolanus,1607 encountering,1,coriolanus,1607 prerogative,1,coriolanus,1607 vex'd,1,coriolanus,1607 commanding,1,coriolanus,1607 Droop,1,coriolanus,1607 topping,1,coriolanus,1607 rewards,1,coriolanus,1607 lieve,1,coriolanus,1607 gnaw,1,coriolanus,1607 ascent,1,coriolanus,1607 record,1,coriolanus,1607 trees,1,coriolanus,1607 cross,1,coriolanus,1607 stol'n,1,coriolanus,1607 budger,1,coriolanus,1607 contest,1,coriolanus,1607 Tarquin's,1,coriolanus,1607 gentler,1,coriolanus,1607 unapt,1,coriolanus,1607 king,1,coriolanus,1607 'That,1,coriolanus,1607 smelt,1,coriolanus,1607 fusty,1,coriolanus,1607 tinder,1,coriolanus,1607 sithence,1,coriolanus,1607 Direct,1,coriolanus,1607 reconcile,1,coriolanus,1607 slip,1,coriolanus,1607 enormity,1,coriolanus,1607 gloves,1,coriolanus,1607 awake,1,coriolanus,1607 shouting,1,coriolanus,1607 soundly,1,coriolanus,1607 say't,1,coriolanus,1607 Fall,1,coriolanus,1607 charity,1,coriolanus,1607 False,1,coriolanus,1607 garners,1,coriolanus,1607 Tullus',1,coriolanus,1607 striving,1,coriolanus,1607 repair,1,coriolanus,1607 'Peace,1,coriolanus,1607 parley,1,coriolanus,1607 feebling,1,coriolanus,1607 shoes,1,coriolanus,1607 scotched,1,coriolanus,1607 Fame,1,coriolanus,1607 intends,1,coriolanus,1607 Bound,1,coriolanus,1607 overta'en,1,coriolanus,1607 crown,1,coriolanus,1607 selves,1,coriolanus,1607 favouring,1,coriolanus,1607 dissemble,1,coriolanus,1607 blush'd,1,coriolanus,1607 turn'd,1,coriolanus,1607 Holding,1,coriolanus,1607 'They,1,coriolanus,1607 show'st,1,coriolanus,1607 vilely,1,coriolanus,1607 woo'd,1,coriolanus,1607 degrees,1,coriolanus,1607 Weapons,1,coriolanus,1607 dotant,1,coriolanus,1607 ungrateful,1,coriolanus,1607 lads,1,coriolanus,1607 summer,1,coriolanus,1607 malignantly,1,coriolanus,1607 busied,1,coriolanus,1607 holding,2,coriolanus,1607 veil'd,2,coriolanus,1607 advanced,2,coriolanus,1607 authorities,2,coriolanus,1607 forbid,2,coriolanus,1607 instruments,2,coriolanus,1607 staves,2,coriolanus,1607 horns,2,coriolanus,1607 C,2,coriolanus,1607 c,2,coriolanus,1607 smiles,2,coriolanus,1607 ports,2,coriolanus,1607 red,2,coriolanus,1607 extremity,2,coriolanus,1607 for's,2,coriolanus,1607 station,2,coriolanus,1607 double,2,coriolanus,1607 weary,2,coriolanus,1607 wish'd,2,coriolanus,1607 helms,2,coriolanus,1607 especially,2,coriolanus,1607 treasure,2,coriolanus,1607 woman's,2,coriolanus,1607 advantage,2,coriolanus,1607 ran,2,coriolanus,1607 royal,2,coriolanus,1607 brows,2,coriolanus,1607 hasty,2,coriolanus,1607 haste,2,coriolanus,1607 preparation,2,coriolanus,1607 assured,2,coriolanus,1607 rob,2,coriolanus,1607 scene,2,coriolanus,1607 stopp'd,2,coriolanus,1607 road,2,coriolanus,1607 AGRIPPA,2,coriolanus,1607 boys,2,coriolanus,1607 melt,2,coriolanus,1607 hell,2,coriolanus,1607 eight,2,coriolanus,1607 poisonous,2,coriolanus,1607 clusters,2,coriolanus,1607 cursing,2,coriolanus,1607 Either,2,coriolanus,1607 grim,2,coriolanus,1607 honourable,2,coriolanus,1607 looked,2,coriolanus,1607 naked,2,coriolanus,1607 declines,2,coriolanus,1607 drink,2,coriolanus,1607 withal,2,coriolanus,1607 nought,2,coriolanus,1607 soul,2,coriolanus,1607 calls,2,coriolanus,1607 malicious,2,coriolanus,1607 sore,2,coriolanus,1607 pick,2,coriolanus,1607 bowels,2,coriolanus,1607 demand,2,coriolanus,1607 spare,2,coriolanus,1607 saved,2,coriolanus,1607 liar,2,coriolanus,1607 Once,2,coriolanus,1607 After,2,coriolanus,1607 confusion,2,coriolanus,1607 Young,2,coriolanus,1607 sat,2,coriolanus,1607 dance,2,coriolanus,1607 assembly,2,coriolanus,1607 grows,2,coriolanus,1607 pile,2,coriolanus,1607 sennet,2,coriolanus,1607 heat,2,coriolanus,1607 roar'd,2,coriolanus,1607 manacles,2,coriolanus,1607 worthier,2,coriolanus,1607 lift,2,coriolanus,1607 repetition,2,coriolanus,1607 knaves,2,coriolanus,1607 addition,2,coriolanus,1607 veins,2,coriolanus,1607 calamity,2,coriolanus,1607 lesser,2,coriolanus,1607 began,2,coriolanus,1607 partner,2,coriolanus,1607 she's,2,coriolanus,1607 seeking,2,coriolanus,1607 sin,2,coriolanus,1607 Get,2,coriolanus,1607 light,2,coriolanus,1607 worthiest,2,coriolanus,1607 saying,2,coriolanus,1607 Deserves,2,coriolanus,1607 chiefest,2,coriolanus,1607 throne,2,coriolanus,1607 beasts,2,coriolanus,1607 geese,2,coriolanus,1607 scorn,2,coriolanus,1607 fell,2,coriolanus,1607 abused,2,coriolanus,1607 pardons,2,coriolanus,1607 peril,2,coriolanus,1607 Such,2,coriolanus,1607 children's,2,coriolanus,1607 countenance,2,coriolanus,1607 kindle,2,coriolanus,1607 kindly,2,coriolanus,1607 bow'd,2,coriolanus,1607 consul's,2,coriolanus,1607 disgrace,2,coriolanus,1607 necks,2,coriolanus,1607 Music,2,coriolanus,1607 pieces,2,coriolanus,1607 Shouting,2,coriolanus,1607 offence,2,coriolanus,1607 reap,2,coriolanus,1607 wrong,2,coriolanus,1607 points,2,coriolanus,1607 piece,2,coriolanus,1607 Out,2,coriolanus,1607 ways,2,coriolanus,1607 grub,2,coriolanus,1607 direct,2,coriolanus,1607 dieted,2,coriolanus,1607 stoutness,2,coriolanus,1607 actions,2,coriolanus,1607 abhorr'd,2,coriolanus,1607 white,2,coriolanus,1607 swoon,2,coriolanus,1607 tribes,2,coriolanus,1607 Whilst,2,coriolanus,1607 cries,2,coriolanus,1607 sup,2,coriolanus,1607 poorest,2,coriolanus,1607 above,2,coriolanus,1607 bows,2,coriolanus,1607 punish,2,coriolanus,1607 plainly,2,coriolanus,1607 claim,2,coriolanus,1607 blind,2,coriolanus,1607 brief,2,coriolanus,1607 neighbourhood,2,coriolanus,1607 elders,2,coriolanus,1607 upon't,2,coriolanus,1607 corrupt,2,coriolanus,1607 Whereto,2,coriolanus,1607 porter,2,coriolanus,1607 flesh,2,coriolanus,1607 tiger,2,coriolanus,1607 Might,2,coriolanus,1607 Alone,2,coriolanus,1607 mirth,2,coriolanus,1607 length,2,coriolanus,1607 dearer,2,coriolanus,1607 superfluity,2,coriolanus,1607 brand,2,coriolanus,1607 wise,2,coriolanus,1607 anon,2,coriolanus,1607 directly,2,coriolanus,1607 accuse,2,coriolanus,1607 displeasure,2,coriolanus,1607 seem'd,2,coriolanus,1607 pierce,2,coriolanus,1607 wave,2,coriolanus,1607 stop,2,coriolanus,1607 pretty,2,coriolanus,1607 rule,2,coriolanus,1607 wash,2,coriolanus,1607 meal,2,coriolanus,1607 steel,2,coriolanus,1607 ruled,2,coriolanus,1607 'thwack,2,coriolanus,1607 book,2,coriolanus,1607 Repair,2,coriolanus,1607 conquer,2,coriolanus,1607 deserves,2,coriolanus,1607 sick,2,coriolanus,1607 big,2,coriolanus,1607 wherefore,2,coriolanus,1607 nail,2,coriolanus,1607 ha',2,coriolanus,1607 stir,2,coriolanus,1607 solicit,2,coriolanus,1607 burning,2,coriolanus,1607 oaken,2,coriolanus,1607 hat,2,coriolanus,1607 While,2,coriolanus,1607 commons,2,coriolanus,1607 sign,2,coriolanus,1607 exercise,2,coriolanus,1607 'Twere,2,coriolanus,1607 flattery,2,coriolanus,1607 controversy,2,coriolanus,1607 pay,2,coriolanus,1607 showing,2,coriolanus,1607 mutiny,2,coriolanus,1607 Him,2,coriolanus,1607 alarum,2,coriolanus,1607 assault,2,coriolanus,1607 blown,2,coriolanus,1607 JUNIUS,2,coriolanus,1607 Having,2,coriolanus,1607 Dismiss,2,coriolanus,1607 O',2,coriolanus,1607 ladyship,2,coriolanus,1607 cruel,2,coriolanus,1607 unless,2,coriolanus,1607 ingrateful,2,coriolanus,1607 Seventh,2,coriolanus,1607 dreaded,2,coriolanus,1607 to's,2,coriolanus,1607 Her,2,coriolanus,1607 finds,2,coriolanus,1607 wisdom,2,coriolanus,1607 bed,2,coriolanus,1607 digest,2,coriolanus,1607 east,2,coriolanus,1607 bid,2,coriolanus,1607 play,2,coriolanus,1607 stem,2,coriolanus,1607 Condition,2,coriolanus,1607 temples,2,coriolanus,1607 Is't,2,coriolanus,1607 pot,2,coriolanus,1607 monstrous,2,coriolanus,1607 temple,2,coriolanus,1607 dwellest,2,coriolanus,1607 Retires,2,coriolanus,1607 priests,2,coriolanus,1607 gold,2,coriolanus,1607 sits,2,coriolanus,1607 Jove's,2,coriolanus,1607 bury,2,coriolanus,1607 suffer'd,2,coriolanus,1607 difference,2,coriolanus,1607 canon,2,coriolanus,1607 crush,2,coriolanus,1607 MARCUS,2,coriolanus,1607 sounds,2,coriolanus,1607 beyond,2,coriolanus,1607 waving,2,coriolanus,1607 block,2,coriolanus,1607 Tarquin,2,coriolanus,1607 VELUTUS,2,coriolanus,1607 silk,2,coriolanus,1607 despite,2,coriolanus,1607 vows,2,coriolanus,1607 Above,2,coriolanus,1607 preserve,2,coriolanus,1607 divine,2,coriolanus,1607 crack'd,2,coriolanus,1607 stronger,2,coriolanus,1607 sink,2,coriolanus,1607 Whither,2,coriolanus,1607 rejoice,2,coriolanus,1607 stretch,2,coriolanus,1607 Tiber,2,coriolanus,1607 trades,2,coriolanus,1607 crowned,2,coriolanus,1607 foremost,2,coriolanus,1607 bisson,2,coriolanus,1607 continued,2,coriolanus,1607 instant,2,coriolanus,1607 deep,2,coriolanus,1607 flatterers,2,coriolanus,1607 affection,2,coriolanus,1607 wretch,2,coriolanus,1607 confess,2,coriolanus,1607 Cannot,2,coriolanus,1607 continues,2,coriolanus,1607 excellent,2,coriolanus,1607 dispositions,2,coriolanus,1607 Making,2,coriolanus,1607 gain,2,coriolanus,1607 legs,2,coriolanus,1607 stone,2,coriolanus,1607 worthily,2,coriolanus,1607 likely,2,coriolanus,1607 'Fore,2,coriolanus,1607 Return,2,coriolanus,1607 lend,2,coriolanus,1607 destruction,2,coriolanus,1607 nettle,2,coriolanus,1607 accused,2,coriolanus,1607 defence,2,coriolanus,1607 ay,2,coriolanus,1607 privilege,2,coriolanus,1607 manner,2,coriolanus,1607 Enforce,2,coriolanus,1607 supreme,2,coriolanus,1607 door,2,coriolanus,1607 commend,2,coriolanus,1607 bodies,2,coriolanus,1607 idle,2,coriolanus,1607 Myself,2,coriolanus,1607 puff,2,coriolanus,1607 value,2,coriolanus,1607 begg'd,2,coriolanus,1607 impediment,2,coriolanus,1607 offer'd,2,coriolanus,1607 endure,2,coriolanus,1607 la,2,coriolanus,1607 lost,2,coriolanus,1607 loss,2,coriolanus,1607 Forum,2,coriolanus,1607 afternoon,2,coriolanus,1607 all's,2,coriolanus,1607 bench,2,coriolanus,1607 journey,2,coriolanus,1607 'Citizens,2,coriolanus,1607 killed,2,coriolanus,1607 Whence,2,coriolanus,1607 hardly,2,coriolanus,1607 syllables,2,coriolanus,1607 fierce,2,coriolanus,1607 outward,2,coriolanus,1607 seconds,2,coriolanus,1607 intended,2,coriolanus,1607 Hercules,2,coriolanus,1607 Cotus,2,coriolanus,1607 weeds,2,coriolanus,1607 see't,2,coriolanus,1607 rushes,2,coriolanus,1607 nobleness,2,coriolanus,1607 suitors,2,coriolanus,1607 vengeance,2,coriolanus,1607 form,2,coriolanus,1607 fort,2,coriolanus,1607 pair,2,coriolanus,1607 return'd,2,coriolanus,1607 fiery,2,coriolanus,1607 hum,2,coriolanus,1607 forsworn,2,coriolanus,1607 precipitation,2,coriolanus,1607 stones,2,coriolanus,1607 pace,2,coriolanus,1607 pack,2,coriolanus,1607 puts,2,coriolanus,1607 gentry,2,coriolanus,1607 Hoo,2,coriolanus,1607 obey'd,2,coriolanus,1607 ass,2,coriolanus,1607 fond,2,coriolanus,1607 dews,2,coriolanus,1607 pikes,2,coriolanus,1607 beards,2,coriolanus,1607 mayst,2,coriolanus,1607 term,2,coriolanus,1607 trick,2,coriolanus,1607 trial,2,coriolanus,1607 tribe,2,coriolanus,1607 willingly,2,coriolanus,1607 guest,2,coriolanus,1607 root,2,coriolanus,1607 lead,2,coriolanus,1607 spoken,2,coriolanus,1607 capital,2,coriolanus,1607 fitly,2,coriolanus,1607 room,2,coriolanus,1607 hangmen,2,coriolanus,1607 Captains,2,coriolanus,1607 garments,2,coriolanus,1607 equal,2,coriolanus,1607 main,2,coriolanus,1607 venture,2,coriolanus,1607 carried,2,coriolanus,1607 carries,2,coriolanus,1607 forehead,2,coriolanus,1607 shouldst,2,coriolanus,1607 rascals,2,coriolanus,1607 silence,2,coriolanus,1607 water,2,coriolanus,1607 Better,2,coriolanus,1607 prosperity,2,coriolanus,1607 thinks,2,coriolanus,1607 Half,2,coriolanus,1607 nose,2,coriolanus,1607 midst,2,coriolanus,1607 lack'd,2,coriolanus,1607 wonder,2,coriolanus,1607 accusations,2,coriolanus,1607 Show'd,2,coriolanus,1607 Hang,2,coriolanus,1607 rats,2,coriolanus,1607 rash,2,coriolanus,1607 tender,2,coriolanus,1607 hide,2,coriolanus,1607 bled,2,coriolanus,1607 slain,2,coriolanus,1607 'Be,2,coriolanus,1607 affections,2,coriolanus,1607 perform,2,coriolanus,1607 intercession,2,coriolanus,1607 successes,2,coriolanus,1607 mouth,2,coriolanus,1607 youth,2,coriolanus,1607 question,2,coriolanus,1607 resisted,2,coriolanus,1607 admits,2,coriolanus,1607 doors,2,coriolanus,1607 other's,2,coriolanus,1607 mortal,2,coriolanus,1607 towards,2,coriolanus,1607 sacrifice,2,coriolanus,1607 Drums,2,coriolanus,1607 nod,2,coriolanus,1607 prize,2,coriolanus,1607 shield,2,coriolanus,1607 approaches,2,coriolanus,1607 soothing,2,coriolanus,1607 blush,2,coriolanus,1607 lowest,2,coriolanus,1607 courage,2,coriolanus,1607 chief,2,coriolanus,1607 quench,2,coriolanus,1607 wot,2,coriolanus,1607 leaden,2,coriolanus,1607 blow,2,coriolanus,1607 chaff,2,coriolanus,1607 craves,2,coriolanus,1607 infect,2,coriolanus,1607 father's,2,coriolanus,1607 peremptory,2,coriolanus,1607 belly's,2,coriolanus,1607 ones,2,coriolanus,1607 behalf,2,coriolanus,1607 taste,2,coriolanus,1607 Italy,2,coriolanus,1607 slight,2,coriolanus,1607 poll,2,coriolanus,1607 passage,2,coriolanus,1607 Join'd,2,coriolanus,1607 opinion,2,coriolanus,1607 wrongs,2,coriolanus,1607 odd,2,coriolanus,1607 dishonour,2,coriolanus,1607 safely,2,coriolanus,1607 entreaties,2,coriolanus,1607 sides,2,coriolanus,1607 enters,2,coriolanus,1607 oft,2,coriolanus,1607 cure,2,coriolanus,1607 curs,2,coriolanus,1607 loving,2,coriolanus,1607 morrow,2,coriolanus,1607 abundance,2,coriolanus,1607 magistrates,2,coriolanus,1607 ripe,2,coriolanus,1607 standing,2,coriolanus,1607 Nicanor,2,coriolanus,1607 vouch,2,coriolanus,1607 subtle,2,coriolanus,1607 widows,2,coriolanus,1607 Thine,2,coriolanus,1607 heavy,2,coriolanus,1607 stiff,2,coriolanus,1607 mould,2,coriolanus,1607 driven,2,coriolanus,1607 commoners,2,coriolanus,1607 oath,2,coriolanus,1607 intent,2,coriolanus,1607 sufferance,2,coriolanus,1607 ends,2,coriolanus,1607 emulation,2,coriolanus,1607 wheel,2,coriolanus,1607 cushions,2,coriolanus,1607 Three,2,coriolanus,1607 happy,2,coriolanus,1607 Given,2,coriolanus,1607 caught,2,coriolanus,1607 hair,2,coriolanus,1607 hail,2,coriolanus,1607 Sixth,2,coriolanus,1607 prompt,2,coriolanus,1607 Greece,2,coriolanus,1607 rages,2,coriolanus,1607 takes,2,coriolanus,1607 taken,2,coriolanus,1607 weeping,2,coriolanus,1607 require,2,coriolanus,1607 opposite,2,coriolanus,1607 womb,2,coriolanus,1607 clip,2,coriolanus,1607 dull,2,coriolanus,1607 wolf,2,coriolanus,1607 serves,2,coriolanus,1607 Ever,2,coriolanus,1607 file,2,coriolanus,1607 earnestness,2,coriolanus,1607 Strike,2,coriolanus,1607 Show,2,coriolanus,1607 hunger,2,coriolanus,1607 durst,2,coriolanus,1607 character,2,coriolanus,1607 judge,2,coriolanus,1607 desert,2,coriolanus,1607 Hadst,2,coriolanus,1607 Proceed,2,coriolanus,1607 aediles,2,coriolanus,1607 kites,2,coriolanus,1607 worn,2,coriolanus,1607 discover,2,coriolanus,1607 colours,2,coriolanus,1607 threw,2,coriolanus,1607 'shall',2,coriolanus,1607 passing,2,coriolanus,1607 west,2,coriolanus,1607 flame,2,coriolanus,1607 offices,2,coriolanus,1607 Attend,2,coriolanus,1607 Lead,2,coriolanus,1607 thereby,2,coriolanus,1607 rebuke,2,coriolanus,1607 minded,2,coriolanus,1607 shown,2,coriolanus,1607 practise,2,coriolanus,1607 partly,2,coriolanus,1607 bats,2,coriolanus,1607 Below,2,coriolanus,1607 stinking,2,coriolanus,1607 deliver'd,2,coriolanus,1607 kiss,2,coriolanus,1607 rising,2,coriolanus,1607 large,2,coriolanus,1607 Each,2,coriolanus,1607 blaze,2,coriolanus,1607 coal,2,coriolanus,1607 sentenced,2,coriolanus,1607 hatred,2,coriolanus,1607 Trust,2,coriolanus,1607 Worse,2,coriolanus,1607 ought,2,coriolanus,1607 holds,2,coriolanus,1607 holy,2,coriolanus,1607 short,2,coriolanus,1607 clean,2,coriolanus,1607 dozen,2,coriolanus,1607 distinctly,2,coriolanus,1607 devour,2,coriolanus,1607 revoke,2,coriolanus,1607 revolt,2,coriolanus,1607 asking,2,coriolanus,1607 Repent,2,coriolanus,1607 feeding,2,coriolanus,1607 virtues,2,coriolanus,1607 counsels,2,coriolanus,1607 seal,2,coriolanus,1607 Rome's,2,coriolanus,1607 also,2,coriolanus,1607 lungs,2,coriolanus,1607 evident,2,coriolanus,1607 hunt,2,coriolanus,1607 Juno,2,coriolanus,1607 breasts,2,coriolanus,1607 swear,2,coriolanus,1607 adieu,2,coriolanus,1607 captain,2,coriolanus,1607 suits,2,coriolanus,1607 thereto,2,coriolanus,1607 defend,2,coriolanus,1607 predecessors,2,coriolanus,1607 ended,2,coriolanus,1607 courtesy,2,coriolanus,1607 strengths,2,coriolanus,1607 vessel,2,coriolanus,1607 shapes,2,coriolanus,1607 render,2,coriolanus,1607 shields,2,coriolanus,1607 'shall,2,coriolanus,1607 troop,2,coriolanus,1607 replied,2,coriolanus,1607 fabric,2,coriolanus,1607 thrust,2,coriolanus,1607 threshold,2,coriolanus,1607 avoid,2,coriolanus,1607 briefly,2,coriolanus,1607 Deliver,2,coriolanus,1607 hours,2,coriolanus,1607 countrymen,2,coriolanus,1607 souls,2,coriolanus,1607 uncertain,2,coriolanus,1607 whilst,2,coriolanus,1607 stored,2,coriolanus,1607 bleeding,2,coriolanus,1607 mother's,2,coriolanus,1607 nurse,2,coriolanus,1607 pratest,2,coriolanus,1607 highest,2,coriolanus,1607 March,2,coriolanus,1607 canopy,2,coriolanus,1607 bestow,2,coriolanus,1607 chances,2,coriolanus,1607 Two,2,coriolanus,1607 Nothing,2,coriolanus,1607 petty,2,coriolanus,1607 sounded,2,coriolanus,1607 least,2,coriolanus,1607 Five,2,coriolanus,1607 forced,2,coriolanus,1607 starve,2,coriolanus,1607 Another,2,coriolanus,1607 warlike,2,coriolanus,1607 censured,2,coriolanus,1607 glory,2,coriolanus,1607 meeting,2,coriolanus,1607 extol,2,coriolanus,1607 thoughts,2,coriolanus,1607 body's,2,coriolanus,1607 fashion,2,coriolanus,1607 warriors,2,coriolanus,1607 interpretation,2,coriolanus,1607 on's,2,coriolanus,1607 physic,2,coriolanus,1607 dismiss,2,coriolanus,1607 Beseech,2,coriolanus,1607 gulf,2,coriolanus,1607 flat,2,coriolanus,1607 VII,2,coriolanus,1607 Fifth,2,coriolanus,1607 discontented,2,coriolanus,1607 stretch'd,2,coriolanus,1607 list,2,coriolanus,1607 appetite,2,coriolanus,1607 mow,2,coriolanus,1607 leading,2,coriolanus,1607 Death,2,coriolanus,1607 'This,2,coriolanus,1607 Aufidius's,2,coriolanus,1607 slay,2,coriolanus,1607 Note,2,coriolanus,1607 dog,2,coriolanus,1607 bran,2,coriolanus,1607 asleep,2,coriolanus,1607 famish,2,coriolanus,1607 destroy,2,coriolanus,1607 instruction,2,coriolanus,1607 top,2,coriolanus,1607 reverend,2,coriolanus,1607 tired,2,coriolanus,1607 wills,2,coriolanus,1607 greatness,2,coriolanus,1607 surfeits,2,coriolanus,1607 Sicinius,2,coriolanus,1607 pronounce,2,coriolanus,1607 amen,2,coriolanus,1607 done't,2,coriolanus,1607 obedience,2,coriolanus,1607 bids,2,coriolanus,1607 Hector,2,coriolanus,1607 breaths,2,coriolanus,1607 undertake,2,coriolanus,1607 din,2,coriolanus,1607 wouldst,2,coriolanus,1607 sway,2,coriolanus,1607 daughters,2,coriolanus,1607 surname,3,coriolanus,1607 drop,3,coriolanus,1607 dined,3,coriolanus,1607 afar,3,coriolanus,1607 heir,3,coriolanus,1607 mistress,3,coriolanus,1607 speech,3,coriolanus,1607 writ,3,coriolanus,1607 possible,3,coriolanus,1607 Fie,3,coriolanus,1607 lawful,3,coriolanus,1607 Whether,3,coriolanus,1607 day's,3,coriolanus,1607 Bear,3,coriolanus,1607 helps,3,coriolanus,1607 fliers,3,coriolanus,1607 Tell,3,coriolanus,1607 finger,3,coriolanus,1607 herd,3,coriolanus,1607 sight,3,coriolanus,1607 Help,3,coriolanus,1607 laugh,3,coriolanus,1607 sort,3,coriolanus,1607 trust,3,coriolanus,1607 cheeks,3,coriolanus,1607 battles,3,coriolanus,1607 plague,3,coriolanus,1607 soon,3,coriolanus,1607 disdain,3,coriolanus,1607 sons,3,coriolanus,1607 grown,3,coriolanus,1607 incensed,3,coriolanus,1607 gracious,3,coriolanus,1607 injury,3,coriolanus,1607 trumpet,3,coriolanus,1607 toward,3,coriolanus,1607 policy,3,coriolanus,1607 officers,3,coriolanus,1607 making,3,coriolanus,1607 soft,3,coriolanus,1607 Methinks,3,coriolanus,1607 view,3,coriolanus,1607 six,3,coriolanus,1607 hereafter,3,coriolanus,1607 'twere,3,coriolanus,1607 virtuous,3,coriolanus,1607 followed,3,coriolanus,1607 beloved,3,coriolanus,1607 looks,3,coriolanus,1607 war's,3,coriolanus,1607 dearth,3,coriolanus,1607 read,3,coriolanus,1607 worst,3,coriolanus,1607 brain,3,coriolanus,1607 daughter,3,coriolanus,1607 encounter,3,coriolanus,1607 humble,3,coriolanus,1607 brace,3,coriolanus,1607 cease,3,coriolanus,1607 grow,3,coriolanus,1607 suffering,3,coriolanus,1607 false,3,coriolanus,1607 putting,3,coriolanus,1607 want,3,coriolanus,1607 Please,3,coriolanus,1607 know'st,3,coriolanus,1607 hated,3,coriolanus,1607 bold,3,coriolanus,1607 rebellion,3,coriolanus,1607 meat,3,coriolanus,1607 Ladies,3,coriolanus,1607 wits,3,coriolanus,1607 Follow,3,coriolanus,1607 praises,3,coriolanus,1607 hungry,3,coriolanus,1607 conditions,3,coriolanus,1607 knowledge,3,coriolanus,1607 authority,3,coriolanus,1607 morning,3,coriolanus,1607 foes,3,coriolanus,1607 refuse,3,coriolanus,1607 Those,3,coriolanus,1607 unnatural,3,coriolanus,1607 Still,3,coriolanus,1607 smile,3,coriolanus,1607 bad,3,coriolanus,1607 gratis,3,coriolanus,1607 musty,3,coriolanus,1607 exceed,3,coriolanus,1607 denied,3,coriolanus,1607 Cornets,3,coriolanus,1607 tear,3,coriolanus,1607 blest,3,coriolanus,1607 bless,3,coriolanus,1607 condemned,3,coriolanus,1607 election,3,coriolanus,1607 VI,3,coriolanus,1607 obey,3,coriolanus,1607 behind,3,coriolanus,1607 burn,3,coriolanus,1607 petition,3,coriolanus,1607 weal,3,coriolanus,1607 wear,3,coriolanus,1607 Behold,3,coriolanus,1607 friendly,3,coriolanus,1607 Ye,3,coriolanus,1607 'Twas,3,coriolanus,1607 dogs,3,coriolanus,1607 store,3,coriolanus,1607 breast,3,coriolanus,1607 doit,3,coriolanus,1607 safe,3,coriolanus,1607 yes,3,coriolanus,1607 Unless,3,coriolanus,1607 dead,3,coriolanus,1607 seeing,3,coriolanus,1607 touch'd,3,coriolanus,1607 treaty,3,coriolanus,1607 shed,3,coriolanus,1607 thyself,3,coriolanus,1607 banished,3,coriolanus,1607 feast,3,coriolanus,1607 know't,3,coriolanus,1607 cowardly,3,coriolanus,1607 approbation,3,coriolanus,1607 fears,3,coriolanus,1607 utmost,3,coriolanus,1607 aside,3,coriolanus,1607 crave,3,coriolanus,1607 sometime,3,coriolanus,1607 'twould,3,coriolanus,1607 speak'st,3,coriolanus,1607 resolved,3,coriolanus,1607 ill,3,coriolanus,1607 spend,3,coriolanus,1607 twenty,3,coriolanus,1607 lets,3,coriolanus,1607 knew,3,coriolanus,1607 forgot,3,coriolanus,1607 Because,3,coriolanus,1607 hark,3,coriolanus,1607 plot,3,coriolanus,1607 hard,3,coriolanus,1607 pale,3,coriolanus,1607 repeal,3,coriolanus,1607 Trumpets,3,coriolanus,1607 consuls,3,coriolanus,1607 excuse,3,coriolanus,1607 frown,3,coriolanus,1607 devise,3,coriolanus,1607 fear'd,3,coriolanus,1607 rough,3,coriolanus,1607 prepared,3,coriolanus,1607 renowned,3,coriolanus,1607 prate,3,coriolanus,1607 touch,3,coriolanus,1607 hazard,3,coriolanus,1607 broke,3,coriolanus,1607 guess,3,coriolanus,1607 march,3,coriolanus,1607 nobler,3,coriolanus,1607 moved,3,coriolanus,1607 nay,3,coriolanus,1607 faith,3,coriolanus,1607 marks,3,coriolanus,1607 hire,3,coriolanus,1607 below,3,coriolanus,1607 daily,3,coriolanus,1607 entertainment,3,coriolanus,1607 beard,3,coriolanus,1607 ours,3,coriolanus,1607 mock'd,3,coriolanus,1607 borne,3,coriolanus,1607 you'ld,3,coriolanus,1607 ignorant,3,coriolanus,1607 Set,3,coriolanus,1607 places,3,coriolanus,1607 awhile,3,coriolanus,1607 several,3,coriolanus,1607 high,3,coriolanus,1607 People,3,coriolanus,1607 'He,3,coriolanus,1607 leaves,3,coriolanus,1607 teeth,3,coriolanus,1607 Makes,3,coriolanus,1607 mildly,3,coriolanus,1607 vent,3,coriolanus,1607 knows,3,coriolanus,1607 issue,3,coriolanus,1607 labour,3,coriolanus,1607 benefit,3,coriolanus,1607 number,3,coriolanus,1607 Made,3,coriolanus,1607 trouble,3,coriolanus,1607 desires,3,coriolanus,1607 proved,3,coriolanus,1607 sake,3,coriolanus,1607 retire,3,coriolanus,1607 throw,3,coriolanus,1607 wit,3,coriolanus,1607 stamp,3,coriolanus,1607 liberties,3,coriolanus,1607 five,3,coriolanus,1607 sorrow,3,coriolanus,1607 bands,3,coriolanus,1607 butterfly,3,coriolanus,1607 humility,3,coriolanus,1607 dust,3,coriolanus,1607 duty,3,coriolanus,1607 Can,3,coriolanus,1607 forward,3,coriolanus,1607 curses,3,coriolanus,1607 throats,3,coriolanus,1607 vulgar,3,coriolanus,1607 worships,3,coriolanus,1607 charges,3,coriolanus,1607 charged,3,coriolanus,1607 wondrous,3,coriolanus,1607 disposition,3,coriolanus,1607 ope,3,coriolanus,1607 fail,3,coriolanus,1607 contempt,3,coriolanus,1607 'fore,3,coriolanus,1607 giving,3,coriolanus,1607 Till,3,coriolanus,1607 foe,3,coriolanus,1607 pleased,3,coriolanus,1607 Mark,3,coriolanus,1607 rich,3,coriolanus,1607 Boy,3,coriolanus,1607 bare,3,coriolanus,1607 Fare,3,coriolanus,1607 meddle,3,coriolanus,1607 answer'd,3,coriolanus,1607 host,3,coriolanus,1607 shows,3,coriolanus,1607 ye're,3,coriolanus,1607 perceive,3,coriolanus,1607 patient,3,coriolanus,1607 censure,3,coriolanus,1607 gentleman,3,coriolanus,1607 Very,3,coriolanus,1607 named,3,coriolanus,1607 tale,3,coriolanus,1607 is't,3,coriolanus,1607 law,3,coriolanus,1607 constant,3,coriolanus,1607 Valeria,3,coriolanus,1607 welcomes,3,coriolanus,1607 Appear,3,coriolanus,1607 perish,3,coriolanus,1607 wild,3,coriolanus,1607 alms,3,coriolanus,1607 Lay,3,coriolanus,1607 dragon,3,coriolanus,1607 fires,3,coriolanus,1607 clubs,3,coriolanus,1607 lives,3,coriolanus,1607 Where's,3,coriolanus,1607 gives,3,coriolanus,1607 choler,3,coriolanus,1607 hearth,3,coriolanus,1607 commission,3,coriolanus,1607 sweat,3,coriolanus,1607 insolence,3,coriolanus,1607 aught,3,coriolanus,1607 south,3,coriolanus,1607 'twixt,3,coriolanus,1607 He'll,3,coriolanus,1607 heels,3,coriolanus,1607 therein,3,coriolanus,1607 cushion,3,coriolanus,1607 sell,3,coriolanus,1607 bald,3,coriolanus,1607 temperately,3,coriolanus,1607 cold,3,coriolanus,1607 chose,3,coriolanus,1607 Marcius',3,coriolanus,1607 ear,3,coriolanus,1607 chosen,3,coriolanus,1607 Does,3,coriolanus,1607 determine,3,coriolanus,1607 Since,3,coriolanus,1607 fully,3,coriolanus,1607 heartily,3,coriolanus,1607 Great,3,coriolanus,1607 lips,3,coriolanus,1607 respected,3,coriolanus,1607 Serviceman,3,coriolanus,1607 Amen,3,coriolanus,1607 Kneels,3,coriolanus,1607 revenges,3,coriolanus,1607 dishonour'd,3,coriolanus,1607 territories,3,coriolanus,1607 human,3,coriolanus,1607 try,3,coriolanus,1607 witness,3,coriolanus,1607 numbers,3,coriolanus,1607 respect,3,coriolanus,1607 toe,3,coriolanus,1607 bred,3,coriolanus,1607 lamb,3,coriolanus,1607 success,3,coriolanus,1607 Too,3,coriolanus,1607 ambitious,3,coriolanus,1607 command,3,coriolanus,1607 press'd,3,coriolanus,1607 ten,3,coriolanus,1607 woman,3,coriolanus,1607 Virgilia,3,coriolanus,1607 spoils,3,coriolanus,1607 crows,3,coriolanus,1607 e'er,3,coriolanus,1607 women,3,coriolanus,1607 fortunes,3,coriolanus,1607 motion,4,coriolanus,1607 for't,4,coriolanus,1607 horse,4,coriolanus,1607 alike,4,coriolanus,1607 neighbours,4,coriolanus,1607 express,4,coriolanus,1607 single,4,coriolanus,1607 disease,4,coriolanus,1607 while,4,coriolanus,1607 throat,4,coriolanus,1607 under,4,coriolanus,1607 cheap,4,coriolanus,1607 run,4,coriolanus,1607 absolute,4,coriolanus,1607 Whom,4,coriolanus,1607 draw,4,coriolanus,1607 bearing,4,coriolanus,1607 years,4,coriolanus,1607 Jove,4,coriolanus,1607 wants,4,coriolanus,1607 TULLUS,4,coriolanus,1607 calm,4,coriolanus,1607 visit,4,coriolanus,1607 execution,4,coriolanus,1607 prevail'd,4,coriolanus,1607 sea,4,coriolanus,1607 suit,4,coriolanus,1607 'I,4,coriolanus,1607 it's,4,coriolanus,1607 Attendants,4,coriolanus,1607 ourselves,4,coriolanus,1607 worse,4,coriolanus,1607 merit,4,coriolanus,1607 heavens,4,coriolanus,1607 absence,4,coriolanus,1607 fault,4,coriolanus,1607 Wherein,4,coriolanus,1607 Leave,4,coriolanus,1607 feel,4,coriolanus,1607 choose,4,coriolanus,1607 Hence,4,coriolanus,1607 popular,4,coriolanus,1607 office,4,coriolanus,1607 steed,4,coriolanus,1607 parts,4,coriolanus,1607 Faith,4,coriolanus,1607 measure,4,coriolanus,1607 granted,4,coriolanus,1607 spoil,4,coriolanus,1607 An,4,coriolanus,1607 in't,4,coriolanus,1607 force,4,coriolanus,1607 Ha,4,coriolanus,1607 beg,4,coriolanus,1607 means,4,coriolanus,1607 heads,4,coriolanus,1607 weep,4,coriolanus,1607 goodly,4,coriolanus,1607 dost,4,coriolanus,1607 curse,4,coriolanus,1607 buy,4,coriolanus,1607 gown,4,coriolanus,1607 Masters,4,coriolanus,1607 vantage,4,coriolanus,1607 turns,4,coriolanus,1607 begin,4,coriolanus,1607 deed,4,coriolanus,1607 yea,4,coriolanus,1607 aid,4,coriolanus,1607 Here's,4,coriolanus,1607 shouts,4,coriolanus,1607 victory,4,coriolanus,1607 memory,4,coriolanus,1607 forget,4,coriolanus,1607 move,4,coriolanus,1607 small,4,coriolanus,1607 age,4,coriolanus,1607 Yes,4,coriolanus,1607 act,4,coriolanus,1607 grace,4,coriolanus,1607 harm,4,coriolanus,1607 reasons,4,coriolanus,1607 Antiates,4,coriolanus,1607 shut,4,coriolanus,1607 course,4,coriolanus,1607 thanks,4,coriolanus,1607 undone,4,coriolanus,1607 judgment,4,coriolanus,1607 new,4,coriolanus,1607 Into,4,coriolanus,1607 justice,4,coriolanus,1607 Lords,4,coriolanus,1607 note,4,coriolanus,1607 trenches,4,coriolanus,1607 bears,4,coriolanus,1607 strike,4,coriolanus,1607 young,4,coriolanus,1607 Consider,4,coriolanus,1607 misery,4,coriolanus,1607 powers,4,coriolanus,1607 Look,4,coriolanus,1607 Some,4,coriolanus,1607 parties,4,coriolanus,1607 I'ld,4,coriolanus,1607 wrath,4,coriolanus,1607 They'll,4,coriolanus,1607 former,4,coriolanus,1607 banishment,4,coriolanus,1607 win,4,coriolanus,1607 We'll,4,coriolanus,1607 oak,4,coriolanus,1607 Think,4,coriolanus,1607 flourish,4,coriolanus,1607 danger,4,coriolanus,1607 price,4,coriolanus,1607 wont,4,coriolanus,1607 Fourth,4,coriolanus,1607 multitude,4,coriolanus,1607 faces,4,coriolanus,1607 Hail,4,coriolanus,1607 poison,4,coriolanus,1607 anger,4,coriolanus,1607 consent,4,coriolanus,1607 drops,4,coriolanus,1607 angry,4,coriolanus,1607 table,4,coriolanus,1607 wholesome,4,coriolanus,1607 yond,4,coriolanus,1607 weapons,4,coriolanus,1607 cares,4,coriolanus,1607 Jupiter,4,coriolanus,1607 please,4,coriolanus,1607 wore,4,coriolanus,1607 fie,4,coriolanus,1607 Mars,4,coriolanus,1607 fine,4,coriolanus,1607 folly,4,coriolanus,1607 particular,4,coriolanus,1607 wives,4,coriolanus,1607 comfort,4,coriolanus,1607 base,4,coriolanus,1607 fast,4,coriolanus,1607 reason,4,coriolanus,1607 wilt,4,coriolanus,1607 holp,4,coriolanus,1607 follows,4,coriolanus,1607 honest,4,coriolanus,1607 streets,4,coriolanus,1607 always,4,coriolanus,1607 seek,4,coriolanus,1607 look'd,4,coriolanus,1607 condition,4,coriolanus,1607 increase,4,coriolanus,1607 modest,4,coriolanus,1607 Know,4,coriolanus,1607 blame,4,coriolanus,1607 beheld,4,coriolanus,1607 led,4,coriolanus,1607 lip,4,coriolanus,1607 brow,4,coriolanus,1607 eat,4,coriolanus,1607 whip,4,coriolanus,1607 strokes,4,coriolanus,1607 thither,4,coriolanus,1607 hurt,4,coriolanus,1607 silent,4,coriolanus,1607 mouths,4,coriolanus,1607 You'll,4,coriolanus,1607 honour'd,4,coriolanus,1607 frame,4,coriolanus,1607 sudden,4,coriolanus,1607 behold,4,coriolanus,1607 pass'd,4,coriolanus,1607 he'll,4,coriolanus,1607 den,4,coriolanus,1607 tread,4,coriolanus,1607 him,260,coriolanus,1607 told,5,coriolanus,1607 ignorance,5,coriolanus,1607 times,5,coriolanus,1607 suffer,5,coriolanus,1607 truly,5,coriolanus,1607 CAIUS,5,coriolanus,1607 cast,5,coriolanus,1607 seven,5,coriolanus,1607 fools,5,coriolanus,1607 something,5,coriolanus,1607 sit,5,coriolanus,1607 Tarpeian,5,coriolanus,1607 sun,5,coriolanus,1607 fearful,5,coriolanus,1607 promise,5,coriolanus,1607 ancient,5,coriolanus,1607 wine,5,coriolanus,1607 wind,5,coriolanus,1607 knees,5,coriolanus,1607 heaven,5,coriolanus,1607 ruin,5,coriolanus,1607 slaves,5,coriolanus,1607 patience,5,coriolanus,1607 among,5,coriolanus,1607 AEdiles,5,coriolanus,1607 enter'd,5,coriolanus,1607 whole,5,coriolanus,1607 Had,5,coriolanus,1607 nobility,5,coriolanus,1607 valiant,5,coriolanus,1607 tribune,5,coriolanus,1607 Prithee,5,coriolanus,1607 children,5,coriolanus,1607 Put,5,coriolanus,1607 exile,5,coriolanus,1607 gate,5,coriolanus,1607 God,5,coriolanus,1607 Soldiers,5,coriolanus,1607 servant,5,coriolanus,1607 members,5,coriolanus,1607 banish,5,coriolanus,1607 account,5,coriolanus,1607 earth,5,coriolanus,1607 ho,5,coriolanus,1607 choice,5,coriolanus,1607 valour,5,coriolanus,1607 easy,5,coriolanus,1607 speaks,5,coriolanus,1607 Call,5,coriolanus,1607 deny,5,coriolanus,1607 Under,5,coriolanus,1607 mock,5,coriolanus,1607 fool,5,coriolanus,1607 theirs,5,coriolanus,1607 Hark,5,coriolanus,1607 here's,5,coriolanus,1607 change,5,coriolanus,1607 envy,5,coriolanus,1607 gentle,5,coriolanus,1607 Down,5,coriolanus,1607 mile,5,coriolanus,1607 Could,5,coriolanus,1607 presently,5,coriolanus,1607 slave,5,coriolanus,1607 won,5,coriolanus,1607 need,5,coriolanus,1607 over,5,coriolanus,1607 near,5,coriolanus,1607 neck,5,coriolanus,1607 services,5,coriolanus,1607 remains,5,coriolanus,1607 Thus,5,coriolanus,1607 believe,5,coriolanus,1607 receive,5,coriolanus,1607 garland,5,coriolanus,1607 found,5,coriolanus,1607 plebeians,5,coriolanus,1607 Bid,5,coriolanus,1607 rotten,5,coriolanus,1607 inform,5,coriolanus,1607 owe,5,coriolanus,1607 hundred,5,coriolanus,1607 Noble,5,coriolanus,1607 ground,5,coriolanus,1607 grant,5,coriolanus,1607 fame,5,coriolanus,1607 company,5,coriolanus,1607 officer,5,coriolanus,1607 thunder,5,coriolanus,1607 ta'en,5,coriolanus,1607 trumpets,5,coriolanus,1607 carry,5,coriolanus,1607 cut,5,coriolanus,1607 Herald,5,coriolanus,1607 rabble,5,coriolanus,1607 prayers,5,coriolanus,1607 shout,5,coriolanus,1607 troth,5,coriolanus,1607 Mine,5,coriolanus,1607 fellows,5,coriolanus,1607 estimation,5,coriolanus,1607 hither,5,coriolanus,1607 goes,5,coriolanus,1607 sleep,5,coriolanus,1607 Patricians,5,coriolanus,1607 straight,5,coriolanus,1607 street,5,coriolanus,1607 Indeed,5,coriolanus,1607 citizens,5,coriolanus,1607 virtue,5,coriolanus,1607 mutinous,5,coriolanus,1607 going,5,coriolanus,1607 attend,5,coriolanus,1607 Did,5,coriolanus,1607 dare,5,coriolanus,1607 Lest,5,coriolanus,1607 dispatch,5,coriolanus,1607 Conspirators,5,coriolanus,1607 shalt,5,coriolanus,1607 lack,5,coriolanus,1607 Patrician,6,coriolanus,1607 took,6,coriolanus,1607 held,6,coriolanus,1607 violent,6,coriolanus,1607 appear,6,coriolanus,1607 wounded,6,coriolanus,1607 become,6,coriolanus,1607 care,6,coriolanus,1607 Whose,6,coriolanus,1607 Give,6,coriolanus,1607 Only,6,coriolanus,1607 deserve,6,coriolanus,1607 deliver,6,coriolanus,1607 Farewell,6,coriolanus,1607 faults,6,coriolanus,1607 These,6,coriolanus,1607 thence,6,coriolanus,1607 Gentlewoman,6,coriolanus,1607 masters,6,coriolanus,1607 custom,6,coriolanus,1607 rest,6,coriolanus,1607 mean,6,coriolanus,1607 There's,6,coriolanus,1607 party,6,coriolanus,1607 tent,6,coriolanus,1607 blows,6,coriolanus,1607 itself,6,coriolanus,1607 Stand,6,coriolanus,1607 Within,6,coriolanus,1607 past,6,coriolanus,1607 pass,6,coriolanus,1607 Has,6,coriolanus,1607 night,6,coriolanus,1607 gave,6,coriolanus,1607 got,6,coriolanus,1607 farewell,6,coriolanus,1607 air,6,coriolanus,1607 left,6,coriolanus,1607 moon,6,coriolanus,1607 wherein,6,coriolanus,1607 show'd,6,coriolanus,1607 knee,6,coriolanus,1607 hang,6,coriolanus,1607 four,6,coriolanus,1607 praise,6,coriolanus,1607 pluck,6,coriolanus,1607 point,6,coriolanus,1607 Alarum,6,coriolanus,1607 right,6,coriolanus,1607 often,6,coriolanus,1607 almost,6,coriolanus,1607 proceed,6,coriolanus,1607 none,6,coriolanus,1607 Flourish,6,coriolanus,1607 See,6,coriolanus,1607 soldiers,6,coriolanus,1607 already,6,coriolanus,1607 bloody,6,coriolanus,1607 'gainst,6,coriolanus,1607 free,6,coriolanus,1607 Being,6,coriolanus,1607 says,6,coriolanus,1607 third,6,coriolanus,1607 coming,6,coriolanus,1607 grain,6,coriolanus,1607 whence,6,coriolanus,1607 Volscians,6,coriolanus,1607 Make,6,coriolanus,1607 letter,6,coriolanus,1607 Welcome,6,coriolanus,1607 thousand,6,coriolanus,1607 Rather,6,coriolanus,1607 pardon,6,coriolanus,1607 dangerous,6,coriolanus,1607 prithee,6,coriolanus,1607 along,6,coriolanus,1607 either,6,coriolanus,1607 True,6,coriolanus,1607 return,6,coriolanus,1607 send,6,coriolanus,1607 sent,6,coriolanus,1607 remember,6,coriolanus,1607 on't,6,coriolanus,1607 father,6,coriolanus,1607 leads,6,coriolanus,1607 private,6,coriolanus,1607 kill,6,coriolanus,1607 brave,7,coriolanus,1607 o'er,7,coriolanus,1607 guard,7,coriolanus,1607 pity,7,coriolanus,1607 tears,7,coriolanus,1607 strength,7,coriolanus,1607 charge,7,coriolanus,1607 Tullus,7,coriolanus,1607 camp,7,coriolanus,1607 hearing,7,coriolanus,1607 stands,7,coriolanus,1607 warrant,7,coriolanus,1607 yield,7,coriolanus,1607 worth,7,coriolanus,1607 's,7,coriolanus,1607 received,7,coriolanus,1607 spoke,7,coriolanus,1607 each,7,coriolanus,1607 god,7,coriolanus,1607 doth,7,coriolanus,1607 used,7,coriolanus,1607 breath,7,coriolanus,1607 hands,7,coriolanus,1607 ready,7,coriolanus,1607 call'd,7,coriolanus,1607 whether,7,coriolanus,1607 arm,7,coriolanus,1607 ask,7,coriolanus,1607 foot,7,coriolanus,1607 revenge,7,coriolanus,1607 ye,7,coriolanus,1607 chance,7,coriolanus,1607 having,7,coriolanus,1607 eye,7,coriolanus,1607 you'll,7,coriolanus,1607 mind,7,coriolanus,1607 flatter,7,coriolanus,1607 why,7,coriolanus,1607 walls,7,coriolanus,1607 save,7,coriolanus,1607 Worthy,7,coriolanus,1607 rage,7,coriolanus,1607 glad,7,coriolanus,1607 fall,7,coriolanus,1607 fortune,7,coriolanus,1607 fly,7,coriolanus,1607 fit,7,coriolanus,1607 ne'er,7,coriolanus,1607 man's,7,coriolanus,1607 given,7,coriolanus,1607 master,7,coriolanus,1607 strong,7,coriolanus,1607 drums,7,coriolanus,1607 battle,7,coriolanus,1607 traitor,7,coriolanus,1607 doing,7,coriolanus,1607 met,7,coriolanus,1607 Away,7,coriolanus,1607 late,7,coriolanus,1607 shake,7,coriolanus,1607 lady,7,coriolanus,1607 swords,8,coriolanus,1607 rock,8,coriolanus,1607 joy,8,coriolanus,1607 drum,8,coriolanus,1607 Ere,8,coriolanus,1607 saw,8,coriolanus,1607 caps,8,coriolanus,1607 sure,8,coriolanus,1607 came,8,coriolanus,1607 noise,8,coriolanus,1607 bound,8,coriolanus,1607 'twas,8,coriolanus,1607 sworn,8,coriolanus,1607 't,8,coriolanus,1607 doubt,8,coriolanus,1607 turn,8,coriolanus,1607 Lartius,8,coriolanus,1607 malice,8,coriolanus,1607 desire,8,coriolanus,1607 III,8,coriolanus,1607 neither,8,coriolanus,1607 boy,8,coriolanus,1607 to't,8,coriolanus,1607 On,8,coriolanus,1607 II,8,coriolanus,1607 Let's,8,coriolanus,1607 nobly,8,coriolanus,1607 Good,8,coriolanus,1607 struck,8,coriolanus,1607 Speak,8,coriolanus,1607 people's,8,coriolanus,1607 tongues,8,coriolanus,1607 husband,8,coriolanus,1607 greater,8,coriolanus,1607 field,8,coriolanus,1607 far,8,coriolanus,1607 through,8,coriolanus,1607 indeed,8,coriolanus,1607 Peace,8,coriolanus,1607 ere,8,coriolanus,1607 child,8,coriolanus,1607 mark,8,coriolanus,1607 themselves,8,coriolanus,1607 what's,8,coriolanus,1607 even,8,coriolanus,1607 public,8,coriolanus,1607 talk,8,coriolanus,1607 use,8,coriolanus,1607 sweet,8,coriolanus,1607 person,8,coriolanus,1607 Lieutenant,8,coriolanus,1607 Volscian,8,coriolanus,1607 makes,8,coriolanus,1607 live,8,coriolanus,1607 May,8,coriolanus,1607 Take,8,coriolanus,1607 V,9,coriolanus,1607 Hear,9,coriolanus,1607 fought,9,coriolanus,1607 remain,9,coriolanus,1607 Would,9,coriolanus,1607 Upon,9,coriolanus,1607 yourself,9,coriolanus,1607 head,9,coriolanus,1607 town,9,coriolanus,1607 One,9,coriolanus,1607 hence,9,coriolanus,1607 side,9,coriolanus,1607 deeds,9,coriolanus,1607 deserved,9,coriolanus,1607 yourselves,9,coriolanus,1607 prove,9,coriolanus,1607 Both,9,coriolanus,1607 Most,9,coriolanus,1607 enemies,9,coriolanus,1607 nobles,9,coriolanus,1607 Should,9,coriolanus,1607 there's,9,coriolanus,1607 get,9,coriolanus,1607 grave,9,coriolanus,1607 break,9,coriolanus,1607 banish'd,9,coriolanus,1607 army,9,coriolanus,1607 arms,9,coriolanus,1607 between,9,coriolanus,1607 serve,9,coriolanus,1607 belly,9,coriolanus,1607 That's,9,coriolanus,1607 hold,9,coriolanus,1607 thank,9,coriolanus,1607 seen,9,coriolanus,1607 corn,9,coriolanus,1607 strange,9,coriolanus,1607 content,9,coriolanus,1607 shame,9,coriolanus,1607 kind,9,coriolanus,1607 spirit,9,coriolanus,1607 market,9,coriolanus,1607 not,265,coriolanus,1607 business,10,coriolanus,1607 thought,10,coriolanus,1607 Must,10,coriolanus,1607 truth,10,coriolanus,1607 mercy,10,coriolanus,1607 another,10,coriolanus,1607 full,10,coriolanus,1607 Nor,10,coriolanus,1607 enough,10,coriolanus,1607 within,10,coriolanus,1607 second,10,coriolanus,1607 There,10,coriolanus,1607 others,10,coriolanus,1607 IV,10,coriolanus,1607 Titus,10,coriolanus,1607 Antium,10,coriolanus,1607 look,10,coriolanus,1607 stood,10,coriolanus,1607 dear,10,coriolanus,1607 long,10,coriolanus,1607 that's,10,coriolanus,1607 loves,10,coriolanus,1607 brought,10,coriolanus,1607 Hath,10,coriolanus,1607 Against,10,coriolanus,1607 myself,10,coriolanus,1607 comes,10,coriolanus,1607 known,10,coriolanus,1607 pride,10,coriolanus,1607 face,10,coriolanus,1607 Shall,10,coriolanus,1607 do't,10,coriolanus,1607 hour,10,coriolanus,1607 hope,10,coriolanus,1607 lay,10,coriolanus,1607 hearts,10,coriolanus,1607 country's,10,coriolanus,1607 sound,10,coriolanus,1607 patricians,10,coriolanus,1607 madam,10,coriolanus,1607 purpose,10,coriolanus,1607 die,10,coriolanus,1607 meet,11,coriolanus,1607 life,11,coriolanus,1607 Soldier,11,coriolanus,1607 nothing,11,coriolanus,1607 Was,11,coriolanus,1607 TITUS,11,coriolanus,1607 Here,11,coriolanus,1607 soldier,11,coriolanus,1607 friend,11,coriolanus,1607 What's,11,coriolanus,1607 stay,11,coriolanus,1607 Is,11,coriolanus,1607 Conspirator,11,coriolanus,1607 welcome,11,coriolanus,1607 Therefore,11,coriolanus,1607 Lord,11,coriolanus,1607 yours,11,coriolanus,1607 Then,11,coriolanus,1607 let's,11,coriolanus,1607 once,11,coriolanus,1607 thine,11,coriolanus,1607 Say,11,coriolanus,1607 Officer,11,coriolanus,1607 day,11,coriolanus,1607 unto,11,coriolanus,1607 request,11,coriolanus,1607 we'll,11,coriolanus,1607 lie,11,coriolanus,1607 ladies,11,coriolanus,1607 without,11,coriolanus,1607 help,12,coriolanus,1607 every,12,coriolanus,1607 she,12,coriolanus,1607 fear,12,coriolanus,1607 after,12,coriolanus,1607 service,12,coriolanus,1607 bring,12,coriolanus,1607 voice,12,coriolanus,1607 Do,12,coriolanus,1607 he's,12,coriolanus,1607 At,12,coriolanus,1607 loved,12,coriolanus,1607 half,12,coriolanus,1607 action,12,coriolanus,1607 Tribunes,12,coriolanus,1607 fire,12,coriolanus,1607 beseech,12,coriolanus,1607 senators,12,coriolanus,1607 alone,12,coriolanus,1607 whom,12,coriolanus,1607 Before,12,coriolanus,1607 Thy,12,coriolanus,1607 follow,12,coriolanus,1607 certain,12,coriolanus,1607 Romans,13,coriolanus,1607 honours,13,coriolanus,1607 lies,13,coriolanus,1607 call,13,coriolanus,1607 Their,13,coriolanus,1607 fight,13,coriolanus,1607 Though,13,coriolanus,1607 I',13,coriolanus,1607 since,13,coriolanus,1607 tongue,13,coriolanus,1607 Like,13,coriolanus,1607 lord,13,coriolanus,1607 beat,13,coriolanus,1607 lose,13,coriolanus,1607 art,13,coriolanus,1607 lords,13,coriolanus,1607 into,13,coriolanus,1607 things,13,coriolanus,1607 Even,13,coriolanus,1607 three,13,coriolanus,1607 till,13,coriolanus,1607 seem,13,coriolanus,1607 Volsce,13,coriolanus,1607 cry,13,coriolanus,1607 last,13,coriolanus,1607 He's,13,coriolanus,1607 body,14,coriolanus,1607 about,14,coriolanus,1607 wish,14,coriolanus,1607 else,14,coriolanus,1607 ears,14,coriolanus,1607 proud,14,coriolanus,1607 whose,14,coriolanus,1607 Yet,14,coriolanus,1607 keep,14,coriolanus,1607 More,14,coriolanus,1607 present,14,coriolanus,1607 Are,14,coriolanus,1607 Sir,14,coriolanus,1607 Were,14,coriolanus,1607 same,14,coriolanus,1607 only,14,coriolanus,1607 might,14,coriolanus,1607 answer,15,coriolanus,1607 words,15,coriolanus,1607 better,15,coriolanus,1607 therefore,15,coriolanus,1607 best,15,coriolanus,1607 does,15,coriolanus,1607 senate,15,coriolanus,1607 hand,15,coriolanus,1607 report,15,coriolanus,1607 From,15,coriolanus,1607 Senators,15,coriolanus,1607 fair,15,coriolanus,1607 work,15,coriolanus,1607 wounds,15,coriolanus,1607 'em,15,coriolanus,1607 Menenius,15,coriolanus,1607 together,15,coriolanus,1607 leave,15,coriolanus,1607 enemy,15,coriolanus,1607 further,16,coriolanus,1607 Re,16,coriolanus,1607 put,16,coriolanus,1607 Caius,16,coriolanus,1607 though,16,coriolanus,1607 still,16,coriolanus,1607 Capitol,16,coriolanus,1607 word,16,coriolanus,1607 find,16,coriolanus,1607 eyes,16,coriolanus,1607 back,16,coriolanus,1607 Will,17,coriolanus,1607 death,17,coriolanus,1607 set,17,coriolanus,1607 fellow,17,coriolanus,1607 both,17,coriolanus,1607 matter,17,coriolanus,1607 Go,17,coriolanus,1607 little,17,coriolanus,1607 hast,17,coriolanus,1607 Have,17,coriolanus,1607 end,17,coriolanus,1607 old,17,coriolanus,1607 nature,17,coriolanus,1607 Exit,17,coriolanus,1607 himself,17,coriolanus,1607 rather,18,coriolanus,1607 Who,18,coriolanus,1607 cause,18,coriolanus,1607 sword,18,coriolanus,1607 wars,18,coriolanus,1607 part,18,coriolanus,1607 hate,18,coriolanus,1607 heard,18,coriolanus,1607 he,274,coriolanus,1607 much,19,coriolanus,1607 Not,19,coriolanus,1607 common,19,coriolanus,1607 By,19,coriolanus,1607 His,19,coriolanus,1607 Be,19,coriolanus,1607 gone,19,coriolanus,1607 Or,19,coriolanus,1607 any,19,coriolanus,1607 forth,19,coriolanus,1607 show,19,coriolanus,1607 gates,19,coriolanus,1607 thing,19,coriolanus,1607 off,19,coriolanus,1607 poor,19,coriolanus,1607 AEdile,19,coriolanus,1607 Cominius,19,coriolanus,1607 I,531,coriolanus,1607 worthy,20,coriolanus,1607 Ay,20,coriolanus,1607 VALERIA,20,coriolanus,1607 said,20,coriolanus,1607 less,20,coriolanus,1607 mine,20,coriolanus,1607 stand,20,coriolanus,1607 war,20,coriolanus,1607 Pray,20,coriolanus,1607 you,532,coriolanus,1607 pray,21,coriolanus,1607 world,21,coriolanus,1607 Now,21,coriolanus,1607 Our,21,coriolanus,1607 enter,21,coriolanus,1607 'Tis,21,coriolanus,1607 wife,21,coriolanus,1607 away,22,coriolanus,1607 So,22,coriolanus,1607 place,22,coriolanus,1607 Volsces,22,coriolanus,1607 very,22,coriolanus,1607 nor,22,coriolanus,1607 first,22,coriolanus,1607 two,22,coriolanus,1607 her,23,coriolanus,1607 blood,23,coriolanus,1607 those,23,coriolanus,1607 again,23,coriolanus,1607 many,23,coriolanus,1607 state,23,coriolanus,1607 Well,23,coriolanus,1607 Corioli,23,coriolanus,1607 true,23,coriolanus,1607 honour,24,coriolanus,1607 It,24,coriolanus,1607 down,24,coriolanus,1607 bear,24,coriolanus,1607 could,24,coriolanus,1607 who,24,coriolanus,1607 Nay,25,coriolanus,1607 where,25,coriolanus,1607 Thou,25,coriolanus,1607 news,25,coriolanus,1607 ever,25,coriolanus,1607 being,25,coriolanus,1607 there,26,coriolanus,1607 Where,26,coriolanus,1607 country,27,coriolanus,1607 son,27,coriolanus,1607 done,27,coriolanus,1607 tribunes,27,coriolanus,1607 take,27,coriolanus,1607 thus,27,coriolanus,1607 house,27,coriolanus,1607 Messenger,27,coriolanus,1607 men,27,coriolanus,1607 other,27,coriolanus,1607 Why,28,coriolanus,1607 never,28,coriolanus,1607 love,28,coriolanus,1607 consul,28,coriolanus,1607 in,284,coriolanus,1607 peace,29,coriolanus,1607 some,29,coriolanus,1607 these,29,coriolanus,1607 has,29,coriolanus,1607 No,29,coriolanus,1607 ACT,29,coriolanus,1607 heart,29,coriolanus,1607 against,30,coriolanus,1607 see,30,coriolanus,1607 i',30,coriolanus,1607 how,30,coriolanus,1607 How,30,coriolanus,1607 All,30,coriolanus,1607 great,30,coriolanus,1607 may,30,coriolanus,1607 SCENE,30,coriolanus,1607 'tis,31,coriolanus,1607 They,31,coriolanus,1607 name,32,coriolanus,1607 been,32,coriolanus,1607 LARTIUS,32,coriolanus,1607 When,32,coriolanus,1607 such,33,coriolanus,1607 tell,33,coriolanus,1607 way,33,coriolanus,1607 time,33,coriolanus,1607 friends,34,coriolanus,1607 Roman,34,coriolanus,1607 too,34,coriolanus,1607 general,35,coriolanus,1607 VIRGILIA,35,coriolanus,1607 Let,35,coriolanus,1607 let,35,coriolanus,1607 Coriolanus,35,coriolanus,1607 voices,36,coriolanus,1607 Aufidius,36,coriolanus,1607 think,36,coriolanus,1607 Citizens,37,coriolanus,1607 mother,37,coriolanus,1607 up,37,coriolanus,1607 made,37,coriolanus,1607 own,37,coriolanus,1607 home,37,coriolanus,1607 Come,38,coriolanus,1607 give,38,coriolanus,1607 My,39,coriolanus,1607 hath,39,coriolanus,1607 This,39,coriolanus,1607 before,39,coriolanus,1607 yet,40,coriolanus,1607 can,41,coriolanus,1607 most,41,coriolanus,1607 city,41,coriolanus,1607 cannot,41,coriolanus,1607 power,41,coriolanus,1607 Than,42,coriolanus,1607 If,43,coriolanus,1607 Third,43,coriolanus,1607 hear,44,coriolanus,1607 Of,44,coriolanus,1607 should,44,coriolanus,1607 With,45,coriolanus,1607 Exeunt,45,coriolanus,1607 Senator,45,coriolanus,1607 Which,46,coriolanus,1607 am,46,coriolanus,1607 gods,46,coriolanus,1607 In,47,coriolanus,1607 o',47,coriolanus,1607 speak,47,coriolanus,1607 now,47,coriolanus,1607 come,47,coriolanus,1607 here,48,coriolanus,1607 For,48,coriolanus,1607 man,48,coriolanus,1607 Your,49,coriolanus,1607 when,49,coriolanus,1607 ',50,coriolanus,1607 O,51,coriolanus,1607 upon,51,coriolanus,1607 know,51,coriolanus,1607 out,51,coriolanus,1607 go,52,coriolanus,1607 must,53,coriolanus,1607 then,53,coriolanus,1607 I'll,53,coriolanus,1607 an,54,coriolanus,1607 noble,54,coriolanus,1607 or,55,coriolanus,1607 which,56,coriolanus,1607 like,56,coriolanus,1607 make,56,coriolanus,1607 But,56,coriolanus,1607 did,57,coriolanus,1607 We,58,coriolanus,1607 well,58,coriolanus,1607 were,58,coriolanus,1607 AUFIDIUS,59,coriolanus,1607 MARCIUS,59,coriolanus,1607 say,61,coriolanus,1607 from,61,coriolanus,1607 and,575,coriolanus,1607 Servingman,66,coriolanus,1607 As,67,coriolanus,1607 VOLUMNIA,67,coriolanus,1607 sir,68,coriolanus,1607 thee,68,coriolanus,1607 had,68,coriolanus,1607 at,69,coriolanus,1607 than,70,coriolanus,1607 one,70,coriolanus,1607 What,70,coriolanus,1607 thou,71,coriolanus,1607 was,71,coriolanus,1607 people,72,coriolanus,1607 Second,73,coriolanus,1607 Enter,73,coriolanus,1607 He,75,coriolanus,1607 on,75,coriolanus,1607 if,75,coriolanus,1607 Marcius,79,coriolanus,1607 thy,79,coriolanus,1607 good,81,coriolanus,1607 to,593,coriolanus,1607 That,84,coriolanus,1607 Citizen,84,coriolanus,1607 COMINIUS,85,coriolanus,1607 more,86,coriolanus,1607 what,87,coriolanus,1607 would,89,coriolanus,1607 A,90,coriolanus,1607 by,91,coriolanus,1607 a,349,coriolanus,1607 us,95,coriolanus,1607 You,98,coriolanus,1607 no,101,coriolanus,1607 Rome,101,coriolanus,1607 they,104,coriolanus,1607 do,106,coriolanus,1607 shall,107,coriolanus,1607 BRUTUS,109,coriolanus,1607 will,112,coriolanus,1607 so,114,coriolanus,1607 First,117,coriolanus,1607 their,118,coriolanus,1607 all,123,coriolanus,1607 To,127,coriolanus,1607 this,130,coriolanus,1607 them,134,coriolanus,1607 we,134,coriolanus,1607 SICINIUS,135,coriolanus,1607 but,137,coriolanus,1607 our,141,coriolanus,1607 are,143,coriolanus,1607 as,158,coriolanus,1607 me,168,coriolanus,1607 And,172,coriolanus,1607 the,942,coriolanus,1607 MENENIUS,181,coriolanus,1607 of,440,coriolanus,1607 The,185,coriolanus,1607 for,187,coriolanus,1607 be,198,coriolanus,1607 CORIOLANUS,207,coriolanus,1607 is,212,coriolanus,1607 it,212,coriolanus,1607 my,216,coriolanus,1607 that,235,coriolanus,1607 his,241,coriolanus,1607 your,249,coriolanus,1607 with,251,coriolanus,1607 have,255,coriolanus,1607 peopled,1,kinghenryv,1599 holding,1,kinghenryv,1599 drink'st,1,kinghenryv,1599 Frenchmen,1,kinghenryv,1599 kingdom's,1,kinghenryv,1599 cripple,1,kinghenryv,1599 mutability,1,kinghenryv,1599 volant,1,kinghenryv,1599 alehouse,1,kinghenryv,1599 assez,1,kinghenryv,1599 brawl,1,kinghenryv,1599 James,1,kinghenryv,1599 sleeve,1,kinghenryv,1599 Touching,1,kinghenryv,1599 galled,1,kinghenryv,1599 qualite,1,kinghenryv,1599 toll,1,kinghenryv,1599 digt,1,kinghenryv,1599 blowed,1,kinghenryv,1599 comings,1,kinghenryv,1599 dawn,1,kinghenryv,1599 troubles,1,kinghenryv,1599 poring,1,kinghenryv,1599 commissioners,1,kinghenryv,1599 angers,1,kinghenryv,1599 encamp,1,kinghenryv,1599 forbid,1,kinghenryv,1599 staves,1,kinghenryv,1599 tomb,1,kinghenryv,1599 Reigns,1,kinghenryv,1599 parted,1,kinghenryv,1599 relief,1,kinghenryv,1599 Brutus,1,kinghenryv,1599 Crowned,1,kinghenryv,1599 Crispianus,1,kinghenryv,1599 Norman,1,kinghenryv,1599 Wanting,1,kinghenryv,1599 muster,1,kinghenryv,1599 lamentable,1,kinghenryv,1599 rebuked,1,kinghenryv,1599 invisible,1,kinghenryv,1599 join,1,kinghenryv,1599 smiles,1,kinghenryv,1599 pith,1,kinghenryv,1599 gallants,1,kinghenryv,1599 yawning,1,kinghenryv,1599 safeguard,1,kinghenryv,1599 Proud,1,kinghenryv,1599 advice,1,kinghenryv,1599 Tells,1,kinghenryv,1599 basis,1,kinghenryv,1599 infant,1,kinghenryv,1599 exception,1,kinghenryv,1599 vanities,1,kinghenryv,1599 took,1,kinghenryv,1599 entendre,1,kinghenryv,1599 Delivering,1,kinghenryv,1599 Davy,1,kinghenryv,1599 infected,1,kinghenryv,1599 frankness,1,kinghenryv,1599 houses',1,kinghenryv,1599 diner,1,kinghenryv,1599 description,1,kinghenryv,1599 reputation,1,kinghenryv,1599 beadle,1,kinghenryv,1599 derived,1,kinghenryv,1599 noster,1,kinghenryv,1599 reckonings,1,kinghenryv,1599 cheer'd,1,kinghenryv,1599 yielding,1,kinghenryv,1599 Adam,1,kinghenryv,1599 churlish,1,kinghenryv,1599 pavilion'd,1,kinghenryv,1599 resist,1,kinghenryv,1599 Wonder,1,kinghenryv,1599 Picardy,1,kinghenryv,1599 infamy,1,kinghenryv,1599 Romans,1,kinghenryv,1599 speech,1,kinghenryv,1599 weasel,1,kinghenryv,1599 fewer,1,kinghenryv,1599 wears,1,kinghenryv,1599 Frenchman,1,kinghenryv,1599 scouring,1,kinghenryv,1599 Swill'd,1,kinghenryv,1599 raw,1,kinghenryv,1599 abutting,1,kinghenryv,1599 concavities,1,kinghenryv,1599 following,1,kinghenryv,1599 Charolois,1,kinghenryv,1599 kecksies,1,kinghenryv,1599 Grew,1,kinghenryv,1599 hinder,1,kinghenryv,1599 fuel,1,kinghenryv,1599 woman's,1,kinghenryv,1599 hempen,1,kinghenryv,1599 finished,1,kinghenryv,1599 Dites,1,kinghenryv,1599 ran,1,kinghenryv,1599 whiffler,1,kinghenryv,1599 lawful,1,kinghenryv,1599 unborn,1,kinghenryv,1599 broth,1,kinghenryv,1599 wafer,1,kinghenryv,1599 Hermes,1,kinghenryv,1599 rock,1,kinghenryv,1599 Issue,1,kinghenryv,1599 heure,1,kinghenryv,1599 Messengers,1,kinghenryv,1599 zeal,1,kinghenryv,1599 purge,1,kinghenryv,1599 truie,1,kinghenryv,1599 element,1,kinghenryv,1599 defunction,1,kinghenryv,1599 exploits,1,kinghenryv,1599 outrun,1,kinghenryv,1599 esteems,1,kinghenryv,1599 resign,1,kinghenryv,1599 shoulders,1,kinghenryv,1599 hemp,1,kinghenryv,1599 interpreter,1,kinghenryv,1599 mend,1,kinghenryv,1599 roi,1,kinghenryv,1599 heart's,1,kinghenryv,1599 stopp'd,1,kinghenryv,1599 rents,1,kinghenryv,1599 apprehended,1,kinghenryv,1599 day's,1,kinghenryv,1599 Bear,1,kinghenryv,1599 proclaim'd,1,kinghenryv,1599 road,1,kinghenryv,1599 express,1,kinghenryv,1599 epitaph,1,kinghenryv,1599 waxen,1,kinghenryv,1599 clipper,1,kinghenryv,1599 baiser,1,kinghenryv,1599 j'apprenne,1,kinghenryv,1599 Bartholomew,1,kinghenryv,1599 jot,1,kinghenryv,1599 vaulting,1,kinghenryv,1599 held,1,kinghenryv,1599 retort,1,kinghenryv,1599 countermines,1,kinghenryv,1599 helm,1,kinghenryv,1599 dire,1,kinghenryv,1599 Guichard,1,kinghenryv,1599 moiety,1,kinghenryv,1599 worried,1,kinghenryv,1599 appele,1,kinghenryv,1599 grandsire's,1,kinghenryv,1599 Christ,1,kinghenryv,1599 entered,1,kinghenryv,1599 needles,1,kinghenryv,1599 mess,1,kinghenryv,1599 piety,1,kinghenryv,1599 Covering,1,kinghenryv,1599 Muse,1,kinghenryv,1599 dash'd,1,kinghenryv,1599 beest,1,kinghenryv,1599 slaughter'd,1,kinghenryv,1599 clothes,1,kinghenryv,1599 finger,1,kinghenryv,1599 l'amour,1,kinghenryv,1599 trunk,1,kinghenryv,1599 surveys,1,kinghenryv,1599 celestial,1,kinghenryv,1599 unwholesome,1,kinghenryv,1599 security,1,kinghenryv,1599 sight,1,kinghenryv,1599 prosperous,1,kinghenryv,1599 gorgeous,1,kinghenryv,1599 errand,1,kinghenryv,1599 Pepin's,1,kinghenryv,1599 Girding,1,kinghenryv,1599 brook,1,kinghenryv,1599 Congreeing,1,kinghenryv,1599 paradise,1,kinghenryv,1599 rim,1,kinghenryv,1599 brightest,1,kinghenryv,1599 angels,1,kinghenryv,1599 Garnish'd,1,kinghenryv,1599 sugar,1,kinghenryv,1599 prisonnier,1,kinghenryv,1599 its,1,kinghenryv,1599 casques,1,kinghenryv,1599 m'estime,1,kinghenryv,1599 Scorn,1,kinghenryv,1599 Conceives,1,kinghenryv,1599 Angliae,1,kinghenryv,1599 Harry's,1,kinghenryv,1599 Ere,1,kinghenryv,1599 pier,1,kinghenryv,1599 suerly,1,kinghenryv,1599 stretched,1,kinghenryv,1599 underneath,1,kinghenryv,1599 nought,1,kinghenryv,1599 signs,1,kinghenryv,1599 pied,1,kinghenryv,1599 untempering,1,kinghenryv,1599 of't,1,kinghenryv,1599 suggest,1,kinghenryv,1599 pret,1,kinghenryv,1599 calls,1,kinghenryv,1599 thou'lt,1,kinghenryv,1599 Henricus,1,kinghenryv,1599 cheap,1,kinghenryv,1599 swerving,1,kinghenryv,1599 bourbier,1,kinghenryv,1599 Est,1,kinghenryv,1599 lieu,1,kinghenryv,1599 advise,1,kinghenryv,1599 Tearsheet,1,kinghenryv,1599 rail'd,1,kinghenryv,1599 worshipp'd,1,kinghenryv,1599 absolute,1,kinghenryv,1599 succedant,1,kinghenryv,1599 pick,1,kinghenryv,1599 Somme,1,kinghenryv,1599 hardiness,1,kinghenryv,1599 lustily,1,kinghenryv,1599 thirst,1,kinghenryv,1599 works,1,kinghenryv,1599 peseech,1,kinghenryv,1599 Quite,1,kinghenryv,1599 lief,1,kinghenryv,1599 Whom,1,kinghenryv,1599 abound,1,kinghenryv,1599 rated,1,kinghenryv,1599 wrest,1,kinghenryv,1599 prie,1,kinghenryv,1599 requiring,1,kinghenryv,1599 PERSONAE,1,kinghenryv,1599 wither,1,kinghenryv,1599 pouring,1,kinghenryv,1599 proclaim,1,kinghenryv,1599 agreed,1,kinghenryv,1599 sequestration,1,kinghenryv,1599 cudgell'd,1,kinghenryv,1599 spare,1,kinghenryv,1599 saved,1,kinghenryv,1599 Also,1,kinghenryv,1599 docks,1,kinghenryv,1599 spark,1,kinghenryv,1599 cast,1,kinghenryv,1599 shovel,1,kinghenryv,1599 cash,1,kinghenryv,1599 early,1,kinghenryv,1599 gallop,1,kinghenryv,1599 Carry,1,kinghenryv,1599 Alps,1,kinghenryv,1599 mistook,1,kinghenryv,1599 lustre,1,kinghenryv,1599 joyous,1,kinghenryv,1599 performance,1,kinghenryv,1599 adoration,1,kinghenryv,1599 corroborate,1,kinghenryv,1599 practised,1,kinghenryv,1599 plague,1,kinghenryv,1599 LEWIS,1,kinghenryv,1599 Description,1,kinghenryv,1599 overgrown,1,kinghenryv,1599 VIII,1,kinghenryv,1599 reign,1,kinghenryv,1599 Sweeten,1,kinghenryv,1599 fracted,1,kinghenryv,1599 disdain,1,kinghenryv,1599 sons,1,kinghenryv,1599 Patient,1,kinghenryv,1599 eleventh,1,kinghenryv,1599 birth,1,kinghenryv,1599 faites,1,kinghenryv,1599 espouse,1,kinghenryv,1599 jest,1,kinghenryv,1599 spawn,1,kinghenryv,1599 ruin'd,1,kinghenryv,1599 Bloody,1,kinghenryv,1599 thousands,1,kinghenryv,1599 matters,1,kinghenryv,1599 receiving,1,kinghenryv,1599 unjustly,1,kinghenryv,1599 sat,1,kinghenryv,1599 entrails,1,kinghenryv,1599 Clothair,1,kinghenryv,1599 backward,1,kinghenryv,1599 assembly,1,kinghenryv,1599 Henry's,1,kinghenryv,1599 affability,1,kinghenryv,1599 call'st,1,kinghenryv,1599 opposed,1,kinghenryv,1599 limp,1,kinghenryv,1599 lamentation,1,kinghenryv,1599 Wearing,1,kinghenryv,1599 Combine,1,kinghenryv,1599 crying,1,kinghenryv,1599 autre,1,kinghenryv,1599 genoux,1,kinghenryv,1599 caps,1,kinghenryv,1599 pike,1,kinghenryv,1599 tous,1,kinghenryv,1599 ALEXANDER,1,kinghenryv,1599 End,1,kinghenryv,1599 afterwards,1,kinghenryv,1599 plight,1,kinghenryv,1599 Much,1,kinghenryv,1599 borderers,1,kinghenryv,1599 honestly,1,kinghenryv,1599 concerns,1,kinghenryv,1599 town's,1,kinghenryv,1599 Know'st,1,kinghenryv,1599 farced,1,kinghenryv,1599 j'ai,1,kinghenryv,1599 rein'd,1,kinghenryv,1599 disobey,1,kinghenryv,1599 necessaries,1,kinghenryv,1599 intoxicates,1,kinghenryv,1599 cheer,1,kinghenryv,1599 nasty,1,kinghenryv,1599 tenors,1,kinghenryv,1599 intellectual,1,kinghenryv,1599 offenders,1,kinghenryv,1599 undid,1,kinghenryv,1599 Only,1,kinghenryv,1599 Quiet,1,kinghenryv,1599 Praeclarissimus,1,kinghenryv,1599 repetition,1,kinghenryv,1599 soonest,1,kinghenryv,1599 bragging,1,kinghenryv,1599 yearns,1,kinghenryv,1599 Tarry,1,kinghenryv,1599 officers,1,kinghenryv,1599 Yield,1,kinghenryv,1599 rider,1,kinghenryv,1599 pilfering,1,kinghenryv,1599 jour,1,kinghenryv,1599 kneading,1,kinghenryv,1599 confining,1,kinghenryv,1599 rites,1,kinghenryv,1599 sixteen,1,kinghenryv,1599 lazars,1,kinghenryv,1599 fools,1,kinghenryv,1599 addition,1,kinghenryv,1599 faiths,1,kinghenryv,1599 contrite,1,kinghenryv,1599 Non,1,kinghenryv,1599 richer,1,kinghenryv,1599 riches,1,kinghenryv,1599 fumitory,1,kinghenryv,1599 tway,1,kinghenryv,1599 Assume,1,kinghenryv,1599 Encore,1,kinghenryv,1599 Pegasus,1,kinghenryv,1599 palfrey,1,kinghenryv,1599 preachers,1,kinghenryv,1599 Leash'd,1,kinghenryv,1599 inhuman,1,kinghenryv,1599 O'erblows,1,kinghenryv,1599 Winding,1,kinghenryv,1599 Collect,1,kinghenryv,1599 kin,1,kinghenryv,1599 began,1,kinghenryv,1599 narines,1,kinghenryv,1599 perjured,1,kinghenryv,1599 general's,1,kinghenryv,1599 Belonging,1,kinghenryv,1599 patterns,1,kinghenryv,1599 Pistol's,1,kinghenryv,1599 admiring,1,kinghenryv,1599 Anglish,1,kinghenryv,1599 companies,1,kinghenryv,1599 Assyrian,1,kinghenryv,1599 further,1,kinghenryv,1599 mounts,1,kinghenryv,1599 madams,1,kinghenryv,1599 Expound,1,kinghenryv,1599 ladies',1,kinghenryv,1599 soar,1,kinghenryv,1599 discovery,1,kinghenryv,1599 pillow,1,kinghenryv,1599 Gently,1,kinghenryv,1599 provender,1,kinghenryv,1599 handling,1,kinghenryv,1599 plucked,1,kinghenryv,1599 antics,1,kinghenryv,1599 soak'd,1,kinghenryv,1599 suns,1,kinghenryv,1599 march'd,1,kinghenryv,1599 sheathed,1,kinghenryv,1599 customs,1,kinghenryv,1599 shames,1,kinghenryv,1599 skirr,1,kinghenryv,1599 ecoutez,1,kinghenryv,1599 sung,1,kinghenryv,1599 erst,1,kinghenryv,1599 Fills,1,kinghenryv,1599 Presenteth,1,kinghenryv,1599 whatsoever,1,kinghenryv,1599 perdy,1,kinghenryv,1599 talked,1,kinghenryv,1599 pread,1,kinghenryv,1599 Pales,1,kinghenryv,1599 Get,1,kinghenryv,1599 faithfully,1,kinghenryv,1599 prevail'd,1,kinghenryv,1599 merriest,1,kinghenryv,1599 sprays,1,kinghenryv,1599 egregious,1,kinghenryv,1599 knavish,1,kinghenryv,1599 impossible,1,kinghenryv,1599 accompt,1,kinghenryv,1599 Knowest,1,kinghenryv,1599 'twere,1,kinghenryv,1599 command'st,1,kinghenryv,1599 'Wonder,1,kinghenryv,1599 mowing,1,kinghenryv,1599 robbing,1,kinghenryv,1599 key,1,kinghenryv,1599 think'st,1,kinghenryv,1599 subdued,1,kinghenryv,1599 Englishman's,1,kinghenryv,1599 saddle,1,kinghenryv,1599 affiance,1,kinghenryv,1599 invention,1,kinghenryv,1599 Perseus,1,kinghenryv,1599 yeoman,1,kinghenryv,1599 sunken,1,kinghenryv,1599 Driving,1,kinghenryv,1599 vice,1,kinghenryv,1599 thatch,1,kinghenryv,1599 Creating,1,kinghenryv,1599 mocking,1,kinghenryv,1599 coals,1,kinghenryv,1599 seals,1,kinghenryv,1599 coronets,1,kinghenryv,1599 touched,1,kinghenryv,1599 throngs,1,kinghenryv,1599 beguiling,1,kinghenryv,1599 streamers,1,kinghenryv,1599 bogs,1,kinghenryv,1599 chronicles,1,kinghenryv,1599 communication,1,kinghenryv,1599 famish'd,1,kinghenryv,1599 spherical,1,kinghenryv,1599 throng,1,kinghenryv,1599 'twas,1,kinghenryv,1599 anew,1,kinghenryv,1599 peevish,1,kinghenryv,1599 beasts,1,kinghenryv,1599 lions,1,kinghenryv,1599 passport,1,kinghenryv,1599 intendment,1,kinghenryv,1599 disposed,1,kinghenryv,1599 chez,1,kinghenryv,1599 abused,1,kinghenryv,1599 cher,1,kinghenryv,1599 score,1,kinghenryv,1599 betrayed,1,kinghenryv,1599 livest,1,kinghenryv,1599 mauvais,1,kinghenryv,1599 combine,1,kinghenryv,1599 embrace,1,kinghenryv,1599 Ketly,1,kinghenryv,1599 Seem'd,1,kinghenryv,1599 sow,1,kinghenryv,1599 vine,1,kinghenryv,1599 terre,1,kinghenryv,1599 confident,1,kinghenryv,1599 constraint,1,kinghenryv,1599 looking,1,kinghenryv,1599 wight,1,kinghenryv,1599 compelled,1,kinghenryv,1599 counsel,1,kinghenryv,1599 ashore,1,kinghenryv,1599 countenance,1,kinghenryv,1599 scour,1,kinghenryv,1599 attends,1,kinghenryv,1599 stern,1,kinghenryv,1599 Discuss,1,kinghenryv,1599 Points,1,kinghenryv,1599 admittance,1,kinghenryv,1599 Angleterre,1,kinghenryv,1599 kindly,1,kinghenryv,1599 cloy'd,1,kinghenryv,1599 interview,1,kinghenryv,1599 't,1,kinghenryv,1599 Numbers,1,kinghenryv,1599 husks,1,kinghenryv,1599 commends,1,kinghenryv,1599 squares,1,kinghenryv,1599 sky,1,kinghenryv,1599 rackets,1,kinghenryv,1599 scythe,1,kinghenryv,1599 gather,1,kinghenryv,1599 unmatchable,1,kinghenryv,1599 groans,1,kinghenryv,1599 Setting,1,kinghenryv,1599 quondam,1,kinghenryv,1599 d'echapper,1,kinghenryv,1599 Capet's,1,kinghenryv,1599 league,1,kinghenryv,1599 either's,1,kinghenryv,1599 horses',1,kinghenryv,1599 mother,1,kinghenryv,1599 Confirm'd,1,kinghenryv,1599 bough,1,kinghenryv,1599 Spain,1,kinghenryv,1599 conjunction,1,kinghenryv,1599 quittance,1,kinghenryv,1599 cheese,1,kinghenryv,1599 suffered,1,kinghenryv,1599 legerity,1,kinghenryv,1599 condole,1,kinghenryv,1599 Anthony,1,kinghenryv,1599 gayness,1,kinghenryv,1599 inconveniences,1,kinghenryv,1599 apples,1,kinghenryv,1599 seats,1,kinghenryv,1599 loosed,1,kinghenryv,1599 Gam,1,kinghenryv,1599 thieves,1,kinghenryv,1599 appetites,1,kinghenryv,1599 offence,1,kinghenryv,1599 grund,1,kinghenryv,1599 suppress'd,1,kinghenryv,1599 Albion,1,kinghenryv,1599 freckled,1,kinghenryv,1599 everlasting,1,kinghenryv,1599 worse,1,kinghenryv,1599 merit,1,kinghenryv,1599 wraths,1,kinghenryv,1599 mocks,1,kinghenryv,1599 accursed,1,kinghenryv,1599 burdens,1,kinghenryv,1599 misbecome,1,kinghenryv,1599 gagne,1,kinghenryv,1599 lecon,1,kinghenryv,1599 Bretagne,1,kinghenryv,1599 O'erhang,1,kinghenryv,1599 compassing,1,kinghenryv,1599 received,1,kinghenryv,1599 passes,1,kinghenryv,1599 dull'd,1,kinghenryv,1599 j'oublie,1,kinghenryv,1599 merchants,1,kinghenryv,1599 foils,1,kinghenryv,1599 savagery,1,kinghenryv,1599 snow,1,kinghenryv,1599 ante,1,kinghenryv,1599 murmur,1,kinghenryv,1599 bettre,1,kinghenryv,1599 brain,1,kinghenryv,1599 Out,1,kinghenryv,1599 merchante,1,kinghenryv,1599 roots,1,kinghenryv,1599 turf,1,kinghenryv,1599 corantos,1,kinghenryv,1599 banquets,1,kinghenryv,1599 climbing,1,kinghenryv,1599 crime,1,kinghenryv,1599 guarded,1,kinghenryv,1599 Galling,1,kinghenryv,1599 bore,1,kinghenryv,1599 seduce,1,kinghenryv,1599 pasterns,1,kinghenryv,1599 brags,1,kinghenryv,1599 habit,1,kinghenryv,1599 Whereof,1,kinghenryv,1599 figure,1,kinghenryv,1599 kill'd,1,kinghenryv,1599 pennons,1,kinghenryv,1599 luxurious,1,kinghenryv,1599 Turk,1,kinghenryv,1599 Willing,1,kinghenryv,1599 ensemble,1,kinghenryv,1599 lucky,1,kinghenryv,1599 worrying,1,kinghenryv,1599 Owy,1,kinghenryv,1599 runs,1,kinghenryv,1599 endeavours,1,kinghenryv,1599 actions,1,kinghenryv,1599 encounter,1,kinghenryv,1599 ruminate,1,kinghenryv,1599 loose,1,kinghenryv,1599 lurketh,1,kinghenryv,1599 beseeched,1,kinghenryv,1599 aucun,1,kinghenryv,1599 Pardon,1,kinghenryv,1599 mark'd,1,kinghenryv,1599 instance,1,kinghenryv,1599 raked,1,kinghenryv,1599 displeasures,1,kinghenryv,1599 unable,1,kinghenryv,1599 household,1,kinghenryv,1599 cavaliers,1,kinghenryv,1599 swiftness,1,kinghenryv,1599 consented,1,kinghenryv,1599 Beholding,1,kinghenryv,1599 charming,1,kinghenryv,1599 pearl,1,kinghenryv,1599 thence,1,kinghenryv,1599 Array'd,1,kinghenryv,1599 Whilst,1,kinghenryv,1599 model,1,kinghenryv,1599 plood,1,kinghenryv,1599 manhoods,1,kinghenryv,1599 humble,1,kinghenryv,1599 adventurously,1,kinghenryv,1599 mitigation,1,kinghenryv,1599 vanity,1,kinghenryv,1599 Kings,1,kinghenryv,1599 reverence,1,kinghenryv,1599 feed,1,kinghenryv,1599 accent,1,kinghenryv,1599 popularity,1,kinghenryv,1599 rein,1,kinghenryv,1599 pedigree,1,kinghenryv,1599 cease,1,kinghenryv,1599 bows,1,kinghenryv,1599 punish,1,kinghenryv,1599 gros,1,kinghenryv,1599 noblest,1,kinghenryv,1599 plainly,1,kinghenryv,1599 temporal,1,kinghenryv,1599 directed,1,kinghenryv,1599 Spirt,1,kinghenryv,1599 relish,1,kinghenryv,1599 swore,1,kinghenryv,1599 brief,1,kinghenryv,1599 accept,1,kinghenryv,1599 toddle,1,kinghenryv,1599 baser,1,kinghenryv,1599 corrupt,1,kinghenryv,1599 'Non,1,kinghenryv,1599 ancient,1,kinghenryv,1599 'Now,1,kinghenryv,1599 wrangler,1,kinghenryv,1599 false,1,kinghenryv,1599 weather,1,kinghenryv,1599 speaking,1,kinghenryv,1599 protestation,1,kinghenryv,1599 choose,1,kinghenryv,1599 rude,1,kinghenryv,1599 Princely,1,kinghenryv,1599 langage,1,kinghenryv,1599 Fly,1,kinghenryv,1599 Vouchsafe,1,kinghenryv,1599 Latin,1,kinghenryv,1599 Hence,1,kinghenryv,1599 language,1,kinghenryv,1599 trompet,1,kinghenryv,1599 wins,1,kinghenryv,1599 baptism,1,kinghenryv,1599 pocketing,1,kinghenryv,1599 tiger,1,kinghenryv,1599 monarchy,1,kinghenryv,1599 caves,1,kinghenryv,1599 sconce,1,kinghenryv,1599 dedicate,1,kinghenryv,1599 lavoltas,1,kinghenryv,1599 night's,1,kinghenryv,1599 wardrobe,1,kinghenryv,1599 peasants,1,kinghenryv,1599 warily,1,kinghenryv,1599 sparingly,1,kinghenryv,1599 upreared,1,kinghenryv,1599 Englishman,1,kinghenryv,1599 know'st,1,kinghenryv,1599 ainsi,1,kinghenryv,1599 bolt,1,kinghenryv,1599 diet,1,kinghenryv,1599 scaffold,1,kinghenryv,1599 ruin,1,kinghenryv,1599 renew,1,kinghenryv,1599 king'd,1,kinghenryv,1599 rivets,1,kinghenryv,1599 requests,1,kinghenryv,1599 esquire,1,kinghenryv,1599 anon,1,kinghenryv,1599 directly,1,kinghenryv,1599 custom,1,kinghenryv,1599 mead,1,kinghenryv,1599 distressful,1,kinghenryv,1599 eagle,1,kinghenryv,1599 Putting,1,kinghenryv,1599 sooth,1,kinghenryv,1599 displeasure,1,kinghenryv,1599 victuals,1,kinghenryv,1599 besmirch'd,1,kinghenryv,1599 bully,1,kinghenryv,1599 Fetch,1,kinghenryv,1599 world's,1,kinghenryv,1599 popular,1,kinghenryv,1599 summon,1,kinghenryv,1599 rebellion,1,kinghenryv,1599 bidding,1,kinghenryv,1599 malady,1,kinghenryv,1599 stop,1,kinghenryv,1599 warm,1,kinghenryv,1599 dukedom,1,kinghenryv,1599 claps,1,kinghenryv,1599 breeding,1,kinghenryv,1599 entre,1,kinghenryv,1599 melted,1,kinghenryv,1599 envelop,1,kinghenryv,1599 Imploring,1,kinghenryv,1599 boot,1,kinghenryv,1599 mistake,1,kinghenryv,1599 steed,1,kinghenryv,1599 flowing,1,kinghenryv,1599 gesture,1,kinghenryv,1599 revel,1,kinghenryv,1599 Plantagenet,1,kinghenryv,1599 Foh,1,kinghenryv,1599 roofs,1,kinghenryv,1599 book,1,kinghenryv,1599 HENRY'S,1,kinghenryv,1599 Perish,1,kinghenryv,1599 alliance,1,kinghenryv,1599 bright,1,kinghenryv,1599 framed,1,kinghenryv,1599 gripe,1,kinghenryv,1599 created,1,kinghenryv,1599 praises,1,kinghenryv,1599 m'enseignez,1,kinghenryv,1599 'Solus,1,kinghenryv,1599 L'air,1,kinghenryv,1599 Draw,1,kinghenryv,1599 hungry,1,kinghenryv,1599 viper,1,kinghenryv,1599 intelligence,1,kinghenryv,1599 healthful,1,kinghenryv,1599 conquer,1,kinghenryv,1599 uncoined,1,kinghenryv,1599 fairest,1,kinghenryv,1599 goddess,1,kinghenryv,1599 astonished,1,kinghenryv,1599 bit,1,kinghenryv,1599 unquiet,1,kinghenryv,1599 urge,1,kinghenryv,1599 prononcer,1,kinghenryv,1599 nephew,1,kinghenryv,1599 Lingare,1,kinghenryv,1599 opening,1,kinghenryv,1599 dissensions,1,kinghenryv,1599 prononcez,1,kinghenryv,1599 mistaken,1,kinghenryv,1599 grievous,1,kinghenryv,1599 mickle,1,kinghenryv,1599 side,1,kinghenryv,1599 ha',1,kinghenryv,1599 verily,1,kinghenryv,1599 housewifery,1,kinghenryv,1599 bastards,1,kinghenryv,1599 marriages,1,kinghenryv,1599 I',1,kinghenryv,1599 define,1,kinghenryv,1599 stir,1,kinghenryv,1599 propre,1,kinghenryv,1599 enfeebled,1,kinghenryv,1599 Plack,1,kinghenryv,1599 ploughs,1,kinghenryv,1599 forespent,1,kinghenryv,1599 permafoy,1,kinghenryv,1599 Babylon,1,kinghenryv,1599 swellings,1,kinghenryv,1599 kern,1,kinghenryv,1599 rusty,1,kinghenryv,1599 Certainly,1,kinghenryv,1599 rusts,1,kinghenryv,1599 intertissued,1,kinghenryv,1599 commons,1,kinghenryv,1599 Pig,1,kinghenryv,1599 overthrow,1,kinghenryv,1599 l'avez,1,kinghenryv,1599 climate,1,kinghenryv,1599 Draws,1,kinghenryv,1599 Hydra,1,kinghenryv,1599 streams,1,kinghenryv,1599 talks,1,kinghenryv,1599 chronicle,1,kinghenryv,1599 religious,1,kinghenryv,1599 shales,1,kinghenryv,1599 seigeurie,1,kinghenryv,1599 foresaid,1,kinghenryv,1599 noces,1,kinghenryv,1599 Possess,1,kinghenryv,1599 kneeling,1,kinghenryv,1599 Trail'st,1,kinghenryv,1599 par,1,kinghenryv,1599 perfection,1,kinghenryv,1599 Ah,1,kinghenryv,1599 controversy,1,kinghenryv,1599 acknowledgement,1,kinghenryv,1599 altogether,1,kinghenryv,1599 stubborn,1,kinghenryv,1599 showing,1,kinghenryv,1599 Reproach,1,kinghenryv,1599 'Through,1,kinghenryv,1599 activity,1,kinghenryv,1599 summered,1,kinghenryv,1599 fool's,1,kinghenryv,1599 surety,1,kinghenryv,1599 meads,1,kinghenryv,1599 Ca,1,kinghenryv,1599 forge,1,kinghenryv,1599 pan,1,kinghenryv,1599 masons,1,kinghenryv,1599 hilding,1,kinghenryv,1599 chopped,1,kinghenryv,1599 Gloucester's,1,kinghenryv,1599 Establish'd,1,kinghenryv,1599 eternal,1,kinghenryv,1599 motionless,1,kinghenryv,1599 verify,1,kinghenryv,1599 Treason,1,kinghenryv,1599 Those,1,kinghenryv,1599 beggar'd,1,kinghenryv,1599 wash'd,1,kinghenryv,1599 Twin,1,kinghenryv,1599 unnatural,1,kinghenryv,1599 retirement,1,kinghenryv,1599 fortify,1,kinghenryv,1599 among,1,kinghenryv,1599 desperate,1,kinghenryv,1599 fausse,1,kinghenryv,1599 Still,1,kinghenryv,1599 spoil'd,1,kinghenryv,1599 Neanmoins,1,kinghenryv,1599 Play,1,kinghenryv,1599 Ciel,1,kinghenryv,1599 career,1,kinghenryv,1599 hitherto,1,kinghenryv,1599 pander,1,kinghenryv,1599 scaling,1,kinghenryv,1599 imagined,1,kinghenryv,1599 hoped,1,kinghenryv,1599 pays,1,kinghenryv,1599 lands,1,kinghenryv,1599 sonance,1,kinghenryv,1599 imbar,1,kinghenryv,1599 vivant,1,kinghenryv,1599 livered,1,kinghenryv,1599 empery,1,kinghenryv,1599 proof,1,kinghenryv,1599 gained,1,kinghenryv,1599 Says,1,kinghenryv,1599 brained,1,kinghenryv,1599 butt,1,kinghenryv,1599 pettiness,1,kinghenryv,1599 greatly,1,kinghenryv,1599 belike,1,kinghenryv,1599 Pay,1,kinghenryv,1599 diffused,1,kinghenryv,1599 creature,1,kinghenryv,1599 gleeking,1,kinghenryv,1599 merited,1,kinghenryv,1599 star,1,kinghenryv,1599 denied,1,kinghenryv,1599 Parca's,1,kinghenryv,1599 elle,1,kinghenryv,1599 contending,1,kinghenryv,1599 tales,1,kinghenryv,1599 dismounted,1,kinghenryv,1599 begun,1,kinghenryv,1599 shines,1,kinghenryv,1599 stab,1,kinghenryv,1599 Linger,1,kinghenryv,1599 sings,1,kinghenryv,1599 closely,1,kinghenryv,1599 wisdom,1,kinghenryv,1599 ashes,1,kinghenryv,1599 miracles,1,kinghenryv,1599 Francois,1,kinghenryv,1599 'long,1,kinghenryv,1599 tear,1,kinghenryv,1599 d'un,1,kinghenryv,1599 Ha,1,kinghenryv,1599 flowers,1,kinghenryv,1599 movables,1,kinghenryv,1599 required,1,kinghenryv,1599 beg,1,kinghenryv,1599 finer,1,kinghenryv,1599 botch,1,kinghenryv,1599 miser,1,kinghenryv,1599 meant,1,kinghenryv,1599 fingers',1,kinghenryv,1599 fined,1,kinghenryv,1599 Decoct,1,kinghenryv,1599 unfurnish'd,1,kinghenryv,1599 pattle,1,kinghenryv,1599 Montez,1,kinghenryv,1599 Sword,1,kinghenryv,1599 deserved,1,kinghenryv,1599 appoint,1,kinghenryv,1599 ease,1,kinghenryv,1599 digest,1,kinghenryv,1599 mercifully,1,kinghenryv,1599 braggart,1,kinghenryv,1599 proverbs,1,kinghenryv,1599 bruised,1,kinghenryv,1599 wither'd,1,kinghenryv,1599 addiction,1,kinghenryv,1599 added,1,kinghenryv,1599 impieties,1,kinghenryv,1599 ungotten,1,kinghenryv,1599 m'avez,1,kinghenryv,1599 sport,1,kinghenryv,1599 condemned,1,kinghenryv,1599 meals,1,kinghenryv,1599 whipp'd,1,kinghenryv,1599 treachery,1,kinghenryv,1599 stem,1,kinghenryv,1599 navy,1,kinghenryv,1599 hemlock,1,kinghenryv,1599 Almost,1,kinghenryv,1599 Tenth,1,kinghenryv,1599 changes,1,kinghenryv,1599 pox,1,kinghenryv,1599 nobility,1,kinghenryv,1599 matched,1,kinghenryv,1599 Is't,1,kinghenryv,1599 Scarce,1,kinghenryv,1599 Un,1,kinghenryv,1599 indigne,1,kinghenryv,1599 admiral,1,kinghenryv,1599 batailles,1,kinghenryv,1599 pot,1,kinghenryv,1599 cull'd,1,kinghenryv,1599 formerly,1,kinghenryv,1599 d'Anglois,1,kinghenryv,1599 Heave,1,kinghenryv,1599 outlive,1,kinghenryv,1599 prove,1,kinghenryv,1599 curled,1,kinghenryv,1599 whoop,1,kinghenryv,1599 Seems,1,kinghenryv,1599 sire,1,kinghenryv,1599 demon,1,kinghenryv,1599 corrupted,1,kinghenryv,1599 kiss'd,1,kinghenryv,1599 wringing,1,kinghenryv,1599 Antony,1,kinghenryv,1599 lessened,1,kinghenryv,1599 priests,1,kinghenryv,1599 god,1,kinghenryv,1599 grazing,1,kinghenryv,1599 broached,1,kinghenryv,1599 sought,1,kinghenryv,1599 Minding,1,kinghenryv,1599 whore,1,kinghenryv,1599 lambkins,1,kinghenryv,1599 mountain's,1,kinghenryv,1599 resolves,1,kinghenryv,1599 Enlink'd,1,kinghenryv,1599 quicken'd,1,kinghenryv,1599 whatever,1,kinghenryv,1599 weed,1,kinghenryv,1599 misericorde,1,kinghenryv,1599 paction,1,kinghenryv,1599 relapse,1,kinghenryv,1599 morning's,1,kinghenryv,1599 pragging,1,kinghenryv,1599 tromperies,1,kinghenryv,1599 writers,1,kinghenryv,1599 Open,1,kinghenryv,1599 spotless,1,kinghenryv,1599 icicles,1,kinghenryv,1599 busy,1,kinghenryv,1599 Receive,1,kinghenryv,1599 swaggered,1,kinghenryv,1599 stray,1,kinghenryv,1599 grief,1,kinghenryv,1599 coude,1,kinghenryv,1599 Augment,1,kinghenryv,1599 runaways,1,kinghenryv,1599 gimmal,1,kinghenryv,1599 imagine,1,kinghenryv,1599 miscarry,1,kinghenryv,1599 burs,1,kinghenryv,1599 bury,1,kinghenryv,1599 cowarded,1,kinghenryv,1599 'Twould,1,kinghenryv,1599 Sits,1,kinghenryv,1599 perdition,1,kinghenryv,1599 difference,1,kinghenryv,1599 kindness,1,kinghenryv,1599 dout,1,kinghenryv,1599 car,1,kinghenryv,1599 Childeric,1,kinghenryv,1599 neglecting,1,kinghenryv,1599 chattels,1,kinghenryv,1599 prater,1,kinghenryv,1599 reeking,1,kinghenryv,1599 cockpit,1,kinghenryv,1599 petition,1,kinghenryv,1599 Plant,1,kinghenryv,1599 pry,1,kinghenryv,1599 'tween,1,kinghenryv,1599 moreover,1,kinghenryv,1599 meetest,1,kinghenryv,1599 devilish,1,kinghenryv,1599 reference,1,kinghenryv,1599 wrecked,1,kinghenryv,1599 impudique,1,kinghenryv,1599 grandeur,1,kinghenryv,1599 couch,1,kinghenryv,1599 devised,1,kinghenryv,1599 fatally,1,kinghenryv,1599 latest,1,kinghenryv,1599 bent,1,kinghenryv,1599 pitie,1,kinghenryv,1599 craft,1,kinghenryv,1599 treasons,1,kinghenryv,1599 Dying,1,kinghenryv,1599 gum,1,kinghenryv,1599 bottles,1,kinghenryv,1599 Lies,1,kinghenryv,1599 vaunting,1,kinghenryv,1599 idleness,1,kinghenryv,1599 quotidian,1,kinghenryv,1599 jealous,1,kinghenryv,1599 plough,1,kinghenryv,1599 captains,1,kinghenryv,1599 afore,1,kinghenryv,1599 Welshmen,1,kinghenryv,1599 bended,1,kinghenryv,1599 verite,1,kinghenryv,1599 buds,1,kinghenryv,1599 Fathers,1,kinghenryv,1599 bulwark,1,kinghenryv,1599 baisant,1,kinghenryv,1599 smoothed,1,kinghenryv,1599 leeches,1,kinghenryv,1599 gamester,1,kinghenryv,1599 nobis',1,kinghenryv,1599 Egregious,1,kinghenryv,1599 sunless,1,kinghenryv,1599 theme,1,kinghenryv,1599 gunner,1,kinghenryv,1599 friendly,1,kinghenryv,1599 advantageable,1,kinghenryv,1599 royally,1,kinghenryv,1599 mechanic,1,kinghenryv,1599 conquest,1,kinghenryv,1599 conjuration,1,kinghenryv,1599 doute,1,kinghenryv,1599 adulation,1,kinghenryv,1599 Sing,1,kinghenryv,1599 curse,1,kinghenryv,1599 badge,1,kinghenryv,1599 'Tarry,1,kinghenryv,1599 beget,1,kinghenryv,1599 despite,1,kinghenryv,1599 moods,1,kinghenryv,1599 Bringing,1,kinghenryv,1599 lequel,1,kinghenryv,1599 heureux,1,kinghenryv,1599 vassal,1,kinghenryv,1599 cruelly,1,kinghenryv,1599 preserve,1,kinghenryv,1599 bees,1,kinghenryv,1599 survey,1,kinghenryv,1599 O'er,1,kinghenryv,1599 Enough,1,kinghenryv,1599 About,1,kinghenryv,1599 Notre,1,kinghenryv,1599 situations,1,kinghenryv,1599 sins,1,kinghenryv,1599 ambassadors,1,kinghenryv,1599 consciences,1,kinghenryv,1599 sink,1,kinghenryv,1599 game's,1,kinghenryv,1599 cudgelled,1,kinghenryv,1599 gate,1,kinghenryv,1599 'Twas,1,kinghenryv,1599 sing,1,kinghenryv,1599 fulness,1,kinghenryv,1599 Prevented,1,kinghenryv,1599 twigs,1,kinghenryv,1599 seigneurs,1,kinghenryv,1599 coulter,1,kinghenryv,1599 Got,1,kinghenryv,1599 ashamed,1,kinghenryv,1599 complement,1,kinghenryv,1599 gasp,1,kinghenryv,1599 immortal,1,kinghenryv,1599 lately,1,kinghenryv,1599 pardonnez,1,kinghenryv,1599 beginning,1,kinghenryv,1599 buxom,1,kinghenryv,1599 garb,1,kinghenryv,1599 sternage,1,kinghenryv,1599 inheritance,1,kinghenryv,1599 swaying,1,kinghenryv,1599 grandmother,1,kinghenryv,1599 abaissiez,1,kinghenryv,1599 flashing,1,kinghenryv,1599 currance,1,kinghenryv,1599 solemn,1,kinghenryv,1599 store,1,kinghenryv,1599 noted,1,kinghenryv,1599 raught,1,kinghenryv,1599 etre,1,kinghenryv,1599 solely,1,kinghenryv,1599 virgin,1,kinghenryv,1599 sail,1,kinghenryv,1599 ravage,1,kinghenryv,1599 conquering,1,kinghenryv,1599 distingue,1,kinghenryv,1599 valleys,1,kinghenryv,1599 papers,1,kinghenryv,1599 Huntingdon,1,kinghenryv,1599 Cannot,1,kinghenryv,1599 breast,1,kinghenryv,1599 aim,1,kinghenryv,1599 expedience,1,kinghenryv,1599 promises,1,kinghenryv,1599 sheds,1,kinghenryv,1599 gallows,1,kinghenryv,1599 du,1,kinghenryv,1599 blithe,1,kinghenryv,1599 sage,1,kinghenryv,1599 tyrant,1,kinghenryv,1599 Mock,1,kinghenryv,1599 satisfy,1,kinghenryv,1599 enrounded,1,kinghenryv,1599 aid,1,kinghenryv,1599 spirited,1,kinghenryv,1599 stops,1,kinghenryv,1599 shouts,1,kinghenryv,1599 Here's,1,kinghenryv,1599 forbids,1,kinghenryv,1599 battery,1,kinghenryv,1599 lineal,1,kinghenryv,1599 'Give,1,kinghenryv,1599 deck,1,kinghenryv,1599 beat,1,kinghenryv,1599 fetter'd,1,kinghenryv,1599 ooze,1,kinghenryv,1599 wreck,1,kinghenryv,1599 Dolphin,1,kinghenryv,1599 Making,1,kinghenryv,1599 tawny,1,kinghenryv,1599 Usurp'd,1,kinghenryv,1599 rightful,1,kinghenryv,1599 slovenry,1,kinghenryv,1599 snatchers,1,kinghenryv,1599 barley,1,kinghenryv,1599 Crete,1,kinghenryv,1599 Pass,1,kinghenryv,1599 gentlewomen,1,kinghenryv,1599 Jewry,1,kinghenryv,1599 dwell,1,kinghenryv,1599 tragedy,1,kinghenryv,1599 liberal,1,kinghenryv,1599 gait,1,kinghenryv,1599 vouchsafe,1,kinghenryv,1599 dignity,1,kinghenryv,1599 seeing,1,kinghenryv,1599 worthily,1,kinghenryv,1599 gild,1,kinghenryv,1599 'Fore,1,kinghenryv,1599 interim,1,kinghenryv,1599 continual,1,kinghenryv,1599 makers,1,kinghenryv,1599 eloquent,1,kinghenryv,1599 lend,1,kinghenryv,1599 rainy,1,kinghenryv,1599 edged,1,kinghenryv,1599 destruction,1,kinghenryv,1599 nettle,1,kinghenryv,1599 sack,1,kinghenryv,1599 laughing,1,kinghenryv,1599 ici,1,kinghenryv,1599 lady's,1,kinghenryv,1599 edges,1,kinghenryv,1599 Clarence,1,kinghenryv,1599 ice,1,kinghenryv,1599 generally,1,kinghenryv,1599 Fought,1,kinghenryv,1599 glistering,1,kinghenryv,1599 Divide,1,kinghenryv,1599 List,1,kinghenryv,1599 b',1,kinghenryv,1599 appeared,1,kinghenryv,1599 makest,1,kinghenryv,1599 houses,1,kinghenryv,1599 ay,1,kinghenryv,1599 Yon,1,kinghenryv,1599 cram,1,kinghenryv,1599 an',1,kinghenryv,1599 apes,1,kinghenryv,1599 memory,1,kinghenryv,1599 au,1,kinghenryv,1599 gentlewoman,1,kinghenryv,1599 Neighbour'd,1,kinghenryv,1599 reckon,1,kinghenryv,1599 ai,1,kinghenryv,1599 slips,1,kinghenryv,1599 cruelty,1,kinghenryv,1599 porters,1,kinghenryv,1599 manner,1,kinghenryv,1599 wearest,1,kinghenryv,1599 defends,1,kinghenryv,1599 interred,1,kinghenryv,1599 growth,1,kinghenryv,1599 newly,1,kinghenryv,1599 enclosed,1,kinghenryv,1599 Staines,1,kinghenryv,1599 temperate,1,kinghenryv,1599 perspectively,1,kinghenryv,1599 donnerai,1,kinghenryv,1599 Walking,1,kinghenryv,1599 mille,1,kinghenryv,1599 doom,1,kinghenryv,1599 puis,1,kinghenryv,1599 correct,1,kinghenryv,1599 whelks,1,kinghenryv,1599 disorder'd,1,kinghenryv,1599 donc,1,kinghenryv,1599 board,1,kinghenryv,1599 attending,1,kinghenryv,1599 pursuit,1,kinghenryv,1599 threaten,1,kinghenryv,1599 damn'd,1,kinghenryv,1599 approbation,1,kinghenryv,1599 uneasiness,1,kinghenryv,1599 commande,1,kinghenryv,1599 delay,1,kinghenryv,1599 comment,1,kinghenryv,1599 fastest,1,kinghenryv,1599 orphans',1,kinghenryv,1599 expert,1,kinghenryv,1599 strain,1,kinghenryv,1599 crew,1,kinghenryv,1599 offer't,1,kinghenryv,1599 laquais,1,kinghenryv,1599 unspotted,1,kinghenryv,1599 necessity,1,kinghenryv,1599 utmost,1,kinghenryv,1599 crave,1,kinghenryv,1599 idly,1,kinghenryv,1599 mote,1,kinghenryv,1599 sharper,1,kinghenryv,1599 semblances,1,kinghenryv,1599 ayez,1,kinghenryv,1599 Fortune's,1,kinghenryv,1599 carriages,1,kinghenryv,1599 Englishwoman,1,kinghenryv,1599 Guarded,1,kinghenryv,1599 ambiguities,1,kinghenryv,1599 oF,1,kinghenryv,1599 traps,1,kinghenryv,1599 deface,1,kinghenryv,1599 scholar,1,kinghenryv,1599 produce,1,kinghenryv,1599 May't,1,kinghenryv,1599 imp,1,kinghenryv,1599 Took,1,kinghenryv,1599 cuppele,1,kinghenryv,1599 temper,1,kinghenryv,1599 variations,1,kinghenryv,1599 caused,1,kinghenryv,1599 deja,1,kinghenryv,1599 leur,1,kinghenryv,1599 crimes,1,kinghenryv,1599 pristine,1,kinghenryv,1599 lover,1,kinghenryv,1599 loves,1,kinghenryv,1599 remembering,1,kinghenryv,1599 leve,1,kinghenryv,1599 Success,1,kinghenryv,1599 pursued,1,kinghenryv,1599 coutume,1,kinghenryv,1599 loud,1,kinghenryv,1599 miserable,1,kinghenryv,1599 matching,1,kinghenryv,1599 settled,1,kinghenryv,1599 lightly,1,kinghenryv,1599 hommes,1,kinghenryv,1599 amply,1,kinghenryv,1599 challenger,1,kinghenryv,1599 Yea,1,kinghenryv,1599 parents,1,kinghenryv,1599 Wouldst,1,kinghenryv,1599 cherishing,1,kinghenryv,1599 sweetness,1,kinghenryv,1599 wipes,1,kinghenryv,1599 speak'st,1,kinghenryv,1599 Thrust,1,kinghenryv,1599 mope,1,kinghenryv,1599 semblance,1,kinghenryv,1599 shrieking,1,kinghenryv,1599 wherein,1,kinghenryv,1599 Sennet,1,kinghenryv,1599 expel,1,kinghenryv,1599 loved,1,kinghenryv,1599 all's,1,kinghenryv,1599 knot,1,kinghenryv,1599 devin,1,kinghenryv,1599 crystals,1,kinghenryv,1599 violet,1,kinghenryv,1599 defy,1,kinghenryv,1599 necessary,1,kinghenryv,1599 bootless,1,kinghenryv,1599 Working,1,kinghenryv,1599 winner,1,kinghenryv,1599 chantries,1,kinghenryv,1599 spouse,1,kinghenryv,1599 aussi,1,kinghenryv,1599 premeditated,1,kinghenryv,1599 composed,1,kinghenryv,1599 scatter'd,1,kinghenryv,1599 gardeners,1,kinghenryv,1599 upbraided,1,kinghenryv,1599 hooded,1,kinghenryv,1599 bristle,1,kinghenryv,1599 Discolour,1,kinghenryv,1599 load,1,kinghenryv,1599 Pompey,1,kinghenryv,1599 Came,1,kinghenryv,1599 harm'd,1,kinghenryv,1599 perdurable,1,kinghenryv,1599 tucket,1,kinghenryv,1599 hark,1,kinghenryv,1599 graves,1,kinghenryv,1599 choice,1,kinghenryv,1599 prings,1,kinghenryv,1599 hardly,1,kinghenryv,1599 Haply,1,kinghenryv,1599 donne,1,kinghenryv,1599 clime,1,kinghenryv,1599 reasons,1,kinghenryv,1599 Franciae,1,kinghenryv,1599 havoc,1,kinghenryv,1599 oppression,1,kinghenryv,1599 kills,1,kinghenryv,1599 va,1,kinghenryv,1599 axe,1,kinghenryv,1599 thistles,1,kinghenryv,1599 Freely,1,kinghenryv,1599 pare,1,kinghenryv,1599 eaux,1,kinghenryv,1599 Pompey's,1,kinghenryv,1599 distil,1,kinghenryv,1599 enterprises,1,kinghenryv,1599 lavee,1,kinghenryv,1599 isle,1,kinghenryv,1599 string,1,kinghenryv,1599 plod,1,kinghenryv,1599 englutted,1,kinghenryv,1599 soldier's,1,kinghenryv,1599 conspiracy,1,kinghenryv,1599 falourous,1,kinghenryv,1599 round,1,kinghenryv,1599 haunts,1,kinghenryv,1599 te,1,kinghenryv,1599 poorly,1,kinghenryv,1599 beggar's,1,kinghenryv,1599 amount,1,kinghenryv,1599 upholding,1,kinghenryv,1599 n'est,1,kinghenryv,1599 kingly,1,kinghenryv,1599 perfected,1,kinghenryv,1599 embattled,1,kinghenryv,1599 unworthiness,1,kinghenryv,1599 basest,1,kinghenryv,1599 submit,1,kinghenryv,1599 shews,1,kinghenryv,1599 indued,1,kinghenryv,1599 intended,1,kinghenryv,1599 reduce,1,kinghenryv,1599 si,1,kinghenryv,1599 verses,1,kinghenryv,1599 joyfully,1,kinghenryv,1599 husband's,1,kinghenryv,1599 Read,1,kinghenryv,1599 paly,1,kinghenryv,1599 spur,1,kinghenryv,1599 acknowledge,1,kinghenryv,1599 impeachment,1,kinghenryv,1599 faintly,1,kinghenryv,1599 liberte,1,kinghenryv,1599 trade,1,kinghenryv,1599 treads,1,kinghenryv,1599 Enjoys,1,kinghenryv,1599 Stars,1,kinghenryv,1599 signal,1,kinghenryv,1599 Trumpets,1,kinghenryv,1599 congreeted,1,kinghenryv,1599 Pluck,1,kinghenryv,1599 shun,1,kinghenryv,1599 Heritier,1,kinghenryv,1599 shut,1,kinghenryv,1599 deny,1,kinghenryv,1599 cited,1,kinghenryv,1599 Losing,1,kinghenryv,1599 draws,1,kinghenryv,1599 fire's,1,kinghenryv,1599 forty,1,kinghenryv,1599 joyful,1,kinghenryv,1599 foggy,1,kinghenryv,1599 provided,1,kinghenryv,1599 Unseen,1,kinghenryv,1599 wisdoms,1,kinghenryv,1599 examine,1,kinghenryv,1599 marching,1,kinghenryv,1599 excuse,1,kinghenryv,1599 sucking,1,kinghenryv,1599 governor,1,kinghenryv,1599 pluck,1,kinghenryv,1599 expect,1,kinghenryv,1599 rashness,1,kinghenryv,1599 Expectation,1,kinghenryv,1599 Qui,1,kinghenryv,1599 huswife,1,kinghenryv,1599 eased,1,kinghenryv,1599 knocks,1,kinghenryv,1599 'Dear,1,kinghenryv,1599 fort,1,kinghenryv,1599 slings,1,kinghenryv,1599 hawk,1,kinghenryv,1599 defensible,1,kinghenryv,1599 purged,1,kinghenryv,1599 impatient,1,kinghenryv,1599 plue,1,kinghenryv,1599 straws,1,kinghenryv,1599 Caveto,1,kinghenryv,1599 shaked,1,kinghenryv,1599 pair,1,kinghenryv,1599 courts,1,kinghenryv,1599 neglect,1,kinghenryv,1599 bloodily,1,kinghenryv,1599 fiery,1,kinghenryv,1599 spit,1,kinghenryv,1599 diest,1,kinghenryv,1599 practic,1,kinghenryv,1599 spin,1,kinghenryv,1599 mayor,1,kinghenryv,1599 footed,1,kinghenryv,1599 evenly,1,kinghenryv,1599 Prepare,1,kinghenryv,1599 forsworn,1,kinghenryv,1599 Dispatch,1,kinghenryv,1599 Borne,1,kinghenryv,1599 orisons,1,kinghenryv,1599 Tennis,1,kinghenryv,1599 shakes,1,kinghenryv,1599 Incline,1,kinghenryv,1599 vigil,1,kinghenryv,1599 pace,1,kinghenryv,1599 d'user,1,kinghenryv,1599 infer,1,kinghenryv,1599 impounded,1,kinghenryv,1599 robustious,1,kinghenryv,1599 Piece,1,kinghenryv,1599 billows,1,kinghenryv,1599 proper,1,kinghenryv,1599 ave,1,kinghenryv,1599 petitions,1,kinghenryv,1599 except,1,kinghenryv,1599 Monmouth's,1,kinghenryv,1599 counsellors,1,kinghenryv,1599 fiend,1,kinghenryv,1599 outstrip,1,kinghenryv,1599 contain,1,kinghenryv,1599 palfreys,1,kinghenryv,1599 uncurbed,1,kinghenryv,1599 prepared,1,kinghenryv,1599 Small,1,kinghenryv,1599 avouchment,1,kinghenryv,1599 tombe,1,kinghenryv,1599 babies,1,kinghenryv,1599 gipes,1,kinghenryv,1599 yard,1,kinghenryv,1599 Gordian,1,kinghenryv,1599 testimony,1,kinghenryv,1599 creatures,1,kinghenryv,1599 spiritualty,1,kinghenryv,1599 excess,1,kinghenryv,1599 natifs,1,kinghenryv,1599 renowned,1,kinghenryv,1599 object,1,kinghenryv,1599 courser,1,kinghenryv,1599 dishonest,1,kinghenryv,1599 indigent,1,kinghenryv,1599 scarcely,1,kinghenryv,1599 pikes,1,kinghenryv,1599 fancies,1,kinghenryv,1599 beards,1,kinghenryv,1599 Mangling,1,kinghenryv,1599 Offer'st,1,kinghenryv,1599 fold,1,kinghenryv,1599 conclusions,1,kinghenryv,1599 term,1,kinghenryv,1599 Breed,1,kinghenryv,1599 secret,1,kinghenryv,1599 commanders',1,kinghenryv,1599 Obedience,1,kinghenryv,1599 Convey'd,1,kinghenryv,1599 open'd,1,kinghenryv,1599 Ish,1,kinghenryv,1599 salmons,1,kinghenryv,1599 defended,1,kinghenryv,1599 finely,1,kinghenryv,1599 furnish,1,kinghenryv,1599 thanks,1,kinghenryv,1599 ceased,1,kinghenryv,1599 casted,1,kinghenryv,1599 disdainful,1,kinghenryv,1599 trick,1,kinghenryv,1599 theise,1,kinghenryv,1599 preparations,1,kinghenryv,1599 fet,1,kinghenryv,1599 convocation,1,kinghenryv,1599 sequel,1,kinghenryv,1599 theirs,1,kinghenryv,1599 cullions,1,kinghenryv,1599 Think'st,1,kinghenryv,1599 smells,1,kinghenryv,1599 shotten,1,kinghenryv,1599 array,1,kinghenryv,1599 lurking,1,kinghenryv,1599 sweetly,1,kinghenryv,1599 suffer'st,1,kinghenryv,1599 Pick'd,1,kinghenryv,1599 warned,1,kinghenryv,1599 net,1,kinghenryv,1599 visited,1,kinghenryv,1599 irreconciled,1,kinghenryv,1599 wooing,1,kinghenryv,1599 Elysium,1,kinghenryv,1599 dishearten,1,kinghenryv,1599 pleach'd,1,kinghenryv,1599 ridiculous,1,kinghenryv,1599 Enforced,1,kinghenryv,1599 Creatures,1,kinghenryv,1599 enjoy,1,kinghenryv,1599 Stood,1,kinghenryv,1599 Tartar,1,kinghenryv,1599 qu'il,1,kinghenryv,1599 guess,1,kinghenryv,1599 guest,1,kinghenryv,1599 knobs,1,kinghenryv,1599 prays,1,kinghenryv,1599 root,1,kinghenryv,1599 spoken,1,kinghenryv,1599 Lucifer,1,kinghenryv,1599 jaws,1,kinghenryv,1599 transporting,1,kinghenryv,1599 Bids,1,kinghenryv,1599 height,1,kinghenryv,1599 witch,1,kinghenryv,1599 births,1,kinghenryv,1599 Disguise,1,kinghenryv,1599 luck,1,kinghenryv,1599 fumble,1,kinghenryv,1599 comme,1,kinghenryv,1599 procession,1,kinghenryv,1599 'jealousy,1,kinghenryv,1599 contented,1,kinghenryv,1599 delicate,1,kinghenryv,1599 active,1,kinghenryv,1599 luce,1,kinghenryv,1599 leas,1,kinghenryv,1599 peeps,1,kinghenryv,1599 room,1,kinghenryv,1599 Command,1,kinghenryv,1599 justice,1,kinghenryv,1599 whispers,1,kinghenryv,1599 render'd,1,kinghenryv,1599 Kill,1,kinghenryv,1599 Sur,1,kinghenryv,1599 perceived,1,kinghenryv,1599 Yerk,1,kinghenryv,1599 N'avez,1,kinghenryv,1599 carrions,1,kinghenryv,1599 sobriety,1,kinghenryv,1599 Madam,1,kinghenryv,1599 glories,1,kinghenryv,1599 layer,1,kinghenryv,1599 mais,1,kinghenryv,1599 equal,1,kinghenryv,1599 breeds,1,kinghenryv,1599 prerogatifes,1,kinghenryv,1599 surgeon,1,kinghenryv,1599 mortified,1,kinghenryv,1599 spitted,1,kinghenryv,1599 ballad,1,kinghenryv,1599 castle,1,kinghenryv,1599 venture,1,kinghenryv,1599 outlives,1,kinghenryv,1599 'what,1,kinghenryv,1599 unloose,1,kinghenryv,1599 carried,1,kinghenryv,1599 Sorry,1,kinghenryv,1599 rote,1,kinghenryv,1599 redoubted,1,kinghenryv,1599 nations,1,kinghenryv,1599 Canst,1,kinghenryv,1599 shouldst,1,kinghenryv,1599 apprehension,1,kinghenryv,1599 prisons,1,kinghenryv,1599 guiltless,1,kinghenryv,1599 rascals,1,kinghenryv,1599 gull'd,1,kinghenryv,1599 leviathan,1,kinghenryv,1599 lifeless,1,kinghenryv,1599 antique,1,kinghenryv,1599 brokenly,1,kinghenryv,1599 howls,1,kinghenryv,1599 woodmonger,1,kinghenryv,1599 couldst,1,kinghenryv,1599 distance,1,kinghenryv,1599 rolling,1,kinghenryv,1599 built,1,kinghenryv,1599 Laissez,1,kinghenryv,1599 whelp,1,kinghenryv,1599 Brothers,1,kinghenryv,1599 'Gainst,1,kinghenryv,1599 unknown,1,kinghenryv,1599 assays,1,kinghenryv,1599 repose,1,kinghenryv,1599 Petit,1,kinghenryv,1599 sending,1,kinghenryv,1599 honey'd,1,kinghenryv,1599 pleines,1,kinghenryv,1599 deposed,1,kinghenryv,1599 envy,1,kinghenryv,1599 emptying,1,kinghenryv,1599 number'd,1,kinghenryv,1599 Back,1,kinghenryv,1599 retreat,1,kinghenryv,1599 fraught,1,kinghenryv,1599 proceed,1,kinghenryv,1599 hire,1,kinghenryv,1599 digestions,1,kinghenryv,1599 pabble,1,kinghenryv,1599 hips,1,kinghenryv,1599 beats,1,kinghenryv,1599 mace,1,kinghenryv,1599 dress,1,kinghenryv,1599 crushed,1,kinghenryv,1599 restless,1,kinghenryv,1599 Derived,1,kinghenryv,1599 penny,1,kinghenryv,1599 mounted,1,kinghenryv,1599 scald,1,kinghenryv,1599 Urged,1,kinghenryv,1599 proudly,1,kinghenryv,1599 circle,1,kinghenryv,1599 knew'st,1,kinghenryv,1599 curtains,1,kinghenryv,1599 paths,1,kinghenryv,1599 below,1,kinghenryv,1599 indifferently,1,kinghenryv,1599 contention,1,kinghenryv,1599 riots,1,kinghenryv,1599 disgraced,1,kinghenryv,1599 Playing,1,kinghenryv,1599 Sooner,1,kinghenryv,1599 luxury,1,kinghenryv,1599 swarming,1,kinghenryv,1599 accrue,1,kinghenryv,1599 nook,1,kinghenryv,1599 fester,1,kinghenryv,1599 velvet,1,kinghenryv,1599 glean,1,kinghenryv,1599 estate,1,kinghenryv,1599 ete,1,kinghenryv,1599 pleaseth,1,kinghenryv,1599 effusion,1,kinghenryv,1599 blunt,1,kinghenryv,1599 teems,1,kinghenryv,1599 gardez,1,kinghenryv,1599 Six,1,kinghenryv,1599 Excursions,1,kinghenryv,1599 Sleeps,1,kinghenryv,1599 pleasest,1,kinghenryv,1599 observingly,1,kinghenryv,1599 banners,1,kinghenryv,1599 cowslip,1,kinghenryv,1599 Beseeching,1,kinghenryv,1599 severals,1,kinghenryv,1599 wink'd,1,kinghenryv,1599 observed,1,kinghenryv,1599 descended,1,kinghenryv,1599 sirrah,1,kinghenryv,1599 admire,1,kinghenryv,1599 Wear,1,kinghenryv,1599 asse,1,kinghenryv,1599 slain,1,kinghenryv,1599 peers',1,kinghenryv,1599 chase,1,kinghenryv,1599 likelihood,1,kinghenryv,1599 charter'd,1,kinghenryv,1599 veux,1,kinghenryv,1599 scions,1,kinghenryv,1599 excused,1,kinghenryv,1599 annoy,1,kinghenryv,1599 candlesticks,1,kinghenryv,1599 stirrers,1,kinghenryv,1599 Sit,1,kinghenryv,1599 wolves,1,kinghenryv,1599 alter,1,kinghenryv,1599 mount,1,kinghenryv,1599 excusez,1,kinghenryv,1599 peacock's,1,kinghenryv,1599 Straining,1,kinghenryv,1599 boastful,1,kinghenryv,1599 High,1,kinghenryv,1599 d'une,1,kinghenryv,1599 shores,1,kinghenryv,1599 arise,1,kinghenryv,1599 o'erturn,1,kinghenryv,1599 paces,1,kinghenryv,1599 outwear,1,kinghenryv,1599 ordure,1,kinghenryv,1599 KING's,1,kinghenryv,1599 hinder'd,1,kinghenryv,1599 counsellor,1,kinghenryv,1599 adultery,1,kinghenryv,1599 comprised,1,kinghenryv,1599 vainness,1,kinghenryv,1599 soldat,1,kinghenryv,1599 escapes,1,kinghenryv,1599 allons,1,kinghenryv,1599 presented,1,kinghenryv,1599 ordinance,1,kinghenryv,1599 Gets,1,kinghenryv,1599 carnation,1,kinghenryv,1599 Ermengare,1,kinghenryv,1599 curtle,1,kinghenryv,1599 awhile,1,kinghenryv,1599 eggs,1,kinghenryv,1599 steeled,1,kinghenryv,1599 several,1,kinghenryv,1599 vaillant,1,kinghenryv,1599 gallantly,1,kinghenryv,1599 freely,1,kinghenryv,1599 quarter,1,kinghenryv,1599 mouse,1,kinghenryv,1599 Meisen,1,kinghenryv,1599 cloak,1,kinghenryv,1599 Health,1,kinghenryv,1599 inly,1,kinghenryv,1599 bestride,1,kinghenryv,1599 Consideration,1,kinghenryv,1599 leaving,1,kinghenryv,1599 Jeshu,1,kinghenryv,1599 sinfully,1,kinghenryv,1599 feith,1,kinghenryv,1599 placed,1,kinghenryv,1599 unprovided,1,kinghenryv,1599 threaden,1,kinghenryv,1599 Suffolk's,1,kinghenryv,1599 superfluously,1,kinghenryv,1599 Convey,1,kinghenryv,1599 See,1,kinghenryv,1599 attire,1,kinghenryv,1599 lodge,1,kinghenryv,1599 doors,1,kinghenryv,1599 mortal,1,kinghenryv,1599 girdled,1,kinghenryv,1599 almshouses,1,kinghenryv,1599 Free,1,kinghenryv,1599 charitably,1,kinghenryv,1599 realms,1,kinghenryv,1599 Fret,1,kinghenryv,1599 mile,1,kinghenryv,1599 wiser,1,kinghenryv,1599 'If,1,kinghenryv,1599 deck'd,1,kinghenryv,1599 charitable,1,kinghenryv,1599 singing,1,kinghenryv,1599 'In,1,kinghenryv,1599 varlet,1,kinghenryv,1599 Say'st,1,kinghenryv,1599 non,1,kinghenryv,1599 start,1,kinghenryv,1599 mans,1,kinghenryv,1599 qualities,1,kinghenryv,1599 stars,1,kinghenryv,1599 prize,1,kinghenryv,1599 conclusion,1,kinghenryv,1599 guidon,1,kinghenryv,1599 approaches,1,kinghenryv,1599 shield,1,kinghenryv,1599 kisses,1,kinghenryv,1599 range,1,kinghenryv,1599 plead,1,kinghenryv,1599 sacrifices,1,kinghenryv,1599 tempest,1,kinghenryv,1599 souviendrai,1,kinghenryv,1599 dared,1,kinghenryv,1599 foolish,1,kinghenryv,1599 watched,1,kinghenryv,1599 robbery,1,kinghenryv,1599 robbers,1,kinghenryv,1599 smother,1,kinghenryv,1599 male,1,kinghenryv,1599 humorous,1,kinghenryv,1599 already,1,kinghenryv,1599 tackle,1,kinghenryv,1599 wrought,1,kinghenryv,1599 dowry,1,kinghenryv,1599 wheresome'er,1,kinghenryv,1599 slaughtermen,1,kinghenryv,1599 reading,1,kinghenryv,1599 silling,1,kinghenryv,1599 obscured,1,kinghenryv,1599 Uncle,1,kinghenryv,1599 celerity,1,kinghenryv,1599 bolted,1,kinghenryv,1599 appris,1,kinghenryv,1599 curtsy,1,kinghenryv,1599 beach,1,kinghenryv,1599 Alexanders,1,kinghenryv,1599 mass,1,kinghenryv,1599 chien,1,kinghenryv,1599 ladders,1,kinghenryv,1599 organs,1,kinghenryv,1599 acquit,1,kinghenryv,1599 mare,1,kinghenryv,1599 Alexander's,1,kinghenryv,1599 achievement,1,kinghenryv,1599 babbled,1,kinghenryv,1599 ranks,1,kinghenryv,1599 incite,1,kinghenryv,1599 vell,1,kinghenryv,1599 Sweats,1,kinghenryv,1599 persuaded,1,kinghenryv,1599 derivation,1,kinghenryv,1599 penitence,1,kinghenryv,1599 blot,1,kinghenryv,1599 Honour,1,kinghenryv,1599 achieve,1,kinghenryv,1599 veil,1,kinghenryv,1599 Presence,1,kinghenryv,1599 quoth,1,kinghenryv,1599 tradition,1,kinghenryv,1599 ploody,1,kinghenryv,1599 ripen,1,kinghenryv,1599 judgments,1,kinghenryv,1599 blow,1,kinghenryv,1599 flatter,1,kinghenryv,1599 starved,1,kinghenryv,1599 Stiffen,1,kinghenryv,1599 fertility,1,kinghenryv,1599 painful,1,kinghenryv,1599 dutiful,1,kinghenryv,1599 eke,1,kinghenryv,1599 beside,1,kinghenryv,1599 enlarge,1,kinghenryv,1599 victorious,1,kinghenryv,1599 addrest,1,kinghenryv,1599 maps,1,kinghenryv,1599 bedlam,1,kinghenryv,1599 dropping,1,kinghenryv,1599 craven,1,kinghenryv,1599 pashful,1,kinghenryv,1599 seal'd,1,kinghenryv,1599 brethren,1,kinghenryv,1599 'Te,1,kinghenryv,1599 threatening,1,kinghenryv,1599 higher,1,kinghenryv,1599 captive,1,kinghenryv,1599 peremptory,1,kinghenryv,1599 uncorrected,1,kinghenryv,1599 donner,1,kinghenryv,1599 naught,1,kinghenryv,1599 cursorary,1,kinghenryv,1599 fantastically,1,kinghenryv,1599 unnecessary,1,kinghenryv,1599 borrow'd,1,kinghenryv,1599 uttered,1,kinghenryv,1599 gashes,1,kinghenryv,1599 adventures,1,kinghenryv,1599 Being,1,kinghenryv,1599 preposterously,1,kinghenryv,1599 Descend,1,kinghenryv,1599 chuck,1,kinghenryv,1599 one's,1,kinghenryv,1599 trouble,1,kinghenryv,1599 fills,1,kinghenryv,1599 Question,1,kinghenryv,1599 Rome,1,kinghenryv,1599 Giving,1,kinghenryv,1599 mockeries,1,kinghenryv,1599 sand,1,kinghenryv,1599 vapour,1,kinghenryv,1599 sucks,1,kinghenryv,1599 maintain'd,1,kinghenryv,1599 web,1,kinghenryv,1599 desired,1,kinghenryv,1599 Irishman,1,kinghenryv,1599 stain,1,kinghenryv,1599 breff,1,kinghenryv,1599 inland,1,kinghenryv,1599 blindness,1,kinghenryv,1599 musters,1,kinghenryv,1599 horribly,1,kinghenryv,1599 behalf,1,kinghenryv,1599 bubukles,1,kinghenryv,1599 cette,1,kinghenryv,1599 knavery,1,kinghenryv,1599 Cressy,1,kinghenryv,1599 unletter'd,1,kinghenryv,1599 pause,1,kinghenryv,1599 suspicion,1,kinghenryv,1599 slight,1,kinghenryv,1599 affairs,1,kinghenryv,1599 ilbow,1,kinghenryv,1599 passage,1,kinghenryv,1599 occurrences,1,kinghenryv,1599 Join'd,1,kinghenryv,1599 marvellously,1,kinghenryv,1599 opinion,1,kinghenryv,1599 semblable,1,kinghenryv,1599 disturb'd,1,kinghenryv,1599 Charlemain,1,kinghenryv,1599 servitude,1,kinghenryv,1599 They'll,1,kinghenryv,1599 wrongs,1,kinghenryv,1599 Salicam,1,kinghenryv,1599 Scotland,1,kinghenryv,1599 contemplation,1,kinghenryv,1599 merits,1,kinghenryv,1599 'No,1,kinghenryv,1599 disputations,1,kinghenryv,1599 Investing,1,kinghenryv,1599 carefully,1,kinghenryv,1599 today,1,kinghenryv,1599 blushes,1,kinghenryv,1599 pomp,1,kinghenryv,1599 Returns,1,kinghenryv,1599 worshippers,1,kinghenryv,1599 fits,1,kinghenryv,1599 throw,1,kinghenryv,1599 girded,1,kinghenryv,1599 Witness,1,kinghenryv,1599 Defy,1,kinghenryv,1599 Dishonour,1,kinghenryv,1599 goats,1,kinghenryv,1599 'Le,1,kinghenryv,1599 grafters,1,kinghenryv,1599 proposed,1,kinghenryv,1599 visits,1,kinghenryv,1599 redemption,1,kinghenryv,1599 bands,1,kinghenryv,1599 court,1,kinghenryv,1599 defunct,1,kinghenryv,1599 Perpend,1,kinghenryv,1599 cure,1,kinghenryv,1599 strossers,1,kinghenryv,1599 bawdy,1,kinghenryv,1599 martial,1,kinghenryv,1599 bread,1,kinghenryv,1599 curs,1,kinghenryv,1599 measured,1,kinghenryv,1599 happiness,1,kinghenryv,1599 fetch'd,1,kinghenryv,1599 Turkish,1,kinghenryv,1599 admonishing,1,kinghenryv,1599 fetlock,1,kinghenryv,1599 hammers,1,kinghenryv,1599 gay,1,kinghenryv,1599 galling,1,kinghenryv,1599 neanmoins,1,kinghenryv,1599 enscheduled,1,kinghenryv,1599 allegiance,1,kinghenryv,1599 Cadwallader,1,kinghenryv,1599 closet,1,kinghenryv,1599 bestow'd,1,kinghenryv,1599 dawning,1,kinghenryv,1599 knaveries,1,kinghenryv,1599 magistrates,1,kinghenryv,1599 captiv'd,1,kinghenryv,1599 Saw,1,kinghenryv,1599 prabbles',1,kinghenryv,1599 fallow,1,kinghenryv,1599 hoofs,1,kinghenryv,1599 Sure,1,kinghenryv,1599 Desire,1,kinghenryv,1599 grosser,1,kinghenryv,1599 chaces,1,kinghenryv,1599 Subdued,1,kinghenryv,1599 ripe,1,kinghenryv,1599 pauca,1,kinghenryv,1599 sutler,1,kinghenryv,1599 Alarums,1,kinghenryv,1599 ostent,1,kinghenryv,1599 standing,1,kinghenryv,1599 grandsires,1,kinghenryv,1599 defeated,1,kinghenryv,1599 DUKES,1,kinghenryv,1599 Thawing,1,kinghenryv,1599 buffet,1,kinghenryv,1599 crowding,1,kinghenryv,1599 'England,1,kinghenryv,1599 licentious,1,kinghenryv,1599 difficile,1,kinghenryv,1599 widows,1,kinghenryv,1599 sauf,1,kinghenryv,1599 musical,1,kinghenryv,1599 humility,1,kinghenryv,1599 issued,1,kinghenryv,1599 liked,1,kinghenryv,1599 mails,1,kinghenryv,1599 'We,1,kinghenryv,1599 dust,1,kinghenryv,1599 'The,1,kinghenryv,1599 frog,1,kinghenryv,1599 projection,1,kinghenryv,1599 arma,1,kinghenryv,1599 mould,1,kinghenryv,1599 poet,1,kinghenryv,1599 able,1,kinghenryv,1599 tuned,1,kinghenryv,1599 monarchies,1,kinghenryv,1599 Defile,1,kinghenryv,1599 prevail,1,kinghenryv,1599 swarm,1,kinghenryv,1599 receive,1,kinghenryv,1599 Breasting,1,kinghenryv,1599 Crouch,1,kinghenryv,1599 'To,1,kinghenryv,1599 subtly,1,kinghenryv,1599 morris,1,kinghenryv,1599 profitable,1,kinghenryv,1599 growing,1,kinghenryv,1599 pody,1,kinghenryv,1599 intent,1,kinghenryv,1599 ambition,1,kinghenryv,1599 mains,1,kinghenryv,1599 commander,1,kinghenryv,1599 solemnly,1,kinghenryv,1599 threatens,1,kinghenryv,1599 hidden,1,kinghenryv,1599 powdering,1,kinghenryv,1599 bleed,1,kinghenryv,1599 libertine,1,kinghenryv,1599 intend,1,kinghenryv,1599 girdle,1,kinghenryv,1599 wad,1,kinghenryv,1599 enraged,1,kinghenryv,1599 arts,1,kinghenryv,1599 they'll,1,kinghenryv,1599 vaultages,1,kinghenryv,1599 Piercing,1,kinghenryv,1599 pride,1,kinghenryv,1599 galliard,1,kinghenryv,1599 forward,1,kinghenryv,1599 crescive,1,kinghenryv,1599 Rex,1,kinghenryv,1599 uncle's,1,kinghenryv,1599 bedfellow,1,kinghenryv,1599 ends,1,kinghenryv,1599 covetous,1,kinghenryv,1599 BRETAGNE,1,kinghenryv,1599 'do,1,kinghenryv,1599 apace,1,kinghenryv,1599 Attest,1,kinghenryv,1599 declare,1,kinghenryv,1599 proceeding,1,kinghenryv,1599 meilleur,1,kinghenryv,1599 exhibiters,1,kinghenryv,1599 Praised,1,kinghenryv,1599 Blithild,1,kinghenryv,1599 flowering,1,kinghenryv,1599 pounds,1,kinghenryv,1599 mienne,1,kinghenryv,1599 predecessor,1,kinghenryv,1599 bounty,1,kinghenryv,1599 rosed,1,kinghenryv,1599 Monsieur,1,kinghenryv,1599 predeceased,1,kinghenryv,1599 dunghills,1,kinghenryv,1599 Unpruned,1,kinghenryv,1599 belle,1,kinghenryv,1599 enforced,1,kinghenryv,1599 notice,1,kinghenryv,1599 religiously,1,kinghenryv,1599 Shame,1,kinghenryv,1599 interception,1,kinghenryv,1599 ginger,1,kinghenryv,1599 grossly,1,kinghenryv,1599 remercimens,1,kinghenryv,1599 discover'd,1,kinghenryv,1599 vulgar,1,kinghenryv,1599 requite,1,kinghenryv,1599 serviteur,1,kinghenryv,1599 gladly,1,kinghenryv,1599 prompt,1,kinghenryv,1599 agree,1,kinghenryv,1599 plebeians,1,kinghenryv,1599 drone,1,kinghenryv,1599 Craved,1,kinghenryv,1599 rake,1,kinghenryv,1599 thankfulness,1,kinghenryv,1599 langues,1,kinghenryv,1599 oblivion,1,kinghenryv,1599 earthquake,1,kinghenryv,1599 joints,1,kinghenryv,1599 insteep'd,1,kinghenryv,1599 rages,1,kinghenryv,1599 fallen,1,kinghenryv,1599 provident,1,kinghenryv,1599 earthly,1,kinghenryv,1599 demonstrate,1,kinghenryv,1599 rotten,1,kinghenryv,1599 prologue,1,kinghenryv,1599 stilly,1,kinghenryv,1599 charged,1,kinghenryv,1599 prisoner's,1,kinghenryv,1599 Big,1,kinghenryv,1599 anger,1,kinghenryv,1599 anges,1,kinghenryv,1599 Tavy's,1,kinghenryv,1599 killing,1,kinghenryv,1599 labour'd,1,kinghenryv,1599 lute,1,kinghenryv,1599 gunpowder,1,kinghenryv,1599 womb,1,kinghenryv,1599 Constantinople,1,kinghenryv,1599 lust,1,kinghenryv,1599 supply,1,kinghenryv,1599 haply,1,kinghenryv,1599 imputation,1,kinghenryv,1599 sweeps,1,kinghenryv,1599 duly,1,kinghenryv,1599 clocks,1,kinghenryv,1599 whistle,1,kinghenryv,1599 dubb'd,1,kinghenryv,1599 Excusez,1,kinghenryv,1599 oui,1,kinghenryv,1599 yoke,1,kinghenryv,1599 filius,1,kinghenryv,1599 invoke,1,kinghenryv,1599 grain,1,kinghenryv,1599 Rush,1,kinghenryv,1599 plumes,1,kinghenryv,1599 fox,1,kinghenryv,1599 dispatch's,1,kinghenryv,1599 uttermost,1,kinghenryv,1599 droit,1,kinghenryv,1599 authors,1,kinghenryv,1599 Deum,1,kinghenryv,1599 covet,1,kinghenryv,1599 mince,1,kinghenryv,1599 Roi,1,kinghenryv,1599 franchisement,1,kinghenryv,1599 rawly,1,kinghenryv,1599 Show,1,kinghenryv,1599 neighs,1,kinghenryv,1599 heirs,1,kinghenryv,1599 sails,1,kinghenryv,1599 prescript,1,kinghenryv,1599 fais,1,kinghenryv,1599 create,1,kinghenryv,1599 wholesome,1,kinghenryv,1599 durst,1,kinghenryv,1599 Swear,1,kinghenryv,1599 tongueless,1,kinghenryv,1599 foughten,1,kinghenryv,1599 bruise,1,kinghenryv,1599 jumping,1,kinghenryv,1599 'like,1,kinghenryv,1599 Sweat,1,kinghenryv,1599 ciphers,1,kinghenryv,1599 cloth,1,kinghenryv,1599 messengers,1,kinghenryv,1599 Grapple,1,kinghenryv,1599 weapons,1,kinghenryv,1599 pockets,1,kinghenryv,1599 doublet,1,kinghenryv,1599 stolen,1,kinghenryv,1599 Promised,1,kinghenryv,1599 united,1,kinghenryv,1599 cares,1,kinghenryv,1599 wilful,1,kinghenryv,1599 constancy,1,kinghenryv,1599 wander,1,kinghenryv,1599 Shake,1,kinghenryv,1599 promis,1,kinghenryv,1599 answers,1,kinghenryv,1599 fortune,1,kinghenryv,1599 cared,1,kinghenryv,1599 Constant,1,kinghenryv,1599 vaward,1,kinghenryv,1599 grand,1,kinghenryv,1599 mulieres,1,kinghenryv,1599 duck,1,kinghenryv,1599 positive,1,kinghenryv,1599 scorns,1,kinghenryv,1599 worm,1,kinghenryv,1599 Corrupting,1,kinghenryv,1599 capitaine,1,kinghenryv,1599 threw,1,kinghenryv,1599 do't,1,kinghenryv,1599 passing,1,kinghenryv,1599 valourously,1,kinghenryv,1599 clay,1,kinghenryv,1599 fie,1,kinghenryv,1599 feared,1,kinghenryv,1599 fig,1,kinghenryv,1599 pertain,1,kinghenryv,1599 Sweet,1,kinghenryv,1599 Excellent,1,kinghenryv,1599 galls,1,kinghenryv,1599 officer,1,kinghenryv,1599 gazing,1,kinghenryv,1599 filching,1,kinghenryv,1599 reinforced,1,kinghenryv,1599 perfect,1,kinghenryv,1599 playhouse,1,kinghenryv,1599 wots,1,kinghenryv,1599 pleases,1,kinghenryv,1599 howsoever,1,kinghenryv,1599 slobbery,1,kinghenryv,1599 fils,1,kinghenryv,1599 dalliance,1,kinghenryv,1599 progenitors,1,kinghenryv,1599 'Couple,1,kinghenryv,1599 punish'd,1,kinghenryv,1599 clap,1,kinghenryv,1599 preservation,1,kinghenryv,1599 demoiselle,1,kinghenryv,1599 Printing,1,kinghenryv,1599 horn,1,kinghenryv,1599 managing,1,kinghenryv,1599 miscreate,1,kinghenryv,1599 incorporate,1,kinghenryv,1599 hose,1,kinghenryv,1599 Steed,1,kinghenryv,1599 trescher,1,kinghenryv,1599 speculation,1,kinghenryv,1599 distemper,1,kinghenryv,1599 thunder,1,kinghenryv,1599 abreast,1,kinghenryv,1599 shown,1,kinghenryv,1599 Barbason,1,kinghenryv,1599 worship,1,kinghenryv,1599 extract,1,kinghenryv,1599 Idly,1,kinghenryv,1599 surge,1,kinghenryv,1599 bite,1,kinghenryv,1599 Peasant,1,kinghenryv,1599 divers,1,kinghenryv,1599 divert,1,kinghenryv,1599 unfold,1,kinghenryv,1599 Received,1,kinghenryv,1599 lines,1,kinghenryv,1599 poison'd,1,kinghenryv,1599 faculty,1,kinghenryv,1599 Larding,1,kinghenryv,1599 accomplishing,1,kinghenryv,1599 baisees,1,kinghenryv,1599 depart,1,kinghenryv,1599 flexure,1,kinghenryv,1599 butcher,1,kinghenryv,1599 perceive,1,kinghenryv,1599 Work,1,kinghenryv,1599 namely,1,kinghenryv,1599 clover,1,kinghenryv,1599 tiddle,1,kinghenryv,1599 foaming,1,kinghenryv,1599 divest,1,kinghenryv,1599 tike,1,kinghenryv,1599 Suivez,1,kinghenryv,1599 senators,1,kinghenryv,1599 bath,1,kinghenryv,1599 Unfought,1,kinghenryv,1599 o'erswell,1,kinghenryv,1599 linstock,1,kinghenryv,1599 destroy'd,1,kinghenryv,1599 mistful,1,kinghenryv,1599 chevalier,1,kinghenryv,1599 indignations,1,kinghenryv,1599 Talbot,1,kinghenryv,1599 Four,1,kinghenryv,1599 reproach,1,kinghenryv,1599 bird,1,kinghenryv,1599 Embark,1,kinghenryv,1599 utility,1,kinghenryv,1599 breeder,1,kinghenryv,1599 faut,1,kinghenryv,1599 strikes,1,kinghenryv,1599 thanked,1,kinghenryv,1599 Pardonnez,1,kinghenryv,1599 dispraise,1,kinghenryv,1599 mouth'd,1,kinghenryv,1599 Knocks,1,kinghenryv,1599 appointed,1,kinghenryv,1599 cheerer,1,kinghenryv,1599 hoof,1,kinghenryv,1599 plainness,1,kinghenryv,1599 vital,1,kinghenryv,1599 hallow'd,1,kinghenryv,1599 Very,1,kinghenryv,1599 balm,1,kinghenryv,1599 motive,1,kinghenryv,1599 bounds,1,kinghenryv,1599 weakness,1,kinghenryv,1599 careers,1,kinghenryv,1599 subjection,1,kinghenryv,1599 rising,1,kinghenryv,1599 fast,1,kinghenryv,1599 crush'd,1,kinghenryv,1599 named,1,kinghenryv,1599 Each,1,kinghenryv,1599 dites,1,kinghenryv,1599 sentences,1,kinghenryv,1599 surly,1,kinghenryv,1599 spousal,1,kinghenryv,1599 trumpets,1,kinghenryv,1599 lad,1,kinghenryv,1599 Invites,1,kinghenryv,1599 o'erwhelm,1,kinghenryv,1599 coal,1,kinghenryv,1599 Caesar,1,kinghenryv,1599 Suits,1,kinghenryv,1599 complaint,1,kinghenryv,1599 tall,1,kinghenryv,1599 Louvre,1,kinghenryv,1599 dazzle,1,kinghenryv,1599 witchcraft,1,kinghenryv,1599 kite,1,kinghenryv,1599 jurement,1,kinghenryv,1599 falsely,1,kinghenryv,1599 Henri,1,kinghenryv,1599 cup,1,kinghenryv,1599 fresher,1,kinghenryv,1599 Appear,1,kinghenryv,1599 brotherhood,1,kinghenryv,1599 cue,1,kinghenryv,1599 hatred,1,kinghenryv,1599 convey,1,kinghenryv,1599 stroke,1,kinghenryv,1599 perish,1,kinghenryv,1599 jests,1,kinghenryv,1599 Trust,1,kinghenryv,1599 watchful,1,kinghenryv,1599 refresh,1,kinghenryv,1599 holes,1,kinghenryv,1599 d'apprendre,1,kinghenryv,1599 reproof,1,kinghenryv,1599 asunder,1,kinghenryv,1599 Rather,1,kinghenryv,1599 rapier,1,kinghenryv,1599 greets,1,kinghenryv,1599 strawberry,1,kinghenryv,1599 Every,1,kinghenryv,1599 beshrew,1,kinghenryv,1599 accomplishment,1,kinghenryv,1599 jutty,1,kinghenryv,1599 holds,1,kinghenryv,1599 shore,1,kinghenryv,1599 mercenaries,1,kinghenryv,1599 condemnation,1,kinghenryv,1599 Canterbury,1,kinghenryv,1599 Pride,1,kinghenryv,1599 Den,1,kinghenryv,1599 demonstrative,1,kinghenryv,1599 None,1,kinghenryv,1599 fertile,1,kinghenryv,1599 hole,1,kinghenryv,1599 Qualtitie,1,kinghenryv,1599 greyhounds,1,kinghenryv,1599 dozen,1,kinghenryv,1599 sciences,1,kinghenryv,1599 petter,1,kinghenryv,1599 temper'd,1,kinghenryv,1599 proclaimed,1,kinghenryv,1599 devout,1,kinghenryv,1599 famine,1,kinghenryv,1599 Lives,1,kinghenryv,1599 closing,1,kinghenryv,1599 unwind,1,kinghenryv,1599 gaping,1,kinghenryv,1599 variation,1,kinghenryv,1599 honest,1,kinghenryv,1599 Brass,1,kinghenryv,1599 swashers,1,kinghenryv,1599 succors,1,kinghenryv,1599 fires,1,kinghenryv,1599 schools,1,kinghenryv,1599 family,1,kinghenryv,1599 request,1,kinghenryv,1599 Via,1,kinghenryv,1599 loyal,1,kinghenryv,1599 revolt,1,kinghenryv,1599 paved,1,kinghenryv,1599 murdering,1,kinghenryv,1599 literatured,1,kinghenryv,1599 calmie,1,kinghenryv,1599 Bates,1,kinghenryv,1599 fronts,1,kinghenryv,1599 particularities,1,kinghenryv,1599 Arrest,1,kinghenryv,1599 winter,1,kinghenryv,1599 invade,1,kinghenryv,1599 commonwealth,1,kinghenryv,1599 voutsafe,1,kinghenryv,1599 resolution,1,kinghenryv,1599 sodden,1,kinghenryv,1599 subscribed,1,kinghenryv,1599 slanders,1,kinghenryv,1599 Awake,1,kinghenryv,1599 counsels,1,kinghenryv,1599 Blackheath,1,kinghenryv,1599 building,1,kinghenryv,1599 legions,1,kinghenryv,1599 choler,1,kinghenryv,1599 notwithstanding,1,kinghenryv,1599 profits,1,kinghenryv,1599 gaited,1,kinghenryv,1599 convenient,1,kinghenryv,1599 Ingrateful,1,kinghenryv,1599 meditate,1,kinghenryv,1599 Haeres,1,kinghenryv,1599 bungle,1,kinghenryv,1599 robes,1,kinghenryv,1599 satisfied,1,kinghenryv,1599 lungs,1,kinghenryv,1599 O'erglanced,1,kinghenryv,1599 plodded,1,kinghenryv,1599 seas,1,kinghenryv,1599 hairs,1,kinghenryv,1599 fourteen,1,kinghenryv,1599 along,1,kinghenryv,1599 play'st,1,kinghenryv,1599 cheerful,1,kinghenryv,1599 elements,1,kinghenryv,1599 fickle,1,kinghenryv,1599 copy,1,kinghenryv,1599 cool,1,kinghenryv,1599 cook,1,kinghenryv,1599 pudding,1,kinghenryv,1599 always,1,kinghenryv,1599 neglected,1,kinghenryv,1599 favour'd,1,kinghenryv,1599 bachelor,1,kinghenryv,1599 examples,1,kinghenryv,1599 eyed,1,kinghenryv,1599 ugly,1,kinghenryv,1599 acts,1,kinghenryv,1599 drunk,1,kinghenryv,1599 exampled,1,kinghenryv,1599 enseigne,1,kinghenryv,1599 suits,1,kinghenryv,1599 thereto,1,kinghenryv,1599 goodness,1,kinghenryv,1599 Seem,1,kinghenryv,1599 pronounced,1,kinghenryv,1599 heralds,1,kinghenryv,1599 aught,1,kinghenryv,1599 trots,1,kinghenryv,1599 seed,1,kinghenryv,1599 feathers,1,kinghenryv,1599 fights,1,kinghenryv,1599 Governor,1,kinghenryv,1599 puppy,1,kinghenryv,1599 Jesu,1,kinghenryv,1599 Tombless,1,kinghenryv,1599 predecessors,1,kinghenryv,1599 con,1,kinghenryv,1599 hounds,1,kinghenryv,1599 ear'd,1,kinghenryv,1599 lowliness,1,kinghenryv,1599 poys,1,kinghenryv,1599 trespass,1,kinghenryv,1599 supposed,1,kinghenryv,1599 sports,1,kinghenryv,1599 Lie,1,kinghenryv,1599 Comest,1,kinghenryv,1599 marvellous,1,kinghenryv,1599 News,1,kinghenryv,1599 camest,1,kinghenryv,1599 arrows,1,kinghenryv,1599 Herod's,1,kinghenryv,1599 greenly,1,kinghenryv,1599 divorce,1,kinghenryv,1599 Thames,1,kinghenryv,1599 burned,1,kinghenryv,1599 tells,1,kinghenryv,1599 steep'd,1,kinghenryv,1599 handkerchers,1,kinghenryv,1599 cost,1,kinghenryv,1599 burnet,1,kinghenryv,1599 urn,1,kinghenryv,1599 BERRI,1,kinghenryv,1599 cramm'd,1,kinghenryv,1599 hound,1,kinghenryv,1599 True,1,kinghenryv,1599 'Sblood,1,kinghenryv,1599 berries,1,kinghenryv,1599 haggled,1,kinghenryv,1599 estimation,1,kinghenryv,1599 Marle,1,kinghenryv,1599 assailed,1,kinghenryv,1599 CHARLES,1,kinghenryv,1599 vassals,1,kinghenryv,1599 thrust,1,kinghenryv,1599 fluent,1,kinghenryv,1599 espoused,1,kinghenryv,1599 sacred,1,kinghenryv,1599 owing,1,kinghenryv,1599 Mangle,1,kinghenryv,1599 basilisks,1,kinghenryv,1599 widows',1,kinghenryv,1599 Gentlemen,1,kinghenryv,1599 cord,1,kinghenryv,1599 couper,1,kinghenryv,1599 Whitsun,1,kinghenryv,1599 ties,1,kinghenryv,1599 affright,1,kinghenryv,1599 avoid,1,kinghenryv,1599 fathers',1,kinghenryv,1599 briefly,1,kinghenryv,1599 vomissement,1,kinghenryv,1599 avez,1,kinghenryv,1599 nights,1,kinghenryv,1599 loyalty,1,kinghenryv,1599 downright,1,kinghenryv,1599 Know,1,kinghenryv,1599 Deliver,1,kinghenryv,1599 therein,1,kinghenryv,1599 million,1,kinghenryv,1599 trembled,1,kinghenryv,1599 kindred,1,kinghenryv,1599 Use,1,kinghenryv,1599 port,1,kinghenryv,1599 Send,1,kinghenryv,1599 'There,1,kinghenryv,1599 cents,1,kinghenryv,1599 lovers,1,kinghenryv,1599 voudrais,1,kinghenryv,1599 ecolier,1,kinghenryv,1599 secure,1,kinghenryv,1599 ces,1,kinghenryv,1599 Heralds,1,kinghenryv,1599 enrich'd,1,kinghenryv,1599 according,1,kinghenryv,1599 mirror,1,kinghenryv,1599 exceptions,1,kinghenryv,1599 excellence,1,kinghenryv,1599 indirectly,1,kinghenryv,1599 Cry,1,kinghenryv,1599 coursing,1,kinghenryv,1599 Just,1,kinghenryv,1599 nutmeg,1,kinghenryv,1599 corruptible,1,kinghenryv,1599 ball,1,kinghenryv,1599 post,1,kinghenryv,1599 cases,1,kinghenryv,1599 bankrupt,1,kinghenryv,1599 bald,1,kinghenryv,1599 leg,1,kinghenryv,1599 bleeding,1,kinghenryv,1599 furies,1,kinghenryv,1599 led,1,kinghenryv,1599 fearfully,1,kinghenryv,1599 sould,1,kinghenryv,1599 roaring,1,kinghenryv,1599 nakedness,1,kinghenryv,1599 ghosts,1,kinghenryv,1599 trusting,1,kinghenryv,1599 Self,1,kinghenryv,1599 abounding,1,kinghenryv,1599 nurse,1,kinghenryv,1599 Admit,1,kinghenryv,1599 slough,1,kinghenryv,1599 betrothed,1,kinghenryv,1599 christom,1,kinghenryv,1599 deceive,1,kinghenryv,1599 greener,1,kinghenryv,1599 contrariously,1,kinghenryv,1599 howl,1,kinghenryv,1599 'These,1,kinghenryv,1599 Defective,1,kinghenryv,1599 fearing,1,kinghenryv,1599 Following,1,kinghenryv,1599 match,1,kinghenryv,1599 gloze,1,kinghenryv,1599 garter,1,kinghenryv,1599 blast,1,kinghenryv,1599 smirch'd,1,kinghenryv,1599 appeles,1,kinghenryv,1599 March,1,kinghenryv,1599 Ascribe,1,kinghenryv,1599 appelee,1,kinghenryv,1599 methought,1,kinghenryv,1599 bonnet,1,kinghenryv,1599 Mistress,1,kinghenryv,1599 'Harry,1,kinghenryv,1599 attaint,1,kinghenryv,1599 beginnings,1,kinghenryv,1599 Belzebub,1,kinghenryv,1599 lip,1,kinghenryv,1599 deracinate,1,kinghenryv,1599 Lob,1,kinghenryv,1599 appelons,1,kinghenryv,1599 instead,1,kinghenryv,1599 chanced,1,kinghenryv,1599 lig,1,kinghenryv,1599 Athwart,1,kinghenryv,1599 merchandise,1,kinghenryv,1599 Two,1,kinghenryv,1599 favouredly,1,kinghenryv,1599 Ruling,1,kinghenryv,1599 Fire,1,kinghenryv,1599 thread,1,kinghenryv,1599 brow,1,kinghenryv,1599 torch,1,kinghenryv,1599 trod,1,kinghenryv,1599 choke,1,kinghenryv,1599 iniquities,1,kinghenryv,1599 Nothing,1,kinghenryv,1599 effects,1,kinghenryv,1599 universe,1,kinghenryv,1599 trop,1,kinghenryv,1599 persuade,1,kinghenryv,1599 sympathize,1,kinghenryv,1599 Forage,1,kinghenryv,1599 measuring,1,kinghenryv,1599 unhidden,1,kinghenryv,1599 unguarded,1,kinghenryv,1599 rheumatic,1,kinghenryv,1599 mad,1,kinghenryv,1599 write,1,kinghenryv,1599 aggrieved,1,kinghenryv,1599 portage,1,kinghenryv,1599 Cheerly,1,kinghenryv,1599 maw,1,kinghenryv,1599 wearing,1,kinghenryv,1599 'Pitch,1,kinghenryv,1599 prenez,1,kinghenryv,1599 tertian,1,kinghenryv,1599 peat,1,kinghenryv,1599 appertinents,1,kinghenryv,1599 sounded,1,kinghenryv,1599 starts,1,kinghenryv,1599 perjury,1,kinghenryv,1599 privates,1,kinghenryv,1599 lazy,1,kinghenryv,1599 slomber,1,kinghenryv,1599 pear,1,kinghenryv,1599 guts,1,kinghenryv,1599 Gave,1,kinghenryv,1599 careful,1,kinghenryv,1599 dial's,1,kinghenryv,1599 Enlarge,1,kinghenryv,1599 mercenary,1,kinghenryv,1599 afeard,1,kinghenryv,1599 umber'd,1,kinghenryv,1599 conduct,1,kinghenryv,1599 Ripe,1,kinghenryv,1599 Pepin,1,kinghenryv,1599 rheum,1,kinghenryv,1599 pibble,1,kinghenryv,1599 consequence,1,kinghenryv,1599 smiling,1,kinghenryv,1599 Foolish,1,kinghenryv,1599 begins,1,kinghenryv,1599 doing,1,kinghenryv,1599 unraised,1,kinghenryv,1599 ratify,1,kinghenryv,1599 impious,1,kinghenryv,1599 headed,1,kinghenryv,1599 mes,1,kinghenryv,1599 trim,1,kinghenryv,1599 fierceness,1,kinghenryv,1599 defendant,1,kinghenryv,1599 treacherous,1,kinghenryv,1599 maker,1,kinghenryv,1599 custure,1,kinghenryv,1599 EPILOGUE,1,kinghenryv,1599 bottoms,1,kinghenryv,1599 reformation,1,kinghenryv,1599 employment,1,kinghenryv,1599 street,1,kinghenryv,1599 determine,1,kinghenryv,1599 graciously,1,kinghenryv,1599 spiritual,1,kinghenryv,1599 scornfully,1,kinghenryv,1599 furtherance,1,kinghenryv,1599 Except,1,kinghenryv,1599 Doll,1,kinghenryv,1599 bullet's,1,kinghenryv,1599 forcing,1,kinghenryv,1599 toast,1,kinghenryv,1599 thinking,1,kinghenryv,1599 incision,1,kinghenryv,1599 Away,1,kinghenryv,1599 diable,1,kinghenryv,1599 solus,1,kinghenryv,1599 punishment,1,kinghenryv,1599 wound,1,kinghenryv,1599 claiming,1,kinghenryv,1599 d'honneur,1,kinghenryv,1599 impawn,1,kinghenryv,1599 Ainsi,1,kinghenryv,1599 horsemanship,1,kinghenryv,1599 wilder,1,kinghenryv,1599 henceforth,1,kinghenryv,1599 banner,1,kinghenryv,1599 fallows,1,kinghenryv,1599 furrow'd,1,kinghenryv,1599 mourning,1,kinghenryv,1599 valorous,1,kinghenryv,1599 appearing,1,kinghenryv,1599 lark,1,kinghenryv,1599 German,1,kinghenryv,1599 thereupon,1,kinghenryv,1599 darnel,1,kinghenryv,1599 gleaned,1,kinghenryv,1599 fever,1,kinghenryv,1599 gull,1,kinghenryv,1599 Russian,1,kinghenryv,1599 incessant,1,kinghenryv,1599 qu'ils,1,kinghenryv,1599 niggardly,1,kinghenryv,1599 plucks,1,kinghenryv,1599 flat,1,kinghenryv,1599 fasting,1,kinghenryv,1599 vitement,1,kinghenryv,1599 flag,1,kinghenryv,1599 tun,1,kinghenryv,1599 thither,1,kinghenryv,1599 warming,1,kinghenryv,1599 tub,1,kinghenryv,1599 sheathe,1,kinghenryv,1599 virtue,1,kinghenryv,1599 jack,1,kinghenryv,1599 lodgers,1,kinghenryv,1599 Eat,1,kinghenryv,1599 muffler,1,kinghenryv,1599 sleeping,1,kinghenryv,1599 compel,1,kinghenryv,1599 Mercuries,1,kinghenryv,1599 Fifth,1,kinghenryv,1599 seemed,1,kinghenryv,1599 fright,1,kinghenryv,1599 peer,1,kinghenryv,1599 Eastcheap,1,kinghenryv,1599 jade,1,kinghenryv,1599 violation,1,kinghenryv,1599 silver,1,kinghenryv,1599 lazar,1,kinghenryv,1599 urging,1,kinghenryv,1599 list,1,kinghenryv,1599 human,1,kinghenryv,1599 levied,1,kinghenryv,1599 hurt,1,kinghenryv,1599 opportunity,1,kinghenryv,1599 divinity,1,kinghenryv,1599 prawls,1,kinghenryv,1599 villages,1,kinghenryv,1599 blessedly,1,kinghenryv,1599 strange,1,kinghenryv,1599 Lend,1,kinghenryv,1599 venge,1,kinghenryv,1599 Philip,1,kinghenryv,1599 exhale,1,kinghenryv,1599 contend,1,kinghenryv,1599 bridled,1,kinghenryv,1599 follow'd,1,kinghenryv,1599 entreats,1,kinghenryv,1599 tediously,1,kinghenryv,1599 majestee,1,kinghenryv,1599 leading,1,kinghenryv,1599 simply,1,kinghenryv,1599 shade,1,kinghenryv,1599 retourne,1,kinghenryv,1599 try,1,kinghenryv,1599 transported,1,kinghenryv,1599 wildly,1,kinghenryv,1599 frank,1,kinghenryv,1599 sentinels,1,kinghenryv,1599 simple,1,kinghenryv,1599 sentence,1,kinghenryv,1599 'This,1,kinghenryv,1599 Hyperion,1,kinghenryv,1599 spring,1,kinghenryv,1599 pioneers,1,kinghenryv,1599 tardy,1,kinghenryv,1599 incarnate,1,kinghenryv,1599 pere,1,kinghenryv,1599 widow,1,kinghenryv,1599 Moy,1,kinghenryv,1599 denying,1,kinghenryv,1599 Bite,1,kinghenryv,1599 payment,1,kinghenryv,1599 imposed,1,kinghenryv,1599 brag,1,kinghenryv,1599 Mount,1,kinghenryv,1599 respect,1,kinghenryv,1599 qualmish,1,kinghenryv,1599 unprofitable,1,kinghenryv,1599 centre,1,kinghenryv,1599 theoric,1,kinghenryv,1599 scanting,1,kinghenryv,1599 savages,1,kinghenryv,1599 dark,1,kinghenryv,1599 honour's,1,kinghenryv,1599 Gracious,1,kinghenryv,1599 Disorder,1,kinghenryv,1599 precepts,1,kinghenryv,1599 Die,1,kinghenryv,1599 weigh,1,kinghenryv,1599 abridgment,1,kinghenryv,1599 Howbeit,1,kinghenryv,1599 dub,1,kinghenryv,1599 liquor,1,kinghenryv,1599 toe,1,kinghenryv,1599 cholers,1,kinghenryv,1599 prelate,1,kinghenryv,1599 stratagem,1,kinghenryv,1599 He's,1,kinghenryv,1599 mervailous,1,kinghenryv,1599 weighs,1,kinghenryv,1599 lank,1,kinghenryv,1599 humbler,1,kinghenryv,1599 dispatch,1,kinghenryv,1599 Alencon's,1,kinghenryv,1599 hotly,1,kinghenryv,1599 lamb,1,kinghenryv,1599 reverend,1,kinghenryv,1599 overshot,1,kinghenryv,1599 promptement,1,kinghenryv,1599 servest,1,kinghenryv,1599 emperor's,1,kinghenryv,1599 DRAMATIS,1,kinghenryv,1599 chariot,1,kinghenryv,1599 shift,1,kinghenryv,1599 gored,1,kinghenryv,1599 sinister,1,kinghenryv,1599 venom,1,kinghenryv,1599 demoiselles,1,kinghenryv,1599 temps,1,kinghenryv,1599 tip,1,kinghenryv,1599 Touch,1,kinghenryv,1599 filthy,1,kinghenryv,1599 vacant,1,kinghenryv,1599 flower,1,kinghenryv,1599 Desires,1,kinghenryv,1599 treasuries,1,kinghenryv,1599 usurper,1,kinghenryv,1599 awkward,1,kinghenryv,1599 largess,1,kinghenryv,1599 bilbow,1,kinghenryv,1599 promised'st,1,kinghenryv,1599 Left,1,kinghenryv,1599 entreated,1,kinghenryv,1599 cakes,1,kinghenryv,1599 meeter,1,kinghenryv,1599 tired,1,kinghenryv,1599 wills,1,kinghenryv,1599 frail,1,kinghenryv,1599 ascend,1,kinghenryv,1599 Ride,1,kinghenryv,1599 cross,1,kinghenryv,1599 'Praise,1,kinghenryv,1599 maison,1,kinghenryv,1599 attest,1,kinghenryv,1599 unwish'd,1,kinghenryv,1599 stings,1,kinghenryv,1599 'How,1,kinghenryv,1599 drown'd,1,kinghenryv,1599 Fair,1,kinghenryv,1599 PRINCESS,1,kinghenryv,1599 Jacksauce,1,kinghenryv,1599 den,1,kinghenryv,1599 arbitrement,1,kinghenryv,1599 Rien,1,kinghenryv,1599 brim,1,kinghenryv,1599 jealousy,1,kinghenryv,1599 speaker,1,kinghenryv,1599 gloves,1,kinghenryv,1599 awake,1,kinghenryv,1599 stomachs,1,kinghenryv,1599 contre,1,kinghenryv,1599 Saying,1,kinghenryv,1599 Edward's,1,kinghenryv,1599 amen,1,kinghenryv,1599 exchequer,1,kinghenryv,1599 haunted,1,kinghenryv,1599 charity,1,kinghenryv,1599 Opens,1,kinghenryv,1599 woman,1,kinghenryv,1599 dinners,1,kinghenryv,1599 doting,1,kinghenryv,1599 sneaking,1,kinghenryv,1599 repair,1,kinghenryv,1599 parler,1,kinghenryv,1599 parles,1,kinghenryv,1599 Find,1,kinghenryv,1599 parlez,1,kinghenryv,1599 obedience,1,kinghenryv,1599 Cressid's,1,kinghenryv,1599 avaunt,1,kinghenryv,1599 shape,1,kinghenryv,1599 contaminated,1,kinghenryv,1599 tread,1,kinghenryv,1599 Agamemnon,1,kinghenryv,1599 coin'd,1,kinghenryv,1599 womby,1,kinghenryv,1599 perhaps,1,kinghenryv,1599 suffocate,1,kinghenryv,1599 direction,1,kinghenryv,1599 crows,1,kinghenryv,1599 Unfold,1,kinghenryv,1599 sands,1,kinghenryv,1599 wilfulness,1,kinghenryv,1599 MICHAEL,1,kinghenryv,1599 dis,1,kinghenryv,1599 deesse,1,kinghenryv,1599 turn'd,1,kinghenryv,1599 usurped,1,kinghenryv,1599 Holding,1,kinghenryv,1599 inheritrix,1,kinghenryv,1599 nostril,1,kinghenryv,1599 conjecture,1,kinghenryv,1599 endings,1,kinghenryv,1599 vanish'd,1,kinghenryv,1599 Tut,1,kinghenryv,1599 monsters,1,kinghenryv,1599 shock,1,kinghenryv,1599 terram,1,kinghenryv,1599 servant's,1,kinghenryv,1599 remembered,1,kinghenryv,1599 beaver,1,kinghenryv,1599 JOHN,1,kinghenryv,1599 daughters,1,kinghenryv,1599 heroical,1,kinghenryv,1599 silken,2,kinghenryv,1599 bonne,2,kinghenryv,1599 villany,2,kinghenryv,1599 lusty,2,kinghenryv,1599 imaginary,2,kinghenryv,1599 ongles,2,kinghenryv,1599 debts,2,kinghenryv,1599 smiled,2,kinghenryv,1599 pity,2,kinghenryv,1599 confused,2,kinghenryv,1599 digested,2,kinghenryv,1599 Cleitus,2,kinghenryv,1599 LORD,2,kinghenryv,1599 dames,2,kinghenryv,1599 darest,2,kinghenryv,1599 motion,2,kinghenryv,1599 guilt,2,kinghenryv,1599 apprehend,2,kinghenryv,1599 weary,2,kinghenryv,1599 writ,2,kinghenryv,1599 business,2,kinghenryv,1599 treasure,2,kinghenryv,1599 Pish,2,kinghenryv,1599 alike,2,kinghenryv,1599 neighbours,2,kinghenryv,1599 peasant,2,kinghenryv,1599 convoy,2,kinghenryv,1599 advantage,2,kinghenryv,1599 wooden,2,kinghenryv,1599 dagger,2,kinghenryv,1599 ecus,2,kinghenryv,1599 rode,2,kinghenryv,1599 haste,2,kinghenryv,1599 village,2,kinghenryv,1599 assured,2,kinghenryv,1599 robe,2,kinghenryv,1599 patches,2,kinghenryv,1599 branch,2,kinghenryv,1599 highness',2,kinghenryv,1599 joy,2,kinghenryv,1599 drowsy,2,kinghenryv,1599 eight,2,kinghenryv,1599 imitate,2,kinghenryv,1599 lodging,2,kinghenryv,1599 Citizens,2,kinghenryv,1599 Either,2,kinghenryv,1599 Black,2,kinghenryv,1599 prisoner,2,kinghenryv,1599 fury,2,kinghenryv,1599 drink,2,kinghenryv,1599 appeal,2,kinghenryv,1599 laugh,2,kinghenryv,1599 prey,2,kinghenryv,1599 terrible,2,kinghenryv,1599 Wye,2,kinghenryv,1599 odds,2,kinghenryv,1599 sore,2,kinghenryv,1599 remain,2,kinghenryv,1599 scambling,2,kinghenryv,1599 bowels,2,kinghenryv,1599 gentilhomme,2,kinghenryv,1599 wounded,2,kinghenryv,1599 earls,2,kinghenryv,1599 cheeks,2,kinghenryv,1599 demand,2,kinghenryv,1599 mute,2,kinghenryv,1599 vary,2,kinghenryv,1599 rub,2,kinghenryv,1599 case,2,kinghenryv,1599 battles,2,kinghenryv,1599 Richard's,2,kinghenryv,1599 song,2,kinghenryv,1599 coffers,2,kinghenryv,1599 Once,2,kinghenryv,1599 Scots,2,kinghenryv,1599 Poor,2,kinghenryv,1599 chin,2,kinghenryv,1599 bending,2,kinghenryv,1599 practises,2,kinghenryv,1599 inconstant,2,kinghenryv,1599 feather,2,kinghenryv,1599 sole,2,kinghenryv,1599 bearing,2,kinghenryv,1599 yearn,2,kinghenryv,1599 dance,2,kinghenryv,1599 outside,2,kinghenryv,1599 grows,2,kinghenryv,1599 Jove,2,kinghenryv,1599 sa',2,kinghenryv,1599 An't,2,kinghenryv,1599 injury,2,kinghenryv,1599 Keep,2,kinghenryv,1599 purse,2,kinghenryv,1599 heat,2,kinghenryv,1599 heal,2,kinghenryv,1599 toward,2,kinghenryv,1599 yearly,2,kinghenryv,1599 hearing,2,kinghenryv,1599 fingers,2,kinghenryv,1599 golden,2,kinghenryv,1599 paper,2,kinghenryv,1599 breaks,2,kinghenryv,1599 pipe,2,kinghenryv,1599 glass,2,kinghenryv,1599 making,2,kinghenryv,1599 likeness,2,kinghenryv,1599 shrewdly,2,kinghenryv,1599 complexion,2,kinghenryv,1599 furious,2,kinghenryv,1599 something,2,kinghenryv,1599 cities,2,kinghenryv,1599 towns,2,kinghenryv,1599 ocean,2,kinghenryv,1599 six,2,kinghenryv,1599 execution,2,kinghenryv,1599 hereafter,2,kinghenryv,1599 clergy,2,kinghenryv,1599 history,2,kinghenryv,1599 perdu,2,kinghenryv,1599 Lorraine,2,kinghenryv,1599 sender,2,kinghenryv,1599 maidens,2,kinghenryv,1599 Beyond,2,kinghenryv,1599 fleet,2,kinghenryv,1599 ourself,2,kinghenryv,1599 Crispin's,2,kinghenryv,1599 'A,2,kinghenryv,1599 walk,2,kinghenryv,1599 wall,2,kinghenryv,1599 shrill,2,kinghenryv,1599 slaughter,2,kinghenryv,1599 touches,2,kinghenryv,1599 fell,2,kinghenryv,1599 C'est,2,kinghenryv,1599 vraiment,2,kinghenryv,1599 knives,2,kinghenryv,1599 frosty,2,kinghenryv,1599 famed,2,kinghenryv,1599 'I,2,kinghenryv,1599 testament,2,kinghenryv,1599 study,2,kinghenryv,1599 wings,2,kinghenryv,1599 Thanks,2,kinghenryv,1599 pieces,2,kinghenryv,1599 sends,2,kinghenryv,1599 savour,2,kinghenryv,1599 indifferent,2,kinghenryv,1599 Roussi,2,kinghenryv,1599 swelling,2,kinghenryv,1599 worst,2,kinghenryv,1599 felt,2,kinghenryv,1599 Beaumont,2,kinghenryv,1599 Cornish,2,kinghenryv,1599 turning,2,kinghenryv,1599 confounded,2,kinghenryv,1599 chased,2,kinghenryv,1599 Officers,2,kinghenryv,1599 rhyme,2,kinghenryv,1599 repentance,2,kinghenryv,1599 civil,2,kinghenryv,1599 absence,2,kinghenryv,1599 beggarly,2,kinghenryv,1599 fruit,2,kinghenryv,1599 willing,2,kinghenryv,1599 worthy,2,kinghenryv,1599 Wherein,2,kinghenryv,1599 cries,2,kinghenryv,1599 elder,2,kinghenryv,1599 sur,2,kinghenryv,1599 feel,2,kinghenryv,1599 feet,2,kinghenryv,1599 valiantly,2,kinghenryv,1599 sauce,2,kinghenryv,1599 infinite,2,kinghenryv,1599 humbly,2,kinghenryv,1599 neighbourhood,2,kinghenryv,1599 Old,2,kinghenryv,1599 wine,2,kinghenryv,1599 wing,2,kinghenryv,1599 lion's,2,kinghenryv,1599 spital,2,kinghenryv,1599 latter,2,kinghenryv,1599 mirth,2,kinghenryv,1599 knees,2,kinghenryv,1599 expressly,2,kinghenryv,1599 One,2,kinghenryv,1599 Ecoutez,2,kinghenryv,1599 edge,2,kinghenryv,1599 ferret,2,kinghenryv,1599 quand,2,kinghenryv,1599 turned,2,kinghenryv,1599 succeed,2,kinghenryv,1599 sense,2,kinghenryv,1599 pretty,2,kinghenryv,1599 dice,2,kinghenryv,1599 cunning,2,kinghenryv,1599 wash,2,kinghenryv,1599 Turning,2,kinghenryv,1599 steel,2,kinghenryv,1599 coats,2,kinghenryv,1599 Ladies,2,kinghenryv,1599 creeping,2,kinghenryv,1599 manly,2,kinghenryv,1599 Englishmen,2,kinghenryv,1599 spoke,2,kinghenryv,1599 sceptre,2,kinghenryv,1599 fois,2,kinghenryv,1599 conditions,2,kinghenryv,1599 aspect,2,kinghenryv,1599 Daughter,2,kinghenryv,1599 bitter,2,kinghenryv,1599 senses,2,kinghenryv,1599 Faith,2,kinghenryv,1599 contrived,2,kinghenryv,1599 cudgel,2,kinghenryv,1599 manners,2,kinghenryv,1599 mortality,2,kinghenryv,1599 strongly,2,kinghenryv,1599 Hold,2,kinghenryv,1599 aboard,2,kinghenryv,1599 While,2,kinghenryv,1599 Jamy,2,kinghenryv,1599 At,2,kinghenryv,1599 granted,2,kinghenryv,1599 pas,2,kinghenryv,1599 pax,2,kinghenryv,1599 Foix,2,kinghenryv,1599 empress,2,kinghenryv,1599 blows,2,kinghenryv,1599 bow,2,kinghenryv,1599 deeds,2,kinghenryv,1599 alarum,2,kinghenryv,1599 bawcock,2,kinghenryv,1599 Le,2,kinghenryv,1599 blown,2,kinghenryv,1599 smile,2,kinghenryv,1599 La,2,kinghenryv,1599 Me,2,kinghenryv,1599 scurvy,2,kinghenryv,1599 peu,2,kinghenryv,1599 cruel,2,kinghenryv,1599 unless,2,kinghenryv,1599 void,2,kinghenryv,1599 pen,2,kinghenryv,1599 doo's,2,kinghenryv,1599 Her,2,kinghenryv,1599 hie,2,kinghenryv,1599 Within,2,kinghenryv,1599 Wales,2,kinghenryv,1599 cheerfully,2,kinghenryv,1599 fanning,2,kinghenryv,1599 husbands,2,kinghenryv,1599 Il,2,kinghenryv,1599 shillings,2,kinghenryv,1599 cudgels,2,kinghenryv,1599 pig,2,kinghenryv,1599 nice,2,kinghenryv,1599 VI,2,kinghenryv,1599 Denis,2,kinghenryv,1599 quiet,2,kinghenryv,1599 heady,2,kinghenryv,1599 Dukes,2,kinghenryv,1599 royalty,2,kinghenryv,1599 divide,2,kinghenryv,1599 gave,2,kinghenryv,1599 moys,2,kinghenryv,1599 bend,2,kinghenryv,1599 Drum,2,kinghenryv,1599 drench,2,kinghenryv,1599 salute,2,kinghenryv,1599 Prithee,2,kinghenryv,1599 sorts,2,kinghenryv,1599 cat,2,kinghenryv,1599 struck,2,kinghenryv,1599 yon,2,kinghenryv,1599 learned,2,kinghenryv,1599 perilous,2,kinghenryv,1599 Speak,2,kinghenryv,1599 gape,2,kinghenryv,1599 gore,2,kinghenryv,1599 Tucket,2,kinghenryv,1599 suddenly,2,kinghenryv,1599 prating,2,kinghenryv,1599 'orld,2,kinghenryv,1599 armourers,2,kinghenryv,1599 gun,2,kinghenryv,1599 beef,2,kinghenryv,1599 hilts,2,kinghenryv,1599 used,2,kinghenryv,1599 frowns,2,kinghenryv,1599 longer,2,kinghenryv,1599 enterprise,2,kinghenryv,1599 strip,2,kinghenryv,1599 Welshman,2,kinghenryv,1599 stretch,2,kinghenryv,1599 vantage,2,kinghenryv,1599 acceptance,2,kinghenryv,1599 pardonner,2,kinghenryv,1599 afoot,2,kinghenryv,1599 pillage,2,kinghenryv,1599 quite,2,kinghenryv,1599 magnanimous,2,kinghenryv,1599 entertain,2,kinghenryv,1599 government,2,kinghenryv,1599 instant,2,kinghenryv,1599 forgive,2,kinghenryv,1599 eloquence,2,kinghenryv,1599 gage,2,kinghenryv,1599 yea,2,kinghenryv,1599 gift,2,kinghenryv,1599 servant,2,kinghenryv,1599 marches,2,kinghenryv,1599 Ill,2,kinghenryv,1599 Arthur's,2,kinghenryv,1599 Unless,2,kinghenryv,1599 swearing,2,kinghenryv,1599 unworthy,2,kinghenryv,1599 gilt,2,kinghenryv,1599 thrive,2,kinghenryv,1599 imperfections,2,kinghenryv,1599 boast,2,kinghenryv,1599 husband,2,kinghenryv,1599 stole,2,kinghenryv,1599 nicely,2,kinghenryv,1599 buried,2,kinghenryv,1599 devant,2,kinghenryv,1599 trophy,2,kinghenryv,1599 ale,2,kinghenryv,1599 cocks,2,kinghenryv,1599 approach,2,kinghenryv,1599 forget,2,kinghenryv,1599 luggage,2,kinghenryv,1599 realm,2,kinghenryv,1599 feast,2,kinghenryv,1599 move,2,kinghenryv,1599 wonderful,2,kinghenryv,1599 cowardly,2,kinghenryv,1599 small,2,kinghenryv,1599 Others,2,kinghenryv,1599 supplie,2,kinghenryv,1599 collected,2,kinghenryv,1599 abide,2,kinghenryv,1599 idle,2,kinghenryv,1599 mightiness,2,kinghenryv,1599 perfectly,2,kinghenryv,1599 morn,2,kinghenryv,1599 lackeys,2,kinghenryv,1599 offences,2,kinghenryv,1599 stillness,2,kinghenryv,1599 impediment,2,kinghenryv,1599 loss,2,kinghenryv,1599 add,2,kinghenryv,1599 achieved,2,kinghenryv,1599 resolved,2,kinghenryv,1599 ample,2,kinghenryv,1599 spend,2,kinghenryv,1599 Normans,2,kinghenryv,1599 nimble,2,kinghenryv,1599 forgot,2,kinghenryv,1599 knee,2,kinghenryv,1599 natures,2,kinghenryv,1599 deux,2,kinghenryv,1599 Iceland,2,kinghenryv,1599 harm,2,kinghenryv,1599 wasteful,2,kinghenryv,1599 Mort,2,kinghenryv,1599 running,2,kinghenryv,1599 executed,2,kinghenryv,1599 easy,2,kinghenryv,1599 menton,2,kinghenryv,1599 Break,2,kinghenryv,1599 Most,2,kinghenryv,1599 tu,2,kinghenryv,1599 remember'd,2,kinghenryv,1599 m'en,2,kinghenryv,1599 crow,2,kinghenryv,1599 welcome,2,kinghenryv,1599 signify,2,kinghenryv,1599 Jaques,2,kinghenryv,1599 hang,2,kinghenryv,1599 liberty,2,kinghenryv,1599 Full,2,kinghenryv,1599 drawn,2,kinghenryv,1599 GOVERNOR,2,kinghenryv,1599 open,2,kinghenryv,1599 monde,2,kinghenryv,1599 midnight,2,kinghenryv,1599 vengeance,2,kinghenryv,1599 occasions,2,kinghenryv,1599 plus,2,kinghenryv,1599 Que,2,kinghenryv,1599 subject's,2,kinghenryv,1599 Commend,2,kinghenryv,1599 ship,2,kinghenryv,1599 money,2,kinghenryv,1599 hum,2,kinghenryv,1599 apt,2,kinghenryv,1599 prains,2,kinghenryv,1599 nous,2,kinghenryv,1599 stones,2,kinghenryv,1599 dreadful,2,kinghenryv,1599 rogue,2,kinghenryv,1599 executors,2,kinghenryv,1599 shog,2,kinghenryv,1599 winking,2,kinghenryv,1599 shoe,2,kinghenryv,1599 concerning,2,kinghenryv,1599 awe,2,kinghenryv,1599 faithful,2,kinghenryv,1599 food,2,kinghenryv,1599 courses,2,kinghenryv,1599 push,2,kinghenryv,1599 forms,2,kinghenryv,1599 ye,2,kinghenryv,1599 feu,2,kinghenryv,1599 fer,2,kinghenryv,1599 Hark,2,kinghenryv,1599 touch,2,kinghenryv,1599 washed,2,kinghenryv,1599 enemies,2,kinghenryv,1599 judgment,2,kinghenryv,1599 Crispin,2,kinghenryv,1599 Europe,2,kinghenryv,1599 capital,2,kinghenryv,1599 superfluous,2,kinghenryv,1599 Into,2,kinghenryv,1599 George,2,kinghenryv,1599 Between,2,kinghenryv,1599 fat,2,kinghenryv,1599 lean,2,kinghenryv,1599 Comes,2,kinghenryv,1599 leap,2,kinghenryv,1599 occasion,2,kinghenryv,1599 Phoebus,2,kinghenryv,1599 garments,2,kinghenryv,1599 ordnance,2,kinghenryv,1599 Vaudemont,2,kinghenryv,1599 mastiffs,2,kinghenryv,1599 Against,2,kinghenryv,1599 griefs,2,kinghenryv,1599 mischief,2,kinghenryv,1599 sickly,2,kinghenryv,1599 thinks,2,kinghenryv,1599 omit,2,kinghenryv,1599 beast,2,kinghenryv,1599 castles,2,kinghenryv,1599 locks,2,kinghenryv,1599 tender,2,kinghenryv,1599 bravely,2,kinghenryv,1599 faint,2,kinghenryv,1599 traitors,2,kinghenryv,1599 dukes,2,kinghenryv,1599 bottom,2,kinghenryv,1599 squires,2,kinghenryv,1599 visage,2,kinghenryv,1599 young,2,kinghenryv,1599 affections,2,kinghenryv,1599 you'll,2,kinghenryv,1599 Kissing,2,kinghenryv,1599 scars,2,kinghenryv,1599 avouch,2,kinghenryv,1599 Saxons,2,kinghenryv,1599 famous,2,kinghenryv,1599 child,2,kinghenryv,1599 overlook,2,kinghenryv,1599 dirty,2,kinghenryv,1599 effect,2,kinghenryv,1599 likewise,2,kinghenryv,1599 arrived,2,kinghenryv,1599 teeth,2,kinghenryv,1599 saving,2,kinghenryv,1599 mightst,2,kinghenryv,1599 signieur,2,kinghenryv,1599 purposes,2,kinghenryv,1599 Elbe,2,kinghenryv,1599 KING'S,2,kinghenryv,1599 blush,2,kinghenryv,1599 Gallia,2,kinghenryv,1599 Queen,2,kinghenryv,1599 Could,2,kinghenryv,1599 sovereign's,2,kinghenryv,1599 skin,2,kinghenryv,1599 tents,2,kinghenryv,1599 coward,2,kinghenryv,1599 Fauconberg,2,kinghenryv,1599 ALL,2,kinghenryv,1599 monsieur,2,kinghenryv,1599 knows,2,kinghenryv,1599 crimson,2,kinghenryv,1599 known,2,kinghenryv,1599 woe,2,kinghenryv,1599 Any,2,kinghenryv,1599 let's,2,kinghenryv,1599 Trojan,2,kinghenryv,1599 woo,2,kinghenryv,1599 infants,2,kinghenryv,1599 greatest,2,kinghenryv,1599 turkey,2,kinghenryv,1599 need,2,kinghenryv,1599 Berri,2,kinghenryv,1599 Falstaff,2,kinghenryv,1599 worthless,2,kinghenryv,1599 apart,2,kinghenryv,1599 Third,2,kinghenryv,1599 fist,2,kinghenryv,1599 ceremonies,2,kinghenryv,1599 sayest,2,kinghenryv,1599 rendezvous,2,kinghenryv,1599 firk,2,kinghenryv,1599 lieutenant,2,kinghenryv,1599 o'clock,2,kinghenryv,1599 breed,2,kinghenryv,1599 Capet,2,kinghenryv,1599 maids,2,kinghenryv,1599 desolation,2,kinghenryv,1599 wi',2,kinghenryv,1599 flesh'd,2,kinghenryv,1599 esquires,2,kinghenryv,1599 example,2,kinghenryv,1599 flies,2,kinghenryv,1599 majesties,2,kinghenryv,1599 salt,2,kinghenryv,1599 sake,2,kinghenryv,1599 understanding,2,kinghenryv,1599 purchase,2,kinghenryv,1599 Rambures,2,kinghenryv,1599 message,2,kinghenryv,1599 hateful,2,kinghenryv,1599 confined,2,kinghenryv,1599 loving,2,kinghenryv,1599 third,2,kinghenryv,1599 THOMAS,2,kinghenryv,1599 moment,2,kinghenryv,1599 sonnet,2,kinghenryv,1599 Dear,2,kinghenryv,1599 Say,2,kinghenryv,1599 heaps,2,kinghenryv,1599 offending,2,kinghenryv,1599 oublie,2,kinghenryv,1599 Germany,2,kinghenryv,1599 England's,2,kinghenryv,1599 patiently,2,kinghenryv,1599 crown'd,2,kinghenryv,1599 Ancient,2,kinghenryv,1599 stick,2,kinghenryv,1599 earnest,2,kinghenryv,1599 stage,2,kinghenryv,1599 barbarous,2,kinghenryv,1599 perforce,2,kinghenryv,1599 audience,2,kinghenryv,1599 found,2,kinghenryv,1599 handle,2,kinghenryv,1599 assure,2,kinghenryv,1599 danger,2,kinghenryv,1599 dying,2,kinghenryv,1599 SIR,2,kinghenryv,1599 price,2,kinghenryv,1599 wheel,2,kinghenryv,1599 breakfast,2,kinghenryv,1599 next,2,kinghenryv,1599 enforces,2,kinghenryv,1599 belly,2,kinghenryv,1599 pence,2,kinghenryv,1599 affirm,2,kinghenryv,1599 possess,2,kinghenryv,1599 Sixth,2,kinghenryv,1599 husbandry,2,kinghenryv,1599 faces,2,kinghenryv,1599 takes,2,kinghenryv,1599 faced,2,kinghenryv,1599 figo,2,kinghenryv,1599 pining,2,kinghenryv,1599 what's,2,kinghenryv,1599 foreign,2,kinghenryv,1599 betting,2,kinghenryv,1599 functions,2,kinghenryv,1599 cups,2,kinghenryv,1599 soldiers',2,kinghenryv,1599 nest,2,kinghenryv,1599 waters,2,kinghenryv,1599 farther,2,kinghenryv,1599 waste,2,kinghenryv,1599 angry,2,kinghenryv,1599 foi,2,kinghenryv,1599 comparisons,2,kinghenryv,1599 fail,2,kinghenryv,1599 prevention,2,kinghenryv,1599 contempt,2,kinghenryv,1599 Roy,2,kinghenryv,1599 cried,2,kinghenryv,1599 evil,2,kinghenryv,1599 Make,2,kinghenryv,1599 'fore,2,kinghenryv,1599 modesty,2,kinghenryv,1599 Brother,2,kinghenryv,1599 desert,2,kinghenryv,1599 Almighty,2,kinghenryv,1599 article,2,kinghenryv,1599 kinsman,2,kinghenryv,1599 Runs,2,kinghenryv,1599 wounds,2,kinghenryv,1599 wickedness,2,kinghenryv,1599 l'Anglois,2,kinghenryv,1599 worthiness,2,kinghenryv,1599 fighting,2,kinghenryv,1599 dancing,2,kinghenryv,1599 'em,2,kinghenryv,1599 Mars,2,kinghenryv,1599 endeavour,2,kinghenryv,1599 fit,2,kinghenryv,1599 Mark,2,kinghenryv,1599 passion,2,kinghenryv,1599 vow,2,kinghenryv,1599 Doing,2,kinghenryv,1599 swallow'd,2,kinghenryv,1599 rich,2,kinghenryv,1599 fill,2,kinghenryv,1599 Yoke,2,kinghenryv,1599 admiration,2,kinghenryv,1599 savage,2,kinghenryv,1599 folly,2,kinghenryv,1599 Fare,2,kinghenryv,1599 contagious,2,kinghenryv,1599 tavern,2,kinghenryv,1599 pocket,2,kinghenryv,1599 consign,2,kinghenryv,1599 herself,2,kinghenryv,1599 ales,2,kinghenryv,1599 an't,2,kinghenryv,1599 smooth,2,kinghenryv,1599 patient,2,kinghenryv,1599 lived,2,kinghenryv,1599 bate,2,kinghenryv,1599 member,2,kinghenryv,1599 Chatillon,2,kinghenryv,1599 freshly,2,kinghenryv,1599 fate,2,kinghenryv,1599 cock,2,kinghenryv,1599 founder,2,kinghenryv,1599 Davy's,2,kinghenryv,1599 lenity,2,kinghenryv,1599 feeble,2,kinghenryv,1599 farm,2,kinghenryv,1599 author,2,kinghenryv,1599 is't,2,kinghenryv,1599 constant,2,kinghenryv,1599 sufficient,2,kinghenryv,1599 carry,2,kinghenryv,1599 Hampton,2,kinghenryv,1599 ought,2,kinghenryv,1599 holy,2,kinghenryv,1599 clear,2,kinghenryv,1599 virgins,2,kinghenryv,1599 peaceful,2,kinghenryv,1599 greet,2,kinghenryv,1599 dangerous,2,kinghenryv,1599 hollow,2,kinghenryv,1599 lackey,2,kinghenryv,1599 Although,2,kinghenryv,1599 counterfeit,2,kinghenryv,1599 strong,2,kinghenryv,1599 flood,2,kinghenryv,1599 defeat,2,kinghenryv,1599 horses,2,kinghenryv,1599 Dat,2,kinghenryv,1599 roping,2,kinghenryv,1599 task,2,kinghenryv,1599 prayers,2,kinghenryv,1599 bawd,2,kinghenryv,1599 Anglois,2,kinghenryv,1599 country's,2,kinghenryv,1599 lovely,2,kinghenryv,1599 Erpingham,2,kinghenryv,1599 winged,2,kinghenryv,1599 inward,2,kinghenryv,1599 reckoning,2,kinghenryv,1599 Right,2,kinghenryv,1599 Seek,2,kinghenryv,1599 supplied,2,kinghenryv,1599 either,2,kinghenryv,1599 presence,2,kinghenryv,1599 col,2,kinghenryv,1599 discretion,2,kinghenryv,1599 valued,2,kinghenryv,1599 vessel,2,kinghenryv,1599 render,2,kinghenryv,1599 Mine,2,kinghenryv,1599 expectation,2,kinghenryv,1599 reciterai,2,kinghenryv,1599 Pray,2,kinghenryv,1599 rascally,2,kinghenryv,1599 blame,2,kinghenryv,1599 lovest,2,kinghenryv,1599 goat,2,kinghenryv,1599 hours,2,kinghenryv,1599 Toward,2,kinghenryv,1599 wretched,2,kinghenryv,1599 une,2,kinghenryv,1599 floods,2,kinghenryv,1599 Familiar,2,kinghenryv,1599 aloud,2,kinghenryv,1599 'God,2,kinghenryv,1599 Isabel,2,kinghenryv,1599 pavilion,2,kinghenryv,1599 Lieutenant,2,kinghenryv,1599 greeting,2,kinghenryv,1599 hedges,2,kinghenryv,1599 sickness,2,kinghenryv,1599 leagues,2,kinghenryv,1599 deceits,2,kinghenryv,1599 bestow,2,kinghenryv,1599 crooked,2,kinghenryv,1599 master's,2,kinghenryv,1599 sheets,2,kinghenryv,1599 trot,2,kinghenryv,1599 licence,2,kinghenryv,1599 Lestrale,2,kinghenryv,1599 petty,2,kinghenryv,1599 ARCHBISHOP,2,kinghenryv,1599 debate,2,kinghenryv,1599 cheval,2,kinghenryv,1599 fiends,2,kinghenryv,1599 maintained,2,kinghenryv,1599 abroad,2,kinghenryv,1599 pasture,2,kinghenryv,1599 hostess,2,kinghenryv,1599 Five,2,kinghenryv,1599 forced,2,kinghenryv,1599 steeds,2,kinghenryv,1599 Paris,2,kinghenryv,1599 warlike,2,kinghenryv,1599 island,2,kinghenryv,1599 sister,2,kinghenryv,1599 lofty,2,kinghenryv,1599 upward,2,kinghenryv,1599 According,2,kinghenryv,1599 Rouen,2,kinghenryv,1599 abuse,2,kinghenryv,1599 pleasant,2,kinghenryv,1599 merciful,2,kinghenryv,1599 ladies,2,kinghenryv,1599 flea,2,kinghenryv,1599 Abate,2,kinghenryv,1599 Eight,2,kinghenryv,1599 Delabreth,2,kinghenryv,1599 lion,2,kinghenryv,1599 homage,2,kinghenryv,1599 Indeed,2,kinghenryv,1599 whiles,2,kinghenryv,1599 cutpurse,2,kinghenryv,1599 last,2,kinghenryv,1599 sometimes,2,kinghenryv,1599 military,2,kinghenryv,1599 phrase,2,kinghenryv,1599 gulf,2,kinghenryv,1599 citizens,2,kinghenryv,1599 beauty,2,kinghenryv,1599 VII,2,kinghenryv,1599 chew'd,2,kinghenryv,1599 Salisbury,2,kinghenryv,1599 squire,2,kinghenryv,1599 ragged,2,kinghenryv,1599 neigh,2,kinghenryv,1599 laissez,2,kinghenryv,1599 passages,2,kinghenryv,1599 You'll,2,kinghenryv,1599 Thy,2,kinghenryv,1599 vineyards,2,kinghenryv,1599 attend,2,kinghenryv,1599 mangled,2,kinghenryv,1599 bras,2,kinghenryv,1599 princely,2,kinghenryv,1599 Alice,2,kinghenryv,1599 sudden,2,kinghenryv,1599 catch,2,kinghenryv,1599 ton,2,kinghenryv,1599 another's,2,kinghenryv,1599 fellowship,2,kinghenryv,1599 bred,2,kinghenryv,1599 Until,2,kinghenryv,1599 shake,2,kinghenryv,1599 pass'd,2,kinghenryv,1599 Bouciqualt,2,kinghenryv,1599 bargain,2,kinghenryv,1599 without,2,kinghenryv,1599 he'll,2,kinghenryv,1599 smell,2,kinghenryv,1599 des,2,kinghenryv,1599 gentler,2,kinghenryv,1599 gentles,2,kinghenryv,1599 private,2,kinghenryv,1599 figures,2,kinghenryv,1599 defences,2,kinghenryv,1599 cannon,2,kinghenryv,1599 remembrance,2,kinghenryv,1599 parley,2,kinghenryv,1599 shoes,2,kinghenryv,1599 conspired,2,kinghenryv,1599 hunting,2,kinghenryv,1599 chivalry,2,kinghenryv,1599 wouldst,2,kinghenryv,1599 share,2,kinghenryv,1599 chambers,2,kinghenryv,1599 Hugh,2,kinghenryv,1599 sharp,2,kinghenryv,1599 punished,2,kinghenryv,1599 majestical,2,kinghenryv,1599 ending,2,kinghenryv,1599 summer,2,kinghenryv,1599 busied,2,kinghenryv,1599 heed,3,kinghenryv,1599 told,3,kinghenryv,1599 regard,3,kinghenryv,1599 advised,3,kinghenryv,1599 guard,3,kinghenryv,1599 Fer,3,kinghenryv,1599 red,3,kinghenryv,1599 Bedford,3,kinghenryv,1599 drop,3,kinghenryv,1599 brass,3,kinghenryv,1599 ay'll,3,kinghenryv,1599 Alas,3,kinghenryv,1599 possible,3,kinghenryv,1599 Pharamond,3,kinghenryv,1599 longs,3,kinghenryv,1599 preparation,3,kinghenryv,1599 rascal,3,kinghenryv,1599 Dauphin's,3,kinghenryv,1599 painted,3,kinghenryv,1599 groat,3,kinghenryv,1599 vain,3,kinghenryv,1599 toil,3,kinghenryv,1599 honourable,3,kinghenryv,1599 hanged,3,kinghenryv,1599 advance,3,kinghenryv,1599 maintain,3,kinghenryv,1599 horrid,3,kinghenryv,1599 jades,3,kinghenryv,1599 yonder,3,kinghenryv,1599 iron,3,kinghenryv,1599 ancestors,3,kinghenryv,1599 become,3,kinghenryv,1599 advantages,3,kinghenryv,1599 d'Angleterre,3,kinghenryv,1599 strength,3,kinghenryv,1599 sont,3,kinghenryv,1599 sad,3,kinghenryv,1599 After,3,kinghenryv,1599 stock,3,kinghenryv,1599 sold,3,kinghenryv,1599 years,3,kinghenryv,1599 tout,3,kinghenryv,1599 trumpet,3,kinghenryv,1599 policy,3,kinghenryv,1599 gross,3,kinghenryv,1599 Ambassador,3,kinghenryv,1599 veins,3,kinghenryv,1599 soft,3,kinghenryv,1599 blessed,3,kinghenryv,1599 wait,3,kinghenryv,1599 defiance,3,kinghenryv,1599 embassy,3,kinghenryv,1599 bound,3,kinghenryv,1599 bastard,3,kinghenryv,1599 saying,3,kinghenryv,1599 merry,3,kinghenryv,1599 monarch,3,kinghenryv,1599 scorn,3,kinghenryv,1599 council,3,kinghenryv,1599 deliver,3,kinghenryv,1599 church,3,kinghenryv,1599 Such,3,kinghenryv,1599 second,3,kinghenryv,1599 play'd,3,kinghenryv,1599 becomes,3,kinghenryv,1599 ourselves,3,kinghenryv,1599 These,3,kinghenryv,1599 Brabant,3,kinghenryv,1599 twelve,3,kinghenryv,1599 ways,3,kinghenryv,1599 born,3,kinghenryv,1599 Turn,3,kinghenryv,1599 expedition,3,kinghenryv,1599 fearful,3,kinghenryv,1599 promise,3,kinghenryv,1599 masters,3,kinghenryv,1599 wishes,3,kinghenryv,1599 wink,3,kinghenryv,1599 monarchs,3,kinghenryv,1599 want,3,kinghenryv,1599 dies,3,kinghenryv,1599 bold,3,kinghenryv,1599 died,3,kinghenryv,1599 horsemen,3,kinghenryv,1599 ambassador,3,kinghenryv,1599 rule,3,kinghenryv,1599 There's,3,kinghenryv,1599 manhood,3,kinghenryv,1599 praised,3,kinghenryv,1599 colour,3,kinghenryv,1599 discuss,3,kinghenryv,1599 Et,3,kinghenryv,1599 burning,3,kinghenryv,1599 Leaving,3,kinghenryv,1599 What's,3,kinghenryv,1599 offend,3,kinghenryv,1599 measure,3,kinghenryv,1599 flattery,3,kinghenryv,1599 bon,3,kinghenryv,1599 box,3,kinghenryv,1599 Stand,3,kinghenryv,1599 since,3,kinghenryv,1599 helmet,3,kinghenryv,1599 pleasure,3,kinghenryv,1599 bless,3,kinghenryv,1599 whole,3,kinghenryv,1599 arrest,3,kinghenryv,1599 Had,3,kinghenryv,1599 hides,3,kinghenryv,1599 ears,3,kinghenryv,1599 proud,3,kinghenryv,1599 Up,3,kinghenryv,1599 grandfather,3,kinghenryv,1599 glorious,3,kinghenryv,1599 yourselves,3,kinghenryv,1599 Welsh,3,kinghenryv,1599 weep,3,kinghenryv,1599 proportion,3,kinghenryv,1599 behind,3,kinghenryv,1599 gone,3,kinghenryv,1599 sounds,3,kinghenryv,1599 Save,3,kinghenryv,1599 parle,3,kinghenryv,1599 Behold,3,kinghenryv,1599 Sala,3,kinghenryv,1599 Put,3,kinghenryv,1599 twice,3,kinghenryv,1599 degree,3,kinghenryv,1599 begin,3,kinghenryv,1599 dogs,3,kinghenryv,1599 story,3,kinghenryv,1599 deep,3,kinghenryv,1599 promised,3,kinghenryv,1599 wretch,3,kinghenryv,1599 ha,3,kinghenryv,1599 Soldiers,3,kinghenryv,1599 raise,3,kinghenryv,1599 repent,3,kinghenryv,1599 consider,3,kinghenryv,1599 favour,3,kinghenryv,1599 stood,3,kinghenryv,1599 stoop,3,kinghenryv,1599 legs,3,kinghenryv,1599 athversary,3,kinghenryv,1599 ce,3,kinghenryv,1599 door,3,kinghenryv,1599 Master,3,kinghenryv,1599 fears,3,kinghenryv,1599 committed,3,kinghenryv,1599 Bardolph's,3,kinghenryv,1599 endure,3,kinghenryv,1599 causes,3,kinghenryv,1599 moon,3,kinghenryv,1599 feats,3,kinghenryv,1599 act,3,kinghenryv,1599 greater,3,kinghenryv,1599 ready,3,kinghenryv,1599 brought,3,kinghenryv,1599 fierce,3,kinghenryv,1599 discourse,3,kinghenryv,1599 outward,3,kinghenryv,1599 speaks,3,kinghenryv,1599 reasonable,3,kinghenryv,1599 etes,3,kinghenryv,1599 Christian,3,kinghenryv,1599 shallow,3,kinghenryv,1599 Call,3,kinghenryv,1599 More,3,kinghenryv,1599 re,3,kinghenryv,1599 appears,3,kinghenryv,1599 Lady,3,kinghenryv,1599 accord,3,kinghenryv,1599 First,3,kinghenryv,1599 form,3,kinghenryv,1599 prepare,3,kinghenryv,1599 ask,3,kinghenryv,1599 paid,3,kinghenryv,1599 fore,3,kinghenryv,1599 fear'd,3,kinghenryv,1599 revenge,3,kinghenryv,1599 ass,3,kinghenryv,1599 maiden,3,kinghenryv,1599 Are,3,kinghenryv,1599 knock,3,kinghenryv,1599 Strikes,3,kinghenryv,1599 Signieur,3,kinghenryv,1599 hazard,3,kinghenryv,1599 broke,3,kinghenryv,1599 Art,3,kinghenryv,1599 universal,3,kinghenryv,1599 prave,3,kinghenryv,1599 Grandpre,3,kinghenryv,1599 empty,3,kinghenryv,1599 hill,3,kinghenryv,1599 barons,3,kinghenryv,1599 Ireland,3,kinghenryv,1599 water,3,kinghenryv,1599 proverb,3,kinghenryv,1599 almost,3,kinghenryv,1599 Peace,3,kinghenryv,1599 Bar,3,kinghenryv,1599 bears,3,kinghenryv,1599 wildness,3,kinghenryv,1599 hide,3,kinghenryv,1599 Base,3,kinghenryv,1599 narrow,3,kinghenryv,1599 garden,3,kinghenryv,1599 places,3,kinghenryv,1599 powers,3,kinghenryv,1599 Cheshu,3,kinghenryv,1599 Some,3,kinghenryv,1599 other's,3,kinghenryv,1599 rolls,3,kinghenryv,1599 presently,3,kinghenryv,1599 dream,3,kinghenryv,1599 issue,3,kinghenryv,1599 won,3,kinghenryv,1599 chide,3,kinghenryv,1599 firm,3,kinghenryv,1599 living,3,kinghenryv,1599 taste,3,kinghenryv,1599 vasty,3,kinghenryv,1599 near,3,kinghenryv,1599 abate,3,kinghenryv,1599 retire,3,kinghenryv,1599 wit,3,kinghenryv,1599 discipline,3,kinghenryv,1599 oft,3,kinghenryv,1599 stomach,3,kinghenryv,1599 fetch,3,kinghenryv,1599 certainly,3,kinghenryv,1599 likes,3,kinghenryv,1599 Think,3,kinghenryv,1599 sinews,3,kinghenryv,1599 wax,3,kinghenryv,1599 believe,3,kinghenryv,1599 rise,3,kinghenryv,1599 arms,3,kinghenryv,1599 GRANDPRE,3,kinghenryv,1599 sufferance,3,kinghenryv,1599 peradventure,3,kinghenryv,1599 prick,3,kinghenryv,1599 Westmoreland,3,kinghenryv,1599 hair,3,kinghenryv,1599 familiar,3,kinghenryv,1599 Bid,3,kinghenryv,1599 marry,3,kinghenryv,1599 angel,3,kinghenryv,1599 owe,3,kinghenryv,1599 touching,3,kinghenryv,1599 went,3,kinghenryv,1599 fill'd,3,kinghenryv,1599 vie,3,kinghenryv,1599 grass,3,kinghenryv,1599 guilty,3,kinghenryv,1599 judge,3,kinghenryv,1599 Till,3,kinghenryv,1599 proportions,3,kinghenryv,1599 foe,3,kinghenryv,1599 grant,3,kinghenryv,1599 methinks,3,kinghenryv,1599 worn,3,kinghenryv,1599 colours,3,kinghenryv,1599 ride,3,kinghenryv,1599 safety,3,kinghenryv,1599 damnation,3,kinghenryv,1599 Bourbon,3,kinghenryv,1599 shows,3,kinghenryv,1599 queen,3,kinghenryv,1599 meaning,3,kinghenryv,1599 comfort,3,kinghenryv,1599 COURT,3,kinghenryv,1599 band,3,kinghenryv,1599 friendship,3,kinghenryv,1599 flames,3,kinghenryv,1599 names,3,kinghenryv,1599 large,3,kinghenryv,1599 bill,3,kinghenryv,1599 emperor,3,kinghenryv,1599 vat,3,kinghenryv,1599 fare,3,kinghenryv,1599 coat,3,kinghenryv,1599 man's,3,kinghenryv,1599 appearance,3,kinghenryv,1599 otherwise,3,kinghenryv,1599 Henry,3,kinghenryv,1599 wild,3,kinghenryv,1599 mothers,3,kinghenryv,1599 shook,3,kinghenryv,1599 Dew,3,kinghenryv,1599 short,3,kinghenryv,1599 articles,3,kinghenryv,1599 green,3,kinghenryv,1599 giddy,3,kinghenryv,1599 cur,3,kinghenryv,1599 Nell,3,kinghenryv,1599 gives,3,kinghenryv,1599 assembled,3,kinghenryv,1599 'solus',3,kinghenryv,1599 adieu,3,kinghenryv,1599 seen,3,kinghenryv,1599 defend,3,kinghenryv,1599 coz,3,kinghenryv,1599 'twixt,3,kinghenryv,1599 Killing,3,kinghenryv,1599 cry,3,kinghenryv,1599 house,3,kinghenryv,1599 He'll,3,kinghenryv,1599 Seigneur,3,kinghenryv,1599 scauld,3,kinghenryv,1599 tres,3,kinghenryv,1599 huge,3,kinghenryv,1599 countrymen,3,kinghenryv,1599 hither,3,kinghenryv,1599 bade,3,kinghenryv,1599 Roman,3,kinghenryv,1599 porn,3,kinghenryv,1599 countryman,3,kinghenryv,1599 laws,3,kinghenryv,1599 Quickly,3,kinghenryv,1599 clouds,3,kinghenryv,1599 spirits,3,kinghenryv,1599 limbs,3,kinghenryv,1599 dread,3,kinghenryv,1599 remember,3,kinghenryv,1599 glory,3,kinghenryv,1599 meeting,3,kinghenryv,1599 heartily,3,kinghenryv,1599 quarrels,3,kinghenryv,1599 warriors,3,kinghenryv,1599 Amen,3,kinghenryv,1599 marriage,3,kinghenryv,1599 ransomed,3,kinghenryv,1599 Marry,3,kinghenryv,1599 directions,3,kinghenryv,1599 besides,3,kinghenryv,1599 puissance,3,kinghenryv,1599 Northumberland,3,kinghenryv,1599 content,3,kinghenryv,1599 mouths,3,kinghenryv,1599 laid,3,kinghenryv,1599 losses,3,kinghenryv,1599 weight,3,kinghenryv,1599 Bring,3,kinghenryv,1599 armed,3,kinghenryv,1599 gorge,3,kinghenryv,1599 soundly,3,kinghenryv,1599 justly,3,kinghenryv,1599 bien,3,kinghenryv,1599 neighbour,3,kinghenryv,1599 bids,3,kinghenryv,1599 lack,3,kinghenryv,1599 Suppose,3,kinghenryv,1599 quality,4,kinghenryv,1599 moral,4,kinghenryv,1599 times,4,kinghenryv,1599 swords,4,kinghenryv,1599 honneur,4,kinghenryv,1599 Grey,4,kinghenryv,1599 honours,4,kinghenryv,1599 female,4,kinghenryv,1599 lower,4,kinghenryv,1599 help,4,kinghenryv,1599 health,4,kinghenryv,1599 boys,4,kinghenryv,1599 Must,4,kinghenryv,1599 while,4,kinghenryv,1599 tears,4,kinghenryv,1599 summer's,4,kinghenryv,1599 understand,4,kinghenryv,1599 lies,4,kinghenryv,1599 damned,4,kinghenryv,1599 trust,4,kinghenryv,1599 draw,4,kinghenryv,1599 working,4,kinghenryv,1599 line,4,kinghenryv,1599 sure,4,kinghenryv,1599 Scot,4,kinghenryv,1599 demands,4,kinghenryv,1599 view,4,kinghenryv,1599 sir,4,kinghenryv,1599 light,4,kinghenryv,1599 coun,4,kinghenryv,1599 suit,4,kinghenryv,1599 suis,4,kinghenryv,1599 worth,4,kinghenryv,1599 Farewell,4,kinghenryv,1599 Aunchient,4,kinghenryv,1599 disgrace,4,kinghenryv,1599 faults,4,kinghenryv,1599 Attendants,4,kinghenryv,1599 puissant,4,kinghenryv,1599 wrong,4,kinghenryv,1599 compound,4,kinghenryv,1599 piece,4,kinghenryv,1599 Oui,4,kinghenryv,1599 Ambassadors,4,kinghenryv,1599 memorable,4,kinghenryv,1599 wind,4,kinghenryv,1599 seems,4,kinghenryv,1599 rest,4,kinghenryv,1599 mean,4,kinghenryv,1599 wits,4,kinghenryv,1599 wherefore,4,kinghenryv,1599 chamber,4,kinghenryv,1599 A',4,kinghenryv,1599 spoil,4,kinghenryv,1599 music,4,kinghenryv,1599 neither,4,kinghenryv,1599 bad,4,kinghenryv,1599 siege,4,kinghenryv,1599 force,4,kinghenryv,1599 fatal,4,kinghenryv,1599 quick,4,kinghenryv,1599 past,4,kinghenryv,1599 pass,4,kinghenryv,1599 Sauf,4,kinghenryv,1599 nick,4,kinghenryv,1599 titles,4,kinghenryv,1599 sits,4,kinghenryv,1599 sooner,4,kinghenryv,1599 got,4,kinghenryv,1599 children,4,kinghenryv,1599 prisoners,4,kinghenryv,1599 people,4,kinghenryv,1599 Masham,4,kinghenryv,1599 pains,4,kinghenryv,1599 rejoice,4,kinghenryv,1599 breath,4,kinghenryv,1599 confess,4,kinghenryv,1599 YORK,4,kinghenryv,1599 tongues,4,kinghenryv,1599 defence,4,kinghenryv,1599 speed,4,kinghenryv,1599 fixed,4,kinghenryv,1599 rouse,4,kinghenryv,1599 BISHOP,4,kinghenryv,1599 ne,4,kinghenryv,1599 age,4,kinghenryv,1599 train,4,kinghenryv,1599 Suffolk,4,kinghenryv,1599 less,4,kinghenryv,1599 knew,4,kinghenryv,1599 pure,4,kinghenryv,1599 natural,4,kinghenryv,1599 call'd,4,kinghenryv,1599 city,4,kinghenryv,1599 majesty's,4,kinghenryv,1599 Comment,4,kinghenryv,1599 kingdoms,4,kinghenryv,1599 bosom,4,kinghenryv,1599 shot,4,kinghenryv,1599 fool,4,kinghenryv,1599 leeks,4,kinghenryv,1599 lousy,4,kinghenryv,1599 having,4,kinghenryv,1599 watch,4,kinghenryv,1599 aunchient,4,kinghenryv,1599 keeps,4,kinghenryv,1599 enow,4,kinghenryv,1599 rank,4,kinghenryv,1599 nose,4,kinghenryv,1599 action,4,kinghenryv,1599 wonder,4,kinghenryv,1599 She,4,kinghenryv,1599 admit,4,kinghenryv,1599 quickly,4,kinghenryv,1599 ere,4,kinghenryv,1599 general,4,kinghenryv,1599 Look,4,kinghenryv,1599 Richard,4,kinghenryv,1599 satisfaction,4,kinghenryv,1599 bosoms,4,kinghenryv,1599 devils,4,kinghenryv,1599 state,4,kinghenryv,1599 because,4,kinghenryv,1599 gates,4,kinghenryv,1599 labour,4,kinghenryv,1599 mountain,4,kinghenryv,1599 free,4,kinghenryv,1599 number,4,kinghenryv,1599 desires,4,kinghenryv,1599 possession,4,kinghenryv,1599 close,4,kinghenryv,1599 get,4,kinghenryv,1599 former,4,kinghenryv,1599 We'll,4,kinghenryv,1599 break,4,kinghenryv,1599 coxcomb,4,kinghenryv,1599 walls,4,kinghenryv,1599 heavy,4,kinghenryv,1599 duty,4,kinghenryv,1599 Can,4,kinghenryv,1599 mettle,4,kinghenryv,1599 taken,4,kinghenryv,1599 drops,4,kinghenryv,1599 followers,4,kinghenryv,1599 York,4,kinghenryv,1599 glad,4,kinghenryv,1599 ground,4,kinghenryv,1599 minds,4,kinghenryv,1599 That's,4,kinghenryv,1599 fame,4,kinghenryv,1599 palace,4,kinghenryv,1599 ne'er,4,kinghenryv,1599 married,4,kinghenryv,1599 wide,4,kinghenryv,1599 partly,4,kinghenryv,1599 gentlemen,4,kinghenryv,1599 Les,4,kinghenryv,1599 tish,4,kinghenryv,1599 thank,4,kinghenryv,1599 Lewis,4,kinghenryv,1599 follows,4,kinghenryv,1599 favours,4,kinghenryv,1599 conjure,4,kinghenryv,1599 seigneur,4,kinghenryv,1599 alone,4,kinghenryv,1599 troth,4,kinghenryv,1599 sees,4,kinghenryv,1599 traitor,4,kinghenryv,1599 modest,4,kinghenryv,1599 wretches,4,kinghenryv,1599 self,4,kinghenryv,1599 send,4,kinghenryv,1599 appelez,4,kinghenryv,1599 sleep,4,kinghenryv,1599 learn,4,kinghenryv,1599 Another,4,kinghenryv,1599 correction,4,kinghenryv,1599 EARL,4,kinghenryv,1599 Crispian,4,kinghenryv,1599 late,4,kinghenryv,1599 Without,4,kinghenryv,1599 mon,4,kinghenryv,1599 urged,4,kinghenryv,1599 pless,4,kinghenryv,1599 due,4,kinghenryv,1599 fifteen,4,kinghenryv,1599 command,4,kinghenryv,1599 princess,4,kinghenryv,1599 kill,4,kinghenryv,1599 lady,4,kinghenryv,1599 Warwick,5,kinghenryv,1599 fathers,5,kinghenryv,1599 heir,5,kinghenryv,1599 country,5,kinghenryv,1599 bones,5,kinghenryv,1599 scene,5,kinghenryv,1599 villain,5,kinghenryv,1599 rather,5,kinghenryv,1599 truly,5,kinghenryv,1599 PROLOGUE,5,kinghenryv,1599 fought,5,kinghenryv,1599 sort,5,kinghenryv,1599 soon,5,kinghenryv,1599 saw,5,kinghenryv,1599 Orleans,5,kinghenryv,1599 broken,5,kinghenryv,1599 Thomas,5,kinghenryv,1599 stands,5,kinghenryv,1599 Burgundy,5,kinghenryv,1599 throne,5,kinghenryv,1599 subject,5,kinghenryv,1599 Was,5,kinghenryv,1599 Their,5,kinghenryv,1599 suck,5,kinghenryv,1599 read,5,kinghenryv,1599 common,5,kinghenryv,1599 white,5,kinghenryv,1599 sum,5,kinghenryv,1599 grow,5,kinghenryv,1599 title,5,kinghenryv,1599 steal,5,kinghenryv,1599 murder,5,kinghenryv,1599 he's,5,kinghenryv,1599 sick,5,kinghenryv,1599 knowledge,5,kinghenryv,1599 balls,5,kinghenryv,1599 An,5,kinghenryv,1599 quarrel,5,kinghenryv,1599 patience,5,kinghenryv,1599 Whiles,5,kinghenryv,1599 itself,5,kinghenryv,1599 bar,5,kinghenryv,1599 kept,5,kinghenryv,1599 canst,5,kinghenryv,1599 pate,5,kinghenryv,1599 Corporal,5,kinghenryv,1599 challenge,5,kinghenryv,1599 Re,5,kinghenryv,1599 swift,5,kinghenryv,1599 buy,5,kinghenryv,1599 safe,5,kinghenryv,1599 stone,5,kinghenryv,1599 Besides,5,kinghenryv,1599 humours,5,kinghenryv,1599 o',5,kinghenryv,1599 mots,5,kinghenryv,1599 lest,5,kinghenryv,1599 dispose,5,kinghenryv,1599 lose,5,kinghenryv,1599 killed,5,kinghenryv,1599 point,5,kinghenryv,1599 alive,5,kinghenryv,1599 rough,5,kinghenryv,1599 fresh,5,kinghenryv,1599 pense,5,kinghenryv,1599 Hath,5,kinghenryv,1599 Should,5,kinghenryv,1599 yesterday,5,kinghenryv,1599 Have,5,kinghenryv,1599 main,5,kinghenryv,1599 maid,5,kinghenryv,1599 peers,5,kinghenryv,1599 honey,5,kinghenryv,1599 Flourish,5,kinghenryv,1599 beard,5,kinghenryv,1599 year,5,kinghenryv,1599 'gainst,5,kinghenryv,1599 slave,5,kinghenryv,1599 Macedon,5,kinghenryv,1599 grave,5,kinghenryv,1599 neck,5,kinghenryv,1599 five,5,kinghenryv,1599 win,5,kinghenryv,1599 services,5,kinghenryv,1599 called,5,kinghenryv,1599 themselves,5,kinghenryv,1599 throats,5,kinghenryv,1599 consent,5,kinghenryv,1599 dull,5,kinghenryv,1599 fain,5,kinghenryv,1599 mines,5,kinghenryv,1599 Calais,5,kinghenryv,1599 Scroop,5,kinghenryv,1599 particular,5,kinghenryv,1599 Southampton,5,kinghenryv,1599 wives,5,kinghenryv,1599 base,5,kinghenryv,1599 talk,5,kinghenryv,1599 Earl,5,kinghenryv,1599 wilt,5,kinghenryv,1599 wife,5,kinghenryv,1599 seat,5,kinghenryv,1599 low,5,kinghenryv,1599 seem,5,kinghenryv,1599 condition,5,kinghenryv,1599 fellows,5,kinghenryv,1599 sound,5,kinghenryv,1599 arrant,5,kinghenryv,1599 souls,5,kinghenryv,1599 fairly,5,kinghenryv,1599 sell,5,kinghenryv,1599 tide,5,kinghenryv,1599 goes,5,kinghenryv,1599 doigts,5,kinghenryv,1599 met,5,kinghenryv,1599 lips,5,kinghenryv,1599 nature,5,kinghenryv,1599 witness,5,kinghenryv,1599 follow,5,kinghenryv,1599 greatness,5,kinghenryv,1599 corporal,5,kinghenryv,1599 ten,5,kinghenryv,1599 oaths,5,kinghenryv,1599 th',5,kinghenryv,1599 pridge,5,kinghenryv,1599 dit,5,kinghenryv,1599 Alencon,6,kinghenryv,1599 John,6,kinghenryv,1599 Hear,6,kinghenryv,1599 Never,6,kinghenryv,1599 Chrish,6,kinghenryv,1599 Tell,6,kinghenryv,1599 naked,6,kinghenryv,1599 throat,6,kinghenryv,1599 run,6,kinghenryv,1599 care,6,kinghenryv,1599 ish,6,kinghenryv,1599 subjects,6,kinghenryv,1599 black,6,kinghenryv,1599 yield,6,kinghenryv,1599 sworn,6,kinghenryv,1599 bridge,6,kinghenryv,1599 vile,6,kinghenryv,1599 office,6,kinghenryv,1599 Follow,6,kinghenryv,1599 morning,6,kinghenryv,1599 bed,6,kinghenryv,1599 means,6,kinghenryv,1599 heads,6,kinghenryv,1599 gold,6,kinghenryv,1599 fields,6,kinghenryv,1599 weak,6,kinghenryv,1599 imperial,6,kinghenryv,1599 gud,6,kinghenryv,1599 tongue,6,kinghenryv,1599 river,6,kinghenryv,1599 i',6,kinghenryv,1599 Fortune,6,kinghenryv,1599 excellent,6,kinghenryv,1599 needs,6,kinghenryv,1599 JAMY,6,kinghenryv,1599 Montjoy,6,kinghenryv,1599 Macmorris,6,kinghenryv,1599 Alexander,6,kinghenryv,1599 bodies,6,kinghenryv,1599 ma,6,kinghenryv,1599 whereof,6,kinghenryv,1599 earth,6,kinghenryv,1599 place,6,kinghenryv,1599 men's,6,kinghenryv,1599 hard,6,kinghenryv,1599 nation,6,kinghenryv,1599 praise,6,kinghenryv,1599 course,6,kinghenryv,1599 Under,6,kinghenryv,1599 brothers,6,kinghenryv,1599 hast,6,kinghenryv,1599 Alarum,6,kinghenryv,1599 new,6,kinghenryv,1599 change,6,kinghenryv,1599 nobles,6,kinghenryv,1599 far,6,kinghenryv,1599 indeed,6,kinghenryv,1599 Lords,6,kinghenryv,1599 note,6,kinghenryv,1599 ours,6,kinghenryv,1599 borne,6,kinghenryv,1599 Agincourt,6,kinghenryv,1599 Doth,6,kinghenryv,1599 question,6,kinghenryv,1599 mark,6,kinghenryv,1599 Were,6,kinghenryv,1599 army,6,kinghenryv,1599 oath,6,kinghenryv,1599 rage,6,kinghenryv,1599 Even,6,kinghenryv,1599 fly,6,kinghenryv,1599 company,6,kinghenryv,1599 dat,6,kinghenryv,1599 reason,6,kinghenryv,1599 given,6,kinghenryv,1599 argument,6,kinghenryv,1599 Herald,6,kinghenryv,1599 lives,6,kinghenryv,1599 Prince,6,kinghenryv,1599 seek,6,kinghenryv,1599 heels,6,kinghenryv,1599 return,6,kinghenryv,1599 together,6,kinghenryv,1599 sent,6,kinghenryv,1599 purpose,6,kinghenryv,1599 forces,6,kinghenryv,1599 straight,6,kinghenryv,1599 makes,6,kinghenryv,1599 Since,6,kinghenryv,1599 fashion,6,kinghenryv,1599 May,6,kinghenryv,1599 dukedoms,6,kinghenryv,1599 numbers,6,kinghenryv,1599 MACMORRIS,6,kinghenryv,1599 Did,6,kinghenryv,1599 Take,6,kinghenryv,1599 power,6,kinghenryv,1599 order,6,kinghenryv,1599 women,6,kinghenryv,1599 Cambridge,7,kinghenryv,1599 days,7,kinghenryv,1599 withal,7,kinghenryv,1599 truth,7,kinghenryv,1599 Gloucester,7,kinghenryv,1599 yourself,7,kinghenryv,1599 gracious,7,kinghenryv,1599 another,7,kinghenryv,1599 sit,7,kinghenryv,1599 set,7,kinghenryv,1599 looks,7,kinghenryv,1599 turn,7,kinghenryv,1599 daughter,7,kinghenryv,1599 fault,7,kinghenryv,1599 terms,7,kinghenryv,1599 others,7,kinghenryv,1599 ceremony,7,kinghenryv,1599 knights,7,kinghenryv,1599 hence,7,kinghenryv,1599 matter,7,kinghenryv,1599 tent,7,kinghenryv,1599 else,7,kinghenryv,1599 each,7,kinghenryv,1599 has,7,kinghenryv,1599 pay,7,kinghenryv,1599 boy,7,kinghenryv,1599 Je,7,kinghenryv,1599 bid,7,kinghenryv,1599 dost,7,kinghenryv,1599 just,7,kinghenryv,1599 fingres,7,kinghenryv,1599 en,7,kinghenryv,1599 hands,7,kinghenryv,1599 Yes,7,kinghenryv,1599 twenty,7,kinghenryv,1599 half,7,kinghenryv,1599 pale,7,kinghenryv,1599 prince,7,kinghenryv,1599 foul,7,kinghenryv,1599 present,7,kinghenryv,1599 armour,7,kinghenryv,1599 native,7,kinghenryv,1599 Monmouth,7,kinghenryv,1599 strike,7,kinghenryv,1599 Thou,7,kinghenryv,1599 myself,7,kinghenryv,1599 courage,7,kinghenryv,1599 All,7,kinghenryv,1599 there's,7,kinghenryv,1599 father's,7,kinghenryv,1599 sall,7,kinghenryv,1599 says,7,kinghenryv,1599 Gower,7,kinghenryv,1599 Thus,7,kinghenryv,1599 WARWICK,7,kinghenryv,1599 coming,7,kinghenryv,1599 happy,7,kinghenryv,1599 humour,7,kinghenryv,1599 gallant,7,kinghenryv,1599 quit,7,kinghenryv,1599 SALISBURY,7,kinghenryv,1599 person,7,kinghenryv,1599 ear,7,kinghenryv,1599 elbow,7,kinghenryv,1599 disciplines,7,kinghenryv,1599 dog,7,kinghenryv,1599 Nay,8,kinghenryv,1599 hell,8,kinghenryv,1599 ISABEL,8,kinghenryv,1599 offer,8,kinghenryv,1599 under,8,kinghenryv,1599 Would,8,kinghenryv,1599 breach,8,kinghenryv,1599 charge,8,kinghenryv,1599 Give,8,kinghenryv,1599 town,8,kinghenryv,1599 warrant,8,kinghenryv,1599 body,8,kinghenryv,1599 sea,8,kinghenryv,1599 within,8,kinghenryv,1599 nails,8,kinghenryv,1599 On,8,kinghenryv,1599 enter,8,kinghenryv,1599 Dieu,8,kinghenryv,1599 Like,8,kinghenryv,1599 air,8,kinghenryv,1599 BOURBON,8,kinghenryv,1599 lost,8,kinghenryv,1599 Yet,8,kinghenryv,1599 thrice,8,kinghenryv,1599 plain,8,kinghenryv,1599 foot,8,kinghenryv,1599 mouth,8,kinghenryv,1599 youth,8,kinghenryv,1599 end,8,kinghenryv,1599 didst,8,kinghenryv,1599 bloody,8,kinghenryv,1599 still,8,kinghenryv,1599 beseech,8,kinghenryv,1599 heard,8,kinghenryv,1599 save,8,kinghenryv,1599 between,8,kinghenryv,1599 serve,8,kinghenryv,1599 Unto,8,kinghenryv,1599 till,8,kinghenryv,1599 kiss,8,kinghenryv,1599 hope,8,kinghenryv,1599 pardon,8,kinghenryv,1599 QUEEN,8,kinghenryv,1599 hearts,8,kinghenryv,1599 we'll,8,kinghenryv,1599 Edward,8,kinghenryv,1599 cold,8,kinghenryv,1599 first,8,kinghenryv,1599 Before,8,kinghenryv,1599 dare,8,kinghenryv,1599 shalt,8,kinghenryv,1599 brave,9,kinghenryv,1599 meet,9,kinghenryv,1599 o'er,9,kinghenryv,1599 RAMBURES,9,kinghenryv,1599 appear,9,kinghenryv,1599 came,9,kinghenryv,1599 madame,9,kinghenryv,1599 sin,9,kinghenryv,1599 enough,9,kinghenryv,1599 after,9,kinghenryv,1599 heaven,9,kinghenryv,1599 Though,9,kinghenryv,1599 voice,9,kinghenryv,1599 desire,9,kinghenryv,1599 parts,9,kinghenryv,1599 Ay,9,kinghenryv,1599 Bardolph,9,kinghenryv,1599 Katharine,9,kinghenryv,1599 Saint,9,kinghenryv,1599 said,9,kinghenryv,1599 left,9,kinghenryv,1599 BATES,9,kinghenryv,1599 devil,9,kinghenryv,1599 hot,9,kinghenryv,1599 four,9,kinghenryv,1599 Than,9,kinghenryv,1599 Salique,9,kinghenryv,1599 march,9,kinghenryv,1599 DUKE,9,kinghenryv,1599 knave,9,kinghenryv,1599 stand,9,kinghenryv,1599 London,9,kinghenryv,1599 fall,9,kinghenryv,1599 votre,9,kinghenryv,1599 even,9,kinghenryv,1599 hour,9,kinghenryv,1599 lay,9,kinghenryv,1599 also,9,kinghenryv,1599 swear,9,kinghenryv,1599 kingdom,9,kinghenryv,1599 pour,9,kinghenryv,1599 herald,9,kinghenryv,1599 GREY,9,kinghenryv,1599 Messenger,9,kinghenryv,1599 father,9,kinghenryv,1599 two,9,kinghenryv,1599 moi,9,kinghenryv,1599 CAMBRIDGE,9,kinghenryv,1599 might,9,kinghenryv,1599 spirit,9,kinghenryv,1599 FRENCH,10,kinghenryv,1599 Whose,10,kinghenryv,1599 Nor,10,kinghenryv,1599 Not,10,kinghenryv,1599 son,10,kinghenryv,1599 doubt,10,kinghenryv,1599 king's,10,kinghenryv,1599 Harfleur,10,kinghenryv,1599 blind,10,kinghenryv,1599 Be,10,kinghenryv,1599 kings,10,kinghenryv,1599 II,10,kinghenryv,1599 Is,10,kinghenryv,1599 play,10,kinghenryv,1599 that's,10,kinghenryv,1599 il,10,kinghenryv,1599 valour,10,kinghenryv,1599 art,10,kinghenryv,1599 right,10,kinghenryv,1599 gentle,10,kinghenryv,1599 none,10,kinghenryv,1599 Sir,10,kinghenryv,1599 yours,10,kinghenryv,1599 over,10,kinghenryv,1599 same,10,kinghenryv,1599 thing,10,kinghenryv,1599 why,10,kinghenryv,1599 only,10,kinghenryv,1599 duke,10,kinghenryv,1599 host,10,kinghenryv,1599 home,10,kinghenryv,1599 master,10,kinghenryv,1599 use,10,kinghenryv,1599 SCROOP,10,kinghenryv,1599 sweet,10,kinghenryv,1599 leave,10,kinghenryv,1599 ERPINGHAM,10,kinghenryv,1599 thoughts,10,kinghenryv,1599 Great,10,kinghenryv,1599 Where,10,kinghenryv,1599 land,10,kinghenryv,1599 certain,10,kinghenryv,1599 shame,10,kinghenryv,1599 kind,10,kinghenryv,1599 enemy,10,kinghenryv,1599 treason,11,kinghenryv,1599 Nym,11,kinghenryv,1599 words,11,kinghenryv,1599 Come,11,kinghenryv,1599 teach,11,kinghenryv,1599 nothing,11,kinghenryv,1599 about,11,kinghenryv,1599 sun,11,kinghenryv,1599 Here,11,kinghenryv,1599 service,11,kinghenryv,1599 claim,11,kinghenryv,1599 bring,11,kinghenryv,1599 wish,11,kinghenryv,1599 III,11,kinghenryv,1599 stay,11,kinghenryv,1599 Charles,11,kinghenryv,1599 down,11,kinghenryv,1599 cap,11,kinghenryv,1599 put,11,kinghenryv,1599 been,11,kinghenryv,1599 God's,11,kinghenryv,1599 bear,11,kinghenryv,1599 faith,11,kinghenryv,1599 est,11,kinghenryv,1599 From,11,kinghenryv,1599 again,11,kinghenryv,1599 comes,11,kinghenryv,1599 Well,11,kinghenryv,1599 way,11,kinghenryv,1599 'Tis,11,kinghenryv,1599 knight,11,kinghenryv,1599 three,11,kinghenryv,1599 work,11,kinghenryv,1599 law,11,kinghenryv,1599 captain,11,kinghenryv,1599 whom,11,kinghenryv,1599 lie,11,kinghenryv,1599 mistress,12,kinghenryv,1599 royal,12,kinghenryv,1599 peace,12,kinghenryv,1599 highness,12,kinghenryv,1599 call,12,kinghenryv,1599 fight,12,kinghenryv,1599 Fluellen,12,kinghenryv,1599 friend,12,kinghenryv,1599 IV,12,kinghenryv,1599 valiant,12,kinghenryv,1599 whose,12,kinghenryv,1599 long,12,kinghenryv,1599 noble,12,kinghenryv,1599 mighty,12,kinghenryv,1599 forth,12,kinghenryv,1599 few,12,kinghenryv,1599 lords,12,kinghenryv,1599 eye,12,kinghenryv,1599 mind,12,kinghenryv,1599 fire,12,kinghenryv,1599 thine,12,kinghenryv,1599 old,12,kinghenryv,1599 word,12,kinghenryv,1599 uncle,12,kinghenryv,1599 thousand,12,kinghenryv,1599 hold,12,kinghenryv,1599 back,12,kinghenryv,1599 BURGUNDY,12,kinghenryv,1599 sovereign,12,kinghenryv,1599 behold,12,kinghenryv,1599 his,268,kinghenryv,1599 Will,13,kinghenryv,1599 Upon,13,kinghenryv,1599 friends,13,kinghenryv,1599 BEDFORD,13,kinghenryv,1599 conscience,13,kinghenryv,1599 head,13,kinghenryv,1599 against,13,kinghenryv,1599 cause,13,kinghenryv,1599 fellow,13,kinghenryv,1599 both,13,kinghenryv,1599 Good,13,kinghenryv,1599 crowns,13,kinghenryv,1599 ill,13,kinghenryv,1599 part,13,kinghenryv,1599 arm,13,kinghenryv,1599 mock,13,kinghenryv,1599 show,13,kinghenryv,1599 leek,13,kinghenryv,1599 through,13,kinghenryv,1599 things,13,kinghenryv,1599 nor,13,kinghenryv,1599 soldiers,13,kinghenryv,1599 constable,13,kinghenryv,1599 once,13,kinghenryv,1599 Pistol,13,kinghenryv,1599 ransom,13,kinghenryv,1599 ever,13,kinghenryv,1599 gentleman,13,kinghenryv,1599 unto,13,kinghenryv,1599 eyes,13,kinghenryv,1599 thus,13,kinghenryv,1599 When,13,kinghenryv,1599 camp,14,kinghenryv,1599 fear,14,kinghenryv,1599 De,14,kinghenryv,1599 had,14,kinghenryv,1599 done,14,kinghenryv,1599 though,14,kinghenryv,1599 Exeter,14,kinghenryv,1599 where,14,kinghenryv,1599 high,14,kinghenryv,1599 cut,14,kinghenryv,1599 battle,14,kinghenryv,1599 Chorus,14,kinghenryv,1599 crown,14,kinghenryv,1599 soul,15,kinghenryv,1599 WESTMORELAND,15,kinghenryv,1599 life,15,kinghenryv,1599 Soldier,15,kinghenryv,1599 death,15,kinghenryv,1599 MONTJOY,15,kinghenryv,1599 wars,15,kinghenryv,1599 Do,15,kinghenryv,1599 Go,15,kinghenryv,1599 Or,15,kinghenryv,1599 dear,15,kinghenryv,1599 cousin,15,kinghenryv,1599 que,15,kinghenryv,1599 made,15,kinghenryv,1599 who,15,kinghenryv,1599 face,15,kinghenryv,1599 hundred,15,kinghenryv,1599 please,15,kinghenryv,1599 being,15,kinghenryv,1599 live,15,kinghenryv,1599 die,15,kinghenryv,1599 thought,16,kinghenryv,1599 pray,16,kinghenryv,1599 world,16,kinghenryv,1599 mercy,16,kinghenryv,1599 hear,16,kinghenryv,1599 Our,16,kinghenryv,1599 There,16,kinghenryv,1599 sword,16,kinghenryv,1599 His,16,kinghenryv,1599 wear,16,kinghenryv,1599 those,16,kinghenryv,1599 mine,16,kinghenryv,1599 They,16,kinghenryv,1599 FRANCE,16,kinghenryv,1599 morrow,16,kinghenryv,1599 own,16,kinghenryv,1599 find,16,kinghenryv,1599 GLOUCESTER,16,kinghenryv,1599 ELY,16,kinghenryv,1599 brother,17,kinghenryv,1599 Why,17,kinghenryv,1599 away,17,kinghenryv,1599 Hostess,17,kinghenryv,1599 Dauphin,17,kinghenryv,1599 la,17,kinghenryv,1599 keep,17,kinghenryv,1599 I'll,17,kinghenryv,1599 could,17,kinghenryv,1599 les,17,kinghenryv,1599 eat,17,kinghenryv,1599 horse,18,kinghenryv,1599 Duke,18,kinghenryv,1599 honour,18,kinghenryv,1599 a',18,kinghenryv,1599 This,18,kinghenryv,1599 glove,18,kinghenryv,1599 true,18,kinghenryv,1599 other,18,kinghenryv,1599 Who,19,kinghenryv,1599 princes,19,kinghenryv,1599 therefore,19,kinghenryv,1599 No,19,kinghenryv,1599 night,19,kinghenryv,1599 dead,19,kinghenryv,1599 Therefore,19,kinghenryv,1599 before,19,kinghenryv,1599 off,19,kinghenryv,1599 poor,19,kinghenryv,1599 himself,19,kinghenryv,1599 answer,20,kinghenryv,1599 every,20,kinghenryv,1599 she,20,kinghenryv,1599 better,20,kinghenryv,1599 Harry,20,kinghenryv,1599 best,20,kinghenryv,1599 BARDOLPH,20,kinghenryv,1599 le,20,kinghenryv,1599 how,20,kinghenryv,1599 field,20,kinghenryv,1599 little,20,kinghenryv,1599 Your,20,kinghenryv,1599 Shall,20,kinghenryv,1599 liege,20,kinghenryv,1599 cannot,20,kinghenryv,1599 Exit,20,kinghenryv,1599 soldier,21,kinghenryv,1599 In,21,kinghenryv,1599 Which,21,kinghenryv,1599 et,21,kinghenryv,1599 je,21,kinghenryv,1599 very,21,kinghenryv,1599 Captain,21,kinghenryv,1599 Now,22,kinghenryv,1599 CANTERBURY,22,kinghenryv,1599 speak,22,kinghenryv,1599 Lord,22,kinghenryv,1599 many,22,kinghenryv,1599 war,22,kinghenryv,1599 Let,22,kinghenryv,1599 He,23,kinghenryv,1599 can,23,kinghenryv,1599 grace,23,kinghenryv,1599 King,23,kinghenryv,1599 Then,23,kinghenryv,1599 much,24,kinghenryv,1599 full,24,kinghenryv,1599 heart,24,kinghenryv,1599 Boy,24,kinghenryv,1599 time,24,kinghenryv,1599 too,24,kinghenryv,1599 SCENE,24,kinghenryv,1599 'tis,25,kinghenryv,1599 vous,25,kinghenryv,1599 How,25,kinghenryv,1599 think,25,kinghenryv,1599 NYM,25,kinghenryv,1599 these,26,kinghenryv,1599 By,26,kinghenryv,1599 am,26,kinghenryv,1599 ALICE,26,kinghenryv,1599 doth,27,kinghenryv,1599 go,27,kinghenryv,1599 ACT,27,kinghenryv,1599 make,28,kinghenryv,1599 here,29,kinghenryv,1599 name,29,kinghenryv,1599 It,29,kinghenryv,1599 than,31,kinghenryv,1599 Of,31,kinghenryv,1599 Exeunt,31,kinghenryv,1599 So,31,kinghenryv,1599 yet,31,kinghenryv,1599 Kate,31,kinghenryv,1599 fair,31,kinghenryv,1599 ',32,kinghenryv,1599 WILLIAMS,32,kinghenryv,1599 OF,32,kinghenryv,1599 look,32,kinghenryv,1599 hand,32,kinghenryv,1599 A,33,kinghenryv,1599 say,33,kinghenryv,1599 some,33,kinghenryv,1599 If,33,kinghenryv,1599 You,33,kinghenryv,1599 EXETER,33,kinghenryv,1599 such,34,kinghenryv,1599 ORLEANS,34,kinghenryv,1599 were,34,kinghenryv,1599 come,34,kinghenryv,1599 never,35,kinghenryv,1599 My,35,kinghenryv,1599 blood,35,kinghenryv,1599 We,35,kinghenryv,1599 lord,35,kinghenryv,1599 GOWER,35,kinghenryv,1599 when,35,kinghenryv,1599 into,36,kinghenryv,1599 What,36,kinghenryv,1599 see,37,kinghenryv,1599 With,37,kinghenryv,1599 give,37,kinghenryv,1599 DAUPHIN,37,kinghenryv,1599 KATHARINE,37,kinghenryv,1599 let,38,kinghenryv,1599 should,39,kinghenryv,1599 great,39,kinghenryv,1599 what,39,kinghenryv,1599 most,40,kinghenryv,1599 take,40,kinghenryv,1599 tell,41,kinghenryv,1599 up,41,kinghenryv,1599 majesty,41,kinghenryv,1599 did,41,kinghenryv,1599 and,809,kinghenryv,1599 As,42,kinghenryv,1599 any,42,kinghenryv,1599 love,42,kinghenryv,1599 men,42,kinghenryv,1599 her,43,kinghenryv,1599 well,43,kinghenryv,1599 then,44,kinghenryv,1599 must,45,kinghenryv,1599 which,47,kinghenryv,1599 know,48,kinghenryv,1599 Constable,48,kinghenryv,1599 out,48,kinghenryv,1599 more,49,kinghenryv,1599 was,49,kinghenryv,1599 day,50,kinghenryv,1599 English,50,kinghenryv,1599 man,50,kinghenryv,1599 O,51,kinghenryv,1599 like,51,kinghenryv,1599 England,51,kinghenryv,1599 upon,52,kinghenryv,1599 hath,52,kinghenryv,1599 there,53,kinghenryv,1599 or,53,kinghenryv,1599 one,53,kinghenryv,1599 an,54,kinghenryv,1599 But,55,kinghenryv,1599 For,57,kinghenryv,1599 may,57,kinghenryv,1599 would,57,kinghenryv,1599 God,58,kinghenryv,1599 thee,61,kinghenryv,1599 Enter,61,kinghenryv,1599 no,64,kinghenryv,1599 from,68,kinghenryv,1599 French,69,kinghenryv,1599 To,69,kinghenryv,1599 thy,70,kinghenryv,1599 de,71,kinghenryv,1599 now,71,kinghenryv,1599 PISTOL,72,kinghenryv,1599 king,75,kinghenryv,1599 by,76,kinghenryv,1599 FLUELLEN,77,kinghenryv,1599 at,77,kinghenryv,1599 if,77,kinghenryv,1599 good,78,kinghenryv,1599 you,334,kinghenryv,1599 That,79,kinghenryv,1599 on,80,kinghenryv,1599 them,82,kinghenryv,1599 is,339,kinghenryv,1599 they,85,kinghenryv,1599 do,85,kinghenryv,1599 us,90,kinghenryv,1599 are,96,kinghenryv,1599 thou,98,kinghenryv,1599 France,105,kinghenryv,1599 shall,109,kinghenryv,1599 but,110,kinghenryv,1599 their,114,kinghenryv,1599 so,118,kinghenryv,1599 a,379,kinghenryv,1599 all,126,kinghenryv,1599 have,129,kinghenryv,1599 we,133,kinghenryv,1599 this,136,kinghenryv,1599 him,136,kinghenryv,1599 he,144,kinghenryv,1599 The,148,kinghenryv,1599 in,404,kinghenryv,1599 as,156,kinghenryv,1599 me,159,kinghenryv,1599 our,162,kinghenryv,1599 of,675,kinghenryv,1599 be,168,kinghenryv,1599 the,937,kinghenryv,1599 will,173,kinghenryv,1599 V,185,kinghenryv,1599 not,190,kinghenryv,1599 HENRY,191,kinghenryv,1599 And,195,kinghenryv,1599 for,199,kinghenryv,1599 I,456,kinghenryv,1599 with,206,kinghenryv,1599 your,209,kinghenryv,1599 KING,217,kinghenryv,1599 to,473,kinghenryv,1599 it,222,kinghenryv,1599 that,233,kinghenryv,1599 my,247,kinghenryv,1599 intermission,1,asyoulikeit,1599 Oppress'd,1,asyoulikeit,1599 religion,1,asyoulikeit,1599 schooled,1,asyoulikeit,1599 cage,1,asyoulikeit,1599 timber,1,asyoulikeit,1599 Time's,1,asyoulikeit,1599 sleeve,1,asyoulikeit,1599 galled,1,asyoulikeit,1599 Sestos,1,asyoulikeit,1599 violated,1,asyoulikeit,1599 wherever,1,asyoulikeit,1599 effeminate,1,asyoulikeit,1599 moral,1,asyoulikeit,1599 relief,1,asyoulikeit,1599 witness'd,1,asyoulikeit,1599 venomous,1,asyoulikeit,1599 swords,1,asyoulikeit,1599 waywarder,1,asyoulikeit,1599 meed,1,asyoulikeit,1599 tripped,1,asyoulikeit,1599 Youth,1,asyoulikeit,1599 bonny,1,asyoulikeit,1599 misplaced,1,asyoulikeit,1599 lawyers,1,asyoulikeit,1599 m,1,asyoulikeit,1599 smiles,1,asyoulikeit,1599 peoples,1,asyoulikeit,1599 drop,1,asyoulikeit,1599 infant,1,asyoulikeit,1599 infected,1,asyoulikeit,1599 lamely,1,asyoulikeit,1599 description,1,asyoulikeit,1599 reckonings,1,asyoulikeit,1599 copulation,1,asyoulikeit,1599 verge,1,asyoulikeit,1599 necessities,1,asyoulikeit,1599 speech,1,asyoulikeit,1599 tremble,1,asyoulikeit,1599 weasel,1,asyoulikeit,1599 Devise,1,asyoulikeit,1599 Foresters,1,asyoulikeit,1599 pageants,1,asyoulikeit,1599 writ,1,asyoulikeit,1599 span,1,asyoulikeit,1599 raw,1,asyoulikeit,1599 burn'd,1,asyoulikeit,1599 Coursed,1,asyoulikeit,1599 discord,1,asyoulikeit,1599 rat,1,asyoulikeit,1599 business,1,asyoulikeit,1599 lawyer's,1,asyoulikeit,1599 especially,1,asyoulikeit,1599 lament,1,asyoulikeit,1599 peasant,1,asyoulikeit,1599 Fie,1,asyoulikeit,1599 biscuit,1,asyoulikeit,1599 torn,1,asyoulikeit,1599 ram,1,asyoulikeit,1599 royal,1,asyoulikeit,1599 brows,1,asyoulikeit,1599 lawful,1,asyoulikeit,1599 Whether,1,asyoulikeit,1599 unborn,1,asyoulikeit,1599 fainting,1,asyoulikeit,1599 Wearying,1,asyoulikeit,1599 haste,1,asyoulikeit,1599 longs,1,asyoulikeit,1599 distill'd,1,asyoulikeit,1599 robs,1,asyoulikeit,1599 searching,1,asyoulikeit,1599 rascal,1,asyoulikeit,1599 shoulders,1,asyoulikeit,1599 Sweetest,1,asyoulikeit,1599 branch,1,asyoulikeit,1599 heart's,1,asyoulikeit,1599 western,1,asyoulikeit,1599 dotes,1,asyoulikeit,1599 commenting,1,asyoulikeit,1599 Bear,1,asyoulikeit,1599 impressure,1,asyoulikeit,1599 butchery,1,asyoulikeit,1599 easily,1,asyoulikeit,1599 road,1,asyoulikeit,1599 space,1,asyoulikeit,1599 express,1,asyoulikeit,1599 neighbour's,1,asyoulikeit,1599 butchers,1,asyoulikeit,1599 simples,1,asyoulikeit,1599 boys,1,asyoulikeit,1599 handkercher,1,asyoulikeit,1599 jot,1,asyoulikeit,1599 foster,1,asyoulikeit,1599 sleeps,1,asyoulikeit,1599 despiser,1,asyoulikeit,1599 cuckoldly,1,asyoulikeit,1599 Stay,1,asyoulikeit,1599 swiftly,1,asyoulikeit,1599 dish,1,asyoulikeit,1599 single,1,asyoulikeit,1599 frowning,1,asyoulikeit,1599 Meaning,1,asyoulikeit,1599 sisters,1,asyoulikeit,1599 Tell,1,asyoulikeit,1599 penalty,1,asyoulikeit,1599 beest,1,asyoulikeit,1599 midsummer,1,asyoulikeit,1599 contract,1,asyoulikeit,1599 thorny,1,asyoulikeit,1599 philosophy,1,asyoulikeit,1599 'Come,1,asyoulikeit,1599 finger,1,asyoulikeit,1599 herd,1,asyoulikeit,1599 theatre,1,asyoulikeit,1599 quintain,1,asyoulikeit,1599 spake,1,asyoulikeit,1599 lodging,1,asyoulikeit,1599 o'erheard,1,asyoulikeit,1599 blossom,1,asyoulikeit,1599 prisoner,1,asyoulikeit,1599 sighs,1,asyoulikeit,1599 errand,1,asyoulikeit,1599 Unclaim'd,1,asyoulikeit,1599 instrument,1,asyoulikeit,1599 whipped,1,asyoulikeit,1599 properer,1,asyoulikeit,1599 rib,1,asyoulikeit,1599 fought,1,asyoulikeit,1599 hanged,1,asyoulikeit,1599 slander,1,asyoulikeit,1599 sugar,1,asyoulikeit,1599 appear,1,asyoulikeit,1599 'holla',1,asyoulikeit,1599 flow,1,asyoulikeit,1599 Helen's,1,asyoulikeit,1599 sayings,1,asyoulikeit,1599 although,1,asyoulikeit,1599 shelter,1,asyoulikeit,1599 Ere,1,asyoulikeit,1599 derive,1,asyoulikeit,1599 stretched,1,asyoulikeit,1599 charter,1,asyoulikeit,1599 prey,1,asyoulikeit,1599 odes,1,asyoulikeit,1599 Provided,1,asyoulikeit,1599 unbuttoned,1,asyoulikeit,1599 yonder,1,asyoulikeit,1599 rye,1,asyoulikeit,1599 press,1,asyoulikeit,1599 solemnized,1,asyoulikeit,1599 dappled,1,asyoulikeit,1599 lieu,1,asyoulikeit,1599 lively,1,asyoulikeit,1599 rail'd,1,asyoulikeit,1599 odds,1,asyoulikeit,1599 pick,1,asyoulikeit,1599 pleasures,1,asyoulikeit,1599 lied,1,asyoulikeit,1599 apter,1,asyoulikeit,1599 Abhor,1,asyoulikeit,1599 Whom,1,asyoulikeit,1599 wainscot,1,asyoulikeit,1599 insult,1,asyoulikeit,1599 baggage,1,asyoulikeit,1599 goest,1,asyoulikeit,1599 thousandth,1,asyoulikeit,1599 PERSONAE,1,asyoulikeit,1599 rescued,1,asyoulikeit,1599 clamorous,1,asyoulikeit,1599 spare,1,asyoulikeit,1599 cart,1,asyoulikeit,1599 Buckles,1,asyoulikeit,1599 mingled,1,asyoulikeit,1599 saves,1,asyoulikeit,1599 case,1,asyoulikeit,1599 early,1,asyoulikeit,1599 softly,1,asyoulikeit,1599 pleasing,1,asyoulikeit,1599 indirect,1,asyoulikeit,1599 lustre,1,asyoulikeit,1599 adoration,1,asyoulikeit,1599 sanctified,1,asyoulikeit,1599 Poor,1,asyoulikeit,1599 irks,1,asyoulikeit,1599 Over,1,asyoulikeit,1599 counter,1,asyoulikeit,1599 chid,1,asyoulikeit,1599 practises,1,asyoulikeit,1599 inconstant,1,asyoulikeit,1599 disdain,1,asyoulikeit,1599 videlicit,1,asyoulikeit,1599 matter's,1,asyoulikeit,1599 giant,1,asyoulikeit,1599 everything,1,asyoulikeit,1599 feels,1,asyoulikeit,1599 residue,1,asyoulikeit,1599 slept,1,asyoulikeit,1599 remember'st,1,asyoulikeit,1599 seconded,1,asyoulikeit,1599 confusion,1,asyoulikeit,1599 matters,1,asyoulikeit,1599 relieve,1,asyoulikeit,1599 Begone,1,asyoulikeit,1599 dance,1,asyoulikeit,1599 outside,1,asyoulikeit,1599 hour's,1,asyoulikeit,1599 sorrows,1,asyoulikeit,1599 purposely,1,asyoulikeit,1599 buying,1,asyoulikeit,1599 huntress',1,asyoulikeit,1599 pilgrimage,1,asyoulikeit,1599 Caesar's,1,asyoulikeit,1599 bottomless,1,asyoulikeit,1599 resolve,1,asyoulikeit,1599 losest,1,asyoulikeit,1599 quintessence,1,asyoulikeit,1599 injure,1,asyoulikeit,1599 limb,1,asyoulikeit,1599 gracious,1,asyoulikeit,1599 Ovid,1,asyoulikeit,1599 injury,1,asyoulikeit,1599 brothers',1,asyoulikeit,1599 overcome,1,asyoulikeit,1599 Much,1,asyoulikeit,1599 function,1,asyoulikeit,1599 heap,1,asyoulikeit,1599 possessed,1,asyoulikeit,1599 differs,1,asyoulikeit,1599 heal,1,asyoulikeit,1599 Know'st,1,asyoulikeit,1599 drew,1,asyoulikeit,1599 worthier,1,asyoulikeit,1599 sententious,1,asyoulikeit,1599 contrive,1,asyoulikeit,1599 offenders,1,asyoulikeit,1599 wants,1,asyoulikeit,1599 voices,1,asyoulikeit,1599 policy,1,asyoulikeit,1599 golden,1,asyoulikeit,1599 soil,1,asyoulikeit,1599 gross,1,asyoulikeit,1599 teacheth,1,asyoulikeit,1599 officers,1,asyoulikeit,1599 finding,1,asyoulikeit,1599 jour,1,asyoulikeit,1599 chimney,1,asyoulikeit,1599 rites,1,asyoulikeit,1599 Ethiope,1,asyoulikeit,1599 brotherly,1,asyoulikeit,1599 teach,1,asyoulikeit,1599 noise,1,asyoulikeit,1599 taxing,1,asyoulikeit,1599 weights,1,asyoulikeit,1599 giddiness,1,asyoulikeit,1599 purity,1,asyoulikeit,1599 lesser,1,asyoulikeit,1599 bush's,1,asyoulikeit,1599 boar,1,asyoulikeit,1599 simpering,1,asyoulikeit,1599 coroners,1,asyoulikeit,1599 patterns,1,asyoulikeit,1599 Gentle,1,asyoulikeit,1599 invectively,1,asyoulikeit,1599 anatomized,1,asyoulikeit,1599 mounts,1,asyoulikeit,1599 discovery,1,asyoulikeit,1599 'many,1,asyoulikeit,1599 deserve,1,asyoulikeit,1599 pillow,1,asyoulikeit,1599 outface,1,asyoulikeit,1599 wags,1,asyoulikeit,1599 handling,1,asyoulikeit,1599 seeking,1,asyoulikeit,1599 plucked,1,asyoulikeit,1599 six,1,asyoulikeit,1599 shamed,1,asyoulikeit,1599 Frederick's,1,asyoulikeit,1599 'ducdame',1,asyoulikeit,1599 jumps,1,asyoulikeit,1599 compliment,1,asyoulikeit,1599 erst,1,asyoulikeit,1599 spheres,1,asyoulikeit,1599 history,1,asyoulikeit,1599 deer's,1,asyoulikeit,1599 extracted,1,asyoulikeit,1599 conceive,1,asyoulikeit,1599 faithfully,1,asyoulikeit,1599 returned,1,asyoulikeit,1599 courtly,1,asyoulikeit,1599 impossible,1,asyoulikeit,1599 tapster,1,asyoulikeit,1599 challengers,1,asyoulikeit,1599 light,1,asyoulikeit,1599 key,1,asyoulikeit,1599 ages,1,asyoulikeit,1599 Change,1,asyoulikeit,1599 fleet,1,asyoulikeit,1599 bastard,1,asyoulikeit,1599 tooth,1,asyoulikeit,1599 walk,1,asyoulikeit,1599 sunken,1,asyoulikeit,1599 'Thank,1,asyoulikeit,1599 Herein,1,asyoulikeit,1599 mocking,1,asyoulikeit,1599 touched,1,asyoulikeit,1599 traveller,1,asyoulikeit,1599 Pythagoras',1,asyoulikeit,1599 Praising,1,asyoulikeit,1599 she'll,1,asyoulikeit,1599 languish,1,asyoulikeit,1599 thatched,1,asyoulikeit,1599 diminish,1,asyoulikeit,1599 peevish,1,asyoulikeit,1599 intendment,1,asyoulikeit,1599 disabled,1,asyoulikeit,1599 fringe,1,asyoulikeit,1599 disposed,1,asyoulikeit,1599 abused,1,asyoulikeit,1599 Thinking,1,asyoulikeit,1599 actor,1,asyoulikeit,1599 birds,1,asyoulikeit,1599 wheresoever,1,asyoulikeit,1599 combine,1,asyoulikeit,1599 embrace,1,asyoulikeit,1599 pigeon,1,asyoulikeit,1599 confirmer,1,asyoulikeit,1599 scorn'd,1,asyoulikeit,1599 chanticleer,1,asyoulikeit,1599 exceeded,1,asyoulikeit,1599 justices,1,asyoulikeit,1599 skill,1,asyoulikeit,1599 erring,1,asyoulikeit,1599 sworn,1,asyoulikeit,1599 'a,1,asyoulikeit,1599 moralize,1,asyoulikeit,1599 subject,1,asyoulikeit,1599 plenty,1,asyoulikeit,1599 pictures,1,asyoulikeit,1599 Ducdame,1,asyoulikeit,1599 looking,1,asyoulikeit,1599 fangled,1,asyoulikeit,1599 Was,1,asyoulikeit,1599 unquestionable,1,asyoulikeit,1599 nominate,1,asyoulikeit,1599 kindle,1,asyoulikeit,1599 attends,1,asyoulikeit,1599 brides,1,asyoulikeit,1599 Their,1,asyoulikeit,1599 darted,1,asyoulikeit,1599 fleeces,1,asyoulikeit,1599 hunter,1,asyoulikeit,1599 husks,1,asyoulikeit,1599 Orchard,1,asyoulikeit,1599 adversity,1,asyoulikeit,1599 necks,1,asyoulikeit,1599 middle,1,asyoulikeit,1599 Invest,1,asyoulikeit,1599 pitiful,1,asyoulikeit,1599 groans,1,asyoulikeit,1599 parish,1,asyoulikeit,1599 Music,1,asyoulikeit,1599 lambs,1,asyoulikeit,1599 faults,1,asyoulikeit,1599 recountments,1,asyoulikeit,1599 doubt,1,asyoulikeit,1599 entame,1,asyoulikeit,1599 Attendants,1,asyoulikeit,1599 quittance,1,asyoulikeit,1599 sends,1,asyoulikeit,1599 daughter's,1,asyoulikeit,1599 suck'd,1,asyoulikeit,1599 bridegrooms,1,asyoulikeit,1599 ourselves,1,asyoulikeit,1599 thieves,1,asyoulikeit,1599 goddesses,1,asyoulikeit,1599 worst,1,asyoulikeit,1599 perishest,1,asyoulikeit,1599 esteem,1,asyoulikeit,1599 offence,1,asyoulikeit,1599 reap,1,asyoulikeit,1599 merit,1,asyoulikeit,1599 mocks,1,asyoulikeit,1599 wrong,1,asyoulikeit,1599 so',1,asyoulikeit,1599 These,1,asyoulikeit,1599 fight,1,asyoulikeit,1599 quail,1,asyoulikeit,1599 Learn,1,asyoulikeit,1599 showed,1,asyoulikeit,1599 turning,1,asyoulikeit,1599 France,1,asyoulikeit,1599 courtiers,1,asyoulikeit,1599 piece,1,asyoulikeit,1599 Out,1,asyoulikeit,1599 Our,1,asyoulikeit,1599 monster,1,asyoulikeit,1599 turf,1,asyoulikeit,1599 profess,1,asyoulikeit,1599 dropped,1,asyoulikeit,1599 Phebes,1,asyoulikeit,1599 gipsies,1,asyoulikeit,1599 bore,1,asyoulikeit,1599 habit,1,asyoulikeit,1599 unbanded,1,asyoulikeit,1599 civil,1,asyoulikeit,1599 kill'd,1,asyoulikeit,1599 comely,1,asyoulikeit,1599 stammer,1,asyoulikeit,1599 Turk,1,asyoulikeit,1599 Destinies,1,asyoulikeit,1599 absence,1,asyoulikeit,1599 parrot,1,asyoulikeit,1599 poured,1,asyoulikeit,1599 indented,1,asyoulikeit,1599 dashed,1,asyoulikeit,1599 beggarly,1,asyoulikeit,1599 omittance,1,asyoulikeit,1599 loose,1,asyoulikeit,1599 seeks,1,asyoulikeit,1599 mark'd,1,asyoulikeit,1599 Wind,1,asyoulikeit,1599 white,1,asyoulikeit,1599 properly,1,asyoulikeit,1599 pearl,1,asyoulikeit,1599 unfaithful,1,asyoulikeit,1599 encourage,1,asyoulikeit,1599 flattered,1,asyoulikeit,1599 suppers,1,asyoulikeit,1599 pageant,1,asyoulikeit,1599 thrasonical,1,asyoulikeit,1599 usurpers,1,asyoulikeit,1599 princes,1,asyoulikeit,1599 mouthed,1,asyoulikeit,1599 wreathed,1,asyoulikeit,1599 shining,1,asyoulikeit,1599 stubbornness,1,asyoulikeit,1599 Hero,1,asyoulikeit,1599 reverence,1,asyoulikeit,1599 above,1,asyoulikeit,1599 fearful,1,asyoulikeit,1599 severe,1,asyoulikeit,1599 accent,1,asyoulikeit,1599 hooping,1,asyoulikeit,1599 ominous,1,asyoulikeit,1599 rush,1,asyoulikeit,1599 punish,1,asyoulikeit,1599 capricious,1,asyoulikeit,1599 conned,1,asyoulikeit,1599 noblest,1,asyoulikeit,1599 recovers,1,asyoulikeit,1599 claim,1,asyoulikeit,1599 relish,1,asyoulikeit,1599 saucy,1,asyoulikeit,1599 victuall'd,1,asyoulikeit,1599 moonish,1,asyoulikeit,1599 baser,1,asyoulikeit,1599 venerable,1,asyoulikeit,1599 Fridays,1,asyoulikeit,1599 Salutation,1,asyoulikeit,1599 prized,1,asyoulikeit,1599 claws,1,asyoulikeit,1599 applause,1,asyoulikeit,1599 soldier,1,asyoulikeit,1599 tax,1,asyoulikeit,1599 Latin,1,asyoulikeit,1599 irksome,1,asyoulikeit,1599 shrink,1,asyoulikeit,1599 unlink'd,1,asyoulikeit,1599 sphere,1,asyoulikeit,1599 Blow,1,asyoulikeit,1599 usurp,1,asyoulikeit,1599 wether,1,asyoulikeit,1599 length,1,asyoulikeit,1599 knees,1,asyoulikeit,1599 damnable,1,asyoulikeit,1599 want,1,asyoulikeit,1599 Advancing,1,asyoulikeit,1599 Obscured,1,asyoulikeit,1599 dearer,1,asyoulikeit,1599 access,1,asyoulikeit,1599 heaved,1,asyoulikeit,1599 fells,1,asyoulikeit,1599 roundly,1,asyoulikeit,1599 know'st,1,asyoulikeit,1599 bolt,1,asyoulikeit,1599 Cousin,1,asyoulikeit,1599 bold,1,asyoulikeit,1599 seest,1,asyoulikeit,1599 turned,1,asyoulikeit,1599 anon,1,asyoulikeit,1599 mannish,1,asyoulikeit,1599 custom,1,asyoulikeit,1599 murder,1,asyoulikeit,1599 importunes,1,asyoulikeit,1599 sooth,1,asyoulikeit,1599 displeasure,1,asyoulikeit,1599 travellers,1,asyoulikeit,1599 property,1,asyoulikeit,1599 withheld,1,asyoulikeit,1599 world's,1,asyoulikeit,1599 warn,1,asyoulikeit,1599 stop,1,asyoulikeit,1599 deifying,1,asyoulikeit,1599 tarred,1,asyoulikeit,1599 South,1,asyoulikeit,1599 doubts,1,asyoulikeit,1599 office,1,asyoulikeit,1599 Turning,1,asyoulikeit,1599 gesture,1,asyoulikeit,1599 steel,1,asyoulikeit,1599 gentleman's,1,asyoulikeit,1599 book,1,asyoulikeit,1599 manly,1,asyoulikeit,1599 praised,1,asyoulikeit,1599 party,1,asyoulikeit,1599 praises,1,asyoulikeit,1599 hungry,1,asyoulikeit,1599 objects,1,asyoulikeit,1599 intelligence,1,asyoulikeit,1599 bit,1,asyoulikeit,1599 aspect,1,asyoulikeit,1599 opening,1,asyoulikeit,1599 sick,1,asyoulikeit,1599 feedeth,1,asyoulikeit,1599 each,1,asyoulikeit,1599 bills,1,asyoulikeit,1599 enlarged,1,asyoulikeit,1599 outlaws,1,asyoulikeit,1599 contriver,1,asyoulikeit,1599 verily,1,asyoulikeit,1599 chamber,1,asyoulikeit,1599 frail'st,1,asyoulikeit,1599 unkind,1,asyoulikeit,1599 Leaving,1,asyoulikeit,1599 bob,1,asyoulikeit,1599 hat,1,asyoulikeit,1599 greenwood,1,asyoulikeit,1599 wanting,1,asyoulikeit,1599 cleanliest,1,asyoulikeit,1599 'Will,1,asyoulikeit,1599 Jane,1,asyoulikeit,1599 sigh,1,asyoulikeit,1599 talks,1,asyoulikeit,1599 delights,1,asyoulikeit,1599 promotion,1,asyoulikeit,1599 sores,1,asyoulikeit,1599 flattery,1,asyoulikeit,1599 Lucretia's,1,asyoulikeit,1599 Ah,1,asyoulikeit,1599 flatters,1,asyoulikeit,1599 invent,1,asyoulikeit,1599 Am,1,asyoulikeit,1599 pay,1,asyoulikeit,1599 stubborn,1,asyoulikeit,1599 mistrust,1,asyoulikeit,1599 Frosty,1,asyoulikeit,1599 Limp'd,1,asyoulikeit,1599 fool's,1,asyoulikeit,1599 orators,1,asyoulikeit,1599 Looks,1,asyoulikeit,1599 bawdry,1,asyoulikeit,1599 mutiny,1,asyoulikeit,1599 trowel,1,asyoulikeit,1599 blows,1,asyoulikeit,1599 loath,1,asyoulikeit,1599 strangers,1,asyoulikeit,1599 knowing,1,asyoulikeit,1599 deeds,1,asyoulikeit,1599 Treason,1,asyoulikeit,1599 stretching,1,asyoulikeit,1599 Those,1,asyoulikeit,1599 shortly,1,asyoulikeit,1599 diverted,1,asyoulikeit,1599 misused,1,asyoulikeit,1599 among,1,asyoulikeit,1599 desperate,1,asyoulikeit,1599 voluntary,1,asyoulikeit,1599 hen,1,asyoulikeit,1599 Play,1,asyoulikeit,1599 bag,1,asyoulikeit,1599 Lo,1,asyoulikeit,1599 inclined,1,asyoulikeit,1599 bay,1,asyoulikeit,1599 haunches,1,asyoulikeit,1599 bar,1,asyoulikeit,1599 epilogues,1,asyoulikeit,1599 Stand,1,asyoulikeit,1599 proof,1,asyoulikeit,1599 treble,1,asyoulikeit,1599 speakest,1,asyoulikeit,1599 gained,1,asyoulikeit,1599 Says,1,asyoulikeit,1599 Wounded,1,asyoulikeit,1599 in't,1,asyoulikeit,1599 Albeit,1,asyoulikeit,1599 creature,1,asyoulikeit,1599 Answer,1,asyoulikeit,1599 'Was',1,asyoulikeit,1599 denied,1,asyoulikeit,1599 defied,1,asyoulikeit,1599 pitiless,1,asyoulikeit,1599 to't,1,asyoulikeit,1599 begun,1,asyoulikeit,1599 pitied,1,asyoulikeit,1599 satchel,1,asyoulikeit,1599 defies,1,asyoulikeit,1599 Hem,1,asyoulikeit,1599 stag,1,asyoulikeit,1599 Hood,1,asyoulikeit,1599 wrestler's,1,asyoulikeit,1599 wisdom,1,asyoulikeit,1599 conceived,1,asyoulikeit,1599 remainder,1,asyoulikeit,1599 Dennis,1,asyoulikeit,1599 hit,1,asyoulikeit,1599 tear,1,asyoulikeit,1599 Ha,1,asyoulikeit,1599 ply,1,asyoulikeit,1599 medicine,1,asyoulikeit,1599 piteous,1,asyoulikeit,1599 finer,1,asyoulikeit,1599 miser,1,asyoulikeit,1599 o'errun,1,asyoulikeit,1599 huswife's,1,asyoulikeit,1599 blest,1,asyoulikeit,1599 owner,1,asyoulikeit,1599 Pronounce,1,asyoulikeit,1599 neighbourly,1,asyoulikeit,1599 surely,1,asyoulikeit,1599 grease,1,asyoulikeit,1599 quick,1,asyoulikeit,1599 goods,1,asyoulikeit,1599 pantaloon,1,asyoulikeit,1599 east,1,asyoulikeit,1599 conqueror,1,asyoulikeit,1599 provoketh,1,asyoulikeit,1599 whistles,1,asyoulikeit,1599 emulator,1,asyoulikeit,1599 stanzo,1,asyoulikeit,1599 Had,1,asyoulikeit,1599 enrich,1,asyoulikeit,1599 past,1,asyoulikeit,1599 commendation,1,asyoulikeit,1599 pin,1,asyoulikeit,1599 Jealous,1,asyoulikeit,1599 rankness,1,asyoulikeit,1599 ears,1,asyoulikeit,1599 hyen,1,asyoulikeit,1599 Almost,1,asyoulikeit,1599 earn,1,asyoulikeit,1599 step,1,asyoulikeit,1599 changes,1,asyoulikeit,1599 Troilus,1,asyoulikeit,1599 'thou,1,asyoulikeit,1599 Is't,1,asyoulikeit,1599 nice,1,asyoulikeit,1599 ladyships,1,asyoulikeit,1599 VI,1,asyoulikeit,1599 yourselves,1,asyoulikeit,1599 monstrous,1,asyoulikeit,1599 brawls,1,asyoulikeit,1599 exits,1,asyoulikeit,1599 revenues,1,asyoulikeit,1599 heads,1,asyoulikeit,1599 quiet,1,asyoulikeit,1599 princesses,1,asyoulikeit,1599 groaning,1,asyoulikeit,1599 temple,1,asyoulikeit,1599 sought,1,asyoulikeit,1599 plants,1,asyoulikeit,1599 osiers,1,asyoulikeit,1599 haunt,1,asyoulikeit,1599 madmen,1,asyoulikeit,1599 drunkards,1,asyoulikeit,1599 valiant,1,asyoulikeit,1599 weed,1,asyoulikeit,1599 be'st,1,asyoulikeit,1599 divide,1,asyoulikeit,1599 puking,1,asyoulikeit,1599 sorry,1,asyoulikeit,1599 writers,1,asyoulikeit,1599 week,1,asyoulikeit,1599 Mend,1,asyoulikeit,1599 nigh,1,asyoulikeit,1599 busy,1,asyoulikeit,1599 swaggerer,1,asyoulikeit,1599 runaways,1,asyoulikeit,1599 leather,1,asyoulikeit,1599 fields,1,asyoulikeit,1599 belief,1,asyoulikeit,1599 imagine,1,asyoulikeit,1599 lamed,1,asyoulikeit,1599 thunderbolt,1,asyoulikeit,1599 cow's,1,asyoulikeit,1599 salute,1,asyoulikeit,1599 'thus,1,asyoulikeit,1599 bestowed,1,asyoulikeit,1599 propositions,1,asyoulikeit,1599 scholar's,1,asyoulikeit,1599 sundry's,1,asyoulikeit,1599 sorts,1,asyoulikeit,1599 kindness,1,asyoulikeit,1599 hymn,1,asyoulikeit,1599 Duke's,1,asyoulikeit,1599 awaked,1,asyoulikeit,1599 desirous,1,asyoulikeit,1599 tell'st,1,asyoulikeit,1599 orchard,1,asyoulikeit,1599 reference,1,asyoulikeit,1599 swoons,1,asyoulikeit,1599 devised,1,asyoulikeit,1599 bolden'd,1,asyoulikeit,1599 Sirs,1,asyoulikeit,1599 stealer,1,asyoulikeit,1599 Cleanse,1,asyoulikeit,1599 weak,1,asyoulikeit,1599 mistress's,1,asyoulikeit,1599 swashing,1,asyoulikeit,1599 shadow,1,asyoulikeit,1599 fifty,1,asyoulikeit,1599 mockable,1,asyoulikeit,1599 idleness,1,asyoulikeit,1599 quotidian,1,asyoulikeit,1599 jealous,1,asyoulikeit,1599 burghers,1,asyoulikeit,1599 meanest,1,asyoulikeit,1599 'Poor,1,asyoulikeit,1599 overcame,1,asyoulikeit,1599 'why',1,asyoulikeit,1599 block,1,asyoulikeit,1599 gondola,1,asyoulikeit,1599 Didst,1,asyoulikeit,1599 gamester,1,asyoulikeit,1599 silk,1,asyoulikeit,1599 fifth,1,asyoulikeit,1599 friendly,1,asyoulikeit,1599 dissembling,1,asyoulikeit,1599 taxed,1,asyoulikeit,1599 degree,1,asyoulikeit,1599 Sing,1,asyoulikeit,1599 Tongues,1,asyoulikeit,1599 verity,1,asyoulikeit,1599 herein,1,asyoulikeit,1599 tailors,1,asyoulikeit,1599 ranker,1,asyoulikeit,1599 child's,1,asyoulikeit,1599 wheresoe'er,1,asyoulikeit,1599 survey,1,asyoulikeit,1599 admired,1,asyoulikeit,1599 casement,1,asyoulikeit,1599 gout,1,asyoulikeit,1599 shifts,1,asyoulikeit,1599 consciences,1,asyoulikeit,1599 pains,1,asyoulikeit,1599 Motley's,1,asyoulikeit,1599 ensue,1,asyoulikeit,1599 'Twas,1,asyoulikeit,1599 Whither,1,asyoulikeit,1599 rejoice,1,asyoulikeit,1599 stretch,1,asyoulikeit,1599 Sans,1,asyoulikeit,1599 assign'd,1,asyoulikeit,1599 Sighing,1,asyoulikeit,1599 heap'd,1,asyoulikeit,1599 begs,1,asyoulikeit,1599 gasp,1,asyoulikeit,1599 lately,1,asyoulikeit,1599 Unwillingly,1,asyoulikeit,1599 cramp,1,asyoulikeit,1599 Both,1,asyoulikeit,1599 o'ergrown,1,asyoulikeit,1599 quite,1,asyoulikeit,1599 solemn,1,asyoulikeit,1599 store,1,asyoulikeit,1599 entertain,1,asyoulikeit,1599 sanctity,1,asyoulikeit,1599 impatience,1,asyoulikeit,1599 God's,1,asyoulikeit,1599 story,1,asyoulikeit,1599 childish,1,asyoulikeit,1599 sheepcote,1,asyoulikeit,1599 bequeathing,1,asyoulikeit,1599 virgin,1,asyoulikeit,1599 breath,1,asyoulikeit,1599 stay'd,1,asyoulikeit,1599 miles,1,asyoulikeit,1599 aim,1,asyoulikeit,1599 butter,1,asyoulikeit,1599 Methought,1,asyoulikeit,1599 promises,1,asyoulikeit,1599 resolute,1,asyoulikeit,1599 air,1,asyoulikeit,1599 keeping,1,asyoulikeit,1599 gallows,1,asyoulikeit,1599 purlieus,1,asyoulikeit,1599 satisfy,1,asyoulikeit,1599 raise,1,asyoulikeit,1599 freestone,1,asyoulikeit,1599 exercises,1,asyoulikeit,1599 servant,1,asyoulikeit,1599 instances,1,asyoulikeit,1599 righteously,1,asyoulikeit,1599 riders,1,asyoulikeit,1599 faster,1,asyoulikeit,1599 consider,1,asyoulikeit,1599 waspish,1,asyoulikeit,1599 jewels,1,asyoulikeit,1599 truest,1,asyoulikeit,1599 stood,1,asyoulikeit,1599 bird's,1,asyoulikeit,1599 Ind,1,asyoulikeit,1599 gain,1,asyoulikeit,1599 succor,1,asyoulikeit,1599 prunest,1,asyoulikeit,1599 legs,1,asyoulikeit,1599 ago,1,asyoulikeit,1599 Unless,1,asyoulikeit,1599 whereon,1,asyoulikeit,1599 invocation,1,asyoulikeit,1599 stone,1,asyoulikeit,1599 reaps,1,asyoulikeit,1599 deal,1,asyoulikeit,1599 monger,1,asyoulikeit,1599 depends,1,asyoulikeit,1599 dignity,1,asyoulikeit,1599 walled,1,asyoulikeit,1599 victory,1,asyoulikeit,1599 Feed,1,asyoulikeit,1599 seeing,1,asyoulikeit,1599 'Hero,1,asyoulikeit,1599 rhymed,1,asyoulikeit,1599 interim,1,asyoulikeit,1599 co,1,asyoulikeit,1599 Last,1,asyoulikeit,1599 stain'd,1,asyoulikeit,1599 enforce,1,asyoulikeit,1599 rhymes,1,asyoulikeit,1599 does,1,asyoulikeit,1599 icy,1,asyoulikeit,1599 Atone,1,asyoulikeit,1599 touch'd,1,asyoulikeit,1599 Phebe's,1,asyoulikeit,1599 smirch,1,asyoulikeit,1599 laughing,1,asyoulikeit,1599 dog',1,asyoulikeit,1599 lady's,1,asyoulikeit,1599 defence,1,asyoulikeit,1599 generally,1,asyoulikeit,1599 ice,1,asyoulikeit,1599 buried,1,asyoulikeit,1599 disable,1,asyoulikeit,1599 makest,1,asyoulikeit,1599 ay,1,asyoulikeit,1599 yields,1,asyoulikeit,1599 speed,1,asyoulikeit,1599 apes,1,asyoulikeit,1599 memory,1,asyoulikeit,1599 gentlewoman,1,asyoulikeit,1599 catlike,1,asyoulikeit,1599 falser,1,asyoulikeit,1599 allottery,1,asyoulikeit,1599 worldlings,1,asyoulikeit,1599 cruelty,1,asyoulikeit,1599 wench,1,asyoulikeit,1599 door,1,asyoulikeit,1599 forgotten,1,asyoulikeit,1599 doom,1,asyoulikeit,1599 marketable,1,asyoulikeit,1599 Scratch,1,asyoulikeit,1599 feast,1,asyoulikeit,1599 abominable,1,asyoulikeit,1599 ask'd,1,asyoulikeit,1599 questions,1,asyoulikeit,1599 board,1,asyoulikeit,1599 pursuit,1,asyoulikeit,1599 Lawn,1,asyoulikeit,1599 railed,1,asyoulikeit,1599 slink,1,asyoulikeit,1599 bites,1,asyoulikeit,1599 I'faith,1,asyoulikeit,1599 labourer,1,asyoulikeit,1599 necessity,1,asyoulikeit,1599 complexions,1,asyoulikeit,1599 Counterfeit,1,asyoulikeit,1599 acres,1,asyoulikeit,1599 semblances,1,asyoulikeit,1599 thankful,1,asyoulikeit,1599 perpend,1,asyoulikeit,1599 untied,1,asyoulikeit,1599 unhandsome,1,asyoulikeit,1599 idle,1,asyoulikeit,1599 Live,1,asyoulikeit,1599 earth,1,asyoulikeit,1599 sufficed,1,asyoulikeit,1599 studies,1,asyoulikeit,1599 Ready,1,asyoulikeit,1599 carved,1,asyoulikeit,1599 value,1,asyoulikeit,1599 train,1,asyoulikeit,1599 stature,1,asyoulikeit,1599 offences,1,asyoulikeit,1599 debility,1,asyoulikeit,1599 studied,1,asyoulikeit,1599 challenged,1,asyoulikeit,1599 representing,1,asyoulikeit,1599 Goths,1,asyoulikeit,1599 settled,1,asyoulikeit,1599 moon,1,asyoulikeit,1599 Wouldst,1,asyoulikeit,1599 commands,1,asyoulikeit,1599 laboured,1,asyoulikeit,1599 gallops,1,asyoulikeit,1599 beholding,1,asyoulikeit,1599 sheaf,1,asyoulikeit,1599 potent,1,asyoulikeit,1599 Speakest,1,asyoulikeit,1599 dole,1,asyoulikeit,1599 filling,1,asyoulikeit,1599 brutish,1,asyoulikeit,1599 blue,1,asyoulikeit,1599 shear,1,asyoulikeit,1599 strains,1,asyoulikeit,1599 necessary,1,asyoulikeit,1599 Freeze,1,asyoulikeit,1599 lets,1,asyoulikeit,1599 smart,1,asyoulikeit,1599 straits,1,asyoulikeit,1599 meanings,1,asyoulikeit,1599 ready,1,asyoulikeit,1599 commandment,1,asyoulikeit,1599 spot,1,asyoulikeit,1599 seasons',1,asyoulikeit,1599 glides,1,asyoulikeit,1599 forgot,1,asyoulikeit,1599 disputable,1,asyoulikeit,1599 ''Tis,1,asyoulikeit,1599 'hem',1,asyoulikeit,1599 Committing,1,asyoulikeit,1599 scatter'd,1,asyoulikeit,1599 hot,1,asyoulikeit,1599 toad,1,asyoulikeit,1599 briers,1,asyoulikeit,1599 climb,1,asyoulikeit,1599 conversion,1,asyoulikeit,1599 harm,1,asyoulikeit,1599 wasteful,1,asyoulikeit,1599 events,1,asyoulikeit,1599 hardly,1,asyoulikeit,1599 Seeing,1,asyoulikeit,1599 eats,1,asyoulikeit,1599 hart,1,asyoulikeit,1599 running,1,asyoulikeit,1599 chestnut,1,asyoulikeit,1599 easy,1,asyoulikeit,1599 irrevocable,1,asyoulikeit,1599 hare,1,asyoulikeit,1599 outstay,1,asyoulikeit,1599 solitary,1,asyoulikeit,1599 Break,1,asyoulikeit,1599 faints,1,asyoulikeit,1599 pard,1,asyoulikeit,1599 'Sweep,1,asyoulikeit,1599 reasonable,1,asyoulikeit,1599 field,1,asyoulikeit,1599 December,1,asyoulikeit,1599 soldier's,1,asyoulikeit,1599 crow,1,asyoulikeit,1599 haunts,1,asyoulikeit,1599 Christian,1,asyoulikeit,1599 crop,1,asyoulikeit,1599 senseless,1,asyoulikeit,1599 basest,1,asyoulikeit,1599 Counter,1,asyoulikeit,1599 finish,1,asyoulikeit,1599 bugle,1,asyoulikeit,1599 employ'd,1,asyoulikeit,1599 Hercules,1,asyoulikeit,1599 husband's,1,asyoulikeit,1599 carlot,1,asyoulikeit,1599 Happy,1,asyoulikeit,1599 Courage,1,asyoulikeit,1599 rushes,1,asyoulikeit,1599 hang,1,asyoulikeit,1599 appears,1,asyoulikeit,1599 shun,1,asyoulikeit,1599 Lady,1,asyoulikeit,1599 flouting,1,asyoulikeit,1599 plain,1,asyoulikeit,1599 sighing,1,asyoulikeit,1599 homewards,1,asyoulikeit,1599 joyful,1,asyoulikeit,1599 foggy,1,asyoulikeit,1599 drave,1,asyoulikeit,1599 sweetest,1,asyoulikeit,1599 mighty,1,asyoulikeit,1599 particulars,1,asyoulikeit,1599 whether,1,asyoulikeit,1599 smoothness,1,asyoulikeit,1599 rustically,1,asyoulikeit,1599 midnight,1,asyoulikeit,1599 page,1,asyoulikeit,1599 vengeance,1,asyoulikeit,1599 Smile,1,asyoulikeit,1599 bathed,1,asyoulikeit,1599 ark,1,asyoulikeit,1599 prepare,1,asyoulikeit,1599 rumination,1,asyoulikeit,1599 dominions,1,asyoulikeit,1599 shaked,1,asyoulikeit,1599 tomorrow,1,asyoulikeit,1599 pain,1,asyoulikeit,1599 stranger,1,asyoulikeit,1599 delight,1,asyoulikeit,1599 heaviness,1,asyoulikeit,1599 engage,1,asyoulikeit,1599 ape,1,asyoulikeit,1599 extremest,1,asyoulikeit,1599 foresters,1,asyoulikeit,1599 spear,1,asyoulikeit,1599 profound,1,asyoulikeit,1599 stones,1,asyoulikeit,1599 pace,1,asyoulikeit,1599 bosom,1,asyoulikeit,1599 transform'd,1,asyoulikeit,1599 extermined,1,asyoulikeit,1599 puts,1,asyoulikeit,1599 rings,1,asyoulikeit,1599 shoe,1,asyoulikeit,1599 chastity,1,asyoulikeit,1599 fall'n,1,asyoulikeit,1599 counsellors,1,asyoulikeit,1599 softest,1,asyoulikeit,1599 prepared,1,asyoulikeit,1599 princess',1,asyoulikeit,1599 fainted,1,asyoulikeit,1599 Wears,1,asyoulikeit,1599 athwart,1,asyoulikeit,1599 testimony,1,asyoulikeit,1599 Hot,1,asyoulikeit,1599 ass,1,asyoulikeit,1599 object,1,asyoulikeit,1599 goblet,1,asyoulikeit,1599 dishonest,1,asyoulikeit,1599 push,1,asyoulikeit,1599 fond,1,asyoulikeit,1599 forms,1,asyoulikeit,1599 rightly,1,asyoulikeit,1599 mayst,1,asyoulikeit,1599 ingratitude,1,asyoulikeit,1599 Robin,1,asyoulikeit,1599 secret,1,asyoulikeit,1599 Wedding,1,asyoulikeit,1599 Grounded,1,asyoulikeit,1599 olive,1,asyoulikeit,1599 banquet,1,asyoulikeit,1599 disdainful,1,asyoulikeit,1599 trick,1,asyoulikeit,1599 pacing,1,asyoulikeit,1599 inquire,1,asyoulikeit,1599 prate,1,asyoulikeit,1599 musician's,1,asyoulikeit,1599 undone,1,asyoulikeit,1599 expediently,1,asyoulikeit,1599 colour'd,1,asyoulikeit,1599 slightest,1,asyoulikeit,1599 leer,1,asyoulikeit,1599 Sport,1,asyoulikeit,1599 Saturdays,1,asyoulikeit,1599 sweetly,1,asyoulikeit,1599 behavior,1,asyoulikeit,1599 befell,1,asyoulikeit,1599 rhetoric,1,asyoulikeit,1599 longing,1,asyoulikeit,1599 markets,1,asyoulikeit,1599 bountiful,1,asyoulikeit,1599 prevents,1,asyoulikeit,1599 Traveller,1,asyoulikeit,1599 Little,1,asyoulikeit,1599 Stood,1,asyoulikeit,1599 willingly,1,asyoulikeit,1599 lunacy,1,asyoulikeit,1599 howling,1,asyoulikeit,1599 cipher,1,asyoulikeit,1599 kindled,1,asyoulikeit,1599 tastes,1,asyoulikeit,1599 merrier,1,asyoulikeit,1599 root,1,asyoulikeit,1599 moves,1,asyoulikeit,1599 lead,1,asyoulikeit,1599 inquisition,1,asyoulikeit,1599 Cover,1,asyoulikeit,1599 Rosalinda,1,asyoulikeit,1599 surgery,1,asyoulikeit,1599 ventured,1,asyoulikeit,1599 height,1,asyoulikeit,1599 nobler,1,asyoulikeit,1599 humbleness,1,asyoulikeit,1599 Hellespont,1,asyoulikeit,1599 copulatives,1,asyoulikeit,1599 watch,1,asyoulikeit,1599 hunter's,1,asyoulikeit,1599 far,1,asyoulikeit,1599 borrow,1,asyoulikeit,1599 roof,1,asyoulikeit,1599 contented,1,asyoulikeit,1599 warble,1,asyoulikeit,1599 pulpiter,1,asyoulikeit,1599 restored,1,asyoulikeit,1599 peeps,1,asyoulikeit,1599 'Rosalind',1,asyoulikeit,1599 universal,1,asyoulikeit,1599 trained,1,asyoulikeit,1599 breather,1,asyoulikeit,1599 Shout,1,asyoulikeit,1599 cradles,1,asyoulikeit,1599 Beauty,1,asyoulikeit,1599 equal,1,asyoulikeit,1599 destiny,1,asyoulikeit,1599 perceiveth,1,asyoulikeit,1599 sensual,1,asyoulikeit,1599 main,1,asyoulikeit,1599 Virtue,1,asyoulikeit,1599 Grecian,1,asyoulikeit,1599 helping,1,asyoulikeit,1599 freeze,1,asyoulikeit,1599 ballad,1,asyoulikeit,1599 albeit,1,asyoulikeit,1599 tarry,1,asyoulikeit,1599 counterfeiting,1,asyoulikeit,1599 Portugal,1,asyoulikeit,1599 glow,1,asyoulikeit,1599 caters,1,asyoulikeit,1599 honey,1,asyoulikeit,1599 hind,1,asyoulikeit,1599 carries,1,asyoulikeit,1599 nations,1,asyoulikeit,1599 griefs,1,asyoulikeit,1599 stalking,1,asyoulikeit,1599 convertites,1,asyoulikeit,1599 breathed,1,asyoulikeit,1599 rose,1,asyoulikeit,1599 guiltless,1,asyoulikeit,1599 umber,1,asyoulikeit,1599 vacation,1,asyoulikeit,1599 hoarse,1,asyoulikeit,1599 silence,1,asyoulikeit,1599 lifeless,1,asyoulikeit,1599 bravery,1,asyoulikeit,1599 inconvenient,1,asyoulikeit,1599 faction,1,asyoulikeit,1599 couldst,1,asyoulikeit,1599 mountains,1,asyoulikeit,1599 disgorge,1,asyoulikeit,1599 venison,1,asyoulikeit,1599 unknown,1,asyoulikeit,1599 seizure,1,asyoulikeit,1599 fourth,1,asyoulikeit,1599 Abruptly,1,asyoulikeit,1599 flocks,1,asyoulikeit,1599 thinks,1,asyoulikeit,1599 club,1,asyoulikeit,1599 unclean,1,asyoulikeit,1599 apply,1,asyoulikeit,1599 envy,1,asyoulikeit,1599 Venus,1,asyoulikeit,1599 retreat,1,asyoulikeit,1599 hinds,1,asyoulikeit,1599 action,1,asyoulikeit,1599 mutton,1,asyoulikeit,1599 hire,1,asyoulikeit,1599 curvets,1,asyoulikeit,1599 capon,1,asyoulikeit,1599 prodigal,1,asyoulikeit,1599 Hang,1,asyoulikeit,1599 pated,1,asyoulikeit,1599 gently,1,asyoulikeit,1599 penny,1,asyoulikeit,1599 mounted,1,asyoulikeit,1599 dulness,1,asyoulikeit,1599 Presents,1,asyoulikeit,1599 knew'st,1,asyoulikeit,1599 guides,1,asyoulikeit,1599 paths,1,asyoulikeit,1599 allows,1,asyoulikeit,1599 curing,1,asyoulikeit,1599 Flourish,1,asyoulikeit,1599 unregarded,1,asyoulikeit,1599 Was't,1,asyoulikeit,1599 whining,1,asyoulikeit,1599 Chewing,1,asyoulikeit,1599 majesty,1,asyoulikeit,1599 bottle,1,asyoulikeit,1599 nook,1,asyoulikeit,1599 velvet,1,asyoulikeit,1599 glean,1,asyoulikeit,1599 courtship,1,asyoulikeit,1599 bravely,1,asyoulikeit,1599 faint,1,asyoulikeit,1599 pleaseth,1,asyoulikeit,1599 scar,1,asyoulikeit,1599 tenor,1,asyoulikeit,1599 bled,1,asyoulikeit,1599 feature,1,asyoulikeit,1599 bestows,1,asyoulikeit,1599 Alack,1,asyoulikeit,1599 Address'd,1,asyoulikeit,1599 descended,1,asyoulikeit,1599 pastime,1,asyoulikeit,1599 Wear,1,asyoulikeit,1599 Soft,1,asyoulikeit,1599 capers,1,asyoulikeit,1599 likelihood,1,asyoulikeit,1599 furnace,1,asyoulikeit,1599 'Be,1,asyoulikeit,1599 anatomize,1,asyoulikeit,1599 Sit,1,asyoulikeit,1599 wolves,1,asyoulikeit,1599 learning,1,asyoulikeit,1599 narrow,1,asyoulikeit,1599 affections,1,asyoulikeit,1599 ungentleness,1,asyoulikeit,1599 equally,1,asyoulikeit,1599 Assuredly,1,asyoulikeit,1599 exiled,1,asyoulikeit,1599 paces,1,asyoulikeit,1599 Lose,1,asyoulikeit,1599 adopted,1,asyoulikeit,1599 odious,1,asyoulikeit,1599 escapes,1,asyoulikeit,1599 Set,1,asyoulikeit,1599 chins,1,asyoulikeit,1599 housewife,1,asyoulikeit,1599 places,1,asyoulikeit,1599 curtle,1,asyoulikeit,1599 crammed,1,asyoulikeit,1599 eggs,1,asyoulikeit,1599 call't,1,asyoulikeit,1599 scarf,1,asyoulikeit,1599 say'st,1,asyoulikeit,1599 powers,1,asyoulikeit,1599 obscuring,1,asyoulikeit,1599 Dost,1,asyoulikeit,1599 'Ay',1,asyoulikeit,1599 squandering,1,asyoulikeit,1599 recount,1,asyoulikeit,1599 Gargantua's,1,asyoulikeit,1599 Sermons,1,asyoulikeit,1599 gladness,1,asyoulikeit,1599 concave,1,asyoulikeit,1599 inky,1,asyoulikeit,1599 ravens,1,asyoulikeit,1599 sigh'd,1,asyoulikeit,1599 attire,1,asyoulikeit,1599 spurs,1,asyoulikeit,1599 parlous,1,asyoulikeit,1599 reigns,1,asyoulikeit,1599 sterner,1,asyoulikeit,1599 mild,1,asyoulikeit,1599 'If,1,asyoulikeit,1599 stalling,1,asyoulikeit,1599 bubble,1,asyoulikeit,1599 probable,1,asyoulikeit,1599 unmuzzle,1,asyoulikeit,1599 qualities,1,asyoulikeit,1599 prize,1,asyoulikeit,1599 'It,1,asyoulikeit,1599 conclusion,1,asyoulikeit,1599 purposed,1,asyoulikeit,1599 smother,1,asyoulikeit,1599 jars,1,asyoulikeit,1599 silenced,1,asyoulikeit,1599 slowly,1,asyoulikeit,1599 observation,1,asyoulikeit,1599 already,1,asyoulikeit,1599 dowry,1,asyoulikeit,1599 successfully,1,asyoulikeit,1599 assay'd,1,asyoulikeit,1599 Could,1,asyoulikeit,1599 courage,1,asyoulikeit,1599 curtsy,1,asyoulikeit,1599 egg,1,asyoulikeit,1599 skin,1,asyoulikeit,1599 parties,1,asyoulikeit,1599 uncouth,1,asyoulikeit,1599 dearest,1,asyoulikeit,1599 accustom'd,1,asyoulikeit,1599 acquit,1,asyoulikeit,1599 petticoats,1,asyoulikeit,1599 dream,1,asyoulikeit,1599 coward,1,asyoulikeit,1599 persuaded,1,asyoulikeit,1599 presentation,1,asyoulikeit,1599 fountain,1,asyoulikeit,1599 slave,1,asyoulikeit,1599 Honour,1,asyoulikeit,1599 hawking,1,asyoulikeit,1599 vein,1,asyoulikeit,1599 let's,1,asyoulikeit,1599 tradition,1,asyoulikeit,1599 ungentle,1,asyoulikeit,1599 won,1,asyoulikeit,1599 judgments,1,asyoulikeit,1599 brains,1,asyoulikeit,1599 riper,1,asyoulikeit,1599 peacemaker,1,asyoulikeit,1599 inch,1,asyoulikeit,1599 greatest,1,asyoulikeit,1599 gates,1,asyoulikeit,1599 eke,1,asyoulikeit,1599 bushes,1,asyoulikeit,1599 infect,1,asyoulikeit,1599 shoulder,1,asyoulikeit,1599 thief,1,asyoulikeit,1599 need,1,asyoulikeit,1599 West,1,asyoulikeit,1599 assailants,1,asyoulikeit,1599 plenteous,1,asyoulikeit,1599 missing,1,asyoulikeit,1599 abed,1,asyoulikeit,1599 feelingly,1,asyoulikeit,1599 bleak,1,asyoulikeit,1599 thievish,1,asyoulikeit,1599 engender'd,1,asyoulikeit,1599 blacker,1,asyoulikeit,1599 discharge,1,asyoulikeit,1599 'So,1,asyoulikeit,1599 Buy,1,asyoulikeit,1599 carving,1,asyoulikeit,1599 number,1,asyoulikeit,1599 marvel,1,asyoulikeit,1599 Being,1,asyoulikeit,1599 one's,1,asyoulikeit,1599 examines,1,asyoulikeit,1599 thigh,1,asyoulikeit,1599 disguised,1,asyoulikeit,1599 Horns,1,asyoulikeit,1599 trouble,1,asyoulikeit,1599 stairs,1,asyoulikeit,1599 wet,1,asyoulikeit,1599 Giving,1,asyoulikeit,1599 i'faith,1,asyoulikeit,1599 sucks,1,asyoulikeit,1599 converted,1,asyoulikeit,1599 wrath,1,asyoulikeit,1599 ones,1,asyoulikeit,1599 stanzos,1,asyoulikeit,1599 apish,1,asyoulikeit,1599 bequeath,1,asyoulikeit,1599 Wert,1,asyoulikeit,1599 behalf,1,asyoulikeit,1599 Dyed,1,asyoulikeit,1599 nibbling,1,asyoulikeit,1599 knavery,1,asyoulikeit,1599 slight,1,asyoulikeit,1599 desolation,1,asyoulikeit,1599 'Twixt,1,asyoulikeit,1599 renown,1,asyoulikeit,1599 Pages,1,asyoulikeit,1599 servitude,1,asyoulikeit,1599 grave,1,asyoulikeit,1599 poke,1,asyoulikeit,1599 'No,1,asyoulikeit,1599 stale,1,asyoulikeit,1599 flies,1,asyoulikeit,1599 understanding,1,asyoulikeit,1599 former,1,asyoulikeit,1599 fittest,1,asyoulikeit,1599 purchase,1,asyoulikeit,1599 pomp,1,asyoulikeit,1599 entreaties,1,asyoulikeit,1599 swain,1,asyoulikeit,1599 questioning,1,asyoulikeit,1599 Run,1,asyoulikeit,1599 scrip,1,asyoulikeit,1599 wraps,1,asyoulikeit,1599 prologues,1,asyoulikeit,1599 sides,1,asyoulikeit,1599 employed,1,asyoulikeit,1599 Twice,1,asyoulikeit,1599 five,1,asyoulikeit,1599 capable,1,asyoulikeit,1599 persons,1,asyoulikeit,1599 handkerchief,1,asyoulikeit,1599 mischievous,1,asyoulikeit,1599 stomach,1,asyoulikeit,1599 'Twill,1,asyoulikeit,1599 bands,1,asyoulikeit,1599 confines,1,asyoulikeit,1599 Peradventure,1,asyoulikeit,1599 curb,1,asyoulikeit,1599 bounden,1,asyoulikeit,1599 martial,1,asyoulikeit,1599 hearer,1,asyoulikeit,1599 bread,1,asyoulikeit,1599 curs,1,asyoulikeit,1599 pathetical,1,asyoulikeit,1599 Sad,1,asyoulikeit,1599 ring,1,asyoulikeit,1599 measured,1,asyoulikeit,1599 usurping,1,asyoulikeit,1599 prime,1,asyoulikeit,1599 binds,1,asyoulikeit,1599 sitting,1,asyoulikeit,1599 bondage,1,asyoulikeit,1599 bandy,1,asyoulikeit,1599 rind,1,asyoulikeit,1599 recover'd,1,asyoulikeit,1599 Dead,1,asyoulikeit,1599 detain'd,1,asyoulikeit,1599 saws,1,asyoulikeit,1599 Saw,1,asyoulikeit,1599 Sure,1,asyoulikeit,1599 sparrow,1,asyoulikeit,1599 flight,1,asyoulikeit,1599 milked,1,asyoulikeit,1599 falcon,1,asyoulikeit,1599 rebellious,1,asyoulikeit,1599 save,1,asyoulikeit,1599 subtle,1,asyoulikeit,1599 patiently,1,asyoulikeit,1599 recks,1,asyoulikeit,1599 swans,1,asyoulikeit,1599 musical,1,asyoulikeit,1599 burthen,1,asyoulikeit,1599 liked,1,asyoulikeit,1599 heavy,1,asyoulikeit,1599 sinewy,1,asyoulikeit,1599 Think,1,asyoulikeit,1599 Hereafter,1,asyoulikeit,1599 bringest,1,asyoulikeit,1599 cutter,1,asyoulikeit,1599 stage,1,asyoulikeit,1599 staff,1,asyoulikeit,1599 driven,1,asyoulikeit,1599 able,1,asyoulikeit,1599 arms,1,asyoulikeit,1599 nuptial,1,asyoulikeit,1599 perforce,1,asyoulikeit,1599 goldsmiths',1,asyoulikeit,1599 print,1,asyoulikeit,1599 hidden,1,asyoulikeit,1599 libertine,1,asyoulikeit,1599 sufferance,1,asyoulikeit,1599 changeable,1,asyoulikeit,1599 dugs,1,asyoulikeit,1599 they'll,1,asyoulikeit,1599 tutor'd,1,asyoulikeit,1599 maiden's,1,asyoulikeit,1599 uncle's,1,asyoulikeit,1599 Countercheque,1,asyoulikeit,1599 tempered,1,asyoulikeit,1599 wont,1,asyoulikeit,1599 prick,1,asyoulikeit,1599 lookest,1,asyoulikeit,1599 bearded,1,asyoulikeit,1599 spectacles,1,asyoulikeit,1599 fenced,1,asyoulikeit,1599 complain,1,asyoulikeit,1599 emulation,1,asyoulikeit,1599 wheel,1,asyoulikeit,1599 next,1,asyoulikeit,1599 threats,1,asyoulikeit,1599 whippers,1,asyoulikeit,1599 Three,1,asyoulikeit,1599 pence,1,asyoulikeit,1599 dunghills,1,asyoulikeit,1599 damask,1,asyoulikeit,1599 Warr'st,1,asyoulikeit,1599 caught,1,asyoulikeit,1599 notice,1,asyoulikeit,1599 religiously,1,asyoulikeit,1599 stripp'd,1,asyoulikeit,1599 into't,1,asyoulikeit,1599 'Call,1,asyoulikeit,1599 inaccessible,1,asyoulikeit,1599 vulgar,1,asyoulikeit,1599 Egypt,1,asyoulikeit,1599 requite,1,asyoulikeit,1599 husbandry,1,asyoulikeit,1599 godhead,1,asyoulikeit,1599 mettle,1,asyoulikeit,1599 seize,1,asyoulikeit,1599 oblivion,1,asyoulikeit,1599 worships,1,asyoulikeit,1599 demonstrating,1,asyoulikeit,1599 scrippage,1,asyoulikeit,1599 takes,1,asyoulikeit,1599 fallen,1,asyoulikeit,1599 honoured,1,asyoulikeit,1599 conference,1,asyoulikeit,1599 reports,1,asyoulikeit,1599 earthly,1,asyoulikeit,1599 trodden,1,asyoulikeit,1599 prologue,1,asyoulikeit,1599 size,1,asyoulikeit,1599 clapped,1,asyoulikeit,1599 spleen,1,asyoulikeit,1599 challenger's,1,asyoulikeit,1599 bitterness,1,asyoulikeit,1599 wife's,1,asyoulikeit,1599 animal,1,asyoulikeit,1599 revelry,1,asyoulikeit,1599 boorish,1,asyoulikeit,1599 similes,1,asyoulikeit,1599 nest,1,asyoulikeit,1599 minister'd,1,asyoulikeit,1599 waters,1,asyoulikeit,1599 harvest,1,asyoulikeit,1599 Forbear,1,asyoulikeit,1599 sober,1,asyoulikeit,1599 angry,1,asyoulikeit,1599 falling,1,asyoulikeit,1599 whence,1,asyoulikeit,1599 unfortunate,1,asyoulikeit,1599 followers,1,asyoulikeit,1599 fill'd,1,asyoulikeit,1599 tilter,1,asyoulikeit,1599 heathen,1,asyoulikeit,1599 concealed,1,asyoulikeit,1599 Show,1,asyoulikeit,1599 guilty,1,asyoulikeit,1599 grieve,1,asyoulikeit,1599 hunger,1,asyoulikeit,1599 wholesome,1,asyoulikeit,1599 pouch,1,asyoulikeit,1599 persever,1,asyoulikeit,1599 earthquakes,1,asyoulikeit,1599 Make,1,asyoulikeit,1599 Many,1,asyoulikeit,1599 diseases,1,asyoulikeit,1599 character,1,asyoulikeit,1599 yond,1,asyoulikeit,1599 cloth,1,asyoulikeit,1599 tuft,1,asyoulikeit,1599 Withal,1,asyoulikeit,1599 modesty,1,asyoulikeit,1599 'is,1,asyoulikeit,1599 Afflict,1,asyoulikeit,1599 complain'd,1,asyoulikeit,1599 clownish,1,asyoulikeit,1599 That's,1,asyoulikeit,1599 cares,1,asyoulikeit,1599 embossed,1,asyoulikeit,1599 unpeopled,1,asyoulikeit,1599 Hadst,1,asyoulikeit,1599 Jupiter,1,asyoulikeit,1599 catechism,1,asyoulikeit,1599 bastinado,1,asyoulikeit,1599 kinsman,1,asyoulikeit,1599 methinks,1,asyoulikeit,1599 plentifully,1,asyoulikeit,1599 Amiens,1,asyoulikeit,1599 Runs,1,asyoulikeit,1599 Understanding,1,asyoulikeit,1599 mines,1,asyoulikeit,1599 worm,1,asyoulikeit,1599 wounds,1,asyoulikeit,1599 parcels,1,asyoulikeit,1599 slipper'd,1,asyoulikeit,1599 wickedness,1,asyoulikeit,1599 fang,1,asyoulikeit,1599 passing,1,asyoulikeit,1599 dancing,1,asyoulikeit,1599 allow,1,asyoulikeit,1599 'em,1,asyoulikeit,1599 esteem'd,1,asyoulikeit,1599 Winter,1,asyoulikeit,1599 grape,1,asyoulikeit,1599 perfect,1,asyoulikeit,1599 pulled,1,asyoulikeit,1599 Bon,1,asyoulikeit,1599 redness,1,asyoulikeit,1599 fill,1,asyoulikeit,1599 glances,1,asyoulikeit,1599 woods,1,asyoulikeit,1599 insomuch,1,asyoulikeit,1599 contemplative,1,asyoulikeit,1599 clap,1,asyoulikeit,1599 wooed,1,asyoulikeit,1599 damnation,1,asyoulikeit,1599 arm's,1,asyoulikeit,1599 minded,1,asyoulikeit,1599 answer'd,1,asyoulikeit,1599 exult,1,asyoulikeit,1599 Unto,1,asyoulikeit,1599 bite,1,asyoulikeit,1599 fawn,1,asyoulikeit,1599 scoffer,1,asyoulikeit,1599 practise,1,asyoulikeit,1599 puisny,1,asyoulikeit,1599 depart,1,asyoulikeit,1599 queen,1,asyoulikeit,1599 Barbary,1,asyoulikeit,1599 beware,1,asyoulikeit,1599 mates,1,asyoulikeit,1599 betters,1,asyoulikeit,1599 partly,1,asyoulikeit,1599 patient,1,asyoulikeit,1599 'Good,1,asyoulikeit,1599 bars,1,asyoulikeit,1599 Foul,1,asyoulikeit,1599 meaning,1,asyoulikeit,1599 cicatrice,1,asyoulikeit,1599 gilded,1,asyoulikeit,1599 bird,1,asyoulikeit,1599 freshly,1,asyoulikeit,1599 base,1,asyoulikeit,1599 strikes,1,asyoulikeit,1599 Envenoms,1,asyoulikeit,1599 rustic,1,asyoulikeit,1599 appointed,1,asyoulikeit,1599 band,1,asyoulikeit,1599 grapes,1,asyoulikeit,1599 carol,1,asyoulikeit,1599 cream,1,asyoulikeit,1599 tame,1,asyoulikeit,1599 weakness,1,asyoulikeit,1599 Leander,1,asyoulikeit,1599 names,1,asyoulikeit,1599 cods,1,asyoulikeit,1599 bill,1,asyoulikeit,1599 songs,1,asyoulikeit,1599 homily,1,asyoulikeit,1599 accoutrements,1,asyoulikeit,1599 departure,1,asyoulikeit,1599 marries,1,asyoulikeit,1599 Melancholy,1,asyoulikeit,1599 acorn,1,asyoulikeit,1599 Hymen's,1,asyoulikeit,1599 folks,1,asyoulikeit,1599 conversed,1,asyoulikeit,1599 bind,1,asyoulikeit,1599 cup,1,asyoulikeit,1599 sunder'd,1,asyoulikeit,1599 stroke,1,asyoulikeit,1599 excepted,1,asyoulikeit,1599 jests,1,asyoulikeit,1599 ungartered,1,asyoulikeit,1599 olives,1,asyoulikeit,1599 bask'd,1,asyoulikeit,1599 effigies,1,asyoulikeit,1599 Worth,1,asyoulikeit,1599 eyeballs,1,asyoulikeit,1599 ought,1,asyoulikeit,1599 holds,1,asyoulikeit,1599 shook,1,asyoulikeit,1599 getting,1,asyoulikeit,1599 Food,1,asyoulikeit,1599 inseparable,1,asyoulikeit,1599 England,1,asyoulikeit,1599 chapel,1,asyoulikeit,1599 quit,1,asyoulikeit,1599 clear,1,asyoulikeit,1599 short,1,asyoulikeit,1599 clean,1,asyoulikeit,1599 'Wear,1,asyoulikeit,1599 None,1,asyoulikeit,1599 hole,1,asyoulikeit,1599 portion,1,asyoulikeit,1599 greet,1,asyoulikeit,1599 dangerous,1,asyoulikeit,1599 extraordinary,1,asyoulikeit,1599 hollow,1,asyoulikeit,1599 lackey,1,asyoulikeit,1599 Although,1,asyoulikeit,1599 stubbornest,1,asyoulikeit,1599 Who's,1,asyoulikeit,1599 feasts,1,asyoulikeit,1599 carve,1,asyoulikeit,1599 oyster,1,asyoulikeit,1599 cowards,1,asyoulikeit,1599 request,1,asyoulikeit,1599 ranged,1,asyoulikeit,1599 hogs,1,asyoulikeit,1599 consist,1,asyoulikeit,1599 cheerly,1,asyoulikeit,1599 presents,1,asyoulikeit,1599 clubs,1,asyoulikeit,1599 forsooth,1,asyoulikeit,1599 flood,1,asyoulikeit,1599 liver,1,asyoulikeit,1599 gentility,1,asyoulikeit,1599 panel,1,asyoulikeit,1599 horses,1,asyoulikeit,1599 entrap,1,asyoulikeit,1599 feeding,1,asyoulikeit,1599 wondering,1,asyoulikeit,1599 'Who,1,asyoulikeit,1599 seal,1,asyoulikeit,1599 sluttishness,1,asyoulikeit,1599 unbashful,1,asyoulikeit,1599 'old,1,asyoulikeit,1599 conjure,1,asyoulikeit,1599 'Wit,1,asyoulikeit,1599 inherited,1,asyoulikeit,1599 peascod,1,asyoulikeit,1599 prayers,1,asyoulikeit,1599 also,1,asyoulikeit,1599 Cleopatra's,1,asyoulikeit,1599 'Why,1,asyoulikeit,1599 bawd,1,asyoulikeit,1599 puffing,1,asyoulikeit,1599 hearts,1,asyoulikeit,1599 satisfied,1,asyoulikeit,1599 lungs,1,asyoulikeit,1599 cope,1,asyoulikeit,1599 manage,1,asyoulikeit,1599 hairy,1,asyoulikeit,1599 perfumed,1,asyoulikeit,1599 interest,1,asyoulikeit,1599 hunt,1,asyoulikeit,1599 Trow,1,asyoulikeit,1599 commission,1,asyoulikeit,1599 cheerful,1,asyoulikeit,1599 feeder,1,asyoulikeit,1599 Calls,1,asyoulikeit,1599 always,1,asyoulikeit,1599 tangle,1,asyoulikeit,1599 winged,1,asyoulikeit,1599 unkept,1,asyoulikeit,1599 neglected,1,asyoulikeit,1599 favour'd,1,asyoulikeit,1599 bachelor,1,asyoulikeit,1599 startle,1,asyoulikeit,1599 ugly,1,asyoulikeit,1599 territory,1,asyoulikeit,1599 acts,1,asyoulikeit,1599 Circumstance,1,asyoulikeit,1599 states,1,asyoulikeit,1599 traverse,1,asyoulikeit,1599 Shepherdess,1,asyoulikeit,1599 decree,1,asyoulikeit,1599 cony,1,asyoulikeit,1599 reckoning,1,asyoulikeit,1599 crept,1,asyoulikeit,1599 Augmenting,1,asyoulikeit,1599 oppress'd,1,asyoulikeit,1599 Seek,1,asyoulikeit,1599 stagger,1,asyoulikeit,1599 brambles,1,asyoulikeit,1599 supplied,1,asyoulikeit,1599 material,1,asyoulikeit,1599 presence,1,asyoulikeit,1599 untreasured,1,asyoulikeit,1599 south,1,asyoulikeit,1599 cousins,1,asyoulikeit,1599 Gentleman,1,asyoulikeit,1599 sports,1,asyoulikeit,1599 look'd,1,asyoulikeit,1599 Mewling,1,asyoulikeit,1599 discretion,1,asyoulikeit,1599 understood,1,asyoulikeit,1599 covetousness,1,asyoulikeit,1599 sees,1,asyoulikeit,1599 bequeathed,1,asyoulikeit,1599 age's,1,asyoulikeit,1599 vessel,1,asyoulikeit,1599 fellows,1,asyoulikeit,1599 battle,1,asyoulikeit,1599 cramm'd,1,asyoulikeit,1599 Believe,1,asyoulikeit,1599 True,1,asyoulikeit,1599 crest,1,asyoulikeit,1599 mix'd,1,asyoulikeit,1599 priser,1,asyoulikeit,1599 cork,1,asyoulikeit,1599 ditty,1,asyoulikeit,1599 corn,1,asyoulikeit,1599 needless,1,asyoulikeit,1599 vehemence,1,asyoulikeit,1599 sacred,1,asyoulikeit,1599 wearied,1,asyoulikeit,1599 rascally,1,asyoulikeit,1599 whate'er,1,asyoulikeit,1599 monkey,1,asyoulikeit,1599 Maids,1,asyoulikeit,1599 modest,1,asyoulikeit,1599 eyne,1,asyoulikeit,1599 briefly,1,asyoulikeit,1599 nights,1,asyoulikeit,1599 loyalty,1,asyoulikeit,1599 downright,1,asyoulikeit,1599 jointure,1,asyoulikeit,1599 Through,1,asyoulikeit,1599 lovest,1,asyoulikeit,1599 slender,1,asyoulikeit,1599 huge,1,asyoulikeit,1599 approach'd,1,asyoulikeit,1599 jolly,1,asyoulikeit,1599 kindred,1,asyoulikeit,1599 dislike,1,asyoulikeit,1599 suffice,1,asyoulikeit,1599 loathe,1,asyoulikeit,1599 Send,1,asyoulikeit,1599 souls,1,asyoulikeit,1599 remove,1,asyoulikeit,1599 parentage,1,asyoulikeit,1599 Trip,1,asyoulikeit,1599 fairly,1,asyoulikeit,1599 according,1,asyoulikeit,1599 believes,1,asyoulikeit,1599 Just,1,asyoulikeit,1599 Meantime,1,asyoulikeit,1599 overheard,1,asyoulikeit,1599 post,1,asyoulikeit,1599 blank,1,asyoulikeit,1599 bankrupt,1,asyoulikeit,1599 nurture,1,asyoulikeit,1599 bald,1,asyoulikeit,1599 rudiments,1,asyoulikeit,1599 cold,1,asyoulikeit,1599 Sell,1,asyoulikeit,1599 Roman,1,asyoulikeit,1599 shoots,1,asyoulikeit,1599 grieved,1,asyoulikeit,1599 greeting,1,asyoulikeit,1599 wrangling,1,asyoulikeit,1599 foiled,1,asyoulikeit,1599 sullen,1,asyoulikeit,1599 formal,1,asyoulikeit,1599 hiding,1,asyoulikeit,1599 Instance,1,asyoulikeit,1599 renders,1,asyoulikeit,1599 sickens,1,asyoulikeit,1599 bonnet,1,asyoulikeit,1599 couple,1,asyoulikeit,1599 bestow,1,asyoulikeit,1599 invite,1,asyoulikeit,1599 detect,1,asyoulikeit,1599 lip,1,asyoulikeit,1599 crooked,1,asyoulikeit,1599 master's,1,asyoulikeit,1599 pipes,1,asyoulikeit,1599 moss'd,1,asyoulikeit,1599 seem'st,1,asyoulikeit,1599 instead,1,asyoulikeit,1599 chopt,1,asyoulikeit,1599 nature's,1,asyoulikeit,1599 ebb,1,asyoulikeit,1599 sequester'd,1,asyoulikeit,1599 Two,1,asyoulikeit,1599 trot,1,asyoulikeit,1599 frantic,1,asyoulikeit,1599 Firm,1,asyoulikeit,1599 licence,1,asyoulikeit,1599 trod,1,asyoulikeit,1599 Nothing,1,asyoulikeit,1599 choke,1,asyoulikeit,1599 servants,1,asyoulikeit,1599 forwardness,1,asyoulikeit,1599 ear,1,asyoulikeit,1599 slumber,1,asyoulikeit,1599 persuade,1,asyoulikeit,1599 suitor,1,asyoulikeit,1599 hurtling,1,asyoulikeit,1599 lays,1,asyoulikeit,1599 swearest,1,asyoulikeit,1599 sounder,1,asyoulikeit,1599 Cheerly,1,asyoulikeit,1599 allies,1,asyoulikeit,1599 limbs,1,asyoulikeit,1599 sounded,1,asyoulikeit,1599 Hisperia,1,asyoulikeit,1599 eventful,1,asyoulikeit,1599 dulcet,1,asyoulikeit,1599 lazy,1,asyoulikeit,1599 'ever,1,asyoulikeit,1599 thrifty,1,asyoulikeit,1599 Signior,1,asyoulikeit,1599 comfortable,1,asyoulikeit,1599 'scape,1,asyoulikeit,1599 Five,1,asyoulikeit,1599 udders,1,asyoulikeit,1599 reward,1,asyoulikeit,1599 laughed,1,asyoulikeit,1599 doing,1,asyoulikeit,1599 Another,1,asyoulikeit,1599 enforcement,1,asyoulikeit,1599 forked,1,asyoulikeit,1599 taxation,1,asyoulikeit,1599 compounded,1,asyoulikeit,1599 chosen,1,asyoulikeit,1599 courageous,1,asyoulikeit,1599 headed,1,asyoulikeit,1599 trip,1,asyoulikeit,1599 phoenix,1,asyoulikeit,1599 vents,1,asyoulikeit,1599 refusing,1,asyoulikeit,1599 limn'd,1,asyoulikeit,1599 maker,1,asyoulikeit,1599 EPILOGUE,1,asyoulikeit,1599 goldenly,1,asyoulikeit,1599 misconstrues,1,asyoulikeit,1599 antiquity,1,asyoulikeit,1599 sovereign,1,asyoulikeit,1599 Before,1,asyoulikeit,1599 lectures,1,asyoulikeit,1599 beholders,1,asyoulikeit,1599 whit,1,asyoulikeit,1599 whip,1,asyoulikeit,1599 debtor,1,asyoulikeit,1599 pompous,1,asyoulikeit,1599 Men,1,asyoulikeit,1599 se'nnight,1,asyoulikeit,1599 mocked,1,asyoulikeit,1599 thinking,1,asyoulikeit,1599 mocker,1,asyoulikeit,1599 liquors,1,asyoulikeit,1599 incision,1,asyoulikeit,1599 attorney,1,asyoulikeit,1599 batlet,1,asyoulikeit,1599 eleven,1,asyoulikeit,1599 Tears,1,asyoulikeit,1599 murmuring,1,asyoulikeit,1599 quarrels,1,asyoulikeit,1599 elegies,1,asyoulikeit,1599 lion,1,asyoulikeit,1599 Amen,1,asyoulikeit,1599 petitionary,1,asyoulikeit,1599 players,1,asyoulikeit,1599 whiles,1,asyoulikeit,1599 hawthorns,1,asyoulikeit,1599 christened,1,asyoulikeit,1599 lass,1,asyoulikeit,1599 pierceth,1,asyoulikeit,1599 whisper'd,1,asyoulikeit,1599 nativity,1,asyoulikeit,1599 earliest,1,asyoulikeit,1599 taunting,1,asyoulikeit,1599 bursting,1,asyoulikeit,1599 credit,1,asyoulikeit,1599 'how,1,asyoulikeit,1599 Wherever,1,asyoulikeit,1599 synod,1,asyoulikeit,1599 fasting,1,asyoulikeit,1599 caparisoned,1,asyoulikeit,1599 unseasonably,1,asyoulikeit,1599 Greek,1,asyoulikeit,1599 citizens,1,asyoulikeit,1599 VII,1,asyoulikeit,1599 extent,1,asyoulikeit,1599 brooks,1,asyoulikeit,1599 May,1,asyoulikeit,1599 severally,1,asyoulikeit,1599 fright,1,asyoulikeit,1599 gravelled,1,asyoulikeit,1599 gets,1,asyoulikeit,1599 lisp,1,asyoulikeit,1599 human,1,asyoulikeit,1599 April,1,asyoulikeit,1599 untuneable,1,asyoulikeit,1599 nurse's,1,asyoulikeit,1599 corners,1,asyoulikeit,1599 carelessly,1,asyoulikeit,1599 entreaty,1,asyoulikeit,1599 couching,1,asyoulikeit,1599 fathom,1,asyoulikeit,1599 dwells,1,asyoulikeit,1599 shrewd,1,asyoulikeit,1599 roynish,1,asyoulikeit,1599 despiteful,1,asyoulikeit,1599 'This,1,asyoulikeit,1599 sheep's,1,asyoulikeit,1599 tardy,1,asyoulikeit,1599 hired,1,asyoulikeit,1599 Teaching,1,asyoulikeit,1599 lover's,1,asyoulikeit,1599 You'll,1,asyoulikeit,1599 payment,1,asyoulikeit,1599 employ,1,asyoulikeit,1599 cannon's,1,asyoulikeit,1599 brag,1,asyoulikeit,1599 doe,1,asyoulikeit,1599 provide,1,asyoulikeit,1599 sprite,1,asyoulikeit,1599 mangled,1,asyoulikeit,1599 parishioners,1,asyoulikeit,1599 Falls,1,asyoulikeit,1599 resorted,1,asyoulikeit,1599 inquired,1,asyoulikeit,1599 weight,1,asyoulikeit,1599 He's,1,asyoulikeit,1599 humbled,1,asyoulikeit,1599 toy,1,asyoulikeit,1599 blessing,1,asyoulikeit,1599 roasted,1,asyoulikeit,1599 top,1,asyoulikeit,1599 liest,1,asyoulikeit,1599 lamb,1,asyoulikeit,1599 couples,1,asyoulikeit,1599 instantly,1,asyoulikeit,1599 months,1,asyoulikeit,1599 wonders,1,asyoulikeit,1599 DRAMATIS,1,asyoulikeit,1599 shift,1,asyoulikeit,1599 gored,1,asyoulikeit,1599 childishness,1,asyoulikeit,1599 shins,1,asyoulikeit,1599 flower,1,asyoulikeit,1599 armed,1,asyoulikeit,1599 usurper,1,asyoulikeit,1599 pass'd,1,asyoulikeit,1599 bargain,1,asyoulikeit,1599 greatness,1,asyoulikeit,1599 consenting,1,asyoulikeit,1599 smell,1,asyoulikeit,1599 spitting,1,asyoulikeit,1599 hospitality,1,asyoulikeit,1599 'Have,1,asyoulikeit,1599 king,1,asyoulikeit,1599 sourest,1,asyoulikeit,1599 command,1,asyoulikeit,1599 Confesses,1,asyoulikeit,1599 slip,1,asyoulikeit,1599 monastic,1,asyoulikeit,1599 gloves,1,asyoulikeit,1599 shank,1,asyoulikeit,1599 Finds,1,asyoulikeit,1599 Gross,1,asyoulikeit,1599 eyelids,1,asyoulikeit,1599 unexpressive,1,asyoulikeit,1599 hugely,1,asyoulikeit,1599 providently,1,asyoulikeit,1599 amaze,1,asyoulikeit,1599 remorse,1,asyoulikeit,1599 sisterhood,1,asyoulikeit,1599 underhand,1,asyoulikeit,1599 justly,1,asyoulikeit,1599 spectacle,1,asyoulikeit,1599 dinners,1,asyoulikeit,1599 remembrance,1,asyoulikeit,1599 'poetical',1,asyoulikeit,1599 marked,1,asyoulikeit,1599 eyebrow,1,asyoulikeit,1599 Find,1,asyoulikeit,1599 flattering,1,asyoulikeit,1599 shape,1,asyoulikeit,1599 enchantingly,1,asyoulikeit,1599 market,1,asyoulikeit,1599 sobbing,1,asyoulikeit,1599 OLIVER'S,1,asyoulikeit,1599 Brief,1,asyoulikeit,1599 Sticks,1,asyoulikeit,1599 offer'st,1,asyoulikeit,1599 share,1,asyoulikeit,1599 order,1,asyoulikeit,1599 Support,1,asyoulikeit,1599 exempt,1,asyoulikeit,1599 sharp,1,asyoulikeit,1599 punished,1,asyoulikeit,1599 entrances,1,asyoulikeit,1599 sway,1,asyoulikeit,1599 swam,1,asyoulikeit,1599 insinuate,1,asyoulikeit,1599 inhabited,1,asyoulikeit,1599 answered,2,asyoulikeit,1599 troubled,2,asyoulikeit,1599 o'er,2,asyoulikeit,1599 invisible,2,asyoulikeit,1599 extremity,2,asyoulikeit,1599 Valiant,2,asyoulikeit,1599 took,2,asyoulikeit,1599 reputation,2,asyoulikeit,1599 fathers,2,asyoulikeit,1599 churlish,2,asyoulikeit,1599 'ild,2,asyoulikeit,1599 Judas's,2,asyoulikeit,1599 village,2,asyoulikeit,1599 foolery,2,asyoulikeit,1599 rot,2,asyoulikeit,1599 scene,2,asyoulikeit,1599 Never,2,asyoulikeit,1599 knoll'd,2,asyoulikeit,1599 eight,2,asyoulikeit,1599 painted,2,asyoulikeit,1599 Must,2,asyoulikeit,1599 skirts,2,asyoulikeit,1599 learn'd,2,asyoulikeit,1599 throat,2,asyoulikeit,1599 soul,2,asyoulikeit,1599 worms,2,asyoulikeit,1599 lies,2,asyoulikeit,1599 wounded,2,asyoulikeit,1599 saved,2,asyoulikeit,1599 attempt,2,asyoulikeit,1599 gallop,2,asyoulikeit,1599 flux,2,asyoulikeit,1599 chin,2,asyoulikeit,1599 soon,2,asyoulikeit,1599 sons,2,asyoulikeit,1599 birth,2,asyoulikeit,1599 draw,2,asyoulikeit,1599 working,2,asyoulikeit,1599 sold,2,asyoulikeit,1599 Young,2,asyoulikeit,1599 Whose,2,asyoulikeit,1599 assembly,2,asyoulikeit,1599 purse,2,asyoulikeit,1599 toward,2,asyoulikeit,1599 cheer,2,asyoulikeit,1599 hearing,2,asyoulikeit,1599 paper,2,asyoulikeit,1599 glass,2,asyoulikeit,1599 blessed,2,asyoulikeit,1599 began,2,asyoulikeit,1599 features,2,asyoulikeit,1599 Cupid,2,asyoulikeit,1599 asked,2,asyoulikeit,1599 weaker,2,asyoulikeit,1599 hereafter,2,asyoulikeit,1599 Duke,2,asyoulikeit,1599 Get,2,asyoulikeit,1599 bound,2,asyoulikeit,1599 sex,2,asyoulikeit,1599 favoured,2,asyoulikeit,1599 deceived,2,asyoulikeit,1599 sea,2,asyoulikeit,1599 beasts,2,asyoulikeit,1599 yield,2,asyoulikeit,1599 nine,2,asyoulikeit,1599 peril,2,asyoulikeit,1599 Corin,2,asyoulikeit,1599 abuses,2,asyoulikeit,1599 followed,2,asyoulikeit,1599 'I,2,asyoulikeit,1599 stern,2,asyoulikeit,1599 testament,2,asyoulikeit,1599 acquainted,2,asyoulikeit,1599 wages,2,asyoulikeit,1599 sky,2,asyoulikeit,1599 suck,2,asyoulikeit,1599 mother,2,asyoulikeit,1599 play'd,2,asyoulikeit,1599 betwixt,2,asyoulikeit,1599 foulness,2,asyoulikeit,1599 read,2,asyoulikeit,1599 vile,2,asyoulikeit,1599 points,2,asyoulikeit,1599 conceit,2,asyoulikeit,1599 rhyme,2,asyoulikeit,1599 figure,2,asyoulikeit,1599 'Od's,2,asyoulikeit,1599 runs,2,asyoulikeit,1599 actions,2,asyoulikeit,1599 terms,2,asyoulikeit,1599 encounter,2,asyoulikeit,1599 eldest,2,asyoulikeit,1599 Pardon,2,asyoulikeit,1599 civility,2,asyoulikeit,1599 willing,2,asyoulikeit,1599 worthy,2,asyoulikeit,1599 Wherein,2,asyoulikeit,1599 Leave,2,asyoulikeit,1599 cries,2,asyoulikeit,1599 overthrown,2,asyoulikeit,1599 sum,2,asyoulikeit,1599 elder,2,asyoulikeit,1599 civet,2,asyoulikeit,1599 feel,2,asyoulikeit,1599 sauce,2,asyoulikeit,1599 dissuade,2,asyoulikeit,1599 masters,2,asyoulikeit,1599 blind,2,asyoulikeit,1599 brief,2,asyoulikeit,1599 malice,2,asyoulikeit,1599 dial,2,asyoulikeit,1599 others,2,asyoulikeit,1599 ware,2,asyoulikeit,1599 flesh,2,asyoulikeit,1599 tar,2,asyoulikeit,1599 mirth,2,asyoulikeit,1599 executioner,2,asyoulikeit,1599 steal,2,asyoulikeit,1599 hates,2,asyoulikeit,1599 goose,2,asyoulikeit,1599 Diana,2,asyoulikeit,1599 hated,2,asyoulikeit,1599 dukedom,2,asyoulikeit,1599 bond,2,asyoulikeit,1599 breeding,2,asyoulikeit,1599 wash,2,asyoulikeit,1599 distress,2,asyoulikeit,1599 mistake,2,asyoulikeit,1599 There's,2,asyoulikeit,1599 creeping,2,asyoulikeit,1599 bright,2,asyoulikeit,1599 fairest,2,asyoulikeit,1599 foil,2,asyoulikeit,1599 big,2,asyoulikeit,1599 I',2,asyoulikeit,1599 refuse,2,asyoulikeit,1599 offend,2,asyoulikeit,1599 Shallow,2,asyoulikeit,1599 At,2,asyoulikeit,1599 altogether,2,asyoulikeit,1599 chaste,2,asyoulikeit,1599 youthful,2,asyoulikeit,1599 bow,2,asyoulikeit,1599 unnatural,2,asyoulikeit,1599 murderers,2,asyoulikeit,1599 Still,2,asyoulikeit,1599 smile,2,asyoulikeit,1599 bad,2,asyoulikeit,1599 secretly,2,asyoulikeit,1599 Me,2,asyoulikeit,1599 cruel,2,asyoulikeit,1599 kept,2,asyoulikeit,1599 translate,2,asyoulikeit,1599 innocent,2,asyoulikeit,1599 Something,2,asyoulikeit,1599 pleasure,2,asyoulikeit,1599 dinner,2,asyoulikeit,1599 whole,2,asyoulikeit,1599 ease,2,asyoulikeit,1599 revenue,2,asyoulikeit,1599 Let's,2,asyoulikeit,1599 greasy,2,asyoulikeit,1599 god,2,asyoulikeit,1599 gave,2,asyoulikeit,1599 absent,2,asyoulikeit,1599 grief,2,asyoulikeit,1599 Jove's,2,asyoulikeit,1599 burs,2,asyoulikeit,1599 difference,2,asyoulikeit,1599 bell,2,asyoulikeit,1599 Prithee,2,asyoulikeit,1599 burn,2,asyoulikeit,1599 cat,2,asyoulikeit,1599 children,2,asyoulikeit,1599 foolishly,2,asyoulikeit,1599 Re,2,asyoulikeit,1599 furnished,2,asyoulikeit,1599 jewel,2,asyoulikeit,1599 farewell,2,asyoulikeit,1599 eaten,2,asyoulikeit,1599 despite,2,asyoulikeit,1599 vows,2,asyoulikeit,1599 amongst,2,asyoulikeit,1599 stronger,2,asyoulikeit,1599 poetical,2,asyoulikeit,1599 enterprise,2,asyoulikeit,1599 calling,2,asyoulikeit,1599 crowned,2,asyoulikeit,1599 uses,2,asyoulikeit,1599 deed,2,asyoulikeit,1599 Irish,2,asyoulikeit,1599 instant,2,asyoulikeit,1599 wiped,2,asyoulikeit,1599 betray,2,asyoulikeit,1599 Holla,2,asyoulikeit,1599 voyage,2,asyoulikeit,1599 gift,2,asyoulikeit,1599 Here's,2,asyoulikeit,1599 favour,2,asyoulikeit,1599 needs,2,asyoulikeit,1599 swearing,2,asyoulikeit,1599 dwell,2,asyoulikeit,1599 holiday,2,asyoulikeit,1599 boast,2,asyoulikeit,1599 husband,2,asyoulikeit,1599 approach,2,asyoulikeit,1599 fourscore,2,asyoulikeit,1599 ox,2,asyoulikeit,1599 attending,2,asyoulikeit,1599 delay,2,asyoulikeit,1599 small,2,asyoulikeit,1599 aside,2,asyoulikeit,1599 uncleanly,2,asyoulikeit,1599 o',2,asyoulikeit,1599 seventeen,2,asyoulikeit,1599 Fortune's,2,asyoulikeit,1599 Oliver's,2,asyoulikeit,1599 miserable,2,asyoulikeit,1599 challenger,2,asyoulikeit,1599 all's,2,asyoulikeit,1599 devil,2,asyoulikeit,1599 nimble,2,asyoulikeit,1599 tyrants,2,asyoulikeit,1599 acquaint,2,asyoulikeit,1599 Because,2,asyoulikeit,1599 incontinent,2,asyoulikeit,1599 thrice,2,asyoulikeit,1599 killed,2,asyoulikeit,1599 brought,2,asyoulikeit,1599 reasons,2,asyoulikeit,1599 axe,2,asyoulikeit,1599 Seeking,2,asyoulikeit,1599 keen,2,asyoulikeit,1599 remember'd,2,asyoulikeit,1599 half,2,asyoulikeit,1599 messenger,2,asyoulikeit,1599 nearer,2,asyoulikeit,1599 palm,2,asyoulikeit,1599 call'd,2,asyoulikeit,1599 shut,2,asyoulikeit,1599 deny,2,asyoulikeit,1599 four,2,asyoulikeit,1599 accord,2,asyoulikeit,1599 purgation,2,asyoulikeit,1599 kingdoms,2,asyoulikeit,1599 Quarrelsome,2,asyoulikeit,1599 neglect,2,asyoulikeit,1599 winter's,2,asyoulikeit,1599 spit,2,asyoulikeit,1599 money,2,asyoulikeit,1599 mock,2,asyoulikeit,1599 forsworn,2,asyoulikeit,1599 frown,2,asyoulikeit,1599 Circumstantial,2,asyoulikeit,1599 point,2,asyoulikeit,1599 revenge,2,asyoulikeit,1599 girl,2,asyoulikeit,1599 fresh,2,asyoulikeit,1599 term,2,asyoulikeit,1599 Hast,2,asyoulikeit,1599 bought,2,asyoulikeit,1599 Courteous,2,asyoulikeit,1599 touch,2,asyoulikeit,1599 cheque,2,asyoulikeit,1599 array,2,asyoulikeit,1599 enemies,2,asyoulikeit,1599 judgment,2,asyoulikeit,1599 fantasy,2,asyoulikeit,1599 trial,2,asyoulikeit,1599 ridiculous,2,asyoulikeit,1599 Quip,2,asyoulikeit,1599 enjoy,2,asyoulikeit,1599 feign,2,asyoulikeit,1599 misprised,2,asyoulikeit,1599 compact,2,asyoulikeit,1599 Should,2,asyoulikeit,1599 fat,2,asyoulikeit,1599 yesterday,2,asyoulikeit,1599 lacking,2,asyoulikeit,1599 justice,2,asyoulikeit,1599 education,2,asyoulikeit,1599 cottage,2,asyoulikeit,1599 garments,2,asyoulikeit,1599 report,2,asyoulikeit,1599 shrunk,2,asyoulikeit,1599 forehead,2,asyoulikeit,1599 rams,2,asyoulikeit,1599 shouldst,2,asyoulikeit,1599 antique,2,asyoulikeit,1599 browner,2,asyoulikeit,1599 lords,2,asyoulikeit,1599 Churlish,2,asyoulikeit,1599 Else,2,asyoulikeit,1599 nose,2,asyoulikeit,1599 marks,2,asyoulikeit,1599 penury,2,asyoulikeit,1599 rare,2,asyoulikeit,1599 proceed,2,asyoulikeit,1599 circle,2,asyoulikeit,1599 paler,2,asyoulikeit,1599 entertainment,2,asyoulikeit,1599 tender,2,asyoulikeit,1599 estate,2,asyoulikeit,1599 traitors,2,asyoulikeit,1599 candle,2,asyoulikeit,1599 hide,2,asyoulikeit,1599 travels,2,asyoulikeit,1599 sirrah,2,asyoulikeit,1599 bottom,2,asyoulikeit,1599 Love,2,asyoulikeit,1599 leathern,2,asyoulikeit,1599 chase,2,asyoulikeit,1599 adventure,2,asyoulikeit,1599 philosopher,2,asyoulikeit,1599 nun,2,asyoulikeit,1599 High,2,asyoulikeit,1599 perform,2,asyoulikeit,1599 misery,2,asyoulikeit,1599 unhappy,2,asyoulikeit,1599 awhile,2,asyoulikeit,1599 general,2,asyoulikeit,1599 effect,2,asyoulikeit,1599 mortal,2,asyoulikeit,1599 teeth,2,asyoulikeit,1599 mightst,2,asyoulikeit,1599 kisses,2,asyoulikeit,1599 merrily,2,asyoulikeit,1599 beggar,2,asyoulikeit,1599 chain,2,asyoulikeit,1599 'gainst,2,asyoulikeit,1599 villanous,2,asyoulikeit,1599 presently,2,asyoulikeit,1599 kissing,2,asyoulikeit,1599 monsieur,2,asyoulikeit,1599 known,2,asyoulikeit,1599 state,2,asyoulikeit,1599 blow,2,asyoulikeit,1599 search,2,asyoulikeit,1599 medlar,2,asyoulikeit,1599 ordinary,2,asyoulikeit,1599 graze,2,asyoulikeit,1599 apart,2,asyoulikeit,1599 smoke,2,asyoulikeit,1599 Made,2,asyoulikeit,1599 abandon'd,2,asyoulikeit,1599 mistress',2,asyoulikeit,1599 fire,2,asyoulikeit,1599 inland,2,asyoulikeit,1599 ducdame,2,asyoulikeit,1599 railing,2,asyoulikeit,1599 breed,2,asyoulikeit,1599 Reproof,2,asyoulikeit,1599 affairs,2,asyoulikeit,1599 maids,2,asyoulikeit,1599 opinion,2,asyoulikeit,1599 sting,2,asyoulikeit,1599 sale,2,asyoulikeit,1599 contemplation,2,asyoulikeit,1599 thine,2,asyoulikeit,1599 twelvemonth,2,asyoulikeit,1599 banishment,2,asyoulikeit,1599 fits,2,asyoulikeit,1599 throw,2,asyoulikeit,1599 goats,2,asyoulikeit,1599 Retort,2,asyoulikeit,1599 cure,2,asyoulikeit,1599 fetch,2,asyoulikeit,1599 third,2,asyoulikeit,1599 measures,2,asyoulikeit,1599 abandon,2,asyoulikeit,1599 moment,2,asyoulikeit,1599 oak,2,asyoulikeit,1599 clock,2,asyoulikeit,1599 count,2,asyoulikeit,1599 certainly,2,asyoulikeit,1599 heigh,2,asyoulikeit,1599 'The,2,asyoulikeit,1599 poet,2,asyoulikeit,1599 audience,2,asyoulikeit,1599 ambition,2,asyoulikeit,1599 assure,2,asyoulikeit,1599 danger,2,asyoulikeit,1599 forward,2,asyoulikeit,1599 ends,2,asyoulikeit,1599 apace,2,asyoulikeit,1599 villains,2,asyoulikeit,1599 women's,2,asyoulikeit,1599 bells,2,asyoulikeit,1599 belly,2,asyoulikeit,1599 drowned,2,asyoulikeit,1599 faces,2,asyoulikeit,1599 served,2,asyoulikeit,1599 taken,2,asyoulikeit,1599 graff,2,asyoulikeit,1599 rotten,2,asyoulikeit,1599 Juno's,2,asyoulikeit,1599 poison,2,asyoulikeit,1599 anger,2,asyoulikeit,1599 owe,2,asyoulikeit,1599 lineaments,2,asyoulikeit,1599 forester,2,asyoulikeit,1599 waste,2,asyoulikeit,1599 hundred,2,asyoulikeit,1599 wrong'd,2,asyoulikeit,1599 cover,2,asyoulikeit,1599 fail,2,asyoulikeit,1599 table,2,asyoulikeit,1599 cried,2,asyoulikeit,1599 durst,2,asyoulikeit,1599 ground,2,asyoulikeit,1599 snake,2,asyoulikeit,1599 wander,2,asyoulikeit,1599 grant,2,asyoulikeit,1599 safest,2,asyoulikeit,1599 answers,2,asyoulikeit,1599 woeful,2,asyoulikeit,1599 cattle,2,asyoulikeit,1599 threw,2,asyoulikeit,1599 wore,2,asyoulikeit,1599 ribs,2,asyoulikeit,1599 safety,2,asyoulikeit,1599 savage,2,asyoulikeit,1599 thereby,2,asyoulikeit,1599 bare,2,asyoulikeit,1599 divers,2,asyoulikeit,1599 wealth,2,asyoulikeit,1599 smooth,2,asyoulikeit,1599 perceive,2,asyoulikeit,1599 censure,2,asyoulikeit,1599 public,2,asyoulikeit,1599 cock,2,asyoulikeit,1599 friendship,2,asyoulikeit,1599 Very,2,asyoulikeit,1599 bounds,2,asyoulikeit,1599 large,2,asyoulikeit,1599 tale,2,asyoulikeit,1599 is't,2,asyoulikeit,1599 constant,2,asyoulikeit,1599 gentlemen,2,asyoulikeit,1599 Atalanta's,2,asyoulikeit,1599 sixth,2,asyoulikeit,1599 wild,2,asyoulikeit,1599 Modest,2,asyoulikeit,1599 Lay,2,asyoulikeit,1599 giddy,2,asyoulikeit,1599 virtues,2,asyoulikeit,1599 gives,2,asyoulikeit,1599 Reply,2,asyoulikeit,1599 low,2,asyoulikeit,1599 trots,2,asyoulikeit,1599 talking,2,asyoulikeit,1599 arrows,2,asyoulikeit,1599 courtesy,2,asyoulikeit,1599 ipse,2,asyoulikeit,1599 feigning,2,asyoulikeit,1599 liking,2,asyoulikeit,1599 cost,2,asyoulikeit,1599 render,2,asyoulikeit,1599 tidings,2,asyoulikeit,1599 Patience,2,asyoulikeit,1599 sound,2,asyoulikeit,1599 Pray,2,asyoulikeit,1599 cry,2,asyoulikeit,1599 heavenly,2,asyoulikeit,1599 He'll,2,asyoulikeit,1599 pour,2,asyoulikeit,1599 heels,2,asyoulikeit,1599 therein,2,asyoulikeit,1599 modern,2,asyoulikeit,1599 Cry,2,asyoulikeit,1599 return,2,asyoulikeit,1599 leg,2,asyoulikeit,1599 led,2,asyoulikeit,1599 pigeons,2,asyoulikeit,1599 send,2,asyoulikeit,1599 nurse,2,asyoulikeit,1599 erewhile,2,asyoulikeit,1599 protest,2,asyoulikeit,1599 sighed,2,asyoulikeit,1599 favouredly,2,asyoulikeit,1599 principal,2,asyoulikeit,1599 endured,2,asyoulikeit,1599 mad,2,asyoulikeit,1599 vicar,2,asyoulikeit,1599 conduct,2,asyoulikeit,1599 slut,2,asyoulikeit,1599 learn,2,asyoulikeit,1599 straight,2,asyoulikeit,1599 sadness,2,asyoulikeit,1599 treacherous,2,asyoulikeit,1599 According,2,asyoulikeit,1599 animals,2,asyoulikeit,1599 atomies,2,asyoulikeit,1599 henceforth,2,asyoulikeit,1599 physic,2,asyoulikeit,1599 pages,2,asyoulikeit,1599 Indeed,2,asyoulikeit,1599 sometimes,2,asyoulikeit,1599 politic,2,asyoulikeit,1599 late,2,asyoulikeit,1599 attendants,2,asyoulikeit,1599 beauty,2,asyoulikeit,1599 recompense,2,asyoulikeit,1599 breaking,2,asyoulikeit,1599 ragged,2,asyoulikeit,1599 going,2,asyoulikeit,1599 urged,2,asyoulikeit,1599 simply,2,asyoulikeit,1599 shade,2,asyoulikeit,1599 holly,2,asyoulikeit,1599 simple,2,asyoulikeit,1599 sentence,2,asyoulikeit,1599 witness,2,asyoulikeit,1599 careless,2,asyoulikeit,1599 dark,2,asyoulikeit,1599 follow,2,asyoulikeit,1599 boisterous,2,asyoulikeit,1599 whetstone,2,asyoulikeit,1599 land,2,asyoulikeit,1599 catch,2,asyoulikeit,1599 dispatch,2,asyoulikeit,1599 Bring,2,asyoulikeit,1599 coupled,2,asyoulikeit,1599 certain,2,asyoulikeit,1599 flout,2,asyoulikeit,1599 shake,2,asyoulikeit,1599 Take,2,asyoulikeit,1599 Left,2,asyoulikeit,1599 ambitious,2,asyoulikeit,1599 entreated,2,asyoulikeit,1599 cross,2,asyoulikeit,1599 private,2,asyoulikeit,1599 dwelling,2,asyoulikeit,1599 princess,2,asyoulikeit,1599 ten,2,asyoulikeit,1599 forbear,2,asyoulikeit,1599 neighbour,2,asyoulikeit,1599 petticoat,2,asyoulikeit,1599 breaths,2,asyoulikeit,1599 crown,2,asyoulikeit,1599 turn'd,2,asyoulikeit,1599 shepherd's,3,asyoulikeit,1599 parted,3,asyoulikeit,1599 times,3,asyoulikeit,1599 red,3,asyoulikeit,1599 heir,3,asyoulikeit,1599 forswear,3,asyoulikeit,1599 wicked,3,asyoulikeit,1599 ding,3,asyoulikeit,1599 female,3,asyoulikeit,1599 mend,3,asyoulikeit,1599 Beau,3,asyoulikeit,1599 chiding,3,asyoulikeit,1599 joy,3,asyoulikeit,1599 writes,3,asyoulikeit,1599 hers,3,asyoulikeit,1599 honourable,3,asyoulikeit,1599 looked,3,asyoulikeit,1599 understand,3,asyoulikeit,1599 cave,3,asyoulikeit,1599 trust,3,asyoulikeit,1599 lief,3,asyoulikeit,1599 Would,3,asyoulikeit,1599 become,3,asyoulikeit,1599 mercy,3,asyoulikeit,1599 strength,3,asyoulikeit,1599 lacks,3,asyoulikeit,1599 sat,3,asyoulikeit,1599 stream,3,asyoulikeit,1599 grows,3,asyoulikeit,1599 Jove,3,asyoulikeit,1599 Keep,3,asyoulikeit,1599 madness,3,asyoulikeit,1599 town,3,asyoulikeit,1599 breaks,3,asyoulikeit,1599 counterfeited,3,asyoulikeit,1599 making,3,asyoulikeit,1599 Forester,3,asyoulikeit,1599 benefits,3,asyoulikeit,1599 barks,3,asyoulikeit,1599 stands,3,asyoulikeit,1599 invention,3,asyoulikeit,1599 virtuous,3,asyoulikeit,1599 society,3,asyoulikeit,1599 touches,3,asyoulikeit,1599 'twas,3,asyoulikeit,1599 wedding,3,asyoulikeit,1599 wrestled,3,asyoulikeit,1599 fell,3,asyoulikeit,1599 love's,3,asyoulikeit,1599 kindly,3,asyoulikeit,1599 disgrace,3,asyoulikeit,1599 study,3,asyoulikeit,1599 beloved,3,asyoulikeit,1599 looks,3,asyoulikeit,1599 becomes,3,asyoulikeit,1599 poverty,3,asyoulikeit,1599 Wast,3,asyoulikeit,1599 brain,3,asyoulikeit,1599 courtier,3,asyoulikeit,1599 envious,3,asyoulikeit,1599 swoon,3,asyoulikeit,1599 sun,3,asyoulikeit,1599 feet,3,asyoulikeit,1599 grow,3,asyoulikeit,1599 swore,3,asyoulikeit,1599 weather,3,asyoulikeit,1599 false,3,asyoulikeit,1599 rude,3,asyoulikeit,1599 wishes,3,asyoulikeit,1599 seems,3,asyoulikeit,1599 One,3,asyoulikeit,1599 dies,3,asyoulikeit,1599 wish,3,asyoulikeit,1599 died,3,asyoulikeit,1599 merely,3,asyoulikeit,1599 warp,3,asyoulikeit,1599 meat,3,asyoulikeit,1599 ambles,3,asyoulikeit,1599 wast,3,asyoulikeit,1599 wits,3,asyoulikeit,1599 spoke,3,asyoulikeit,1599 deserves,3,asyoulikeit,1599 wherefore,3,asyoulikeit,1599 Faith,3,asyoulikeit,1599 side,3,asyoulikeit,1599 pancakes,3,asyoulikeit,1599 stir,3,asyoulikeit,1599 morning,3,asyoulikeit,1599 has,3,asyoulikeit,1599 What's,3,asyoulikeit,1599 religious,3,asyoulikeit,1599 music,3,asyoulikeit,1599 Celia,3,asyoulikeit,1599 scarce,3,asyoulikeit,1599 Be,3,asyoulikeit,1599 Le,3,asyoulikeit,1599 unless,3,asyoulikeit,1599 brings,3,asyoulikeit,1599 force,3,asyoulikeit,1599 Her,3,asyoulikeit,1599 Within,3,asyoulikeit,1599 beg,3,asyoulikeit,1599 enter,3,asyoulikeit,1599 deserved,3,asyoulikeit,1599 pass,3,asyoulikeit,1599 begot,3,asyoulikeit,1599 Touchstone,3,asyoulikeit,1599 bush,3,asyoulikeit,1599 shepherds,3,asyoulikeit,1599 wedlock,3,asyoulikeit,1599 Speak,3,asyoulikeit,1599 exile,3,asyoulikeit,1599 tedious,3,asyoulikeit,1599 swift,3,asyoulikeit,1599 Like,3,asyoulikeit,1599 epilogue,3,asyoulikeit,1599 beginning,3,asyoulikeit,1599 crowns,3,asyoulikeit,1599 deep,3,asyoulikeit,1599 affection,3,asyoulikeit,1599 promised,3,asyoulikeit,1599 tyrant,3,asyoulikeit,1599 de,3,asyoulikeit,1599 left,3,asyoulikeit,1599 sheep,3,asyoulikeit,1599 yes,3,asyoulikeit,1599 tongues,3,asyoulikeit,1599 napkin,3,asyoulikeit,1599 unworthy,3,asyoulikeit,1599 plays,3,asyoulikeit,1599 seeming,3,asyoulikeit,1599 manner,3,asyoulikeit,1599 forget,3,asyoulikeit,1599 growth,3,asyoulikeit,1599 thyself,3,asyoulikeit,1599 cured,3,asyoulikeit,1599 move,3,asyoulikeit,1599 commend,3,asyoulikeit,1599 Yonder,3,asyoulikeit,1599 Reads,3,asyoulikeit,1599 noble,3,asyoulikeit,1599 hadst,3,asyoulikeit,1599 endure,3,asyoulikeit,1599 Yea,3,asyoulikeit,1599 spent,3,asyoulikeit,1599 apparel,3,asyoulikeit,1599 removed,3,asyoulikeit,1599 greater,3,asyoulikeit,1599 pure,3,asyoulikeit,1599 men's,3,asyoulikeit,1599 speaks,3,asyoulikeit,1599 round,3,asyoulikeit,1599 liberty,3,asyoulikeit,1599 Full,3,asyoulikeit,1599 drawn,3,asyoulikeit,1599 school,3,asyoulikeit,1599 praise,3,asyoulikeit,1599 acquaintance,3,asyoulikeit,1599 open,3,asyoulikeit,1599 pair,3,asyoulikeit,1599 diest,3,asyoulikeit,1599 devise,3,asyoulikeit,1599 Hymen,3,asyoulikeit,1599 rough,3,asyoulikeit,1599 ye,3,asyoulikeit,1599 thanks,3,asyoulikeit,1599 boughs,3,asyoulikeit,1599 native,3,asyoulikeit,1599 wooing,3,asyoulikeit,1599 broke,3,asyoulikeit,1599 guess,3,asyoulikeit,1599 Between,3,asyoulikeit,1599 often,3,asyoulikeit,1599 occasion,3,asyoulikeit,1599 keeps,3,asyoulikeit,1599 nay,3,asyoulikeit,1599 empty,3,asyoulikeit,1599 beast,3,asyoulikeit,1599 wonder,3,asyoulikeit,1599 remedy,3,asyoulikeit,1599 ewes,3,asyoulikeit,1599 nut,3,asyoulikeit,1599 stays,3,asyoulikeit,1599 quickly,3,asyoulikeit,1599 sawest,3,asyoulikeit,1599 Doth,3,asyoulikeit,1599 child,3,asyoulikeit,1599 precious,3,asyoulikeit,1599 high,3,asyoulikeit,1599 doors,3,asyoulikeit,1599 fantastical,3,asyoulikeit,1599 wiser,3,asyoulikeit,1599 knave,3,asyoulikeit,1599 humorous,3,asyoulikeit,1599 blush,3,asyoulikeit,1599 reading,3,asyoulikeit,1599 there's,3,asyoulikeit,1599 mark,3,asyoulikeit,1599 magician,3,asyoulikeit,1599 labour,3,asyoulikeit,1599 free,3,asyoulikeit,1599 wed,3,asyoulikeit,1599 same,3,asyoulikeit,1599 taste,3,asyoulikeit,1599 wi',3,asyoulikeit,1599 style,3,asyoulikeit,1599 experience,3,asyoulikeit,1599 We'll,3,asyoulikeit,1599 stand,3,asyoulikeit,1599 sorrow,3,asyoulikeit,1599 happiness,3,asyoulikeit,1599 beseech,3,asyoulikeit,1599 Dear,3,asyoulikeit,1599 Say,3,asyoulikeit,1599 remains,3,asyoulikeit,1599 niece,3,asyoulikeit,1599 Rose,3,asyoulikeit,1599 Boys,3,asyoulikeit,1599 duty,3,asyoulikeit,1599 receive,3,asyoulikeit,1599 between,3,asyoulikeit,1599 oath,3,asyoulikeit,1599 wood,3,asyoulikeit,1599 Martext,3,asyoulikeit,1599 brother's,3,asyoulikeit,1599 serve,3,asyoulikeit,1599 face,3,asyoulikeit,1599 happy,3,asyoulikeit,1599 mightily,3,asyoulikeit,1599 shepherdess,3,asyoulikeit,1599 Heaven,3,asyoulikeit,1599 charged,3,asyoulikeit,1599 rail,3,asyoulikeit,1599 rain,3,asyoulikeit,1599 dull,3,asyoulikeit,1599 drops,3,asyoulikeit,1599 fain,3,asyoulikeit,1599 judge,3,asyoulikeit,1599 giving,3,asyoulikeit,1599 covered,3,asyoulikeit,1599 Till,3,asyoulikeit,1599 Proceed,3,asyoulikeit,1599 pleased,3,asyoulikeit,1599 work,3,asyoulikeit,1599 tune,3,asyoulikeit,1599 Heigh,3,asyoulikeit,1599 profit,3,asyoulikeit,1599 pleases,3,asyoulikeit,1599 Fare,3,asyoulikeit,1599 lined,3,asyoulikeit,1599 herself,3,asyoulikeit,1599 wives,3,asyoulikeit,1599 lived,3,asyoulikeit,1599 Shepherd,3,asyoulikeit,1599 observance,3,asyoulikeit,1599 fast,3,asyoulikeit,1599 Welcome,3,asyoulikeit,1599 tall,3,asyoulikeit,1599 coat,3,asyoulikeit,1599 lay,3,asyoulikeit,1599 poetry,3,asyoulikeit,1599 pardon,3,asyoulikeit,1599 swears,3,asyoulikeit,1599 mustard,3,asyoulikeit,1599 counterfeit,3,asyoulikeit,1599 argument,3,asyoulikeit,1599 lives,3,asyoulikeit,1599 writing,3,asyoulikeit,1599 condition,3,asyoulikeit,1599 cote,3,asyoulikeit,1599 traitor,3,asyoulikeit,1599 'twill,3,asyoulikeit,1599 entreat,3,asyoulikeit,1599 Neither,3,asyoulikeit,1599 grieves,3,asyoulikeit,1599 goes,3,asyoulikeit,1599 match,3,asyoulikeit,1599 madam,3,asyoulikeit,1599 purpose,3,asyoulikeit,1599 Mistress,3,asyoulikeit,1599 brow,3,asyoulikeit,1599 begins,3,asyoulikeit,1599 meeting,3,asyoulikeit,1599 evils,3,asyoulikeit,1599 thoughts,3,asyoulikeit,1599 heartily,3,asyoulikeit,1599 thither,3,asyoulikeit,1599 sleeping,3,asyoulikeit,1599 besides,3,asyoulikeit,1599 hurt,3,asyoulikeit,1599 books,3,asyoulikeit,1599 dog,3,asyoulikeit,1599 dry,3,asyoulikeit,1599 bred,3,asyoulikeit,1599 lame,3,asyoulikeit,1599 Fair,3,asyoulikeit,1599 spirit,3,asyoulikeit,1599 power,3,asyoulikeit,1599 oaths,3,asyoulikeit,1599 degrees,3,asyoulikeit,1599 lusty,4,asyoulikeit,1599 join,4,asyoulikeit,1599 fancy,4,asyoulikeit,1599 possible,4,asyoulikeit,1599 woman's,4,asyoulikeit,1599 help,4,asyoulikeit,1599 Wilt,4,asyoulikeit,1599 villain,4,asyoulikeit,1599 younger,4,asyoulikeit,1599 mere,4,asyoulikeit,1599 while,4,asyoulikeit,1599 brook,4,asyoulikeit,1599 offer,4,asyoulikeit,1599 drink,4,asyoulikeit,1599 calls,4,asyoulikeit,1599 run,4,asyoulikeit,1599 damned,4,asyoulikeit,1599 Upon,4,asyoulikeit,1599 care,4,asyoulikeit,1599 graces,4,asyoulikeit,1599 After,4,asyoulikeit,1599 highness,4,asyoulikeit,1599 complexion,4,asyoulikeit,1599 black,4,asyoulikeit,1599 Forest,4,asyoulikeit,1599 saying,4,asyoulikeit,1599 worth,4,asyoulikeit,1599 church,4,asyoulikeit,1599 Such,4,asyoulikeit,1599 Farewell,4,asyoulikeit,1599 countenance,4,asyoulikeit,1599 William,4,asyoulikeit,1599 common,4,asyoulikeit,1599 instance,4,asyoulikeit,1599 fruit,4,asyoulikeit,1599 wine,4,asyoulikeit,1599 hence,4,asyoulikeit,1599 voice,4,asyoulikeit,1599 DE,4,asyoulikeit,1599 Whiles,4,asyoulikeit,1599 gentleness,4,asyoulikeit,1599 whose,4,asyoulikeit,1599 learned,4,asyoulikeit,1599 suddenly,4,asyoulikeit,1599 just,4,asyoulikeit,1599 buy,4,asyoulikeit,1599 travel,4,asyoulikeit,1599 begin,4,asyoulikeit,1599 Rowland's,4,asyoulikeit,1599 Nature's,4,asyoulikeit,1599 confess,4,asyoulikeit,1599 long,4,asyoulikeit,1599 Besides,4,asyoulikeit,1599 that's,4,asyoulikeit,1599 done,4,asyoulikeit,1599 wisely,4,asyoulikeit,1599 wherein,4,asyoulikeit,1599 less,4,asyoulikeit,1599 twenty,4,asyoulikeit,1599 shallow,4,asyoulikeit,1599 Call,4,asyoulikeit,1599 pale,4,asyoulikeit,1599 excuse,4,asyoulikeit,1599 city,4,asyoulikeit,1599 Under,4,asyoulikeit,1599 arm,4,asyoulikeit,1599 brothers,4,asyoulikeit,1599 present,4,asyoulikeit,1599 hangs,4,asyoulikeit,1599 nonino,4,asyoulikeit,1599 proper,4,asyoulikeit,1599 faithful,4,asyoulikeit,1599 beards,4,asyoulikeit,1599 Hath,4,asyoulikeit,1599 having,4,asyoulikeit,1599 Into,4,asyoulikeit,1599 lean,4,asyoulikeit,1599 room,4,asyoulikeit,1599 maid,4,asyoulikeit,1599 rank,4,asyoulikeit,1599 note,4,asyoulikeit,1599 bears,4,asyoulikeit,1599 year,4,asyoulikeit,1599 ere,4,asyoulikeit,1599 device,4,asyoulikeit,1599 lioness,4,asyoulikeit,1599 foolish,4,asyoulikeit,1599 bloody,4,asyoulikeit,1599 naught,4,asyoulikeit,1599 sayest,4,asyoulikeit,1599 desires,4,asyoulikeit,1599 sans,4,asyoulikeit,1599 says,4,asyoulikeit,1599 youngest,4,asyoulikeit,1599 earnest,4,asyoulikeit,1599 themselves,4,asyoulikeit,1599 pride,4,asyoulikeit,1599 what's,4,asyoulikeit,1599 weeping,4,asyoulikeit,1599 knight,4,asyoulikeit,1599 went,4,asyoulikeit,1599 gifts,4,asyoulikeit,1599 glad,4,asyoulikeit,1599 snail,4,asyoulikeit,1599 doublet,4,asyoulikeit,1599 'it,4,asyoulikeit,1599 wert,4,asyoulikeit,1599 fly,4,asyoulikeit,1599 palace,4,asyoulikeit,1599 minute,4,asyoulikeit,1599 rich,4,asyoulikeit,1599 ne'er,4,asyoulikeit,1599 wide,4,asyoulikeit,1599 worship,4,asyoulikeit,1599 flock,4,asyoulikeit,1599 gallant,4,asyoulikeit,1599 BOYS,4,asyoulikeit,1599 hold,4,asyoulikeit,1599 holy,4,asyoulikeit,1599 green,4,asyoulikeit,1599 contents,4,asyoulikeit,1599 adieu,4,asyoulikeit,1599 sweat,4,asyoulikeit,1599 use,4,asyoulikeit,1599 suits,4,asyoulikeit,1599 seem,4,asyoulikeit,1599 courtier's,4,asyoulikeit,1599 person,4,asyoulikeit,1599 avoid,4,asyoulikeit,1599 Know,4,asyoulikeit,1599 blame,4,asyoulikeit,1599 hours,4,asyoulikeit,1599 wretched,4,asyoulikeit,1599 write,4,asyoulikeit,1599 mar,4,asyoulikeit,1599 spirits,4,asyoulikeit,1599 pasture,4,asyoulikeit,1599 wound,4,asyoulikeit,1599 liege,4,asyoulikeit,1599 last,4,asyoulikeit,1599 attend,4,asyoulikeit,1599 burden,4,asyoulikeit,1599 shame,4,asyoulikeit,1599 Direct,4,asyoulikeit,1599 wouldst,4,asyoulikeit,1599 lady,4,asyoulikeit,1599 horns,5,asyoulikeit,1599 c,5,asyoulikeit,1599 horse,5,asyoulikeit,1599 laugh,5,asyoulikeit,1599 cast,5,asyoulikeit,1599 charge,5,asyoulikeit,1599 seven,5,asyoulikeit,1599 sad,5,asyoulikeit,1599 Give,5,asyoulikeit,1599 broken,5,asyoulikeit,1599 cheek,5,asyoulikeit,1599 sin,5,asyoulikeit,1599 warrant,5,asyoulikeit,1599 set,5,asyoulikeit,1599 Aside,5,asyoulikeit,1599 suit,5,asyoulikeit,1599 counsel,5,asyoulikeit,1599 second,5,asyoulikeit,1599 taught,5,asyoulikeit,1599 worse,5,asyoulikeit,1599 ways,5,asyoulikeit,1599 dearly,5,asyoulikeit,1599 sword,5,asyoulikeit,1599 wind,5,asyoulikeit,1599 thrown,5,asyoulikeit,1599 mean,5,asyoulikeit,1599 bitter,5,asyoulikeit,1599 seventh,5,asyoulikeit,1599 measure,5,asyoulikeit,1599 quarrel,5,asyoulikeit,1599 canst,5,asyoulikeit,1599 bed,5,asyoulikeit,1599 night,5,asyoulikeit,1599 prove,5,asyoulikeit,1599 gold,5,asyoulikeit,1599 gone,5,asyoulikeit,1599 dost,5,asyoulikeit,1599 people,5,asyoulikeit,1599 deer,5,asyoulikeit,1599 excellent,5,asyoulikeit,1599 dead,5,asyoulikeit,1599 priest,5,asyoulikeit,1599 Master,5,asyoulikeit,1599 wonderful,5,asyoulikeit,1599 Most,5,asyoulikeit,1599 verse,5,asyoulikeit,1599 foot,5,asyoulikeit,1599 Art,5,asyoulikeit,1599 change,5,asyoulikeit,1599 Have,5,asyoulikeit,1599 through,5,asyoulikeit,1599 Peace,5,asyoulikeit,1599 From,5,asyoulikeit,1599 Therefore,5,asyoulikeit,1599 question,5,asyoulikeit,1599 Some,5,asyoulikeit,1599 didst,5,asyoulikeit,1599 knows,5,asyoulikeit,1599 because,5,asyoulikeit,1599 chide,5,asyoulikeit,1599 over,5,asyoulikeit,1599 once,5,asyoulikeit,1599 o'clock,5,asyoulikeit,1599 Were,5,asyoulikeit,1599 get,5,asyoulikeit,1599 near,5,asyoulikeit,1599 neck,5,asyoulikeit,1599 oft,5,asyoulikeit,1599 loving,5,asyoulikeit,1599 ripe,5,asyoulikeit,1599 believe,5,asyoulikeit,1599 SIR,5,asyoulikeit,1599 hair,5,asyoulikeit,1599 consent,5,asyoulikeit,1599 humour,5,asyoulikeit,1599 comfort,5,asyoulikeit,1599 fare,5,asyoulikeit,1599 winter,5,asyoulikeit,1599 wrestle,5,asyoulikeit,1599 back,5,asyoulikeit,1599 seen,5,asyoulikeit,1599 either,5,asyoulikeit,1599 whom,5,asyoulikeit,1599 MARTEXT,5,asyoulikeit,1599 sleep,5,asyoulikeit,1599 honesty,5,asyoulikeit,1599 lips,5,asyoulikeit,1599 virtue,5,asyoulikeit,1599 HYMEN,5,asyoulikeit,1599 spring,5,asyoulikeit,1599 DENNIS,5,asyoulikeit,1599 laid,5,asyoulikeit,1599 sudden,5,asyoulikeit,1599 enemy,5,asyoulikeit,1599 brave,6,asyoulikeit,1599 told,6,asyoulikeit,1599 V,6,asyoulikeit,1599 days,6,asyoulikeit,1599 weary,6,asyoulikeit,1599 rather,6,asyoulikeit,1599 truth,6,asyoulikeit,1599 Nor,6,asyoulikeit,1599 further,6,asyoulikeit,1599 sit,6,asyoulikeit,1599 body,6,asyoulikeit,1599 enough,6,asyoulikeit,1599 scorn,6,asyoulikeit,1599 Rowland,6,asyoulikeit,1599 born,6,asyoulikeit,1599 fault,6,asyoulikeit,1599 fear,6,asyoulikeit,1599 Though,6,asyoulikeit,1599 parts,6,asyoulikeit,1599 he's,6,asyoulikeit,1599 knowledge,6,asyoulikeit,1599 An,6,asyoulikeit,1599 neither,6,asyoulikeit,1599 patience,6,asyoulikeit,1599 Nature,6,asyoulikeit,1599 lands,6,asyoulikeit,1599 IV,6,asyoulikeit,1599 best,6,asyoulikeit,1599 weep,6,asyoulikeit,1599 behind,6,asyoulikeit,1599 wear,6,asyoulikeit,1599 longer,6,asyoulikeit,1599 i',6,asyoulikeit,1599 SONG,6,asyoulikeit,1599 Second,6,asyoulikeit,1599 loves,6,asyoulikeit,1599 lost,6,asyoulikeit,1599 knew,6,asyoulikeit,1599 natural,6,asyoulikeit,1599 ask,6,asyoulikeit,1599 hate,6,asyoulikeit,1599 duke's,6,asyoulikeit,1599 almost,6,asyoulikeit,1599 things,6,asyoulikeit,1599 She,6,asyoulikeit,1599 you'll,6,asyoulikeit,1599 Look,6,asyoulikeit,1599 quoth,6,asyoulikeit,1599 Frederick,6,asyoulikeit,1599 off,6,asyoulikeit,1599 banish'd,6,asyoulikeit,1599 coming,6,asyoulikeit,1599 news,6,asyoulikeit,1599 disposition,6,asyoulikeit,1599 clown,6,asyoulikeit,1599 desert,6,asyoulikeit,1599 letter,6,asyoulikeit,1599 hose,6,asyoulikeit,1599 ta'en,6,asyoulikeit,1599 whither,6,asyoulikeit,1599 talk,6,asyoulikeit,1599 given,6,asyoulikeit,1599 wilt,6,asyoulikeit,1599 home,6,asyoulikeit,1599 alone,6,asyoulikeit,1599 troth,6,asyoulikeit,1599 lovers,6,asyoulikeit,1599 gods,6,asyoulikeit,1599 sent,6,asyoulikeit,1599 fashion,6,asyoulikeit,1599 marriage,6,asyoulikeit,1599 nature,6,asyoulikeit,1599 try,6,asyoulikeit,1599 trees,6,asyoulikeit,1599 fortunes,6,asyoulikeit,1599 Adam,7,asyoulikeit,1599 Alas,7,asyoulikeit,1599 Page,7,asyoulikeit,1599 song,7,asyoulikeit,1599 years,7,asyoulikeit,1599 something,7,asyoulikeit,1599 death,7,asyoulikeit,1599 wrestler,7,asyoulikeit,1599 within,7,asyoulikeit,1599 Silvius,7,asyoulikeit,1599 turn,7,asyoulikeit,1599 about,7,asyoulikeit,1599 rest,7,asyoulikeit,1599 friend,7,asyoulikeit,1599 bid,7,asyoulikeit,1599 sport,7,asyoulikeit,1599 blood,7,asyoulikeit,1599 We,7,asyoulikeit,1599 sooner,7,asyoulikeit,1599 ill,7,asyoulikeit,1599 welcome,7,asyoulikeit,1599 motley,7,asyoulikeit,1599 yours,7,asyoulikeit,1599 mind,7,asyoulikeit,1599 break,7,asyoulikeit,1599 only,7,asyoulikeit,1599 Thus,7,asyoulikeit,1599 called,7,asyoulikeit,1599 Shall,7,asyoulikeit,1599 Even,7,asyoulikeit,1599 Arden,7,asyoulikeit,1599 passion,7,asyoulikeit,1599 horn,7,asyoulikeit,1599 kiss,7,asyoulikeit,1599 thousand,7,asyoulikeit,1599 unto,7,asyoulikeit,1599 strong,7,asyoulikeit,1599 wife,7,asyoulikeit,1599 swear,7,asyoulikeit,1599 Truly,7,asyoulikeit,1599 Aliena,7,asyoulikeit,1599 Marry,7,asyoulikeit,1599 Where,7,asyoulikeit,1599 content,7,asyoulikeit,1599 answer,8,asyoulikeit,1599 thought,8,asyoulikeit,1599 tears,8,asyoulikeit,1599 wrestling,8,asyoulikeit,1599 words,8,asyoulikeit,1599 Not,8,asyoulikeit,1599 merry,8,asyoulikeit,1599 fellow,8,asyoulikeit,1599 both,8,asyoulikeit,1599 feed,8,asyoulikeit,1599 service,8,asyoulikeit,1599 heaven,8,asyoulikeit,1599 colour,8,asyoulikeit,1599 manners,8,asyoulikeit,1599 melancholy,8,asyoulikeit,1599 stay,8,asyoulikeit,1599 since,8,asyoulikeit,1599 tongue,8,asyoulikeit,1599 Fortune,8,asyoulikeit,1599 dear,8,asyoulikeit,1599 banished,8,asyoulikeit,1599 Yes,8,asyoulikeit,1599 keep,8,asyoulikeit,1599 Jaques,8,asyoulikeit,1599 verses,8,asyoulikeit,1599 foul,8,asyoulikeit,1599 forth,8,asyoulikeit,1599 indeed,8,asyoulikeit,1599 living,8,asyoulikeit,1599 sake,8,asyoulikeit,1599 still,8,asyoulikeit,1599 Can,8,asyoulikeit,1599 three,8,asyoulikeit,1599 Sweet,8,asyoulikeit,1599 folly,8,asyoulikeit,1599 gentleman,8,asyoulikeit,1599 honest,8,asyoulikeit,1599 thus,8,asyoulikeit,1599 Oliver,8,asyoulikeit,1599 ladies,8,asyoulikeit,1599 respect,8,asyoulikeit,1599 lack,8,asyoulikeit,1599 himself,8,asyoulikeit,1599 meet,9,asyoulikeit,1599 country,9,asyoulikeit,1599 truly,9,asyoulikeit,1599 under,9,asyoulikeit,1599 friends,9,asyoulikeit,1599 yourself,9,asyoulikeit,1599 saw,9,asyoulikeit,1599 fools,9,asyoulikeit,1599 came,9,asyoulikeit,1599 promise,9,asyoulikeit,1599 boy,9,asyoulikeit,1599 hey,9,asyoulikeit,1599 itself,9,asyoulikeit,1599 play,9,asyoulikeit,1599 Ganymede,9,asyoulikeit,1599 age,9,asyoulikeit,1599 Yet,9,asyoulikeit,1599 those,9,asyoulikeit,1599 More,9,asyoulikeit,1599 new,9,asyoulikeit,1599 Lords,9,asyoulikeit,1599 beard,9,asyoulikeit,1599 mouth,9,asyoulikeit,1599 All,9,asyoulikeit,1599 father's,9,asyoulikeit,1599 way,9,asyoulikeit,1599 Monsieur,9,asyoulikeit,1599 fortune,9,asyoulikeit,1599 uncle,9,asyoulikeit,1599 hope,9,asyoulikeit,1599 along,9,asyoulikeit,1599 Lie,9,asyoulikeit,1599 eat,9,asyoulikeit,1599 remember,9,asyoulikeit,1599 strange,9,asyoulikeit,1599 Thy,9,asyoulikeit,1599 shalt,9,asyoulikeit,1599 kill,9,asyoulikeit,1599 head,10,asyoulikeit,1599 sure,10,asyoulikeit,1599 cause,10,asyoulikeit,1599 else,10,asyoulikeit,1599 Do,10,asyoulikeit,1599 III,10,asyoulikeit,1599 proud,10,asyoulikeit,1599 ho,10,asyoulikeit,1599 grace,10,asyoulikeit,1599 hast,10,asyoulikeit,1599 Than,10,asyoulikeit,1599 end,10,asyoulikeit,1599 heard,10,asyoulikeit,1599 found,10,asyoulikeit,1599 reason,10,asyoulikeit,1599 seek,10,asyoulikeit,1599 coz,10,asyoulikeit,1599 lie,10,asyoulikeit,1599 sister,10,asyoulikeit,1599 Did,10,asyoulikeit,1599 kind,10,asyoulikeit,1599 women,10,asyoulikeit,1599 mistress,11,asyoulikeit,1599 Now,11,asyoulikeit,1599 after,11,asyoulikeit,1599 bring,11,asyoulikeit,1599 wise,11,asyoulikeit,1599 desire,11,asyoulikeit,1599 His,11,asyoulikeit,1599 means,11,asyoulikeit,1599 Charles,11,asyoulikeit,1599 put,11,asyoulikeit,1599 sing,11,asyoulikeit,1599 hands,11,asyoulikeit,1599 cousin,11,asyoulikeit,1599 hard,11,asyoulikeit,1599 food,11,asyoulikeit,1599 right,11,asyoulikeit,1599 none,11,asyoulikeit,1599 myself,11,asyoulikeit,1599 They,11,asyoulikeit,1599 woo,11,asyoulikeit,1599 Time,11,asyoulikeit,1599 cut,11,asyoulikeit,1599 tree,11,asyoulikeit,1599 is,267,asyoulikeit,1599 Will,12,asyoulikeit,1599 nothing,12,asyoulikeit,1599 honour,12,asyoulikeit,1599 name,12,asyoulikeit,1599 Go,12,asyoulikeit,1599 II,12,asyoulikeit,1599 down,12,asyoulikeit,1599 show,12,asyoulikeit,1599 eye,12,asyoulikeit,1599 company,12,asyoulikeit,1599 even,12,asyoulikeit,1599 married,12,asyoulikeit,1599 great,12,asyoulikeit,1599 makes,12,asyoulikeit,1599 without,12,asyoulikeit,1599 pity,13,asyoulikeit,1599 sight,13,asyoulikeit,1599 withal,13,asyoulikeit,1599 WILLIAM,13,asyoulikeit,1599 son,13,asyoulikeit,1599 pretty,13,asyoulikeit,1599 said,13,asyoulikeit,1599 lover,13,asyoulikeit,1599 loved,13,asyoulikeit,1599 up,13,asyoulikeit,1599 First,13,asyoulikeit,1599 though,13,asyoulikeit,1599 Are,13,asyoulikeit,1599 This,13,asyoulikeit,1599 fall,13,asyoulikeit,1599 sweet,13,asyoulikeit,1599 CHARLES,13,asyoulikeit,1599 leave,13,asyoulikeit,1599 When,13,asyoulikeit,1599 hear,14,asyoulikeit,1599 another,14,asyoulikeit,1599 full,14,asyoulikeit,1599 against,14,asyoulikeit,1599 Here,14,asyoulikeit,1599 Which,14,asyoulikeit,1599 lord,14,asyoulikeit,1599 where,14,asyoulikeit,1599 'Tis,14,asyoulikeit,1599 please,14,asyoulikeit,1599 find,14,asyoulikeit,1599 man's,14,asyoulikeit,1599 Let,14,asyoulikeit,1599 master,14,asyoulikeit,1599 house,14,asyoulikeit,1599 hither,14,asyoulikeit,1599 first,14,asyoulikeit,1599 met,14,asyoulikeit,1599 men,14,asyoulikeit,1599 might,14,asyoulikeit,1599 die,14,asyoulikeit,1599 Nay,15,asyoulikeit,1599 There,15,asyoulikeit,1599 matter,15,asyoulikeit,1599 faith,15,asyoulikeit,1599 gentle,15,asyoulikeit,1599 Audrey,15,asyoulikeit,1599 marry,15,asyoulikeit,1599 hour,15,asyoulikeit,1599 till,15,asyoulikeit,1599 prithee,15,asyoulikeit,1599 together,15,asyoulikeit,1599 live,15,asyoulikeit,1599 ADAM,16,asyoulikeit,1599 Good,16,asyoulikeit,1599 place,16,asyoulikeit,1599 hand,16,asyoulikeit,1599 How,16,asyoulikeit,1599 AMIENS,16,asyoulikeit,1599 Your,16,asyoulikeit,1599 Lord,16,asyoulikeit,1599 word,16,asyoulikeit,1599 thank,16,asyoulikeit,1599 being,16,asyoulikeit,1599 Exit,16,asyoulikeit,1599 other,16,asyoulikeit,1599 call,17,asyoulikeit,1599 away,17,asyoulikeit,1599 Ay,17,asyoulikeit,1599 My,17,asyoulikeit,1599 Or,17,asyoulikeit,1599 So,17,asyoulikeit,1599 part,17,asyoulikeit,1599 again,17,asyoulikeit,1599 why,17,asyoulikeit,1599 Phebe,17,asyoulikeit,1599 In,18,asyoulikeit,1599 Is,18,asyoulikeit,1599 'tis,18,asyoulikeit,1599 AUDREY,18,asyoulikeit,1599 nor,18,asyoulikeit,1599 court,18,asyoulikeit,1599 morrow,18,asyoulikeit,1599 day,18,asyoulikeit,1599 Who,19,asyoulikeit,1599 BEAU,19,asyoulikeit,1599 With,19,asyoulikeit,1599 For,19,asyoulikeit,1599 Of,19,asyoulikeit,1599 LE,19,asyoulikeit,1599 Thou,19,asyoulikeit,1599 before,19,asyoulikeit,1599 eyes,19,asyoulikeit,1599 two,19,asyoulikeit,1599 daughter,20,asyoulikeit,1599 therefore,20,asyoulikeit,1599 It,20,asyoulikeit,1599 look,20,asyoulikeit,1599 Then,20,asyoulikeit,1599 thing,20,asyoulikeit,1599 wit,20,asyoulikeit,1599 Well,20,asyoulikeit,1599 poor,20,asyoulikeit,1599 By,21,asyoulikeit,1599 God,21,asyoulikeit,1599 Sir,21,asyoulikeit,1599 many,21,asyoulikeit,1599 who,21,asyoulikeit,1599 doth,22,asyoulikeit,1599 been,22,asyoulikeit,1599 little,22,asyoulikeit,1599 made,22,asyoulikeit,1599 ACT,22,asyoulikeit,1599 fair,22,asyoulikeit,1599 shepherd,22,asyoulikeit,1599 true,22,asyoulikeit,1599 every,23,asyoulikeit,1599 Come,23,asyoulikeit,1599 never,23,asyoulikeit,1599 bear,23,asyoulikeit,1599 art,23,asyoulikeit,1599 could,23,asyoulikeit,1599 SCENE,23,asyoulikeit,1599 YOU,24,asyoulikeit,1599 pray,24,asyoulikeit,1599 life,24,asyoulikeit,1599 AS,24,asyoulikeit,1599 IT,24,asyoulikeit,1599 ever,24,asyoulikeit,1599 LIKE,24,asyoulikeit,1599 let,24,asyoulikeit,1599 cannot,24,asyoulikeit,1599 He,25,asyoulikeit,1599 speak,25,asyoulikeit,1599 into,25,asyoulikeit,1599 comes,25,asyoulikeit,1599 think,25,asyoulikeit,1599 woman,25,asyoulikeit,1599 that,281,asyoulikeit,1599 some,26,asyoulikeit,1599 Orlando,26,asyoulikeit,1599 As,26,asyoulikeit,1599 FREDERICK,27,asyoulikeit,1599 Exeunt,27,asyoulikeit,1599 young,27,asyoulikeit,1599 world,28,asyoulikeit,1599 tell,28,asyoulikeit,1599 youth,28,asyoulikeit,1599 too,28,asyoulikeit,1599 give,29,asyoulikeit,1599 PHEBE,29,asyoulikeit,1599 own,29,asyoulikeit,1599 and,541,asyoulikeit,1599 better,30,asyoulikeit,1599 can,30,asyoulikeit,1599 these,31,asyoulikeit,1599 No,31,asyoulikeit,1599 their,31,asyoulikeit,1599 any,31,asyoulikeit,1599 most,31,asyoulikeit,1599 duke,31,asyoulikeit,1599 time,31,asyoulikeit,1599 such,32,asyoulikeit,1599 CORIN,32,asyoulikeit,1599 make,32,asyoulikeit,1599 take,32,asyoulikeit,1599 ',33,asyoulikeit,1599 much,33,asyoulikeit,1599 should,33,asyoulikeit,1599 very,33,asyoulikeit,1599 mine,33,asyoulikeit,1599 heart,33,asyoulikeit,1599 our,33,asyoulikeit,1599 may,33,asyoulikeit,1599 A,34,asyoulikeit,1599 old,34,asyoulikeit,1599 What,34,asyoulikeit,1599 us,35,asyoulikeit,1599 SILVIUS,35,asyoulikeit,1599 must,36,asyoulikeit,1599 them,36,asyoulikeit,1599 fool,36,asyoulikeit,1599 Why,37,asyoulikeit,1599 an,37,asyoulikeit,1599 know,37,asyoulikeit,1599 forest,37,asyoulikeit,1599 father,37,asyoulikeit,1599 see,38,asyoulikeit,1599 SENIOR,38,asyoulikeit,1599 brother,39,asyoulikeit,1599 from,39,asyoulikeit,1599 say,40,asyoulikeit,1599 upon,41,asyoulikeit,1599 or,41,asyoulikeit,1599 were,41,asyoulikeit,1599 had,42,asyoulikeit,1599 there,42,asyoulikeit,1599 go,42,asyoulikeit,1599 yet,42,asyoulikeit,1599 how,42,asyoulikeit,1599 one,43,asyoulikeit,1599 when,43,asyoulikeit,1599 did,43,asyoulikeit,1599 out,44,asyoulikeit,1599 come,44,asyoulikeit,1599 in,300,asyoulikeit,1599 which,45,asyoulikeit,1599 You,45,asyoulikeit,1599 then,46,asyoulikeit,1599 here,48,asyoulikeit,1599 hath,48,asyoulikeit,1599 now,48,asyoulikeit,1599 I'll,48,asyoulikeit,1599 OLIVER,49,asyoulikeit,1599 O,50,asyoulikeit,1599 sir,50,asyoulikeit,1599 she,51,asyoulikeit,1599 Enter,51,asyoulikeit,1599 If,53,asyoulikeit,1599 To,53,asyoulikeit,1599 they,54,asyoulikeit,1599 at,55,asyoulikeit,1599 like,57,asyoulikeit,1599 well,57,asyoulikeit,1599 Rosalind,57,asyoulikeit,1599 But,61,asyoulikeit,1599 shall,61,asyoulikeit,1599 than,62,asyoulikeit,1599 That,62,asyoulikeit,1599 The,63,asyoulikeit,1599 what,64,asyoulikeit,1599 on,65,asyoulikeit,1599 we,65,asyoulikeit,1599 DUKE,65,asyoulikeit,1599 by,66,asyoulikeit,1599 thy,66,asyoulikeit,1599 would,69,asyoulikeit,1599 more,72,asyoulikeit,1599 JAQUES,72,asyoulikeit,1599 am,73,asyoulikeit,1599 was,81,asyoulikeit,1599 man,81,asyoulikeit,1599 all,83,asyoulikeit,1599 if,84,asyoulikeit,1599 TOUCHSTONE,85,asyoulikeit,1599 thee,90,asyoulikeit,1599 good,98,asyoulikeit,1599 are,98,asyoulikeit,1599 her,104,asyoulikeit,1599 no,109,asyoulikeit,1599 do,112,asyoulikeit,1599 love,114,asyoulikeit,1599 so,117,asyoulikeit,1599 the,633,asyoulikeit,1599 thou,122,asyoulikeit,1599 CELIA,123,asyoulikeit,1599 but,134,asyoulikeit,1599 as,136,asyoulikeit,1599 ORLANDO,138,asyoulikeit,1599 this,148,asyoulikeit,1599 And,151,asyoulikeit,1599 will,151,asyoulikeit,1599 I,665,asyoulikeit,1599 him,154,asyoulikeit,1599 of,411,asyoulikeit,1599 his,156,asyoulikeit,1599 have,163,asyoulikeit,1599 a,426,asyoulikeit,1599 to,428,asyoulikeit,1599 it,177,asyoulikeit,1599 your,178,asyoulikeit,1599 with,180,asyoulikeit,1599 be,185,asyoulikeit,1599 he,190,asyoulikeit,1599 for,191,asyoulikeit,1599 ROSALIND,217,asyoulikeit,1599 you,474,asyoulikeit,1599 me,231,asyoulikeit,1599 my,240,asyoulikeit,1599 not,244,asyoulikeit,1599 stupefied,1,winterstale,1610 profession,1,winterstale,1610 treason,1,winterstale,1610 lamentably,1,winterstale,1610 silken,1,winterstale,1610 discharged,1,winterstale,1610 Tremble,1,winterstale,1610 event,1,winterstale,1610 ribbon,1,winterstale,1610 Lawful,1,winterstale,1610 Boldly,1,winterstale,1610 heel,1,winterstale,1610 parchment,1,winterstale,1610 Time's,1,winterstale,1610 sleeve,1,winterstale,1610 regard,1,winterstale,1610 galled,1,winterstale,1610 villany,1,winterstale,1610 troubles,1,winterstale,1610 lusts,1,winterstale,1610 clouded,1,winterstale,1610 sped,1,winterstale,1610 pennyworth,1,winterstale,1610 smiled,1,winterstale,1610 grey,1,winterstale,1610 happier,1,winterstale,1610 Hereditary,1,winterstale,1610 stomachers,1,winterstale,1610 fruits,1,winterstale,1610 lawyers,1,winterstale,1610 nothings,1,winterstale,1610 join,1,winterstale,1610 taking,1,winterstale,1610 bitterest,1,winterstale,1610 proselytes,1,winterstale,1610 Laying,1,winterstale,1610 sizes,1,winterstale,1610 dames,1,winterstale,1610 dined,1,winterstale,1610 afar,1,winterstale,1610 darest,1,winterstale,1610 marrying,1,winterstale,1610 Blue,1,winterstale,1610 Loved,1,winterstale,1610 interchange,1,winterstale,1610 Freed,1,winterstale,1610 description,1,winterstale,1610 jar,1,winterstale,1610 reputation,1,winterstale,1610 guilt,1,winterstale,1610 for's,1,winterstale,1610 belongs,1,winterstale,1610 'leven,1,winterstale,1610 jay,1,winterstale,1610 Comfort,1,winterstale,1610 tremble,1,winterstale,1610 Romano,1,winterstale,1610 Heat,1,winterstale,1610 adders',1,winterstale,1610 brass,1,winterstale,1610 treasury,1,winterstale,1610 writ,1,winterstale,1610 raw,1,winterstale,1610 horse,1,winterstale,1610 following,1,winterstale,1610 treasure,1,winterstale,1610 tawdry,1,winterstale,1610 hinder,1,winterstale,1610 instructs,1,winterstale,1610 unanswer'd,1,winterstale,1610 knell,1,winterstale,1610 obtain'd,1,winterstale,1610 whiteness,1,winterstale,1610 neighbours,1,winterstale,1610 Digest,1,winterstale,1610 excrement,1,winterstale,1610 New,1,winterstale,1610 torn,1,winterstale,1610 shadows,1,winterstale,1610 follies,1,winterstale,1610 honours,1,winterstale,1610 female,1,winterstale,1610 tore,1,winterstale,1610 Whether,1,winterstale,1610 unmarried,1,winterstale,1610 lower,1,winterstale,1610 implore,1,winterstale,1610 paddling,1,winterstale,1610 looker,1,winterstale,1610 dagger,1,winterstale,1610 haste,1,winterstale,1610 unconsidered,1,winterstale,1610 longs,1,winterstale,1610 zeal,1,winterstale,1610 foolery,1,winterstale,1610 odor,1,winterstale,1610 rot,1,winterstale,1610 offended,1,winterstale,1610 rascal,1,winterstale,1610 Forbiddenly,1,winterstale,1610 sir's,1,winterstale,1610 health,1,winterstale,1610 robe,1,winterstale,1610 Hasting,1,winterstale,1610 carters,1,winterstale,1610 branch,1,winterstale,1610 publicly,1,winterstale,1610 chiding,1,winterstale,1610 speeds,1,winterstale,1610 Bear,1,winterstale,1610 sainted,1,winterstale,1610 Women,1,winterstale,1610 easily,1,winterstale,1610 road,1,winterstale,1610 tods,1,winterstale,1610 glean'd,1,winterstale,1610 jog,1,winterstale,1610 brands,1,winterstale,1610 destroyed,1,winterstale,1610 speedy,1,winterstale,1610 sealing,1,winterstale,1610 hell,1,winterstale,1610 swifter,1,winterstale,1610 recall,1,winterstale,1610 Address,1,winterstale,1610 worries,1,winterstale,1610 violets,1,winterstale,1610 Stay,1,winterstale,1610 laughter,1,winterstale,1610 swiftly,1,winterstale,1610 dish,1,winterstale,1610 twos,1,winterstale,1610 mess,1,winterstale,1610 April's,1,winterstale,1610 conspiring,1,winterstale,1610 sleepy,1,winterstale,1610 beest,1,winterstale,1610 sternness,1,winterstale,1610 'Alas,1,winterstale,1610 painted,1,winterstale,1610 clothes,1,winterstale,1610 easier,1,winterstale,1610 finger,1,winterstale,1610 plainer,1,winterstale,1610 herd,1,winterstale,1610 spake,1,winterstale,1610 dropp'd,1,winterstale,1610 Paulina's,1,winterstale,1610 elevated,1,winterstale,1610 muzzled,1,winterstale,1610 celestial,1,winterstale,1610 incidency,1,winterstale,1610 loathsomeness,1,winterstale,1610 dove's,1,winterstale,1610 enduring,1,winterstale,1610 Reward,1,winterstale,1610 utterance,1,winterstale,1610 Unworthy,1,winterstale,1610 equall'd,1,winterstale,1610 hent,1,winterstale,1610 Step,1,winterstale,1610 rumour,1,winterstale,1610 lowly,1,winterstale,1610 Far,1,winterstale,1610 commodity,1,winterstale,1610 fought,1,winterstale,1610 Wolves,1,winterstale,1610 amber,1,winterstale,1610 naked,1,winterstale,1610 sneaping,1,winterstale,1610 slander,1,winterstale,1610 summer's,1,winterstale,1610 sugar,1,winterstale,1610 Resolved,1,winterstale,1610 flow,1,winterstale,1610 richly,1,winterstale,1610 although,1,winterstale,1610 drink,1,winterstale,1610 appeal,1,winterstale,1610 pies,1,winterstale,1610 derive,1,winterstale,1610 signs,1,winterstale,1610 nought,1,winterstale,1610 laugh,1,winterstale,1610 inkles,1,winterstale,1610 admirable,1,winterstale,1610 prey,1,winterstale,1610 of's,1,winterstale,1610 Provided,1,winterstale,1610 scurrilous,1,winterstale,1610 crickets,1,winterstale,1610 cheap,1,winterstale,1610 baits,1,winterstale,1610 inclining,1,winterstale,1610 Vices,1,winterstale,1610 sort,1,winterstale,1610 lively,1,winterstale,1610 rue,1,winterstale,1610 strumpet,1,winterstale,1610 advise,1,winterstale,1610 ivy,1,winterstale,1610 odds,1,winterstale,1610 sore,1,winterstale,1610 lids,1,winterstale,1610 builds,1,winterstale,1610 thirst,1,winterstale,1610 enfranchised,1,winterstale,1610 remain,1,winterstale,1610 disobedience,1,winterstale,1610 Whoa,1,winterstale,1610 swerver,1,winterstale,1610 joys,1,winterstale,1610 abound,1,winterstale,1610 Casting,1,winterstale,1610 baggage,1,winterstale,1610 waggon,1,winterstale,1610 wounded,1,winterstale,1610 thump,1,winterstale,1610 recreation,1,winterstale,1610 swear't,1,winterstale,1610 thicker,1,winterstale,1610 curious,1,winterstale,1610 PERSONAE,1,winterstale,1610 churchyard,1,winterstale,1610 province,1,winterstale,1610 demand,1,winterstale,1610 mute,1,winterstale,1610 Relish,1,winterstale,1610 medal,1,winterstale,1610 utter'd,1,winterstale,1610 fadings,1,winterstale,1610 garment,1,winterstale,1610 mistook,1,winterstale,1610 lustre,1,winterstale,1610 performance,1,winterstale,1610 vast,1,winterstale,1610 practised,1,winterstale,1610 shrieks,1,winterstale,1610 Poor,1,winterstale,1610 beneath,1,winterstale,1610 Fairly,1,winterstale,1610 chin,1,winterstale,1610 reign,1,winterstale,1610 hastening,1,winterstale,1610 graces,1,winterstale,1610 inconstant,1,winterstale,1610 disdain,1,winterstale,1610 sons,1,winterstale,1610 graced,1,winterstale,1610 tittle,1,winterstale,1610 transformations,1,winterstale,1610 overfond,1,winterstale,1610 lacks,1,winterstale,1610 feather,1,winterstale,1610 After,1,winterstale,1610 jest,1,winterstale,1610 Properly,1,winterstale,1610 stock,1,winterstale,1610 spies,1,winterstale,1610 reconciled,1,winterstale,1610 working,1,winterstale,1610 Proserpina,1,winterstale,1610 sold,1,winterstale,1610 leaning,1,winterstale,1610 receiving,1,winterstale,1610 grieving,1,winterstale,1610 sap,1,winterstale,1610 betake,1,winterstale,1610 flaw'd,1,winterstale,1610 Deucalion,1,winterstale,1610 cape,1,winterstale,1610 lilies,1,winterstale,1610 spice,1,winterstale,1610 line,1,winterstale,1610 Pins,1,winterstale,1610 call'st,1,winterstale,1610 hammer'd,1,winterstale,1610 Tongue,1,winterstale,1610 pile,1,winterstale,1610 opposed,1,winterstale,1610 evidences,1,winterstale,1610 fighter,1,winterstale,1610 bagpipe,1,winterstale,1610 resolve,1,winterstale,1610 Blind,1,winterstale,1610 drag,1,winterstale,1610 instigation,1,winterstale,1610 An't,1,winterstale,1610 crying,1,winterstale,1610 injury,1,winterstale,1610 bowling,1,winterstale,1610 drab,1,winterstale,1610 Communicatest,1,winterstale,1610 maidenheads,1,winterstale,1610 Grovelling,1,winterstale,1610 Mercy,1,winterstale,1610 trumpet,1,winterstale,1610 posts,1,winterstale,1610 Much,1,winterstale,1610 function,1,winterstale,1610 anchor,1,winterstale,1610 habits,1,winterstale,1610 Woe,1,winterstale,1610 Conduct,1,winterstale,1610 Fled,1,winterstale,1610 drew,1,winterstale,1610 rosemary,1,winterstale,1610 cheer,1,winterstale,1610 visitors,1,winterstale,1610 offenders,1,winterstale,1610 wants,1,winterstale,1610 soften,1,winterstale,1610 primroses,1,winterstale,1610 fingers,1,winterstale,1610 Infected,1,winterstale,1610 pines,1,winterstale,1610 pipe,1,winterstale,1610 rides,1,winterstale,1610 finding,1,winterstale,1610 betrays,1,winterstale,1610 fooleries,1,winterstale,1610 easiest,1,winterstale,1610 forswear't,1,winterstale,1610 bailiff,1,winterstale,1610 deities,1,winterstale,1610 Take't,1,winterstale,1610 likeness,1,winterstale,1610 chains,1,winterstale,1610 shrewdly,1,winterstale,1610 complexion,1,winterstale,1610 fools,1,winterstale,1610 ancient'st,1,winterstale,1610 veins,1,winterstale,1610 teach,1,winterstale,1610 Laugh,1,winterstale,1610 richer,1,winterstale,1610 freedom,1,winterstale,1610 covering,1,winterstale,1610 Recoil,1,winterstale,1610 confessed,1,winterstale,1610 dears,1,winterstale,1610 becoming,1,winterstale,1610 'Verily',1,winterstale,1610 overture,1,winterstale,1610 slippery,1,winterstale,1610 herdsmen,1,winterstale,1610 moving,1,winterstale,1610 discovers,1,winterstale,1610 view,1,winterstale,1610 discovery,1,winterstale,1610 nutmegs,1,winterstale,1610 six,1,winterstale,1610 rarest,1,winterstale,1610 hereafter,1,winterstale,1610 acted,1,winterstale,1610 jumps,1,winterstale,1610 compliment,1,winterstale,1610 hottest,1,winterstale,1610 blocks,1,winterstale,1610 afflict,1,winterstale,1610 proclaims,1,winterstale,1610 history,1,winterstale,1610 forefend,1,winterstale,1610 sip,1,winterstale,1610 speeches,1,winterstale,1610 concealment,1,winterstale,1610 'good',1,winterstale,1610 lyra,1,winterstale,1610 returned,1,winterstale,1610 prevail'd,1,winterstale,1610 recompensed,1,winterstale,1610 came't,1,winterstale,1610 Promotion,1,winterstale,1610 stupid,1,winterstale,1610 knavish,1,winterstale,1610 blacks,1,winterstale,1610 aged,1,winterstale,1610 imprison't,1,winterstale,1610 purses,1,winterstale,1610 may't,1,winterstale,1610 herdsman,1,winterstale,1610 agent,1,winterstale,1610 worthiest,1,winterstale,1610 wall,1,winterstale,1610 sex,1,winterstale,1610 monarch,1,winterstale,1610 vice,1,winterstale,1610 collop,1,winterstale,1610 coals,1,winterstale,1610 seals,1,winterstale,1610 fork'd,1,winterstale,1610 Exposed,1,winterstale,1610 touches,1,winterstale,1610 she'll,1,winterstale,1610 throng,1,winterstale,1610 milking,1,winterstale,1610 suit,1,winterstale,1610 beasts,1,winterstale,1610 Hilloa,1,winterstale,1610 Walk,1,winterstale,1610 wildest,1,winterstale,1610 abused,1,winterstale,1610 yield,1,winterstale,1610 pardons,1,winterstale,1610 cleanly,1,winterstale,1610 score,1,winterstale,1610 birds,1,winterstale,1610 buyer,1,winterstale,1610 embrace,1,winterstale,1610 earnestly,1,winterstale,1610 branches,1,winterstale,1610 credulity,1,winterstale,1610 sow,1,winterstale,1610 church,1,winterstale,1610 avails,1,winterstale,1610 Withdraw,1,winterstale,1610 Such,1,winterstale,1610 steps,1,winterstale,1610 Charge,1,winterstale,1610 stripes,1,winterstale,1610 Purchase,1,winterstale,1610 experienced,1,winterstale,1610 leisurely,1,winterstale,1610 encertainties,1,winterstale,1610 delivery,1,winterstale,1610 bodkin's,1,winterstale,1610 mantle,1,winterstale,1610 extempore,1,winterstale,1610 'O,1,winterstale,1610 apparent,1,winterstale,1610 'I,1,winterstale,1610 Silence,1,winterstale,1610 mettest,1,winterstale,1610 dignities,1,winterstale,1610 scour,1,winterstale,1610 betray'dst,1,winterstale,1610 hotter,1,winterstale,1610 surmises,1,winterstale,1610 bow'd,1,winterstale,1610 qualified,1,winterstale,1610 blusters,1,winterstale,1610 deeply,1,winterstale,1610 study,1,winterstale,1610 sharpest,1,winterstale,1610 wages,1,winterstale,1610 deserts,1,winterstale,1610 commends,1,winterstale,1610 gather,1,winterstale,1610 wings,1,winterstale,1610 sets,1,winterstale,1610 lambs,1,winterstale,1610 rarer,1,winterstale,1610 Added,1,winterstale,1610 Other,1,winterstale,1610 underta'en,1,winterstale,1610 offering,1,winterstale,1610 Vilely,1,winterstale,1610 pieces,1,winterstale,1610 offends,1,winterstale,1610 bough,1,winterstale,1610 climate's,1,winterstale,1610 limber,1,winterstale,1610 rounding,1,winterstale,1610 ride's,1,winterstale,1610 poverty,1,winterstale,1610 stuck,1,winterstale,1610 Merry,1,winterstale,1610 Temptations,1,winterstale,1610 colder,1,winterstale,1610 goddesses,1,winterstale,1610 shriek,1,winterstale,1610 esteem,1,winterstale,1610 gaoler,1,winterstale,1610 taught,1,winterstale,1610 vile,1,winterstale,1610 benediction,1,winterstale,1610 foretells,1,winterstale,1610 eating,1,winterstale,1610 Fasten'd,1,winterstale,1610 remained,1,winterstale,1610 hooted,1,winterstale,1610 passes,1,winterstale,1610 danced,1,winterstale,1610 lingering,1,winterstale,1610 staring,1,winterstale,1610 Forswear,1,winterstale,1610 points,1,winterstale,1610 monster,1,winterstale,1610 skies,1,winterstale,1610 crime,1,winterstale,1610 bore,1,winterstale,1610 choughs,1,winterstale,1610 Unfurnish,1,winterstale,1610 shilling,1,winterstale,1610 Equal,1,winterstale,1610 seeds,1,winterstale,1610 surplus,1,winterstale,1610 quake,1,winterstale,1610 endeavours,1,winterstale,1610 feat,1,winterstale,1610 abhorr'd,1,winterstale,1610 unreal,1,winterstale,1610 dearly,1,winterstale,1610 commit,1,winterstale,1610 cherish,1,winterstale,1610 undream'd,1,winterstale,1610 eldest,1,winterstale,1610 behoves,1,winterstale,1610 Pardon,1,winterstale,1610 instance,1,winterstale,1610 PAULINA'S,1,winterstale,1610 expedition,1,winterstale,1610 encourage,1,winterstale,1610 Whilst,1,winterstale,1610 mouthed,1,winterstale,1610 cries,1,winterstale,1610 humble,1,winterstale,1610 brick,1,winterstale,1610 draught,1,winterstale,1610 sup,1,winterstale,1610 paragon,1,winterstale,1610 elder,1,winterstale,1610 Seeming,1,winterstale,1610 companion,1,winterstale,1610 Kings,1,winterstale,1610 reverence,1,winterstale,1610 rust,1,winterstale,1610 rein,1,winterstale,1610 unintelligent,1,winterstale,1610 benched,1,winterstale,1610 rush,1,winterstale,1610 cease,1,winterstale,1610 promise,1,winterstale,1610 fees,1,winterstale,1610 punish,1,winterstale,1610 Sicilian,1,winterstale,1610 lasses,1,winterstale,1610 prank'd,1,winterstale,1610 infinite,1,winterstale,1610 humbly,1,winterstale,1610 beaten,1,winterstale,1610 masters,1,winterstale,1610 blind,1,winterstale,1610 malice,1,winterstale,1610 infallible,1,winterstale,1610 Behind,1,winterstale,1610 lane's,1,winterstale,1610 quart,1,winterstale,1610 accept,1,winterstale,1610 putter,1,winterstale,1610 Interpretation,1,winterstale,1610 bases,1,winterstale,1610 Betwixt,1,winterstale,1610 baser,1,winterstale,1610 conceal,1,winterstale,1610 let'st,1,winterstale,1610 bleated,1,winterstale,1610 displeasure's,1,winterstale,1610 horseman,1,winterstale,1610 criminal,1,winterstale,1610 marigold,1,winterstale,1610 tortures,1,winterstale,1610 prizes,1,winterstale,1610 habited,1,winterstale,1610 protestation,1,winterstale,1610 speaking,1,winterstale,1610 glisters,1,winterstale,1610 wing,1,winterstale,1610 wishes,1,winterstale,1610 stuff'd,1,winterstale,1610 redeem'd,1,winterstale,1610 ceremony,1,winterstale,1610 porter,1,winterstale,1610 professions,1,winterstale,1610 prunes,1,winterstale,1610 soldier,1,winterstale,1610 wasp's,1,winterstale,1610 ward,1,winterstale,1610 ware,1,winterstale,1610 bourn,1,winterstale,1610 attired,1,winterstale,1610 from't,1,winterstale,1610 oily,1,winterstale,1610 oils,1,winterstale,1610 boiled,1,winterstale,1610 mentioned,1,winterstale,1610 rarely,1,winterstale,1610 title,1,winterstale,1610 wether,1,winterstale,1610 Gloves,1,winterstale,1610 damnable,1,winterstale,1610 edge,1,winterstale,1610 wenches',1,winterstale,1610 dedication,1,winterstale,1610 dearer,1,winterstale,1610 know'st,1,winterstale,1610 fish'd,1,winterstale,1610 Money's,1,winterstale,1610 unsafe,1,winterstale,1610 dies,1,winterstale,1610 ruin,1,winterstale,1610 bold,1,winterstale,1610 seest,1,winterstale,1610 'she,1,winterstale,1610 turned,1,winterstale,1610 shakest,1,winterstale,1610 Fortunate,1,winterstale,1610 latches,1,winterstale,1610 directly,1,winterstale,1610 oxlips,1,winterstale,1610 savageness,1,winterstale,1610 displeasure,1,winterstale,1610 vials,1,winterstale,1610 northern,1,winterstale,1610 wave,1,winterstale,1610 pettitoes,1,winterstale,1610 rebellion,1,winterstale,1610 malady,1,winterstale,1610 stop,1,winterstale,1610 incense,1,winterstale,1610 voice,1,winterstale,1610 reared,1,winterstale,1610 stocks,1,winterstale,1610 coast,1,winterstale,1610 warp,1,winterstale,1610 bond,1,winterstale,1610 dice,1,winterstale,1610 advancement,1,winterstale,1610 throughly,1,winterstale,1610 wary,1,winterstale,1610 bone,1,winterstale,1610 friendships,1,winterstale,1610 wash,1,winterstale,1610 shuts,1,winterstale,1610 Profess'd,1,winterstale,1610 basilisk,1,winterstale,1610 Burn,1,winterstale,1610 melted,1,winterstale,1610 cogitation,1,winterstale,1610 stirr'd,1,winterstale,1610 familiarity,1,winterstale,1610 naturally,1,winterstale,1610 mingling,1,winterstale,1610 gesture,1,winterstale,1610 wast,1,winterstale,1610 creeping,1,winterstale,1610 steer,1,winterstale,1610 alliance,1,winterstale,1610 bright,1,winterstale,1610 framed,1,winterstale,1610 feeders,1,winterstale,1610 Rogero,1,winterstale,1610 infirmity,1,winterstale,1610 bents,1,winterstale,1610 hungry,1,winterstale,1610 Softly,1,winterstale,1610 project,1,winterstale,1610 contradicts,1,winterstale,1610 shorten,1,winterstale,1610 aspect,1,winterstale,1610 sick,1,winterstale,1610 beholder,1,winterstale,1610 bitten,1,winterstale,1610 nail,1,winterstale,1610 warden,1,winterstale,1610 scandal,1,winterstale,1610 stumble,1,winterstale,1610 slaves,1,winterstale,1610 Hours,1,winterstale,1610 charities,1,winterstale,1610 swain's,1,winterstale,1610 drown,1,winterstale,1610 Takes,1,winterstale,1610 carver's,1,winterstale,1610 melancholy,1,winterstale,1610 steward,1,winterstale,1610 commended,1,winterstale,1610 visible,1,winterstale,1610 begetting,1,winterstale,1610 entitling,1,winterstale,1610 Lay't,1,winterstale,1610 slackness,1,winterstale,1610 vulgars,1,winterstale,1610 hag,1,winterstale,1610 sweeten,1,winterstale,1610 traitorly,1,winterstale,1610 sweeter,1,winterstale,1610 crack,1,winterstale,1610 sign,1,winterstale,1610 refuse,1,winterstale,1610 discern,1,winterstale,1610 hay,1,winterstale,1610 'Twere,1,winterstale,1610 findings,1,winterstale,1610 messes,1,winterstale,1610 pilot,1,winterstale,1610 Am,1,winterstale,1610 altogether,1,winterstale,1610 stubborn,1,winterstale,1610 tonight,1,winterstale,1610 music,1,winterstale,1610 Summon,1,winterstale,1610 hang'd,1,winterstale,1610 Looks,1,winterstale,1610 smacks,1,winterstale,1610 bawdry,1,winterstale,1610 relished,1,winterstale,1610 loath,1,winterstale,1610 eternal,1,winterstale,1610 Becomes,1,winterstale,1610 knowing,1,winterstale,1610 undescried,1,winterstale,1610 dungy,1,winterstale,1610 Those,1,winterstale,1610 unnatural,1,winterstale,1610 bawcock,1,winterstale,1610 desperate,1,winterstale,1610 low's,1,winterstale,1610 blown,1,winterstale,1610 sluiced,1,winterstale,1610 aided,1,winterstale,1610 hen,1,winterstale,1610 La,1,winterstale,1610 Having,1,winterstale,1610 Play,1,winterstale,1610 bag,1,winterstale,1610 career,1,winterstale,1610 pander,1,winterstale,1610 verier,1,winterstale,1610 Ourselves,1,winterstale,1610 prone,1,winterstale,1610 Me,1,winterstale,1610 harlot,1,winterstale,1610 hoped,1,winterstale,1610 bar,1,winterstale,1610 lands,1,winterstale,1610 eternity,1,winterstale,1610 ladyship,1,winterstale,1610 tripp'd,1,winterstale,1610 ingrateful,1,winterstale,1610 cleansed,1,winterstale,1610 gallery,1,winterstale,1610 merited,1,winterstale,1610 pities,1,winterstale,1610 unfilial,1,winterstale,1610 pen,1,winterstale,1610 pitied,1,winterstale,1610 Standing,1,winterstale,1610 tougher,1,winterstale,1610 Within,1,winterstale,1610 hit,1,winterstale,1610 tear,1,winterstale,1610 Something,1,winterstale,1610 medicine,1,winterstale,1610 thrower,1,winterstale,1610 finer,1,winterstale,1610 fatal,1,winterstale,1610 kinds,1,winterstale,1610 Ha',1,winterstale,1610 meant,1,winterstale,1610 dullest,1,winterstale,1610 Pronounce,1,winterstale,1610 strangely,1,winterstale,1610 husbands,1,winterstale,1610 gambols,1,winterstale,1610 appoint,1,winterstale,1610 rustics,1,winterstale,1610 cuckolds,1,winterstale,1610 contracted,1,winterstale,1610 path,1,winterstale,1610 wither'd,1,winterstale,1610 east,1,winterstale,1610 pate,1,winterstale,1610 revenue,1,winterstale,1610 pinched,1,winterstale,1610 hides,1,winterstale,1610 cracks,1,winterstale,1610 treachery,1,winterstale,1610 pash,1,winterstale,1610 bearts,1,winterstale,1610 wedded,1,winterstale,1610 Almost,1,winterstale,1610 Up,1,winterstale,1610 winked,1,winterstale,1610 strew,1,winterstale,1610 gays,1,winterstale,1610 doxy,1,winterstale,1610 formerly,1,winterstale,1610 Gold,1,winterstale,1610 lordings,1,winterstale,1610 snapper,1,winterstale,1610 nobly,1,winterstale,1610 shunn'd,1,winterstale,1610 beard's,1,winterstale,1610 blameless,1,winterstale,1610 Gone,1,winterstale,1610 o'erthrow,1,winterstale,1610 heads,1,winterstale,1610 Heavy,1,winterstale,1610 sire,1,winterstale,1610 quiet,1,winterstale,1610 sirs,1,winterstale,1610 Takest,1,winterstale,1610 titles,1,winterstale,1610 strain'd,1,winterstale,1610 god,1,winterstale,1610 grazing,1,winterstale,1610 January,1,winterstale,1610 iniquity,1,winterstale,1610 angled,1,winterstale,1610 dolour,1,winterstale,1610 springe,1,winterstale,1610 whatever,1,winterstale,1610 royalty,1,winterstale,1610 bull,1,winterstale,1610 bulk,1,winterstale,1610 gave,1,winterstale,1610 nigh,1,winterstale,1610 straw,1,winterstale,1610 spotless,1,winterstale,1610 bend,1,winterstale,1610 humane,1,winterstale,1610 sovereignly,1,winterstale,1610 Jove's,1,winterstale,1610 imagine,1,winterstale,1610 Present,1,winterstale,1610 suffer'd,1,winterstale,1610 perdition,1,winterstale,1610 affect'st,1,winterstale,1610 infusion,1,winterstale,1610 Emperor,1,winterstale,1610 burn,1,winterstale,1610 posture,1,winterstale,1610 crush,1,winterstale,1610 cap,1,winterstale,1610 corpse,1,winterstale,1610 struck,1,winterstale,1610 lames,1,winterstale,1610 lawns,1,winterstale,1610 straited,1,winterstale,1610 naming,1,winterstale,1610 tricks,1,winterstale,1610 extended,1,winterstale,1610 Seest,1,winterstale,1610 shepherds,1,winterstale,1610 swoons,1,winterstale,1610 anything,1,winterstale,1610 devised,1,winterstale,1610 pre,1,winterstale,1610 gaze,1,winterstale,1610 celebration,1,winterstale,1610 wedlock,1,winterstale,1610 Save,1,winterstale,1610 infectious,1,winterstale,1610 Child,1,winterstale,1610 people,1,winterstale,1610 rover,1,winterstale,1610 ingredient,1,winterstale,1610 fifty,1,winterstale,1610 Lies,1,winterstale,1610 Speak,1,winterstale,1610 welkin,1,winterstale,1610 piled,1,winterstale,1610 Put,1,winterstale,1610 'Verily,1,winterstale,1610 hobby,1,winterstale,1610 copest,1,winterstale,1610 Apprehend,1,winterstale,1610 aqua,1,winterstale,1610 Drawing,1,winterstale,1610 suddenly,1,winterstale,1610 'once',1,winterstale,1610 prating,1,winterstale,1610 curst,1,winterstale,1610 jewel,1,winterstale,1610 courted,1,winterstale,1610 farewell,1,winterstale,1610 'Remember,1,winterstale,1610 delay'd,1,winterstale,1610 silk,1,winterstale,1610 bub,1,winterstale,1610 attorneyed,1,winterstale,1610 kernel,1,winterstale,1610 verity,1,winterstale,1610 unbraided,1,winterstale,1610 twinn'd,1,winterstale,1610 bug,1,winterstale,1610 bud,1,winterstale,1610 Perfume,1,winterstale,1610 Press,1,winterstale,1610 nettles,1,winterstale,1610 stander,1,winterstale,1610 mystery,1,winterstale,1610 fathoms,1,winterstale,1610 Above,1,winterstale,1610 Sorely,1,winterstale,1610 frowns,1,winterstale,1610 preserve,1,winterstale,1610 disguise,1,winterstale,1610 hovering,1,winterstale,1610 raisins,1,winterstale,1610 horseman's,1,winterstale,1610 O'er,1,winterstale,1610 Enough,1,winterstale,1610 swine,1,winterstale,1610 Traitors,1,winterstale,1610 sins,1,winterstale,1610 longed,1,winterstale,1610 pains,1,winterstale,1610 savoury,1,winterstale,1610 flaying,1,winterstale,1610 unstain'd,1,winterstale,1610 Impute,1,winterstale,1610 rejoice,1,winterstale,1610 savours,1,winterstale,1610 stretch,1,winterstale,1610 nayward,1,winterstale,1610 adheres,1,winterstale,1610 ashamed,1,winterstale,1610 north,1,winterstale,1610 footing,1,winterstale,1610 fulfil,1,winterstale,1610 upper,1,winterstale,1610 resort,1,winterstale,1610 acceptance,1,winterstale,1610 loud'st,1,winterstale,1610 dildos,1,winterstale,1610 attentiveness,1,winterstale,1610 anointed,1,winterstale,1610 chafes,1,winterstale,1610 Name,1,winterstale,1610 Chide,1,winterstale,1610 fecks,1,winterstale,1610 solemn,1,winterstale,1610 entertain,1,winterstale,1610 sanctity,1,winterstale,1610 enthralled,1,winterstale,1610 childish,1,winterstale,1610 solely,1,winterstale,1610 deem,1,winterstale,1610 departed,1,winterstale,1610 virgin,1,winterstale,1610 instant,1,winterstale,1610 deer,1,winterstale,1610 Follows,1,winterstale,1610 stay'd,1,winterstale,1610 saffron,1,winterstale,1610 valleys,1,winterstale,1610 whereto,1,winterstale,1610 credent,1,winterstale,1610 Cannot,1,winterstale,1610 breast,1,winterstale,1610 quitted,1,winterstale,1610 Humbling,1,winterstale,1610 torments,1,winterstale,1610 intelligencing,1,winterstale,1610 keeping,1,winterstale,1610 embraced,1,winterstale,1610 arraigned,1,winterstale,1610 removedness,1,winterstale,1610 raise,1,winterstale,1610 exercises,1,winterstale,1610 excellent,1,winterstale,1610 tale's,1,winterstale,1610 shrug,1,winterstale,1610 SONG,1,winterstale,1610 de,1,winterstale,1610 stops,1,winterstale,1610 faster,1,winterstale,1610 Best,1,winterstale,1610 painting,1,winterstale,1610 Destroy'd,1,winterstale,1610 prevented,1,winterstale,1610 sheet,1,winterstale,1610 yoked,1,winterstale,1610 violence,1,winterstale,1610 debt,1,winterstale,1610 Bless,1,winterstale,1610 Gallows,1,winterstale,1610 opportune,1,winterstale,1610 gain,1,winterstale,1610 recovered,1,winterstale,1610 unfledged,1,winterstale,1610 tongued,1,winterstale,1610 newer,1,winterstale,1610 bid'st,1,winterstale,1610 notes,1,winterstale,1610 Past,1,winterstale,1610 wronging,1,winterstale,1610 Imparts,1,winterstale,1610 whereon,1,winterstale,1610 plays,1,winterstale,1610 unworthy,1,winterstale,1610 childhoods,1,winterstale,1610 expose,1,winterstale,1610 gait,1,winterstale,1610 'Fore,1,winterstale,1610 nobleman,1,winterstale,1610 makers,1,winterstale,1610 thrive,1,winterstale,1610 Satyrs,1,winterstale,1610 lend,1,winterstale,1610 Alexander,1,winterstale,1610 collect,1,winterstale,1610 Skulking,1,winterstale,1610 boast,1,winterstale,1610 outwardly,1,winterstale,1610 chisel,1,winterstale,1610 unwillingly,1,winterstale,1610 laughing,1,winterstale,1610 waits,1,winterstale,1610 wearers,1,winterstale,1610 usurer,1,winterstale,1610 buried,1,winterstale,1610 glistering,1,winterstale,1610 shovels,1,winterstale,1610 comforts,1,winterstale,1610 ale,1,winterstale,1610 game,1,winterstale,1610 Contract,1,winterstale,1610 promising,1,winterstale,1610 memory,1,winterstale,1610 reckon,1,winterstale,1610 o'ershades,1,winterstale,1610 slips,1,winterstale,1610 privilege,1,winterstale,1610 cruelty,1,winterstale,1610 mindless,1,winterstale,1610 accompany,1,winterstale,1610 forges,1,winterstale,1610 amend,1,winterstale,1610 growth,1,winterstale,1610 fourscore,1,winterstale,1610 curds,1,winterstale,1610 enclosed,1,winterstale,1610 droop'd,1,winterstale,1610 stamped,1,winterstale,1610 Thorough,1,winterstale,1610 piercing,1,winterstale,1610 wench,1,winterstale,1610 cured,1,winterstale,1610 prosper,1,winterstale,1610 Smalus,1,winterstale,1610 Master,1,winterstale,1610 betray'd,1,winterstale,1610 cures,1,winterstale,1610 frights,1,winterstale,1610 cowardly,1,winterstale,1610 commend,1,winterstale,1610 damn'd,1,winterstale,1610 pe,1,winterstale,1610 Lawn,1,winterstale,1610 barbarism,1,winterstale,1610 approbation,1,winterstale,1610 Persuades,1,winterstale,1610 committed,1,winterstale,1610 fears,1,winterstale,1610 bodies,1,winterstale,1610 wisely,1,winterstale,1610 region,1,winterstale,1610 plant,1,winterstale,1610 heifer,1,winterstale,1610 complexions,1,winterstale,1610 sceptres,1,winterstale,1610 Italian,1,winterstale,1610 wrinkled,1,winterstale,1610 sharper,1,winterstale,1610 thankful,1,winterstale,1610 cram's,1,winterstale,1610 abide,1,winterstale,1610 idle,1,winterstale,1610 playfellow,1,winterstale,1610 discredits,1,winterstale,1610 sometime,1,winterstale,1610 auspicious,1,winterstale,1610 dragoned,1,winterstale,1610 lout,1,winterstale,1610 unsphere,1,winterstale,1610 Jewel,1,winterstale,1610 temper,1,winterstale,1610 magnificence,1,winterstale,1610 near'st,1,winterstale,1610 perfectly,1,winterstale,1610 'twould,1,winterstale,1610 spell,1,winterstale,1610 mort,1,winterstale,1610 reiterate,1,winterstale,1610 if't,1,winterstale,1610 puritan,1,winterstale,1610 Bugle,1,winterstale,1610 studied,1,winterstale,1610 impediment,1,winterstale,1610 miserable,1,winterstale,1610 loud,1,winterstale,1610 endure,1,winterstale,1610 offer'd,1,winterstale,1610 midwife's,1,winterstale,1610 clipping,1,winterstale,1610 causes,1,winterstale,1610 parents,1,winterstale,1610 hoxes,1,winterstale,1610 Strangle,1,winterstale,1610 scandalous,1,winterstale,1610 infects,1,winterstale,1610 add,1,winterstale,1610 beholding,1,winterstale,1610 speak'st,1,winterstale,1610 Acquaint,1,winterstale,1610 dumbness,1,winterstale,1610 wherein,1,winterstale,1610 Faster,1,winterstale,1610 talkest,1,winterstale,1610 potent,1,winterstale,1610 hogshead,1,winterstale,1610 dispose,1,winterstale,1610 unthought,1,winterstale,1610 customers,1,winterstale,1610 dole,1,winterstale,1610 devil,1,winterstale,1610 lose,1,winterstale,1610 unfolds,1,winterstale,1610 fixes,1,winterstale,1610 blue,1,winterstale,1610 franklins,1,winterstale,1610 continent,1,winterstale,1610 lets,1,winterstale,1610 lock'd,1,winterstale,1610 nimble,1,winterstale,1610 commandment,1,winterstale,1610 westward,1,winterstale,1610 kings',1,winterstale,1610 knee,1,winterstale,1610 show't,1,winterstale,1610 journey,1,winterstale,1610 summers,1,winterstale,1610 natures,1,winterstale,1610 load,1,winterstale,1610 briers,1,winterstale,1610 Came,1,winterstale,1610 spouts,1,winterstale,1610 graver,1,winterstale,1610 Another's,1,winterstale,1610 hoa,1,winterstale,1610 hardly,1,winterstale,1610 Seeing,1,winterstale,1610 reasons,1,winterstale,1610 running,1,winterstale,1610 ornaments,1,winterstale,1610 personal,1,winterstale,1610 kills,1,winterstale,1610 blamed,1,winterstale,1610 slide,1,winterstale,1610 scratch,1,winterstale,1610 front,1,winterstale,1610 speaks,1,winterstale,1610 Ran,1,winterstale,1610 frighted,1,winterstale,1610 isle,1,winterstale,1610 pour'd,1,winterstale,1610 Russia,1,winterstale,1610 December,1,winterstale,1610 afford,1,winterstale,1610 lewd,1,winterstale,1610 dissever'd,1,winterstale,1610 slights,1,winterstale,1610 conspiracy,1,winterstale,1610 crow,1,winterstale,1610 haunts,1,winterstale,1610 surpassing,1,winterstale,1610 kingly,1,winterstale,1610 Plainly,1,winterstale,1610 froth,1,winterstale,1610 infirmities,1,winterstale,1610 signify,1,winterstale,1610 senseless,1,winterstale,1610 nearer,1,winterstale,1610 tinkers,1,winterstale,1610 wares,1,winterstale,1610 verse,1,winterstale,1610 intended,1,winterstale,1610 palm,1,winterstale,1610 husband's,1,winterstale,1610 Read,1,winterstale,1610 weeds,1,winterstale,1610 see't,1,winterstale,1610 Start,1,winterstale,1610 call'd,1,winterstale,1610 Stars,1,winterstale,1610 appears,1,winterstale,1610 shun,1,winterstale,1610 Discovering,1,winterstale,1610 liberty,1,winterstale,1610 reach,1,winterstale,1610 enchantment,1,winterstale,1610 draws,1,winterstale,1610 feasted,1,winterstale,1610 Enjoy,1,winterstale,1610 Satisfy,1,winterstale,1610 accord,1,winterstale,1610 forty,1,winterstale,1610 purgation,1,winterstale,1610 school,1,winterstale,1610 provided,1,winterstale,1610 through't,1,winterstale,1610 spotted,1,winterstale,1610 sully,1,winterstale,1610 unbuckle,1,winterstale,1610 excuse,1,winterstale,1610 unlawful,1,winterstale,1610 ponderous,1,winterstale,1610 whether,1,winterstale,1610 expect,1,winterstale,1610 midnight,1,winterstale,1610 page,1,winterstale,1610 booties,1,winterstale,1610 Smile,1,winterstale,1610 rashness,1,winterstale,1610 peepeth,1,winterstale,1610 piedness,1,winterstale,1610 prepare,1,winterstale,1610 royalty's,1,winterstale,1610 baitings,1,winterstale,1610 harder,1,winterstale,1610 dominions,1,winterstale,1610 courts,1,winterstale,1610 neglect,1,winterstale,1610 hangs,1,winterstale,1610 stoned,1,winterstale,1610 Laid,1,winterstale,1610 winter's,1,winterstale,1610 spit,1,winterstale,1610 diest,1,winterstale,1610 hum,1,winterstale,1610 profound,1,winterstale,1610 Dispatch,1,winterstale,1610 Prepare,1,winterstale,1610 owes,1,winterstale,1610 Advocate's,1,winterstale,1610 strive,1,winterstale,1610 attach,1,winterstale,1610 devise,1,winterstale,1610 heretic,1,winterstale,1610 twain,1,winterstale,1610 medicinal,1,winterstale,1610 owed,1,winterstale,1610 grimly,1,winterstale,1610 shop,1,winterstale,1610 hate,1,winterstale,1610 forlorn,1,winterstale,1610 fear'd,1,winterstale,1610 Stays,1,winterstale,1610 enjoin,1,winterstale,1610 dreadful,1,winterstale,1610 pushes,1,winterstale,1610 butler,1,winterstale,1610 rings,1,winterstale,1610 yielded,1,winterstale,1610 proper,1,winterstale,1610 Commune,1,winterstale,1610 shoe,1,winterstale,1610 Wrecked,1,winterstale,1610 petitions,1,winterstale,1610 Slaughters,1,winterstale,1610 gentry,1,winterstale,1610 Afresh,1,winterstale,1610 prepared,1,winterstale,1610 bearer,1,winterstale,1610 streak'd,1,winterstale,1610 Hot,1,winterstale,1610 creatures,1,winterstale,1610 Hides,1,winterstale,1610 girl,1,winterstale,1610 discontenting,1,winterstale,1610 rear'd,1,winterstale,1610 dyed,1,winterstale,1610 maiden,1,winterstale,1610 error,1,winterstale,1610 urgent,1,winterstale,1610 lock,1,winterstale,1610 learnt,1,winterstale,1610 avouches,1,winterstale,1610 ingratitude,1,winterstale,1610 term,1,winterstale,1610 negative,1,winterstale,1610 Care,1,winterstale,1610 parents',1,winterstale,1610 open'd,1,winterstale,1610 crone,1,winterstale,1610 Wretches,1,winterstale,1610 carbonadoed,1,winterstale,1610 knock,1,winterstale,1610 ailest,1,winterstale,1610 colour's,1,winterstale,1610 prate,1,winterstale,1610 Among,1,winterstale,1610 clearer,1,winterstale,1610 glib,1,winterstale,1610 purchased,1,winterstale,1610 crabbed,1,winterstale,1610 Again,1,winterstale,1610 chides,1,winterstale,1610 judgment,1,winterstale,1610 Sometimes,1,winterstale,1610 bookish,1,winterstale,1610 justify,1,winterstale,1610 visited,1,winterstale,1610 Ethiopian's,1,winterstale,1610 wooing,1,winterstale,1610 hiss,1,winterstale,1610 industriously,1,winterstale,1610 foundation,1,winterstale,1610 longing,1,winterstale,1610 neb,1,winterstale,1610 shrugs,1,winterstale,1610 hazard,1,winterstale,1610 mayest,1,winterstale,1610 enjoy,1,winterstale,1610 yest,1,winterstale,1610 Quit,1,winterstale,1610 willingly,1,winterstale,1610 plackets,1,winterstale,1610 cipher,1,winterstale,1610 tastes,1,winterstale,1610 fair'st,1,winterstale,1610 root,1,winterstale,1610 whistling,1,winterstale,1610 precedent,1,winterstale,1610 Europe,1,winterstale,1610 capital,1,winterstale,1610 consumed,1,winterstale,1610 unthrifty,1,winterstale,1610 nobler,1,winterstale,1610 witch,1,winterstale,1610 Cyprus,1,winterstale,1610 Incertain,1,winterstale,1610 births,1,winterstale,1610 impudently,1,winterstale,1610 Between,1,winterstale,1610 inclinest,1,winterstale,1610 sour'd,1,winterstale,1610 notable,1,winterstale,1610 fat,1,winterstale,1610 wheels,1,winterstale,1610 Lusty,1,winterstale,1610 rural,1,winterstale,1610 borrow,1,winterstale,1610 Lament,1,winterstale,1610 Comes,1,winterstale,1610 tumbling,1,winterstale,1610 codpiece,1,winterstale,1610 soaking,1,winterstale,1610 luce,1,winterstale,1610 leap,1,winterstale,1610 cock's,1,winterstale,1610 hallowed,1,winterstale,1610 behove,1,winterstale,1610 proclamations,1,winterstale,1610 perceived,1,winterstale,1610 palms,1,winterstale,1610 Its,1,winterstale,1610 Phoebus,1,winterstale,1610 universal,1,winterstale,1610 hallooed,1,winterstale,1610 trained,1,winterstale,1610 caddisses,1,winterstale,1610 Forbid,1,winterstale,1610 equal,1,winterstale,1610 destiny,1,winterstale,1610 heavier,1,winterstale,1610 main,1,winterstale,1610 issueless,1,winterstale,1610 moved,1,winterstale,1610 Virtue,1,winterstale,1610 sprightly,1,winterstale,1610 venture,1,winterstale,1610 rigor,1,winterstale,1610 tarry,1,winterstale,1610 forceful,1,winterstale,1610 carried,1,winterstale,1610 influences,1,winterstale,1610 embracement,1,winterstale,1610 rank,1,winterstale,1610 Ten,1,winterstale,1610 garden's,1,winterstale,1610 unluckily,1,winterstale,1610 Canst,1,winterstale,1610 griefs,1,winterstale,1610 forehead,1,winterstale,1610 breathed,1,winterstale,1610 mischief,1,winterstale,1610 undoes,1,winterstale,1610 rascals,1,winterstale,1610 Inclining,1,winterstale,1610 weighing,1,winterstale,1610 takest,1,winterstale,1610 brat's,1,winterstale,1610 gainsaying,1,winterstale,1610 build,1,winterstale,1610 unpath'd,1,winterstale,1610 squash,1,winterstale,1610 'longs,1,winterstale,1610 incapable,1,winterstale,1610 omit,1,winterstale,1610 rooted,1,winterstale,1610 square,1,winterstale,1610 apply,1,winterstale,1610 proverb,1,winterstale,1610 lack'd,1,winterstale,1610 caparison,1,winterstale,1610 foundations,1,winterstale,1610 afresh,1,winterstale,1610 fraught,1,winterstale,1610 wakes,1,winterstale,1610 action,1,winterstale,1610 Opposed,1,winterstale,1610 'nointed,1,winterstale,1610 occupation,1,winterstale,1610 Sicily,1,winterstale,1610 Undone,1,winterstale,1610 awaking,1,winterstale,1610 Hang,1,winterstale,1610 mace,1,winterstale,1610 locks,1,winterstale,1610 gently,1,winterstale,1610 rainbow,1,winterstale,1610 pinch'd,1,winterstale,1610 noon,1,winterstale,1610 Maliciously,1,winterstale,1610 clog,1,winterstale,1610 knew'st,1,winterstale,1610 semicircle,1,winterstale,1610 conceited,1,winterstale,1610 knack,1,winterstale,1610 Reverend,1,winterstale,1610 ampler,1,winterstale,1610 disgraced,1,winterstale,1610 daily,1,winterstale,1610 infancy,1,winterstale,1610 slipp'd,1,winterstale,1610 superstition,1,winterstale,1610 Dismantle,1,winterstale,1610 queens,1,winterstale,1610 rash,1,winterstale,1610 fann'd,1,winterstale,1610 Honesty,1,winterstale,1610 spread,1,winterstale,1610 velvet,1,winterstale,1610 bravely,1,winterstale,1610 traitors,1,winterstale,1610 ewes,1,winterstale,1610 tenor,1,winterstale,1610 unearthly,1,winterstale,1610 pinching,1,winterstale,1610 severals,1,winterstale,1610 pregnant,1,winterstale,1610 burthens,1,winterstale,1610 spokest,1,winterstale,1610 dangers,1,winterstale,1610 fails,1,winterstale,1610 disloyal,1,winterstale,1610 Soft,1,winterstale,1610 Clear,1,winterstale,1610 Prevail,1,winterstale,1610 Perform'd,1,winterstale,1610 exposed,1,winterstale,1610 unbreech'd,1,winterstale,1610 Inch,1,winterstale,1610 posterity,1,winterstale,1610 borne,1,winterstale,1610 alter,1,winterstale,1610 muffle,1,winterstale,1610 picking,1,winterstale,1610 Affrighted,1,winterstale,1610 picked,1,winterstale,1610 All's,1,winterstale,1610 affections,1,winterstale,1610 sticks,1,winterstale,1610 stays,1,winterstale,1610 mate,1,winterstale,1610 quickly,1,winterstale,1610 reflect,1,winterstale,1610 virginalling,1,winterstale,1610 Unvenerable,1,winterstale,1610 languish'd,1,winterstale,1610 fairy,1,winterstale,1610 derivative,1,winterstale,1610 fairs,1,winterstale,1610 counsellor,1,winterstale,1610 adultery,1,winterstale,1610 orange,1,winterstale,1610 Kissing,1,winterstale,1610 Saltiers,1,winterstale,1610 places,1,winterstale,1610 shall's,1,winterstale,1610 shall't,1,winterstale,1610 shares,1,winterstale,1610 awhile,1,winterstale,1610 Picking,1,winterstale,1610 germane,1,winterstale,1610 rejoicing,1,winterstale,1610 be's,1,winterstale,1610 call't,1,winterstale,1610 avouch,1,winterstale,1610 sawest,1,winterstale,1610 famous,1,winterstale,1610 Age,1,winterstale,1610 Doth,1,winterstale,1610 Will't,1,winterstale,1610 utters,1,winterstale,1610 pack'd,1,winterstale,1610 injustice,1,winterstale,1610 trespasses,1,winterstale,1610 unusual,1,winterstale,1610 Known,1,winterstale,1610 o'erween,1,winterstale,1610 Knows,1,winterstale,1610 multiply,1,winterstale,1610 mourn,1,winterstale,1610 goads,1,winterstale,1610 inform'd,1,winterstale,1610 ravens,1,winterstale,1610 furlongs,1,winterstale,1610 effect,1,winterstale,1610 embracing,1,winterstale,1610 sinn'd,1,winterstale,1610 set'st,1,winterstale,1610 graceful,1,winterstale,1610 goblins,1,winterstale,1610 lodge,1,winterstale,1610 poisoner,1,winterstale,1610 mortal,1,winterstale,1610 leaves,1,winterstale,1610 stark,1,winterstale,1610 blessings,1,winterstale,1610 mill,1,winterstale,1610 sacrifice,1,winterstale,1610 fantastical,1,winterstale,1610 Resides,1,winterstale,1610 arrived,1,winterstale,1610 charitable,1,winterstale,1610 learnedly,1,winterstale,1610 teeth,1,winterstale,1610 non,1,winterstale,1610 bleeds,1,winterstale,1610 blench,1,winterstale,1610 soldiers,1,winterstale,1610 covert,1,winterstale,1610 satisfaction,1,winterstale,1610 conclusion,1,winterstale,1610 mightst,1,winterstale,1610 kisses,1,winterstale,1610 physics,1,winterstale,1610 purposes,1,winterstale,1610 singularities,1,winterstale,1610 bosoms,1,winterstale,1610 valley,1,winterstale,1610 dared,1,winterstale,1610 slowly,1,winterstale,1610 nurses,1,winterstale,1610 confidence,1,winterstale,1610 Cease,1,winterstale,1610 wrought,1,winterstale,1610 keeper,1,winterstale,1610 beggar,1,winterstale,1610 untried,1,winterstale,1610 bloods,1,winterstale,1610 arraign,1,winterstale,1610 Queen,1,winterstale,1610 procure,1,winterstale,1610 obscured,1,winterstale,1610 missingly,1,winterstale,1610 bolted,1,winterstale,1610 midwife,1,winterstale,1610 aired,1,winterstale,1610 skin,1,winterstale,1610 mast,1,winterstale,1610 Praise,1,winterstale,1610 parties,1,winterstale,1610 partake,1,winterstale,1610 Partake,1,winterstale,1610 tenth,1,winterstale,1610 kissing,1,winterstale,1610 coward,1,winterstale,1610 sorrowed,1,winterstale,1610 penitence,1,winterstale,1610 woe,1,winterstale,1610 slave,1,winterstale,1610 rheums,1,winterstale,1610 devils,1,winterstale,1610 'Two,1,winterstale,1610 owning,1,winterstale,1610 furnish'd,1,winterstale,1610 Jog,1,winterstale,1610 Starr'd,1,winterstale,1610 Endured,1,winterstale,1610 peaces,1,winterstale,1610 woo,1,winterstale,1610 won,1,winterstale,1610 chaff,1,winterstale,1610 minutes,1,winterstale,1610 vision,1,winterstale,1610 greatest,1,winterstale,1610 Affliction,1,winterstale,1610 infect,1,winterstale,1610 chide,1,winterstale,1610 Apparent,1,winterstale,1610 mountain,1,winterstale,1610 harden'd,1,winterstale,1610 'Sir,1,winterstale,1610 amazement,1,winterstale,1610 trifle,1,winterstale,1610 Buy,1,winterstale,1610 bleat,1,winterstale,1610 profaneness,1,winterstale,1610 borrow'd,1,winterstale,1610 tardied,1,winterstale,1610 Made,1,winterstale,1610 'She,1,winterstale,1610 dainty,1,winterstale,1610 greediness,1,winterstale,1610 littered,1,winterstale,1610 bleaching,1,winterstale,1610 subdue,1,winterstale,1610 horrible,1,winterstale,1610 disguised,1,winterstale,1610 stake,1,winterstale,1610 warmer,1,winterstale,1610 wet,1,winterstale,1610 Giving,1,winterstale,1610 changeth,1,winterstale,1610 ancientry,1,winterstale,1610 stair,1,winterstale,1610 Bight,1,winterstale,1610 Bequeath,1,winterstale,1610 wrath,1,winterstale,1610 wed,1,winterstale,1610 forgiven,1,winterstale,1610 web,1,winterstale,1610 Avoid,1,winterstale,1610 bear'st,1,winterstale,1610 louder,1,winterstale,1610 Nine,1,winterstale,1610 behalf,1,winterstale,1610 medler,1,winterstale,1610 knavery,1,winterstale,1610 trembling,1,winterstale,1610 'Twixt,1,winterstale,1610 split'st,1,winterstale,1610 wi',1,winterstale,1610 sting,1,winterstale,1610 finder,1,winterstale,1610 Wafting,1,winterstale,1610 wrongs,1,winterstale,1610 person's,1,winterstale,1610 merits,1,winterstale,1610 undiscovered,1,winterstale,1610 odd,1,winterstale,1610 stale,1,winterstale,1610 'My,1,winterstale,1610 sake,1,winterstale,1610 retire,1,winterstale,1610 blushes,1,winterstale,1610 purchase,1,winterstale,1610 pomp,1,winterstale,1610 barricado,1,winterstale,1610 dishonour,1,winterstale,1610 indictment,1,winterstale,1610 fits,1,winterstale,1610 Run,1,winterstale,1610 statesman,1,winterstale,1610 pond,1,winterstale,1610 stile,1,winterstale,1610 Fancies,1,winterstale,1610 capable,1,winterstale,1610 win,1,winterstale,1610 persons,1,winterstale,1610 newborn,1,winterstale,1610 message,1,winterstale,1610 arrival,1,winterstale,1610 handkerchief,1,winterstale,1610 privy,1,winterstale,1610 impose,1,winterstale,1610 bawdy,1,winterstale,1610 publish'd,1,winterstale,1610 detestable,1,winterstale,1610 confined,1,winterstale,1610 pretence,1,winterstale,1610 import,1,winterstale,1610 woes,1,winterstale,1610 knife,1,winterstale,1610 ring,1,winterstale,1610 creating,1,winterstale,1610 sighted,1,winterstale,1610 loving,1,winterstale,1610 smock,1,winterstale,1610 Hermione's,1,winterstale,1610 sitting,1,winterstale,1610 traffic,1,winterstale,1610 bondage,1,winterstale,1610 holier,1,winterstale,1610 allay,1,winterstale,1610 weathers,1,winterstale,1610 unseen,1,winterstale,1610 pertinent,1,winterstale,1610 manifest,1,winterstale,1610 altering,1,winterstale,1610 waking,1,winterstale,1610 meaner,1,winterstale,1610 stabs,1,winterstale,1610 Masterly,1,winterstale,1610 selfsame,1,winterstale,1610 recover,1,winterstale,1610 moles,1,winterstale,1610 Hardly,1,winterstale,1610 dishonesty,1,winterstale,1610 handed,1,winterstale,1610 oak,1,winterstale,1610 clock,1,winterstale,1610 Saw,1,winterstale,1610 Sure,1,winterstale,1610 offending,1,winterstale,1610 Desire,1,winterstale,1610 tinker's,1,winterstale,1610 Heirs,1,winterstale,1610 ripe,1,winterstale,1610 falcon,1,winterstale,1610 resemblance,1,winterstale,1610 filed,1,winterstale,1610 They're,1,winterstale,1610 fulfill'd,1,winterstale,1610 alters,1,winterstale,1610 Wenches,1,winterstale,1610 trinkets,1,winterstale,1610 protection,1,winterstale,1610 Purge,1,winterstale,1610 Flow'd,1,winterstale,1610 'We,1,winterstale,1610 dust,1,winterstale,1610 likes,1,winterstale,1610 Mercury,1,winterstale,1610 Think,1,winterstale,1610 Dwelt,1,winterstale,1610 pedlars,1,winterstale,1610 squire's,1,winterstale,1610 fixture,1,winterstale,1610 sward,1,winterstale,1610 stage,1,winterstale,1610 hurried,1,winterstale,1610 Weep,1,winterstale,1610 army,1,winterstale,1610 callat,1,winterstale,1610 mould,1,winterstale,1610 driven,1,winterstale,1610 prevail,1,winterstale,1610 audience,1,winterstale,1610 stabbing,1,winterstale,1610 Fertile,1,winterstale,1610 bold'st,1,winterstale,1610 Fates,1,winterstale,1610 threatens,1,winterstale,1610 methoughts,1,winterstale,1610 bleed,1,winterstale,1610 wag,1,winterstale,1610 intend,1,winterstale,1610 federary,1,winterstale,1610 'stoned,1,winterstale,1610 handle,1,winterstale,1610 they'll,1,winterstale,1610 blemish,1,winterstale,1610 Proclaimed,1,winterstale,1610 brother's,1,winterstale,1610 greetings,1,winterstale,1610 placket,1,winterstale,1610 new'st,1,winterstale,1610 reigning,1,winterstale,1610 lifted,1,winterstale,1610 imposition,1,winterstale,1610 thereabouts,1,winterstale,1610 wool,1,winterstale,1610 ends,1,winterstale,1610 Knowing,1,winterstale,1610 apace,1,winterstale,1610 declare,1,winterstale,1610 proceeding,1,winterstale,1610 wont,1,winterstale,1610 Praised,1,winterstale,1610 women's,1,winterstale,1610 professors,1,winterstale,1610 earn'd,1,winterstale,1610 threats,1,winterstale,1610 lullaby,1,winterstale,1610 flourish'd,1,winterstale,1610 belly,1,winterstale,1610 cursed,1,winterstale,1610 knacks,1,winterstale,1610 possess,1,winterstale,1610 damask,1,winterstale,1610 festival,1,winterstale,1610 Given,1,winterstale,1610 'shrew,1,winterstale,1610 curses,1,winterstale,1610 ginger,1,winterstale,1610 rift,1,winterstale,1610 dish'd,1,winterstale,1610 discover'd,1,winterstale,1610 Shalt,1,winterstale,1610 surprised,1,winterstale,1610 discase,1,winterstale,1610 angle,1,winterstale,1610 anchors,1,winterstale,1610 fact,1,winterstale,1610 currants,1,winterstale,1610 gladly,1,winterstale,1610 shepherdess,1,winterstale,1610 agree,1,winterstale,1610 Kin,1,winterstale,1610 seize,1,winterstale,1610 darken,1,winterstale,1610 o'erthrown,1,winterstale,1610 watery,1,winterstale,1610 Margery,1,winterstale,1610 Antechamber,1,winterstale,1610 rages,1,winterstale,1610 muddy,1,winterstale,1610 takes,1,winterstale,1610 faced,1,winterstale,1610 varying,1,winterstale,1610 Hail,1,winterstale,1610 certainty,1,winterstale,1610 dispute,1,winterstale,1610 Juno's,1,winterstale,1610 Threw,1,winterstale,1610 lavender,1,winterstale,1610 Thinkest,1,winterstale,1610 blemishes,1,winterstale,1610 wasps,1,winterstale,1610 angel,1,winterstale,1610 inform,1,winterstale,1610 require,1,winterstale,1610 heavings,1,winterstale,1610 womb,1,winterstale,1610 bastard's,1,winterstale,1610 owe,1,winterstale,1610 lookers,1,winterstale,1610 haply,1,winterstale,1610 disliken,1,winterstale,1610 doings,1,winterstale,1610 consent,1,winterstale,1610 dull,1,winterstale,1610 clocks,1,winterstale,1610 psalms,1,winterstale,1610 Dis's,1,winterstale,1610 unity,1,winterstale,1610 wolf,1,winterstale,1610 grain,1,winterstale,1610 drops,1,winterstale,1610 server,1,winterstale,1610 marble,1,winterstale,1610 hundred,1,winterstale,1610 falling,1,winterstale,1610 sweetheart's,1,winterstale,1610 uneasy,1,winterstale,1610 Strike,1,winterstale,1610 Show,1,winterstale,1610 fain,1,winterstale,1610 garlands,1,winterstale,1610 heirs,1,winterstale,1610 wholesome,1,winterstale,1610 Prefix'd,1,winterstale,1610 clown,1,winterstale,1610 boiling,1,winterstale,1610 dispatch'd,1,winterstale,1610 ebb'd,1,winterstale,1610 thwack,1,winterstale,1610 cried,1,winterstale,1610 tongueless,1,winterstale,1610 wanted,1,winterstale,1610 minds,1,winterstale,1610 diseased,1,winterstale,1610 cloth,1,winterstale,1610 tuft,1,winterstale,1610 judge,1,winterstale,1610 dates,1,winterstale,1610 presses,1,winterstale,1610 unrolled,1,winterstale,1610 horsing,1,winterstale,1610 stolen,1,winterstale,1610 miracle,1,winterstale,1610 Till,1,winterstale,1610 saint,1,winterstale,1610 Blossom,1,winterstale,1610 acknowledged,1,winterstale,1610 fall,1,winterstale,1610 councils,1,winterstale,1610 creature's,1,winterstale,1610 wilful,1,winterstale,1610 wander,1,winterstale,1610 lasting,1,winterstale,1610 Jupiter,1,winterstale,1610 churl,1,winterstale,1610 kinsman,1,winterstale,1610 plentifully,1,winterstale,1610 silly,1,winterstale,1610 Yond,1,winterstale,1610 humour,1,winterstale,1610 adorns,1,winterstale,1610 duck,1,winterstale,1610 Affront,1,winterstale,1610 kites,1,winterstale,1610 unroosted,1,winterstale,1610 parcels,1,winterstale,1610 celebrated,1,winterstale,1610 worn,1,winterstale,1610 Julio,1,winterstale,1610 deafening,1,winterstale,1610 roses,1,winterstale,1610 fighting,1,winterstale,1610 wore,1,winterstale,1610 passing,1,winterstale,1610 west,1,winterstale,1610 lodged,1,winterstale,1610 intention,1,winterstale,1610 Account,1,winterstale,1610 pantler,1,winterstale,1610 pertain,1,winterstale,1610 unjust,1,winterstale,1610 Sweet,1,winterstale,1610 gazing,1,winterstale,1610 'Sicilia,1,winterstale,1610 profit,1,winterstale,1610 scratch'd,1,winterstale,1610 separation,1,winterstale,1610 wishing,1,winterstale,1610 admiration,1,winterstale,1610 punish'd,1,winterstale,1610 savage,1,winterstale,1610 Unbuckle,1,winterstale,1610 clap,1,winterstale,1610 you',1,winterstale,1610 blister,1,winterstale,1610 rehearse,1,winterstale,1610 'jump,1,winterstale,1610 dotard,1,winterstale,1610 refer,1,winterstale,1610 distemper,1,winterstale,1610 thereby,1,winterstale,1610 rebuke,1,winterstale,1610 minded,1,winterstale,1610 bare,1,winterstale,1610 babe's,1,winterstale,1610 thunder,1,winterstale,1610 Unto,1,winterstale,1610 divers,1,winterstale,1610 bite,1,winterstale,1610 thereat,1,winterstale,1610 Lonely,1,winterstale,1610 immodest,1,winterstale,1610 lines,1,winterstale,1610 poison'd,1,winterstale,1610 linen,1,winterstale,1610 practise,1,winterstale,1610 betters,1,winterstale,1610 patient,1,winterstale,1610 Measured,1,winterstale,1610 marjoram,1,winterstale,1610 recoil,1,winterstale,1610 'Good,1,winterstale,1610 censure,1,winterstale,1610 callest,1,winterstale,1610 Four,1,winterstale,1610 incur,1,winterstale,1610 cuckold's,1,winterstale,1610 base,1,winterstale,1610 You'd,1,winterstale,1610 public,1,winterstale,1610 allow'd,1,winterstale,1610 mouth'd,1,winterstale,1610 qualify,1,winterstale,1610 Kill'd,1,winterstale,1610 rustic,1,winterstale,1610 fate,1,winterstale,1610 trumpery,1,winterstale,1610 cock,1,winterstale,1610 flatness,1,winterstale,1610 parasite,1,winterstale,1610 Wednesday,1,winterstale,1610 bank,1,winterstale,1610 hoop,1,winterstale,1610 aunts,1,winterstale,1610 vitae,1,winterstale,1610 cream,1,winterstale,1610 tame,1,winterstale,1610 tabour,1,winterstale,1610 prognostication,1,winterstale,1610 Officed,1,winterstale,1610 large,1,winterstale,1610 'flayed,1,winterstale,1610 named,1,winterstale,1610 racks,1,winterstale,1610 redeems,1,winterstale,1610 Each,1,winterstale,1610 bill,1,winterstale,1610 fare,1,winterstale,1610 drinks,1,winterstale,1610 Welcome,1,winterstale,1610 waded,1,winterstale,1610 meets,1,winterstale,1610 favourable,1,winterstale,1610 soul's,1,winterstale,1610 gallant,1,winterstale,1610 o'erwhelm,1,winterstale,1610 predominant,1,winterstale,1610 winners,1,winterstale,1610 witchcraft,1,winterstale,1610 kite,1,winterstale,1610 welcomed,1,winterstale,1610 purblind,1,winterstale,1610 childness,1,winterstale,1610 justify't,1,winterstale,1610 farthest,1,winterstale,1610 Partlet,1,winterstale,1610 welcomes,1,winterstale,1610 Prosper,1,winterstale,1610 Cytherea's,1,winterstale,1610 dreads,1,winterstale,1610 Flora,1,winterstale,1610 otherwise,1,winterstale,1610 Appear,1,winterstale,1610 compassed,1,winterstale,1610 hatred,1,winterstale,1610 puppies,1,winterstale,1610 perish,1,winterstale,1610 Trust,1,winterstale,1610 Worse,1,winterstale,1610 audacious,1,winterstale,1610 refresh,1,winterstale,1610 cambrics,1,winterstale,1610 alms,1,winterstale,1610 greets,1,winterstale,1610 homeward,1,winterstale,1610 beshrew,1,winterstale,1610 openly,1,winterstale,1610 Deceived,1,winterstale,1610 creep,1,winterstale,1610 kinsman's,1,winterstale,1610 frisk,1,winterstale,1610 shook,1,winterstale,1610 pugging,1,winterstale,1610 incident,1,winterstale,1610 getting,1,winterstale,1610 swears,1,winterstale,1610 quit,1,winterstale,1610 short,1,winterstale,1610 'woe,1,winterstale,1610 thank,1,winterstale,1610 guiding,1,winterstale,1610 visiting,1,winterstale,1610 shorn,1,winterstale,1610 Lay,1,winterstale,1610 fertile,1,winterstale,1610 portion,1,winterstale,1610 hole,1,winterstale,1610 Blemish'd,1,winterstale,1610 Dreams,1,winterstale,1610 Pedlar,1,winterstale,1610 firmament,1,winterstale,1610 frequent,1,winterstale,1610 extraordinary,1,winterstale,1610 gainsay,1,winterstale,1610 concluded,1,winterstale,1610 settle,1,winterstale,1610 devour,1,winterstale,1610 mints,1,winterstale,1610 dimples,1,winterstale,1610 Although,1,winterstale,1610 carnations,1,winterstale,1610 acre,1,winterstale,1610 counterfeit,1,winterstale,1610 Who's,1,winterstale,1610 fires,1,winterstale,1610 loyal,1,winterstale,1610 argument,1,winterstale,1610 tire,1,winterstale,1610 condemn,1,winterstale,1610 liver,1,winterstale,1610 necklace,1,winterstale,1610 horses,1,winterstale,1610 Where's,1,winterstale,1610 feeding,1,winterstale,1610 writing,1,winterstale,1610 wondering,1,winterstale,1610 resolution,1,winterstale,1610 seal,1,winterstale,1610 potion,1,winterstale,1610 want'st,1,winterstale,1610 conjure,1,winterstale,1610 interpose,1,winterstale,1610 gives,1,winterstale,1610 seen't,1,winterstale,1610 profits,1,winterstale,1610 behalfs,1,winterstale,1610 generations,1,winterstale,1610 cleft,1,winterstale,1610 'Why,1,winterstale,1610 bawd,1,winterstale,1610 prettily,1,winterstale,1610 satisfied,1,winterstale,1610 terrors,1,winterstale,1610 yellow,1,winterstale,1610 manage,1,winterstale,1610 hung,1,winterstale,1610 usurer's,1,winterstale,1610 hairy,1,winterstale,1610 have't,1,winterstale,1610 evident,1,winterstale,1610 approved,1,winterstale,1610 sear,1,winterstale,1610 robed,1,winterstale,1610 hunt,1,winterstale,1610 fourteen,1,winterstale,1610 cook,1,winterstale,1610 ignoble,1,winterstale,1610 lying,1,winterstale,1610 vexation,1,winterstale,1610 contents,1,winterstale,1610 heaping,1,winterstale,1610 Calls,1,winterstale,1610 always,1,winterstale,1610 restraining,1,winterstale,1610 comforting,1,winterstale,1610 sceptre's,1,winterstale,1610 blade,1,winterstale,1610 gossips,1,winterstale,1610 low,1,winterstale,1610 eyed,1,winterstale,1610 acts,1,winterstale,1610 Shepherdess,1,winterstale,1610 loa,1,winterstale,1610 sect,1,winterstale,1610 suits,1,winterstale,1610 nineteen,1,winterstale,1610 aught,1,winterstale,1610 singular,1,winterstale,1610 material,1,winterstale,1610 fitting,1,winterstale,1610 unkindness,1,winterstale,1610 ended,1,winterstale,1610 divorce,1,winterstale,1610 numbness,1,winterstale,1610 lacked,1,winterstale,1610 condition,1,winterstale,1610 whoo,1,winterstale,1610 quoifs,1,winterstale,1610 steep'd,1,winterstale,1610 shapes,1,winterstale,1610 smutch'd,1,winterstale,1610 True,1,winterstale,1610 cote,1,winterstale,1610 cork,1,winterstale,1610 lunes,1,winterstale,1610 thereon,1,winterstale,1610 Forsake,1,winterstale,1610 make's,1,winterstale,1610 make't,1,winterstale,1610 fabric,1,winterstale,1610 July's,1,winterstale,1610 hefts,1,winterstale,1610 needless,1,winterstale,1610 preferment,1,winterstale,1610 secrecy,1,winterstale,1610 thrush,1,winterstale,1610 hums,1,winterstale,1610 mistrusted,1,winterstale,1610 Shepard,1,winterstale,1610 Whitsun,1,winterstale,1610 gasping,1,winterstale,1610 replenish'd,1,winterstale,1610 'twill,1,winterstale,1610 avoid,1,winterstale,1610 flaunts,1,winterstale,1610 pour,1,winterstale,1610 heels,1,winterstale,1610 downright,1,winterstale,1610 Know,1,winterstale,1610 Through,1,winterstale,1610 Things,1,winterstale,1610 million,1,winterstale,1610 we're,1,winterstale,1610 hours,1,winterstale,1610 entreat,1,winterstale,1610 goal,1,winterstale,1610 tradesmen,1,winterstale,1610 strikest,1,winterstale,1610 irremoveable,1,winterstale,1610 kindred,1,winterstale,1610 glove,1,winterstale,1610 suffice,1,winterstale,1610 extremes,1,winterstale,1610 port,1,winterstale,1610 prayer,1,winterstale,1610 countenances,1,winterstale,1610 disjunction,1,winterstale,1610 fairly,1,winterstale,1610 according,1,winterstale,1610 mirror,1,winterstale,1610 Sent,1,winterstale,1610 excellence,1,winterstale,1610 sell,1,winterstale,1610 millions,1,winterstale,1610 distaffs,1,winterstale,1610 uncertain,1,winterstale,1610 overheard,1,winterstale,1610 blank,1,winterstale,1610 cases,1,winterstale,1610 whilst,1,winterstale,1610 see'st,1,winterstale,1610 Next,1,winterstale,1610 led,1,winterstale,1610 troll,1,winterstale,1610 Apollos,1,winterstale,1610 reform'd,1,winterstale,1610 vouchsafed,1,winterstale,1610 roaring,1,winterstale,1610 reputed,1,winterstale,1610 Appear'd,1,winterstale,1610 undo,1,winterstale,1610 adds,1,winterstale,1610 talk'd,1,winterstale,1610 bade,1,winterstale,1610 swell,1,winterstale,1610 remedies,1,winterstale,1610 shoots,1,winterstale,1610 Business,1,winterstale,1610 carriage,1,winterstale,1610 winters,1,winterstale,1610 seized,1,winterstale,1610 shipboard,1,winterstale,1610 season,1,winterstale,1610 embassies,1,winterstale,1610 straining,1,winterstale,1610 Privy,1,winterstale,1610 lastly,1,winterstale,1610 Remain,1,winterstale,1610 protest,1,winterstale,1610 heartiness,1,winterstale,1610 seaside,1,winterstale,1610 March,1,winterstale,1610 affair,1,winterstale,1610 Commonly,1,winterstale,1610 Mistress,1,winterstale,1610 ceremonious,1,winterstale,1610 bolder,1,winterstale,1610 coin,1,winterstale,1610 master's,1,winterstale,1610 pipes,1,winterstale,1610 fairies,1,winterstale,1610 bags,1,winterstale,1610 nature's,1,winterstale,1610 browsing,1,winterstale,1610 pair'd,1,winterstale,1610 Bred,1,winterstale,1610 until,1,winterstale,1610 impawn'd,1,winterstale,1610 enfoldings,1,winterstale,1610 principal,1,winterstale,1610 thread,1,winterstale,1610 boring,1,winterstale,1610 brow,1,winterstale,1610 tremor,1,winterstale,1610 perpetuity,1,winterstale,1610 conduit,1,winterstale,1610 ruddiness,1,winterstale,1610 marted,1,winterstale,1610 insufficience,1,winterstale,1610 effects,1,winterstale,1610 servants,1,winterstale,1610 slumber,1,winterstale,1610 suitor,1,winterstale,1610 eat,1,winterstale,1610 feasting,1,winterstale,1610 review,1,winterstale,1610 lays,1,winterstale,1610 fellow'st,1,winterstale,1610 imagination,1,winterstale,1610 sufficiently,1,winterstale,1610 write,1,winterstale,1610 Tincture,1,winterstale,1610 wearing,1,winterstale,1610 turtles,1,winterstale,1610 barr'd,1,winterstale,1610 Places,1,winterstale,1610 allied,1,winterstale,1610 encounters,1,winterstale,1610 successful,1,winterstale,1610 Gave,1,winterstale,1610 successor,1,winterstale,1610 temporizer,1,winterstale,1610 Excels,1,winterstale,1610 careful,1,winterstale,1610 revolted,1,winterstale,1610 future,1,winterstale,1610 sufficiency,1,winterstale,1610 Preserver,1,winterstale,1610 Five,1,winterstale,1610 featly,1,winterstale,1610 Unclasp'd,1,winterstale,1610 gust,1,winterstale,1610 Clerk,1,winterstale,1610 burst,1,winterstale,1610 Concern,1,winterstale,1610 leash,1,winterstale,1610 thrifts,1,winterstale,1610 dismiss'd,1,winterstale,1610 hinged,1,winterstale,1610 trusted,1,winterstale,1610 connive,1,winterstale,1610 tails,1,winterstale,1610 warlike,1,winterstale,1610 brooch,1,winterstale,1610 Sometime,1,winterstale,1610 poking,1,winterstale,1610 Oppose,1,winterstale,1610 Sooth,1,winterstale,1610 Amity,1,winterstale,1610 ounce,1,winterstale,1610 Dorcas,1,winterstale,1610 angling,1,winterstale,1610 grafted,1,winterstale,1610 tires,1,winterstale,1610 nobody,1,winterstale,1610 conjured,1,winterstale,1610 swerve,1,winterstale,1610 abuse,1,winterstale,1610 spiritual,1,winterstale,1610 burnt,1,winterstale,1610 confirmation,1,winterstale,1610 whip,1,winterstale,1610 merciful,1,winterstale,1610 limit,1,winterstale,1610 forcing,1,winterstale,1610 body's,1,winterstale,1610 heartily,1,winterstale,1610 Great,1,winterstale,1610 fled,1,winterstale,1610 simplicity,1,winterstale,1610 lips,1,winterstale,1610 Haled,1,winterstale,1610 reporting,1,winterstale,1610 Wotting,1,winterstale,1610 counts,1,winterstale,1610 fashion,1,winterstale,1610 superstitiously,1,winterstale,1610 hastily,1,winterstale,1610 eleven,1,winterstale,1610 ransack'd,1,winterstale,1610 across,1,winterstale,1610 Forewarn,1,winterstale,1610 southward,1,winterstale,1610 henceforth,1,winterstale,1610 bellow'd,1,winterstale,1610 tirra,1,winterstale,1610 ransomed,1,winterstale,1610 beguile,1,winterstale,1610 lark,1,winterstale,1610 mannerly,1,winterstale,1610 scion,1,winterstale,1610 gest,1,winterstale,1610 tattling,1,winterstale,1610 Marry,1,winterstale,1610 terror,1,winterstale,1610 lethargy,1,winterstale,1610 Respecting,1,winterstale,1610 flax,1,winterstale,1610 jollity,1,winterstale,1610 plucks,1,winterstale,1610 Produce,1,winterstale,1610 flap,1,winterstale,1610 preposterous,1,winterstale,1610 justices',1,winterstale,1610 tenderness,1,winterstale,1610 attendants,1,winterstale,1610 Sings,1,winterstale,1610 highway,1,winterstale,1610 sleeping,1,winterstale,1610 shroud,1,winterstale,1610 dishonour'd,1,winterstale,1610 continuing,1,winterstale,1610 Looking,1,winterstale,1610 lozel,1,winterstale,1610 pranks,1,winterstale,1610 betimes,1,winterstale,1610 suspect,1,winterstale,1610 Prodigal,1,winterstale,1610 customary,1,winterstale,1610 recompense,1,winterstale,1610 peer,1,winterstale,1610 violation,1,winterstale,1610 toaze,1,winterstale,1610 April,1,winterstale,1610 sword's,1,winterstale,1610 breaking,1,winterstale,1610 squire,1,winterstale,1610 intelligent,1,winterstale,1610 corners,1,winterstale,1610 appetite,1,winterstale,1610 counters,1,winterstale,1610 Lend,1,winterstale,1610 Crowns,1,winterstale,1610 entreaty,1,winterstale,1610 fathom,1,winterstale,1610 compell'd,1,winterstale,1610 colouring,1,winterstale,1610 Justice,1,winterstale,1610 stopping,1,winterstale,1610 milliner,1,winterstale,1610 Nourish,1,winterstale,1610 importunate,1,winterstale,1610 o'ercharged,1,winterstale,1610 undertaking,1,winterstale,1610 amazedness,1,winterstale,1610 Death,1,winterstale,1610 'This,1,winterstale,1610 uncurrent,1,winterstale,1610 swooned,1,winterstale,1610 entrance,1,winterstale,1610 leads,1,winterstale,1610 reply,1,winterstale,1610 denying,1,winterstale,1610 rises,1,winterstale,1610 enjoin'd,1,winterstale,1610 hardening,1,winterstale,1610 You'ld,1,winterstale,1610 employ,1,winterstale,1610 respect,1,winterstale,1610 asleep,1,winterstale,1610 instructions,1,winterstale,1610 attend,1,winterstale,1610 pomander,1,winterstale,1610 princely,1,winterstale,1610 amazedly,1,winterstale,1610 Gracious,1,winterstale,1610 swallow,1,winterstale,1610 impudence,1,winterstale,1610 shone,1,winterstale,1610 weigh,1,winterstale,1610 cracking,1,winterstale,1610 ensues,1,winterstale,1610 tod,1,winterstale,1610 sudden,1,winterstale,1610 Together,1,winterstale,1610 ha's,1,winterstale,1610 turtle,1,winterstale,1610 thriving,1,winterstale,1610 businesses,1,winterstale,1610 bonfires,1,winterstale,1610 dispatch,1,winterstale,1610 top,1,winterstale,1610 unparallel'd,1,winterstale,1610 great'st,1,winterstale,1610 plucking,1,winterstale,1610 begotten,1,winterstale,1610 swallowed,1,winterstale,1610 exultation,1,winterstale,1610 liest,1,winterstale,1610 blossoms,1,winterstale,1610 couples,1,winterstale,1610 months,1,winterstale,1610 Bring,1,winterstale,1610 mature,1,winterstale,1610 DRAMATIS,1,winterstale,1610 Peering,1,winterstale,1610 handsomely,1,winterstale,1610 garlic,1,winterstale,1610 venom,1,winterstale,1610 tie,1,winterstale,1610 gallimaufry,1,winterstale,1610 heirless,1,winterstale,1610 physician,1,winterstale,1610 dibble,1,winterstale,1610 boors,1,winterstale,1610 prerogative,1,winterstale,1610 Physic,1,winterstale,1610 vex'd,1,winterstale,1610 flower,1,winterstale,1610 Desires,1,winterstale,1610 gazed,1,winterstale,1610 pass'd,1,winterstale,1610 damn,1,winterstale,1610 divides,1,winterstale,1610 flown,1,winterstale,1610 bargain,1,winterstale,1610 Left,1,winterstale,1610 cozened,1,winterstale,1610 tired,1,winterstale,1610 he'ld,1,winterstale,1610 boasts,1,winterstale,1610 Affection,1,winterstale,1610 Tale,1,winterstale,1610 cabin,1,winterstale,1610 budget,1,winterstale,1610 gorge,1,winterstale,1610 dew,1,winterstale,1610 dale,1,winterstale,1610 gentler,1,winterstale,1610 Masks,1,winterstale,1610 dwelling,1,winterstale,1610 pastorals,1,winterstale,1610 Prosperity's,1,winterstale,1610 bespice,1,winterstale,1610 boundless,1,winterstale,1610 reconcile,1,winterstale,1610 jealousy,1,winterstale,1610 slip,1,winterstale,1610 squier,1,winterstale,1610 take't,1,winterstale,1610 pronounce,1,winterstale,1610 toads,1,winterstale,1610 say't,1,winterstale,1610 rounds,1,winterstale,1610 justly,1,winterstale,1610 done't,1,winterstale,1610 charity,1,winterstale,1610 False,1,winterstale,1610 Honest,1,winterstale,1610 punishes,1,winterstale,1610 repair,1,winterstale,1610 stables,1,winterstale,1610 'mongst,1,winterstale,1610 breathe,1,winterstale,1610 cozeners,1,winterstale,1610 wombs,1,winterstale,1610 kiln,1,winterstale,1610 beverage,1,winterstale,1610 bide,1,winterstale,1610 doctrine,1,winterstale,1610 privately,1,winterstale,1610 direction,1,winterstale,1610 crows,1,winterstale,1610 order,1,winterstale,1610 jelly,1,winterstale,1610 gazes,1,winterstale,1610 nostril,1,winterstale,1610 conjecture,1,winterstale,1610 directing,1,winterstale,1610 requisite,1,winterstale,1610 coactive,1,winterstale,1610 punished,1,winterstale,1610 degrees,1,winterstale,1610 cordis,1,winterstale,1610 remembered,1,winterstale,1610 distinguishment,1,winterstale,1610 interpreters,1,winterstale,1610 insinuate,1,winterstale,1610 Tug,1,winterstale,1610 brave,2,winterstale,1610 holding,2,winterstale,1610 feel't,2,winterstale,1610 meet,2,winterstale,1610 forbid,2,winterstale,1610 instruments,2,winterstale,1610 advised,2,winterstale,1610 grew,2,winterstale,1610 Prove,2,winterstale,1610 smiles,2,winterstale,1610 advice,2,winterstale,1610 extremity,2,winterstale,1610 drop,2,winterstale,1610 infant,2,winterstale,1610 infected,2,winterstale,1610 motion,2,winterstale,1610 double,2,winterstale,1610 necessities,2,winterstale,1610 dream'd,2,winterstale,1610 weary,2,winterstale,1610 spectators,2,winterstale,1610 woman's,2,winterstale,1610 Fie,2,winterstale,1610 wicked,2,winterstale,1610 ram,2,winterstale,1610 peace,2,winterstale,1610 lawful,2,winterstale,1610 bones,2,winterstale,1610 purge,2,winterstale,1610 mend,2,winterstale,1610 scene,2,winterstale,1610 highness',2,winterstale,1610 proclaim'd,2,winterstale,1610 boys,2,winterstale,1610 jot,2,winterstale,1610 whereupon,2,winterstale,1610 thorns,2,winterstale,1610 Neptune,2,winterstale,1610 contract,2,winterstale,1610 Became,2,winterstale,1610 trunk,2,winterstale,1610 vain,2,winterstale,1610 disease,2,winterstale,1610 prosperous,2,winterstale,1610 instrument,2,winterstale,1610 whipped,2,winterstale,1610 rid,2,winterstale,1610 looked,2,winterstale,1610 succession,2,winterstale,1610 fury,2,winterstale,1610 declined,2,winterstale,1610 Ere,2,winterstale,1610 'she's,2,winterstale,1610 withal,2,winterstale,1610 cheat,2,winterstale,1610 ribbons,2,winterstale,1610 thou'lt,2,winterstale,1610 Golden,2,winterstale,1610 tyrannous,2,winterstale,1610 goest,2,winterstale,1610 proclaim,2,winterstale,1610 boy's,2,winterstale,1610 spare,2,winterstale,1610 prig,2,winterstale,1610 gillyvors,2,winterstale,1610 helped,2,winterstale,1610 soon,2,winterstale,1610 birth,2,winterstale,1610 slept,2,winterstale,1610 matters,2,winterstale,1610 outside,2,winterstale,1610 Jove,2,winterstale,1610 circumstance,2,winterstale,1610 sorrows,2,winterstale,1610 thou'rt,2,winterstale,1610 corse,2,winterstale,1610 Remember,2,winterstale,1610 concerns,2,winterstale,1610 hearing,2,winterstale,1610 cupbearer,2,winterstale,1610 madness,2,winterstale,1610 making,2,winterstale,1610 noise,2,winterstale,1610 toys,2,winterstale,1610 purity,2,winterstale,1610 lesser,2,winterstale,1610 Thoughts,2,winterstale,1610 began,2,winterstale,1610 kin,2,winterstale,1610 coldly,2,winterstale,1610 partner,2,winterstale,1610 black,2,winterstale,1610 admiring,2,winterstale,1610 Gentle,2,winterstale,1610 Perchance,2,winterstale,1610 execution,2,winterstale,1610 Twenty,2,winterstale,1610 sung,2,winterstale,1610 sin,2,winterstale,1610 Get,2,winterstale,1610 light,2,winterstale,1610 ages,2,winterstale,1610 sweet'st,2,winterstale,1610 tooth,2,winterstale,1610 saying,2,winterstale,1610 deceived,2,winterstale,1610 Do't,2,winterstale,1610 society,2,winterstale,1610 landed,2,winterstale,1610 shearers,2,winterstale,1610 nine,2,winterstale,1610 peril,2,winterstale,1610 stealing,2,winterstale,1610 skill,2,winterstale,1610 looking,2,winterstale,1610 allowing,2,winterstale,1610 squared,2,winterstale,1610 beloved,2,winterstale,1610 pitiful,2,winterstale,1610 level,2,winterstale,1610 instruct,2,winterstale,1610 sprites,2,winterstale,1610 savour,2,winterstale,1610 rear,2,winterstale,1610 barne,2,winterstale,1610 accursed,2,winterstale,1610 wrong,2,winterstale,1610 snow,2,winterstale,1610 receives,2,winterstale,1610 conceit,2,winterstale,1610 brain,2,winterstale,1610 Commit,2,winterstale,1610 twelve,2,winterstale,1610 guarded,2,winterstale,1610 common,2,winterstale,1610 give't,2,winterstale,1610 calumny,2,winterstale,1610 lucky,2,winterstale,1610 Wherein,2,winterstale,1610 princes,2,winterstale,1610 above,2,winterstale,1610 girls,2,winterstale,1610 plainly,2,winterstale,1610 grow,2,winterstale,1610 descend,2,winterstale,1610 eyebrows,2,winterstale,1610 sword,2,winterstale,1610 ancient,2,winterstale,1610 whisper,2,winterstale,1610 Old,2,winterstale,1610 wink,2,winterstale,1610 Hence,2,winterstale,1610 knees,2,winterstale,1610 steal,2,winterstale,1610 wipe,2,winterstale,1610 hated,2,winterstale,1610 witnesses,2,winterstale,1610 died,2,winterstale,1610 accuse,2,winterstale,1610 sense,2,winterstale,1610 beating,2,winterstale,1610 rule,2,winterstale,1610 circumstances,2,winterstale,1610 steel,2,winterstale,1610 dear'st,2,winterstale,1610 book,2,winterstale,1610 parts,2,winterstale,1610 Follow,2,winterstale,1610 praises,2,winterstale,1610 distraction,2,winterstale,1610 intelligence,2,winterstale,1610 opening,2,winterstale,1610 ha',2,winterstale,1610 verily,2,winterstale,1610 bastards,2,winterstale,1610 keys,2,winterstale,1610 Hold,2,winterstale,1610 hat,2,winterstale,1610 planet,2,winterstale,1610 While,2,winterstale,1610 climate,2,winterstale,1610 What's,2,winterstale,1610 scared,2,winterstale,1610 measure,2,winterstale,1610 exercise,2,winterstale,1610 unsettled,2,winterstale,1610 box,2,winterstale,1610 blows,2,winterstale,1610 Whiles,2,winterstale,1610 among,2,winterstale,1610 bad,2,winterstale,1610 Nature,2,winterstale,1610 performed,2,winterstale,1610 Stand,2,winterstale,1610 cruel,2,winterstale,1610 in's,2,winterstale,1610 shines,2,winterstale,1610 to's,2,winterstale,1610 wisdom,2,winterstale,1610 Ha,2,winterstale,1610 piteous,2,winterstale,1610 pleasure,2,winterstale,1610 requires,2,winterstale,1610 quick,2,winterstale,1610 despair,2,winterstale,1610 sport,2,winterstale,1610 noses,2,winterstale,1610 pin,2,winterstale,1610 changes,2,winterstale,1610 Is't,2,winterstale,1610 monstrous,2,winterstale,1610 became,2,winterstale,1610 temple,2,winterstale,1610 obey,2,winterstale,1610 changeling,2,winterstale,1610 Adieu,2,winterstale,1610 Camillo's,2,winterstale,1610 Shepherd's,2,winterstale,1610 Force,2,winterstale,1610 week,2,winterstale,1610 absent,2,winterstale,1610 mankind,2,winterstale,1610 was't,2,winterstale,1610 preserved,2,winterstale,1610 sooner,2,winterstale,1610 bury,2,winterstale,1610 difference,2,winterstale,1610 kindness,2,winterstale,1610 Yourself,2,winterstale,1610 petition,2,winterstale,1610 imperial,2,winterstale,1610 Behold,2,winterstale,1610 jealous,2,winterstale,1610 Lift,2,winterstale,1610 Didst,2,winterstale,1610 eaten,2,winterstale,1610 theme,2,winterstale,1610 friendly,2,winterstale,1610 royally,2,winterstale,1610 curse,2,winterstale,1610 vows,2,winterstale,1610 amongst,2,winterstale,1610 roared,2,winterstale,1610 used,2,winterstale,1610 About,2,winterstale,1610 stronger,2,winterstale,1610 Whither,2,winterstale,1610 lamented,2,winterstale,1610 hopeful,2,winterstale,1610 Both,2,winterstale,1610 quite,2,winterstale,1610 Mopsa,2,winterstale,1610 ghost,2,winterstale,1610 storm,2,winterstale,1610 deep,2,winterstale,1610 forgive,2,winterstale,1610 wretch,2,winterstale,1610 image,2,winterstale,1610 betray,2,winterstale,1610 ha,2,winterstale,1610 magic,2,winterstale,1610 clear'd,2,winterstale,1610 aid,2,winterstale,1610 repent,2,winterstale,1610 stood,2,winterstale,1610 ago,2,winterstale,1610 Unless,2,winterstale,1610 deal,2,winterstale,1610 seeing,2,winterstale,1610 co,2,winterstale,1610 liars,2,winterstale,1610 ay,2,winterstale,1610 yields,2,winterstale,1610 gentlewoman,2,winterstale,1610 newly,2,winterstale,1610 attending,2,winterstale,1610 threaten,2,winterstale,1610 Conceiving,2,winterstale,1610 lo,2,winterstale,1610 necessity,2,winterstale,1610 between's,2,winterstale,1610 quarters,2,winterstale,1610 account,2,winterstale,1610 Reads,2,winterstale,1610 produce,2,winterstale,1610 mingle,2,winterstale,1610 offences,2,winterstale,1610 pursued,2,winterstale,1610 Yea,2,winterstale,1610 alteration,2,winterstale,1610 pheasant,2,winterstale,1610 Yes,2,winterstale,1610 ho,2,winterstale,1610 spent,2,winterstale,1610 apparel,2,winterstale,1610 necessary,2,winterstale,1610 ready,2,winterstale,1610 show'd,2,winterstale,1610 forgot,2,winterstale,1610 serious,2,winterstale,1610 acquaint,2,winterstale,1610 pure,2,winterstale,1610 men's,2,winterstale,1610 Been,2,winterstale,1610 wisest,2,winterstale,1610 thrice,2,winterstale,1610 robbed,2,winterstale,1610 plot,2,winterstale,1610 ability,2,winterstale,1610 Break,2,winterstale,1610 reasonable,2,winterstale,1610 crutches,2,winterstale,1610 employ'd,2,winterstale,1610 natural,2,winterstale,1610 Happy,2,winterstale,1610 acknowledge,2,winterstale,1610 hang,2,winterstale,1610 deny,2,winterstale,1610 foul,2,winterstale,1610 drawn,2,winterstale,1610 perpetual,2,winterstale,1610 city,2,winterstale,1610 deaths,2,winterstale,1610 arm,2,winterstale,1610 form,2,winterstale,1610 kingdoms,2,winterstale,1610 Commend,2,winterstale,1610 ape,2,winterstale,1610 mock,2,winterstale,1610 frown,2,winterstale,1610 pace,2,winterstale,1610 combat,2,winterstale,1610 importance,2,winterstale,1610 revenge,2,winterstale,1610 testimony,2,winterstale,1610 mayst,2,winterstale,1610 nearest,2,winterstale,1610 Hast,2,winterstale,1610 open't,2,winterstale,1610 theirs,2,winterstale,1610 few,2,winterstale,1610 trial,2,winterstale,1610 Art,2,winterstale,1610 guess,2,winterstale,1610 here's,2,winterstale,1610 moves,2,winterstale,1610 lead,2,winterstale,1610 spoken,2,winterstale,1610 Into,2,winterstale,1610 execute,2,winterstale,1610 luck,2,winterstale,1610 lean,2,winterstale,1610 delicate,2,winterstale,1610 occasion,2,winterstale,1610 tried,2,winterstale,1610 proofs,2,winterstale,1610 Madam,2,winterstale,1610 Become,2,winterstale,1610 inside,2,winterstale,1610 honey,2,winterstale,1610 Against,2,winterstale,1610 asks,2,winterstale,1610 shouldst,2,winterstale,1610 session,2,winterstale,1610 silence,2,winterstale,1610 finest,2,winterstale,1610 retired,2,winterstale,1610 thinks,2,winterstale,1610 proceed,2,winterstale,1610 doleful,2,winterstale,1610 'Whoop,2,winterstale,1610 remedy,2,winterstale,1610 Alack,2,winterstale,1610 pastime,2,winterstale,1610 visage,2,winterstale,1610 garden,2,winterstale,1610 shores,2,winterstale,1610 parting,2,winterstale,1610 misery,2,winterstale,1610 Therefore,2,winterstale,1610 dares,2,winterstale,1610 eggs,2,winterstale,1610 several,2,winterstale,1610 freely,2,winterstale,1610 leaving,2,winterstale,1610 likewise,2,winterstale,1610 towards,2,winterstale,1610 milk,2,winterstale,1610 fares,2,winterstale,1610 escape,2,winterstale,1610 merrily,2,winterstale,1610 process,2,winterstale,1610 bloody,2,winterstale,1610 'gainst,2,winterstale,1610 Could,2,winterstale,1610 dearest,2,winterstale,1610 presently,2,winterstale,1610 thick,2,winterstale,1610 Son,2,winterstale,1610 ungentle,2,winterstale,1610 inch,2,winterstale,1610 gates,2,winterstale,1610 labour,2,winterstale,1610 miss,2,winterstale,1610 seal'd,2,winterstale,1610 higher,2,winterstale,1610 blacker,2,winterstale,1610 apart,2,winterstale,1610 doubted,2,winterstale,1610 marvel,2,winterstale,1610 losing,2,winterstale,1610 Howe'er,2,winterstale,1610 taste,2,winterstale,1610 passage,2,winterstale,1610 Autolycus,2,winterstale,1610 daffodils,2,winterstale,1610 bracelet,2,winterstale,1610 example,2,winterstale,1610 flies,2,winterstale,1610 understanding,2,winterstale,1610 entreaties,2,winterstale,1610 wit,2,winterstale,1610 sides,2,winterstale,1610 'not,2,winterstale,1610 cross'd,2,winterstale,1610 fetch,2,winterstale,1610 herds,2,winterstale,1610 allegiance,2,winterstale,1610 sessions,2,winterstale,1610 negligence,2,winterstale,1610 you're,2,winterstale,1610 integrity,2,winterstale,1610 certainly,2,winterstale,1610 torture,2,winterstale,1610 crown'd,2,winterstale,1610 Thus,2,winterstale,1610 Libya,2,winterstale,1610 heavy,2,winterstale,1610 blasts,2,winterstale,1610 duty,2,winterstale,1610 able,2,winterstale,1610 nuptial,2,winterstale,1610 chants,2,winterstale,1610 forward,2,winterstale,1610 wanton,2,winterstale,1610 rags,2,winterstale,1610 dying,2,winterstale,1610 Three,2,winterstale,1610 walk'd,2,winterstale,1610 bounty,2,winterstale,1610 hair,2,winterstale,1610 fix'd,2,winterstale,1610 baseness,2,winterstale,1610 conference,2,winterstale,1610 rotten,2,winterstale,1610 poison,2,winterstale,1610 charged,2,winterstale,1610 anger,2,winterstale,1610 disposition,2,winterstale,1610 nest,2,winterstale,1610 whistle,2,winterstale,1610 went,2,winterstale,1610 stirs,2,winterstale,1610 followers,2,winterstale,1610 fill'd,2,winterstale,1610 gifts,2,winterstale,1610 glad,2,winterstale,1610 minister,2,winterstale,1610 evil,2,winterstale,1610 Swear,2,winterstale,1610 durst,2,winterstale,1610 assisted,2,winterstale,1610 pedlar,2,winterstale,1610 character,2,winterstale,1610 desert,2,winterstale,1610 Proceed,2,winterstale,1610 wert,2,winterstale,1610 race,2,winterstale,1610 pleased,2,winterstale,1610 discover,2,winterstale,1610 colours,2,winterstale,1610 fly,2,winterstale,1610 company,2,winterstale,1610 fie,2,winterstale,1610 allow,2,winterstale,1610 offices,2,winterstale,1610 perfect,2,winterstale,1610 fine,2,winterstale,1610 vow,2,winterstale,1610 rice,2,winterstale,1610 fill,2,winterstale,1610 safety,2,winterstale,1610 Lead,2,winterstale,1610 answer'd,2,winterstale,1610 ta'en,2,winterstale,1610 wide,2,winterstale,1610 pocket,2,winterstale,1610 partly,2,winterstale,1610 appointed,2,winterstale,1610 friendship,2,winterstale,1610 hook,2,winterstale,1610 weakness,2,winterstale,1610 names,2,winterstale,1610 fast,2,winterstale,1610 freshest,2,winterstale,1610 flock,2,winterstale,1610 officious,2,winterstale,1610 complaint,2,winterstale,1610 coat,2,winterstale,1610 constant,2,winterstale,1610 man's,2,winterstale,1610 cup,2,winterstale,1610 carry,2,winterstale,1610 wild,2,winterstale,1610 holds,2,winterstale,1610 tape,2,winterstale,1610 greet,2,winterstale,1610 feasts,2,winterstale,1610 spices,2,winterstale,1610 peerless,2,winterstale,1610 arrive,2,winterstale,1610 strong,2,winterstale,1610 Wherefore,2,winterstale,1610 counsels,2,winterstale,1610 falsehood,2,winterstale,1610 Shepherds,2,winterstale,1610 also,2,winterstale,1610 robes,2,winterstale,1610 along,2,winterstale,1610 commission,2,winterstale,1610 alone,2,winterstale,1610 copy,2,winterstale,1610 waiting,2,winterstale,1610 captain,2,winterstale,1610 kingdom,2,winterstale,1610 needful,2,winterstale,1610 baby,2,winterstale,1610 troth,2,winterstale,1610 feeling,2,winterstale,1610 south,2,winterstale,1610 vessel,2,winterstale,1610 liking,2,winterstale,1610 Mine,2,winterstale,1610 fellows,2,winterstale,1610 prophecy,2,winterstale,1610 sound,2,winterstale,1610 thrust,2,winterstale,1610 Gentlemen,2,winterstale,1610 usage,2,winterstale,1610 He'll,2,winterstale,1610 casting,2,winterstale,1610 lovest,2,winterstale,1610 tied,2,winterstale,1610 remove,2,winterstale,1610 souls,2,winterstale,1610 beheld,2,winterstale,1610 believed,2,winterstale,1610 Cry,2,winterstale,1610 Chorus,2,winterstale,1610 post,2,winterstale,1610 Neither,2,winterstale,1610 remote,2,winterstale,1610 sent,2,winterstale,1610 nurse,2,winterstale,1610 chose,2,winterstale,1610 barren,2,winterstale,1610 match,2,winterstale,1610 methought,2,winterstale,1610 safer,2,winterstale,1610 unspeakable,2,winterstale,1610 sheets,2,winterstale,1610 Two,2,winterstale,1610 spider,2,winterstale,1610 petty,2,winterstale,1610 mar,2,winterstale,1610 alter'd,2,winterstale,1610 threes,2,winterstale,1610 afeard,2,winterstale,1610 'scape,2,winterstale,1610 committing,2,winterstale,1610 seldom,2,winterstale,1610 vices,2,winterstale,1610 begins,2,winterstale,1610 Does,2,winterstale,1610 geld,2,winterstale,1610 Bohemia's,2,winterstale,1610 evils,2,winterstale,1610 burns,2,winterstale,1610 pleasant,2,winterstale,1610 mocked,2,winterstale,1610 question'd,2,winterstale,1610 on's,2,winterstale,1610 appearing,2,winterstale,1610 lass,2,winterstale,1610 fulfilled,2,winterstale,1610 revenges,2,winterstale,1610 fasting,2,winterstale,1610 fright,2,winterstale,1610 list,2,winterstale,1610 human,2,winterstale,1610 justified,2,winterstale,1610 cordial,2,winterstale,1610 follow'd,2,winterstale,1610 transported,2,winterstale,1610 wildly,2,winterstale,1610 silent,2,winterstale,1610 forgiveness,2,winterstale,1610 spring,2,winterstale,1610 dash,2,winterstale,1610 pattern,2,winterstale,1610 centre,2,winterstale,1610 brat,2,winterstale,1610 with't,2,winterstale,1610 Less,2,winterstale,1610 frame,2,winterstale,1610 due,2,winterstale,1610 miseries,2,winterstale,1610 fifteen,2,winterstale,1610 Until,2,winterstale,1610 success,2,winterstale,1610 shake,2,winterstale,1610 undergo,2,winterstale,1610 Thereof,2,winterstale,1610 dame,2,winterstale,1610 tempt,2,winterstale,1610 obedient,2,winterstale,1610 he'll,2,winterstale,1610 wills,2,winterstale,1610 greatness,2,winterstale,1610 wenches,2,winterstale,1610 kill,2,winterstale,1610 forbear,2,winterstale,1610 obedience,2,winterstale,1610 oaths,2,winterstale,1610 bids,2,winterstale,1610 hangman,2,winterstale,1610 undertake,2,winterstale,1610 dim,2,winterstale,1610 ships,2,winterstale,1610 pedlar's,2,winterstale,1610 hedge,2,winterstale,1610 daughters,2,winterstale,1610 V,3,winterstale,1610 times,3,winterstale,1610 red,3,winterstale,1610 fancy,3,winterstale,1610 wears,3,winterstale,1610 wish'd,3,winterstale,1610 possible,3,winterstale,1610 Alas,3,winterstale,1610 alike,3,winterstale,1610 express,3,winterstale,1610 held,3,winterstale,1610 moiety,3,winterstale,1610 truly,3,winterstale,1610 Must,3,winterstale,1610 violent,3,winterstale,1610 mere,3,winterstale,1610 Either,3,winterstale,1610 errand,3,winterstale,1610 understand,3,winterstale,1610 Verily,3,winterstale,1610 advocate,3,winterstale,1610 run,3,winterstale,1610 Once,3,winterstale,1610 strength,3,winterstale,1610 seven,3,winterstale,1610 counted,3,winterstale,1610 conscience,3,winterstale,1610 thousands,3,winterstale,1610 bearing,3,winterstale,1610 dram,3,winterstale,1610 broken,3,winterstale,1610 boldness,3,winterstale,1610 plight,3,winterstale,1610 calf,3,winterstale,1610 soft,3,winterstale,1610 blessed,3,winterstale,1610 visitation,3,winterstale,1610 sit,3,winterstale,1610 conceive,3,winterstale,1610 body,3,winterstale,1610 walk,3,winterstale,1610 'twas,3,winterstale,1610 winds,3,winterstale,1610 Farewell,3,winterstale,1610 countenance,3,winterstale,1610 Their,3,winterstale,1610 design,3,winterstale,1610 second,3,winterstale,1610 middle,3,winterstale,1610 sky,3,winterstale,1610 Music,3,winterstale,1610 faults,3,winterstale,1610 play'd,3,winterstale,1610 daughter's,3,winterstale,1610 ourselves,3,winterstale,1610 fight,3,winterstale,1610 received,3,winterstale,1610 dances,3,winterstale,1610 profess,3,winterstale,1610 Mamillius,3,winterstale,1610 Turn,3,winterstale,1610 actions,3,winterstale,1610 relation,3,winterstale,1610 Leave,3,winterstale,1610 fearful,3,winterstale,1610 upon't,3,winterstale,1610 language,3,winterstale,1610 negligent,3,winterstale,1610 Might,3,winterstale,1610 mirth,3,winterstale,1610 access,3,winterstale,1610 wish,3,winterstale,1610 custom,3,winterstale,1610 murder,3,winterstale,1610 sooth,3,winterstale,1610 bidding,3,winterstale,1610 warm,3,winterstale,1610 Shepherdesses,3,winterstale,1610 deserves,3,winterstale,1610 fairest,3,winterstale,1610 goddess,3,winterstale,1610 he's,3,winterstale,1610 bitter,3,winterstale,1610 big,3,winterstale,1610 manners,3,winterstale,1610 utter,3,winterstale,1610 infection,3,winterstale,1610 An,3,winterstale,1610 chaste,3,winterstale,1610 deeds,3,winterstale,1610 hopes,3,winterstale,1610 proof,3,winterstale,1610 canst,3,winterstale,1610 star,3,winterstale,1610 force,3,winterstale,1610 pawn,3,winterstale,1610 required,3,winterstale,1610 beg,3,winterstale,1610 whole,3,winterstale,1610 bless,3,winterstale,1610 deserved,3,winterstale,1610 considered,3,winterstale,1610 adulteress,3,winterstale,1610 yourselves,3,winterstale,1610 weep,3,winterstale,1610 Dion,3,winterstale,1610 got,3,winterstale,1610 homely,3,winterstale,1610 weak,3,winterstale,1610 wear,3,winterstale,1610 swift,3,winterstale,1610 divine,3,winterstale,1610 picture,3,winterstale,1610 noted,3,winterstale,1610 confess,3,winterstale,1610 satisfy,3,winterstale,1610 embraces,3,winterstale,1610 consider,3,winterstale,1610 beat,3,winterstale,1610 needs,3,winterstale,1610 tongues,3,winterstale,1610 dignity,3,winterstale,1610 priest,3,winterstale,1610 Besides,3,winterstale,1610 seeming,3,winterstale,1610 accused,3,winterstale,1610 lady's,3,winterstale,1610 appeared,3,winterstale,1610 forget,3,winterstale,1610 know't,3,winterstale,1610 whereof,3,winterstale,1610 Myself,3,winterstale,1610 train,3,winterstale,1610 settled,3,winterstale,1610 Servants,3,winterstale,1610 removed,3,winterstale,1610 Grace,3,winterstale,1610 act,3,winterstale,1610 greater,3,winterstale,1610 choice,3,winterstale,1610 tenderly,3,winterstale,1610 easy,3,winterstale,1610 hard,3,winterstale,1610 pale,3,winterstale,1610 perform'd,3,winterstale,1610 spur,3,winterstale,1610 nobleness,3,winterstale,1610 plain,3,winterstale,1610 mighty,3,winterstale,1610 praise,3,winterstale,1610 pluck,3,winterstale,1610 She's,3,winterstale,1610 pair,3,winterstale,1610 pack,3,winterstale,1610 tyranny,3,winterstale,1610 fond,3,winterstale,1610 ye,3,winterstale,1610 secret,3,winterstale,1610 trick,3,winterstale,1610 undone,3,winterstale,1610 new,3,winterstale,1610 posterns,3,winterstale,1610 condemn'd,3,winterstale,1610 flayed,3,winterstale,1610 clamour,3,winterstale,1610 entertainment,3,winterstale,1610 bears,3,winterstale,1610 beard,3,winterstale,1610 estate,3,winterstale,1610 ours,3,winterstale,1610 year,3,winterstale,1610 mock'd,3,winterstale,1610 chase,3,winterstale,1610 you'ld,3,winterstale,1610 unhappy,3,winterstale,1610 mouth,3,winterstale,1610 be't,3,winterstale,1610 powers,3,winterstale,1610 Dost,3,winterstale,1610 reigns,3,winterstale,1610 mile,3,winterstale,1610 stars,3,winterstale,1610 foolish,3,winterstale,1610 blush,3,winterstale,1610 didst,3,winterstale,1610 dream,3,winterstale,1610 Any,3,winterstale,1610 Delphos,3,winterstale,1610 quench,3,winterstale,1610 because,3,winterstale,1610 brains,3,winterstale,1610 ballads,3,winterstale,1610 shoulder,3,winterstale,1610 benefit,3,winterstale,1610 fish,3,winterstale,1610 whispering,3,winterstale,1610 accusation,3,winterstale,1610 Being,3,winterstale,1610 letters,3,winterstale,1610 desires,3,winterstale,1610 stain,3,winterstale,1610 breed,3,winterstale,1610 same,3,winterstale,1610 opinion,3,winterstale,1610 former,3,winterstale,1610 five,3,winterstale,1610 oft,3,winterstale,1610 says,3,winterstale,1610 third,3,winterstale,1610 morrow,3,winterstale,1610 gap,3,winterstale,1610 burthen,3,winterstale,1610 tunes,3,winterstale,1610 earnest,3,winterstale,1610 Worthy,3,winterstale,1610 receive,3,winterstale,1610 commanded,3,winterstale,1610 growing,3,winterstale,1610 print,3,winterstale,1610 danger,3,winterstale,1610 serve,3,winterstale,1610 coming,3,winterstale,1610 happy,3,winterstale,1610 faces,3,winterstale,1610 penitent,3,winterstale,1610 served,3,winterstale,1610 weeping,3,winterstale,1610 wife's,3,winterstale,1610 waters,3,winterstale,1610 farther,3,winterstale,1610 angry,3,winterstale,1610 fail,3,winterstale,1610 contempt,3,winterstale,1610 table,3,winterstale,1610 grieve,3,winterstale,1610 wept,3,winterstale,1610 'fore,3,winterstale,1610 grant,3,winterstale,1610 methinks,3,winterstale,1610 passion,3,winterstale,1610 continue,3,winterstale,1610 particular,3,winterstale,1610 horn,3,winterstale,1610 bark,3,winterstale,1610 herself,3,winterstale,1610 depart,3,winterstale,1610 wives,3,winterstale,1610 deliver'd,3,winterstale,1610 dam,3,winterstale,1610 songs,3,winterstale,1610 departure,3,winterstale,1610 affliction,3,winterstale,1610 sights,3,winterstale,1610 shore,3,winterstale,1610 accident,3,winterstale,1610 chapel,3,winterstale,1610 None,3,winterstale,1610 dangerous,3,winterstale,1610 unto,3,winterstale,1610 lives,3,winterstale,1610 virtues,3,winterstale,1610 hearts,3,winterstale,1610 thereto,3,winterstale,1610 trespass,3,winterstale,1610 sees,3,winterstale,1610 tells,3,winterstale,1610 Believe,3,winterstale,1610 traitor,3,winterstale,1610 send,3,winterstale,1610 mother's,3,winterstale,1610 alas,3,winterstale,1610 cold,3,winterstale,1610 couple,3,winterstale,1610 mad,3,winterstale,1610 spirits,3,winterstale,1610 abroad,3,winterstale,1610 hostess,3,winterstale,1610 forced,3,winterstale,1610 dread,3,winterstale,1610 straight,3,winterstale,1610 remember,3,winterstale,1610 Before,3,winterstale,1610 sometimes,3,winterstale,1610 virtue,3,winterstale,1610 seemed,3,winterstale,1610 besides,3,winterstale,1610 moe,3,winterstale,1610 try,3,winterstale,1610 simple,3,winterstale,1610 You'll,3,winterstale,1610 honour'd,3,winterstale,1610 ordering,3,winterstale,1610 lord's,3,winterstale,1610 dry,3,winterstale,1610 instantly,3,winterstale,1610 guests,3,winterstale,1610 smell,3,winterstale,1610 gloves,3,winterstale,1610 lace,3,winterstale,1610 wouldst,3,winterstale,1610 woo'd,3,winterstale,1610 fortunes,3,winterstale,1610 lads,3,winterstale,1610 summer,3,winterstale,1610 You're,4,winterstale,1610 suffer,4,winterstale,1610 country,4,winterstale,1610 offer,4,winterstale,1610 under,4,winterstale,1610 contrary,4,winterstale,1610 Whom,4,winterstale,1610 friends,4,winterstale,1610 cast,4,winterstale,1610 case,4,winterstale,1610 softly,4,winterstale,1610 mercy,4,winterstale,1610 Apollo's,4,winterstale,1610 sad,4,winterstale,1610 Whose,4,winterstale,1610 grown,4,winterstale,1610 toward,4,winterstale,1610 cheek,4,winterstale,1610 sixteen,4,winterstale,1610 Methinks,4,winterstale,1610 throne,4,winterstale,1610 prettiest,4,winterstale,1610 deliver,4,winterstale,1610 subject,4,winterstale,1610 Doricles,4,winterstale,1610 doubt,4,winterstale,1610 worst,4,winterstale,1610 worse,4,winterstale,1610 Out,4,winterstale,1610 Officers,4,winterstale,1610 kill'd,4,winterstale,1610 encounter,4,winterstale,1610 choose,4,winterstale,1610 wind,4,winterstale,1610 want,4,winterstale,1610 trifles,4,winterstale,1610 Cleomenes,4,winterstale,1610 breeding,4,winterstale,1610 office,4,winterstale,1610 party,4,winterstale,1610 spoke,4,winterstale,1610 colour,4,winterstale,1610 authority,4,winterstale,1610 chamber,4,winterstale,1610 sigh,4,winterstale,1610 scarce,4,winterstale,1610 neither,4,winterstale,1610 patience,4,winterstale,1610 denied,4,winterstale,1610 sings,4,winterstale,1610 changed,4,winterstale,1610 pass,4,winterstale,1610 just,4,winterstale,1610 jealousies,4,winterstale,1610 Fortune,4,winterstale,1610 Emilia,4,winterstale,1610 favour,4,winterstale,1610 shed,4,winterstale,1610 ado,4,winterstale,1610 harm,4,winterstale,1610 vengeance,4,winterstale,1610 paid,4,winterstale,1610 rough,4,winterstale,1610 right,4,winterstale,1610 Hark,4,winterstale,1610 having,4,winterstale,1610 through,4,winterstale,1610 cottage,4,winterstale,1610 garments,4,winterstale,1610 maid,4,winterstale,1610 nay,4,winterstale,1610 unknown,4,winterstale,1610 almost,4,winterstale,1610 majesty,4,winterstale,1610 adventure,4,winterstale,1610 perform,4,winterstale,1610 Some,4,winterstale,1610 singing,4,winterstale,1610 son's,4,winterstale,1610 knows,4,winterstale,1610 state,4,winterstale,1610 blow,4,winterstale,1610 trouble,4,winterstale,1610 living,4,winterstale,1610 close,4,winterstale,1610 get,4,winterstale,1610 neat,4,winterstale,1610 pound,4,winterstale,1610 neck,4,winterstale,1610 swain,4,winterstale,1610 We'll,4,winterstale,1610 heigh,4,winterstale,1610 called,4,winterstale,1610 Can,4,winterstale,1610 arms,4,winterstale,1610 dreams,4,winterstale,1610 Make,4,winterstale,1610 That's,4,winterstale,1610 fortune,4,winterstale,1610 tune,4,winterstale,1610 Mark,4,winterstale,1610 married,4,winterstale,1610 an't,4,winterstale,1610 perceive,4,winterstale,1610 secrets,4,winterstale,1610 is't,4,winterstale,1610 gentlemen,4,winterstale,1610 given,4,winterstale,1610 clear,4,winterstale,1610 green,4,winterstale,1610 follows,4,winterstale,1610 Prince,4,winterstale,1610 goodness,4,winterstale,1610 back,4,winterstale,1610 'twixt,4,winterstale,1610 cry,4,winterstale,1610 therein,4,winterstale,1610 curtain,4,winterstale,1610 self,4,winterstale,1610 hither,4,winterstale,1610 sickness,4,winterstale,1610 footman,4,winterstale,1610 ear,4,winterstale,1610 met,4,winterstale,1610 meeting,4,winterstale,1610 sovereign,4,winterstale,1610 Since,4,winterstale,1610 powerful,4,winterstale,1610 Indeed,4,winterstale,1610 credit,4,winterstale,1610 witness,4,winterstale,1610 Florizel,4,winterstale,1610 laid,4,winterstale,1610 blessing,4,winterstale,1610 Too,4,winterstale,1610 awake,4,winterstale,1610 remembrance,4,winterstale,1610 neighbour,4,winterstale,1610 enemy,4,winterstale,1610 days,5,winterstale,1610 brows,5,winterstale,1610 Tell,5,winterstale,1610 soul,5,winterstale,1610 innocence,5,winterstale,1610 lies,5,winterstale,1610 song,5,winterstale,1610 draw,5,winterstale,1610 words,5,winterstale,1610 gross,5,winterstale,1610 hanging,5,winterstale,1610 visit,5,winterstale,1610 stands,5,winterstale,1610 bound,5,winterstale,1610 warrant,5,winterstale,1610 Was,5,winterstale,1610 looks,5,winterstale,1610 Attendants,5,winterstale,1610 betwixt,5,winterstale,1610 turn,5,winterstale,1610 courtier,5,winterstale,1610 absence,5,winterstale,1610 fault,5,winterstale,1610 thence,5,winterstale,1610 weather,5,winterstale,1610 others,5,winterstale,1610 kneel,5,winterstale,1610 Please,5,winterstale,1610 boot,5,winterstale,1610 mistake,5,winterstale,1610 Ladies,5,winterstale,1610 There's,5,winterstale,1610 LEONTES',5,winterstale,1610 senses,5,winterstale,1610 I',5,winterstale,1610 stir,5,winterstale,1610 creature,5,winterstale,1610 IV,5,winterstale,1610 bid,5,winterstale,1610 Let's,5,winterstale,1610 Has,5,winterstale,1610 goodly,5,winterstale,1610 beyond,5,winterstale,1610 twice,5,winterstale,1610 Like,5,winterstale,1610 sing,5,winterstale,1610 begin,5,winterstale,1610 breath,5,winterstale,1610 affection,5,winterstale,1610 promised,5,winterstale,1610 yea,5,winterstale,1610 tyrant,5,winterstale,1610 servant,5,winterstale,1610 touch'd,5,winterstale,1610 thyself,5,winterstale,1610 door,5,winterstale,1610 feast,5,winterstale,1610 move,5,winterstale,1610 month,5,winterstale,1610 aside,5,winterstale,1610 moon,5,winterstale,1610 lest,5,winterstale,1610 loved,5,winterstale,1610 four,5,winterstale,1610 course,5,winterstale,1610 point,5,winterstale,1610 bosom,5,winterstale,1610 alive,5,winterstale,1610 puts,5,winterstale,1610 push,5,winterstale,1610 fresh,5,winterstale,1610 chance,5,winterstale,1610 King,5,winterstale,1610 thanks,5,winterstale,1610 guest,5,winterstale,1610 room,5,winterstale,1610 water,5,winterstale,1610 gentle,5,winterstale,1610 ignorant,5,winterstale,1610 question,5,winterstale,1610 See,5,winterstale,1610 Look,5,winterstale,1610 exchange,5,winterstale,1610 prize,5,winterstale,1610 let's,5,winterstale,1610 ones,5,winterstale,1610 suspicion,5,winterstale,1610 Dear,5,winterstale,1610 flight,5,winterstale,1610 standing,5,winterstale,1610 save,5,winterstale,1610 between,5,winterstale,1610 caught,5,winterstale,1610 news,5,winterstale,1610 taken,5,winterstale,1610 ground,5,winterstale,1610 fit,5,winterstale,1610 ne'er,5,winterstale,1610 worship,5,winterstale,1610 shows,5,winterstale,1610 whither,5,winterstale,1610 Very,5,winterstale,1610 tale,5,winterstale,1610 tall,5,winterstale,1610 holy,5,winterstale,1610 cut,5,winterstale,1610 request,5,winterstale,1610 winter,5,winterstale,1610 drunk,5,winterstale,1610 seek,5,winterstale,1610 either,5,winterstale,1610 presence,5,winterstale,1610 look'd,5,winterstale,1610 prison,5,winterstale,1610 Nothing,5,winterstale,1610 least,5,winterstale,1610 sister,5,winterstale,1610 Away,5,winterstale,1610 thither,5,winterstale,1610 late,5,winterstale,1610 beauty,5,winterstale,1610 Without,5,winterstale,1610 strange,5,winterstale,1610 going,5,winterstale,1610 content,5,winterstale,1610 Did,5,winterstale,1610 Lest,5,winterstale,1610 He's,5,winterstale,1610 crown,5,winterstale,1610 heir,6,winterstale,1610 speech,6,winterstale,1610 villain,6,winterstale,1610 Never,6,winterstale,1610 while,6,winterstale,1610 prisoner,6,winterstale,1610 honourable,6,winterstale,1610 appear,6,winterstale,1610 its,6,winterstale,1610 become,6,winterstale,1610 charge,6,winterstale,1610 purse,6,winterstale,1610 glass,6,winterstale,1610 merry,6,winterstale,1610 's,6,winterstale,1610 becomes,6,winterstale,1610 read,6,winterstale,1610 These,6,winterstale,1610 white,6,winterstale,1610 feel,6,winterstale,1610 service,6,winterstale,1610 flesh,6,winterstale,1610 anon,6,winterstale,1610 side,6,winterstale,1610 aboard,6,winterstale,1610 Still,6,winterstale,1610 kings,6,winterstale,1610 innocent,6,winterstale,1610 Had,6,winterstale,1610 ears,6,winterstale,1610 gold,6,winterstale,1610 grief,6,winterstale,1610 behind,6,winterstale,1610 Prithee,6,winterstale,1610 children,6,winterstale,1610 doth,6,winterstale,1610 longer,6,winterstale,1610 Fear,6,winterstale,1610 approach,6,winterstale,1610 manner,6,winterstale,1610 age,6,winterstale,1610 loss,6,winterstale,1610 ill,6,winterstale,1610 half,6,winterstale,1610 ship,6,winterstale,1610 foot,6,winterstale,1610 show,6,winterstale,1610 rogue,6,winterstale,1610 shearing,6,winterstale,1610 Hath,6,winterstale,1610 often,6,winterstale,1610 justice,6,winterstale,1610 strike,6,winterstale,1610 youth,6,winterstale,1610 precious,6,winterstale,1610 high,6,winterstale,1610 end,6,winterstale,1610 there's,6,winterstale,1610 mark,6,winterstale,1610 affairs,6,winterstale,1610 maids,6,winterstale,1610 near,6,winterstale,1610 Say,6,winterstale,1610 face,6,winterstale,1610 next,6,winterstale,1610 marry,6,winterstale,1610 what's,6,winterstale,1610 guilty,6,winterstale,1610 Time,6,winterstale,1610 'em,6,winterstale,1610 find,6,winterstale,1610 folly,6,winterstale,1610 lived,6,winterstale,1610 Officer,6,winterstale,1610 hope,6,winterstale,1610 Mariner,6,winterstale,1610 reason,6,winterstale,1610 pardon,6,winterstale,1610 sacred,6,winterstale,1610 person,6,winterstale,1610 house,6,winterstale,1610 statue,6,winterstale,1610 lip,6,winterstale,1610 EMILIA,6,winterstale,1610 land,6,winterstale,1610 certain,6,winterstale,1610 kind,6,winterstale,1610 command,6,winterstale,1610 spirit,6,winterstale,1610 lack,6,winterstale,1610 e'er,6,winterstale,1610 shepherd's,7,winterstale,1610 answer,7,winterstale,1610 took,7,winterstale,1610 for't,7,winterstale,1610 tears,7,winterstale,1610 care,7,winterstale,1610 dance,7,winterstale,1610 full,7,winterstale,1610 Antigonus,7,winterstale,1610 bastard,7,winterstale,1610 worth,7,winterstale,1610 counsel,7,winterstale,1610 after,7,winterstale,1610 worthy,7,winterstale,1610 sun,7,winterstale,1610 fardel,7,winterstale,1610 pretty,7,winterstale,1610 desire,7,winterstale,1610 each,7,winterstale,1610 III,7,winterstale,1610 pay,7,winterstale,1610 itself,7,winterstale,1610 On,7,winterstale,1610 means,7,winterstale,1610 blest,7,winterstale,1610 dost,7,winterstale,1610 tongue,7,winterstale,1610 Here's,7,winterstale,1610 husband,7,winterstale,1610 loves,7,winterstale,1610 Yet,7,winterstale,1610 twenty,7,winterstale,1610 hot,7,winterstale,1610 fool,7,winterstale,1610 change,7,winterstale,1610 note,7,winterstale,1610 rare,7,winterstale,1610 wonder,7,winterstale,1610 mind,7,winterstale,1610 already,7,winterstale,1610 Third,7,winterstale,1610 Were,7,winterstale,1610 break,7,winterstale,1610 services,7,winterstale,1610 believe,7,winterstale,1610 oath,7,winterstale,1610 do't,7,winterstale,1610 rich,7,winterstale,1610 talk,7,winterstale,1610 thousand,7,winterstale,1610 wilt,7,winterstale,1610 prithee,7,winterstale,1610 we'll,7,winterstale,1610 seem,7,winterstale,1610 goes,7,winterstale,1610 sleep,7,winterstale,1610 thoughts,7,winterstale,1610 last,7,winterstale,1610 Beseech,7,winterstale,1610 May,7,winterstale,1610 Thy,7,winterstale,1610 behold,7,winterstale,1610 Take,7,winterstale,1610 shalt,7,winterstale,1610 shame,7,winterstale,1610 power,7,winterstale,1610 told,8,winterstale,1610 pity,8,winterstale,1610 help,8,winterstale,1610 rather,8,winterstale,1610 head,8,winterstale,1610 sure,8,winterstale,1610 she's,8,winterstale,1610 'twere,8,winterstale,1610 heaven,8,winterstale,1610 rest,8,winterstale,1610 Her,8,winterstale,1610 flowers,8,winterstale,1610 II,8,winterstale,1610 night,8,winterstale,1610 sorry,8,winterstale,1610 deed,8,winterstale,1610 air,8,winterstale,1610 Apollo,8,winterstale,1610 dear,8,winterstale,1610 long,8,winterstale,1610 speed,8,winterstale,1610 knew,8,winterstale,1610 brought,8,winterstale,1610 keep,8,winterstale,1610 ballad,8,winterstale,1610 Lords,8,winterstale,1610 faith,8,winterstale,1610 nose,8,winterstale,1610 tender,8,winterstale,1610 ere,8,winterstale,1610 All,8,winterstale,1610 I'ld,8,winterstale,1610 fire,8,winterstale,1610 sorrow,8,winterstale,1610 Well,8,winterstale,1610 hour,8,winterstale,1610 kiss,8,winterstale,1610 law,8,winterstale,1610 use,8,winterstale,1610 doing,8,winterstale,1610 liege,8,winterstale,1610 without,8,winterstale,1610 die,8,winterstale,1610 women,8,winterstale,1610 sight,9,winterstale,1610 trust,9,winterstale,1610 Upon,9,winterstale,1610 years,9,winterstale,1610 Nor,9,winterstale,1610 set,9,winterstale,1610 sworn,9,winterstale,1610 within,9,winterstale,1610 king's,9,winterstale,1610 DION,9,winterstale,1610 One,9,winterstale,1610 At,9,winterstale,1610 Perdita,9,winterstale,1610 prove,9,winterstale,1610 Re,9,winterstale,1610 stone,9,winterstale,1610 less,9,winterstale,1610 grace,9,winterstale,1610 welcome,9,winterstale,1610 open,9,winterstale,1610 ARCHIDAMUS,9,winterstale,1610 report,9,winterstale,1610 lords,9,winterstale,1610 you'll,9,winterstale,1610 They,9,winterstale,1610 Then,9,winterstale,1610 why,9,winterstale,1610 themselves,9,winterstale,1610 work,9,winterstale,1610 palace,9,winterstale,1610 lay,9,winterstale,1610 home,9,winterstale,1610 babe,9,winterstale,1610 together,9,winterstale,1610 madam,9,winterstale,1610 purpose,9,winterstale,1610 follow,9,winterstale,1610 princess,9,winterstale,1610 woman,9,winterstale,1610 o'er,10,winterstale,1610 Give,10,winterstale,1610 came,10,winterstale,1610 't,10,winterstale,1610 cause,10,winterstale,1610 mother,10,winterstale,1610 piece,10,winterstale,1610 Our,10,winterstale,1610 Here,10,winterstale,1610 false,10,winterstale,1610 Though,10,winterstale,1610 knowledge,10,winterstale,1610 to't,10,winterstale,1610 bed,10,winterstale,1610 enter,10,winterstale,1610 past,10,winterstale,1610 noble,10,winterstale,1610 Most,10,winterstale,1610 money,10,winterstale,1610 Are,10,winterstale,1610 far,10,winterstale,1610 into,10,winterstale,1610 myself,10,winterstale,1610 known,10,winterstale,1610 over,10,winterstale,1610 free,10,winterstale,1610 once,10,winterstale,1610 word,10,winterstale,1610 shepherd,10,winterstale,1610 master,10,winterstale,1610 Pray,10,winterstale,1610 gods,10,winterstale,1610 queen's,10,winterstale,1610 on't,10,winterstale,1610 yourself,11,winterstale,1610 highness,11,winterstale,1610 heavens,11,winterstale,1610 mean,11,winterstale,1610 Leontes,11,winterstale,1610 play,11,winterstale,1610 left,11,winterstale,1610 sheep,11,winterstale,1610 hands,11,winterstale,1610 Second,11,winterstale,1610 place,11,winterstale,1610 forth,11,winterstale,1610 comes,11,winterstale,1610 need,11,winterstale,1610 thine,11,winterstale,1610 beseech,11,winterstale,1610 hold,11,winterstale,1610 Gaoler,11,winterstale,1610 seen,11,winterstale,1610 honesty,11,winterstale,1610 dare,11,winterstale,1610 Nay,12,winterstale,1610 royal,12,winterstale,1610 pray,12,winterstale,1610 world,12,winterstale,1610 saw,12,winterstale,1610 enough,12,winterstale,1610 against,12,winterstale,1610 Aside,12,winterstale,1610 seems,12,winterstale,1610 matter,12,winterstale,1610 More,12,winterstale,1610 Lady,12,winterstale,1610 indeed,12,winterstale,1610 From,12,winterstale,1610 grave,12,winterstale,1610 still,12,winterstale,1610 stand,12,winterstale,1610 only,12,winterstale,1610 comfort,12,winterstale,1610 lie,12,winterstale,1610 makes,12,winterstale,1610 live,12,winterstale,1610 Where,12,winterstale,1610 mistress,13,winterstale,1610 joy,13,winterstale,1610 truth,13,winterstale,1610 gracious,13,winterstale,1610 away,13,winterstale,1610 friend,13,winterstale,1610 in't,13,winterstale,1610 buy,13,winterstale,1610 earth,13,winterstale,1610 Should,13,winterstale,1610 many,13,winterstale,1610 heard,13,winterstale,1610 'Tis,13,winterstale,1610 please,13,winterstale,1610 men,13,winterstale,1610 two,13,winterstale,1610 nature,13,winterstale,1610 sea,14,winterstale,1610 else,14,winterstale,1610 Ay,14,winterstale,1610 name,14,winterstale,1610 therefore,14,winterstale,1610 said,14,winterstale,1610 DORCAS,14,winterstale,1610 young,14,winterstale,1610 issue,14,winterstale,1610 oracle,14,winterstale,1610 father's,14,winterstale,1610 Even,14,winterstale,1610 till,14,winterstale,1610 swear,14,winterstale,1610 whom,14,winterstale,1610 CLEOMENES,14,winterstale,1610 another,15,winterstale,1610 Polixenes,15,winterstale,1610 fear,15,winterstale,1610 tell,15,winterstale,1610 His,15,winterstale,1610 stay,15,winterstale,1610 down,15,winterstale,1610 dead,15,winterstale,1610 that's,15,winterstale,1610 lost,15,winterstale,1610 little,15,winterstale,1610 eye,15,winterstale,1610 things,15,winterstale,1610 ACT,15,winterstale,1610 child,15,winterstale,1610 yours,15,winterstale,1610 found,15,winterstale,1610 fair,15,winterstale,1610 even,15,winterstale,1610 honest,15,winterstale,1610 leave,15,winterstale,1610 every,16,winterstale,1610 Would,16,winterstale,1610 Who,16,winterstale,1610 something,16,winterstale,1610 WINTER'S,16,winterstale,1610 fellow,16,winterstale,1610 hence,16,winterstale,1610 Go,16,winterstale,1610 i',16,winterstale,1610 Paulina,16,winterstale,1610 part,16,winterstale,1610 TALE,16,winterstale,1610 THE,16,winterstale,1610 MOPSA,16,winterstale,1610 When,16,winterstale,1610 SCENE,16,winterstale,1610 Why,17,winterstale,1610 born,17,winterstale,1610 both,17,winterstale,1610 about,17,winterstale,1610 MAMILLIUS,17,winterstale,1610 Be,17,winterstale,1610 blood,17,winterstale,1610 those,17,winterstale,1610 Have,17,winterstale,1610 where,17,winterstale,1610 Shall,17,winterstale,1610 Sicilia,17,winterstale,1610 sweet,17,winterstale,1610 first,17,winterstale,1610 There,18,winterstale,1610 bring,18,winterstale,1610 Good,18,winterstale,1610 put,18,winterstale,1610 present,18,winterstale,1610 hast,18,winterstale,1610 thing,18,winterstale,1610 Hermione,18,winterstale,1610 might,18,winterstale,1610 Now,19,winterstale,1610 since,19,winterstale,1610 gone,19,winterstale,1610 does,19,winterstale,1610 Sir,19,winterstale,1610 before,19,winterstale,1610 old,19,winterstale,1610 three,19,winterstale,1610 day,19,winterstale,1610 Let,19,winterstale,1610 eyes,19,winterstale,1610 other,19,winterstale,1610 Will,20,winterstale,1610 brother,20,winterstale,1610 It,20,winterstale,1610 Exeunt,20,winterstale,1610 though,20,winterstale,1610 could,20,winterstale,1610 off,20,winterstale,1610 thus,20,winterstale,1610 Exit,20,winterstale,1610 lady,20,winterstale,1610 call,21,winterstale,1610 Do,21,winterstale,1610 By,21,winterstale,1610 Than,21,winterstale,1610 Lord,21,winterstale,1610 again,21,winterstale,1610 court,21,winterstale,1610 way,21,winterstale,1610 gentleman,21,winterstale,1610 death,22,winterstale,1610 Servant,22,winterstale,1610 never,22,winterstale,1610 whose,22,winterstale,1610 prince,22,winterstale,1610 She,22,winterstale,1610 wife,22,winterstale,1610 poor,22,winterstale,1610 business,23,winterstale,1610 thought,23,winterstale,1610 hear,23,winterstale,1610 Not,23,winterstale,1610 better,23,winterstale,1610 ANTIGONUS,23,winterstale,1610 best,23,winterstale,1610 Or,23,winterstale,1610 look,23,winterstale,1610 none,23,winterstale,1610 himself,23,winterstale,1610 and,535,winterstale,1610 boy,24,winterstale,1610 Thou,24,winterstale,1610 not,280,winterstale,1610 ',25,winterstale,1610 In,25,winterstale,1610 bear,25,winterstale,1610 love,25,winterstale,1610 made,25,winterstale,1610 very,25,winterstale,1610 who,25,winterstale,1610 has,26,winterstale,1610 art,26,winterstale,1610 heart,26,winterstale,1610 own,26,winterstale,1610 o',27,winterstale,1610 give,27,winterstale,1610 hand,27,winterstale,1610 great,27,winterstale,1610 We,28,winterstale,1610 ever,28,winterstale,1610 true,28,winterstale,1610 being,28,winterstale,1610 nothing,29,winterstale,1610 go,29,winterstale,1610 This,29,winterstale,1610 cannot,29,winterstale,1610 done,30,winterstale,1610 Bohemia,30,winterstale,1610 nor,30,winterstale,1610 time,30,winterstale,1610 honour,31,winterstale,1610 can,31,winterstale,1610 First,31,winterstale,1610 Enter,31,winterstale,1610 daughter,32,winterstale,1610 No,32,winterstale,1610 PERDITA,32,winterstale,1610 Come,33,winterstale,1610 Gentleman,33,winterstale,1610 did,33,winterstale,1610 son,34,winterstale,1610 Is,34,winterstale,1610 any,34,winterstale,1610 let,34,winterstale,1610 up,35,winterstale,1610 speak,35,winterstale,1610 hath,35,winterstale,1610 Your,35,winterstale,1610 when,35,winterstale,1610 such,36,winterstale,1610 With,36,winterstale,1610 'tis,36,winterstale,1610 been,36,winterstale,1610 take,36,winterstale,1610 here,37,winterstale,1610 He,37,winterstale,1610 well,37,winterstale,1610 So,38,winterstale,1610 Which,39,winterstale,1610 life,40,winterstale,1610 How,40,winterstale,1610 Camillo,41,winterstale,1610 make,41,winterstale,1610 much,42,winterstale,1610 their,42,winterstale,1610 how,42,winterstale,1610 should,42,winterstale,1610 mine,42,winterstale,1610 think,42,winterstale,1610 out,42,winterstale,1610 yet,44,winterstale,1610 most,44,winterstale,1610 queen,44,winterstale,1610 father,44,winterstale,1610 some,45,winterstale,1610 an,45,winterstale,1610 HERMIONE,45,winterstale,1610 king,46,winterstale,1610 upon,47,winterstale,1610 For,47,winterstale,1610 these,47,winterstale,1610 must,48,winterstale,1610 Shepherd,48,winterstale,1610 than,50,winterstale,1610 had,51,winterstale,1610 at,51,winterstale,1610 us,51,winterstale,1610 too,51,winterstale,1610 like,52,winterstale,1610 If,52,winterstale,1610 man,52,winterstale,1610 FLORIZEL,54,winterstale,1610 Of,54,winterstale,1610 know,54,winterstale,1610 come,54,winterstale,1610 may,54,winterstale,1610 My,55,winterstale,1610 see,56,winterstale,1610 O,57,winterstale,1610 there,57,winterstale,1610 What,57,winterstale,1610 were,58,winterstale,1610 them,61,winterstale,1610 A,62,winterstale,1610 our,62,winterstale,1610 would,62,winterstale,1610 then,63,winterstale,1610 As,63,winterstale,1610 thee,64,winterstale,1610 You,64,winterstale,1610 what,64,winterstale,1610 I'll,65,winterstale,1610 they,66,winterstale,1610 POLIXENES,66,winterstale,1610 say,67,winterstale,1610 lord,67,winterstale,1610 if,67,winterstale,1610 we,68,winterstale,1610 from,68,winterstale,1610 one,68,winterstale,1610 PAULINA,68,winterstale,1610 or,69,winterstale,1610 But,69,winterstale,1610 am,71,winterstale,1610 That,72,winterstale,1610 Clown,72,winterstale,1610 thy,72,winterstale,1610 AUTOLYCUS,74,winterstale,1610 she,79,winterstale,1610 more,79,winterstale,1610 do,80,winterstale,1610 which,82,winterstale,1610 CAMILLO,82,winterstale,1610 was,83,winterstale,1610 good,84,winterstale,1610 now,85,winterstale,1610 on,91,winterstale,1610 sir,93,winterstale,1610 my,349,winterstale,1610 all,94,winterstale,1610 will,94,winterstale,1610 shall,94,winterstale,1610 no,95,winterstale,1610 are,100,winterstale,1610 thou,103,winterstale,1610 by,108,winterstale,1610 To,121,winterstale,1610 a,378,winterstale,1610 I,634,winterstale,1610 him,124,winterstale,1610 And,127,winterstale,1610 you,384,winterstale,1610 LEONTES,133,winterstale,1610 he,135,winterstale,1610 her,139,winterstale,1610 The,140,winterstale,1610 but,155,winterstale,1610 so,156,winterstale,1610 his,159,winterstale,1610 as,165,winterstale,1610 of,427,winterstale,1610 this,172,winterstale,1610 with,173,winterstale,1610 for,175,winterstale,1610 the,717,winterstale,1610 in,207,winterstale,1610 is,212,winterstale,1610 me,221,winterstale,1610 have,221,winterstale,1610 your,228,winterstale,1610 be,233,winterstale,1610 that,247,winterstale,1610 it,247,winterstale,1610 to,505,winterstale,1610 profession,1,1kinghenryiv,1597 answered,1,1kinghenryiv,1597 Perceived,1,1kinghenryiv,1597 'You,1,1kinghenryiv,1597 degenerate,1,1kinghenryiv,1597 neighbouring,1,1kinghenryiv,1597 grandam,1,1kinghenryiv,1597 regard,1,1kinghenryiv,1597 brawn,1,1kinghenryiv,1597 Choler,1,1kinghenryiv,1597 unwelcome,1,1kinghenryiv,1597 instruments,1,1kinghenryiv,1597 attribution,1,1kinghenryiv,1597 topsy,1,1kinghenryiv,1597 john,1,1kinghenryiv,1597 accordingly,1,1kinghenryiv,1597 proffer,1,1kinghenryiv,1597 ignorance,1,1kinghenryiv,1597 advised,1,1kinghenryiv,1597 drowzed,1,1kinghenryiv,1597 smiled,1,1kinghenryiv,1597 grey,1,1kinghenryiv,1597 muster,1,1kinghenryiv,1597 Vernon's,1,1kinghenryiv,1597 suffer,1,1kinghenryiv,1597 smiles,1,1kinghenryiv,1597 taking,1,1kinghenryiv,1597 Audacious,1,1kinghenryiv,1597 vanities,1,1kinghenryiv,1597 exception,1,1kinghenryiv,1597 caddis,1,1kinghenryiv,1597 yeoman's,1,1kinghenryiv,1597 afar,1,1kinghenryiv,1597 pins',1,1kinghenryiv,1597 reckonings,1,1kinghenryiv,1597 bespoke,1,1kinghenryiv,1597 assay,1,1kinghenryiv,1597 mistress,1,1kinghenryiv,1597 forswear,1,1kinghenryiv,1597 speech,1,1kinghenryiv,1597 weasel,1,1kinghenryiv,1597 tremble,1,1kinghenryiv,1597 axle,1,1kinghenryiv,1597 fewer,1,1kinghenryiv,1597 wish'd,1,1kinghenryiv,1597 bleed'st,1,1kinghenryiv,1597 complaints,1,1kinghenryiv,1597 possible,1,1kinghenryiv,1597 following,1,1kinghenryiv,1597 midriff,1,1kinghenryiv,1597 Charing,1,1kinghenryiv,1597 Friday,1,1kinghenryiv,1597 Sugar,1,1kinghenryiv,1597 peach,1,1kinghenryiv,1597 capering,1,1kinghenryiv,1597 brittle,1,1kinghenryiv,1597 mistreadings,1,1kinghenryiv,1597 Fie,1,1kinghenryiv,1597 shadows,1,1kinghenryiv,1597 follies,1,1kinghenryiv,1597 Loseth,1,1kinghenryiv,1597 brown,1,1kinghenryiv,1597 unborn,1,1kinghenryiv,1597 rode,1,1kinghenryiv,1597 extenuation,1,1kinghenryiv,1597 breathless,1,1kinghenryiv,1597 bakers',1,1kinghenryiv,1597 preparation,1,1kinghenryiv,1597 ruminated,1,1kinghenryiv,1597 dissolutely,1,1kinghenryiv,1597 bonds,1,1kinghenryiv,1597 assured,1,1kinghenryiv,1597 health,1,1kinghenryiv,1597 rod,1,1kinghenryiv,1597 suppose,1,1kinghenryiv,1597 heart's,1,1kinghenryiv,1597 highness',1,1kinghenryiv,1597 Bear,1,1kinghenryiv,1597 day's,1,1kinghenryiv,1597 assistance,1,1kinghenryiv,1597 roar,1,1kinghenryiv,1597 proclaim'd,1,1kinghenryiv,1597 butchery,1,1kinghenryiv,1597 easily,1,1kinghenryiv,1597 epitaph,1,1kinghenryiv,1597 Stafford's,1,1kinghenryiv,1597 speedy,1,1kinghenryiv,1597 trading,1,1kinghenryiv,1597 melt,1,1kinghenryiv,1597 helm,1,1kinghenryiv,1597 cords,1,1kinghenryiv,1597 whereupon,1,1kinghenryiv,1597 blustering,1,1kinghenryiv,1597 moiety,1,1kinghenryiv,1597 alien,1,1kinghenryiv,1597 Stay,1,1kinghenryiv,1597 laughter,1,1kinghenryiv,1597 season's,1,1kinghenryiv,1597 proviso,1,1kinghenryiv,1597 duteous,1,1kinghenryiv,1597 poisonous,1,1kinghenryiv,1597 majestically,1,1kinghenryiv,1597 writer,1,1kinghenryiv,1597 midsummer,1,1kinghenryiv,1597 painted,1,1kinghenryiv,1597 Whereby,1,1kinghenryiv,1597 uphold,1,1kinghenryiv,1597 Angus,1,1kinghenryiv,1597 Heir,1,1kinghenryiv,1597 trunk,1,1kinghenryiv,1597 imitate,1,1kinghenryiv,1597 dropp'd,1,1kinghenryiv,1597 spake,1,1kinghenryiv,1597 Either,1,1kinghenryiv,1597 flowerets,1,1kinghenryiv,1597 ruffian,1,1kinghenryiv,1597 Warkworth,1,1kinghenryiv,1597 prisoner,1,1kinghenryiv,1597 Paul's,1,1kinghenryiv,1597 prosperous,1,1kinghenryiv,1597 gorgeous,1,1kinghenryiv,1597 toil,1,1kinghenryiv,1597 comest,1,1kinghenryiv,1597 upside,1,1kinghenryiv,1597 Step,1,1kinghenryiv,1597 dive,1,1kinghenryiv,1597 rods,1,1kinghenryiv,1597 Cries,1,1kinghenryiv,1597 looked,1,1kinghenryiv,1597 naked,1,1kinghenryiv,1597 Exceedingly,1,1kinghenryiv,1597 ungrown,1,1kinghenryiv,1597 slander,1,1kinghenryiv,1597 summer's,1,1kinghenryiv,1597 feeds,1,1kinghenryiv,1597 succession,1,1kinghenryiv,1597 maintain,1,1kinghenryiv,1597 strangled,1,1kinghenryiv,1597 Score,1,1kinghenryiv,1597 prey,1,1kinghenryiv,1597 untaught,1,1kinghenryiv,1597 jades,1,1kinghenryiv,1597 Defect,1,1kinghenryiv,1597 blunted,1,1kinghenryiv,1597 crickets,1,1kinghenryiv,1597 Discomfited,1,1kinghenryiv,1597 loaden,1,1kinghenryiv,1597 inclining,1,1kinghenryiv,1597 mailed,1,1kinghenryiv,1597 sort,1,1kinghenryiv,1597 Carriers,1,1kinghenryiv,1597 Wye,1,1kinghenryiv,1597 odds,1,1kinghenryiv,1597 iron,1,1kinghenryiv,1597 bishops,1,1kinghenryiv,1597 absolute,1,1kinghenryiv,1597 conceiving,1,1kinghenryiv,1597 ARCHIBALD,1,1kinghenryiv,1597 pleasures,1,1kinghenryiv,1597 pinch,1,1kinghenryiv,1597 Murray,1,1kinghenryiv,1597 Money,1,1kinghenryiv,1597 contrary,1,1kinghenryiv,1597 fretful,1,1kinghenryiv,1597 Danger,1,1kinghenryiv,1597 Began,1,1kinghenryiv,1597 Quite,1,1kinghenryiv,1597 disobedience,1,1kinghenryiv,1597 Would,1,1kinghenryiv,1597 wing'd,1,1kinghenryiv,1597 wounded,1,1kinghenryiv,1597 showering,1,1kinghenryiv,1597 chandler's,1,1kinghenryiv,1597 recreation,1,1kinghenryiv,1597 bower,1,1kinghenryiv,1597 PERSONAE,1,1kinghenryiv,1597 greyhound,1,1kinghenryiv,1597 boy's,1,1kinghenryiv,1597 marshal,1,1kinghenryiv,1597 Manningtree,1,1kinghenryiv,1597 glutton's,1,1kinghenryiv,1597 Enlarged,1,1kinghenryiv,1597 clamorous,1,1kinghenryiv,1597 ditties,1,1kinghenryiv,1597 cart,1,1kinghenryiv,1597 insurrection,1,1kinghenryiv,1597 cast,1,1kinghenryiv,1597 rub,1,1kinghenryiv,1597 teacher,1,1kinghenryiv,1597 battles,1,1kinghenryiv,1597 attempt,1,1kinghenryiv,1597 glutted,1,1kinghenryiv,1597 coffers,1,1kinghenryiv,1597 bridegroom,1,1kinghenryiv,1597 exhaled,1,1kinghenryiv,1597 Trimm'd,1,1kinghenryiv,1597 spared,1,1kinghenryiv,1597 indirect,1,1kinghenryiv,1597 lustre,1,1kinghenryiv,1597 agrees,1,1kinghenryiv,1597 stirring,1,1kinghenryiv,1597 intemperance,1,1kinghenryiv,1597 advantages,1,1kinghenryiv,1597 delivered,1,1kinghenryiv,1597 chin,1,1kinghenryiv,1597 reign,1,1kinghenryiv,1597 Forget,1,1kinghenryiv,1597 disdain,1,1kinghenryiv,1597 incomprehensible,1,1kinghenryiv,1597 eruptions,1,1kinghenryiv,1597 eleventh,1,1kinghenryiv,1597 Rare,1,1kinghenryiv,1597 amazed,1,1kinghenryiv,1597 Glendower's,1,1kinghenryiv,1597 conscience,1,1kinghenryiv,1597 wander'd,1,1kinghenryiv,1597 ridge,1,1kinghenryiv,1597 stock,1,1kinghenryiv,1597 tasking,1,1kinghenryiv,1597 reform,1,1kinghenryiv,1597 guards,1,1kinghenryiv,1597 ecce,1,1kinghenryiv,1597 Mugs,1,1kinghenryiv,1597 OWEN,1,1kinghenryiv,1597 working,1,1kinghenryiv,1597 ruin'd,1,1kinghenryiv,1597 confusion,1,1kinghenryiv,1597 grove,1,1kinghenryiv,1597 wrung,1,1kinghenryiv,1597 bombard,1,1kinghenryiv,1597 leaning,1,1kinghenryiv,1597 parmaceti,1,1kinghenryiv,1597 fatuus,1,1kinghenryiv,1597 Young,1,1kinghenryiv,1597 matters,1,1kinghenryiv,1597 bearing,1,1kinghenryiv,1597 toss,1,1kinghenryiv,1597 soothers,1,1kinghenryiv,1597 buffets,1,1kinghenryiv,1597 stream,1,1kinghenryiv,1597 scarlet,1,1kinghenryiv,1597 cape,1,1kinghenryiv,1597 losers,1,1kinghenryiv,1597 Henry's,1,1kinghenryiv,1597 fortunate,1,1kinghenryiv,1597 circumstance,1,1kinghenryiv,1597 lustier,1,1kinghenryiv,1597 fighter,1,1kinghenryiv,1597 Bristol,1,1kinghenryiv,1597 bagpipe,1,1kinghenryiv,1597 kitten,1,1kinghenryiv,1597 comfit,1,1kinghenryiv,1597 crying,1,1kinghenryiv,1597 limb,1,1kinghenryiv,1597 caps,1,1kinghenryiv,1597 injury,1,1kinghenryiv,1597 Keep,1,1kinghenryiv,1597 maidenheads,1,1kinghenryiv,1597 subjects,1,1kinghenryiv,1597 deceiveth,1,1kinghenryiv,1597 habits,1,1kinghenryiv,1597 roar'd,1,1kinghenryiv,1597 budge,1,1kinghenryiv,1597 salutations,1,1kinghenryiv,1597 drunkest,1,1kinghenryiv,1597 apprehends,1,1kinghenryiv,1597 offenders,1,1kinghenryiv,1597 oppress,1,1kinghenryiv,1597 swollen,1,1kinghenryiv,1597 hearing,1,1kinghenryiv,1597 fingers,1,1kinghenryiv,1597 policy,1,1kinghenryiv,1597 calm,1,1kinghenryiv,1597 breaks,1,1kinghenryiv,1597 calf,1,1kinghenryiv,1597 rebels',1,1kinghenryiv,1597 rites,1,1kinghenryiv,1597 beardless,1,1kinghenryiv,1597 fools,1,1kinghenryiv,1597 addition,1,1kinghenryiv,1597 veins,1,1kinghenryiv,1597 sit'st,1,1kinghenryiv,1597 Methinks,1,1kinghenryiv,1597 hardiment,1,1kinghenryiv,1597 target,1,1kinghenryiv,1597 furious,1,1kinghenryiv,1597 bated,1,1kinghenryiv,1597 bombast,1,1kinghenryiv,1597 searched,1,1kinghenryiv,1597 Pegasus,1,1kinghenryiv,1597 watering,1,1kinghenryiv,1597 oneyers,1,1kinghenryiv,1597 bachelors,1,1kinghenryiv,1597 visit,1,1kinghenryiv,1597 wait,1,1kinghenryiv,1597 toss'd,1,1kinghenryiv,1597 wain,1,1kinghenryiv,1597 Sought,1,1kinghenryiv,1597 began,1,1kinghenryiv,1597 bounding,1,1kinghenryiv,1597 Stain'd,1,1kinghenryiv,1597 moving,1,1kinghenryiv,1597 cankers,1,1kinghenryiv,1597 admiring,1,1kinghenryiv,1597 companies,1,1kinghenryiv,1597 counterpoise,1,1kinghenryiv,1597 cities,1,1kinghenryiv,1597 bareness,1,1kinghenryiv,1597 she's,1,1kinghenryiv,1597 wage,1,1kinghenryiv,1597 hereafter,1,1kinghenryiv,1597 plains,1,1kinghenryiv,1597 sheathed,1,1kinghenryiv,1597 Duke,1,1kinghenryiv,1597 Accompany,1,1kinghenryiv,1597 jumps,1,1kinghenryiv,1597 flatly,1,1kinghenryiv,1597 sung,1,1kinghenryiv,1597 yards,1,1kinghenryiv,1597 tripartite,1,1kinghenryiv,1597 mincing,1,1kinghenryiv,1597 Leads,1,1kinghenryiv,1597 confutes,1,1kinghenryiv,1597 intercepted,1,1kinghenryiv,1597 fleece,1,1kinghenryiv,1597 micher,1,1kinghenryiv,1597 violently,1,1kinghenryiv,1597 minions,1,1kinghenryiv,1597 brisk,1,1kinghenryiv,1597 paying,1,1kinghenryiv,1597 clerks,1,1kinghenryiv,1597 wisheth,1,1kinghenryiv,1597 caliver,1,1kinghenryiv,1597 tenants,1,1kinghenryiv,1597 edicts,1,1kinghenryiv,1597 saddle,1,1kinghenryiv,1597 tooth,1,1kinghenryiv,1597 deprived,1,1kinghenryiv,1597 Slept,1,1kinghenryiv,1597 sew,1,1kinghenryiv,1597 saying,1,1kinghenryiv,1597 vice,1,1kinghenryiv,1597 shrill,1,1kinghenryiv,1597 Herein,1,1kinghenryiv,1597 flying,1,1kinghenryiv,1597 wake,1,1kinghenryiv,1597 fiddlestick,1,1kinghenryiv,1597 mustachio,1,1kinghenryiv,1597 catching,1,1kinghenryiv,1597 chronicles,1,1kinghenryiv,1597 society,1,1kinghenryiv,1597 she'll,1,1kinghenryiv,1597 tithe,1,1kinghenryiv,1597 Sung,1,1kinghenryiv,1597 sallies,1,1kinghenryiv,1597 shaved,1,1kinghenryiv,1597 peevish,1,1kinghenryiv,1597 lions,1,1kinghenryiv,1597 outlaw,1,1kinghenryiv,1597 geese,1,1kinghenryiv,1597 doubtless,1,1kinghenryiv,1597 disposed,1,1kinghenryiv,1597 peril,1,1kinghenryiv,1597 favourites,1,1kinghenryiv,1597 Drives,1,1kinghenryiv,1597 deliver,1,1kinghenryiv,1597 Meeting,1,1kinghenryiv,1597 cradle,1,1kinghenryiv,1597 liveth,1,1kinghenryiv,1597 Charge,1,1kinghenryiv,1597 alderman's,1,1kinghenryiv,1597 salve,1,1kinghenryiv,1597 snatched,1,1kinghenryiv,1597 Charming,1,1kinghenryiv,1597 confident,1,1kinghenryiv,1597 children's,1,1kinghenryiv,1597 bringing,1,1kinghenryiv,1597 winds,1,1kinghenryiv,1597 'a,1,1kinghenryiv,1597 lewdly,1,1kinghenryiv,1597 raised,1,1kinghenryiv,1597 followed,1,1kinghenryiv,1597 looking,1,1kinghenryiv,1597 'O,1,1kinghenryiv,1597 scour,1,1kinghenryiv,1597 dignities,1,1kinghenryiv,1597 larger,1,1kinghenryiv,1597 livers,1,1kinghenryiv,1597 procured,1,1kinghenryiv,1597 bow'd,1,1kinghenryiv,1597 's,1,1kinghenryiv,1597 livery,1,1kinghenryiv,1597 't,1,1kinghenryiv,1597 husks,1,1kinghenryiv,1597 equity,1,1kinghenryiv,1597 permit,1,1kinghenryiv,1597 extremities,1,1kinghenryiv,1597 deserts,1,1kinghenryiv,1597 beloved,1,1kinghenryiv,1597 commends,1,1kinghenryiv,1597 level,1,1kinghenryiv,1597 groans,1,1kinghenryiv,1597 faulty,1,1kinghenryiv,1597 camps,1,1kinghenryiv,1597 Setting,1,1kinghenryiv,1597 saidst,1,1kinghenryiv,1597 faults,1,1kinghenryiv,1597 Other,1,1kinghenryiv,1597 offering,1,1kinghenryiv,1597 dally,1,1kinghenryiv,1597 mother,1,1kinghenryiv,1597 bolting,1,1kinghenryiv,1597 Burning,1,1kinghenryiv,1597 Attendants,1,1kinghenryiv,1597 scope,1,1kinghenryiv,1597 conjunction,1,1kinghenryiv,1597 cheese,1,1kinghenryiv,1597 sends,1,1kinghenryiv,1597 griffin,1,1kinghenryiv,1597 appear'd,1,1kinghenryiv,1597 considerations,1,1kinghenryiv,1597 poverty,1,1kinghenryiv,1597 Corinthian,1,1kinghenryiv,1597 stuck,1,1kinghenryiv,1597 skipping,1,1kinghenryiv,1597 'kind,1,1kinghenryiv,1597 swelling,1,1kinghenryiv,1597 minion,1,1kinghenryiv,1597 everlasting,1,1kinghenryiv,1597 merit,1,1kinghenryiv,1597 Needs,1,1kinghenryiv,1597 broils,1,1kinghenryiv,1597 accursed,1,1kinghenryiv,1597 eating,1,1kinghenryiv,1597 hackney'd,1,1kinghenryiv,1597 strappado,1,1kinghenryiv,1597 tapsters,1,1kinghenryiv,1597 whereabout,1,1kinghenryiv,1597 compound,1,1kinghenryiv,1597 Steeples,1,1kinghenryiv,1597 musing,1,1kinghenryiv,1597 beseeming,1,1kinghenryiv,1597 France,1,1kinghenryiv,1597 murmur,1,1kinghenryiv,1597 fawning,1,1kinghenryiv,1597 'Fie,1,1kinghenryiv,1597 cousin's,1,1kinghenryiv,1597 cancels,1,1kinghenryiv,1597 induction,1,1kinghenryiv,1597 profess,1,1kinghenryiv,1597 guarded,1,1kinghenryiv,1597 liegeman,1,1kinghenryiv,1597 Officers,1,1kinghenryiv,1597 moulded,1,1kinghenryiv,1597 reversion,1,1kinghenryiv,1597 direct,1,1kinghenryiv,1597 Turk,1,1kinghenryiv,1597 parrot,1,1kinghenryiv,1597 unlooked,1,1kinghenryiv,1597 beggarly,1,1kinghenryiv,1597 exceeding,1,1kinghenryiv,1597 cocksure,1,1kinghenryiv,1597 variest,1,1kinghenryiv,1597 bots,1,1kinghenryiv,1597 bewitched,1,1kinghenryiv,1597 Suspicion,1,1kinghenryiv,1597 Revolted,1,1kinghenryiv,1597 dearly,1,1kinghenryiv,1597 Broke,1,1kinghenryiv,1597 Sound,1,1kinghenryiv,1597 eldest,1,1kinghenryiv,1597 Pardon,1,1kinghenryiv,1597 unrevenged,1,1kinghenryiv,1597 Whilst,1,1kinghenryiv,1597 sue,1,1kinghenryiv,1597 cries,1,1kinghenryiv,1597 physicians,1,1kinghenryiv,1597 coloured,1,1kinghenryiv,1597 tush,1,1kinghenryiv,1597 govern'd,1,1kinghenryiv,1597 sup,1,1kinghenryiv,1597 brach,1,1kinghenryiv,1597 reverence,1,1kinghenryiv,1597 popularity,1,1kinghenryiv,1597 feel,1,1kinghenryiv,1597 Want,1,1kinghenryiv,1597 speediest,1,1kinghenryiv,1597 feet,1,1kinghenryiv,1597 valiantly,1,1kinghenryiv,1597 Nettled,1,1kinghenryiv,1597 'scapes,1,1kinghenryiv,1597 infinite,1,1kinghenryiv,1597 pannier,1,1kinghenryiv,1597 hutch,1,1kinghenryiv,1597 benches,1,1kinghenryiv,1597 uncolted,1,1kinghenryiv,1597 directed,1,1kinghenryiv,1597 service,1,1kinghenryiv,1597 claim,1,1kinghenryiv,1597 descend,1,1kinghenryiv,1597 blind,1,1kinghenryiv,1597 'scaped,1,1kinghenryiv,1597 brief,1,1kinghenryiv,1597 Search,1,1kinghenryiv,1597 camomile,1,1kinghenryiv,1597 accept,1,1kinghenryiv,1597 Interpretation,1,1kinghenryiv,1597 corrupt,1,1kinghenryiv,1597 razors,1,1kinghenryiv,1597 let'st,1,1kinghenryiv,1597 'Not,1,1kinghenryiv,1597 speaking,1,1kinghenryiv,1597 Warwickshire,1,1kinghenryiv,1597 rooms,1,1kinghenryiv,1597 artillery,1,1kinghenryiv,1597 wine,1,1kinghenryiv,1597 prevent,1,1kinghenryiv,1597 redeem'd,1,1kinghenryiv,1597 damnably,1,1kinghenryiv,1597 mothers',1,1kinghenryiv,1597 wished,1,1kinghenryiv,1597 cuckold,1,1kinghenryiv,1597 shrink,1,1kinghenryiv,1597 Hence,1,1kinghenryiv,1597 nails,1,1kinghenryiv,1597 cavil,1,1kinghenryiv,1597 oily,1,1kinghenryiv,1597 sphere,1,1kinghenryiv,1597 Might,1,1kinghenryiv,1597 night's,1,1kinghenryiv,1597 Rated,1,1kinghenryiv,1597 tinker,1,1kinghenryiv,1597 dreamer,1,1kinghenryiv,1597 knees,1,1kinghenryiv,1597 sarcenet,1,1kinghenryiv,1597 damnable,1,1kinghenryiv,1597 crisp,1,1kinghenryiv,1597 harmless,1,1kinghenryiv,1597 dearer,1,1kinghenryiv,1597 luckily,1,1kinghenryiv,1597 trickling,1,1kinghenryiv,1597 Disgraced,1,1kinghenryiv,1597 palisadoes,1,1kinghenryiv,1597 goose,1,1kinghenryiv,1597 displease,1,1kinghenryiv,1597 hated,1,1kinghenryiv,1597 diet,1,1kinghenryiv,1597 wish,1,1kinghenryiv,1597 trifler,1,1kinghenryiv,1597 stubble,1,1kinghenryiv,1597 murder,1,1kinghenryiv,1597 throws,1,1kinghenryiv,1597 travellers,1,1kinghenryiv,1597 infidel,1,1kinghenryiv,1597 devil's,1,1kinghenryiv,1597 northern,1,1kinghenryiv,1597 seem'd,1,1kinghenryiv,1597 pierce,1,1kinghenryiv,1597 bulls,1,1kinghenryiv,1597 warm,1,1kinghenryiv,1597 ungracious,1,1kinghenryiv,1597 voice,1,1kinghenryiv,1597 beldam,1,1kinghenryiv,1597 dukedom,1,1kinghenryiv,1597 stocks,1,1kinghenryiv,1597 pretty,1,1kinghenryiv,1597 Bloodstained,1,1kinghenryiv,1597 sanguine,1,1kinghenryiv,1597 ambled,1,1kinghenryiv,1597 rule,1,1kinghenryiv,1597 bone,1,1kinghenryiv,1597 melted,1,1kinghenryiv,1597 mistake,1,1kinghenryiv,1597 boot,1,1kinghenryiv,1597 dealt,1,1kinghenryiv,1597 wasp,1,1kinghenryiv,1597 steed,1,1kinghenryiv,1597 prodigy,1,1kinghenryiv,1597 steel,1,1kinghenryiv,1597 Plantagenet,1,1kinghenryiv,1597 ruled,1,1kinghenryiv,1597 wits,1,1kinghenryiv,1597 falsify,1,1kinghenryiv,1597 inordinate,1,1kinghenryiv,1597 framed,1,1kinghenryiv,1597 praised,1,1kinghenryiv,1597 parts,1,1kinghenryiv,1597 party,1,1kinghenryiv,1597 spoke,1,1kinghenryiv,1597 school'd,1,1kinghenryiv,1597 gripe,1,1kinghenryiv,1597 digg'd,1,1kinghenryiv,1597 Anchovies,1,1kinghenryiv,1597 praises,1,1kinghenryiv,1597 imprisoning,1,1kinghenryiv,1597 deserves,1,1kinghenryiv,1597 Drag,1,1kinghenryiv,1597 bit,1,1kinghenryiv,1597 vigilant,1,1kinghenryiv,1597 aspect,1,1kinghenryiv,1597 feather'd,1,1kinghenryiv,1597 foil,1,1kinghenryiv,1597 bitter,1,1kinghenryiv,1597 big,1,1kinghenryiv,1597 shorter,1,1kinghenryiv,1597 wherefore,1,1kinghenryiv,1597 drove,1,1kinghenryiv,1597 Prophetically,1,1kinghenryiv,1597 Faith,1,1kinghenryiv,1597 talon,1,1kinghenryiv,1597 aim'd,1,1kinghenryiv,1597 daff'd,1,1kinghenryiv,1597 chamber,1,1kinghenryiv,1597 dishonourable,1,1kinghenryiv,1597 'But,1,1kinghenryiv,1597 Takes,1,1kinghenryiv,1597 unkind,1,1kinghenryiv,1597 strongly,1,1kinghenryiv,1597 Hold,1,1kinghenryiv,1597 mammets,1,1kinghenryiv,1597 rusty,1,1kinghenryiv,1597 snuff,1,1kinghenryiv,1597 sweeten,1,1kinghenryiv,1597 Home,1,1kinghenryiv,1597 potions,1,1kinghenryiv,1597 foes,1,1kinghenryiv,1597 defile,1,1kinghenryiv,1597 comrades,1,1kinghenryiv,1597 serving,1,1kinghenryiv,1597 sigh,1,1kinghenryiv,1597 chronicle,1,1kinghenryiv,1597 Windsor,1,1kinghenryiv,1597 Athol,1,1kinghenryiv,1597 exercise,1,1kinghenryiv,1597 granted,1,1kinghenryiv,1597 'Twere,1,1kinghenryiv,1597 sores,1,1kinghenryiv,1597 flattery,1,1kinghenryiv,1597 Ah,1,1kinghenryiv,1597 packing,1,1kinghenryiv,1597 ignis,1,1kinghenryiv,1597 slander'd,1,1kinghenryiv,1597 gorbellied,1,1kinghenryiv,1597 transformation,1,1kinghenryiv,1597 scarce,1,1kinghenryiv,1597 chaste,1,1kinghenryiv,1597 gurnet,1,1kinghenryiv,1597 Hie,1,1kinghenryiv,1597 pewter,1,1kinghenryiv,1597 fool'd,1,1kinghenryiv,1597 youthful,1,1kinghenryiv,1597 box,1,1kinghenryiv,1597 loath,1,1kinghenryiv,1597 sneak,1,1kinghenryiv,1597 Throwing,1,1kinghenryiv,1597 strangers,1,1kinghenryiv,1597 knowing,1,1kinghenryiv,1597 resolutely,1,1kinghenryiv,1597 wash'd,1,1kinghenryiv,1597 misused,1,1kinghenryiv,1597 among,1,1kinghenryiv,1597 desperate,1,1kinghenryiv,1597 Still,1,1kinghenryiv,1597 blown,1,1kinghenryiv,1597 hen,1,1kinghenryiv,1597 penn'd,1,1kinghenryiv,1597 Depose,1,1kinghenryiv,1597 Play,1,1kinghenryiv,1597 Charles',1,1kinghenryiv,1597 bag,1,1kinghenryiv,1597 Dismiss,1,1kinghenryiv,1597 pointed,1,1kinghenryiv,1597 By'r,1,1kinghenryiv,1597 bad,1,1kinghenryiv,1597 hitherto,1,1kinghenryiv,1597 secretly,1,1kinghenryiv,1597 O',1,1kinghenryiv,1597 sensible,1,1kinghenryiv,1597 sinew,1,1kinghenryiv,1597 pays,1,1kinghenryiv,1597 Plain,1,1kinghenryiv,1597 'Lay,1,1kinghenryiv,1597 holidays,1,1kinghenryiv,1597 kings,1,1kinghenryiv,1597 speakest,1,1kinghenryiv,1597 denier,1,1kinghenryiv,1597 brained,1,1kinghenryiv,1597 denied,1,1kinghenryiv,1597 archbishop,1,1kinghenryiv,1597 stab,1,1kinghenryiv,1597 Proclaim,1,1kinghenryiv,1597 force,1,1kinghenryiv,1597 dyeing,1,1kinghenryiv,1597 hid,1,1kinghenryiv,1597 finds,1,1kinghenryiv,1597 iteration,1,1kinghenryiv,1597 Letters,1,1kinghenryiv,1597 motions,1,1kinghenryiv,1597 heinously,1,1kinghenryiv,1597 hit,1,1kinghenryiv,1597 exact,1,1kinghenryiv,1597 tear,1,1kinghenryiv,1597 ignominy,1,1kinghenryiv,1597 turkeys,1,1kinghenryiv,1597 unsteadfast,1,1kinghenryiv,1597 approve,1,1kinghenryiv,1597 harness'd,1,1kinghenryiv,1597 fatal,1,1kinghenryiv,1597 team,1,1kinghenryiv,1597 unruly,1,1kinghenryiv,1597 blest,1,1kinghenryiv,1597 damm'd,1,1kinghenryiv,1597 bless,1,1kinghenryiv,1597 owner,1,1kinghenryiv,1597 strangely,1,1kinghenryiv,1597 Swore,1,1kinghenryiv,1597 appoint,1,1kinghenryiv,1597 grease,1,1kinghenryiv,1597 intestine,1,1kinghenryiv,1597 indenture,1,1kinghenryiv,1597 politician,1,1kinghenryiv,1597 contracted,1,1kinghenryiv,1597 proverbs,1,1kinghenryiv,1597 bruised,1,1kinghenryiv,1597 innovation,1,1kinghenryiv,1597 applaud,1,1kinghenryiv,1597 Let's,1,1kinghenryiv,1597 Seldom,1,1kinghenryiv,1597 agreement,1,1kinghenryiv,1597 Doubt,1,1kinghenryiv,1597 past,1,1kinghenryiv,1597 commendation,1,1kinghenryiv,1597 abhorred,1,1kinghenryiv,1597 unloaded,1,1kinghenryiv,1597 whipp'd,1,1kinghenryiv,1597 pit,1,1kinghenryiv,1597 Sworn,1,1kinghenryiv,1597 pox,1,1kinghenryiv,1597 grandfather,1,1kinghenryiv,1597 nice,1,1kinghenryiv,1597 get'st,1,1kinghenryiv,1597 admiral,1,1kinghenryiv,1597 thighs,1,1kinghenryiv,1597 quantity,1,1kinghenryiv,1597 nobly,1,1kinghenryiv,1597 Rising,1,1kinghenryiv,1597 Capitulate,1,1kinghenryiv,1597 outlive,1,1kinghenryiv,1597 churches,1,1kinghenryiv,1597 Seems,1,1kinghenryiv,1597 became,1,1kinghenryiv,1597 heady,1,1kinghenryiv,1597 temple,1,1kinghenryiv,1597 brawling,1,1kinghenryiv,1597 St,1,1kinghenryiv,1597 devices,1,1kinghenryiv,1597 foully,1,1kinghenryiv,1597 theft,1,1kinghenryiv,1597 Mingled,1,1kinghenryiv,1597 god,1,1kinghenryiv,1597 broached,1,1kinghenryiv,1597 haunt,1,1kinghenryiv,1597 iniquity,1,1kinghenryiv,1597 Trembling,1,1kinghenryiv,1597 Afford,1,1kinghenryiv,1597 thorn,1,1kinghenryiv,1597 trimly,1,1kinghenryiv,1597 bull,1,1kinghenryiv,1597 bulk,1,1kinghenryiv,1597 coinage,1,1kinghenryiv,1597 weep,1,1kinghenryiv,1597 challenge,1,1kinghenryiv,1597 deputy's,1,1kinghenryiv,1597 writers,1,1kinghenryiv,1597 proportion,1,1kinghenryiv,1597 nigh,1,1kinghenryiv,1597 gummed,1,1kinghenryiv,1597 Receive,1,1kinghenryiv,1597 Heard,1,1kinghenryiv,1597 canker,1,1kinghenryiv,1597 metal,1,1kinghenryiv,1597 Heart,1,1kinghenryiv,1597 knotty,1,1kinghenryiv,1597 suffer'd,1,1kinghenryiv,1597 incursions,1,1kinghenryiv,1597 drench,1,1kinghenryiv,1597 thunderbolt,1,1kinghenryiv,1597 sixpenny,1,1kinghenryiv,1597 truncheon,1,1kinghenryiv,1597 crush,1,1kinghenryiv,1597 cap,1,1kinghenryiv,1597 loach,1,1kinghenryiv,1597 Useth,1,1kinghenryiv,1597 'Rivo,1,1kinghenryiv,1597 corpse,1,1kinghenryiv,1597 sincerity,1,1kinghenryiv,1597 ornament,1,1kinghenryiv,1597 Company,1,1kinghenryiv,1597 uncertainty,1,1kinghenryiv,1597 altar,1,1kinghenryiv,1597 shuffling,1,1kinghenryiv,1597 corpulent,1,1kinghenryiv,1597 detraction,1,1kinghenryiv,1597 parapets,1,1kinghenryiv,1597 yon,1,1kinghenryiv,1597 kidneyed,1,1kinghenryiv,1597 anything,1,1kinghenryiv,1597 devised,1,1kinghenryiv,1597 sedgy,1,1kinghenryiv,1597 Sirs,1,1kinghenryiv,1597 gaze,1,1kinghenryiv,1597 bent,1,1kinghenryiv,1597 memorandums,1,1kinghenryiv,1597 craft,1,1kinghenryiv,1597 quilt,1,1kinghenryiv,1597 unbuttoning,1,1kinghenryiv,1597 shadow,1,1kinghenryiv,1597 modestly,1,1kinghenryiv,1597 enlargement,1,1kinghenryiv,1597 Lies,1,1kinghenryiv,1597 vaunting,1,1kinghenryiv,1597 idleness,1,1kinghenryiv,1597 gape,1,1kinghenryiv,1597 mainly,1,1kinghenryiv,1597 equals,1,1kinghenryiv,1597 sumptuous,1,1kinghenryiv,1597 starving,1,1kinghenryiv,1597 sepulchre,1,1kinghenryiv,1597 jure,1,1kinghenryiv,1597 afore,1,1kinghenryiv,1597 Dies,1,1kinghenryiv,1597 Death's,1,1kinghenryiv,1597 pacified,1,1kinghenryiv,1597 antic,1,1kinghenryiv,1597 twice,1,1kinghenryiv,1597 levers,1,1kinghenryiv,1597 extreme,1,1kinghenryiv,1597 Spanish,1,1kinghenryiv,1597 bavin,1,1kinghenryiv,1597 Holds,1,1kinghenryiv,1597 theme,1,1kinghenryiv,1597 reputeless,1,1kinghenryiv,1597 conquest,1,1kinghenryiv,1597 cantle,1,1kinghenryiv,1597 swift,1,1kinghenryiv,1597 forgetful,1,1kinghenryiv,1597 Shakes,1,1kinghenryiv,1597 beef,1,1kinghenryiv,1597 Ye,1,1kinghenryiv,1597 Above,1,1kinghenryiv,1597 vassal,1,1kinghenryiv,1597 submission,1,1kinghenryiv,1597 raising,1,1kinghenryiv,1597 hilts,1,1kinghenryiv,1597 travel,1,1kinghenryiv,1597 frowns,1,1kinghenryiv,1597 quips,1,1kinghenryiv,1597 survey,1,1kinghenryiv,1597 gown,1,1kinghenryiv,1597 Meet,1,1kinghenryiv,1597 About,1,1kinghenryiv,1597 Whate'er,1,1kinghenryiv,1597 swine,1,1kinghenryiv,1597 doest,1,1kinghenryiv,1597 crack'd,1,1kinghenryiv,1597 consciences,1,1kinghenryiv,1597 majority,1,1kinghenryiv,1597 sink,1,1kinghenryiv,1597 garters,1,1kinghenryiv,1597 scoring,1,1kinghenryiv,1597 bonfire,1,1kinghenryiv,1597 by',1,1kinghenryiv,1597 'Twas,1,1kinghenryiv,1597 dispraising,1,1kinghenryiv,1597 Imagination,1,1kinghenryiv,1597 Welshman,1,1kinghenryiv,1597 stretch,1,1kinghenryiv,1597 hourly,1,1kinghenryiv,1597 assign'd,1,1kinghenryiv,1597 lieutenants,1,1kinghenryiv,1597 Got,1,1kinghenryiv,1597 footing,1,1kinghenryiv,1597 gash,1,1kinghenryiv,1597 mists,1,1kinghenryiv,1597 displeasing,1,1kinghenryiv,1597 crowned,1,1kinghenryiv,1597 beginning,1,1kinghenryiv,1597 anointed,1,1kinghenryiv,1597 oxen,1,1kinghenryiv,1597 radish,1,1kinghenryiv,1597 begin,1,1kinghenryiv,1597 bull's,1,1kinghenryiv,1597 Shaked,1,1kinghenryiv,1597 river,1,1kinghenryiv,1597 ostlers,1,1kinghenryiv,1597 dogs,1,1kinghenryiv,1597 store,1,1kinghenryiv,1597 Land,1,1kinghenryiv,1597 stuffed,1,1kinghenryiv,1597 entertain,1,1kinghenryiv,1597 eagles,1,1kinghenryiv,1597 impatience,1,1kinghenryiv,1597 story,1,1kinghenryiv,1597 deer,1,1kinghenryiv,1597 wiped,1,1kinghenryiv,1597 promised,1,1kinghenryiv,1597 'that,1,1kinghenryiv,1597 Gelding,1,1kinghenryiv,1597 harness,1,1kinghenryiv,1597 mood,1,1kinghenryiv,1597 image,1,1kinghenryiv,1597 eloquence,1,1kinghenryiv,1597 gage,1,1kinghenryiv,1597 confess,1,1kinghenryiv,1597 Swearest,1,1kinghenryiv,1597 expedience,1,1kinghenryiv,1597 rakers,1,1kinghenryiv,1597 Forty,1,1kinghenryiv,1597 doff,1,1kinghenryiv,1597 gift,1,1kinghenryiv,1597 jesters,1,1kinghenryiv,1597 aid,1,1kinghenryiv,1597 Gilliams,1,1kinghenryiv,1597 shouts,1,1kinghenryiv,1597 faster,1,1kinghenryiv,1597 consider,1,1kinghenryiv,1597 repute,1,1kinghenryiv,1597 loop,1,1kinghenryiv,1597 favour,1,1kinghenryiv,1597 'Give,1,1kinghenryiv,1597 safe,1,1kinghenryiv,1597 'cross,1,1kinghenryiv,1597 stool,1,1kinghenryiv,1597 quailing,1,1kinghenryiv,1597 succor,1,1kinghenryiv,1597 Wanton,1,1kinghenryiv,1597 murderous,1,1kinghenryiv,1597 curlish,1,1kinghenryiv,1597 amendment,1,1kinghenryiv,1597 swearing,1,1kinghenryiv,1597 gravely,1,1kinghenryiv,1597 disturbed,1,1kinghenryiv,1597 stony,1,1kinghenryiv,1597 profaned,1,1kinghenryiv,1597 Revenge,1,1kinghenryiv,1597 liberal,1,1kinghenryiv,1597 gait,1,1kinghenryiv,1597 vouchsafe,1,1kinghenryiv,1597 Berkley,1,1kinghenryiv,1597 ant,1,1kinghenryiv,1597 dignity,1,1kinghenryiv,1597 zounds,1,1kinghenryiv,1597 seeing,1,1kinghenryiv,1597 gild,1,1kinghenryiv,1597 befriend,1,1kinghenryiv,1597 lent,1,1kinghenryiv,1597 holiday,1,1kinghenryiv,1597 time's,1,1kinghenryiv,1597 suggestion,1,1kinghenryiv,1597 stain'd,1,1kinghenryiv,1597 lighted,1,1kinghenryiv,1597 draff,1,1kinghenryiv,1597 gall,1,1kinghenryiv,1597 boast,1,1kinghenryiv,1597 nettle,1,1kinghenryiv,1597 waist,1,1kinghenryiv,1597 forged,1,1kinghenryiv,1597 stole,1,1kinghenryiv,1597 torches,1,1kinghenryiv,1597 laughing,1,1kinghenryiv,1597 affrighted,1,1kinghenryiv,1597 lends,1,1kinghenryiv,1597 ay,1,1kinghenryiv,1597 ale,1,1kinghenryiv,1597 Directly,1,1kinghenryiv,1597 game,1,1kinghenryiv,1597 gentlewoman,1,1kinghenryiv,1597 metre,1,1kinghenryiv,1597 Hydra's,1,1kinghenryiv,1597 holland,1,1kinghenryiv,1597 cruelty,1,1kinghenryiv,1597 ah,1,1kinghenryiv,1597 temperate,1,1kinghenryiv,1597 gallons,1,1kinghenryiv,1597 luggage,1,1kinghenryiv,1597 crosses,1,1kinghenryiv,1597 doom,1,1kinghenryiv,1597 hallown,1,1kinghenryiv,1597 colic,1,1kinghenryiv,1597 rouse,1,1kinghenryiv,1597 dried,1,1kinghenryiv,1597 sheath,1,1kinghenryiv,1597 button,1,1kinghenryiv,1597 ob,1,1kinghenryiv,1597 portend,1,1kinghenryiv,1597 Master,1,1kinghenryiv,1597 betray'd,1,1kinghenryiv,1597 abominable,1,1kinghenryiv,1597 paunch,1,1kinghenryiv,1597 board,1,1kinghenryiv,1597 ox,1,1kinghenryiv,1597 damn'd,1,1kinghenryiv,1597 Worcester's,1,1kinghenryiv,1597 rain'd,1,1kinghenryiv,1597 committed,1,1kinghenryiv,1597 delay,1,1kinghenryiv,1597 Others,1,1kinghenryiv,1597 strain,1,1kinghenryiv,1597 meteor,1,1kinghenryiv,1597 moss,1,1kinghenryiv,1597 strait,1,1kinghenryiv,1597 utmost,1,1kinghenryiv,1597 thrill,1,1kinghenryiv,1597 Counterfeit,1,1kinghenryiv,1597 gibbets,1,1kinghenryiv,1597 curbs,1,1kinghenryiv,1597 misbegotten,1,1kinghenryiv,1597 acres,1,1kinghenryiv,1597 Fortune's,1,1kinghenryiv,1597 portent,1,1kinghenryiv,1597 unhandsome,1,1kinghenryiv,1597 idle,1,1kinghenryiv,1597 'Where,1,1kinghenryiv,1597 Live,1,1kinghenryiv,1597 'Some,1,1kinghenryiv,1597 sometime,1,1kinghenryiv,1597 Reads,1,1kinghenryiv,1597 Diseased,1,1kinghenryiv,1597 'sblood,1,1kinghenryiv,1597 Took,1,1kinghenryiv,1597 India,1,1kinghenryiv,1597 near'st,1,1kinghenryiv,1597 lackeys,1,1kinghenryiv,1597 gyves,1,1kinghenryiv,1597 mori,1,1kinghenryiv,1597 salamander,1,1kinghenryiv,1597 Embowelled,1,1kinghenryiv,1597 stout,1,1kinghenryiv,1597 challenged,1,1kinghenryiv,1597 loud,1,1kinghenryiv,1597 offer'd,1,1kinghenryiv,1597 endure,1,1kinghenryiv,1597 hostility,1,1kinghenryiv,1597 carded,1,1kinghenryiv,1597 levy,1,1kinghenryiv,1597 ado,1,1kinghenryiv,1597 loss,1,1kinghenryiv,1597 Wouldst,1,1kinghenryiv,1597 Yes,1,1kinghenryiv,1597 sweetness,1,1kinghenryiv,1597 beholding,1,1kinghenryiv,1597 interchangeably,1,1kinghenryiv,1597 speak'st,1,1kinghenryiv,1597 achieved,1,1kinghenryiv,1597 sucker,1,1kinghenryiv,1597 talkest,1,1kinghenryiv,1597 potent,1,1kinghenryiv,1597 Merlin,1,1kinghenryiv,1597 dispose,1,1kinghenryiv,1597 ill,1,1kinghenryiv,1597 afternoon,1,1kinghenryiv,1597 unthought,1,1kinghenryiv,1597 Cut's,1,1kinghenryiv,1597 termagant,1,1kinghenryiv,1597 all's,1,1kinghenryiv,1597 dole,1,1kinghenryiv,1597 knot,1,1kinghenryiv,1597 filling,1,1kinghenryiv,1597 blue,1,1kinghenryiv,1597 bruising,1,1kinghenryiv,1597 hostile,1,1kinghenryiv,1597 continent,1,1kinghenryiv,1597 necessary,1,1kinghenryiv,1597 adventurous,1,1kinghenryiv,1597 lock'd,1,1kinghenryiv,1597 greater,1,1kinghenryiv,1597 revengement,1,1kinghenryiv,1597 bootless,1,1kinghenryiv,1597 westward,1,1kinghenryiv,1597 embowel,1,1kinghenryiv,1597 subornation,1,1kinghenryiv,1597 crossings,1,1kinghenryiv,1597 nimbly,1,1kinghenryiv,1597 scatter'd,1,1kinghenryiv,1597 Proclaim'd,1,1kinghenryiv,1597 journey,1,1kinghenryiv,1597 withered,1,1kinghenryiv,1597 bristle,1,1kinghenryiv,1597 Fresh,1,1kinghenryiv,1597 sun's,1,1kinghenryiv,1597 reasonably,1,1kinghenryiv,1597 rascalliest,1,1kinghenryiv,1597 harp,1,1kinghenryiv,1597 clipp'd,1,1kinghenryiv,1597 Dowlas,1,1kinghenryiv,1597 accents,1,1kinghenryiv,1597 basely,1,1kinghenryiv,1597 tailor's,1,1kinghenryiv,1597 hob,1,1kinghenryiv,1597 cital,1,1kinghenryiv,1597 havoc,1,1kinghenryiv,1597 Colour,1,1kinghenryiv,1597 tempted,1,1kinghenryiv,1597 personal,1,1kinghenryiv,1597 ramping,1,1kinghenryiv,1597 puny,1,1kinghenryiv,1597 scratch,1,1kinghenryiv,1597 Bread,1,1kinghenryiv,1597 outward,1,1kinghenryiv,1597 unmannerly,1,1kinghenryiv,1597 park,1,1kinghenryiv,1597 plump,1,1kinghenryiv,1597 Break,1,1kinghenryiv,1597 strangle,1,1kinghenryiv,1597 Ran,1,1kinghenryiv,1597 cozening,1,1kinghenryiv,1597 reasonable,1,1kinghenryiv,1597 enterprises,1,1kinghenryiv,1597 wards,1,1kinghenryiv,1597 pilgrims,1,1kinghenryiv,1597 string,1,1kinghenryiv,1597 EDMUND,1,1kinghenryiv,1597 remember'd,1,1kinghenryiv,1597 keen,1,1kinghenryiv,1597 soldier's,1,1kinghenryiv,1597 lewd,1,1kinghenryiv,1597 hall,1,1kinghenryiv,1597 manifold,1,1kinghenryiv,1597 hue,1,1kinghenryiv,1597 ARCHBISHOP'S,1,1kinghenryiv,1597 round,1,1kinghenryiv,1597 haunts,1,1kinghenryiv,1597 labouring,1,1kinghenryiv,1597 Christian,1,1kinghenryiv,1597 'gentle,1,1kinghenryiv,1597 unthankful,1,1kinghenryiv,1597 Diana's,1,1kinghenryiv,1597 Foretells,1,1kinghenryiv,1597 Cambyses',1,1kinghenryiv,1597 nearer,1,1kinghenryiv,1597 doteth,1,1kinghenryiv,1597 culverin,1,1kinghenryiv,1597 neat's,1,1kinghenryiv,1597 fowl,1,1kinghenryiv,1597 Burton,1,1kinghenryiv,1597 intended,1,1kinghenryiv,1597 helpful,1,1kinghenryiv,1597 shortness,1,1kinghenryiv,1597 Hercules,1,1kinghenryiv,1597 continually,1,1kinghenryiv,1597 perform'd,1,1kinghenryiv,1597 swathling,1,1kinghenryiv,1597 acknowledge,1,1kinghenryiv,1597 trade,1,1kinghenryiv,1597 redoubled,1,1kinghenryiv,1597 rushes,1,1kinghenryiv,1597 appears,1,1kinghenryiv,1597 Lady,1,1kinghenryiv,1597 reach,1,1kinghenryiv,1597 puke,1,1kinghenryiv,1597 bunch,1,1kinghenryiv,1597 plain,1,1kinghenryiv,1597 lanes,1,1kinghenryiv,1597 Moor,1,1kinghenryiv,1597 sighing,1,1kinghenryiv,1597 Moon,1,1kinghenryiv,1597 trace,1,1kinghenryiv,1597 avoided,1,1kinghenryiv,1597 knocking,1,1kinghenryiv,1597 pant,1,1kinghenryiv,1597 legged,1,1kinghenryiv,1597 particulars,1,1kinghenryiv,1597 sully,1,1kinghenryiv,1597 perpetual,1,1kinghenryiv,1597 examine,1,1kinghenryiv,1597 slovenly,1,1kinghenryiv,1597 whether,1,1kinghenryiv,1597 city,1,1kinghenryiv,1597 rudely,1,1kinghenryiv,1597 sixpence',1,1kinghenryiv,1597 bathed,1,1kinghenryiv,1597 brothers,1,1kinghenryiv,1597 weeps,1,1kinghenryiv,1597 ancients,1,1kinghenryiv,1597 form,1,1kinghenryiv,1597 prepare,1,1kinghenryiv,1597 kingdoms,1,1kinghenryiv,1597 Brooks,1,1kinghenryiv,1597 impatient,1,1kinghenryiv,1597 neglect,1,1kinghenryiv,1597 bloodily,1,1kinghenryiv,1597 forswearing,1,1kinghenryiv,1597 Laid,1,1kinghenryiv,1597 heaviness,1,1kinghenryiv,1597 return'd,1,1kinghenryiv,1597 unbound,1,1kinghenryiv,1597 southern,1,1kinghenryiv,1597 spit,1,1kinghenryiv,1597 emptied,1,1kinghenryiv,1597 plotted,1,1kinghenryiv,1597 wasted,1,1kinghenryiv,1597 engage,1,1kinghenryiv,1597 ape,1,1kinghenryiv,1597 mended,1,1kinghenryiv,1597 foresters,1,1kinghenryiv,1597 apiece,1,1kinghenryiv,1597 walked,1,1kinghenryiv,1597 footed,1,1kinghenryiv,1597 evenly,1,1kinghenryiv,1597 owes,1,1kinghenryiv,1597 shaken,1,1kinghenryiv,1597 Remorse,1,1kinghenryiv,1597 pace,1,1kinghenryiv,1597 kittened,1,1kinghenryiv,1597 Michaelmas,1,1kinghenryiv,1597 determination,1,1kinghenryiv,1597 yielder,1,1kinghenryiv,1597 puts,1,1kinghenryiv,1597 Case,1,1kinghenryiv,1597 except,1,1kinghenryiv,1597 frets,1,1kinghenryiv,1597 fall'n,1,1kinghenryiv,1597 Leading,1,1kinghenryiv,1597 detested,1,1kinghenryiv,1597 fiend,1,1kinghenryiv,1597 napkins,1,1kinghenryiv,1597 contain,1,1kinghenryiv,1597 images,1,1kinghenryiv,1597 prepared,1,1kinghenryiv,1597 revenge,1,1kinghenryiv,1597 courses,1,1kinghenryiv,1597 athwart,1,1kinghenryiv,1597 agents,1,1kinghenryiv,1597 Hot,1,1kinghenryiv,1597 renowned,1,1kinghenryiv,1597 unlucky,1,1kinghenryiv,1597 Lamp,1,1kinghenryiv,1597 accidents,1,1kinghenryiv,1597 attempts,1,1kinghenryiv,1597 maiden,1,1kinghenryiv,1597 vaulted,1,1kinghenryiv,1597 begets,1,1kinghenryiv,1597 toasts,1,1kinghenryiv,1597 waylaid,1,1kinghenryiv,1597 term,1,1kinghenryiv,1597 Robin,1,1kinghenryiv,1597 stocking,1,1kinghenryiv,1597 She'll,1,1kinghenryiv,1597 beggars,1,1kinghenryiv,1597 sovereign'st,1,1kinghenryiv,1597 thanks,1,1kinghenryiv,1597 roll,1,1kinghenryiv,1597 beans,1,1kinghenryiv,1597 inquire,1,1kinghenryiv,1597 Hark,1,1kinghenryiv,1597 few,1,1kinghenryiv,1597 slightest,1,1kinghenryiv,1597 grinning,1,1kinghenryiv,1597 shotten,1,1kinghenryiv,1597 cheque,1,1kinghenryiv,1597 chides,1,1kinghenryiv,1597 wildfire,1,1kinghenryiv,1597 naughty,1,1kinghenryiv,1597 behavior,1,1kinghenryiv,1597 scandalized,1,1kinghenryiv,1597 hurlyburly,1,1kinghenryiv,1597 fantasy,1,1kinghenryiv,1597 visited,1,1kinghenryiv,1597 daring,1,1kinghenryiv,1597 experiments,1,1kinghenryiv,1597 broil,1,1kinghenryiv,1597 foundation,1,1kinghenryiv,1597 brain'd,1,1kinghenryiv,1597 bountiful,1,1kinghenryiv,1597 Satan,1,1kinghenryiv,1597 Quit,1,1kinghenryiv,1597 Jesus,1,1kinghenryiv,1597 essentially,1,1kinghenryiv,1597 guess,1,1kinghenryiv,1597 guest,1,1kinghenryiv,1597 kindled,1,1kinghenryiv,1597 thought's,1,1kinghenryiv,1597 treasures,1,1kinghenryiv,1597 change,1,1kinghenryiv,1597 whistling,1,1kinghenryiv,1597 precedent,1,1kinghenryiv,1597 Europe,1,1kinghenryiv,1597 jaws,1,1kinghenryiv,1597 Lucifer,1,1kinghenryiv,1597 capital,1,1kinghenryiv,1597 surgery,1,1kinghenryiv,1597 superfluous,1,1kinghenryiv,1597 witch,1,1kinghenryiv,1597 North,1,1kinghenryiv,1597 triumph'd,1,1kinghenryiv,1597 canvas,1,1kinghenryiv,1597 fan,1,1kinghenryiv,1597 signum,1,1kinghenryiv,1597 leak,1,1kinghenryiv,1597 rood,1,1kinghenryiv,1597 brewer's,1,1kinghenryiv,1597 active,1,1kinghenryiv,1597 leap,1,1kinghenryiv,1597 therewith,1,1kinghenryiv,1597 pontifical,1,1kinghenryiv,1597 render'd,1,1kinghenryiv,1597 surfeited,1,1kinghenryiv,1597 washes,1,1kinghenryiv,1597 drawers,1,1kinghenryiv,1597 nag,1,1kinghenryiv,1597 lavish,1,1kinghenryiv,1597 esperance,1,1kinghenryiv,1597 Phoebus,1,1kinghenryiv,1597 breathes,1,1kinghenryiv,1597 ravishing,1,1kinghenryiv,1597 keeps,1,1kinghenryiv,1597 confederacy,1,1kinghenryiv,1597 bubbles,1,1kinghenryiv,1597 breeds,1,1kinghenryiv,1597 maim,1,1kinghenryiv,1597 main,1,1kinghenryiv,1597 unhanged,1,1kinghenryiv,1597 obscene,1,1kinghenryiv,1597 sprightly,1,1kinghenryiv,1597 maid,1,1kinghenryiv,1597 consider'd,1,1kinghenryiv,1597 ballad,1,1kinghenryiv,1597 venture,1,1kinghenryiv,1597 threescore,1,1kinghenryiv,1597 Malevolent,1,1kinghenryiv,1597 swallowing,1,1kinghenryiv,1597 impressed,1,1kinghenryiv,1597 younker,1,1kinghenryiv,1597 hind,1,1kinghenryiv,1597 empty,1,1kinghenryiv,1597 Ten,1,1kinghenryiv,1597 carries,1,1kinghenryiv,1597 canker'd,1,1kinghenryiv,1597 carrier,1,1kinghenryiv,1597 shrunk,1,1kinghenryiv,1597 layest,1,1kinghenryiv,1597 apprehension,1,1kinghenryiv,1597 barons,1,1kinghenryiv,1597 gammon,1,1kinghenryiv,1597 breathed,1,1kinghenryiv,1597 mischief,1,1kinghenryiv,1597 rascals,1,1kinghenryiv,1597 Paunch,1,1kinghenryiv,1597 perpendicular,1,1kinghenryiv,1597 faction,1,1kinghenryiv,1597 franklin,1,1kinghenryiv,1597 joyed,1,1kinghenryiv,1597 hearken'd,1,1kinghenryiv,1597 riding,1,1kinghenryiv,1597 retires,1,1kinghenryiv,1597 whelp,1,1kinghenryiv,1597 wilfully,1,1kinghenryiv,1597 trenching,1,1kinghenryiv,1597 smallest,1,1kinghenryiv,1597 nourish,1,1kinghenryiv,1597 Better,1,1kinghenryiv,1597 flocks,1,1kinghenryiv,1597 Else,1,1kinghenryiv,1597 Half,1,1kinghenryiv,1597 advisedly,1,1kinghenryiv,1597 'when,1,1kinghenryiv,1597 colossus,1,1kinghenryiv,1597 furniture,1,1kinghenryiv,1597 almost,1,1kinghenryiv,1597 trenches,1,1kinghenryiv,1597 gavest,1,1kinghenryiv,1597 loggerheads,1,1kinghenryiv,1597 Show'd,1,1kinghenryiv,1597 apple,1,1kinghenryiv,1597 restore,1,1kinghenryiv,1597 locks,1,1kinghenryiv,1597 gently,1,1kinghenryiv,1597 drinkings,1,1kinghenryiv,1597 pinch'd,1,1kinghenryiv,1597 noon,1,1kinghenryiv,1597 givest,1,1kinghenryiv,1597 deserving,1,1kinghenryiv,1597 Amamon,1,1kinghenryiv,1597 major,1,1kinghenryiv,1597 devils',1,1kinghenryiv,1597 Yedward,1,1kinghenryiv,1597 capons,1,1kinghenryiv,1597 exceedingly,1,1kinghenryiv,1597 vapours,1,1kinghenryiv,1597 contention,1,1kinghenryiv,1597 daily,1,1kinghenryiv,1597 rash,1,1kinghenryiv,1597 brazen,1,1kinghenryiv,1597 tender,1,1kinghenryiv,1597 Forbad,1,1kinghenryiv,1597 drunkard,1,1kinghenryiv,1597 bravely,1,1kinghenryiv,1597 traitors,1,1kinghenryiv,1597 candle,1,1kinghenryiv,1597 Excursions,1,1kinghenryiv,1597 'Stand',1,1kinghenryiv,1597 pellmell,1,1kinghenryiv,1597 bestirr'd,1,1kinghenryiv,1597 misuse,1,1kinghenryiv,1597 nonce,1,1kinghenryiv,1597 extant,1,1kinghenryiv,1597 dangers,1,1kinghenryiv,1597 Love,1,1kinghenryiv,1597 tacked,1,1kinghenryiv,1597 Base,1,1kinghenryiv,1597 leathern,1,1kinghenryiv,1597 squires,1,1kinghenryiv,1597 wandering,1,1kinghenryiv,1597 Soft,1,1kinghenryiv,1597 chase,1,1kinghenryiv,1597 restrain,1,1kinghenryiv,1597 'By,1,1kinghenryiv,1597 Down,1,1kinghenryiv,1597 substance,1,1kinghenryiv,1597 written,1,1kinghenryiv,1597 bridges,1,1kinghenryiv,1597 foresee,1,1kinghenryiv,1597 Sit,1,1kinghenryiv,1597 learning,1,1kinghenryiv,1597 buffeting,1,1kinghenryiv,1597 narrow,1,1kinghenryiv,1597 tristful,1,1kinghenryiv,1597 affections,1,1kinghenryiv,1597 thirsty,1,1kinghenryiv,1597 stays,1,1kinghenryiv,1597 upstairs,1,1kinghenryiv,1597 equally,1,1kinghenryiv,1597 progress,1,1kinghenryiv,1597 haughtiness,1,1kinghenryiv,1597 fairy,1,1kinghenryiv,1597 perform,1,1kinghenryiv,1597 o'erturn,1,1kinghenryiv,1597 parting,1,1kinghenryiv,1597 adopted,1,1kinghenryiv,1597 Monday,1,1kinghenryiv,1597 threefold,1,1kinghenryiv,1597 ignorant,1,1kinghenryiv,1597 gingerbread,1,1kinghenryiv,1597 unhappy,1,1kinghenryiv,1597 chuffs,1,1kinghenryiv,1597 eggs,1,1kinghenryiv,1597 ransomless,1,1kinghenryiv,1597 several,1,1kinghenryiv,1597 gallantly,1,1kinghenryiv,1597 sawest,1,1kinghenryiv,1597 Alban's,1,1kinghenryiv,1597 cloak,1,1kinghenryiv,1597 bestride,1,1kinghenryiv,1597 leaving,1,1kinghenryiv,1597 child,1,1kinghenryiv,1597 Loud,1,1kinghenryiv,1597 Turns,1,1kinghenryiv,1597 precious,1,1kinghenryiv,1597 placed,1,1kinghenryiv,1597 Peas,1,1kinghenryiv,1597 unprovided,1,1kinghenryiv,1597 community,1,1kinghenryiv,1597 Knows,1,1kinghenryiv,1597 appointment,1,1kinghenryiv,1597 gorged,1,1kinghenryiv,1597 pizzle,1,1kinghenryiv,1597 device,1,1kinghenryiv,1597 Tying,1,1kinghenryiv,1597 doors,1,1kinghenryiv,1597 impaint,1,1kinghenryiv,1597 articulate,1,1kinghenryiv,1597 Rebuke,1,1kinghenryiv,1597 Hybla,1,1kinghenryiv,1597 towards,1,1kinghenryiv,1597 stark,1,1kinghenryiv,1597 elsewhere,1,1kinghenryiv,1597 accepted,1,1kinghenryiv,1597 milk,1,1kinghenryiv,1597 industry,1,1kinghenryiv,1597 elf,1,1kinghenryiv,1597 fares,1,1kinghenryiv,1597 ell,1,1kinghenryiv,1597 disdain'd,1,1kinghenryiv,1597 saving,1,1kinghenryiv,1597 conclusion,1,1kinghenryiv,1597 engross,1,1kinghenryiv,1597 beslubber,1,1kinghenryiv,1597 Makes,1,1kinghenryiv,1597 kisses,1,1kinghenryiv,1597 range,1,1kinghenryiv,1597 immask,1,1kinghenryiv,1597 sacrifices,1,1kinghenryiv,1597 Grand,1,1kinghenryiv,1597 tempest,1,1kinghenryiv,1597 enriched,1,1kinghenryiv,1597 towers,1,1kinghenryiv,1597 starting,1,1kinghenryiv,1597 smother,1,1kinghenryiv,1597 dreamest,1,1kinghenryiv,1597 mutter,1,1kinghenryiv,1597 fortnight,1,1kinghenryiv,1597 beads,1,1kinghenryiv,1597 humorous,1,1kinghenryiv,1597 chair,1,1kinghenryiv,1597 malt,1,1kinghenryiv,1597 nephew's,1,1kinghenryiv,1597 reading,1,1kinghenryiv,1597 procure,1,1kinghenryiv,1597 belong,1,1kinghenryiv,1597 'gainst,1,1kinghenryiv,1597 dowlas,1,1kinghenryiv,1597 mask,1,1kinghenryiv,1597 Could,1,1kinghenryiv,1597 curtsy,1,1kinghenryiv,1597 hogsheads,1,1kinghenryiv,1597 egg,1,1kinghenryiv,1597 misprison,1,1kinghenryiv,1597 skim,1,1kinghenryiv,1597 clinking,1,1kinghenryiv,1597 tents,1,1kinghenryiv,1597 parties,1,1kinghenryiv,1597 chief,1,1kinghenryiv,1597 ranks,1,1kinghenryiv,1597 veriest,1,1kinghenryiv,1597 persuaded,1,1kinghenryiv,1597 comet,1,1kinghenryiv,1597 thick,1,1kinghenryiv,1597 blot,1,1kinghenryiv,1597 Welshwomen,1,1kinghenryiv,1597 Marian,1,1kinghenryiv,1597 bowcase,1,1kinghenryiv,1597 Archbishop's,1,1kinghenryiv,1597 vein,1,1kinghenryiv,1597 leader,1,1kinghenryiv,1597 infinitely,1,1kinghenryiv,1597 magician,1,1kinghenryiv,1597 leaden,1,1kinghenryiv,1597 blow,1,1kinghenryiv,1597 flatter,1,1kinghenryiv,1597 starved,1,1kinghenryiv,1597 minutes,1,1kinghenryiv,1597 inch,1,1kinghenryiv,1597 ballads,1,1kinghenryiv,1597 gates,1,1kinghenryiv,1597 beside,1,1kinghenryiv,1597 searcheth,1,1kinghenryiv,1597 infect,1,1kinghenryiv,1597 special,1,1kinghenryiv,1597 bottom'd,1,1kinghenryiv,1597 miss,1,1kinghenryiv,1597 mountain,1,1kinghenryiv,1597 higher,1,1kinghenryiv,1597 peremptory,1,1kinghenryiv,1597 northward,1,1kinghenryiv,1597 search,1,1kinghenryiv,1597 accompanied,1,1kinghenryiv,1597 discharge,1,1kinghenryiv,1597 number,1,1kinghenryiv,1597 attract,1,1kinghenryiv,1597 borrow'd,1,1kinghenryiv,1597 wantonness,1,1kinghenryiv,1597 uttered,1,1kinghenryiv,1597 Made,1,1kinghenryiv,1597 gib,1,1kinghenryiv,1597 Glittering,1,1kinghenryiv,1597 accusation,1,1kinghenryiv,1597 ingrate,1,1kinghenryiv,1597 horrible,1,1kinghenryiv,1597 oil,1,1kinghenryiv,1597 trouble,1,1kinghenryiv,1597 findeth,1,1kinghenryiv,1597 Nicholas',1,1kinghenryiv,1597 disguises,1,1kinghenryiv,1597 rendezvous,1,1kinghenryiv,1597 lieutenant,1,1kinghenryiv,1597 desired,1,1kinghenryiv,1597 bear'st,1,1kinghenryiv,1597 possession,1,1kinghenryiv,1597 jeering,1,1kinghenryiv,1597 burgomasters,1,1kinghenryiv,1597 railing,1,1kinghenryiv,1597 pismires,1,1kinghenryiv,1597 auditor,1,1kinghenryiv,1597 stall,1,1kinghenryiv,1597 Doomsday,1,1kinghenryiv,1597 trembling,1,1kinghenryiv,1597 sleeves,1,1kinghenryiv,1597 profited,1,1kinghenryiv,1597 impudent,1,1kinghenryiv,1597 Embowell'd,1,1kinghenryiv,1597 affairs,1,1kinghenryiv,1597 agate,1,1kinghenryiv,1597 proved,1,1kinghenryiv,1597 vasty,1,1kinghenryiv,1597 renown,1,1kinghenryiv,1597 Co'fil',1,1kinghenryiv,1597 grave,1,1kinghenryiv,1597 flesh'd,1,1kinghenryiv,1597 predicament,1,1kinghenryiv,1597 rogue's,1,1kinghenryiv,1597 odd,1,1kinghenryiv,1597 flies,1,1kinghenryiv,1597 stale,1,1kinghenryiv,1597 salt,1,1kinghenryiv,1597 Maid,1,1kinghenryiv,1597 corrival,1,1kinghenryiv,1597 dishonour,1,1kinghenryiv,1597 banishment,1,1kinghenryiv,1597 throw,1,1kinghenryiv,1597 tranquillity,1,1kinghenryiv,1597 stamp,1,1kinghenryiv,1597 Defy,1,1kinghenryiv,1597 We'll,1,1kinghenryiv,1597 Unapt,1,1kinghenryiv,1597 worshippest,1,1kinghenryiv,1597 scutcheon,1,1kinghenryiv,1597 arrival,1,1kinghenryiv,1597 Begins,1,1kinghenryiv,1597 hateful,1,1kinghenryiv,1597 reprisal,1,1kinghenryiv,1597 stomach,1,1kinghenryiv,1597 turvy,1,1kinghenryiv,1597 bands,1,1kinghenryiv,1597 traders,1,1kinghenryiv,1597 curb,1,1kinghenryiv,1597 receipt,1,1kinghenryiv,1597 hearest,1,1kinghenryiv,1597 bread,1,1kinghenryiv,1597 Lazarus,1,1kinghenryiv,1597 bawds,1,1kinghenryiv,1597 woes,1,1kinghenryiv,1597 knife,1,1kinghenryiv,1597 loving,1,1kinghenryiv,1597 third,1,1kinghenryiv,1597 wast't,1,1kinghenryiv,1597 haughty,1,1kinghenryiv,1597 sitting,1,1kinghenryiv,1597 THOMAS,1,1kinghenryiv,1597 Tuesday,1,1kinghenryiv,1597 tractable,1,1kinghenryiv,1597 abundance,1,1kinghenryiv,1597 beastly,1,1kinghenryiv,1597 herds,1,1kinghenryiv,1597 allegiance,1,1kinghenryiv,1597 riot,1,1kinghenryiv,1597 posted,1,1kinghenryiv,1597 closer,1,1kinghenryiv,1597 walks,1,1kinghenryiv,1597 Baited,1,1kinghenryiv,1597 frailty,1,1kinghenryiv,1597 'homo',1,1kinghenryiv,1597 happiest,1,1kinghenryiv,1597 scarecrows,1,1kinghenryiv,1597 clock,1,1kinghenryiv,1597 flight,1,1kinghenryiv,1597 musicians,1,1kinghenryiv,1597 ripe,1,1kinghenryiv,1597 archdeacon,1,1kinghenryiv,1597 impediments,1,1kinghenryiv,1597 death's,1,1kinghenryiv,1597 Herefordshire,1,1kinghenryiv,1597 subtle,1,1kinghenryiv,1597 continuance,1,1kinghenryiv,1597 decrees,1,1kinghenryiv,1597 certainly,1,1kinghenryiv,1597 maidenhead,1,1kinghenryiv,1597 patiently,1,1kinghenryiv,1597 musical,1,1kinghenryiv,1597 heigh,1,1kinghenryiv,1597 topples,1,1kinghenryiv,1597 diced,1,1kinghenryiv,1597 Mercury,1,1kinghenryiv,1597 stiff,1,1kinghenryiv,1597 tunes,1,1kinghenryiv,1597 wan,1,1kinghenryiv,1597 earnest,1,1kinghenryiv,1597 carbonado,1,1kinghenryiv,1597 Weep,1,1kinghenryiv,1597 duty,1,1kinghenryiv,1597 able,1,1kinghenryiv,1597 tailor,1,1kinghenryiv,1597 swarm,1,1kinghenryiv,1597 receive,1,1kinghenryiv,1597 between,1,1kinghenryiv,1597 Holmedon's,1,1kinghenryiv,1597 audience,1,1kinghenryiv,1597 prodigals,1,1kinghenryiv,1597 intent,1,1kinghenryiv,1597 bacons,1,1kinghenryiv,1597 encamped,1,1kinghenryiv,1597 ambition,1,1kinghenryiv,1597 threatens,1,1kinghenryiv,1597 solemnly,1,1kinghenryiv,1597 libertine,1,1kinghenryiv,1597 oats,1,1kinghenryiv,1597 intend,1,1kinghenryiv,1597 unminded,1,1kinghenryiv,1597 garland,1,1kinghenryiv,1597 girdle,1,1kinghenryiv,1597 wood,1,1kinghenryiv,1597 brother's,1,1kinghenryiv,1597 herring,1,1kinghenryiv,1597 Semblably,1,1kinghenryiv,1597 estridges,1,1kinghenryiv,1597 thereabouts,1,1kinghenryiv,1597 uncle's,1,1kinghenryiv,1597 wool,1,1kinghenryiv,1597 ends,1,1kinghenryiv,1597 apace,1,1kinghenryiv,1597 Esperance,1,1kinghenryiv,1597 popinjay,1,1kinghenryiv,1597 spieth,1,1kinghenryiv,1597 price,1,1kinghenryiv,1597 Shirley,1,1kinghenryiv,1597 prick,1,1kinghenryiv,1597 bearded,1,1kinghenryiv,1597 Fourth,1,1kinghenryiv,1597 wheel,1,1kinghenryiv,1597 pounds,1,1kinghenryiv,1597 witted,1,1kinghenryiv,1597 counterfeit'st,1,1kinghenryiv,1597 cursed,1,1kinghenryiv,1597 bounty,1,1kinghenryiv,1597 walk'd,1,1kinghenryiv,1597 pester'd,1,1kinghenryiv,1597 Monsieur,1,1kinghenryiv,1597 quiddities,1,1kinghenryiv,1597 enforced,1,1kinghenryiv,1597 drowned,1,1kinghenryiv,1597 curses,1,1kinghenryiv,1597 throats,1,1kinghenryiv,1597 snorting,1,1kinghenryiv,1597 ginger,1,1kinghenryiv,1597 grossly,1,1kinghenryiv,1597 ragamuffins,1,1kinghenryiv,1597 factor,1,1kinghenryiv,1597 surprised,1,1kinghenryiv,1597 angle,1,1kinghenryiv,1597 vulgar,1,1kinghenryiv,1597 rustling,1,1kinghenryiv,1597 Instinct,1,1kinghenryiv,1597 drone,1,1kinghenryiv,1597 cuckoo's,1,1kinghenryiv,1597 IV's,1,1kinghenryiv,1597 dreamt,1,1kinghenryiv,1597 joints,1,1kinghenryiv,1597 muddy,1,1kinghenryiv,1597 stolest,1,1kinghenryiv,1597 hack,1,1kinghenryiv,1597 conference,1,1kinghenryiv,1597 Pomgarnet,1,1kinghenryiv,1597 rotten,1,1kinghenryiv,1597 prologue,1,1kinghenryiv,1597 exceedeth,1,1kinghenryiv,1597 poison,1,1kinghenryiv,1597 listening,1,1kinghenryiv,1597 inform,1,1kinghenryiv,1597 clapped,1,1kinghenryiv,1597 cressets,1,1kinghenryiv,1597 killing,1,1kinghenryiv,1597 gunpowder,1,1kinghenryiv,1597 inclination,1,1kinghenryiv,1597 lopp'd,1,1kinghenryiv,1597 wondrous,1,1kinghenryiv,1597 wife's,1,1kinghenryiv,1597 supply,1,1kinghenryiv,1597 droop,1,1kinghenryiv,1597 caterpillars,1,1kinghenryiv,1597 clip,1,1kinghenryiv,1597 similes,1,1kinghenryiv,1597 cups,1,1kinghenryiv,1597 nest,1,1kinghenryiv,1597 tuck,1,1kinghenryiv,1597 changelings,1,1kinghenryiv,1597 clocks,1,1kinghenryiv,1597 whistle,1,1kinghenryiv,1597 virtuously,1,1kinghenryiv,1597 psalms,1,1kinghenryiv,1597 farther,1,1kinghenryiv,1597 harvest,1,1kinghenryiv,1597 Amongst,1,1kinghenryiv,1597 serves,1,1kinghenryiv,1597 Balk'd,1,1kinghenryiv,1597 unsatisfied,1,1kinghenryiv,1597 pagans,1,1kinghenryiv,1597 Menteith,1,1kinghenryiv,1597 stepp'd,1,1kinghenryiv,1597 angry,1,1kinghenryiv,1597 falling,1,1kinghenryiv,1597 Lincolnshire,1,1kinghenryiv,1597 went,1,1kinghenryiv,1597 stirs,1,1kinghenryiv,1597 fail,1,1kinghenryiv,1597 comparisons,1,1kinghenryiv,1597 gifts,1,1kinghenryiv,1597 Strike,1,1kinghenryiv,1597 grass,1,1kinghenryiv,1597 Rob,1,1kinghenryiv,1597 heirs,1,1kinghenryiv,1597 pouch,1,1kinghenryiv,1597 bolters,1,1kinghenryiv,1597 Douglas',1,1kinghenryiv,1597 Swear,1,1kinghenryiv,1597 'in,1,1kinghenryiv,1597 profiting,1,1kinghenryiv,1597 wept,1,1kinghenryiv,1597 wanted,1,1kinghenryiv,1597 misleader,1,1kinghenryiv,1597 Time,1,1kinghenryiv,1597 grate,1,1kinghenryiv,1597 cloth,1,1kinghenryiv,1597 presser,1,1kinghenryiv,1597 highly,1,1kinghenryiv,1597 giving,1,1kinghenryiv,1597 massacres,1,1kinghenryiv,1597 Brother,1,1kinghenryiv,1597 miracle,1,1kinghenryiv,1597 crystal,1,1kinghenryiv,1597 exhalations,1,1kinghenryiv,1597 utterly,1,1kinghenryiv,1597 orb,1,1kinghenryiv,1597 plumed,1,1kinghenryiv,1597 embossed,1,1kinghenryiv,1597 wilful,1,1kinghenryiv,1597 windmill,1,1kinghenryiv,1597 affable,1,1kinghenryiv,1597 commenced,1,1kinghenryiv,1597 Finsbury,1,1kinghenryiv,1597 crests,1,1kinghenryiv,1597 catechism,1,1kinghenryiv,1597 surnamed,1,1kinghenryiv,1597 bastinado,1,1kinghenryiv,1597 Stabbing,1,1kinghenryiv,1597 scorns,1,1kinghenryiv,1597 mines,1,1kinghenryiv,1597 earthy,1,1kinghenryiv,1597 sufferances,1,1kinghenryiv,1597 contrarious,1,1kinghenryiv,1597 cuisses,1,1kinghenryiv,1597 west,1,1kinghenryiv,1597 Meets,1,1kinghenryiv,1597 clay,1,1kinghenryiv,1597 fie,1,1kinghenryiv,1597 allow,1,1kinghenryiv,1597 feared,1,1kinghenryiv,1597 pepper,1,1kinghenryiv,1597 flame,1,1kinghenryiv,1597 impeach,1,1kinghenryiv,1597 officer,1,1kinghenryiv,1597 banns,1,1kinghenryiv,1597 swallow'd,1,1kinghenryiv,1597 neglectingly,1,1kinghenryiv,1597 task'd,1,1kinghenryiv,1597 unwashed,1,1kinghenryiv,1597 clap,1,1kinghenryiv,1597 Lead,1,1kinghenryiv,1597 nail'd,1,1kinghenryiv,1597 Fast,1,1kinghenryiv,1597 married,1,1kinghenryiv,1597 chewed,1,1kinghenryiv,1597 barn,1,1kinghenryiv,1597 thereby,1,1kinghenryiv,1597 rebuke,1,1kinghenryiv,1597 duties,1,1kinghenryiv,1597 innkeeper,1,1kinghenryiv,1597 contagious,1,1kinghenryiv,1597 answer'd,1,1kinghenryiv,1597 shown,1,1kinghenryiv,1597 worship,1,1kinghenryiv,1597 Unto,1,1kinghenryiv,1597 divers,1,1kinghenryiv,1597 smug,1,1kinghenryiv,1597 poison'd,1,1kinghenryiv,1597 Jerusalem,1,1kinghenryiv,1597 linen,1,1kinghenryiv,1597 practise,1,1kinghenryiv,1597 Advantage,1,1kinghenryiv,1597 Barbary,1,1kinghenryiv,1597 perceive,1,1kinghenryiv,1597 Bears,1,1kinghenryiv,1597 beware,1,1kinghenryiv,1597 chiefly,1,1kinghenryiv,1597 setter,1,1kinghenryiv,1597 bate,1,1kinghenryiv,1597 whither,1,1kinghenryiv,1597 watch'd,1,1kinghenryiv,1597 chewet,1,1kinghenryiv,1597 starling,1,1kinghenryiv,1597 destroy'd,1,1kinghenryiv,1597 tilt,1,1kinghenryiv,1597 salvation,1,1kinghenryiv,1597 bird,1,1kinghenryiv,1597 comfort,1,1kinghenryiv,1597 stinking,1,1kinghenryiv,1597 aunt,1,1kinghenryiv,1597 public,1,1kinghenryiv,1597 thanked,1,1kinghenryiv,1597 maker's,1,1kinghenryiv,1597 Answer'd,1,1kinghenryiv,1597 grievances,1,1kinghenryiv,1597 prophesy,1,1kinghenryiv,1597 ditch,1,1kinghenryiv,1597 dropsies,1,1kinghenryiv,1597 deliver'd,1,1kinghenryiv,1597 Redeeming,1,1kinghenryiv,1597 appointed,1,1kinghenryiv,1597 cock,1,1kinghenryiv,1597 hook,1,1kinghenryiv,1597 bounds,1,1kinghenryiv,1597 insulting,1,1kinghenryiv,1597 rising,1,1kinghenryiv,1597 spendest,1,1kinghenryiv,1597 named,1,1kinghenryiv,1597 racks,1,1kinghenryiv,1597 Each,1,1kinghenryiv,1597 skimble,1,1kinghenryiv,1597 fare,1,1kinghenryiv,1597 flock,1,1kinghenryiv,1597 meets,1,1kinghenryiv,1597 lag,1,1kinghenryiv,1597 coat,1,1kinghenryiv,1597 tall,1,1kinghenryiv,1597 man's,1,1kinghenryiv,1597 arm'd,1,1kinghenryiv,1597 frontiers,1,1kinghenryiv,1597 Partlet,1,1kinghenryiv,1597 knighthood,1,1kinghenryiv,1597 bind,1,1kinghenryiv,1597 otherwise,1,1kinghenryiv,1597 outdare,1,1kinghenryiv,1597 poetry,1,1kinghenryiv,1597 shameless,1,1kinghenryiv,1597 convey,1,1kinghenryiv,1597 haunting,1,1kinghenryiv,1597 shirts,1,1kinghenryiv,1597 Worse,1,1kinghenryiv,1597 consists,1,1kinghenryiv,1597 memento,1,1kinghenryiv,1597 intolerable,1,1kinghenryiv,1597 'Francis,1,1kinghenryiv,1597 holes,1,1kinghenryiv,1597 jordan,1,1kinghenryiv,1597 Villains,1,1kinghenryiv,1597 kinsman's,1,1kinghenryiv,1597 creep,1,1kinghenryiv,1597 ought,1,1kinghenryiv,1597 bigger,1,1kinghenryiv,1597 aspects,1,1kinghenryiv,1597 Misuse,1,1kinghenryiv,1597 dexterity,1,1kinghenryiv,1597 Canterbury,1,1kinghenryiv,1597 capon's,1,1kinghenryiv,1597 clear,1,1kinghenryiv,1597 Pride,1,1kinghenryiv,1597 'Courage,1,1kinghenryiv,1597 holp,1,1kinghenryiv,1597 victories,1,1kinghenryiv,1597 Lay,1,1kinghenryiv,1597 baffle,1,1kinghenryiv,1597 waiter,1,1kinghenryiv,1597 fertile,1,1kinghenryiv,1597 corrivals,1,1kinghenryiv,1597 links,1,1kinghenryiv,1597 temper'd,1,1kinghenryiv,1597 stand'st,1,1kinghenryiv,1597 unknit,1,1kinghenryiv,1597 misquote,1,1kinghenryiv,1597 lards,1,1kinghenryiv,1597 sweats,1,1kinghenryiv,1597 giddy,1,1kinghenryiv,1597 Trojans,1,1kinghenryiv,1597 fall'st,1,1kinghenryiv,1597 closing,1,1kinghenryiv,1597 variation,1,1kinghenryiv,1597 dragon,1,1kinghenryiv,1597 carve,1,1kinghenryiv,1597 bladder,1,1kinghenryiv,1597 loyal,1,1kinghenryiv,1597 revolt,1,1kinghenryiv,1597 discomfited,1,1kinghenryiv,1597 unsay,1,1kinghenryiv,1597 paraquito,1,1kinghenryiv,1597 skinker,1,1kinghenryiv,1597 rabbit,1,1kinghenryiv,1597 entrap,1,1kinghenryiv,1597 Where's,1,1kinghenryiv,1597 remnant,1,1kinghenryiv,1597 feeding,1,1kinghenryiv,1597 eagle's,1,1kinghenryiv,1597 resolution,1,1kinghenryiv,1597 slanders,1,1kinghenryiv,1597 train'd,1,1kinghenryiv,1597 Newgate,1,1kinghenryiv,1597 conjure,1,1kinghenryiv,1597 falsehood,1,1kinghenryiv,1597 task,1,1kinghenryiv,1597 choler,1,1kinghenryiv,1597 goodman,1,1kinghenryiv,1597 Lends,1,1kinghenryiv,1597 licked,1,1kinghenryiv,1597 crossest,1,1kinghenryiv,1597 prayers,1,1kinghenryiv,1597 Envy,1,1kinghenryiv,1597 master'd,1,1kinghenryiv,1597 'Bring,1,1kinghenryiv,1597 country's,1,1kinghenryiv,1597 hung,1,1kinghenryiv,1597 approved,1,1kinghenryiv,1597 perfumed,1,1kinghenryiv,1597 hairs,1,1kinghenryiv,1597 combatants,1,1kinghenryiv,1597 glittering,1,1kinghenryiv,1597 cheerful,1,1kinghenryiv,1597 offerings,1,1kinghenryiv,1597 fickle,1,1kinghenryiv,1597 pudding,1,1kinghenryiv,1597 Attended,1,1kinghenryiv,1597 always,1,1kinghenryiv,1597 winged,1,1kinghenryiv,1597 leaping,1,1kinghenryiv,1597 lot,1,1kinghenryiv,1597 packet,1,1kinghenryiv,1597 Archdeacon's,1,1kinghenryiv,1597 sweat,1,1kinghenryiv,1597 aloof,1,1kinghenryiv,1597 ugly,1,1kinghenryiv,1597 states,1,1kinghenryiv,1597 Ebrew,1,1kinghenryiv,1597 converse,1,1kinghenryiv,1597 decree,1,1kinghenryiv,1597 needful,1,1kinghenryiv,1597 unsavoury,1,1kinghenryiv,1597 proficient,1,1kinghenryiv,1597 crept,1,1kinghenryiv,1597 currents,1,1kinghenryiv,1597 Seek,1,1kinghenryiv,1597 took't,1,1kinghenryiv,1597 SCROOP,1,1kinghenryiv,1597 weaver,1,1kinghenryiv,1597 promiseth,1,1kinghenryiv,1597 supplied,1,1kinghenryiv,1597 plentiful,1,1kinghenryiv,1597 drums,1,1kinghenryiv,1597 reap'd,1,1kinghenryiv,1597 fights,1,1kinghenryiv,1597 talking,1,1kinghenryiv,1597 weaved,1,1kinghenryiv,1597 feeling,1,1kinghenryiv,1597 trespass,1,1kinghenryiv,1597 Lie,1,1kinghenryiv,1597 ended,1,1kinghenryiv,1597 thief's,1,1kinghenryiv,1597 Ne'er,1,1kinghenryiv,1597 look'd,1,1kinghenryiv,1597 discretion,1,1kinghenryiv,1597 frontier,1,1kinghenryiv,1597 camest,1,1kinghenryiv,1597 Steps,1,1kinghenryiv,1597 burned,1,1kinghenryiv,1597 pricks,1,1kinghenryiv,1597 condition,1,1kinghenryiv,1597 hundreds,1,1kinghenryiv,1597 liking,1,1kinghenryiv,1597 cost,1,1kinghenryiv,1597 Mine,1,1kinghenryiv,1597 render,1,1kinghenryiv,1597 True,1,1kinghenryiv,1597 forwarding,1,1kinghenryiv,1597 packed,1,1kinghenryiv,1597 ditty,1,1kinghenryiv,1597 hull,1,1kinghenryiv,1597 Drawers,1,1kinghenryiv,1597 arrant,1,1kinghenryiv,1597 secrecy,1,1kinghenryiv,1597 downstairs,1,1kinghenryiv,1597 Dick,1,1kinghenryiv,1597 taffeta,1,1kinghenryiv,1597 basilisks,1,1kinghenryiv,1597 changing,1,1kinghenryiv,1597 usage,1,1kinghenryiv,1597 scourged,1,1kinghenryiv,1597 heavenly,1,1kinghenryiv,1597 portents,1,1kinghenryiv,1597 Madeira,1,1kinghenryiv,1597 He'll,1,1kinghenryiv,1597 understands,1,1kinghenryiv,1597 loyalty,1,1kinghenryiv,1597 musician,1,1kinghenryiv,1597 Beguiling,1,1kinghenryiv,1597 Know,1,1kinghenryiv,1597 therein,1,1kinghenryiv,1597 dwindle,1,1kinghenryiv,1597 lovest,1,1kinghenryiv,1597 cushion,1,1kinghenryiv,1597 curtain,1,1kinghenryiv,1597 wretched,1,1kinghenryiv,1597 kindred,1,1kinghenryiv,1597 tied,1,1kinghenryiv,1597 loathe,1,1kinghenryiv,1597 blushing,1,1kinghenryiv,1597 secure,1,1kinghenryiv,1597 apartment,1,1kinghenryiv,1597 self,1,1kinghenryiv,1597 fairly,1,1kinghenryiv,1597 raven,1,1kinghenryiv,1597 walk'st,1,1kinghenryiv,1597 indirectly,1,1kinghenryiv,1597 industrious,1,1kinghenryiv,1597 Cry,1,1kinghenryiv,1597 tide,1,1kinghenryiv,1597 moon's,1,1kinghenryiv,1597 finless,1,1kinghenryiv,1597 uncertain,1,1kinghenryiv,1597 ball,1,1kinghenryiv,1597 Forthwith,1,1kinghenryiv,1597 post,1,1kinghenryiv,1597 cases,1,1kinghenryiv,1597 Ralph,1,1kinghenryiv,1597 butchered,1,1kinghenryiv,1597 prison,1,1kinghenryiv,1597 led,1,1kinghenryiv,1597 fearfully,1,1kinghenryiv,1597 underwent,1,1kinghenryiv,1597 Neither,1,1kinghenryiv,1597 colt,1,1kinghenryiv,1597 alas,1,1kinghenryiv,1597 grieves,1,1kinghenryiv,1597 remote,1,1kinghenryiv,1597 Daventry,1,1kinghenryiv,1597 Opinion,1,1kinghenryiv,1597 would'st,1,1kinghenryiv,1597 Archibald,1,1kinghenryiv,1597 judgest,1,1kinghenryiv,1597 carriage,1,1kinghenryiv,1597 regards,1,1kinghenryiv,1597 'well,1,1kinghenryiv,1597 howl,1,1kinghenryiv,1597 insensible,1,1kinghenryiv,1597 sullen,1,1kinghenryiv,1597 season,1,1kinghenryiv,1597 fearing,1,1kinghenryiv,1597 MISTRESS,1,1kinghenryiv,1597 Sutton,1,1kinghenryiv,1597 garter,1,1kinghenryiv,1597 leagues,1,1kinghenryiv,1597 unyoked,1,1kinghenryiv,1597 highest,1,1kinghenryiv,1597 renders,1,1kinghenryiv,1597 QUICKLY,1,1kinghenryiv,1597 Mistress,1,1kinghenryiv,1597 strikers,1,1kinghenryiv,1597 slumbers,1,1kinghenryiv,1597 palpable,1,1kinghenryiv,1597 lip,1,1kinghenryiv,1597 poop,1,1kinghenryiv,1597 seem'st,1,1kinghenryiv,1597 instead,1,1kinghenryiv,1597 chops,1,1kinghenryiv,1597 hued,1,1kinghenryiv,1597 'zounds,1,1kinghenryiv,1597 budding,1,1kinghenryiv,1597 Two,1,1kinghenryiv,1597 impawn'd,1,1kinghenryiv,1597 fobbed,1,1kinghenryiv,1597 bearest,1,1kinghenryiv,1597 slow,1,1kinghenryiv,1597 fetches,1,1kinghenryiv,1597 licence,1,1kinghenryiv,1597 petre,1,1kinghenryiv,1597 trod,1,1kinghenryiv,1597 endured,1,1kinghenryiv,1597 servants,1,1kinghenryiv,1597 borrowed,1,1kinghenryiv,1597 'hum,1,1kinghenryiv,1597 Quickly,1,1kinghenryiv,1597 sympathize,1,1kinghenryiv,1597 Prince's,1,1kinghenryiv,1597 soldest,1,1kinghenryiv,1597 scot,1,1kinghenryiv,1597 Proceeded,1,1kinghenryiv,1597 unjointed,1,1kinghenryiv,1597 write,1,1kinghenryiv,1597 cloudy,1,1kinghenryiv,1597 evening,1,1kinghenryiv,1597 stewed,1,1kinghenryiv,1597 confound,1,1kinghenryiv,1597 Cheerly,1,1kinghenryiv,1597 allies,1,1kinghenryiv,1597 limbs,1,1kinghenryiv,1597 alter'd,1,1kinghenryiv,1597 poulter's,1,1kinghenryiv,1597 maintained,1,1kinghenryiv,1597 reeds,1,1kinghenryiv,1597 Gave,1,1kinghenryiv,1597 dial's,1,1kinghenryiv,1597 abroad,1,1kinghenryiv,1597 spite,1,1kinghenryiv,1597 Towards,1,1kinghenryiv,1597 afeard,1,1kinghenryiv,1597 unclasp,1,1kinghenryiv,1597 colted,1,1kinghenryiv,1597 Five,1,1kinghenryiv,1597 smiling,1,1kinghenryiv,1597 beastliness,1,1kinghenryiv,1597 forced,1,1kinghenryiv,1597 enamoured,1,1kinghenryiv,1597 begins,1,1kinghenryiv,1597 learn,1,1kinghenryiv,1597 Sauce,1,1kinghenryiv,1597 forces,1,1kinghenryiv,1597 villains',1,1kinghenryiv,1597 leash,1,1kinghenryiv,1597 lease,1,1kinghenryiv,1597 doing,1,1kinghenryiv,1597 dread,1,1kinghenryiv,1597 dismiss'd,1,1kinghenryiv,1597 soused,1,1kinghenryiv,1597 trusted,1,1kinghenryiv,1597 warlike,1,1kinghenryiv,1597 correction,1,1kinghenryiv,1597 Gregory,1,1kinghenryiv,1597 sister,1,1kinghenryiv,1597 headed,1,1kinghenryiv,1597 mew,1,1kinghenryiv,1597 swim,1,1kinghenryiv,1597 lofty,1,1kinghenryiv,1597 treacherous,1,1kinghenryiv,1597 vilest,1,1kinghenryiv,1597 misconstrued,1,1kinghenryiv,1597 cranking,1,1kinghenryiv,1597 Fits,1,1kinghenryiv,1597 According,1,1kinghenryiv,1597 grafted,1,1kinghenryiv,1597 elbow,1,1kinghenryiv,1597 Rise,1,1kinghenryiv,1597 reformation,1,1kinghenryiv,1597 nobody,1,1kinghenryiv,1597 rights,1,1kinghenryiv,1597 roguery,1,1kinghenryiv,1597 Since,1,1kinghenryiv,1597 burnt,1,1kinghenryiv,1597 limit,1,1kinghenryiv,1597 Sixteen,1,1kinghenryiv,1597 Met,1,1kinghenryiv,1597 fled,1,1kinghenryiv,1597 Enfeoff'd,1,1kinghenryiv,1597 cess,1,1kinghenryiv,1597 'Eight,1,1kinghenryiv,1597 crafty,1,1kinghenryiv,1597 Eight,1,1kinghenryiv,1597 respected,1,1kinghenryiv,1597 horsemanship,1,1kinghenryiv,1597 Forsooth,1,1kinghenryiv,1597 pursuers,1,1kinghenryiv,1597 warriors,1,1kinghenryiv,1597 bellies,1,1kinghenryiv,1597 question'd,1,1kinghenryiv,1597 pages,1,1kinghenryiv,1597 Bootless,1,1kinghenryiv,1597 beguile,1,1kinghenryiv,1597 players,1,1kinghenryiv,1597 sometimes,1,1kinghenryiv,1597 military,1,1kinghenryiv,1597 participation,1,1kinghenryiv,1597 'how,1,1kinghenryiv,1597 peppercorn,1,1kinghenryiv,1597 tut,1,1kinghenryiv,1597 thither,1,1kinghenryiv,1597 tun,1,1kinghenryiv,1597 late,1,1kinghenryiv,1597 gibing,1,1kinghenryiv,1597 lath,1,1kinghenryiv,1597 citizens,1,1kinghenryiv,1597 gravity,1,1kinghenryiv,1597 Sunday,1,1kinghenryiv,1597 highway,1,1kinghenryiv,1597 forethink,1,1kinghenryiv,1597 sleeping,1,1kinghenryiv,1597 laud,1,1kinghenryiv,1597 betimes,1,1kinghenryiv,1597 suspect,1,1kinghenryiv,1597 liquored,1,1kinghenryiv,1597 peer,1,1kinghenryiv,1597 violation,1,1kinghenryiv,1597 jade,1,1kinghenryiv,1597 silver,1,1kinghenryiv,1597 keepest,1,1kinghenryiv,1597 pagan,1,1kinghenryiv,1597 revenged,1,1kinghenryiv,1597 hurt,1,1kinghenryiv,1597 Dives,1,1kinghenryiv,1597 Mighty,1,1kinghenryiv,1597 eighteen,1,1kinghenryiv,1597 needest,1,1kinghenryiv,1597 villages,1,1kinghenryiv,1597 Whew,1,1kinghenryiv,1597 Lend,1,1kinghenryiv,1597 books,1,1kinghenryiv,1597 couching,1,1kinghenryiv,1597 fathom,1,1kinghenryiv,1597 moe,1,1kinghenryiv,1597 sway'd,1,1kinghenryiv,1597 daub,1,1kinghenryiv,1597 milliner,1,1kinghenryiv,1597 passages,1,1kinghenryiv,1597 leading,1,1kinghenryiv,1597 corruption,1,1kinghenryiv,1597 shade,1,1kinghenryiv,1597 Death,1,1kinghenryiv,1597 corporals,1,1kinghenryiv,1597 strands,1,1kinghenryiv,1597 'This,1,1kinghenryiv,1597 smarting,1,1kinghenryiv,1597 mouths,1,1kinghenryiv,1597 date,1,1kinghenryiv,1597 busky,1,1kinghenryiv,1597 entrance,1,1kinghenryiv,1597 witness,1,1kinghenryiv,1597 leads,1,1kinghenryiv,1597 proffer'd,1,1kinghenryiv,1597 reply,1,1kinghenryiv,1597 lover's,1,1kinghenryiv,1597 Gallants,1,1kinghenryiv,1597 payment,1,1kinghenryiv,1597 jurors,1,1kinghenryiv,1597 laid,1,1kinghenryiv,1597 trench,1,1kinghenryiv,1597 unprofitable,1,1kinghenryiv,1597 provide,1,1kinghenryiv,1597 mangled,1,1kinghenryiv,1597 happily,1,1kinghenryiv,1597 harsh,1,1kinghenryiv,1597 busily,1,1kinghenryiv,1597 mouldwarp,1,1kinghenryiv,1597 honour's,1,1kinghenryiv,1597 holla,1,1kinghenryiv,1597 maintenance,1,1kinghenryiv,1597 Lest,1,1kinghenryiv,1597 whoe'er,1,1kinghenryiv,1597 exchanged,1,1kinghenryiv,1597 frame,1,1kinghenryiv,1597 disputation,1,1kinghenryiv,1597 weight,1,1kinghenryiv,1597 sudden,1,1kinghenryiv,1597 lane,1,1kinghenryiv,1597 tattered,1,1kinghenryiv,1597 'faith,1,1kinghenryiv,1597 eyesight,1,1kinghenryiv,1597 roasted,1,1kinghenryiv,1597 top,1,1kinghenryiv,1597 skamble,1,1kinghenryiv,1597 pouncet,1,1kinghenryiv,1597 Brake,1,1kinghenryiv,1597 liest,1,1kinghenryiv,1597 proclamation,1,1kinghenryiv,1597 Bangor,1,1kinghenryiv,1597 'hem,1,1kinghenryiv,1597 instantly,1,1kinghenryiv,1597 Bring,1,1kinghenryiv,1597 can'st,1,1kinghenryiv,1597 DRAMATIS,1,1kinghenryiv,1597 omnipotent,1,1kinghenryiv,1597 Until,1,1kinghenryiv,1597 garlic,1,1kinghenryiv,1597 tie,1,1kinghenryiv,1597 rescue,1,1kinghenryiv,1597 shine,1,1kinghenryiv,1597 filled,1,1kinghenryiv,1597 dank,1,1kinghenryiv,1597 straightest,1,1kinghenryiv,1597 whene'er,1,1kinghenryiv,1597 Knight,1,1kinghenryiv,1597 undergo,1,1kinghenryiv,1597 answerable,1,1kinghenryiv,1597 prisoners',1,1kinghenryiv,1597 lugged,1,1kinghenryiv,1597 tripping,1,1kinghenryiv,1597 vex'd,1,1kinghenryiv,1597 grapple,1,1kinghenryiv,1597 flower,1,1kinghenryiv,1597 Too,1,1kinghenryiv,1597 rewards,1,1kinghenryiv,1597 rareness,1,1kinghenryiv,1597 lieve,1,1kinghenryiv,1597 withers,1,1kinghenryiv,1597 exit,1,1kinghenryiv,1597 confesseth,1,1kinghenryiv,1597 obedient,1,1kinghenryiv,1597 herald's,1,1kinghenryiv,1597 divided,1,1kinghenryiv,1597 Talk,1,1kinghenryiv,1597 kine,1,1kinghenryiv,1597 private,1,1kinghenryiv,1597 holders,1,1kinghenryiv,1597 Uncertain,1,1kinghenryiv,1597 boroughs,1,1kinghenryiv,1597 arbitrement,1,1kinghenryiv,1597 slip,1,1kinghenryiv,1597 squier,1,1kinghenryiv,1597 teeming,1,1kinghenryiv,1597 figures,1,1kinghenryiv,1597 cates,1,1kinghenryiv,1597 mutual,1,1kinghenryiv,1597 whoremaster,1,1kinghenryiv,1597 amaze,1,1kinghenryiv,1597 amen,1,1kinghenryiv,1597 Try,1,1kinghenryiv,1597 hest,1,1kinghenryiv,1597 dials,1,1kinghenryiv,1597 cannon,1,1kinghenryiv,1597 Kent,1,1kinghenryiv,1597 striving,1,1kinghenryiv,1597 sneaking,1,1kinghenryiv,1597 solemnity,1,1kinghenryiv,1597 marked,1,1kinghenryiv,1597 cozeners,1,1kinghenryiv,1597 shape,1,1kinghenryiv,1597 Pharaoh's,1,1kinghenryiv,1597 market,1,1kinghenryiv,1597 Thrice,1,1kinghenryiv,1597 bide,1,1kinghenryiv,1597 canstick,1,1kinghenryiv,1597 chivalry,1,1kinghenryiv,1597 direction,1,1kinghenryiv,1597 sandy,1,1kinghenryiv,1597 concealments,1,1kinghenryiv,1597 unsorted,1,1kinghenryiv,1597 Bracy,1,1kinghenryiv,1597 durance,1,1kinghenryiv,1597 woo'd,1,1kinghenryiv,1597 pour'st,1,1kinghenryiv,1597 mackerel,1,1kinghenryiv,1597 peremptorily,1,1kinghenryiv,1597 shock,1,1kinghenryiv,1597 ending,1,1kinghenryiv,1597 exeunt,1,1kinghenryiv,1597 beaver,1,1kinghenryiv,1597 WALES,1,1kinghenryiv,1597 treason,2,1kinghenryiv,1597 troubled,2,1kinghenryiv,1597 villany,2,1kinghenryiv,1597 armies,2,1kinghenryiv,1597 quality,2,1kinghenryiv,1597 angers,2,1kinghenryiv,1597 forbid,2,1kinghenryiv,1597 pennyworth,2,1kinghenryiv,1597 invisible,2,1kinghenryiv,1597 infant,2,1kinghenryiv,1597 motion,2,1kinghenryiv,1597 Head,2,1kinghenryiv,1597 Adam,2,1kinghenryiv,1597 leisure,2,1kinghenryiv,1597 weary,2,1kinghenryiv,1597 wears,2,1kinghenryiv,1597 Grew,2,1kinghenryiv,1597 wicked,2,1kinghenryiv,1597 honours,2,1kinghenryiv,1597 royal,2,1kinghenryiv,1597 lower,2,1kinghenryiv,1597 zeal,2,1kinghenryiv,1597 purge,2,1kinghenryiv,1597 Thieves,2,1kinghenryiv,1597 robe,2,1kinghenryiv,1597 doubtful,2,1kinghenryiv,1597 mend,2,1kinghenryiv,1597 Wilt,2,1kinghenryiv,1597 road,2,1kinghenryiv,1597 space,2,1kinghenryiv,1597 Never,2,1kinghenryiv,1597 dish,2,1kinghenryiv,1597 Christ,2,1kinghenryiv,1597 writes,2,1kinghenryiv,1597 darkness,2,1kinghenryiv,1597 clothes,2,1kinghenryiv,1597 finger,2,1kinghenryiv,1597 proceedings,2,1kinghenryiv,1597 vain,2,1kinghenryiv,1597 mere,2,1kinghenryiv,1597 braver,2,1kinghenryiv,1597 drum,2,1kinghenryiv,1597 learn'd,2,1kinghenryiv,1597 hearted,2,1kinghenryiv,1597 commodity,2,1kinghenryiv,1597 retold,2,1kinghenryiv,1597 flow,2,1kinghenryiv,1597 shelter,2,1kinghenryiv,1597 Thursday,2,1kinghenryiv,1597 match'd,2,1kinghenryiv,1597 signs,2,1kinghenryiv,1597 laugh,2,1kinghenryiv,1597 worms,2,1kinghenryiv,1597 innocency,2,1kinghenryiv,1597 press,2,1kinghenryiv,1597 ancestors,2,1kinghenryiv,1597 rated,2,1kinghenryiv,1597 bowels,2,1kinghenryiv,1597 become,2,1kinghenryiv,1597 cheeks,2,1kinghenryiv,1597 demand,2,1kinghenryiv,1597 thumb,2,1kinghenryiv,1597 early,2,1kinghenryiv,1597 Richard's,2,1kinghenryiv,1597 walking,2,1kinghenryiv,1597 garment,2,1kinghenryiv,1597 pleasing,2,1kinghenryiv,1597 Poor,2,1kinghenryiv,1597 Over,2,1kinghenryiv,1597 strength,2,1kinghenryiv,1597 chid,2,1kinghenryiv,1597 pint,2,1kinghenryiv,1597 grows,2,1kinghenryiv,1597 starveling,2,1kinghenryiv,1597 lime,2,1kinghenryiv,1597 broken,2,1kinghenryiv,1597 gelding,2,1kinghenryiv,1597 corse,2,1kinghenryiv,1597 town's,2,1kinghenryiv,1597 cheek,2,1kinghenryiv,1597 soil,2,1kinghenryiv,1597 gross,2,1kinghenryiv,1597 rides,2,1kinghenryiv,1597 chimney,2,1kinghenryiv,1597 likeness,2,1kinghenryiv,1597 teach,2,1kinghenryiv,1597 defiance,2,1kinghenryiv,1597 limits,2,1kinghenryiv,1597 oftentimes,2,1kinghenryiv,1597 fern,2,1kinghenryiv,1597 shames,2,1kinghenryiv,1597 backing,2,1kinghenryiv,1597 talked,2,1kinghenryiv,1597 bastard,2,1kinghenryiv,1597 deceived,2,1kinghenryiv,1597 mongers,2,1kinghenryiv,1597 'twas,2,1kinghenryiv,1597 throne,2,1kinghenryiv,1597 yield,2,1kinghenryiv,1597 cleanly,2,1kinghenryiv,1597 nine,2,1kinghenryiv,1597 halter,2,1kinghenryiv,1597 frosty,2,1kinghenryiv,1597 church,2,1kinghenryiv,1597 murdered,2,1kinghenryiv,1597 abuses,2,1kinghenryiv,1597 skill,2,1kinghenryiv,1597 fleas,2,1kinghenryiv,1597 extempore,2,1kinghenryiv,1597 Was,2,1kinghenryiv,1597 Their,2,1kinghenryiv,1597 second,2,1kinghenryiv,1597 chat,2,1kinghenryiv,1597 multitudes,2,1kinghenryiv,1597 doubt,2,1kinghenryiv,1597 Breathless,2,1kinghenryiv,1597 stuff,2,1kinghenryiv,1597 taught,2,1kinghenryiv,1597 standest,2,1kinghenryiv,1597 showed,2,1kinghenryiv,1597 points,2,1kinghenryiv,1597 portly,2,1kinghenryiv,1597 Dame,2,1kinghenryiv,1597 ways,2,1kinghenryiv,1597 bore,2,1kinghenryiv,1597 loose,2,1kinghenryiv,1597 cherish,2,1kinghenryiv,1597 expedition,2,1kinghenryiv,1597 fruit,2,1kinghenryiv,1597 irregular,2,1kinghenryiv,1597 princes,2,1kinghenryiv,1597 mouthed,2,1kinghenryiv,1597 companion,2,1kinghenryiv,1597 above,2,1kinghenryiv,1597 fearful,2,1kinghenryiv,1597 feed,2,1kinghenryiv,1597 promise,2,1kinghenryiv,1597 punish,2,1kinghenryiv,1597 winded,2,1kinghenryiv,1597 beaten,2,1kinghenryiv,1597 cuckoo,2,1kinghenryiv,1597 weather,2,1kinghenryiv,1597 rude,2,1kinghenryiv,1597 wing,2,1kinghenryiv,1597 lion's,2,1kinghenryiv,1597 ward,2,1kinghenryiv,1597 language,2,1kinghenryiv,1597 knights,2,1kinghenryiv,1597 seems,2,1kinghenryiv,1597 wardrobe,2,1kinghenryiv,1597 One,2,1kinghenryiv,1597 edge,2,1kinghenryiv,1597 roundly,2,1kinghenryiv,1597 wise,2,1kinghenryiv,1597 seest,2,1kinghenryiv,1597 died,2,1kinghenryiv,1597 thrown,2,1kinghenryiv,1597 world's,2,1kinghenryiv,1597 rebellion,2,1kinghenryiv,1597 distemperature,2,1kinghenryiv,1597 cunning,2,1kinghenryiv,1597 office,2,1kinghenryiv,1597 bright,2,1kinghenryiv,1597 uneven,2,1kinghenryiv,1597 bacon,2,1kinghenryiv,1597 Bridgenorth,2,1kinghenryiv,1597 colour,2,1kinghenryiv,1597 intelligence,2,1kinghenryiv,1597 offers,2,1kinghenryiv,1597 grievous,2,1kinghenryiv,1597 slaves,2,1kinghenryiv,1597 manners,2,1kinghenryiv,1597 drinking,2,1kinghenryiv,1597 Titan,2,1kinghenryiv,1597 Holy,2,1kinghenryiv,1597 offend,2,1kinghenryiv,1597 Sick,2,1kinghenryiv,1597 Gloucestershire,2,1kinghenryiv,1597 spoil,2,1kinghenryiv,1597 altogether,2,1kinghenryiv,1597 'Anon,2,1kinghenryiv,1597 tonight,2,1kinghenryiv,1597 quarrel,2,1kinghenryiv,1597 music,2,1kinghenryiv,1597 surety,2,1kinghenryiv,1597 shortly,2,1kinghenryiv,1597 adversaries,2,1kinghenryiv,1597 retirement,2,1kinghenryiv,1597 harlotry,2,1kinghenryiv,1597 hopes,2,1kinghenryiv,1597 warrior,2,1kinghenryiv,1597 unless,2,1kinghenryiv,1597 Albeit,2,1kinghenryiv,1597 strangest,2,1kinghenryiv,1597 tales,2,1kinghenryiv,1597 shines,2,1kinghenryiv,1597 sings,2,1kinghenryiv,1597 prophecies,2,1kinghenryiv,1597 Ha,2,1kinghenryiv,1597 Falstaff's,2,1kinghenryiv,1597 tallow,2,1kinghenryiv,1597 meteors,2,1kinghenryiv,1597 pate,2,1kinghenryiv,1597 noses,2,1kinghenryiv,1597 pass,2,1kinghenryiv,1597 pot,2,1kinghenryiv,1597 yourselves,2,1kinghenryiv,1597 quiet,2,1kinghenryiv,1597 sirs,2,1kinghenryiv,1597 titles,2,1kinghenryiv,1597 Adieu,2,1kinghenryiv,1597 sought,2,1kinghenryiv,1597 royalty,2,1kinghenryiv,1597 week,2,1kinghenryiv,1597 bend,2,1kinghenryiv,1597 absent,2,1kinghenryiv,1597 difference,2,1kinghenryiv,1597 goodly,2,1kinghenryiv,1597 cherish'd,2,1kinghenryiv,1597 immediately,2,1kinghenryiv,1597 children,2,1kinghenryiv,1597 pry,2,1kinghenryiv,1597 learned,2,1kinghenryiv,1597 weak,2,1kinghenryiv,1597 Save,2,1kinghenryiv,1597 people,2,1kinghenryiv,1597 beyond,2,1kinghenryiv,1597 candy,2,1kinghenryiv,1597 perilous,2,1kinghenryiv,1597 Saint,2,1kinghenryiv,1597 buff,2,1kinghenryiv,1597 suddenly,2,1kinghenryiv,1597 Didst,2,1kinghenryiv,1597 just,2,1kinghenryiv,1597 herein,2,1kinghenryiv,1597 amongst,2,1kinghenryiv,1597 roared,2,1kinghenryiv,1597 moody,2,1kinghenryiv,1597 deservings,2,1kinghenryiv,1597 pitch,2,1kinghenryiv,1597 calling,2,1kinghenryiv,1597 sharing,2,1kinghenryiv,1597 owest,2,1kinghenryiv,1597 Both,2,1kinghenryiv,1597 crowns,2,1kinghenryiv,1597 noted,2,1kinghenryiv,1597 deed,2,1kinghenryiv,1597 instant,2,1kinghenryiv,1597 Boar's,2,1kinghenryiv,1597 papers,2,1kinghenryiv,1597 miles,2,1kinghenryiv,1597 ha,2,1kinghenryiv,1597 breast,2,1kinghenryiv,1597 promises,2,1kinghenryiv,1597 keeping,2,1kinghenryiv,1597 yea,2,1kinghenryiv,1597 raise,2,1kinghenryiv,1597 excellent,2,1kinghenryiv,1597 spirited,2,1kinghenryiv,1597 repent,2,1kinghenryiv,1597 Sack,2,1kinghenryiv,1597 stood,2,1kinghenryiv,1597 beat,2,1kinghenryiv,1597 Making,2,1kinghenryiv,1597 praying,2,1kinghenryiv,1597 Doncaster,2,1kinghenryiv,1597 tongues,2,1kinghenryiv,1597 legs,2,1kinghenryiv,1597 plays,2,1kinghenryiv,1597 thrive,2,1kinghenryiv,1597 houses,2,1kinghenryiv,1597 blackberries,2,1kinghenryiv,1597 possess'd,2,1kinghenryiv,1597 shed,2,1kinghenryiv,1597 privilege,2,1kinghenryiv,1597 wench,2,1kinghenryiv,1597 forgotten,2,1kinghenryiv,1597 realm,2,1kinghenryiv,1597 feast,2,1kinghenryiv,1597 move,2,1kinghenryiv,1597 cowardly,2,1kinghenryiv,1597 fears,2,1kinghenryiv,1597 bodies,2,1kinghenryiv,1597 small,2,1kinghenryiv,1597 wisely,2,1kinghenryiv,1597 plant,2,1kinghenryiv,1597 whereof,2,1kinghenryiv,1597 Myself,2,1kinghenryiv,1597 Edmund,2,1kinghenryiv,1597 studies,2,1kinghenryiv,1597 temper,2,1kinghenryiv,1597 train,2,1kinghenryiv,1597 inn,2,1kinghenryiv,1597 offences,2,1kinghenryiv,1597 Gawsey,2,1kinghenryiv,1597 playing,2,1kinghenryiv,1597 spent,2,1kinghenryiv,1597 loved,2,1kinghenryiv,1597 lose,2,1kinghenryiv,1597 nimble,2,1kinghenryiv,1597 ready,2,1kinghenryiv,1597 show'd,2,1kinghenryiv,1597 Came,2,1kinghenryiv,1597 easy,2,1kinghenryiv,1597 frighted,2,1kinghenryiv,1597 pistol,2,1kinghenryiv,1597 crop,2,1kinghenryiv,1597 Call,2,1kinghenryiv,1597 Gaunt,2,1kinghenryiv,1597 employ'd,2,1kinghenryiv,1597 call'd,2,1kinghenryiv,1597 draws,2,1kinghenryiv,1597 ladder,2,1kinghenryiv,1597 medicines,2,1kinghenryiv,1597 forty,2,1kinghenryiv,1597 excuse,2,1kinghenryiv,1597 acquaintance,2,1kinghenryiv,1597 Under,2,1kinghenryiv,1597 midnight,2,1kinghenryiv,1597 majesty's,2,1kinghenryiv,1597 vengeance,2,1kinghenryiv,1597 tomorrow,2,1kinghenryiv,1597 pair,2,1kinghenryiv,1597 hangs,2,1kinghenryiv,1597 spear,2,1kinghenryiv,1597 forsworn,2,1kinghenryiv,1597 hate,2,1kinghenryiv,1597 fear'd,2,1kinghenryiv,1597 shot,2,1kinghenryiv,1597 indent,2,1kinghenryiv,1597 yard,2,1kinghenryiv,1597 push,2,1kinghenryiv,1597 rightly,2,1kinghenryiv,1597 secret,2,1kinghenryiv,1597 Arm,2,1kinghenryiv,1597 chance,2,1kinghenryiv,1597 Tavern,2,1kinghenryiv,1597 deadly,2,1kinghenryiv,1597 fed,2,1kinghenryiv,1597 enemies,2,1kinghenryiv,1597 Content,2,1kinghenryiv,1597 trial,2,1kinghenryiv,1597 demanded,2,1kinghenryiv,1597 purple,2,1kinghenryiv,1597 hazard,2,1kinghenryiv,1597 Traveller,2,1kinghenryiv,1597 having,2,1kinghenryiv,1597 Should,2,1kinghenryiv,1597 execute,2,1kinghenryiv,1597 Monmouth,2,1kinghenryiv,1597 contented,2,1kinghenryiv,1597 justice,2,1kinghenryiv,1597 garments,2,1kinghenryiv,1597 moved,2,1kinghenryiv,1597 inside,2,1kinghenryiv,1597 Stafford,2,1kinghenryiv,1597 carried,2,1kinghenryiv,1597 Spoke,2,1kinghenryiv,1597 dress'd,2,1kinghenryiv,1597 griefs,2,1kinghenryiv,1597 shouldst,2,1kinghenryiv,1597 Archbishop,2,1kinghenryiv,1597 deposed,2,1kinghenryiv,1597 Seven,2,1kinghenryiv,1597 retreat,2,1kinghenryiv,1597 wonder,2,1kinghenryiv,1597 forfeited,2,1kinghenryiv,1597 capon,2,1kinghenryiv,1597 opposition,2,1kinghenryiv,1597 tench,2,1kinghenryiv,1597 pated,2,1kinghenryiv,1597 beard,2,1kinghenryiv,1597 velvet,2,1kinghenryiv,1597 faint,2,1kinghenryiv,1597 pleaseth,2,1kinghenryiv,1597 Jew,2,1kinghenryiv,1597 tenor,2,1kinghenryiv,1597 likelihood,2,1kinghenryiv,1597 strike,2,1kinghenryiv,1597 From,2,1kinghenryiv,1597 borne,2,1kinghenryiv,1597 peppered,2,1kinghenryiv,1597 picking,2,1kinghenryiv,1597 All's,2,1kinghenryiv,1597 quickly,2,1kinghenryiv,1597 paces,2,1kinghenryiv,1597 quarter,2,1kinghenryiv,1597 say'st,2,1kinghenryiv,1597 See,2,1kinghenryiv,1597 mortal,2,1kinghenryiv,1597 leaves,2,1kinghenryiv,1597 exchange,2,1kinghenryiv,1597 varlet,2,1kinghenryiv,1597 teeth,2,1kinghenryiv,1597 stars,2,1kinghenryiv,1597 prize,2,1kinghenryiv,1597 strict,2,1kinghenryiv,1597 Soon,2,1kinghenryiv,1597 robbery,2,1kinghenryiv,1597 Uncle,2,1kinghenryiv,1597 courage,2,1kinghenryiv,1597 skin,2,1kinghenryiv,1597 mass,2,1kinghenryiv,1597 ninth,2,1kinghenryiv,1597 injuries,2,1kinghenryiv,1597 slave,2,1kinghenryiv,1597 Honour,2,1kinghenryiv,1597 issue,2,1kinghenryiv,1597 misled,2,1kinghenryiv,1597 furnish'd,2,1kinghenryiv,1597 let's,2,1kinghenryiv,1597 ungentle,2,1kinghenryiv,1597 free,2,1kinghenryiv,1597 hitherwards,2,1kinghenryiv,1597 marvel,2,1kinghenryiv,1597 thigh,2,1kinghenryiv,1597 discarded,2,1kinghenryiv,1597 division,2,1kinghenryiv,1597 desires,2,1kinghenryiv,1597 fray,2,1kinghenryiv,1597 horribly,2,1kinghenryiv,1597 banks,2,1kinghenryiv,1597 breed,2,1kinghenryiv,1597 get,2,1kinghenryiv,1597 wrongs,2,1kinghenryiv,1597 neat,2,1kinghenryiv,1597 neck,2,1kinghenryiv,1597 today,2,1kinghenryiv,1597 purchase,2,1kinghenryiv,1597 smoky,2,1kinghenryiv,1597 five,2,1kinghenryiv,1597 enters,2,1kinghenryiv,1597 goats,2,1kinghenryiv,1597 blushed,2,1kinghenryiv,1597 import,2,1kinghenryiv,1597 hears,2,1kinghenryiv,1597 services,2,1kinghenryiv,1597 Rebellion,2,1kinghenryiv,1597 banish'd,2,1kinghenryiv,1597 Rochester,2,1kinghenryiv,1597 cuts,2,1kinghenryiv,1597 hoofs,2,1kinghenryiv,1597 standing,2,1kinghenryiv,1597 remains,2,1kinghenryiv,1597 Thus,2,1kinghenryiv,1597 humility,2,1kinghenryiv,1597 dust,2,1kinghenryiv,1597 nether,2,1kinghenryiv,1597 'The,2,1kinghenryiv,1597 staff,2,1kinghenryiv,1597 bleed,2,1kinghenryiv,1597 they'll,2,1kinghenryiv,1597 assure,2,1kinghenryiv,1597 wanton,2,1kinghenryiv,1597 belly,2,1kinghenryiv,1597 happy,2,1kinghenryiv,1597 chamberlain,2,1kinghenryiv,1597 robb'd,2,1kinghenryiv,1597 fallen,2,1kinghenryiv,1597 duke,2,1kinghenryiv,1597 marry,2,1kinghenryiv,1597 trodden,2,1kinghenryiv,1597 charged,2,1kinghenryiv,1597 anger,2,1kinghenryiv,1597 lute,2,1kinghenryiv,1597 womb,2,1kinghenryiv,1597 dull,2,1kinghenryiv,1597 belie,2,1kinghenryiv,1597 fox,2,1kinghenryiv,1597 discontents,2,1kinghenryiv,1597 contempt,2,1kinghenryiv,1597 guilty,2,1kinghenryiv,1597 carriers,2,1kinghenryiv,1597 cried,2,1kinghenryiv,1597 durst,2,1kinghenryiv,1597 bruise,2,1kinghenryiv,1597 pressed,2,1kinghenryiv,1597 Many,2,1kinghenryiv,1597 judge,2,1kinghenryiv,1597 doublet,2,1kinghenryiv,1597 stolen,2,1kinghenryiv,1597 That's,2,1kinghenryiv,1597 saint,2,1kinghenryiv,1597 Scottish,2,1kinghenryiv,1597 grant,2,1kinghenryiv,1597 answers,2,1kinghenryiv,1597 kinsman,2,1kinghenryiv,1597 methinks,2,1kinghenryiv,1597 duck,2,1kinghenryiv,1597 pleased,2,1kinghenryiv,1597 work,2,1kinghenryiv,1597 letter,2,1kinghenryiv,1597 colours,2,1kinghenryiv,1597 fly,2,1kinghenryiv,1597 Heigh,2,1kinghenryiv,1597 Mars,2,1kinghenryiv,1597 ribs,2,1kinghenryiv,1597 'Mortimer,2,1kinghenryiv,1597 channel,2,1kinghenryiv,1597 buckler,2,1kinghenryiv,1597 hose,2,1kinghenryiv,1597 joined,2,1kinghenryiv,1597 host,2,1kinghenryiv,1597 wide,2,1kinghenryiv,1597 shows,2,1kinghenryiv,1597 indignities,2,1kinghenryiv,1597 wealth,2,1kinghenryiv,1597 partly,2,1kinghenryiv,1597 lived,2,1kinghenryiv,1597 Four,2,1kinghenryiv,1597 kiss,2,1kinghenryiv,1597 friendship,2,1kinghenryiv,1597 bank,2,1kinghenryiv,1597 cream,2,1kinghenryiv,1597 tame,2,1kinghenryiv,1597 fast,2,1kinghenryiv,1597 boldly,2,1kinghenryiv,1597 trumpets,2,1kinghenryiv,1597 drinks,2,1kinghenryiv,1597 Welcome,2,1kinghenryiv,1597 mischance,2,1kinghenryiv,1597 lights,2,1kinghenryiv,1597 is't,2,1kinghenryiv,1597 lap,2,1kinghenryiv,1597 constant,2,1kinghenryiv,1597 holy,2,1kinghenryiv,1597 hole,2,1kinghenryiv,1597 green,2,1kinghenryiv,1597 advertisement,2,1kinghenryiv,1597 master,2,1kinghenryiv,1597 extraordinary,2,1kinghenryiv,1597 hollow,2,1kinghenryiv,1597 pupil,2,1kinghenryiv,1597 vocation,2,1kinghenryiv,1597 moulten,2,1kinghenryiv,1597 argument,2,1kinghenryiv,1597 forsooth,2,1kinghenryiv,1597 streets,2,1kinghenryiv,1597 agues,2,1kinghenryiv,1597 grandfather's,2,1kinghenryiv,1597 favours,2,1kinghenryiv,1597 also,2,1kinghenryiv,1597 robes,2,1kinghenryiv,1597 manage,2,1kinghenryiv,1597 interest,2,1kinghenryiv,1597 lovely,2,1kinghenryiv,1597 waiting,2,1kinghenryiv,1597 June,2,1kinghenryiv,1597 inward,2,1kinghenryiv,1597 eyed,2,1kinghenryiv,1597 captain,2,1kinghenryiv,1597 deputation,2,1kinghenryiv,1597 seed,2,1kinghenryiv,1597 seem,2,1kinghenryiv,1597 troth,2,1kinghenryiv,1597 south,2,1kinghenryiv,1597 defend,2,1kinghenryiv,1597 'twixt,2,1kinghenryiv,1597 valued,2,1kinghenryiv,1597 conclude,2,1kinghenryiv,1597 shapes,2,1kinghenryiv,1597 fellows,2,1kinghenryiv,1597 tidings,2,1kinghenryiv,1597 crest,2,1kinghenryiv,1597 expectation,2,1kinghenryiv,1597 christen,2,1kinghenryiv,1597 setting,2,1kinghenryiv,1597 traitor,2,1kinghenryiv,1597 thrust,2,1kinghenryiv,1597 exploit,2,1kinghenryiv,1597 Through,2,1kinghenryiv,1597 million,2,1kinghenryiv,1597 entreat,2,1kinghenryiv,1597 dislike,2,1kinghenryiv,1597 believed,2,1kinghenryiv,1597 bald,2,1kinghenryiv,1597 bleeding,2,1kinghenryiv,1597 roaring,2,1kinghenryiv,1597 mother's,2,1kinghenryiv,1597 talk'd,2,1kinghenryiv,1597 stable,2,1kinghenryiv,1597 match,2,1kinghenryiv,1597 protest,2,1kinghenryiv,1597 ebb,2,1kinghenryiv,1597 triumph,2,1kinghenryiv,1597 sealed,2,1kinghenryiv,1597 regarded,2,1kinghenryiv,1597 honesty,2,1kinghenryiv,1597 guns,2,1kinghenryiv,1597 map,2,1kinghenryiv,1597 clouds,2,1kinghenryiv,1597 spirits,2,1kinghenryiv,1597 sounded,2,1kinghenryiv,1597 Butler,2,1kinghenryiv,1597 conduct,2,1kinghenryiv,1597 revolted,2,1kinghenryiv,1597 breaker,2,1kinghenryiv,1597 trim,2,1kinghenryiv,1597 makes,2,1kinghenryiv,1597 glory,2,1kinghenryiv,1597 meeting,2,1kinghenryiv,1597 street,2,1kinghenryiv,1597 rannest,2,1kinghenryiv,1597 whit,2,1kinghenryiv,1597 ladies,2,1kinghenryiv,1597 solus,2,1kinghenryiv,1597 fashion,2,1kinghenryiv,1597 eleven,2,1kinghenryiv,1597 withdraw,2,1kinghenryiv,1597 nativity,2,1kinghenryiv,1597 credit,2,1kinghenryiv,1597 Severn's,2,1kinghenryiv,1597 flat,2,1kinghenryiv,1597 tenderness,2,1kinghenryiv,1597 breaking,2,1kinghenryiv,1597 ragged,2,1kinghenryiv,1597 follow'd,2,1kinghenryiv,1597 spring,2,1kinghenryiv,1597 Kendal,2,1kinghenryiv,1597 Fife,2,1kinghenryiv,1597 dark,2,1kinghenryiv,1597 follow,2,1kinghenryiv,1597 comparative,2,1kinghenryiv,1597 inquired,2,1kinghenryiv,1597 prelate,2,1kinghenryiv,1597 catch,2,1kinghenryiv,1597 dry,2,1kinghenryiv,1597 bred,2,1kinghenryiv,1597 prune,2,1kinghenryiv,1597 reverend,2,1kinghenryiv,1597 shake,2,1kinghenryiv,1597 guests,2,1kinghenryiv,1597 filthy,2,1kinghenryiv,1597 armed,2,1kinghenryiv,1597 Christendom,2,1kinghenryiv,1597 Tom,2,1kinghenryiv,1597 bargain,2,1kinghenryiv,1597 tired,2,1kinghenryiv,1597 smell,2,1kinghenryiv,1597 booty,2,1kinghenryiv,1597 obtaining,2,1kinghenryiv,1597 eyelids,2,1kinghenryiv,1597 parley,2,1kinghenryiv,1597 neighbour,2,1kinghenryiv,1597 Find,2,1kinghenryiv,1597 oaths,2,1kinghenryiv,1597 lack,2,1kinghenryiv,1597 undertake,2,1kinghenryiv,1597 wouldst,2,1kinghenryiv,1597 vilely,2,1kinghenryiv,1597 fortunes,2,1kinghenryiv,1597 hedge,2,1kinghenryiv,1597 sway,2,1kinghenryiv,1597 summer,2,1kinghenryiv,1597 o'er,3,1kinghenryiv,1597 otter,3,1kinghenryiv,1597 red,3,1kinghenryiv,1597 s,3,1kinghenryiv,1597 drop,3,1kinghenryiv,1597 darest,3,1kinghenryiv,1597 Hear,3,1kinghenryiv,1597 hacked,3,1kinghenryiv,1597 vizards,3,1kinghenryiv,1597 woman's,3,1kinghenryiv,1597 ran,3,1kinghenryiv,1597 Ravenspurgh,3,1kinghenryiv,1597 shoulders,3,1kinghenryiv,1597 roan,3,1kinghenryiv,1597 boys,3,1kinghenryiv,1597 held,3,1kinghenryiv,1597 hell,3,1kinghenryiv,1597 single,3,1kinghenryiv,1597 brook,3,1kinghenryiv,1597 Harry's,3,1kinghenryiv,1597 Ere,3,1kinghenryiv,1597 calls,3,1kinghenryiv,1597 cheap,3,1kinghenryiv,1597 soon,3,1kinghenryiv,1597 birth,3,1kinghenryiv,1597 sad,3,1kinghenryiv,1597 draw,3,1kinghenryiv,1597 grown,3,1kinghenryiv,1597 words,3,1kinghenryiv,1597 heat,3,1kinghenryiv,1597 lift,3,1kinghenryiv,1597 Nicholas,3,1kinghenryiv,1597 hanging,3,1kinghenryiv,1597 asked,3,1kinghenryiv,1597 six,3,1kinghenryiv,1597 warrant,3,1kinghenryiv,1597 'twere,3,1kinghenryiv,1597 scourge,3,1kinghenryiv,1597 virtuous,3,1kinghenryiv,1597 score,3,1kinghenryiv,1597 counsel,3,1kinghenryiv,1597 pitiful,3,1kinghenryiv,1597 betwixt,3,1kinghenryiv,1597 worst,3,1kinghenryiv,1597 offence,3,1kinghenryiv,1597 heavens,3,1kinghenryiv,1597 brain,3,1kinghenryiv,1597 born,3,1kinghenryiv,1597 civil,3,1kinghenryiv,1597 absence,3,1kinghenryiv,1597 falls,3,1kinghenryiv,1597 encounter,3,1kinghenryiv,1597 stung,3,1kinghenryiv,1597 mark'd,3,1kinghenryiv,1597 worthy,3,1kinghenryiv,1597 Wherein,3,1kinghenryiv,1597 thence,3,1kinghenryiv,1597 grow,3,1kinghenryiv,1597 ancient,3,1kinghenryiv,1597 choose,3,1kinghenryiv,1597 latter,3,1kinghenryiv,1597 Though,3,1kinghenryiv,1597 stop,3,1kinghenryiv,1597 during,3,1kinghenryiv,1597 coats,3,1kinghenryiv,1597 book,3,1kinghenryiv,1597 manhood,3,1kinghenryiv,1597 sceptre,3,1kinghenryiv,1597 tent,3,1kinghenryiv,1597 sick,3,1kinghenryiv,1597 each,3,1kinghenryiv,1597 cudgel,3,1kinghenryiv,1597 melancholy,3,1kinghenryiv,1597 has,3,1kinghenryiv,1597 utter,3,1kinghenryiv,1597 neither,3,1kinghenryiv,1597 patience,3,1kinghenryiv,1597 blows,3,1kinghenryiv,1597 proof,3,1kinghenryiv,1597 creature,3,1kinghenryiv,1597 wisdom,3,1kinghenryiv,1597 dinner,3,1kinghenryiv,1597 shillings,3,1kinghenryiv,1597 east,3,1kinghenryiv,1597 ears,3,1kinghenryiv,1597 RICHARD,3,1kinghenryiv,1597 Up,3,1kinghenryiv,1597 glorious,3,1kinghenryiv,1597 divide,3,1kinghenryiv,1597 grief,3,1kinghenryiv,1597 Prithee,3,1kinghenryiv,1597 got,3,1kinghenryiv,1597 struck,3,1kinghenryiv,1597 sounds,3,1kinghenryiv,1597 Severn,3,1kinghenryiv,1597 Speak,3,1kinghenryiv,1597 persuasion,3,1kinghenryiv,1597 tedious,3,1kinghenryiv,1597 buy,3,1kinghenryiv,1597 longer,3,1kinghenryiv,1597 Like,3,1kinghenryiv,1597 Whither,3,1kinghenryiv,1597 ashamed,3,1kinghenryiv,1597 government,3,1kinghenryiv,1597 air,3,1kinghenryiv,1597 gallows,3,1kinghenryiv,1597 servant,3,1kinghenryiv,1597 left,3,1kinghenryiv,1597 Ill,3,1kinghenryiv,1597 needs,3,1kinghenryiv,1597 Unless,3,1kinghenryiv,1597 husband,3,1kinghenryiv,1597 lady's,3,1kinghenryiv,1597 by'r,3,1kinghenryiv,1597 makest,3,1kinghenryiv,1597 manner,3,1kinghenryiv,1597 amend,3,1kinghenryiv,1597 o',3,1kinghenryiv,1597 teaching,3,1kinghenryiv,1597 ho,3,1kinghenryiv,1597 governed,3,1kinghenryiv,1597 spend,3,1kinghenryiv,1597 defy,3,1kinghenryiv,1597 removed,3,1kinghenryiv,1597 Clifton,3,1kinghenryiv,1597 jerkin,3,1kinghenryiv,1597 Because,3,1kinghenryiv,1597 thrice,3,1kinghenryiv,1597 killed,3,1kinghenryiv,1597 reasons,3,1kinghenryiv,1597 running,3,1kinghenryiv,1597 hare,3,1kinghenryiv,1597 kills,3,1kinghenryiv,1597 madcap,3,1kinghenryiv,1597 shallow,3,1kinghenryiv,1597 More,3,1kinghenryiv,1597 natural,3,1kinghenryiv,1597 mighty,3,1kinghenryiv,1597 marching,3,1kinghenryiv,1597 course,3,1kinghenryiv,1597 deaths,3,1kinghenryiv,1597 arm,3,1kinghenryiv,1597 ask,3,1kinghenryiv,1597 fiery,3,1kinghenryiv,1597 food,3,1kinghenryiv,1597 Alarum,3,1kinghenryiv,1597 fresh,3,1kinghenryiv,1597 Are,3,1kinghenryiv,1597 undone,3,1kinghenryiv,1597 arras,3,1kinghenryiv,1597 willingly,3,1kinghenryiv,1597 Into,3,1kinghenryiv,1597 watch,3,1kinghenryiv,1597 often,3,1kinghenryiv,1597 occasion,3,1kinghenryiv,1597 tarry,3,1kinghenryiv,1597 honey,3,1kinghenryiv,1597 report,3,1kinghenryiv,1597 rose,3,1kinghenryiv,1597 Vernon,3,1kinghenryiv,1597 Lords,3,1kinghenryiv,1597 couldst,3,1kinghenryiv,1597 mountains,3,1kinghenryiv,1597 water,3,1kinghenryiv,1597 envy,3,1kinghenryiv,1597 marks,3,1kinghenryiv,1597 beast,3,1kinghenryiv,1597 rare,3,1kinghenryiv,1597 Hang,3,1kinghenryiv,1597 bottom,3,1kinghenryiv,1597 slain,3,1kinghenryiv,1597 She,3,1kinghenryiv,1597 mouth,3,1kinghenryiv,1597 wonder'd,3,1kinghenryiv,1597 yours,3,1kinghenryiv,1597 foolish,3,1kinghenryiv,1597 mind,3,1kinghenryiv,1597 quoth,3,1kinghenryiv,1597 fish,3,1kinghenryiv,1597 trifle,3,1kinghenryiv,1597 Were,3,1kinghenryiv,1597 pause,3,1kinghenryiv,1597 sparrow,3,1kinghenryiv,1597 speedily,3,1kinghenryiv,1597 Coventry,3,1kinghenryiv,1597 Can,3,1kinghenryiv,1597 rise,3,1kinghenryiv,1597 themselves,3,1kinghenryiv,1597 rage,3,1kinghenryiv,1597 dying,3,1kinghenryiv,1597 serve,3,1kinghenryiv,1597 villains,3,1kinghenryiv,1597 coming,3,1kinghenryiv,1597 'as,3,1kinghenryiv,1597 breakfast,3,1kinghenryiv,1597 Three,3,1kinghenryiv,1597 Bid,3,1kinghenryiv,1597 what's,3,1kinghenryiv,1597 spleen,3,1kinghenryiv,1597 knight,3,1kinghenryiv,1597 whence,3,1kinghenryiv,1597 glad,3,1kinghenryiv,1597 Make,3,1kinghenryiv,1597 pockets,3,1kinghenryiv,1597 please,3,1kinghenryiv,1597 humour,3,1kinghenryiv,1597 unjust,3,1kinghenryiv,1597 Mark,3,1kinghenryiv,1597 fine,3,1kinghenryiv,1597 passion,3,1kinghenryiv,1597 vow,3,1kinghenryiv,1597 Scroop,3,1kinghenryiv,1597 engaged,3,1kinghenryiv,1597 smooth,3,1kinghenryiv,1597 queen,3,1kinghenryiv,1597 Wednesday,3,1kinghenryiv,1597 names,3,1kinghenryiv,1597 powder,3,1kinghenryiv,1597 talk,3,1kinghenryiv,1597 law,3,1kinghenryiv,1597 departure,3,1kinghenryiv,1597 Henry,3,1kinghenryiv,1597 reproof,3,1kinghenryiv,1597 shore,3,1kinghenryiv,1597 flood,3,1kinghenryiv,1597 commonwealth,3,1kinghenryiv,1597 seal,3,1kinghenryiv,1597 seat,3,1kinghenryiv,1597 lying,3,1kinghenryiv,1597 kingdom,3,1kinghenryiv,1597 seek,3,1kinghenryiv,1597 either,3,1kinghenryiv,1597 coz,3,1kinghenryiv,1597 sees,3,1kinghenryiv,1597 sound,3,1kinghenryiv,1597 estimation,3,1kinghenryiv,1597 tree,3,1kinghenryiv,1597 Deliver,3,1kinghenryiv,1597 return,3,1kinghenryiv,1597 leg,3,1kinghenryiv,1597 drawer,3,1kinghenryiv,1597 goes,3,1kinghenryiv,1597 barren,3,1kinghenryiv,1597 parcel,3,1kinghenryiv,1597 'scape,3,1kinghenryiv,1597 seldom,3,1kinghenryiv,1597 starve,3,1kinghenryiv,1597 Another,3,1kinghenryiv,1597 remember,3,1kinghenryiv,1597 sovereign,3,1kinghenryiv,1597 indentures,3,1kinghenryiv,1597 lips,3,1kinghenryiv,1597 telling,3,1kinghenryiv,1597 womanhood,3,1kinghenryiv,1597 tickle,3,1kinghenryiv,1597 copper,3,1kinghenryiv,1597 truant,3,1kinghenryiv,1597 beauty,3,1kinghenryiv,1597 May,3,1kinghenryiv,1597 besides,3,1kinghenryiv,1597 list,3,1kinghenryiv,1597 strange,3,1kinghenryiv,1597 nature,3,1kinghenryiv,1597 urged,3,1kinghenryiv,1597 yesternight,3,1kinghenryiv,1597 dog,3,1kinghenryiv,1597 attend,3,1kinghenryiv,1597 princely,3,1kinghenryiv,1597 due,3,1kinghenryiv,1597 fellowship,3,1kinghenryiv,1597 behold,3,1kinghenryiv,1597 command,3,1kinghenryiv,1597 boots,3,1kinghenryiv,1597 exchequer,3,1kinghenryiv,1597 shirt,3,1kinghenryiv,1597 bids,3,1kinghenryiv,1597 tread,3,1kinghenryiv,1597 share,3,1kinghenryiv,1597 order,3,1kinghenryiv,1597 pity,4,1kinghenryiv,1597 d,4,1kinghenryiv,1597 join,4,1kinghenryiv,1597 LORD,4,1kinghenryiv,1597 double,4,1kinghenryiv,1597 heir,4,1kinghenryiv,1597 dagger,4,1kinghenryiv,1597 eight,4,1kinghenryiv,1597 Tell,4,1kinghenryiv,1597 younger,4,1kinghenryiv,1597 Must,4,1kinghenryiv,1597 sight,4,1kinghenryiv,1597 honourable,4,1kinghenryiv,1597 tears,4,1kinghenryiv,1597 understand,4,1kinghenryiv,1597 thirty,4,1kinghenryiv,1597 whoreson,4,1kinghenryiv,1597 saved,4,1kinghenryiv,1597 case,4,1kinghenryiv,1597 song,4,1kinghenryiv,1597 Scots,4,1kinghenryiv,1597 sons,4,1kinghenryiv,1597 line,4,1kinghenryiv,1597 gracious,4,1kinghenryiv,1597 purse,4,1kinghenryiv,1597 trumpet,4,1kinghenryiv,1597 Trent,4,1kinghenryiv,1597 soft,4,1kinghenryiv,1597 blessed,4,1kinghenryiv,1597 stands,4,1kinghenryiv,1597 body,4,1kinghenryiv,1597 sea,4,1kinghenryiv,1597 fell,4,1kinghenryiv,1597 embrace,4,1kinghenryiv,1597 cause,4,1kinghenryiv,1597 ourselves,4,1kinghenryiv,1597 wrong,4,1kinghenryiv,1597 redeem,4,1kinghenryiv,1597 piece,4,1kinghenryiv,1597 afraid,4,1kinghenryiv,1597 twelve,4,1kinghenryiv,1597 daughter,4,1kinghenryiv,1597 runs,4,1kinghenryiv,1597 white,4,1kinghenryiv,1597 vanity,4,1kinghenryiv,1597 swore,4,1kinghenryiv,1597 Betwixt,4,1kinghenryiv,1597 false,4,1kinghenryiv,1597 others,4,1kinghenryiv,1597 soldier,4,1kinghenryiv,1597 Cousin,4,1kinghenryiv,1597 turned,4,1kinghenryiv,1597 sooth,4,1kinghenryiv,1597 wars,4,1kinghenryiv,1597 nephew,4,1kinghenryiv,1597 stir,4,1kinghenryiv,1597 burning,4,1kinghenryiv,1597 horseback,4,1kinghenryiv,1597 Be,4,1kinghenryiv,1597 Those,4,1kinghenryiv,1597 itself,4,1kinghenryiv,1597 kept,4,1kinghenryiv,1597 canst,4,1kinghenryiv,1597 beg,4,1kinghenryiv,1597 pleasure,4,1kinghenryiv,1597 ease,4,1kinghenryiv,1597 bid,4,1kinghenryiv,1597 Had,4,1kinghenryiv,1597 sport,4,1kinghenryiv,1597 earl,4,1kinghenryiv,1597 gold,4,1kinghenryiv,1597 rebel,4,1kinghenryiv,1597 Mordake,4,1kinghenryiv,1597 cat,4,1kinghenryiv,1597 put,4,1kinghenryiv,1597 used,4,1kinghenryiv,1597 Ostler,4,1kinghenryiv,1597 lately,4,1kinghenryiv,1597 quite,4,1kinghenryiv,1597 Irish,4,1kinghenryiv,1597 forgive,4,1kinghenryiv,1597 debt,4,1kinghenryiv,1597 ago,4,1kinghenryiv,1597 deal,4,1kinghenryiv,1597 nobleman,4,1kinghenryiv,1597 seeming,4,1kinghenryiv,1597 does,4,1kinghenryiv,1597 humours,4,1kinghenryiv,1597 account,4,1kinghenryiv,1597 loves,4,1kinghenryiv,1597 less,4,1kinghenryiv,1597 forgot,4,1kinghenryiv,1597 knee,4,1kinghenryiv,1597 men's,4,1kinghenryiv,1597 harm,4,1kinghenryiv,1597 hark,4,1kinghenryiv,1597 valour,4,1kinghenryiv,1597 front,4,1kinghenryiv,1597 pale,4,1kinghenryiv,1597 pluck,4,1kinghenryiv,1597 open,4,1kinghenryiv,1597 bosom,4,1kinghenryiv,1597 though,4,1kinghenryiv,1597 right,4,1kinghenryiv,1597 touch,4,1kinghenryiv,1597 Art,4,1kinghenryiv,1597 here's,4,1kinghenryiv,1597 spoken,4,1kinghenryiv,1597 Have,4,1kinghenryiv,1597 room,4,1kinghenryiv,1597 castle,4,1kinghenryiv,1597 nose,4,1kinghenryiv,1597 action,4,1kinghenryiv,1597 penny,4,1kinghenryiv,1597 bottle,4,1kinghenryiv,1597 hide,4,1kinghenryiv,1597 year,4,1kinghenryiv,1597 adventure,4,1kinghenryiv,1597 lantern,4,1kinghenryiv,1597 powers,4,1kinghenryiv,1597 Doth,4,1kinghenryiv,1597 Dost,4,1kinghenryiv,1597 Look,4,1kinghenryiv,1597 start,4,1kinghenryiv,1597 knave,4,1kinghenryiv,1597 purposes,4,1kinghenryiv,1597 merrily,4,1kinghenryiv,1597 didst,4,1kinghenryiv,1597 presently,4,1kinghenryiv,1597 knows,4,1kinghenryiv,1597 known,4,1kinghenryiv,1597 won,4,1kinghenryiv,1597 Being,4,1kinghenryiv,1597 living,4,1kinghenryiv,1597 stain,4,1kinghenryiv,1597 taste,4,1kinghenryiv,1597 opinion,4,1kinghenryiv,1597 rogues,4,1kinghenryiv,1597 win,4,1kinghenryiv,1597 bawdy,4,1kinghenryiv,1597 beseech,4,1kinghenryiv,1597 Say,4,1kinghenryiv,1597 called,4,1kinghenryiv,1597 believe,4,1kinghenryiv,1597 pride,4,1kinghenryiv,1597 danger,4,1kinghenryiv,1597 mettle,4,1kinghenryiv,1597 faced,4,1kinghenryiv,1597 angel,4,1kinghenryiv,1597 compulsion,4,1kinghenryiv,1597 compass,4,1kinghenryiv,1597 owe,4,1kinghenryiv,1597 Even,4,1kinghenryiv,1597 Till,4,1kinghenryiv,1597 fall,4,1kinghenryiv,1597 palace,4,1kinghenryiv,1597 perfect,4,1kinghenryiv,1597 bare,4,1kinghenryiv,1597 wives,4,1kinghenryiv,1597 holds,4,1kinghenryiv,1597 shook,4,1kinghenryiv,1597 honest,4,1kinghenryiv,1597 lives,4,1kinghenryiv,1597 fourteen,4,1kinghenryiv,1597 drunk,4,1kinghenryiv,1597 suits,4,1kinghenryiv,1597 Holmedon,4,1kinghenryiv,1597 Pray,4,1kinghenryiv,1597 person,4,1kinghenryiv,1597 heels,4,1kinghenryiv,1597 blame,4,1kinghenryiv,1597 huge,4,1kinghenryiv,1597 Send,4,1kinghenryiv,1597 hither,4,1kinghenryiv,1597 coin,4,1kinghenryiv,1597 brow,4,1kinghenryiv,1597 eat,4,1kinghenryiv,1597 reward,4,1kinghenryiv,1597 Travellers,4,1kinghenryiv,1597 Before,4,1kinghenryiv,1597 thoughts,4,1kinghenryiv,1597 Away,4,1kinghenryiv,1597 wound,4,1kinghenryiv,1597 henceforth,4,1kinghenryiv,1597 Marry,4,1kinghenryiv,1597 Without,4,1kinghenryiv,1597 going,4,1kinghenryiv,1597 rebels,4,1kinghenryiv,1597 asleep,4,1kinghenryiv,1597 kill,4,1kinghenryiv,1597 turn'd,4,1kinghenryiv,1597 enemy,4,1kinghenryiv,1597 advantage,5,1kinghenryiv,1597 thought,5,1kinghenryiv,1597 offer,5,1kinghenryiv,1597 sugar,5,1kinghenryiv,1597 pick,5,1kinghenryiv,1597 care,5,1kinghenryiv,1597 camp,5,1kinghenryiv,1597 drive,5,1kinghenryiv,1597 opposed,5,1kinghenryiv,1597 golden,5,1kinghenryiv,1597 knaves,5,1kinghenryiv,1597 sit,5,1kinghenryiv,1597 sin,5,1kinghenryiv,1597 Vintner,5,1kinghenryiv,1597 walk,5,1kinghenryiv,1597 merry,5,1kinghenryiv,1597 council,5,1kinghenryiv,1597 countenance,5,1kinghenryiv,1597 within,5,1kinghenryiv,1597 vile,5,1kinghenryiv,1597 worse,5,1kinghenryiv,1597 Item,5,1kinghenryiv,1597 common,5,1kinghenryiv,1597 fault,5,1kinghenryiv,1597 'Faith,5,1kinghenryiv,1597 title,5,1kinghenryiv,1597 want,5,1kinghenryiv,1597 hence,5,1kinghenryiv,1597 What's,5,1kinghenryiv,1597 Stand,5,1kinghenryiv,1597 stay,5,1kinghenryiv,1597 quick,5,1kinghenryiv,1597 nobility,5,1kinghenryiv,1597 monstrous,5,1kinghenryiv,1597 prove,5,1kinghenryiv,1597 best,5,1kinghenryiv,1597 sooner,5,1kinghenryiv,1597 fields,5,1kinghenryiv,1597 wear,5,1kinghenryiv,1597 enterprise,5,1kinghenryiv,1597 breath,5,1kinghenryiv,1597 hands,5,1kinghenryiv,1597 thyself,5,1kinghenryiv,1597 aside,5,1kinghenryiv,1597 hadst,5,1kinghenryiv,1597 knew,5,1kinghenryiv,1597 hard,5,1kinghenryiv,1597 present,5,1kinghenryiv,1597 fool,5,1kinghenryiv,1597 trick,5,1kinghenryiv,1597 Hath,5,1kinghenryiv,1597 lean,5,1kinghenryiv,1597 nay,5,1kinghenryiv,1597 lords,5,1kinghenryiv,1597 bears,5,1kinghenryiv,1597 things,5,1kinghenryiv,1597 sirrah,5,1kinghenryiv,1597 picked,5,1kinghenryiv,1597 general,5,1kinghenryiv,1597 Some,5,1kinghenryiv,1597 Richard,5,1kinghenryiv,1597 dearest,5,1kinghenryiv,1597 mark,5,1kinghenryiv,1597 labour,5,1kinghenryiv,1597 behalf,5,1kinghenryiv,1597 ostler,5,1kinghenryiv,1597 heavy,5,1kinghenryiv,1597 wag,5,1kinghenryiv,1597 'Tis,5,1kinghenryiv,1597 found,5,1kinghenryiv,1597 forward,5,1kinghenryiv,1597 supper,5,1kinghenryiv,1597 takes,5,1kinghenryiv,1597 Michael,5,1kinghenryiv,1597 ride,5,1kinghenryiv,1597 safety,5,1kinghenryiv,1597 ta'en,5,1kinghenryiv,1597 till,5,1kinghenryiv,1597 gentleman,5,1kinghenryiv,1597 gallant,5,1kinghenryiv,1597 dozen,5,1kinghenryiv,1597 cut,5,1kinghenryiv,1597 along,5,1kinghenryiv,1597 low,5,1kinghenryiv,1597 reckoning,5,1kinghenryiv,1597 knowest,5,1kinghenryiv,1597 presence,5,1kinghenryiv,1597 Jesu,5,1kinghenryiv,1597 cry,5,1kinghenryiv,1597 together,5,1kinghenryiv,1597 sickness,5,1kinghenryiv,1597 purpose,5,1kinghenryiv,1597 least,5,1kinghenryiv,1597 Percy's,5,1kinghenryiv,1597 Indeed,5,1kinghenryiv,1597 last,5,1kinghenryiv,1597 content,5,1kinghenryiv,1597 might,5,1kinghenryiv,1597 ten,5,1kinghenryiv,1597 hangman,5,1kinghenryiv,1597 Tut,5,1kinghenryiv,1597 lads,5,1kinghenryiv,1597 brave,6,1kinghenryiv,1597 V,6,1kinghenryiv,1597 took,6,1kinghenryiv,1597 haste,6,1kinghenryiv,1597 truly,6,1kinghenryiv,1597 fought,6,1kinghenryiv,1597 withal,6,1kinghenryiv,1597 under,6,1kinghenryiv,1597 damned,6,1kinghenryiv,1597 mercy,6,1kinghenryiv,1597 light,6,1kinghenryiv,1597 purses,6,1kinghenryiv,1597 sworn,6,1kinghenryiv,1597 apparent,6,1kinghenryiv,1597 Servant,6,1kinghenryiv,1597 Out,6,1kinghenryiv,1597 terms,6,1kinghenryiv,1597 masters,6,1kinghenryiv,1597 flesh,6,1kinghenryiv,1597 bold,6,1kinghenryiv,1597 friend,6,1kinghenryiv,1597 mean,6,1kinghenryiv,1597 There's,6,1kinghenryiv,1597 side,6,1kinghenryiv,1597 therefore,6,1kinghenryiv,1597 deeds,6,1kinghenryiv,1597 Walter,6,1kinghenryiv,1597 means,6,1kinghenryiv,1597 proud,6,1kinghenryiv,1597 heads,6,1kinghenryiv,1597 gone,6,1kinghenryiv,1597 fifty,6,1kinghenryiv,1597 north,6,1kinghenryiv,1597 butter,6,1kinghenryiv,1597 current,6,1kinghenryiv,1597 month,6,1kinghenryiv,1597 age,6,1kinghenryiv,1597 Yet,6,1kinghenryiv,1597 twenty,6,1kinghenryiv,1597 speaks,6,1kinghenryiv,1597 welcome,6,1kinghenryiv,1597 hang,6,1kinghenryiv,1597 foul,6,1kinghenryiv,1597 King,6,1kinghenryiv,1597 Sirrah,6,1kinghenryiv,1597 Against,6,1kinghenryiv,1597 gentle,6,1kinghenryiv,1597 father's,6,1kinghenryiv,1597 over,6,1kinghenryiv,1597 Scotland,6,1kinghenryiv,1597 ring,6,1kinghenryiv,1597 save,6,1kinghenryiv,1597 hair,6,1kinghenryiv,1597 taken,6,1kinghenryiv,1597 wounds,6,1kinghenryiv,1597 rich,6,1kinghenryiv,1597 fill,6,1kinghenryiv,1597 ne'er,6,1kinghenryiv,1597 base,6,1kinghenryiv,1597 tale,6,1kinghenryiv,1597 short,6,1kinghenryiv,1597 thank,6,1kinghenryiv,1597 dangerous,6,1kinghenryiv,1597 strong,6,1kinghenryiv,1597 horses,6,1kinghenryiv,1597 hearts,6,1kinghenryiv,1597 use,6,1kinghenryiv,1597 whom,6,1kinghenryiv,1597 sent,6,1kinghenryiv,1597 March,6,1kinghenryiv,1597 Nothing,6,1kinghenryiv,1597 ear,6,1kinghenryiv,1597 guts,6,1kinghenryiv,1597 hostess,6,1kinghenryiv,1597 met,6,1kinghenryiv,1597 liege,6,1kinghenryiv,1597 virtue,6,1kinghenryiv,1597 respect,6,1kinghenryiv,1597 dare,6,1kinghenryiv,1597 cross,6,1kinghenryiv,1597 woman,6,1kinghenryiv,1597 breathe,6,1kinghenryiv,1597 MICHAEL,6,1kinghenryiv,1597 JOHN,6,1kinghenryiv,1597 told,7,1kinghenryiv,1597 Will,7,1kinghenryiv,1597 while,7,1kinghenryiv,1597 trust,7,1kinghenryiv,1597 yourself,7,1kinghenryiv,1597 Nor,7,1kinghenryiv,1597 These,7,1kinghenryiv,1597 turn,7,1kinghenryiv,1597 Owen,7,1kinghenryiv,1597 steal,7,1kinghenryiv,1597 morning,7,1kinghenryiv,1597 Ay,7,1kinghenryiv,1597 boy,7,1kinghenryiv,1597 bed,7,1kinghenryiv,1597 whole,7,1kinghenryiv,1597 behind,7,1kinghenryiv,1597 Bolingbroke,7,1kinghenryiv,1597 sing,7,1kinghenryiv,1597 i',7,1kinghenryiv,1597 God's,7,1kinghenryiv,1597 deep,7,1kinghenryiv,1597 YORK,7,1kinghenryiv,1597 lend,7,1kinghenryiv,1597 door,7,1kinghenryiv,1597 Second,7,1kinghenryiv,1597 moon,7,1kinghenryiv,1597 deny,7,1kinghenryiv,1597 point,7,1kinghenryiv,1597 bought,7,1kinghenryiv,1597 march,7,1kinghenryiv,1597 hill,7,1kinghenryiv,1597 Peace,7,1kinghenryiv,1597 ours,7,1kinghenryiv,1597 ere,7,1kinghenryiv,1597 question,7,1kinghenryiv,1597 sheriff,7,1kinghenryiv,1597 Gadshill,7,1kinghenryiv,1597 bloody,7,1kinghenryiv,1597 thief,7,1kinghenryiv,1597 letters,7,1kinghenryiv,1597 o'clock,7,1kinghenryiv,1597 close,7,1kinghenryiv,1597 buckram,7,1kinghenryiv,1597 oft,7,1kinghenryiv,1597 break,7,1kinghenryiv,1597 only,7,1kinghenryiv,1597 oath,7,1kinghenryiv,1597 ransom,7,1kinghenryiv,1597 wert,7,1kinghenryiv,1597 hope,7,1kinghenryiv,1597 gentlemen,7,1kinghenryiv,1597 pardon,7,1kinghenryiv,1597 unto,7,1kinghenryiv,1597 cowards,7,1kinghenryiv,1597 seen,7,1kinghenryiv,1597 courtesy,7,1kinghenryiv,1597 battle,7,1kinghenryiv,1597 'Sblood,7,1kinghenryiv,1597 English,7,1kinghenryiv,1597 hours,7,1kinghenryiv,1597 send,7,1kinghenryiv,1597 first,7,1kinghenryiv,1597 ARCHBISHOP,7,1kinghenryiv,1597 without,7,1kinghenryiv,1597 greatness,7,1kinghenryiv,1597 crown,7,1kinghenryiv,1597 times,8,1kinghenryiv,1597 peace,8,1kinghenryiv,1597 villain,8,1kinghenryiv,1597 seven,8,1kinghenryiv,1597 jest,8,1kinghenryiv,1597 saw,8,1kinghenryiv,1597 years,8,1kinghenryiv,1597 another,8,1kinghenryiv,1597 bound,8,1kinghenryiv,1597 worth,8,1kinghenryiv,1597 Such,8,1kinghenryiv,1597 Farewell,8,1kinghenryiv,1597 read,8,1kinghenryiv,1597 thieves,8,1kinghenryiv,1597 Our,8,1kinghenryiv,1597 fellow,8,1kinghenryiv,1597 king's,8,1kinghenryiv,1597 about,8,1kinghenryiv,1597 sun,8,1kinghenryiv,1597 bring,8,1kinghenryiv,1597 else,8,1kinghenryiv,1597 III,8,1kinghenryiv,1597 At,8,1kinghenryiv,1597 gave,8,1kinghenryiv,1597 Or,8,1kinghenryiv,1597 farewell,8,1kinghenryiv,1597 afoot,8,1kinghenryiv,1597 banish,8,1kinghenryiv,1597 wherein,8,1kinghenryiv,1597 place,8,1kinghenryiv,1597 brought,8,1kinghenryiv,1597 plot,8,1kinghenryiv,1597 field,8,1kinghenryiv,1597 praise,8,1kinghenryiv,1597 paid,8,1kinghenryiv,1597 new,8,1kinghenryiv,1597 lead,8,1kinghenryiv,1597 Peto,8,1kinghenryiv,1597 Your,8,1kinghenryiv,1597 'Zounds,8,1kinghenryiv,1597 Therefore,8,1kinghenryiv,1597 need,8,1kinghenryiv,1597 pound,8,1kinghenryiv,1597 Shrewsbury,8,1kinghenryiv,1597 sake,8,1kinghenryiv,1597 court,8,1kinghenryiv,1597 says,8,1kinghenryiv,1597 Blunt,8,1kinghenryiv,1597 war,8,1kinghenryiv,1597 instinct,8,1kinghenryiv,1597 fortune,8,1kinghenryiv,1597 tavern,8,1kinghenryiv,1597 wild,8,1kinghenryiv,1597 swear,8,1kinghenryiv,1597 cold,8,1kinghenryiv,1597 sleep,8,1kinghenryiv,1597 straight,8,1kinghenryiv,1597 lion,8,1kinghenryiv,1597 Eastcheap,8,1kinghenryiv,1597 Thy,8,1kinghenryiv,1597 Did,8,1kinghenryiv,1597 certain,8,1kinghenryiv,1597 spirit,8,1kinghenryiv,1597 Ned,9,1kinghenryiv,1597 days,9,1kinghenryiv,1597 business,9,1kinghenryiv,1597 Chamberlain,9,1kinghenryiv,1597 rascal,9,1kinghenryiv,1597 run,9,1kinghenryiv,1597 Whose,9,1kinghenryiv,1597 sure,9,1kinghenryiv,1597 Not,9,1kinghenryiv,1597 further,9,1kinghenryiv,1597 anon,9,1kinghenryiv,1597 matter,9,1kinghenryiv,1597 Within,9,1kinghenryiv,1597 II,9,1kinghenryiv,1597 whose,9,1kinghenryiv,1597 dear,9,1kinghenryiv,1597 speed,9,1kinghenryiv,1597 Sheriff,9,1kinghenryiv,1597 drawn,9,1kinghenryiv,1597 show,9,1kinghenryiv,1597 alive,9,1kinghenryiv,1597 far,9,1kinghenryiv,1597 through,9,1kinghenryiv,1597 none,9,1kinghenryiv,1597 eye,9,1kinghenryiv,1597 youth,9,1kinghenryiv,1597 awhile,9,1kinghenryiv,1597 high,9,1kinghenryiv,1597 soldiers,9,1kinghenryiv,1597 end,9,1kinghenryiv,1597 villanous,9,1kinghenryiv,1597 once,9,1kinghenryiv,1597 sayest,9,1kinghenryiv,1597 near,9,1kinghenryiv,1597 Hotspur,9,1kinghenryiv,1597 next,9,1kinghenryiv,1597 ground,9,1kinghenryiv,1597 London,9,1kinghenryiv,1597 pocket,9,1kinghenryiv,1597 lad,9,1kinghenryiv,1597 cup,9,1kinghenryiv,1597 given,9,1kinghenryiv,1597 Anon,9,1kinghenryiv,1597 alone,9,1kinghenryiv,1597 we'll,9,1kinghenryiv,1597 Northumberland,9,1kinghenryiv,1597 kind,9,1kinghenryiv,1597 help,10,1kinghenryiv,1597 rob,10,1kinghenryiv,1597 rather,10,1kinghenryiv,1597 pray,10,1kinghenryiv,1597 hanged,10,1kinghenryiv,1597 drink,10,1kinghenryiv,1597 lies,10,1kinghenryiv,1597 Upon,10,1kinghenryiv,1597 Give,10,1kinghenryiv,1597 she,10,1kinghenryiv,1597 nothing,10,1kinghenryiv,1597 There,10,1kinghenryiv,1597 both,10,1kinghenryiv,1597 Here,10,1kinghenryiv,1597 wind,10,1kinghenryiv,1597 heaven,10,1kinghenryiv,1597 rest,10,1kinghenryiv,1597 His,10,1kinghenryiv,1597 On,10,1kinghenryiv,1597 Lancaster,10,1kinghenryiv,1597 look,10,1kinghenryiv,1597 that's,10,1kinghenryiv,1597 Than,10,1kinghenryiv,1597 into,10,1kinghenryiv,1597 young,10,1kinghenryiv,1597 All,10,1kinghenryiv,1597 there's,10,1kinghenryiv,1597 state,10,1kinghenryiv,1597 fire,10,1kinghenryiv,1597 thine,10,1kinghenryiv,1597 York,10,1kinghenryiv,1597 Let,10,1kinghenryiv,1597 wilt,10,1kinghenryiv,1597 counterfeit,10,1kinghenryiv,1597 wife,10,1kinghenryiv,1597 Messenger,10,1kinghenryiv,1597 shalt,10,1kinghenryiv,1597 die,10,1kinghenryiv,1597 answer,11,1kinghenryiv,1597 Scot,11,1kinghenryiv,1597 looks,11,1kinghenryiv,1597 pay,11,1kinghenryiv,1597 Bardolph,11,1kinghenryiv,1597 Is,11,1kinghenryiv,1597 Re,11,1kinghenryiv,1597 lost,11,1kinghenryiv,1597 Kate,11,1kinghenryiv,1597 half,11,1kinghenryiv,1597 money,11,1kinghenryiv,1597 foot,11,1kinghenryiv,1597 nor,11,1kinghenryiv,1597 already,11,1kinghenryiv,1597 heard,11,1kinghenryiv,1597 hundred,11,1kinghenryiv,1597 uncle,11,1kinghenryiv,1597 lay,11,1kinghenryiv,1597 reason,11,1kinghenryiv,1597 home,11,1kinghenryiv,1597 shame,11,1kinghenryiv,1597 truth,12,1kinghenryiv,1597 came,12,1kinghenryiv,1597 after,12,1kinghenryiv,1597 since,12,1kinghenryiv,1597 play,12,1kinghenryiv,1597 Good,12,1kinghenryiv,1597 valiant,12,1kinghenryiv,1597 tongue,12,1kinghenryiv,1597 bear,12,1kinghenryiv,1597 forth,12,1kinghenryiv,1597 First,12,1kinghenryiv,1597 indeed,12,1kinghenryiv,1597 majesty,12,1kinghenryiv,1597 comes,12,1kinghenryiv,1597 before,12,1kinghenryiv,1597 same,12,1kinghenryiv,1597 who,12,1kinghenryiv,1597 thing,12,1kinghenryiv,1597 off,12,1kinghenryiv,1597 PETO,12,1kinghenryiv,1597 Westmoreland,12,1kinghenryiv,1597 company,12,1kinghenryiv,1597 Earl,12,1kinghenryiv,1597 hold,12,1kinghenryiv,1597 England,12,1kinghenryiv,1597 eyes,12,1kinghenryiv,1597 live,12,1kinghenryiv,1597 land,12,1kinghenryiv,1597 every,13,1kinghenryiv,1597 NORTHUMBERLAND,13,1kinghenryiv,1597 charge,13,1kinghenryiv,1597 Worcester,13,1kinghenryiv,1597 enough,13,1kinghenryiv,1597 against,13,1kinghenryiv,1597 Go,13,1kinghenryiv,1597 enter,13,1kinghenryiv,1597 prisoners,13,1kinghenryiv,1597 dost,13,1kinghenryiv,1597 dead,13,1kinghenryiv,1597 most,13,1kinghenryiv,1597 hot,13,1kinghenryiv,1597 coward,13,1kinghenryiv,1597 They,13,1kinghenryiv,1597 why,13,1kinghenryiv,1597 hour,13,1kinghenryiv,1597 thus,13,1kinghenryiv,1597 LANCASTER,13,1kinghenryiv,1597 lie,13,1kinghenryiv,1597 himself,13,1kinghenryiv,1597 soul,14,1kinghenryiv,1597 friends,14,1kinghenryiv,1597 sir,14,1kinghenryiv,1597 Poins,14,1kinghenryiv,1597 Do,14,1kinghenryiv,1597 Welsh,14,1kinghenryiv,1597 little,14,1kinghenryiv,1597 rogue,14,1kinghenryiv,1597 Then,14,1kinghenryiv,1597 stand,14,1kinghenryiv,1597 news,14,1kinghenryiv,1597 back,14,1kinghenryiv,1597 poor,14,1kinghenryiv,1597 mad,14,1kinghenryiv,1597 other,14,1kinghenryiv,1597 lady,14,1kinghenryiv,1597 those,15,1kinghenryiv,1597 keep,15,1kinghenryiv,1597 made,15,1kinghenryiv,1597 myself,15,1kinghenryiv,1597 find,15,1kinghenryiv,1597 Where,15,1kinghenryiv,1597 When,15,1kinghenryiv,1597 power,15,1kinghenryiv,1597 Nay,16,1kinghenryiv,1597 WESTMORELAND,16,1kinghenryiv,1597 brother,16,1kinghenryiv,1597 full,16,1kinghenryiv,1597 death,16,1kinghenryiv,1597 An,16,1kinghenryiv,1597 long,16,1kinghenryiv,1597 earth,16,1kinghenryiv,1597 prince,16,1kinghenryiv,1597 mine,16,1kinghenryiv,1597 still,16,1kinghenryiv,1597 heart,16,1kinghenryiv,1597 way,16,1kinghenryiv,1597 three,16,1kinghenryiv,1597 even,16,1kinghenryiv,1597 thousand,16,1kinghenryiv,1597 prithee,16,1kinghenryiv,1597 cannot,16,1kinghenryiv,1597 plague,17,1kinghenryiv,1597 Who,17,1kinghenryiv,1597 fight,17,1kinghenryiv,1597 sword,17,1kinghenryiv,1597 It,17,1kinghenryiv,1597 We,17,1kinghenryiv,1597 said,17,1kinghenryiv,1597 done,17,1kinghenryiv,1597 where,17,1kinghenryiv,1597 very,17,1kinghenryiv,1597 MORTIMER,17,1kinghenryiv,1597 fair,17,1kinghenryiv,1597 WALTER,18,1kinghenryiv,1597 noble,18,1kinghenryiv,1597 Yea,18,1kinghenryiv,1597 arms,18,1kinghenryiv,1597 Shall,18,1kinghenryiv,1597 word,18,1kinghenryiv,1597 ever,18,1kinghenryiv,1597 Prince,18,1kinghenryiv,1597 Glendower,18,1kinghenryiv,1597 being,18,1kinghenryiv,1597 better,19,1kinghenryiv,1597 BLUNT,19,1kinghenryiv,1597 grace,19,1kinghenryiv,1597 fat,19,1kinghenryiv,1597 ACT,19,1kinghenryiv,1597 FRANCIS,19,1kinghenryiv,1597 many,19,1kinghenryiv,1597 LADY,19,1kinghenryiv,1597 leave,19,1kinghenryiv,1597 meet,20,1kinghenryiv,1597 Now,20,1kinghenryiv,1597 With,20,1kinghenryiv,1597 part,20,1kinghenryiv,1597 morrow,20,1kinghenryiv,1597 face,20,1kinghenryiv,1597 SCENE,20,1kinghenryiv,1597 GADSHILL,21,1kinghenryiv,1597 honour,21,1kinghenryiv,1597 Wales,21,1kinghenryiv,1597 sack,21,1kinghenryiv,1597 hand,21,1kinghenryiv,1597 PERCY,21,1kinghenryiv,1597 Falstaff,21,1kinghenryiv,1597 take,21,1kinghenryiv,1597 house,21,1kinghenryiv,1597 Carrier,21,1kinghenryiv,1597 Francis,22,1kinghenryiv,1597 world,22,1kinghenryiv,1597 devil,22,1kinghenryiv,1597 own,22,1kinghenryiv,1597 great,22,1kinghenryiv,1597 VERNON,23,1kinghenryiv,1597 Which,23,1kinghenryiv,1597 four,23,1kinghenryiv,1597 Thou,23,1kinghenryiv,1597 sweet,23,1kinghenryiv,1597 her,24,1kinghenryiv,1597 blood,24,1kinghenryiv,1597 'tis,24,1kinghenryiv,1597 been,24,1kinghenryiv,1597 again,24,1kinghenryiv,1597 could,24,1kinghenryiv,1597 Douglas,25,1kinghenryiv,1597 Come,25,1kinghenryiv,1597 son,25,1kinghenryiv,1597 name,25,1kinghenryiv,1597 BARDOLPH,25,1kinghenryiv,1597 cousin,25,1kinghenryiv,1597 How,25,1kinghenryiv,1597 which,26,1kinghenryiv,1597 head,26,1kinghenryiv,1597 fear,26,1kinghenryiv,1597 night,26,1kinghenryiv,1597 go,26,1kinghenryiv,1597 any,26,1kinghenryiv,1597 speak,26,1kinghenryiv,1597 faith,26,1kinghenryiv,1597 This,26,1kinghenryiv,1597 must,27,1kinghenryiv,1597 call,27,1kinghenryiv,1597 away,27,1kinghenryiv,1597 By,27,1kinghenryiv,1597 Exeunt,27,1kinghenryiv,1597 So,27,1kinghenryiv,1597 doth,27,1kinghenryiv,1597 Mortimer,27,1kinghenryiv,1597 love,27,1kinghenryiv,1597 GLENDOWER,27,1kinghenryiv,1597 Well,27,1kinghenryiv,1597 SIR,27,1kinghenryiv,1597 father,27,1kinghenryiv,1597 Exit,27,1kinghenryiv,1597 much,28,1kinghenryiv,1597 these,28,1kinghenryiv,1597 give,28,1kinghenryiv,1597 ye,28,1kinghenryiv,1597 some,29,1kinghenryiv,1597 No,29,1kinghenryiv,1597 old,29,1kinghenryiv,1597 set,30,1kinghenryiv,1597 DOUGLAS,30,1kinghenryiv,1597 had,30,1kinghenryiv,1597 can,30,1kinghenryiv,1597 down,31,1kinghenryiv,1597 You,31,1kinghenryiv,1597 one,31,1kinghenryiv,1597 horse,32,1kinghenryiv,1597 say,32,1kinghenryiv,1597 see,32,1kinghenryiv,1597 should,32,1kinghenryiv,1597 true,32,1kinghenryiv,1597 ',33,1kinghenryiv,1597 life,33,1kinghenryiv,1597 Hostess,33,1kinghenryiv,1597 think,33,1kinghenryiv,1597 you,289,1kinghenryiv,1597 If,34,1kinghenryiv,1597 Jack,34,1kinghenryiv,1597 may,34,1kinghenryiv,1597 men,34,1kinghenryiv,1597 two,34,1kinghenryiv,1597 My,35,1kinghenryiv,1597 hast,35,1kinghenryiv,1597 John,36,1kinghenryiv,1597 hear,36,1kinghenryiv,1597 Harry,36,1kinghenryiv,1597 In,36,1kinghenryiv,1597 Hal,36,1kinghenryiv,1597 how,36,1kinghenryiv,1597 Sir,37,1kinghenryiv,1597 never,39,1kinghenryiv,1597 yet,39,1kinghenryiv,1597 make,39,1kinghenryiv,1597 day,39,1kinghenryiv,1597 here,40,1kinghenryiv,1597 than,40,1kinghenryiv,1597 their,40,1kinghenryiv,1597 know,40,1kinghenryiv,1597 up,40,1kinghenryiv,1597 out,40,1kinghenryiv,1597 For,41,1kinghenryiv,1597 Percy,41,1kinghenryiv,1597 God,42,1kinghenryiv,1597 my,298,1kinghenryiv,1597 Of,43,1kinghenryiv,1597 Why,44,1kinghenryiv,1597 POINS,44,1kinghenryiv,1597 That,44,1kinghenryiv,1597 time,44,1kinghenryiv,1597 tell,45,1kinghenryiv,1597 As,45,1kinghenryiv,1597 Lord,45,1kinghenryiv,1597 let,45,1kinghenryiv,1597 WORCESTER,46,1kinghenryiv,1597 too,47,1kinghenryiv,1597 hath,48,1kinghenryiv,1597 when,48,1kinghenryiv,1597 well,49,1kinghenryiv,1597 were,49,1kinghenryiv,1597 there,50,1kinghenryiv,1597 He,50,1kinghenryiv,1597 Enter,50,1kinghenryiv,1597 O,52,1kinghenryiv,1597 come,54,1kinghenryiv,1597 upon,55,1kinghenryiv,1597 art,55,1kinghenryiv,1597 A,56,1kinghenryiv,1597 such,56,1kinghenryiv,1597 then,57,1kinghenryiv,1597 or,57,1kinghenryiv,1597 would,57,1kinghenryiv,1597 more,58,1kinghenryiv,1597 EARL,59,1kinghenryiv,1597 like,60,1kinghenryiv,1597 KING,60,1kinghenryiv,1597 IV,60,1kinghenryiv,1597 man,60,1kinghenryiv,1597 was,62,1kinghenryiv,1597 did,63,1kinghenryiv,1597 king,63,1kinghenryiv,1597 now,64,1kinghenryiv,1597 us,66,1kinghenryiv,1597 But,66,1kinghenryiv,1597 they,68,1kinghenryiv,1597 from,68,1kinghenryiv,1597 What,68,1kinghenryiv,1597 OF,69,1kinghenryiv,1597 am,69,1kinghenryiv,1597 an,69,1kinghenryiv,1597 what,69,1kinghenryiv,1597 good,70,1kinghenryiv,1597 them,75,1kinghenryiv,1597 To,78,1kinghenryiv,1597 are,78,1kinghenryiv,1597 lord,79,1kinghenryiv,1597 at,80,1kinghenryiv,1597 do,84,1kinghenryiv,1597 of,596,1kinghenryiv,1597 no,85,1kinghenryiv,1597 if,85,1kinghenryiv,1597 we,85,1kinghenryiv,1597 I'll,86,1kinghenryiv,1597 in,342,1kinghenryiv,1597 by,90,1kinghenryiv,1597 our,92,1kinghenryiv,1597 thy,102,1kinghenryiv,1597 thee,103,1kinghenryiv,1597 The,103,1kinghenryiv,1597 on,105,1kinghenryiv,1597 HOTSPUR,114,1kinghenryiv,1597 but,114,1kinghenryiv,1597 shall,116,1kinghenryiv,1597 I,631,1kinghenryiv,1597 your,121,1kinghenryiv,1597 all,125,1kinghenryiv,1597 so,130,1kinghenryiv,1597 will,130,1kinghenryiv,1597 him,142,1kinghenryiv,1597 and,660,1kinghenryiv,1597 have,150,1kinghenryiv,1597 to,410,1kinghenryiv,1597 this,163,1kinghenryiv,1597 his,163,1kinghenryiv,1597 he,168,1kinghenryiv,1597 FALSTAFF,168,1kinghenryiv,1597 for,172,1kinghenryiv,1597 as,180,1kinghenryiv,1597 with,184,1kinghenryiv,1597 be,191,1kinghenryiv,1597 PRINCE,192,1kinghenryiv,1597 it,195,1kinghenryiv,1597 is,207,1kinghenryiv,1597 And,208,1kinghenryiv,1597 that,209,1kinghenryiv,1597 me,227,1kinghenryiv,1597 thou,231,1kinghenryiv,1597 a,491,1kinghenryiv,1597 not,250,1kinghenryiv,1597 the,762,1kinghenryiv,1597 HENRY,252,1kinghenryiv,1597 profession,1,1kinghenryvi,1590 affords,1,1kinghenryvi,1590 kingdom's,1,1kinghenryvi,1590 O'ercharging,1,1kinghenryvi,1590 veil'd,1,1kinghenryvi,1590 deputy,1,1kinghenryvi,1590 encompassed,1,1kinghenryvi,1590 heed,1,1kinghenryvi,1590 shepherd's,1,1kinghenryvi,1590 household's,1,1kinghenryvi,1590 brawl,1,1kinghenryvi,1590 told,1,1kinghenryvi,1590 Touching,1,1kinghenryvi,1590 rushing,1,1kinghenryvi,1590 o'er,1,1kinghenryvi,1590 Changed,1,1kinghenryvi,1590 troubles,1,1kinghenryvi,1590 pitched,1,1kinghenryvi,1590 lusts,1,1kinghenryvi,1590 Champagne,1,1kinghenryvi,1590 sped,1,1kinghenryvi,1590 accordingly,1,1kinghenryvi,1590 Finish,1,1kinghenryvi,1590 watchmen,1,1kinghenryvi,1590 snares,1,1kinghenryvi,1590 drawing,1,1kinghenryvi,1590 incantations,1,1kinghenryvi,1590 Corrupt,1,1kinghenryvi,1590 Stands,1,1kinghenryvi,1590 Deborah,1,1kinghenryvi,1590 gardens,1,1kinghenryvi,1590 slaughtering,1,1kinghenryvi,1590 gallants,1,1kinghenryvi,1590 Scythian,1,1kinghenryvi,1590 LORD,1,1kinghenryvi,1590 Proud,1,1kinghenryvi,1590 banning,1,1kinghenryvi,1590 reclaim'd,1,1kinghenryvi,1590 policies,1,1kinghenryvi,1590 Blue,1,1kinghenryvi,1590 Laughest,1,1kinghenryvi,1590 description,1,1kinghenryvi,1590 jar,1,1kinghenryvi,1590 composition,1,1kinghenryvi,1590 motion,1,1kinghenryvi,1590 Courageous,1,1kinghenryvi,1590 belongs,1,1kinghenryvi,1590 churlish,1,1kinghenryvi,1590 Pity,1,1kinghenryvi,1590 double,1,1kinghenryvi,1590 Picardy,1,1kinghenryvi,1590 wears,1,1kinghenryvi,1590 Scoff,1,1kinghenryvi,1590 raw,1,1kinghenryvi,1590 complaints,1,1kinghenryvi,1590 possible,1,1kinghenryvi,1590 ruthless,1,1kinghenryvi,1590 quietness,1,1kinghenryvi,1590 factions,1,1kinghenryvi,1590 twit,1,1kinghenryvi,1590 admonish,1,1kinghenryvi,1590 contumeliously,1,1kinghenryvi,1590 obtain'd,1,1kinghenryvi,1590 alike,1,1kinghenryvi,1590 travail,1,1kinghenryvi,1590 wicked,1,1kinghenryvi,1590 peruse,1,1kinghenryvi,1590 Fit,1,1kinghenryvi,1590 Whether,1,1kinghenryvi,1590 Writ,1,1kinghenryvi,1590 suspicious,1,1kinghenryvi,1590 dagger,1,1kinghenryvi,1590 flieth,1,1kinghenryvi,1590 rode,1,1kinghenryvi,1590 Villain,1,1kinghenryvi,1590 reasonless,1,1kinghenryvi,1590 Messengers,1,1kinghenryvi,1590 festivals,1,1kinghenryvi,1590 boned,1,1kinghenryvi,1590 dolphin,1,1kinghenryvi,1590 elect,1,1kinghenryvi,1590 support,1,1kinghenryvi,1590 rot,1,1kinghenryvi,1590 GLOUCESTER's,1,1kinghenryvi,1590 preparation,1,1kinghenryvi,1590 exploits,1,1kinghenryvi,1590 obstinate,1,1kinghenryvi,1590 perplexed,1,1kinghenryvi,1590 rascal,1,1kinghenryvi,1590 bonds,1,1kinghenryvi,1590 Tours,1,1kinghenryvi,1590 health,1,1kinghenryvi,1590 offender,1,1kinghenryvi,1590 Talbotites,1,1kinghenryvi,1590 doubtful,1,1kinghenryvi,1590 Wasted,1,1kinghenryvi,1590 Beat,1,1kinghenryvi,1590 day's,1,1kinghenryvi,1590 muse,1,1kinghenryvi,1590 roar,1,1kinghenryvi,1590 proclaim'd,1,1kinghenryvi,1590 counties,1,1kinghenryvi,1590 undoubted,1,1kinghenryvi,1590 fickleness,1,1kinghenryvi,1590 endless,1,1kinghenryvi,1590 contrivedst,1,1kinghenryvi,1590 reserved,1,1kinghenryvi,1590 dire,1,1kinghenryvi,1590 wailing,1,1kinghenryvi,1590 drowsy,1,1kinghenryvi,1590 trull,1,1kinghenryvi,1590 swiftly,1,1kinghenryvi,1590 single,1,1kinghenryvi,1590 assailing,1,1kinghenryvi,1590 Remaineth,1,1kinghenryvi,1590 Waterford,1,1kinghenryvi,1590 entered,1,1kinghenryvi,1590 York's,1,1kinghenryvi,1590 conjoined,1,1kinghenryvi,1590 miss'd,1,1kinghenryvi,1590 writes,1,1kinghenryvi,1590 slaughter'd,1,1kinghenryvi,1590 clothes,1,1kinghenryvi,1590 vail,1,1kinghenryvi,1590 hers,1,1kinghenryvi,1590 finger,1,1kinghenryvi,1590 Discover,1,1kinghenryvi,1590 groan,1,1kinghenryvi,1590 herd,1,1kinghenryvi,1590 vain,1,1kinghenryvi,1590 violent,1,1kinghenryvi,1590 Whereas,1,1kinghenryvi,1590 Contrived,1,1kinghenryvi,1590 braver,1,1kinghenryvi,1590 braves,1,1kinghenryvi,1590 defensive,1,1kinghenryvi,1590 disease,1,1kinghenryvi,1590 sighs,1,1kinghenryvi,1590 braved,1,1kinghenryvi,1590 gorgeous,1,1kinghenryvi,1590 toil,1,1kinghenryvi,1590 hearted,1,1kinghenryvi,1590 bandying,1,1kinghenryvi,1590 lowly,1,1kinghenryvi,1590 Woman,1,1kinghenryvi,1590 rid,1,1kinghenryvi,1590 Cries,1,1kinghenryvi,1590 naked,1,1kinghenryvi,1590 Pause,1,1kinghenryvi,1590 Amazon,1,1kinghenryvi,1590 forbidden,1,1kinghenryvi,1590 thirteen,1,1kinghenryvi,1590 feeds,1,1kinghenryvi,1590 Placing,1,1kinghenryvi,1590 although,1,1kinghenryvi,1590 weighty,1,1kinghenryvi,1590 drink,1,1kinghenryvi,1590 Bright,1,1kinghenryvi,1590 throat,1,1kinghenryvi,1590 cowardice,1,1kinghenryvi,1590 signs,1,1kinghenryvi,1590 nought,1,1kinghenryvi,1590 spy'st,1,1kinghenryvi,1590 laugh,1,1kinghenryvi,1590 prey,1,1kinghenryvi,1590 commence,1,1kinghenryvi,1590 Expect,1,1kinghenryvi,1590 beauty's,1,1kinghenryvi,1590 terrible,1,1kinghenryvi,1590 confutation,1,1kinghenryvi,1590 taunts,1,1kinghenryvi,1590 loaden,1,1kinghenryvi,1590 ravish,1,1kinghenryvi,1590 solemnized,1,1kinghenryvi,1590 rue,1,1kinghenryvi,1590 strumpet,1,1kinghenryvi,1590 platforms,1,1kinghenryvi,1590 damned,1,1kinghenryvi,1590 pinch,1,1kinghenryvi,1590 fables,1,1kinghenryvi,1590 yelping,1,1kinghenryvi,1590 periapts,1,1kinghenryvi,1590 thirst,1,1kinghenryvi,1590 helpers,1,1kinghenryvi,1590 Quite,1,1kinghenryvi,1590 juggling,1,1kinghenryvi,1590 bindeth,1,1kinghenryvi,1590 disobedience,1,1kinghenryvi,1590 sorcerers,1,1kinghenryvi,1590 Would,1,1kinghenryvi,1590 scruple,1,1kinghenryvi,1590 entice,1,1kinghenryvi,1590 Golden,1,1kinghenryvi,1590 Crossing,1,1kinghenryvi,1590 PERSONAE,1,1kinghenryvi,1590 wither,1,1kinghenryvi,1590 churchyard,1,1kinghenryvi,1590 card,1,1kinghenryvi,1590 parings,1,1kinghenryvi,1590 moist,1,1kinghenryvi,1590 marshal,1,1kinghenryvi,1590 demand,1,1kinghenryvi,1590 agreed,1,1kinghenryvi,1590 sequestration,1,1kinghenryvi,1590 clamorous,1,1kinghenryvi,1590 couched,1,1kinghenryvi,1590 rumor,1,1kinghenryvi,1590 cast,1,1kinghenryvi,1590 mingled,1,1kinghenryvi,1590 softly,1,1kinghenryvi,1590 attempt,1,1kinghenryvi,1590 repulse,1,1kinghenryvi,1590 worser,1,1kinghenryvi,1590 obloquy,1,1kinghenryvi,1590 Scots,1,1kinghenryvi,1590 irks,1,1kinghenryvi,1590 rescues,1,1kinghenryvi,1590 Improvident,1,1kinghenryvi,1590 graces,1,1kinghenryvi,1590 practises,1,1kinghenryvi,1590 ire,1,1kinghenryvi,1590 disdain,1,1kinghenryvi,1590 graced,1,1kinghenryvi,1590 gloomy,1,1kinghenryvi,1590 amazed,1,1kinghenryvi,1590 sad,1,1kinghenryvi,1590 intermissive,1,1kinghenryvi,1590 consuming,1,1kinghenryvi,1590 camp,1,1kinghenryvi,1590 stock,1,1kinghenryvi,1590 working,1,1kinghenryvi,1590 pine,1,1kinghenryvi,1590 dissentious,1,1kinghenryvi,1590 charms,1,1kinghenryvi,1590 Young,1,1kinghenryvi,1590 usurp'st,1,1kinghenryvi,1590 church's,1,1kinghenryvi,1590 unaccustom'd,1,1kinghenryvi,1590 relieve,1,1kinghenryvi,1590 yeomen,1,1kinghenryvi,1590 pauvres,1,1kinghenryvi,1590 Renounce,1,1kinghenryvi,1590 Swift,1,1kinghenryvi,1590 avenge,1,1kinghenryvi,1590 grows,1,1kinghenryvi,1590 line,1,1kinghenryvi,1590 bluntly,1,1kinghenryvi,1590 Darius,1,1kinghenryvi,1590 statelier,1,1kinghenryvi,1590 pilgrimage,1,1kinghenryvi,1590 Argue,1,1kinghenryvi,1590 paramours,1,1kinghenryvi,1590 corner,1,1kinghenryvi,1590 drag,1,1kinghenryvi,1590 incensed,1,1kinghenryvi,1590 Provokes,1,1kinghenryvi,1590 Unreverent,1,1kinghenryvi,1590 Consent,1,1kinghenryvi,1590 brother,1,1kinghenryvi,1590 beacon,1,1kinghenryvi,1590 Keep,1,1kinghenryvi,1590 drab,1,1kinghenryvi,1590 Knights,1,1kinghenryvi,1590 Ponton,1,1kinghenryvi,1590 brainsick,1,1kinghenryvi,1590 Abominable,1,1kinghenryvi,1590 trumpet,1,1kinghenryvi,1590 posts,1,1kinghenryvi,1590 corse,1,1kinghenryvi,1590 concerns,1,1kinghenryvi,1590 heat,1,1kinghenryvi,1590 Forward,1,1kinghenryvi,1590 Victorious,1,1kinghenryvi,1590 toward,1,1kinghenryvi,1590 budge,1,1kinghenryvi,1590 Ourself,1,1kinghenryvi,1590 disobey,1,1kinghenryvi,1590 drew,1,1kinghenryvi,1590 Goliases,1,1kinghenryvi,1590 sloth,1,1kinghenryvi,1590 heedless,1,1kinghenryvi,1590 Quiet,1,1kinghenryvi,1590 wants,1,1kinghenryvi,1590 dwarf,1,1kinghenryvi,1590 disputing,1,1kinghenryvi,1590 fingers,1,1kinghenryvi,1590 lift,1,1kinghenryvi,1590 madness,1,1kinghenryvi,1590 soil,1,1kinghenryvi,1590 Constrain'd,1,1kinghenryvi,1590 Goodrig,1,1kinghenryvi,1590 barter'd,1,1kinghenryvi,1590 remiss,1,1kinghenryvi,1590 eclipse,1,1kinghenryvi,1590 hanging,1,1kinghenryvi,1590 Yield,1,1kinghenryvi,1590 Hecate,1,1kinghenryvi,1590 glass,1,1kinghenryvi,1590 counterfeited,1,1kinghenryvi,1590 Argued,1,1kinghenryvi,1590 rites,1,1kinghenryvi,1590 wrong'st,1,1kinghenryvi,1590 Katharine's,1,1kinghenryvi,1590 fools,1,1kinghenryvi,1590 subverts,1,1kinghenryvi,1590 quagmire,1,1kinghenryvi,1590 assail'd,1,1kinghenryvi,1590 furious,1,1kinghenryvi,1590 squadrons,1,1kinghenryvi,1590 abode,1,1kinghenryvi,1590 freedom,1,1kinghenryvi,1590 calamity,1,1kinghenryvi,1590 fightest,1,1kinghenryvi,1590 preface,1,1kinghenryvi,1590 wail,1,1kinghenryvi,1590 paltry,1,1kinghenryvi,1590 partner,1,1kinghenryvi,1590 Stain'd,1,1kinghenryvi,1590 moving,1,1kinghenryvi,1590 admiring,1,1kinghenryvi,1590 deserve,1,1kinghenryvi,1590 provender,1,1kinghenryvi,1590 she's,1,1kinghenryvi,1590 unpremeditated,1,1kinghenryvi,1590 Ascribes,1,1kinghenryvi,1590 'Contaminated,1,1kinghenryvi,1590 hereafter,1,1kinghenryvi,1590 Froissart,1,1kinghenryvi,1590 boat,1,1kinghenryvi,1590 Stinking,1,1kinghenryvi,1590 afflict,1,1kinghenryvi,1590 represent,1,1kinghenryvi,1590 deeper,1,1kinghenryvi,1590 Mazed,1,1kinghenryvi,1590 innocents,1,1kinghenryvi,1590 Retain,1,1kinghenryvi,1590 merriest,1,1kinghenryvi,1590 recompensed,1,1kinghenryvi,1590 imprison'd,1,1kinghenryvi,1590 impossible,1,1kinghenryvi,1590 striking,1,1kinghenryvi,1590 mishap,1,1kinghenryvi,1590 hosts,1,1kinghenryvi,1590 deceased,1,1kinghenryvi,1590 titular,1,1kinghenryvi,1590 purses,1,1kinghenryvi,1590 ages,1,1kinghenryvi,1590 Choked,1,1kinghenryvi,1590 eager,1,1kinghenryvi,1590 muster'd,1,1kinghenryvi,1590 ourself,1,1kinghenryvi,1590 broach,1,1kinghenryvi,1590 walk,1,1kinghenryvi,1590 invention,1,1kinghenryvi,1590 sex,1,1kinghenryvi,1590 monarch,1,1kinghenryvi,1590 Dover,1,1kinghenryvi,1590 collop,1,1kinghenryvi,1590 Kneel,1,1kinghenryvi,1590 wake,1,1kinghenryvi,1590 fighteth,1,1kinghenryvi,1590 'When,1,1kinghenryvi,1590 shrimp,1,1kinghenryvi,1590 deceit,1,1kinghenryvi,1590 wedding,1,1kinghenryvi,1590 Going,1,1kinghenryvi,1590 outlaw,1,1kinghenryvi,1590 Mean,1,1kinghenryvi,1590 fell,1,1kinghenryvi,1590 snatches,1,1kinghenryvi,1590 spy,1,1kinghenryvi,1590 nine,1,1kinghenryvi,1590 concern,1,1kinghenryvi,1590 love's,1,1kinghenryvi,1590 betrayed,1,1kinghenryvi,1590 livest,1,1kinghenryvi,1590 council,1,1kinghenryvi,1590 favourites,1,1kinghenryvi,1590 Drives,1,1kinghenryvi,1590 deliver,1,1kinghenryvi,1590 earnestly,1,1kinghenryvi,1590 braving,1,1kinghenryvi,1590 thunders,1,1kinghenryvi,1590 branches,1,1kinghenryvi,1590 liveth,1,1kinghenryvi,1590 vine,1,1kinghenryvi,1590 scorn'd,1,1kinghenryvi,1590 managed,1,1kinghenryvi,1590 children's,1,1kinghenryvi,1590 records,1,1kinghenryvi,1590 sworn,1,1kinghenryvi,1590 imperiously,1,1kinghenryvi,1590 Astraea's,1,1kinghenryvi,1590 subject,1,1kinghenryvi,1590 COUNTESS's,1,1kinghenryvi,1590 mantle,1,1kinghenryvi,1590 Wax,1,1kinghenryvi,1590 'I,1,1kinghenryvi,1590 countenance,1,1kinghenryvi,1590 Esteem,1,1kinghenryvi,1590 dignities,1,1kinghenryvi,1590 weakly,1,1kinghenryvi,1590 cropp'd,1,1kinghenryvi,1590 prejudice,1,1kinghenryvi,1590 garrison,1,1kinghenryvi,1590 cloy'd,1,1kinghenryvi,1590 attached,1,1kinghenryvi,1590 taunt,1,1kinghenryvi,1590 Heavens,1,1kinghenryvi,1590 testament,1,1kinghenryvi,1590 second,1,1kinghenryvi,1590 permit,1,1kinghenryvi,1590 adversity,1,1kinghenryvi,1590 middle,1,1kinghenryvi,1590 misconstrue,1,1kinghenryvi,1590 deserts,1,1kinghenryvi,1590 shipping,1,1kinghenryvi,1590 groans,1,1kinghenryvi,1590 parish,1,1kinghenryvi,1590 Cardinal's,1,1kinghenryvi,1590 spelling,1,1kinghenryvi,1590 doubt,1,1kinghenryvi,1590 suck,1,1kinghenryvi,1590 extirped,1,1kinghenryvi,1590 'Down,1,1kinghenryvi,1590 dally,1,1kinghenryvi,1590 offends,1,1kinghenryvi,1590 reveal'd,1,1kinghenryvi,1590 included,1,1kinghenryvi,1590 quittance,1,1kinghenryvi,1590 vanquishest,1,1kinghenryvi,1590 affect,1,1kinghenryvi,1590 adverse,1,1kinghenryvi,1590 amiss,1,1kinghenryvi,1590 sinners,1,1kinghenryvi,1590 jewel'd,1,1kinghenryvi,1590 swelling,1,1kinghenryvi,1590 rear,1,1kinghenryvi,1590 suppress'd,1,1kinghenryvi,1590 unavoided,1,1kinghenryvi,1590 perisheth,1,1kinghenryvi,1590 rung,1,1kinghenryvi,1590 beseeming,1,1kinghenryvi,1590 brier,1,1kinghenryvi,1590 Able,1,1kinghenryvi,1590 Machiavel,1,1kinghenryvi,1590 inspiration,1,1kinghenryvi,1590 Harry,1,1kinghenryvi,1590 piece,1,1kinghenryvi,1590 Commit,1,1kinghenryvi,1590 henceforward,1,1kinghenryvi,1590 revived,1,1kinghenryvi,1590 lifteth,1,1kinghenryvi,1590 rush'd,1,1kinghenryvi,1590 chased,1,1kinghenryvi,1590 climbing,1,1kinghenryvi,1590 afraid,1,1kinghenryvi,1590 unhallow'd,1,1kinghenryvi,1590 fellow,1,1kinghenryvi,1590 twelve,1,1kinghenryvi,1590 spying,1,1kinghenryvi,1590 common,1,1kinghenryvi,1590 Ambassadors,1,1kinghenryvi,1590 Valence,1,1kinghenryvi,1590 sparking,1,1kinghenryvi,1590 pestiferous,1,1kinghenryvi,1590 habit,1,1kinghenryvi,1590 civil,1,1kinghenryvi,1590 bliss,1,1kinghenryvi,1590 direct,1,1kinghenryvi,1590 Turk,1,1kinghenryvi,1590 dieted,1,1kinghenryvi,1590 erect,1,1kinghenryvi,1590 Whereon,1,1kinghenryvi,1590 fault,1,1kinghenryvi,1590 Despairing,1,1kinghenryvi,1590 sendeth,1,1kinghenryvi,1590 toucheth,1,1kinghenryvi,1590 quake,1,1kinghenryvi,1590 exceeding,1,1kinghenryvi,1590 ruminate,1,1kinghenryvi,1590 encounter,1,1kinghenryvi,1590 Hannibal,1,1kinghenryvi,1590 abrupt,1,1kinghenryvi,1590 seeks,1,1kinghenryvi,1590 doubt'st,1,1kinghenryvi,1590 'Long,1,1kinghenryvi,1590 forfeiting,1,1kinghenryvi,1590 Pardon,1,1kinghenryvi,1590 inkhorn,1,1kinghenryvi,1590 unable,1,1kinghenryvi,1590 household,1,1kinghenryvi,1590 flatterer,1,1kinghenryvi,1590 charming,1,1kinghenryvi,1590 Leave,1,1kinghenryvi,1590 liegemen,1,1kinghenryvi,1590 sue,1,1kinghenryvi,1590 coloured,1,1kinghenryvi,1590 fortitude,1,1kinghenryvi,1590 tush,1,1kinghenryvi,1590 overthrown,1,1kinghenryvi,1590 sum,1,1kinghenryvi,1590 shining,1,1kinghenryvi,1590 complete,1,1kinghenryvi,1590 distrain'd,1,1kinghenryvi,1590 reverence,1,1kinghenryvi,1590 feed,1,1kinghenryvi,1590 fearful,1,1kinghenryvi,1590 Levied,1,1kinghenryvi,1590 severe,1,1kinghenryvi,1590 bride,1,1kinghenryvi,1590 feel,1,1kinghenryvi,1590 ominous,1,1kinghenryvi,1590 girls,1,1kinghenryvi,1590 pedigree,1,1kinghenryvi,1590 promise,1,1kinghenryvi,1590 Spare,1,1kinghenryvi,1590 Forbidden,1,1kinghenryvi,1590 humbly,1,1kinghenryvi,1590 wavering,1,1kinghenryvi,1590 beaten,1,1kinghenryvi,1590 Scales,1,1kinghenryvi,1590 directed,1,1kinghenryvi,1590 claim,1,1kinghenryvi,1590 descend,1,1kinghenryvi,1590 'scaped,1,1kinghenryvi,1590 Vow,1,1kinghenryvi,1590 Search,1,1kinghenryvi,1590 Sheep,1,1kinghenryvi,1590 baser,1,1kinghenryvi,1590 whisper,1,1kinghenryvi,1590 guile,1,1kinghenryvi,1590 choose,1,1kinghenryvi,1590 speaking,1,1kinghenryvi,1590 lucre,1,1kinghenryvi,1590 wine,1,1kinghenryvi,1590 rude,1,1kinghenryvi,1590 lion's,1,1kinghenryvi,1590 wishes,1,1kinghenryvi,1590 redeem'd,1,1kinghenryvi,1590 burthening,1,1kinghenryvi,1590 mothers',1,1kinghenryvi,1590 ward,1,1kinghenryvi,1590 wished,1,1kinghenryvi,1590 Hence,1,1kinghenryvi,1590 cavil,1,1kinghenryvi,1590 Environ,1,1kinghenryvi,1590 kneel,1,1kinghenryvi,1590 negligent,1,1kinghenryvi,1590 rend,1,1kinghenryvi,1590 obstinacy,1,1kinghenryvi,1590 usurp,1,1kinghenryvi,1590 latter,1,1kinghenryvi,1590 deigned,1,1kinghenryvi,1590 knees,1,1kinghenryvi,1590 droopeth,1,1kinghenryvi,1590 peasants,1,1kinghenryvi,1590 steal,1,1kinghenryvi,1590 Taste,1,1kinghenryvi,1590 ensign,1,1kinghenryvi,1590 goose,1,1kinghenryvi,1590 Though,1,1kinghenryvi,1590 renew,1,1kinghenryvi,1590 Cousin,1,1kinghenryvi,1590 surmount,1,1kinghenryvi,1590 go'st,1,1kinghenryvi,1590 immaculate,1,1kinghenryvi,1590 wist,1,1kinghenryvi,1590 seest,1,1kinghenryvi,1590 servile,1,1kinghenryvi,1590 compromise,1,1kinghenryvi,1590 fortress,1,1kinghenryvi,1590 Accept,1,1kinghenryvi,1590 distressful,1,1kinghenryvi,1590 eagle,1,1kinghenryvi,1590 imperious,1,1kinghenryvi,1590 Decrepit,1,1kinghenryvi,1590 Putting,1,1kinghenryvi,1590 o'ermatch'd,1,1kinghenryvi,1590 useth,1,1kinghenryvi,1590 blades,1,1kinghenryvi,1590 beating,1,1kinghenryvi,1590 horrors,1,1kinghenryvi,1590 'Speak,1,1kinghenryvi,1590 malady,1,1kinghenryvi,1590 parching,1,1kinghenryvi,1590 pitch'd,1,1kinghenryvi,1590 coast,1,1kinghenryvi,1590 approacheth,1,1kinghenryvi,1590 dogfish,1,1kinghenryvi,1590 sanguine,1,1kinghenryvi,1590 advancement,1,1kinghenryvi,1590 Parisians,1,1kinghenryvi,1590 timeless,1,1kinghenryvi,1590 wash,1,1kinghenryvi,1590 Constantine,1,1kinghenryvi,1590 Abel,1,1kinghenryvi,1590 conveyance,1,1kinghenryvi,1590 dealt,1,1kinghenryvi,1590 boot,1,1kinghenryvi,1590 mistake,1,1kinghenryvi,1590 Gallian,1,1kinghenryvi,1590 flowing,1,1kinghenryvi,1590 spakest,1,1kinghenryvi,1590 fortified,1,1kinghenryvi,1590 haled,1,1kinghenryvi,1590 rules,1,1kinghenryvi,1590 There's,1,1kinghenryvi,1590 ruler,1,1kinghenryvi,1590 distrust,1,1kinghenryvi,1590 wits,1,1kinghenryvi,1590 SIXTH,1,1kinghenryvi,1590 book,1,1kinghenryvi,1590 sally,1,1kinghenryvi,1590 Englishmen,1,1kinghenryvi,1590 Perish,1,1kinghenryvi,1590 suborn'd,1,1kinghenryvi,1590 willeth,1,1kinghenryvi,1590 Combat,1,1kinghenryvi,1590 unrelenting,1,1kinghenryvi,1590 infirmity,1,1kinghenryvi,1590 digg'd,1,1kinghenryvi,1590 sceptre,1,1kinghenryvi,1590 Draw,1,1kinghenryvi,1590 barrels,1,1kinghenryvi,1590 offers,1,1kinghenryvi,1590 fairest,1,1kinghenryvi,1590 vigilant,1,1kinghenryvi,1590 aspect,1,1kinghenryvi,1590 Used,1,1kinghenryvi,1590 jarring,1,1kinghenryvi,1590 masculine,1,1kinghenryvi,1590 chaseth,1,1kinghenryvi,1590 bitter,1,1kinghenryvi,1590 senses,1,1kinghenryvi,1590 knowledge,1,1kinghenryvi,1590 drove,1,1kinghenryvi,1590 scandal,1,1kinghenryvi,1590 whosoe'er,1,1kinghenryvi,1590 installed,1,1kinghenryvi,1590 prince's,1,1kinghenryvi,1590 grievous,1,1kinghenryvi,1590 Faith,1,1kinghenryvi,1590 mickle,1,1kinghenryvi,1590 Deprived,1,1kinghenryvi,1590 conspirator,1,1kinghenryvi,1590 bastards,1,1kinghenryvi,1590 Proffers,1,1kinghenryvi,1590 dishonourable,1,1kinghenryvi,1590 Tomyris,1,1kinghenryvi,1590 enfeebled,1,1kinghenryvi,1590 manners,1,1kinghenryvi,1590 unkind,1,1kinghenryvi,1590 Leaving,1,1kinghenryvi,1590 enjoy'd,1,1kinghenryvi,1590 enchant,1,1kinghenryvi,1590 hap,1,1kinghenryvi,1590 drinking,1,1kinghenryvi,1590 backs,1,1kinghenryvi,1590 Faint,1,1kinghenryvi,1590 contumelious,1,1kinghenryvi,1590 sorcery,1,1kinghenryvi,1590 While,1,1kinghenryvi,1590 decaying,1,1kinghenryvi,1590 crack,1,1kinghenryvi,1590 scared,1,1kinghenryvi,1590 Hungerford,1,1kinghenryvi,1590 Belike,1,1kinghenryvi,1590 discern,1,1kinghenryvi,1590 offend,1,1kinghenryvi,1590 intend'st,1,1kinghenryvi,1590 orator,1,1kinghenryvi,1590 Windsor,1,1kinghenryvi,1590 Strumpet,1,1kinghenryvi,1590 obtained,1,1kinghenryvi,1590 delights,1,1kinghenryvi,1590 unbidden,1,1kinghenryvi,1590 flattery,1,1kinghenryvi,1590 oratory,1,1kinghenryvi,1590 spoil,1,1kinghenryvi,1590 packing,1,1kinghenryvi,1590 tonight,1,1kinghenryvi,1590 music,1,1kinghenryvi,1590 dazzled,1,1kinghenryvi,1590 chaste,1,1kinghenryvi,1590 amort,1,1kinghenryvi,1590 studiously,1,1kinghenryvi,1590 daunted,1,1kinghenryvi,1590 bow,1,1kinghenryvi,1590 loath,1,1kinghenryvi,1590 hurly,1,1kinghenryvi,1590 Whiles,1,1kinghenryvi,1590 eternal,1,1kinghenryvi,1590 extemporal,1,1kinghenryvi,1590 Becomes,1,1kinghenryvi,1590 bereave,1,1kinghenryvi,1590 shortly,1,1kinghenryvi,1590 fortify,1,1kinghenryvi,1590 among,1,1kinghenryvi,1590 blown,1,1kinghenryvi,1590 smile,1,1kinghenryvi,1590 everyone,1,1kinghenryvi,1590 itself,1,1kinghenryvi,1590 La,1,1kinghenryvi,1590 spots,1,1kinghenryvi,1590 Play,1,1kinghenryvi,1590 Humphry,1,1kinghenryvi,1590 Prisoner,1,1kinghenryvi,1590 hitherto,1,1kinghenryvi,1590 scaling,1,1kinghenryvi,1590 Me,1,1kinghenryvi,1590 warrior,1,1kinghenryvi,1590 imagined,1,1kinghenryvi,1590 bay,1,1kinghenryvi,1590 lands,1,1kinghenryvi,1590 Falconbridge,1,1kinghenryvi,1590 gained,1,1kinghenryvi,1590 subscribe,1,1kinghenryvi,1590 Philip's,1,1kinghenryvi,1590 turrets,1,1kinghenryvi,1590 listen,1,1kinghenryvi,1590 Advance,1,1kinghenryvi,1590 kept,1,1kinghenryvi,1590 Pay,1,1kinghenryvi,1590 creature,1,1kinghenryvi,1590 gallery,1,1kinghenryvi,1590 beautiful,1,1kinghenryvi,1590 Hew,1,1kinghenryvi,1590 begun,1,1kinghenryvi,1590 Minotaurs,1,1kinghenryvi,1590 diligence,1,1kinghenryvi,1590 homicide,1,1kinghenryvi,1590 hid,1,1kinghenryvi,1590 glimmer,1,1kinghenryvi,1590 changed,1,1kinghenryvi,1590 motions,1,1kinghenryvi,1590 miracles,1,1kinghenryvi,1590 'long,1,1kinghenryvi,1590 Something,1,1kinghenryvi,1590 Exceeding,1,1kinghenryvi,1590 Ha,1,1kinghenryvi,1590 especial,1,1kinghenryvi,1590 piteous,1,1kinghenryvi,1590 beg,1,1kinghenryvi,1590 miser,1,1kinghenryvi,1590 fines,1,1kinghenryvi,1590 cheerfully,1,1kinghenryvi,1590 dinner,1,1kinghenryvi,1590 feigned,1,1kinghenryvi,1590 notorious,1,1kinghenryvi,1590 bless,1,1kinghenryvi,1590 guardant,1,1kinghenryvi,1590 fortune's,1,1kinghenryvi,1590 friars,1,1kinghenryvi,1590 husbands,1,1kinghenryvi,1590 quick,1,1kinghenryvi,1590 digest,1,1kinghenryvi,1590 tribute,1,1kinghenryvi,1590 shipwreck,1,1kinghenryvi,1590 killeth,1,1kinghenryvi,1590 Stain,1,1kinghenryvi,1590 bid,1,1kinghenryvi,1590 pate,1,1kinghenryvi,1590 despair,1,1kinghenryvi,1590 Unchain,1,1kinghenryvi,1590 play,1,1kinghenryvi,1590 revolting,1,1kinghenryvi,1590 sport,1,1kinghenryvi,1590 enrich,1,1kinghenryvi,1590 past,1,1kinghenryvi,1590 droops,1,1kinghenryvi,1590 Approves,1,1kinghenryvi,1590 Verbatim,1,1kinghenryvi,1590 ears,1,1kinghenryvi,1590 stem,1,1kinghenryvi,1590 temples,1,1kinghenryvi,1590 Winds,1,1kinghenryvi,1590 display'd,1,1kinghenryvi,1590 nice,1,1kinghenryvi,1590 Uncles,1,1kinghenryvi,1590 cull'd,1,1kinghenryvi,1590 monstrous,1,1kinghenryvi,1590 polluted,1,1kinghenryvi,1590 Julius,1,1kinghenryvi,1590 neglection,1,1kinghenryvi,1590 cardinal,1,1kinghenryvi,1590 halcyon,1,1kinghenryvi,1590 absurd,1,1kinghenryvi,1590 sire,1,1kinghenryvi,1590 bloom'd,1,1kinghenryvi,1590 begot,1,1kinghenryvi,1590 temple,1,1kinghenryvi,1590 beheaded,1,1kinghenryvi,1590 Dukes,1,1kinghenryvi,1590 valour's,1,1kinghenryvi,1590 Forgive,1,1kinghenryvi,1590 warn'd,1,1kinghenryvi,1590 theft,1,1kinghenryvi,1590 priests,1,1kinghenryvi,1590 intercept,1,1kinghenryvi,1590 sought,1,1kinghenryvi,1590 unequal,1,1kinghenryvi,1590 bishop's,1,1kinghenryvi,1590 WINCHESTER's,1,1kinghenryvi,1590 Murder,1,1kinghenryvi,1590 Thunder,1,1kinghenryvi,1590 bull,1,1kinghenryvi,1590 exhibit,1,1kinghenryvi,1590 challenge,1,1kinghenryvi,1590 pleaded,1,1kinghenryvi,1590 sorry,1,1kinghenryvi,1590 proditor,1,1kinghenryvi,1590 exequies,1,1kinghenryvi,1590 preserved,1,1kinghenryvi,1590 rebel,1,1kinghenryvi,1590 Posterity,1,1kinghenryvi,1590 belief,1,1kinghenryvi,1590 miscarry,1,1kinghenryvi,1590 bury,1,1kinghenryvi,1590 possibility,1,1kinghenryvi,1590 drench,1,1kinghenryvi,1590 Suddenly,1,1kinghenryvi,1590 whoso,1,1kinghenryvi,1590 dove,1,1kinghenryvi,1590 heroic,1,1kinghenryvi,1590 protract,1,1kinghenryvi,1590 goodly,1,1kinghenryvi,1590 Percies,1,1kinghenryvi,1590 got,1,1kinghenryvi,1590 kindness,1,1kinghenryvi,1590 coffin,1,1kinghenryvi,1590 car,1,1kinghenryvi,1590 cap,1,1kinghenryvi,1590 breathing,1,1kinghenryvi,1590 warrantize,1,1kinghenryvi,1590 corpse,1,1kinghenryvi,1590 petition,1,1kinghenryvi,1590 ornament,1,1kinghenryvi,1590 rigorously,1,1kinghenryvi,1590 tell'st,1,1kinghenryvi,1590 Skirmish,1,1kinghenryvi,1590 altar,1,1kinghenryvi,1590 Surely,1,1kinghenryvi,1590 reguerdon,1,1kinghenryvi,1590 flouted,1,1kinghenryvi,1590 devised,1,1kinghenryvi,1590 sacrament,1,1kinghenryvi,1590 Sirs,1,1kinghenryvi,1590 muleters,1,1kinghenryvi,1590 Warlike,1,1kinghenryvi,1590 Bolingbroke,1,1kinghenryvi,1590 wedlock,1,1kinghenryvi,1590 latest,1,1kinghenryvi,1590 bent,1,1kinghenryvi,1590 Peel'd,1,1kinghenryvi,1590 treasons,1,1kinghenryvi,1590 Entreat,1,1kinghenryvi,1590 Strange,1,1kinghenryvi,1590 people,1,1kinghenryvi,1590 disperse,1,1kinghenryvi,1590 lamps,1,1kinghenryvi,1590 modestly,1,1kinghenryvi,1590 enlargement,1,1kinghenryvi,1590 Born,1,1kinghenryvi,1590 waving,1,1kinghenryvi,1590 Hundreds,1,1kinghenryvi,1590 sumptuous,1,1kinghenryvi,1590 monuments,1,1kinghenryvi,1590 gore,1,1kinghenryvi,1590 Lascivious,1,1kinghenryvi,1590 renounce,1,1kinghenryvi,1590 overcame,1,1kinghenryvi,1590 antic,1,1kinghenryvi,1590 bulwark,1,1kinghenryvi,1590 jewel,1,1kinghenryvi,1590 happen'd,1,1kinghenryvi,1590 smoothed,1,1kinghenryvi,1590 slothful,1,1kinghenryvi,1590 carpenter,1,1kinghenryvi,1590 Didst,1,1kinghenryvi,1590 eaten,1,1kinghenryvi,1590 hereof,1,1kinghenryvi,1590 despise,1,1kinghenryvi,1590 just,1,1kinghenryvi,1590 established,1,1kinghenryvi,1590 gunner,1,1kinghenryvi,1590 discretions,1,1kinghenryvi,1590 dissembling,1,1kinghenryvi,1590 royally,1,1kinghenryvi,1590 welcomest,1,1kinghenryvi,1590 testify,1,1kinghenryvi,1590 effused,1,1kinghenryvi,1590 swift,1,1kinghenryvi,1590 buy,1,1kinghenryvi,1590 sueth,1,1kinghenryvi,1590 insinuating,1,1kinghenryvi,1590 submission,1,1kinghenryvi,1590 travel,1,1kinghenryvi,1590 gather'd,1,1kinghenryvi,1590 weening,1,1kinghenryvi,1590 resident,1,1kinghenryvi,1590 child's,1,1kinghenryvi,1590 bees,1,1kinghenryvi,1590 hurry,1,1kinghenryvi,1590 Enough,1,1kinghenryvi,1590 Tends,1,1kinghenryvi,1590 Traitors,1,1kinghenryvi,1590 divine,1,1kinghenryvi,1590 ambassadors,1,1kinghenryvi,1590 paint,1,1kinghenryvi,1590 ensue,1,1kinghenryvi,1590 discomfiture,1,1kinghenryvi,1590 gate,1,1kinghenryvi,1590 objected,1,1kinghenryvi,1590 sing,1,1kinghenryvi,1590 audacity,1,1kinghenryvi,1590 vantage,1,1kinghenryvi,1590 calling,1,1kinghenryvi,1590 ashamed,1,1kinghenryvi,1590 footing,1,1kinghenryvi,1590 ring'd,1,1kinghenryvi,1590 park'd,1,1kinghenryvi,1590 Chief,1,1kinghenryvi,1590 Both,1,1kinghenryvi,1590 anointed,1,1kinghenryvi,1590 pillage,1,1kinghenryvi,1590 Bethink,1,1kinghenryvi,1590 Naught,1,1kinghenryvi,1590 Name,1,1kinghenryvi,1590 Endeavor'd,1,1kinghenryvi,1590 solemn,1,1kinghenryvi,1590 Alcides,1,1kinghenryvi,1590 continued,1,1kinghenryvi,1590 impatience,1,1kinghenryvi,1590 government,1,1kinghenryvi,1590 affection,1,1kinghenryvi,1590 wiped,1,1kinghenryvi,1590 forgive,1,1kinghenryvi,1590 Cannot,1,1kinghenryvi,1590 betray,1,1kinghenryvi,1590 confess,1,1kinghenryvi,1590 Fortune,1,1kinghenryvi,1590 clear'd,1,1kinghenryvi,1590 magic,1,1kinghenryvi,1590 aim,1,1kinghenryvi,1590 Durst,1,1kinghenryvi,1590 promises,1,1kinghenryvi,1590 torments,1,1kinghenryvi,1590 Purpose,1,1kinghenryvi,1590 stops,1,1kinghenryvi,1590 forbids,1,1kinghenryvi,1590 battery,1,1kinghenryvi,1590 lineal,1,1kinghenryvi,1590 Part,1,1kinghenryvi,1590 Destroy'd,1,1kinghenryvi,1590 carping,1,1kinghenryvi,1590 prevented,1,1kinghenryvi,1590 clustering,1,1kinghenryvi,1590 Cropp'd,1,1kinghenryvi,1590 Damascus,1,1kinghenryvi,1590 Angiers,1,1kinghenryvi,1590 yes,1,1kinghenryvi,1590 recovered,1,1kinghenryvi,1590 Crete,1,1kinghenryvi,1590 laments,1,1kinghenryvi,1590 beam,1,1kinghenryvi,1590 tongues,1,1kinghenryvi,1590 legs,1,1kinghenryvi,1590 gathered,1,1kinghenryvi,1590 Unless,1,1kinghenryvi,1590 o'ercame,1,1kinghenryvi,1590 driving,1,1kinghenryvi,1590 plays,1,1kinghenryvi,1590 tragedy,1,1kinghenryvi,1590 Glory,1,1kinghenryvi,1590 deal,1,1kinghenryvi,1590 dignity,1,1kinghenryvi,1590 walled,1,1kinghenryvi,1590 commanders,1,1kinghenryvi,1590 whelps,1,1kinghenryvi,1590 immanity,1,1kinghenryvi,1590 seeing,1,1kinghenryvi,1590 pluck'd,1,1kinghenryvi,1590 slaughters,1,1kinghenryvi,1590 emulations,1,1kinghenryvi,1590 co,1,1kinghenryvi,1590 Besides,1,1kinghenryvi,1590 continual,1,1kinghenryvi,1590 Return,1,1kinghenryvi,1590 thrive,1,1kinghenryvi,1590 enforce,1,1kinghenryvi,1590 victors,1,1kinghenryvi,1590 gall,1,1kinghenryvi,1590 preciseness,1,1kinghenryvi,1590 Late,1,1kinghenryvi,1590 waist,1,1kinghenryvi,1590 touch'd,1,1kinghenryvi,1590 defence,1,1kinghenryvi,1590 disable,1,1kinghenryvi,1590 usurer,1,1kinghenryvi,1590 buried,1,1kinghenryvi,1590 Mortimers,1,1kinghenryvi,1590 members,1,1kinghenryvi,1590 quaint,1,1kinghenryvi,1590 Pendragon,1,1kinghenryvi,1590 houses,1,1kinghenryvi,1590 speed,1,1kinghenryvi,1590 possess'd,1,1kinghenryvi,1590 smear'd,1,1kinghenryvi,1590 Begun,1,1kinghenryvi,1590 hear'st,1,1kinghenryvi,1590 quartering,1,1kinghenryvi,1590 supreme,1,1kinghenryvi,1590 piercing,1,1kinghenryvi,1590 fixed,1,1kinghenryvi,1590 doom,1,1kinghenryvi,1590 sugar'd,1,1kinghenryvi,1590 prosper,1,1kinghenryvi,1590 Cromwell,1,1kinghenryvi,1590 Earls,1,1kinghenryvi,1590 Langley,1,1kinghenryvi,1590 pursuit,1,1kinghenryvi,1590 spreading,1,1kinghenryvi,1590 month,1,1kinghenryvi,1590 Bastard's,1,1kinghenryvi,1590 delay,1,1kinghenryvi,1590 small,1,1kinghenryvi,1590 Insulting,1,1kinghenryvi,1590 lo,1,1kinghenryvi,1590 expert,1,1kinghenryvi,1590 plant,1,1kinghenryvi,1590 engraved,1,1kinghenryvi,1590 unspotted,1,1kinghenryvi,1590 potentates,1,1kinghenryvi,1590 necessity,1,1kinghenryvi,1590 boasting,1,1kinghenryvi,1590 aside,1,1kinghenryvi,1590 quarters,1,1kinghenryvi,1590 sceptres,1,1kinghenryvi,1590 o',1,1kinghenryvi,1590 misbegotten,1,1kinghenryvi,1590 legate,1,1kinghenryvi,1590 malignant,1,1kinghenryvi,1590 reguerdon'd,1,1kinghenryvi,1590 account,1,1kinghenryvi,1590 sometime,1,1kinghenryvi,1590 deface,1,1kinghenryvi,1590 Reads,1,1kinghenryvi,1590 reveal,1,1kinghenryvi,1590 witting,1,1kinghenryvi,1590 Ready,1,1kinghenryvi,1590 temper,1,1kinghenryvi,1590 morn,1,1kinghenryvi,1590 value,1,1kinghenryvi,1590 crimes,1,1kinghenryvi,1590 enmity,1,1kinghenryvi,1590 venturous,1,1kinghenryvi,1590 Begin,1,1kinghenryvi,1590 Dizzy,1,1kinghenryvi,1590 Countess,1,1kinghenryvi,1590 Civil,1,1kinghenryvi,1590 hadst,1,1kinghenryvi,1590 Success,1,1kinghenryvi,1590 Renowned,1,1kinghenryvi,1590 begg'd,1,1kinghenryvi,1590 ink,1,1kinghenryvi,1590 pithless,1,1kinghenryvi,1590 offer'd,1,1kinghenryvi,1590 hostility,1,1kinghenryvi,1590 grooms,1,1kinghenryvi,1590 alteration,1,1kinghenryvi,1590 ado,1,1kinghenryvi,1590 laboured,1,1kinghenryvi,1590 add,1,1kinghenryvi,1590 beholding,1,1kinghenryvi,1590 speak'st,1,1kinghenryvi,1590 Thrust,1,1kinghenryvi,1590 Nemesis,1,1kinghenryvi,1590 bruited,1,1kinghenryvi,1590 partners,1,1kinghenryvi,1590 crazy,1,1kinghenryvi,1590 semblance,1,1kinghenryvi,1590 diamond,1,1kinghenryvi,1590 celebrate,1,1kinghenryvi,1590 afternoon,1,1kinghenryvi,1590 knot,1,1kinghenryvi,1590 twenty,1,1kinghenryvi,1590 blue,1,1kinghenryvi,1590 repugn,1,1kinghenryvi,1590 defy,1,1kinghenryvi,1590 feats,1,1kinghenryvi,1590 beauteous,1,1kinghenryvi,1590 smart,1,1kinghenryvi,1590 boding,1,1kinghenryvi,1590 It's,1,1kinghenryvi,1590 commandment,1,1kinghenryvi,1590 haps,1,1kinghenryvi,1590 premeditated,1,1kinghenryvi,1590 forgot,1,1kinghenryvi,1590 slack,1,1kinghenryvi,1590 scatter'd,1,1kinghenryvi,1590 respite,1,1kinghenryvi,1590 Discourse,1,1kinghenryvi,1590 marr'd,1,1kinghenryvi,1590 men's,1,1kinghenryvi,1590 sun's,1,1kinghenryvi,1590 harm,1,1kinghenryvi,1590 basely,1,1kinghenryvi,1590 Whence,1,1kinghenryvi,1590 reasons,1,1kinghenryvi,1590 eats,1,1kinghenryvi,1590 warm'd,1,1kinghenryvi,1590 governor's,1,1kinghenryvi,1590 running,1,1kinghenryvi,1590 ornaments,1,1kinghenryvi,1590 executed,1,1kinghenryvi,1590 easy,1,1kinghenryvi,1590 descry,1,1kinghenryvi,1590 kills,1,1kinghenryvi,1590 hare,1,1kinghenryvi,1590 accounted,1,1kinghenryvi,1590 shrives,1,1kinghenryvi,1590 puny,1,1kinghenryvi,1590 fight'st,1,1kinghenryvi,1590 Jack,1,1kinghenryvi,1590 outward,1,1kinghenryvi,1590 front,1,1kinghenryvi,1590 incline,1,1kinghenryvi,1590 Most,1,1kinghenryvi,1590 isle,1,1kinghenryvi,1590 Alton,1,1kinghenryvi,1590 Camp,1,1kinghenryvi,1590 Defer,1,1kinghenryvi,1590 EDMUND,1,1kinghenryvi,1590 keen,1,1kinghenryvi,1590 Undaunted,1,1kinghenryvi,1590 lewd,1,1kinghenryvi,1590 Bishop,1,1kinghenryvi,1590 preferreth,1,1kinghenryvi,1590 pull,1,1kinghenryvi,1590 spells,1,1kinghenryvi,1590 round,1,1kinghenryvi,1590 outright,1,1kinghenryvi,1590 earl's,1,1kinghenryvi,1590 kingly,1,1kinghenryvi,1590 unfallible,1,1kinghenryvi,1590 inflaming,1,1kinghenryvi,1590 shallow,1,1kinghenryvi,1590 enrank,1,1kinghenryvi,1590 Gaunt,1,1kinghenryvi,1590 fashion'd,1,1kinghenryvi,1590 finish,1,1kinghenryvi,1590 verses,1,1kinghenryvi,1590 noisome,1,1kinghenryvi,1590 Hercules,1,1kinghenryvi,1590 dispensation,1,1kinghenryvi,1590 perform'd,1,1kinghenryvi,1590 natural,1,1kinghenryvi,1590 signal,1,1kinghenryvi,1590 re,1,1kinghenryvi,1590 appears,1,1kinghenryvi,1590 Pluck,1,1kinghenryvi,1590 consume,1,1kinghenryvi,1590 swiftest,1,1kinghenryvi,1590 draws,1,1kinghenryvi,1590 thinkest,1,1kinghenryvi,1590 overpeer,1,1kinghenryvi,1590 mitigate,1,1kinghenryvi,1590 porridge,1,1kinghenryvi,1590 Enjoy,1,1kinghenryvi,1590 severity,1,1kinghenryvi,1590 forty,1,1kinghenryvi,1590 joyful,1,1kinghenryvi,1590 school,1,1kinghenryvi,1590 State,1,1kinghenryvi,1590 peacock,1,1kinghenryvi,1590 Cain,1,1kinghenryvi,1590 excuse,1,1kinghenryvi,1590 sucking,1,1kinghenryvi,1590 Blois,1,1kinghenryvi,1590 unlawful,1,1kinghenryvi,1590 enticing,1,1kinghenryvi,1590 commendable,1,1kinghenryvi,1590 vieweth,1,1kinghenryvi,1590 crestless,1,1kinghenryvi,1590 She's,1,1kinghenryvi,1590 interchanging,1,1kinghenryvi,1590 grudging,1,1kinghenryvi,1590 vengeance,1,1kinghenryvi,1590 Qui,1,1kinghenryvi,1590 knocks,1,1kinghenryvi,1590 plighted,1,1kinghenryvi,1590 Quo,1,1kinghenryvi,1590 kingdoms,1,1kinghenryvi,1590 present,1,1kinghenryvi,1590 extinguish,1,1kinghenryvi,1590 impatient,1,1kinghenryvi,1590 Prettily,1,1kinghenryvi,1590 August,1,1kinghenryvi,1590 homicides,1,1kinghenryvi,1590 ask,1,1kinghenryvi,1590 Tendering,1,1kinghenryvi,1590 pair,1,1kinghenryvi,1590 ship,1,1kinghenryvi,1590 courts,1,1kinghenryvi,1590 removing,1,1kinghenryvi,1590 outrage,1,1kinghenryvi,1590 persuasions,1,1kinghenryvi,1590 litter,1,1kinghenryvi,1590 Ascend,1,1kinghenryvi,1590 spear,1,1kinghenryvi,1590 walked,1,1kinghenryvi,1590 mayor,1,1kinghenryvi,1590 chastise,1,1kinghenryvi,1590 pyramis,1,1kinghenryvi,1590 frown,1,1kinghenryvi,1590 Helen,1,1kinghenryvi,1590 point,1,1kinghenryvi,1590 deceitful,1,1kinghenryvi,1590 howsoe'er,1,1kinghenryvi,1590 entertain'd,1,1kinghenryvi,1590 twain,1,1kinghenryvi,1590 Doubting,1,1kinghenryvi,1590 Wicked,1,1kinghenryvi,1590 hate,1,1kinghenryvi,1590 forlorn,1,1kinghenryvi,1590 O'ertake,1,1kinghenryvi,1590 show,1,1kinghenryvi,1590 fear'd,1,1kinghenryvi,1590 alive,1,1kinghenryvi,1590 'Young,1,1kinghenryvi,1590 dismal,1,1kinghenryvi,1590 yielded,1,1kinghenryvi,1590 proper,1,1kinghenryvi,1590 gentry,1,1kinghenryvi,1590 rough,1,1kinghenryvi,1590 moan,1,1kinghenryvi,1590 Fell,1,1kinghenryvi,1590 food,1,1kinghenryvi,1590 contain,1,1kinghenryvi,1590 conversing,1,1kinghenryvi,1590 prepared,1,1kinghenryvi,1590 disdaining,1,1kinghenryvi,1590 fond,1,1kinghenryvi,1590 accidents,1,1kinghenryvi,1590 fresh,1,1kinghenryvi,1590 rear'd,1,1kinghenryvi,1590 pikes,1,1kinghenryvi,1590 hapless,1,1kinghenryvi,1590 lowted,1,1kinghenryvi,1590 Fitter,1,1kinghenryvi,1590 lock,1,1kinghenryvi,1590 Yields,1,1kinghenryvi,1590 Compassion,1,1kinghenryvi,1590 Blood,1,1kinghenryvi,1590 superficial,1,1kinghenryvi,1590 White,1,1kinghenryvi,1590 term,1,1kinghenryvi,1590 tresses,1,1kinghenryvi,1590 Care,1,1kinghenryvi,1590 Hast,1,1kinghenryvi,1590 turret's,1,1kinghenryvi,1590 Arm,1,1kinghenryvi,1590 Kind,1,1kinghenryvi,1590 knock,1,1kinghenryvi,1590 coveting,1,1kinghenryvi,1590 Strikes,1,1kinghenryvi,1590 Detract,1,1kinghenryvi,1590 Wretched,1,1kinghenryvi,1590 prate,1,1kinghenryvi,1590 Accursed,1,1kinghenryvi,1590 comic,1,1kinghenryvi,1590 deadly,1,1kinghenryvi,1590 few,1,1kinghenryvi,1590 Again,1,1kinghenryvi,1590 partaker,1,1kinghenryvi,1590 array,1,1kinghenryvi,1590 sweetly,1,1kinghenryvi,1590 deem'd,1,1kinghenryvi,1590 broil,1,1kinghenryvi,1590 trial,1,1kinghenryvi,1590 Quid,1,1kinghenryvi,1590 Stoop,1,1kinghenryvi,1590 Ask,1,1kinghenryvi,1590 excel,1,1kinghenryvi,1590 superscription,1,1kinghenryvi,1590 tasted,1,1kinghenryvi,1590 Art,1,1kinghenryvi,1590 feign,1,1kinghenryvi,1590 servility,1,1kinghenryvi,1590 untrain'd,1,1kinghenryvi,1590 root,1,1kinghenryvi,1590 Europe,1,1kinghenryvi,1590 expenses,1,1kinghenryvi,1590 compact,1,1kinghenryvi,1590 height,1,1kinghenryvi,1590 requited,1,1kinghenryvi,1590 execute,1,1kinghenryvi,1590 fat,1,1kinghenryvi,1590 rays,1,1kinghenryvi,1590 roof,1,1kinghenryvi,1590 lean,1,1kinghenryvi,1590 procession,1,1kinghenryvi,1590 disanimates,1,1kinghenryvi,1590 giglot,1,1kinghenryvi,1590 leap,1,1kinghenryvi,1590 applauded,1,1kinghenryvi,1590 occasion,1,1kinghenryvi,1590 tried,1,1kinghenryvi,1590 partakers,1,1kinghenryvi,1590 perceived,1,1kinghenryvi,1590 lavish,1,1kinghenryvi,1590 Collected,1,1kinghenryvi,1590 glorify,1,1kinghenryvi,1590 trained,1,1kinghenryvi,1590 glories,1,1kinghenryvi,1590 breeds,1,1kinghenryvi,1590 enow,1,1kinghenryvi,1590 Wounds,1,1kinghenryvi,1590 diffidence,1,1kinghenryvi,1590 Virtue,1,1kinghenryvi,1590 surgeon,1,1kinghenryvi,1590 moved,1,1kinghenryvi,1590 suck'dst,1,1kinghenryvi,1590 consider'd,1,1kinghenryvi,1590 rigor,1,1kinghenryvi,1590 nay,1,1kinghenryvi,1590 Olivers,1,1kinghenryvi,1590 carried,1,1kinghenryvi,1590 erects,1,1kinghenryvi,1590 Touraine,1,1kinghenryvi,1590 Twinkling,1,1kinghenryvi,1590 significants,1,1kinghenryvi,1590 tokens,1,1kinghenryvi,1590 redoubted,1,1kinghenryvi,1590 laugh'st,1,1kinghenryvi,1590 shouldst,1,1kinghenryvi,1590 apprehension,1,1kinghenryvi,1590 guiltless,1,1kinghenryvi,1590 rascals,1,1kinghenryvi,1590 enchantress,1,1kinghenryvi,1590 Westminster,1,1kinghenryvi,1590 objections,1,1kinghenryvi,1590 pebble,1,1kinghenryvi,1590 intrench'd,1,1kinghenryvi,1590 fugitive,1,1kinghenryvi,1590 assuredly,1,1kinghenryvi,1590 distance,1,1kinghenryvi,1590 triumphant,1,1kinghenryvi,1590 note,1,1kinghenryvi,1590 whelp,1,1kinghenryvi,1590 water,1,1kinghenryvi,1590 disgraceful,1,1kinghenryvi,1590 smallest,1,1kinghenryvi,1590 nourish,1,1kinghenryvi,1590 unknown,1,1kinghenryvi,1590 fourth,1,1kinghenryvi,1590 sending,1,1kinghenryvi,1590 overpass'd,1,1kinghenryvi,1590 reflex,1,1kinghenryvi,1590 envy,1,1kinghenryvi,1590 Venus,1,1kinghenryvi,1590 apparell'd,1,1kinghenryvi,1590 trenches,1,1kinghenryvi,1590 infamous,1,1kinghenryvi,1590 proceed,1,1kinghenryvi,1590 obscure,1,1kinghenryvi,1590 scroll,1,1kinghenryvi,1590 accusations,1,1kinghenryvi,1590 pates,1,1kinghenryvi,1590 Hang,1,1kinghenryvi,1590 locks,1,1kinghenryvi,1590 gently,1,1kinghenryvi,1590 giveth,1,1kinghenryvi,1590 scale,1,1kinghenryvi,1590 givest,1,1kinghenryvi,1590 fretting,1,1kinghenryvi,1590 guided,1,1kinghenryvi,1590 rate,1,1kinghenryvi,1590 deserving,1,1kinghenryvi,1590 overcomes,1,1kinghenryvi,1590 below,1,1kinghenryvi,1590 ireful,1,1kinghenryvi,1590 accomplices,1,1kinghenryvi,1590 'Thou,1,1kinghenryvi,1590 vapours,1,1kinghenryvi,1590 Coupled,1,1kinghenryvi,1590 disgraced,1,1kinghenryvi,1590 rout,1,1kinghenryvi,1590 infancy,1,1kinghenryvi,1590 captivity,1,1kinghenryvi,1590 queens,1,1kinghenryvi,1590 affrights,1,1kinghenryvi,1590 estate,1,1kinghenryvi,1590 faint,1,1kinghenryvi,1590 rulers,1,1kinghenryvi,1590 Walloon,1,1kinghenryvi,1590 effusion,1,1kinghenryvi,1590 pleaseth,1,1kinghenryvi,1590 hide,1,1kinghenryvi,1590 est,1,1kinghenryvi,1590 hawks,1,1kinghenryvi,1590 feature,1,1kinghenryvi,1590 glory's,1,1kinghenryvi,1590 descended,1,1kinghenryvi,1590 TALBOT's,1,1kinghenryvi,1590 nonce,1,1kinghenryvi,1590 sirrah,1,1kinghenryvi,1590 Weak,1,1kinghenryvi,1590 specify,1,1kinghenryvi,1590 Love,1,1kinghenryvi,1590 Presently,1,1kinghenryvi,1590 Coeur,1,1kinghenryvi,1590 wandering,1,1kinghenryvi,1590 chase,1,1kinghenryvi,1590 enthrall'd,1,1kinghenryvi,1590 courtezan,1,1kinghenryvi,1590 hives,1,1kinghenryvi,1590 adventure,1,1kinghenryvi,1590 written,1,1kinghenryvi,1590 meditating,1,1kinghenryvi,1590 foresee,1,1kinghenryvi,1590 borne,1,1kinghenryvi,1590 perused,1,1kinghenryvi,1590 hemmed,1,1kinghenryvi,1590 Deck'd,1,1kinghenryvi,1590 Embrace,1,1kinghenryvi,1590 thirsty,1,1kinghenryvi,1590 Curse,1,1kinghenryvi,1590 desiring,1,1kinghenryvi,1590 Santrailles,1,1kinghenryvi,1590 THE,1,1kinghenryvi,1590 escaped,1,1kinghenryvi,1590 parting,1,1kinghenryvi,1590 beeves,1,1kinghenryvi,1590 ignorant,1,1kinghenryvi,1590 springs,1,1kinghenryvi,1590 Set,1,1kinghenryvi,1590 stubbornly,1,1kinghenryvi,1590 misery,1,1kinghenryvi,1590 presented,1,1kinghenryvi,1590 intercession,1,1kinghenryvi,1590 Darest,1,1kinghenryvi,1590 Sheffield,1,1kinghenryvi,1590 Assign'd,1,1kinghenryvi,1590 steeled,1,1kinghenryvi,1590 unheedful,1,1kinghenryvi,1590 quarter,1,1kinghenryvi,1590 uproar,1,1kinghenryvi,1590 leaving,1,1kinghenryvi,1590 vanquish'd,1,1kinghenryvi,1590 Stand'st,1,1kinghenryvi,1590 gimmors,1,1kinghenryvi,1590 Dost,1,1kinghenryvi,1590 tutor,1,1kinghenryvi,1590 sullied,1,1kinghenryvi,1590 Will'd,1,1kinghenryvi,1590 Suffolk's,1,1kinghenryvi,1590 Lost,1,1kinghenryvi,1590 Convey,1,1kinghenryvi,1590 inform'd,1,1kinghenryvi,1590 tempestuous,1,1kinghenryvi,1590 spurn,1,1kinghenryvi,1590 device,1,1kinghenryvi,1590 pretend,1,1kinghenryvi,1590 appall'd,1,1kinghenryvi,1590 doors,1,1kinghenryvi,1590 expired,1,1kinghenryvi,1590 girdled,1,1kinghenryvi,1590 leaves,1,1kinghenryvi,1590 Free,1,1kinghenryvi,1590 sacrifice,1,1kinghenryvi,1590 milk,1,1kinghenryvi,1590 Drums,1,1kinghenryvi,1590 'If,1,1kinghenryvi,1590 wiser,1,1kinghenryvi,1590 magnifiest,1,1kinghenryvi,1590 random,1,1kinghenryvi,1590 plaguing,1,1kinghenryvi,1590 Solicit,1,1kinghenryvi,1590 start,1,1kinghenryvi,1590 qualities,1,1kinghenryvi,1590 satisfaction,1,1kinghenryvi,1590 prize,1,1kinghenryvi,1590 flinty,1,1kinghenryvi,1590 plead,1,1kinghenryvi,1590 joineth,1,1kinghenryvi,1590 paleness,1,1kinghenryvi,1590 dared,1,1kinghenryvi,1590 escape,1,1kinghenryvi,1590 foolish,1,1kinghenryvi,1590 towers,1,1kinghenryvi,1590 Grant,1,1kinghenryvi,1590 Transported,1,1kinghenryvi,1590 smother,1,1kinghenryvi,1590 jars,1,1kinghenryvi,1590 nurser,1,1kinghenryvi,1590 confidence,1,1kinghenryvi,1590 Cease,1,1kinghenryvi,1590 potter's,1,1kinghenryvi,1590 keeper,1,1kinghenryvi,1590 Gallia,1,1kinghenryvi,1590 process,1,1kinghenryvi,1590 dowry,1,1kinghenryvi,1590 chain,1,1kinghenryvi,1590 shortening,1,1kinghenryvi,1590 shame's,1,1kinghenryvi,1590 straightway,1,1kinghenryvi,1590 slaughtermen,1,1kinghenryvi,1590 reverently,1,1kinghenryvi,1590 leopard,1,1kinghenryvi,1590 obscured,1,1kinghenryvi,1590 belong,1,1kinghenryvi,1590 'gainst,1,1kinghenryvi,1590 obstacle,1,1kinghenryvi,1590 Could,1,1kinghenryvi,1590 parties,1,1kinghenryvi,1590 ladders,1,1kinghenryvi,1590 dearest,1,1kinghenryvi,1590 accustom'd,1,1kinghenryvi,1590 Approacheth,1,1kinghenryvi,1590 munition,1,1kinghenryvi,1590 ALL,1,1kinghenryvi,1590 attorneyship,1,1kinghenryvi,1590 yoketh,1,1kinghenryvi,1590 persuaded,1,1kinghenryvi,1590 injuries,1,1kinghenryvi,1590 comet,1,1kinghenryvi,1590 Son,1,1kinghenryvi,1590 decide,1,1kinghenryvi,1590 blot,1,1kinghenryvi,1590 woe,1,1kinghenryvi,1590 Salisbury's,1,1kinghenryvi,1590 devils,1,1kinghenryvi,1590 furnish'd,1,1kinghenryvi,1590 vein,1,1kinghenryvi,1590 gleeks,1,1kinghenryvi,1590 Thee,1,1kinghenryvi,1590 fruition,1,1kinghenryvi,1590 Roam,1,1kinghenryvi,1590 Trojan,1,1kinghenryvi,1590 witches,1,1kinghenryvi,1590 shrinking,1,1kinghenryvi,1590 leaden,1,1kinghenryvi,1590 infants,1,1kinghenryvi,1590 blow,1,1kinghenryvi,1590 starved,1,1kinghenryvi,1590 mournful,1,1kinghenryvi,1590 tides,1,1kinghenryvi,1590 beside,1,1kinghenryvi,1590 enlarge,1,1kinghenryvi,1590 Adorn,1,1kinghenryvi,1590 craven,1,1kinghenryvi,1590 downy,1,1kinghenryvi,1590 mountain,1,1kinghenryvi,1590 fret,1,1kinghenryvi,1590 Impatiently,1,1kinghenryvi,1590 higher,1,1kinghenryvi,1590 hypocrite,1,1kinghenryvi,1590 'St,1,1kinghenryvi,1590 trifle,1,1kinghenryvi,1590 Forces,1,1kinghenryvi,1590 stags,1,1kinghenryvi,1590 Samsons,1,1kinghenryvi,1590 rive,1,1kinghenryvi,1590 apart,1,1kinghenryvi,1590 marvel,1,1kinghenryvi,1590 dainty,1,1kinghenryvi,1590 privileged,1,1kinghenryvi,1590 adamant,1,1kinghenryvi,1590 stratagems,1,1kinghenryvi,1590 oil,1,1kinghenryvi,1590 disguised,1,1kinghenryvi,1590 division,1,1kinghenryvi,1590 Perhaps,1,1kinghenryvi,1590 fills,1,1kinghenryvi,1590 Succeeding,1,1kinghenryvi,1590 Brandish,1,1kinghenryvi,1590 Giving,1,1kinghenryvi,1590 admonishments,1,1kinghenryvi,1590 maintain'd,1,1kinghenryvi,1590 wrath,1,1kinghenryvi,1590 warranteth,1,1kinghenryvi,1590 hermit,1,1kinghenryvi,1590 forego,1,1kinghenryvi,1590 Disgracing,1,1kinghenryvi,1590 exigent,1,1kinghenryvi,1590 Feeds,1,1kinghenryvi,1590 ratsbane,1,1kinghenryvi,1590 railing,1,1kinghenryvi,1590 headlong,1,1kinghenryvi,1590 Howe'er,1,1kinghenryvi,1590 Pronouncing,1,1kinghenryvi,1590 taste,1,1kinghenryvi,1590 stained,1,1kinghenryvi,1590 slight,1,1kinghenryvi,1590 Mortimer's,1,1kinghenryvi,1590 affairs,1,1kinghenryvi,1590 proved,1,1kinghenryvi,1590 stink,1,1kinghenryvi,1590 wi',1,1kinghenryvi,1590 Gallia's,1,1kinghenryvi,1590 odd,1,1kinghenryvi,1590 lither,1,1kinghenryvi,1590 Upbraided,1,1kinghenryvi,1590 salt,1,1kinghenryvi,1590 neck,1,1kinghenryvi,1590 Otherwise,1,1kinghenryvi,1590 pomp,1,1kinghenryvi,1590 'midst,1,1kinghenryvi,1590 knock'd,1,1kinghenryvi,1590 discipline,1,1kinghenryvi,1590 fitteth,1,1kinghenryvi,1590 desolate,1,1kinghenryvi,1590 Dishonour,1,1kinghenryvi,1590 beckons,1,1kinghenryvi,1590 Confounded,1,1kinghenryvi,1590 diadem,1,1kinghenryvi,1590 arrival,1,1kinghenryvi,1590 provoke,1,1kinghenryvi,1590 sorrow,1,1kinghenryvi,1590 bands,1,1kinghenryvi,1590 misconceived,1,1kinghenryvi,1590 cure,1,1kinghenryvi,1590 cross'd,1,1kinghenryvi,1590 bread,1,1kinghenryvi,1590 curs,1,1kinghenryvi,1590 tumultuous,1,1kinghenryvi,1590 import,1,1kinghenryvi,1590 Sad,1,1kinghenryvi,1590 faggots,1,1kinghenryvi,1590 commonweal,1,1kinghenryvi,1590 Blush,1,1kinghenryvi,1590 happiness,1,1kinghenryvi,1590 provinces,1,1kinghenryvi,1590 usurping,1,1kinghenryvi,1590 smock,1,1kinghenryvi,1590 upright,1,1kinghenryvi,1590 traffic,1,1kinghenryvi,1590 bounded,1,1kinghenryvi,1590 Roused,1,1kinghenryvi,1590 banish'd,1,1kinghenryvi,1590 Unable,1,1kinghenryvi,1590 humanity,1,1kinghenryvi,1590 recover'd,1,1kinghenryvi,1590 waking,1,1kinghenryvi,1590 meaner,1,1kinghenryvi,1590 protect,1,1kinghenryvi,1590 Dead,1,1kinghenryvi,1590 recover,1,1kinghenryvi,1590 witnessing,1,1kinghenryvi,1590 detain'd,1,1kinghenryvi,1590 magistrates,1,1kinghenryvi,1590 dunghill,1,1kinghenryvi,1590 cuts,1,1kinghenryvi,1590 Mahomet,1,1kinghenryvi,1590 sustain'd,1,1kinghenryvi,1590 Blackmere,1,1kinghenryvi,1590 chokes,1,1kinghenryvi,1590 choked,1,1kinghenryvi,1590 Priest,1,1kinghenryvi,1590 guileful,1,1kinghenryvi,1590 count,1,1kinghenryvi,1590 distress'd,1,1kinghenryvi,1590 fulfill'd,1,1kinghenryvi,1590 subtle,1,1kinghenryvi,1590 shamefully,1,1kinghenryvi,1590 mice,1,1kinghenryvi,1590 Funeral,1,1kinghenryvi,1590 continuance,1,1kinghenryvi,1590 certainly,1,1kinghenryvi,1590 torture,1,1kinghenryvi,1590 contrarieties,1,1kinghenryvi,1590 fling,1,1kinghenryvi,1590 Verdun,1,1kinghenryvi,1590 revolve,1,1kinghenryvi,1590 issued,1,1kinghenryvi,1590 glassy,1,1kinghenryvi,1590 Rowlands,1,1kinghenryvi,1590 invincible,1,1kinghenryvi,1590 chastisement,1,1kinghenryvi,1590 heavy,1,1kinghenryvi,1590 comparison,1,1kinghenryvi,1590 pamphlets,1,1kinghenryvi,1590 bringeth,1,1kinghenryvi,1590 dust,1,1kinghenryvi,1590 called,1,1kinghenryvi,1590 stiff,1,1kinghenryvi,1590 Think,1,1kinghenryvi,1590 interr'd,1,1kinghenryvi,1590 'The,1,1kinghenryvi,1590 earnest,1,1kinghenryvi,1590 spacious,1,1kinghenryvi,1590 Can,1,1kinghenryvi,1590 purposing,1,1kinghenryvi,1590 Worthy,1,1kinghenryvi,1590 mounting,1,1kinghenryvi,1590 swart,1,1kinghenryvi,1590 trusty,1,1kinghenryvi,1590 'To,1,1kinghenryvi,1590 nuptial,1,1kinghenryvi,1590 perforce,1,1kinghenryvi,1590 Memphis',1,1kinghenryvi,1590 standard,1,1kinghenryvi,1590 Agreed,1,1kinghenryvi,1590 growing,1,1kinghenryvi,1590 oath,1,1kinghenryvi,1590 bleed,1,1kinghenryvi,1590 enraged,1,1kinghenryvi,1590 handle,1,1kinghenryvi,1590 Corrupted,1,1kinghenryvi,1590 kinsmen,1,1kinghenryvi,1590 danger,1,1kinghenryvi,1590 forward,1,1kinghenryvi,1590 Confounds,1,1kinghenryvi,1590 mules,1,1kinghenryvi,1590 bullets,1,1kinghenryvi,1590 stouter,1,1kinghenryvi,1590 serve,1,1kinghenryvi,1590 covetous,1,1kinghenryvi,1590 sifted,1,1kinghenryvi,1590 supper,1,1kinghenryvi,1590 bearded,1,1kinghenryvi,1590 lookest,1,1kinghenryvi,1590 coming,1,1kinghenryvi,1590 owl,1,1kinghenryvi,1590 complain,1,1kinghenryvi,1590 emulation,1,1kinghenryvi,1590 forfend,1,1kinghenryvi,1590 Fourth,1,1kinghenryvi,1590 professors,1,1kinghenryvi,1590 multitude,1,1kinghenryvi,1590 wheel,1,1kinghenryvi,1590 flowering,1,1kinghenryvi,1590 witted,1,1kinghenryvi,1590 bells,1,1kinghenryvi,1590 survive,1,1kinghenryvi,1590 notice,1,1kinghenryvi,1590 drowned,1,1kinghenryvi,1590 Shame,1,1kinghenryvi,1590 hail,1,1kinghenryvi,1590 throats,1,1kinghenryvi,1590 Sixth,1,1kinghenryvi,1590 produced,1,1kinghenryvi,1590 vulgar,1,1kinghenryvi,1590 fact,1,1kinghenryvi,1590 agree,1,1kinghenryvi,1590 bachelorship,1,1kinghenryvi,1590 Furnival,1,1kinghenryvi,1590 Greece,1,1kinghenryvi,1590 o'erthrown,1,1kinghenryvi,1590 hack,1,1kinghenryvi,1590 faced,1,1kinghenryvi,1590 honoured,1,1kinghenryvi,1590 conference,1,1kinghenryvi,1590 excursion,1,1kinghenryvi,1590 pining,1,1kinghenryvi,1590 Malicious,1,1kinghenryvi,1590 reports,1,1kinghenryvi,1590 'Stones,1,1kinghenryvi,1590 inform,1,1kinghenryvi,1590 canvass,1,1kinghenryvi,1590 Pretend,1,1kinghenryvi,1590 anger,1,1kinghenryvi,1590 vicious,1,1kinghenryvi,1590 spleen,1,1kinghenryvi,1590 surgeon's,1,1kinghenryvi,1590 lute,1,1kinghenryvi,1590 owe,1,1kinghenryvi,1590 dumb,1,1kinghenryvi,1590 Quicken'd,1,1kinghenryvi,1590 earldom,1,1kinghenryvi,1590 pitchy,1,1kinghenryvi,1590 unite,1,1kinghenryvi,1590 Red,1,1kinghenryvi,1590 dull,1,1kinghenryvi,1590 clocks,1,1kinghenryvi,1590 Michael,1,1kinghenryvi,1590 fro,1,1kinghenryvi,1590 sedition,1,1kinghenryvi,1590 yoke,1,1kinghenryvi,1590 determined,1,1kinghenryvi,1590 lurk,1,1kinghenryvi,1590 harvest,1,1kinghenryvi,1590 Deposed,1,1kinghenryvi,1590 plumes,1,1kinghenryvi,1590 decipher'd,1,1kinghenryvi,1590 unfortunate,1,1kinghenryvi,1590 whence,1,1kinghenryvi,1590 fill'd,1,1kinghenryvi,1590 Even,1,1kinghenryvi,1590 Whispers,1,1kinghenryvi,1590 craveth,1,1kinghenryvi,1590 mightier,1,1kinghenryvi,1590 Strike,1,1kinghenryvi,1590 contempt,1,1kinghenryvi,1590 preach,1,1kinghenryvi,1590 minister,1,1kinghenryvi,1590 fain,1,1kinghenryvi,1590 create,1,1kinghenryvi,1590 hunger,1,1kinghenryvi,1590 boiling,1,1kinghenryvi,1590 dispersed,1,1kinghenryvi,1590 dispatch'd,1,1kinghenryvi,1590 lustful,1,1kinghenryvi,1590 cried,1,1kinghenryvi,1590 Employ,1,1kinghenryvi,1590 Make,1,1kinghenryvi,1590 Wingfield,1,1kinghenryvi,1590 Dismay,1,1kinghenryvi,1590 perfections,1,1kinghenryvi,1590 wanted,1,1kinghenryvi,1590 yond,1,1kinghenryvi,1590 cloth,1,1kinghenryvi,1590 'fore,1,1kinghenryvi,1590 pockets,1,1kinghenryvi,1590 modesty,1,1kinghenryvi,1590 desert,1,1kinghenryvi,1590 crystal,1,1kinghenryvi,1590 utterly,1,1kinghenryvi,1590 Ordained,1,1kinghenryvi,1590 cares,1,1kinghenryvi,1590 prattle,1,1kinghenryvi,1590 Cyrus',1,1kinghenryvi,1590 plumed,1,1kinghenryvi,1590 wilful,1,1kinghenryvi,1590 wander,1,1kinghenryvi,1590 lump,1,1kinghenryvi,1590 quell,1,1kinghenryvi,1590 dragon's,1,1kinghenryvi,1590 answers,1,1kinghenryvi,1590 safest,1,1kinghenryvi,1590 Devil,1,1kinghenryvi,1590 Spur,1,1kinghenryvi,1590 rack,1,1kinghenryvi,1590 kinsman,1,1kinghenryvi,1590 turret,1,1kinghenryvi,1590 Flight,1,1kinghenryvi,1590 vaward,1,1kinghenryvi,1590 pleased,1,1kinghenryvi,1590 France's,1,1kinghenryvi,1590 worm,1,1kinghenryvi,1590 wickedness,1,1kinghenryvi,1590 righteous,1,1kinghenryvi,1590 prostrate,1,1kinghenryvi,1590 cuff,1,1kinghenryvi,1590 worthiness,1,1kinghenryvi,1590 fighting,1,1kinghenryvi,1590 passing,1,1kinghenryvi,1590 clay,1,1kinghenryvi,1590 tragical,1,1kinghenryvi,1590 Mars,1,1kinghenryvi,1590 unjust,1,1kinghenryvi,1590 Deny,1,1kinghenryvi,1590 esteem'd,1,1kinghenryvi,1590 flame,1,1kinghenryvi,1590 minute,1,1kinghenryvi,1590 Excellent,1,1kinghenryvi,1590 officer,1,1kinghenryvi,1590 scabbard,1,1kinghenryvi,1590 Enshrines,1,1kinghenryvi,1590 perfect,1,1kinghenryvi,1590 passion,1,1kinghenryvi,1590 fine,1,1kinghenryvi,1590 invocate,1,1kinghenryvi,1590 vow,1,1kinghenryvi,1590 fill,1,1kinghenryvi,1590 pleases,1,1kinghenryvi,1590 Recover'd,1,1kinghenryvi,1590 foemen,1,1kinghenryvi,1590 clad,1,1kinghenryvi,1590 safety,1,1kinghenryvi,1590 continue,1,1kinghenryvi,1590 handmaid,1,1kinghenryvi,1590 decay'd,1,1kinghenryvi,1590 Wallon,1,1kinghenryvi,1590 Burns,1,1kinghenryvi,1590 unawares,1,1kinghenryvi,1590 buckled,1,1kinghenryvi,1590 external,1,1kinghenryvi,1590 folly,1,1kinghenryvi,1590 practisants,1,1kinghenryvi,1590 horn,1,1kinghenryvi,1590 rehearse,1,1kinghenryvi,1590 Imagine,1,1kinghenryvi,1590 joined,1,1kinghenryvi,1590 arm's,1,1kinghenryvi,1590 thereby,1,1kinghenryvi,1590 Near,1,1kinghenryvi,1590 answer'd,1,1kinghenryvi,1590 host,1,1kinghenryvi,1590 immortalized,1,1kinghenryvi,1590 Bewray'd,1,1kinghenryvi,1590 Enacted,1,1kinghenryvi,1590 ceaseth,1,1kinghenryvi,1590 tavern,1,1kinghenryvi,1590 tail,1,1kinghenryvi,1590 worship,1,1kinghenryvi,1590 shows,1,1kinghenryvi,1590 Peasant,1,1kinghenryvi,1590 holiness,1,1kinghenryvi,1590 divers,1,1kinghenryvi,1590 Bonfires,1,1kinghenryvi,1590 immodest,1,1kinghenryvi,1590 herself,1,1kinghenryvi,1590 fawn,1,1kinghenryvi,1590 poison'd,1,1kinghenryvi,1590 Jerusalem,1,1kinghenryvi,1590 vex,1,1kinghenryvi,1590 beware,1,1kinghenryvi,1590 partly,1,1kinghenryvi,1590 Plucking,1,1kinghenryvi,1590 lived,1,1kinghenryvi,1590 member,1,1kinghenryvi,1590 traitorous,1,1kinghenryvi,1590 linstock,1,1kinghenryvi,1590 watch'd,1,1kinghenryvi,1590 chevalier,1,1kinghenryvi,1590 endamage,1,1kinghenryvi,1590 tilt,1,1kinghenryvi,1590 Enclosed,1,1kinghenryvi,1590 Foul,1,1kinghenryvi,1590 meaning,1,1kinghenryvi,1590 Four,1,1kinghenryvi,1590 precinct,1,1kinghenryvi,1590 Coward,1,1kinghenryvi,1590 implored,1,1kinghenryvi,1590 grisly,1,1kinghenryvi,1590 Paysans,1,1kinghenryvi,1590 trumpeter,1,1kinghenryvi,1590 Knocks,1,1kinghenryvi,1590 appointed,1,1kinghenryvi,1590 band,1,1kinghenryvi,1590 slaughterer,1,1kinghenryvi,1590 plainness,1,1kinghenryvi,1590 slaughtered,1,1kinghenryvi,1590 bounds,1,1kinghenryvi,1590 weakness,1,1kinghenryvi,1590 dam,1,1kinghenryvi,1590 lenity,1,1kinghenryvi,1590 will'd,1,1kinghenryvi,1590 quillets,1,1kinghenryvi,1590 prefer,1,1kinghenryvi,1590 daw,1,1kinghenryvi,1590 Each,1,1kinghenryvi,1590 bill,1,1kinghenryvi,1590 emperor,1,1kinghenryvi,1590 farest,1,1kinghenryvi,1590 released,1,1kinghenryvi,1590 shepherd,1,1kinghenryvi,1590 lag,1,1kinghenryvi,1590 Partly,1,1kinghenryvi,1590 lap,1,1kinghenryvi,1590 man's,1,1kinghenryvi,1590 purblind,1,1kinghenryvi,1590 wider,1,1kinghenryvi,1590 folks,1,1kinghenryvi,1590 Leap,1,1kinghenryvi,1590 relieving,1,1kinghenryvi,1590 knighthood,1,1kinghenryvi,1590 bind,1,1kinghenryvi,1590 aloft,1,1kinghenryvi,1590 appearance,1,1kinghenryvi,1590 Appear,1,1kinghenryvi,1590 sunder'd,1,1kinghenryvi,1590 shameless,1,1kinghenryvi,1590 convey,1,1kinghenryvi,1590 shirts,1,1kinghenryvi,1590 shops,1,1kinghenryvi,1590 sixth,1,1kinghenryvi,1590 intolerable,1,1kinghenryvi,1590 warders,1,1kinghenryvi,1590 wild,1,1kinghenryvi,1590 mothers,1,1kinghenryvi,1590 Forsaken,1,1kinghenryvi,1590 Prick,1,1kinghenryvi,1590 Villains,1,1kinghenryvi,1590 eyeballs,1,1kinghenryvi,1590 ought,1,1kinghenryvi,1590 forbearance,1,1kinghenryvi,1590 Speaks,1,1kinghenryvi,1590 pardon,1,1kinghenryvi,1590 accident,1,1kinghenryvi,1590 concludes,1,1kinghenryvi,1590 dungeon,1,1kinghenryvi,1590 preceding,1,1kinghenryvi,1590 achievements,1,1kinghenryvi,1590 victories,1,1kinghenryvi,1590 prizest,1,1kinghenryvi,1590 fertile,1,1kinghenryvi,1590 portion,1,1kinghenryvi,1590 Fond,1,1kinghenryvi,1590 waited,1,1kinghenryvi,1590 exclaim'd,1,1kinghenryvi,1590 famine,1,1kinghenryvi,1590 concluded,1,1kinghenryvi,1590 Lives,1,1kinghenryvi,1590 giddy,1,1kinghenryvi,1590 method,1,1kinghenryvi,1590 cut,1,1kinghenryvi,1590 shouldering,1,1kinghenryvi,1590 Who's,1,1kinghenryvi,1590 succors,1,1kinghenryvi,1590 horse's,1,1kinghenryvi,1590 vocation,1,1kinghenryvi,1590 peerless,1,1kinghenryvi,1590 Mourn,1,1kinghenryvi,1590 presumption,1,1kinghenryvi,1590 loyal,1,1kinghenryvi,1590 victual,1,1kinghenryvi,1590 labyrinth,1,1kinghenryvi,1590 condemn,1,1kinghenryvi,1590 clubs,1,1kinghenryvi,1590 arrive,1,1kinghenryvi,1590 flood,1,1kinghenryvi,1590 streets,1,1kinghenryvi,1590 besiege,1,1kinghenryvi,1590 commonwealth,1,1kinghenryvi,1590 horses,1,1kinghenryvi,1590 Where's,1,1kinghenryvi,1590 writing,1,1kinghenryvi,1590 Awake,1,1kinghenryvi,1590 train'd,1,1kinghenryvi,1590 muttered,1,1kinghenryvi,1590 Wont,1,1kinghenryvi,1590 conjure,1,1kinghenryvi,1590 fitter,1,1kinghenryvi,1590 gives,1,1kinghenryvi,1590 task,1,1kinghenryvi,1590 legions,1,1kinghenryvi,1590 intents,1,1kinghenryvi,1590 convenient,1,1kinghenryvi,1590 surer,1,1kinghenryvi,1590 Anon,1,1kinghenryvi,1590 abject,1,1kinghenryvi,1590 ignobly,1,1kinghenryvi,1590 evident,1,1kinghenryvi,1590 tempters,1,1kinghenryvi,1590 interest,1,1kinghenryvi,1590 lovely,1,1kinghenryvi,1590 combatants,1,1kinghenryvi,1590 commission,1,1kinghenryvi,1590 hearty,1,1kinghenryvi,1590 fickle,1,1kinghenryvi,1590 Nero,1,1kinghenryvi,1590 certify,1,1kinghenryvi,1590 lop,1,1kinghenryvi,1590 vexation,1,1kinghenryvi,1590 recall'd,1,1kinghenryvi,1590 hearse,1,1kinghenryvi,1590 tangle,1,1kinghenryvi,1590 neglected,1,1kinghenryvi,1590 favour'd,1,1kinghenryvi,1590 breasts,1,1kinghenryvi,1590 rearward,1,1kinghenryvi,1590 eyed,1,1kinghenryvi,1590 sweat,1,1kinghenryvi,1590 Patay,1,1kinghenryvi,1590 acts,1,1kinghenryvi,1590 Prince,1,1kinghenryvi,1590 banding,1,1kinghenryvi,1590 conquerors,1,1kinghenryvi,1590 converse,1,1kinghenryvi,1590 suits,1,1kinghenryvi,1590 needful,1,1kinghenryvi,1590 thereto,1,1kinghenryvi,1590 Sargeant,1,1kinghenryvi,1590 goodness,1,1kinghenryvi,1590 insolence,1,1kinghenryvi,1590 Nestor,1,1kinghenryvi,1590 heralds,1,1kinghenryvi,1590 confusedly,1,1kinghenryvi,1590 seem,1,1kinghenryvi,1590 Fleece,1,1kinghenryvi,1590 fitting,1,1kinghenryvi,1590 Inferior,1,1kinghenryvi,1590 confederates,1,1kinghenryvi,1590 cousins,1,1kinghenryvi,1590 decease,1,1kinghenryvi,1590 hounds,1,1kinghenryvi,1590 lowliness,1,1kinghenryvi,1590 Profaning,1,1kinghenryvi,1590 trespass,1,1kinghenryvi,1590 Comest,1,1kinghenryvi,1590 gnaws,1,1kinghenryvi,1590 'twixt,1,1kinghenryvi,1590 DAUPHIN,1,1kinghenryvi,1590 Rhodope's,1,1kinghenryvi,1590 liking,1,1kinghenryvi,1590 period,1,1kinghenryvi,1590 Comets,1,1kinghenryvi,1590 sweep,1,1kinghenryvi,1590 indulgences,1,1kinghenryvi,1590 Mine,1,1kinghenryvi,1590 urn,1,1kinghenryvi,1590 kennel,1,1kinghenryvi,1590 Guienne,1,1kinghenryvi,1590 Otherwhiles,1,1kinghenryvi,1590 Razeth,1,1kinghenryvi,1590 thereof,1,1kinghenryvi,1590 debated,1,1kinghenryvi,1590 True,1,1kinghenryvi,1590 mix'd,1,1kinghenryvi,1590 Resolve,1,1kinghenryvi,1590 aspiring,1,1kinghenryvi,1590 hulk,1,1kinghenryvi,1590 troop,1,1kinghenryvi,1590 vassals,1,1kinghenryvi,1590 thrust,1,1kinghenryvi,1590 expulsed,1,1kinghenryvi,1590 distrustful,1,1kinghenryvi,1590 wearied,1,1kinghenryvi,1590 lightens,1,1kinghenryvi,1590 usage,1,1kinghenryvi,1590 whate'er,1,1kinghenryvi,1590 dispense,1,1kinghenryvi,1590 unvanquish'd,1,1kinghenryvi,1590 deign,1,1kinghenryvi,1590 He'll,1,1kinghenryvi,1590 tree,1,1kinghenryvi,1590 loyalty,1,1kinghenryvi,1590 Abbey,1,1kinghenryvi,1590 heels,1,1kinghenryvi,1590 Repeat,1,1kinghenryvi,1590 regal,1,1kinghenryvi,1590 Through,1,1kinghenryvi,1590 lovest,1,1kinghenryvi,1590 generals,1,1kinghenryvi,1590 riddling,1,1kinghenryvi,1590 recreants,1,1kinghenryvi,1590 inhearsed,1,1kinghenryvi,1590 Condemn'd,1,1kinghenryvi,1590 discern'd,1,1kinghenryvi,1590 Use,1,1kinghenryvi,1590 'stablish,1,1kinghenryvi,1590 extremes,1,1kinghenryvi,1590 souls,1,1kinghenryvi,1590 George's,1,1kinghenryvi,1590 beheld,1,1kinghenryvi,1590 blushing,1,1kinghenryvi,1590 infused,1,1kinghenryvi,1590 gusts,1,1kinghenryvi,1590 rancorous,1,1kinghenryvi,1590 mirror,1,1kinghenryvi,1590 ravenous,1,1kinghenryvi,1590 exceptions,1,1kinghenryvi,1590 Sent,1,1kinghenryvi,1590 sell,1,1kinghenryvi,1590 Washford,1,1kinghenryvi,1590 Trumpet,1,1kinghenryvi,1590 aloud,1,1kinghenryvi,1590 vulture,1,1kinghenryvi,1590 post,1,1kinghenryvi,1590 hemm'd,1,1kinghenryvi,1590 leg,1,1kinghenryvi,1590 driveth,1,1kinghenryvi,1590 roaring,1,1kinghenryvi,1590 alas,1,1kinghenryvi,1590 remedied,1,1kinghenryvi,1590 ghosts,1,1kinghenryvi,1590 grieves,1,1kinghenryvi,1590 Sell,1,1kinghenryvi,1590 Bespoke,1,1kinghenryvi,1590 Opinion,1,1kinghenryvi,1590 dogg'd,1,1kinghenryvi,1590 certified,1,1kinghenryvi,1590 regards,1,1kinghenryvi,1590 wrangling,1,1kinghenryvi,1590 chose,1,1kinghenryvi,1590 trap,1,1kinghenryvi,1590 statue,1,1kinghenryvi,1590 hedges,1,1kinghenryvi,1590 fearing,1,1kinghenryvi,1590 sickness,1,1kinghenryvi,1590 straining,1,1kinghenryvi,1590 allotted,1,1kinghenryvi,1590 Virtuous,1,1kinghenryvi,1590 protest,1,1kinghenryvi,1590 methought,1,1kinghenryvi,1590 attaint,1,1kinghenryvi,1590 bestow,1,1kinghenryvi,1590 Artois,1,1kinghenryvi,1590 merchant,1,1kinghenryvi,1590 degraded,1,1kinghenryvi,1590 Judge,1,1kinghenryvi,1590 Using,1,1kinghenryvi,1590 instead,1,1kinghenryvi,1590 forsaketh,1,1kinghenryvi,1590 nature's,1,1kinghenryvi,1590 Rough,1,1kinghenryvi,1590 thread,1,1kinghenryvi,1590 lordship's,1,1kinghenryvi,1590 frantic,1,1kinghenryvi,1590 perpetuity,1,1kinghenryvi,1590 profession's,1,1kinghenryvi,1590 choke,1,1kinghenryvi,1590 stench,1,1kinghenryvi,1590 endured,1,1kinghenryvi,1590 forwardness,1,1kinghenryvi,1590 cheek's,1,1kinghenryvi,1590 Urchinfield,1,1kinghenryvi,1590 batter'd,1,1kinghenryvi,1590 despairs,1,1kinghenryvi,1590 Spring,1,1kinghenryvi,1590 ignominious,1,1kinghenryvi,1590 petty,1,1kinghenryvi,1590 sufficiently,1,1kinghenryvi,1590 write,1,1kinghenryvi,1590 Agree,1,1kinghenryvi,1590 Martin's,1,1kinghenryvi,1590 faintness,1,1kinghenryvi,1590 repine,1,1kinghenryvi,1590 skirmishes,1,1kinghenryvi,1590 Kisses,1,1kinghenryvi,1590 maidenhood,1,1kinghenryvi,1590 betroth'd,1,1kinghenryvi,1590 volume,1,1kinghenryvi,1590 peal,1,1kinghenryvi,1590 taint,1,1kinghenryvi,1590 pray'd,1,1kinghenryvi,1590 Divinest,1,1kinghenryvi,1590 Strong,1,1kinghenryvi,1590 abroad,1,1kinghenryvi,1590 Conjurers,1,1kinghenryvi,1590 afeard,1,1kinghenryvi,1590 'scape,1,1kinghenryvi,1590 revolted,1,1kinghenryvi,1590 pursueth,1,1kinghenryvi,1590 future,1,1kinghenryvi,1590 vices,1,1kinghenryvi,1590 forced,1,1kinghenryvi,1590 rashly,1,1kinghenryvi,1590 reward,1,1kinghenryvi,1590 contemptible,1,1kinghenryvi,1590 Guysors,1,1kinghenryvi,1590 Marrying,1,1kinghenryvi,1590 starve,1,1kinghenryvi,1590 writhled,1,1kinghenryvi,1590 fester'd,1,1kinghenryvi,1590 Dogs,1,1kinghenryvi,1590 Finding,1,1kinghenryvi,1590 got'st,1,1kinghenryvi,1590 clothing,1,1kinghenryvi,1590 inferior,1,1kinghenryvi,1590 defaced,1,1kinghenryvi,1590 impious,1,1kinghenryvi,1590 sister,1,1kinghenryvi,1590 sibyls,1,1kinghenryvi,1590 breaker,1,1kinghenryvi,1590 fierceness,1,1kinghenryvi,1590 phoenix,1,1kinghenryvi,1590 link'd,1,1kinghenryvi,1590 readiness,1,1kinghenryvi,1590 According,1,1kinghenryvi,1590 Writes,1,1kinghenryvi,1590 Rise,1,1kinghenryvi,1590 arbitrator,1,1kinghenryvi,1590 Woodvile,1,1kinghenryvi,1590 fabulous,1,1kinghenryvi,1590 inshipp'd,1,1kinghenryvi,1590 dye,1,1kinghenryvi,1590 street,1,1kinghenryvi,1590 Gazes,1,1kinghenryvi,1590 rested,1,1kinghenryvi,1590 beholders,1,1kinghenryvi,1590 spiritual,1,1kinghenryvi,1590 furtherance,1,1kinghenryvi,1590 gens,1,1kinghenryvi,1590 fully,1,1kinghenryvi,1590 ladies,1,1kinghenryvi,1590 Circe,1,1kinghenryvi,1590 Men,1,1kinghenryvi,1590 powerful,1,1kinghenryvi,1590 flew,1,1kinghenryvi,1590 lips,1,1kinghenryvi,1590 attorney,1,1kinghenryvi,1590 fashion,1,1kinghenryvi,1590 Twelve,1,1kinghenryvi,1590 fortresses,1,1kinghenryvi,1590 sever'd,1,1kinghenryvi,1590 numb,1,1kinghenryvi,1590 ask'st,1,1kinghenryvi,1590 withdraw,1,1kinghenryvi,1590 lion,1,1kinghenryvi,1590 caroused,1,1kinghenryvi,1590 amain,1,1kinghenryvi,1590 physic,1,1kinghenryvi,1590 captives,1,1kinghenryvi,1590 deluded,1,1kinghenryvi,1590 homage,1,1kinghenryvi,1590 appearing,1,1kinghenryvi,1590 ransomed,1,1kinghenryvi,1590 beguile,1,1kinghenryvi,1590 mannerly,1,1kinghenryvi,1590 overrun,1,1kinghenryvi,1590 substitutes,1,1kinghenryvi,1590 Arrogant,1,1kinghenryvi,1590 darnel,1,1kinghenryvi,1590 Marry,1,1kinghenryvi,1590 Rescued,1,1kinghenryvi,1590 Submission,1,1kinghenryvi,1590 fraud,1,1kinghenryvi,1590 nativity,1,1kinghenryvi,1590 politic,1,1kinghenryvi,1590 Kneels,1,1kinghenryvi,1590 incessant,1,1kinghenryvi,1590 servitors,1,1kinghenryvi,1590 credit,1,1kinghenryvi,1590 Graceless,1,1kinghenryvi,1590 spill,1,1kinghenryvi,1590 Mad,1,1kinghenryvi,1590 tut,1,1kinghenryvi,1590 unworthily,1,1kinghenryvi,1590 flag,1,1kinghenryvi,1590 thither,1,1kinghenryvi,1590 attendants,1,1kinghenryvi,1590 Sings,1,1kinghenryvi,1590 Adonis',1,1kinghenryvi,1590 lions',1,1kinghenryvi,1590 tug,1,1kinghenryvi,1590 frivolous,1,1kinghenryvi,1590 truant,1,1kinghenryvi,1590 keepers,1,1kinghenryvi,1590 sleeping,1,1kinghenryvi,1590 VII,1,1kinghenryvi,1590 burly,1,1kinghenryvi,1590 dishonour'd,1,1kinghenryvi,1590 pranks,1,1kinghenryvi,1590 May,1,1kinghenryvi,1590 Done,1,1kinghenryvi,1590 severally,1,1kinghenryvi,1590 discontented,1,1kinghenryvi,1590 laid'st,1,1kinghenryvi,1590 fright,1,1kinghenryvi,1590 peer,1,1kinghenryvi,1590 importing,1,1kinghenryvi,1590 studious,1,1kinghenryvi,1590 Somewhat,1,1kinghenryvi,1590 hurl,1,1kinghenryvi,1590 squire,1,1kinghenryvi,1590 breaking,1,1kinghenryvi,1590 venge,1,1kinghenryvi,1590 Christ's,1,1kinghenryvi,1590 entreaty,1,1kinghenryvi,1590 going,1,1kinghenryvi,1590 place's,1,1kinghenryvi,1590 ripen'd,1,1kinghenryvi,1590 barking,1,1kinghenryvi,1590 compell'd,1,1kinghenryvi,1590 follow'd,1,1kinghenryvi,1590 windows,1,1kinghenryvi,1590 entreats,1,1kinghenryvi,1590 urged,1,1kinghenryvi,1590 putrefy,1,1kinghenryvi,1590 shade,1,1kinghenryvi,1590 viperous,1,1kinghenryvi,1590 contain't,1,1kinghenryvi,1590 transported,1,1kinghenryvi,1590 shrewd,1,1kinghenryvi,1590 sentinels,1,1kinghenryvi,1590 simple,1,1kinghenryvi,1590 cygnets,1,1kinghenryvi,1590 sheep's,1,1kinghenryvi,1590 Chaste,1,1kinghenryvi,1590 date,1,1kinghenryvi,1590 spring,1,1kinghenryvi,1590 cornets,1,1kinghenryvi,1590 risen,1,1kinghenryvi,1590 proffer'd,1,1kinghenryvi,1590 reply,1,1kinghenryvi,1590 Unready,1,1kinghenryvi,1590 presage,1,1kinghenryvi,1590 strengthless,1,1kinghenryvi,1590 institute,1,1kinghenryvi,1590 dash,1,1kinghenryvi,1590 expense,1,1kinghenryvi,1590 pattern,1,1kinghenryvi,1590 laid,1,1kinghenryvi,1590 discovered,1,1kinghenryvi,1590 asleep,1,1kinghenryvi,1590 serveth,1,1kinghenryvi,1590 provide,1,1kinghenryvi,1590 centre,1,1kinghenryvi,1590 pelt,1,1kinghenryvi,1590 brat,1,1kinghenryvi,1590 stakes,1,1kinghenryvi,1590 Hung,1,1kinghenryvi,1590 exchanged,1,1kinghenryvi,1590 due,1,1kinghenryvi,1590 unconquer'd,1,1kinghenryvi,1590 banqueted,1,1kinghenryvi,1590 Together,1,1kinghenryvi,1590 stratagem,1,1kinghenryvi,1590 lord's,1,1kinghenryvi,1590 GLANDSDALE,1,1kinghenryvi,1590 withhold,1,1kinghenryvi,1590 Lets,1,1kinghenryvi,1590 turtle,1,1kinghenryvi,1590 cunningly,1,1kinghenryvi,1590 adversary's,1,1kinghenryvi,1590 bonfires,1,1kinghenryvi,1590 humbler,1,1kinghenryvi,1590 toy,1,1kinghenryvi,1590 bedew,1,1kinghenryvi,1590 dispatch,1,1kinghenryvi,1590 bred,1,1kinghenryvi,1590 Encompass'd,1,1kinghenryvi,1590 Swearing,1,1kinghenryvi,1590 proclamation,1,1kinghenryvi,1590 entrapp'd,1,1kinghenryvi,1590 servest,1,1kinghenryvi,1590 DRAMATIS,1,1kinghenryvi,1590 whores,1,1kinghenryvi,1590 Until,1,1kinghenryvi,1590 flout,1,1kinghenryvi,1590 shift,1,1kinghenryvi,1590 guests,1,1kinghenryvi,1590 Keeping,1,1kinghenryvi,1590 Knight,1,1kinghenryvi,1590 prerogative,1,1kinghenryvi,1590 armed,1,1kinghenryvi,1590 sweeting,1,1kinghenryvi,1590 commanding,1,1kinghenryvi,1590 Gloster,1,1kinghenryvi,1590 upstart,1,1kinghenryvi,1590 Faintly,1,1kinghenryvi,1590 disagree,1,1kinghenryvi,1590 bargain,1,1kinghenryvi,1590 exit,1,1kinghenryvi,1590 tempt,1,1kinghenryvi,1590 obedient,1,1kinghenryvi,1590 obtain,1,1kinghenryvi,1590 he'll,1,1kinghenryvi,1590 cognizance,1,1kinghenryvi,1590 usurpation,1,1kinghenryvi,1590 divided,1,1kinghenryvi,1590 wills,1,1kinghenryvi,1590 Drops,1,1kinghenryvi,1590 Parliament,1,1kinghenryvi,1590 encountered,1,1kinghenryvi,1590 dastards,1,1kinghenryvi,1590 Talk,1,1kinghenryvi,1590 unapt,1,1kinghenryvi,1590 willed,1,1kinghenryvi,1590 dwelling,1,1kinghenryvi,1590 Direct,1,1kinghenryvi,1590 speaker,1,1kinghenryvi,1590 holdeth,1,1kinghenryvi,1590 awake,1,1kinghenryvi,1590 cates,1,1kinghenryvi,1590 Warders,1,1kinghenryvi,1590 princess,1,1kinghenryvi,1590 Saying,1,1kinghenryvi,1590 pursuivants,1,1kinghenryvi,1590 soundly,1,1kinghenryvi,1590 Glansdale,1,1kinghenryvi,1590 Edward's,1,1kinghenryvi,1590 puzzel,1,1kinghenryvi,1590 hellish,1,1kinghenryvi,1590 mid,1,1kinghenryvi,1590 amaze,1,1kinghenryvi,1590 remorse,1,1kinghenryvi,1590 fists,1,1kinghenryvi,1590 kill,1,1kinghenryvi,1590 spectacle,1,1kinghenryvi,1590 cannon,1,1kinghenryvi,1590 archers,1,1kinghenryvi,1590 Fight,1,1kinghenryvi,1590 scarecrow,1,1kinghenryvi,1590 cooling,1,1kinghenryvi,1590 repair,1,1kinghenryvi,1590 'mongst,1,1kinghenryvi,1590 breathe,1,1kinghenryvi,1590 wanteth,1,1kinghenryvi,1590 whirled,1,1kinghenryvi,1590 avaunt,1,1kinghenryvi,1590 Hector,1,1kinghenryvi,1590 profit's,1,1kinghenryvi,1590 shortened,1,1kinghenryvi,1590 Triumphant,1,1kinghenryvi,1590 bewitch'd,1,1kinghenryvi,1590 await,1,1kinghenryvi,1590 spoils,1,1kinghenryvi,1590 Prick'd,1,1kinghenryvi,1590 Words,1,1kinghenryvi,1590 inconvenience,1,1kinghenryvi,1590 Dispersed,1,1kinghenryvi,1590 chivalry,1,1kinghenryvi,1590 Grown,1,1kinghenryvi,1590 sandy,1,1kinghenryvi,1590 fading,1,1kinghenryvi,1590 wouldst,1,1kinghenryvi,1590 Created,1,1kinghenryvi,1590 dissemble,1,1kinghenryvi,1590 craven's,1,1kinghenryvi,1590 ships,1,1kinghenryvi,1590 Retiring,1,1kinghenryvi,1590 nation's,1,1kinghenryvi,1590 agazed,1,1kinghenryvi,1590 seek'st,1,1kinghenryvi,1590 godly,1,1kinghenryvi,1590 majestical,1,1kinghenryvi,1590 corrosive,1,1kinghenryvi,1590 hedge,1,1kinghenryvi,1590 swan,1,1kinghenryvi,1590 summer,1,1kinghenryvi,1590 daughters,1,1kinghenryvi,1590 religion,2,1kinghenryvi,1590 event,2,1kinghenryvi,1590 effeminate,2,1kinghenryvi,1590 tomb,2,1kinghenryvi,1590 proffer,2,1kinghenryvi,1590 unready,2,1kinghenryvi,1590 grew,2,1kinghenryvi,1590 grey,2,1kinghenryvi,1590 pity,2,1kinghenryvi,1590 fancy,2,1kinghenryvi,1590 Valiant,2,1kinghenryvi,1590 drop,2,1kinghenryvi,1590 joint'st,2,1kinghenryvi,1590 afar,2,1kinghenryvi,1590 darest,2,1kinghenryvi,1590 derived,2,1kinghenryvi,1590 mightiest,2,1kinghenryvi,1590 Hear,2,1kinghenryvi,1590 infamy,2,1kinghenryvi,1590 weary,2,1kinghenryvi,1590 scouts,2,1kinghenryvi,1590 Frenchman,2,1kinghenryvi,1590 prophet,2,1kinghenryvi,1590 disturb,2,1kinghenryvi,1590 Alas,2,1kinghenryvi,1590 peasant,2,1kinghenryvi,1590 woman's,2,1kinghenryvi,1590 wooden,2,1kinghenryvi,1590 brows,2,1kinghenryvi,1590 fainting,2,1kinghenryvi,1590 bones,2,1kinghenryvi,1590 offended,2,1kinghenryvi,1590 assured,2,1kinghenryvi,1590 shoulders,2,1kinghenryvi,1590 highness',2,1kinghenryvi,1590 Bear,2,1kinghenryvi,1590 express,2,1kinghenryvi,1590 villain,2,1kinghenryvi,1590 boys,2,1kinghenryvi,1590 helps,2,1kinghenryvi,1590 despised,2,1kinghenryvi,1590 warning,2,1kinghenryvi,1590 truly,2,1kinghenryvi,1590 darkness,2,1kinghenryvi,1590 trump,2,1kinghenryvi,1590 mere,2,1kinghenryvi,1590 Especially,2,1kinghenryvi,1590 celestial,2,1kinghenryvi,1590 cometh,2,1kinghenryvi,1590 grim,2,1kinghenryvi,1590 Help,2,1kinghenryvi,1590 prosperous,2,1kinghenryvi,1590 undaunted,2,1kinghenryvi,1590 comest,2,1kinghenryvi,1590 Lucy,2,1kinghenryvi,1590 brook,2,1kinghenryvi,1590 instrument,2,1kinghenryvi,1590 fought,2,1kinghenryvi,1590 advance,2,1kinghenryvi,1590 sorceress,2,1kinghenryvi,1590 underneath,2,1kinghenryvi,1590 calls,2,1kinghenryvi,1590 befall,2,1kinghenryvi,1590 Fiends,2,1kinghenryvi,1590 contrary,2,1kinghenryvi,1590 perverse,2,1kinghenryvi,1590 proclaim,2,1kinghenryvi,1590 saved,2,1kinghenryvi,1590 loathsome,2,1kinghenryvi,1590 battles,2,1kinghenryvi,1590 argues,2,1kinghenryvi,1590 regions,2,1kinghenryvi,1590 breach,2,1kinghenryvi,1590 Once,2,1kinghenryvi,1590 plague,2,1kinghenryvi,1590 seven,2,1kinghenryvi,1590 sons,2,1kinghenryvi,1590 drive,2,1kinghenryvi,1590 enemies',2,1kinghenryvi,1590 sold,2,1kinghenryvi,1590 confusion,2,1kinghenryvi,1590 bearing,2,1kinghenryvi,1590 saw,2,1kinghenryvi,1590 scarlet,2,1kinghenryvi,1590 fortunate,2,1kinghenryvi,1590 circumstance,2,1kinghenryvi,1590 resolve,2,1kinghenryvi,1590 Plains,2,1kinghenryvi,1590 crying,2,1kinghenryvi,1590 suburbs,2,1kinghenryvi,1590 factious,2,1kinghenryvi,1590 Much,2,1kinghenryvi,1590 Remember,2,1kinghenryvi,1590 function,2,1kinghenryvi,1590 Thomas,2,1kinghenryvi,1590 exclaim,2,1kinghenryvi,1590 hearing,2,1kinghenryvi,1590 policy,2,1kinghenryvi,1590 babes,2,1kinghenryvi,1590 officers,2,1kinghenryvi,1590 teach,2,1kinghenryvi,1590 enacted,2,1kinghenryvi,1590 blessed,2,1kinghenryvi,1590 visit,2,1kinghenryvi,1590 wait,2,1kinghenryvi,1590 further,2,1kinghenryvi,1590 plains,2,1kinghenryvi,1590 march'd,2,1kinghenryvi,1590 sit,2,1kinghenryvi,1590 prevail'd,2,1kinghenryvi,1590 Confirm,2,1kinghenryvi,1590 aged,2,1kinghenryvi,1590 subdued,2,1kinghenryvi,1590 'A,2,1kinghenryvi,1590 wall,2,1kinghenryvi,1590 yeoman,2,1kinghenryvi,1590 deceived,2,1kinghenryvi,1590 slaughter,2,1kinghenryvi,1590 famish'd,2,1kinghenryvi,1590 chiefest,2,1kinghenryvi,1590 lions,2,1kinghenryvi,1590 WILLIAM,2,1kinghenryvi,1590 avail,2,1kinghenryvi,1590 attainted,2,1kinghenryvi,1590 counsel,2,1kinghenryvi,1590 Their,2,1kinghenryvi,1590 kindly,2,1kinghenryvi,1590 forthwith,2,1kinghenryvi,1590 necks,2,1kinghenryvi,1590 pitiful,2,1kinghenryvi,1590 sky,2,1kinghenryvi,1590 instruct,2,1kinghenryvi,1590 lambs,2,1kinghenryvi,1590 Other,2,1kinghenryvi,1590 league,2,1kinghenryvi,1590 Attendants,2,1kinghenryvi,1590 bridge,2,1kinghenryvi,1590 becomes,2,1kinghenryvi,1590 read,2,1kinghenryvi,1590 worst,2,1kinghenryvi,1590 esteem,2,1kinghenryvi,1590 redeem,2,1kinghenryvi,1590 lingering,2,1kinghenryvi,1590 conceit,2,1kinghenryvi,1590 compassion,2,1kinghenryvi,1590 palaces,2,1kinghenryvi,1590 ways,2,1kinghenryvi,1590 Officers,2,1kinghenryvi,1590 Turn,2,1kinghenryvi,1590 king's,2,1kinghenryvi,1590 encounter'd,2,1kinghenryvi,1590 viceroy,2,1kinghenryvi,1590 confer,2,1kinghenryvi,1590 Sound,2,1kinghenryvi,1590 expedition,2,1kinghenryvi,1590 fruit,2,1kinghenryvi,1590 consented,2,1kinghenryvi,1590 bout,2,1kinghenryvi,1590 thence,2,1kinghenryvi,1590 luces,2,1kinghenryvi,1590 Whilst,2,1kinghenryvi,1590 companion,2,1kinghenryvi,1590 Talbots,2,1kinghenryvi,1590 cease,2,1kinghenryvi,1590 descent,2,1kinghenryvi,1590 service,2,1kinghenryvi,1590 saucy,2,1kinghenryvi,1590 masters,2,1kinghenryvi,1590 blind,2,1kinghenryvi,1590 ancient,2,1kinghenryvi,1590 artillery,2,1kinghenryvi,1590 Fly,2,1kinghenryvi,1590 shrink,2,1kinghenryvi,1590 nails,2,1kinghenryvi,1590 Might,2,1kinghenryvi,1590 Dare,2,1kinghenryvi,1590 seems,2,1kinghenryvi,1590 title,2,1kinghenryvi,1590 mirth,2,1kinghenryvi,1590 stead,2,1kinghenryvi,1590 Retreat,2,1kinghenryvi,1590 murder,2,1kinghenryvi,1590 accuse,2,1kinghenryvi,1590 devil's,2,1kinghenryvi,1590 ambassador,2,1kinghenryvi,1590 stop,2,1kinghenryvi,1590 cunning,2,1kinghenryvi,1590 wary,2,1kinghenryvi,1590 rule,2,1kinghenryvi,1590 distress,2,1kinghenryvi,1590 office,2,1kinghenryvi,1590 wast,2,1kinghenryvi,1590 bright,2,1kinghenryvi,1590 parts,2,1kinghenryvi,1590 party,2,1kinghenryvi,1590 colour,2,1kinghenryvi,1590 created,2,1kinghenryvi,1590 tent,2,1kinghenryvi,1590 verdict,2,1kinghenryvi,1590 judgement,2,1kinghenryvi,1590 Wherewith,2,1kinghenryvi,1590 Drive,2,1kinghenryvi,1590 conditions,2,1kinghenryvi,1590 foil,2,1kinghenryvi,1590 Sentinels,2,1kinghenryvi,1590 wherefore,2,1kinghenryvi,1590 preferr'd,2,1kinghenryvi,1590 contrived,2,1kinghenryvi,1590 chamber,2,1kinghenryvi,1590 Place,2,1kinghenryvi,1590 stir,2,1kinghenryvi,1590 keys,2,1kinghenryvi,1590 slaves,2,1kinghenryvi,1590 mortality,2,1kinghenryvi,1590 conquered,2,1kinghenryvi,1590 hat,2,1kinghenryvi,1590 hag,2,1kinghenryvi,1590 What's,2,1kinghenryvi,1590 utter,2,1kinghenryvi,1590 talks,2,1kinghenryvi,1590 streams,2,1kinghenryvi,1590 religious,2,1kinghenryvi,1590 Am,2,1kinghenryvi,1590 brandish'd,2,1kinghenryvi,1590 Summon,2,1kinghenryvi,1590 informed,2,1kinghenryvi,1590 scarce,2,1kinghenryvi,1590 neither,2,1kinghenryvi,1590 blows,2,1kinghenryvi,1590 Him,2,1kinghenryvi,1590 Gloucester's,2,1kinghenryvi,1590 unnatural,2,1kinghenryvi,1590 Having,2,1kinghenryvi,1590 Lo,2,1kinghenryvi,1590 bad,2,1kinghenryvi,1590 Stand,2,1kinghenryvi,1590 cruel,2,1kinghenryvi,1590 doves,2,1kinghenryvi,1590 exceed,2,1kinghenryvi,1590 star,2,1kinghenryvi,1590 pen,2,1kinghenryvi,1590 bed,2,1kinghenryvi,1590 vanquished,2,1kinghenryvi,1590 wither'd,2,1kinghenryvi,1590 wedded,2,1kinghenryvi,1590 Denis,2,1kinghenryvi,1590 quiet,2,1kinghenryvi,1590 sirs,2,1kinghenryvi,1590 titles,2,1kinghenryvi,1590 sapless,2,1kinghenryvi,1590 gold,2,1kinghenryvi,1590 thorn,2,1kinghenryvi,1590 divide,2,1kinghenryvi,1590 proportion,2,1kinghenryvi,1590 bend,2,1kinghenryvi,1590 Drum,2,1kinghenryvi,1590 canker,2,1kinghenryvi,1590 imagine,2,1kinghenryvi,1590 whereas,2,1kinghenryvi,1590 bell,2,1kinghenryvi,1590 children,2,1kinghenryvi,1590 Lancaster,2,1kinghenryvi,1590 sounds,2,1kinghenryvi,1590 fifty,2,1kinghenryvi,1590 Dies,2,1kinghenryvi,1590 put,2,1kinghenryvi,1590 conquers,2,1kinghenryvi,1590 twice,2,1kinghenryvi,1590 scoffs,2,1kinghenryvi,1590 friendly,2,1kinghenryvi,1590 badge,2,1kinghenryvi,1590 bulwarks,2,1kinghenryvi,1590 survey,2,1kinghenryvi,1590 About,2,1kinghenryvi,1590 enterprise,2,1kinghenryvi,1590 picture,2,1kinghenryvi,1590 moody,2,1kinghenryvi,1590 gasp,2,1kinghenryvi,1590 crowned,2,1kinghenryvi,1590 oxen,2,1kinghenryvi,1590 inheritance,2,1kinghenryvi,1590 dogs,2,1kinghenryvi,1590 entertain,2,1kinghenryvi,1590 Cowardly,2,1kinghenryvi,1590 conquering,2,1kinghenryvi,1590 wretch,2,1kinghenryvi,1590 ha,2,1kinghenryvi,1590 resolute,2,1kinghenryvi,1590 air,2,1kinghenryvi,1590 yea,2,1kinghenryvi,1590 burial,2,1kinghenryvi,1590 Here's,2,1kinghenryvi,1590 sheep,2,1kinghenryvi,1590 Rheims,2,1kinghenryvi,1590 safe,2,1kinghenryvi,1590 wreck,2,1kinghenryvi,1590 succor,2,1kinghenryvi,1590 rightful,2,1kinghenryvi,1590 liberal,2,1kinghenryvi,1590 submissive,2,1kinghenryvi,1590 likely,2,1kinghenryvi,1590 lend,2,1kinghenryvi,1590 edged,2,1kinghenryvi,1590 destruction,2,1kinghenryvi,1590 lady's,2,1kinghenryvi,1590 Clarence,2,1kinghenryvi,1590 ay,2,1kinghenryvi,1590 shed,2,1kinghenryvi,1590 approach,2,1kinghenryvi,1590 forget,2,1kinghenryvi,1590 wench,2,1kinghenryvi,1590 bless'd,2,1kinghenryvi,1590 betray'd,2,1kinghenryvi,1590 commendations,2,1kinghenryvi,1590 engenders,2,1kinghenryvi,1590 banish,2,1kinghenryvi,1590 idly,2,1kinghenryvi,1590 outrageous,2,1kinghenryvi,1590 Myself,2,1kinghenryvi,1590 Edmund,2,1kinghenryvi,1590 Lionel,2,1kinghenryvi,1590 settled,2,1kinghenryvi,1590 endure,2,1kinghenryvi,1590 commands,2,1kinghenryvi,1590 Doubtless,2,1kinghenryvi,1590 resolved,2,1kinghenryvi,1590 spent,2,1kinghenryvi,1590 devil,2,1kinghenryvi,1590 spend,2,1kinghenryvi,1590 removed,2,1kinghenryvi,1590 ready,2,1kinghenryvi,1590 umpire,2,1kinghenryvi,1590 Came,2,1kinghenryvi,1590 thrice,2,1kinghenryvi,1590 Damsel,2,1kinghenryvi,1590 hardly,2,1kinghenryvi,1590 plot,2,1kinghenryvi,1590 oppression,2,1kinghenryvi,1590 fierce,2,1kinghenryvi,1590 hard,2,1kinghenryvi,1590 imprisonment,2,1kinghenryvi,1590 Break,2,1kinghenryvi,1590 speaks,2,1kinghenryvi,1590 affects,2,1kinghenryvi,1590 hall,2,1kinghenryvi,1590 hale,2,1kinghenryvi,1590 handled,2,1kinghenryvi,1590 knit,2,1kinghenryvi,1590 Call,2,1kinghenryvi,1590 employ'd,2,1kinghenryvi,1590 Trumpets,2,1kinghenryvi,1590 four,2,1kinghenryvi,1590 plain,2,1kinghenryvi,1590 foul,2,1kinghenryvi,1590 drawn,2,1kinghenryvi,1590 mighty,2,1kinghenryvi,1590 governor,2,1kinghenryvi,1590 whether,2,1kinghenryvi,1590 expect,2,1kinghenryvi,1590 course,2,1kinghenryvi,1590 Under,2,1kinghenryvi,1590 occasions,2,1kinghenryvi,1590 hangs,2,1kinghenryvi,1590 delight,2,1kinghenryvi,1590 paid,2,1kinghenryvi,1590 plotted,2,1kinghenryvi,1590 Keepers,2,1kinghenryvi,1590 awe,2,1kinghenryvi,1590 faithful,2,1kinghenryvi,1590 fall'n,2,1kinghenryvi,1590 renowned,2,1kinghenryvi,1590 object,2,1kinghenryvi,1590 girl,2,1kinghenryvi,1590 sacks,2,1kinghenryvi,1590 gird,2,1kinghenryvi,1590 error,2,1kinghenryvi,1590 Exeter,2,1kinghenryvi,1590 banquet,2,1kinghenryvi,1590 Among,2,1kinghenryvi,1590 Gates,2,1kinghenryvi,1590 Sirrah,2,1kinghenryvi,1590 touch,2,1kinghenryvi,1590 daring,2,1kinghenryvi,1590 token,2,1kinghenryvi,1590 Content,2,1kinghenryvi,1590 brain'd,2,1kinghenryvi,1590 hazard,2,1kinghenryvi,1590 enjoy,2,1kinghenryvi,1590 guess,2,1kinghenryvi,1590 beams,2,1kinghenryvi,1590 having,2,1kinghenryvi,1590 here's,2,1kinghenryvi,1590 lead,2,1kinghenryvi,1590 Into,2,1kinghenryvi,1590 rope,2,1kinghenryvi,1590 Monmouth,2,1kinghenryvi,1590 often,2,1kinghenryvi,1590 opinions,2,1kinghenryvi,1590 condemn'd,2,1kinghenryvi,1590 ordnance,2,1kinghenryvi,1590 astonish'd,2,1kinghenryvi,1590 Against,2,1kinghenryvi,1590 Ten,2,1kinghenryvi,1590 Vernon,2,1kinghenryvi,1590 indeed,2,1kinghenryvi,1590 broad,2,1kinghenryvi,1590 thinks,2,1kinghenryvi,1590 install'd,2,1kinghenryvi,1590 retreat,2,1kinghenryvi,1590 wonder,2,1kinghenryvi,1590 gavest,2,1kinghenryvi,1590 Henceforth,2,1kinghenryvi,1590 Peace,2,1kinghenryvi,1590 proudly,2,1kinghenryvi,1590 circle,2,1kinghenryvi,1590 daily,2,1kinghenryvi,1590 Gargrave,2,1kinghenryvi,1590 bravely,2,1kinghenryvi,1590 traitors,2,1kinghenryvi,1590 condescend,2,1kinghenryvi,1590 Excursions,2,1kinghenryvi,1590 year,2,1kinghenryvi,1590 Presumptuous,2,1kinghenryvi,1590 mount,2,1kinghenryvi,1590 mate,2,1kinghenryvi,1590 arise,2,1kinghenryvi,1590 thrall,2,1kinghenryvi,1590 coronation,2,1kinghenryvi,1590 mouth,2,1kinghenryvi,1590 places,2,1kinghenryvi,1590 Doth,2,1kinghenryvi,1590 revive,2,1kinghenryvi,1590 precious,2,1kinghenryvi,1590 question,2,1kinghenryvi,1590 effect,2,1kinghenryvi,1590 Look,2,1kinghenryvi,1590 Some,2,1kinghenryvi,1590 likewise,2,1kinghenryvi,1590 Beaufort,2,1kinghenryvi,1590 realms,2,1kinghenryvi,1590 espials,2,1kinghenryvi,1590 teeth,2,1kinghenryvi,1590 stars,2,1kinghenryvi,1590 strict,2,1kinghenryvi,1590 rests,2,1kinghenryvi,1590 procure,2,1kinghenryvi,1590 Father,2,1kinghenryvi,1590 there's,2,1kinghenryvi,1590 tenth,2,1kinghenryvi,1590 throughout,2,1kinghenryvi,1590 proudest,2,1kinghenryvi,1590 slave,2,1kinghenryvi,1590 coronet,2,1kinghenryvi,1590 wot,2,1kinghenryvi,1590 brains,2,1kinghenryvi,1590 vision,2,1kinghenryvi,1590 craves,2,1kinghenryvi,1590 greatest,2,1kinghenryvi,1590 victorious,2,1kinghenryvi,1590 craved,2,1kinghenryvi,1590 special,2,1kinghenryvi,1590 seal'd,2,1kinghenryvi,1590 worthless,2,1kinghenryvi,1590 smoke,2,1kinghenryvi,1590 Being,2,1kinghenryvi,1590 stake,2,1kinghenryvi,1590 Question,2,1kinghenryvi,1590 Rome,2,1kinghenryvi,1590 paramour,2,1kinghenryvi,1590 desired,2,1kinghenryvi,1590 living,2,1kinghenryvi,1590 stain,2,1kinghenryvi,1590 behalf,2,1kinghenryvi,1590 close,2,1kinghenryvi,1590 opinion,2,1kinghenryvi,1590 flies,2,1kinghenryvi,1590 Instead,2,1kinghenryvi,1590 former,2,1kinghenryvi,1590 dishonour,2,1kinghenryvi,1590 safely,2,1kinghenryvi,1590 swain,2,1kinghenryvi,1590 wit,2,1kinghenryvi,1590 stamp,2,1kinghenryvi,1590 oft,2,1kinghenryvi,1590 Poictiers,2,1kinghenryvi,1590 message,2,1kinghenryvi,1590 ring,2,1kinghenryvi,1590 buckle,2,1kinghenryvi,1590 morrow,2,1kinghenryvi,1590 THOMAS,2,1kinghenryvi,1590 bondage,2,1kinghenryvi,1590 manifest,2,1kinghenryvi,1590 Marriage,2,1kinghenryvi,1590 alarums,2,1kinghenryvi,1590 death's,2,1kinghenryvi,1590 rebellious,2,1kinghenryvi,1590 remains,2,1kinghenryvi,1590 refuge,2,1kinghenryvi,1590 Sleeping,2,1kinghenryvi,1590 Rose,2,1kinghenryvi,1590 champion,2,1kinghenryvi,1590 vow'd,2,1kinghenryvi,1590 dusky,2,1kinghenryvi,1590 Auvergne,2,1kinghenryvi,1590 sinews,2,1kinghenryvi,1590 captivate,2,1kinghenryvi,1590 patronage,2,1kinghenryvi,1590 driven,2,1kinghenryvi,1590 intent,2,1kinghenryvi,1590 ambition,2,1kinghenryvi,1590 wood,2,1kinghenryvi,1590 they'll,2,1kinghenryvi,1590 wanton,2,1kinghenryvi,1590 ends,2,1kinghenryvi,1590 declare,2,1kinghenryvi,1590 proceeding,2,1kinghenryvi,1590 wont,2,1kinghenryvi,1590 exclaims,2,1kinghenryvi,1590 beseems,2,1kinghenryvi,1590 familiar,2,1kinghenryvi,1590 raging,2,1kinghenryvi,1590 faces,2,1kinghenryvi,1590 Heaven,2,1kinghenryvi,1590 takes,2,1kinghenryvi,1590 marry,2,1kinghenryvi,1590 foreign,2,1kinghenryvi,1590 womb,2,1kinghenryvi,1590 compass,2,1kinghenryvi,1590 supply,2,1kinghenryvi,1590 baleful,2,1kinghenryvi,1590 soldiers',2,1kinghenryvi,1590 Amongst,2,1kinghenryvi,1590 serves,2,1kinghenryvi,1590 hundred,2,1kinghenryvi,1590 followers,2,1kinghenryvi,1590 gifts,2,1kinghenryvi,1590 glad,2,1kinghenryvi,1590 guilty,2,1kinghenryvi,1590 minds,2,1kinghenryvi,1590 grate,2,1kinghenryvi,1590 miracle,2,1kinghenryvi,1590 saint,2,1kinghenryvi,1590 grant,2,1kinghenryvi,1590 Call'd,2,1kinghenryvi,1590 silly,2,1kinghenryvi,1590 scorns,2,1kinghenryvi,1590 discover,2,1kinghenryvi,1590 'em,2,1kinghenryvi,1590 Sweet,2,1kinghenryvi,1590 fit,2,1kinghenryvi,1590 prophetess,2,1kinghenryvi,1590 lists,2,1kinghenryvi,1590 Calais,2,1kinghenryvi,1590 rich,2,1kinghenryvi,1590 dalliance,2,1kinghenryvi,1590 progenitors,2,1kinghenryvi,1590 married,2,1kinghenryvi,1590 minded,2,1kinghenryvi,1590 bare,2,1kinghenryvi,1590 lordship,2,1kinghenryvi,1590 thunder,2,1kinghenryvi,1590 wealth,2,1kinghenryvi,1590 lines,2,1kinghenryvi,1590 practise,2,1kinghenryvi,1590 patient,2,1kinghenryvi,1590 wives,2,1kinghenryvi,1590 wonted,2,1kinghenryvi,1590 censure,2,1kinghenryvi,1590 prophesy,2,1kinghenryvi,1590 deliver'd,2,1kinghenryvi,1590 kiss,2,1kinghenryvi,1590 Icarus,2,1kinghenryvi,1590 friendship,2,1kinghenryvi,1590 Officer,2,1kinghenryvi,1590 insulting,2,1kinghenryvi,1590 named,2,1kinghenryvi,1590 dismay'd,2,1kinghenryvi,1590 fare,2,1kinghenryvi,1590 meets,2,1kinghenryvi,1590 mischance,2,1kinghenryvi,1590 tale,2,1kinghenryvi,1590 Caesar,2,1kinghenryvi,1590 timorous,2,1kinghenryvi,1590 departure,2,1kinghenryvi,1590 Lean,2,1kinghenryvi,1590 fruitful,2,1kinghenryvi,1590 Prosper,2,1kinghenryvi,1590 otherwise,2,1kinghenryvi,1590 audacious,2,1kinghenryvi,1590 thrusting,2,1kinghenryvi,1590 Rather,2,1kinghenryvi,1590 pledge,2,1kinghenryvi,1590 short,2,1kinghenryvi,1590 None,2,1kinghenryvi,1590 peaceful,2,1kinghenryvi,1590 greet,2,1kinghenryvi,1590 master,2,1kinghenryvi,1590 stand'st,2,1kinghenryvi,1590 hollow,2,1kinghenryvi,1590 covenants,2,1kinghenryvi,1590 counterfeit,2,1kinghenryvi,1590 revolt,2,1kinghenryvi,1590 besieged,2,1kinghenryvi,1590 Herald,2,1kinghenryvi,1590 forsooth,2,1kinghenryvi,1590 grudge,2,1kinghenryvi,1590 Wherefore,2,1kinghenryvi,1590 virtues,2,1kinghenryvi,1590 falsehood,2,1kinghenryvi,1590 choler,2,1kinghenryvi,1590 Brave,2,1kinghenryvi,1590 robes,2,1kinghenryvi,1590 satisfied,2,1kinghenryvi,1590 along,2,1kinghenryvi,1590 assembled,2,1kinghenryvi,1590 ignoble,2,1kinghenryvi,1590 wasting,2,1kinghenryvi,1590 winged,2,1kinghenryvi,1590 adieu,2,1kinghenryvi,1590 ugly,2,1kinghenryvi,1590 states,2,1kinghenryvi,1590 babe,2,1kinghenryvi,1590 drums,2,1kinghenryvi,1590 presence,2,1kinghenryvi,1590 Governor,2,1kinghenryvi,1590 suppress,2,1kinghenryvi,1590 progeny,2,1kinghenryvi,1590 supposed,2,1kinghenryvi,1590 Ne'er,2,1kinghenryvi,1590 courtesy,2,1kinghenryvi,1590 sees,2,1kinghenryvi,1590 prophecy,2,1kinghenryvi,1590 planets,2,1kinghenryvi,1590 Believe,2,1kinghenryvi,1590 crest,2,1kinghenryvi,1590 sacred,2,1kinghenryvi,1590 Pray,2,1kinghenryvi,1590 exploit,2,1kinghenryvi,1590 therein,2,1kinghenryvi,1590 wretched,2,1kinghenryvi,1590 funeral,2,1kinghenryvi,1590 tied,2,1kinghenryvi,1590 Humphrey,2,1kinghenryvi,1590 miscreant,2,1kinghenryvi,1590 parentage,2,1kinghenryvi,1590 Heralds,2,1kinghenryvi,1590 Moved,2,1kinghenryvi,1590 excellence,2,1kinghenryvi,1590 Cry,2,1kinghenryvi,1590 tide,2,1kinghenryvi,1590 Just,2,1kinghenryvi,1590 whilst,2,1kinghenryvi,1590 gloss,2,1kinghenryvi,1590 bleeding,2,1kinghenryvi,1590 prison,2,1kinghenryvi,1590 mother's,2,1kinghenryvi,1590 ordain'd,2,1kinghenryvi,1590 cold,2,1kinghenryvi,1590 countryman,2,1kinghenryvi,1590 match,2,1kinghenryvi,1590 garter,2,1kinghenryvi,1590 purpose,2,1kinghenryvi,1590 March,2,1kinghenryvi,1590 drooping,2,1kinghenryvi,1590 master's,2,1kinghenryvi,1590 Hearing,2,1kinghenryvi,1590 until,2,1kinghenryvi,1590 Two,2,1kinghenryvi,1590 trow,2,1kinghenryvi,1590 upbraid,2,1kinghenryvi,1590 tumult's,2,1kinghenryvi,1590 sounded,2,1kinghenryvi,1590 fewest,2,1kinghenryvi,1590 Signior,2,1kinghenryvi,1590 conduct,2,1kinghenryvi,1590 Another,2,1kinghenryvi,1590 chosen,2,1kinghenryvi,1590 Gaolers,2,1kinghenryvi,1590 lofty,2,1kinghenryvi,1590 Gascony,2,1kinghenryvi,1590 Sentinel,2,1kinghenryvi,1590 verified,2,1kinghenryvi,1590 pernicious,2,1kinghenryvi,1590 warriors,2,1kinghenryvi,1590 liege,2,1kinghenryvi,1590 inspired,2,1kinghenryvi,1590 marriage,2,1kinghenryvi,1590 dismiss,2,1kinghenryvi,1590 commonly,2,1kinghenryvi,1590 territories,2,1kinghenryvi,1590 recompense,2,1kinghenryvi,1590 harms,2,1kinghenryvi,1590 human,2,1kinghenryvi,1590 revenged,2,1kinghenryvi,1590 opportunity,2,1kinghenryvi,1590 nature,2,1kinghenryvi,1590 books,2,1kinghenryvi,1590 mouths,2,1kinghenryvi,1590 entrance,2,1kinghenryvi,1590 confirm,2,1kinghenryvi,1590 wrathful,2,1kinghenryvi,1590 Whoe'er,2,1kinghenryvi,1590 Lest,2,1kinghenryvi,1590 miseries,2,1kinghenryvi,1590 destroy,2,1kinghenryvi,1590 blessing,2,1kinghenryvi,1590 top,2,1kinghenryvi,1590 another's,2,1kinghenryvi,1590 wonders,2,1kinghenryvi,1590 Bring,2,1kinghenryvi,1590 certain,2,1kinghenryvi,1590 reverent,2,1kinghenryvi,1590 shake,2,1kinghenryvi,1590 Too,2,1kinghenryvi,1590 Christendom,2,1kinghenryvi,1590 quietly,2,1kinghenryvi,1590 gentler,2,1kinghenryvi,1590 Fain,2,1kinghenryvi,1590 Fair,2,1kinghenryvi,1590 tainted,2,1kinghenryvi,1590 reverenced,2,1kinghenryvi,1590 default,2,1kinghenryvi,1590 perhaps,2,1kinghenryvi,1590 undertake,2,1kinghenryvi,1590 dim,2,1kinghenryvi,1590 turn'd,2,1kinghenryvi,1590 exempt,2,1kinghenryvi,1590 woo'd,2,1kinghenryvi,1590 Tut,2,1kinghenryvi,1590 sway,2,1kinghenryvi,1590 attended,3,1kinghenryvi,1590 times,3,1kinghenryvi,1590 c,3,1kinghenryvi,1590 took,3,1kinghenryvi,1590 massacre,3,1kinghenryvi,1590 stately,3,1kinghenryvi,1590 lawful,3,1kinghenryvi,1590 suppose,3,1kinghenryvi,1590 speedy,3,1kinghenryvi,1590 held,3,1kinghenryvi,1590 Never,3,1kinghenryvi,1590 blossom,3,1kinghenryvi,1590 Cardinal,3,1kinghenryvi,1590 offer,3,1kinghenryvi,1590 appear,3,1kinghenryvi,1590 under,3,1kinghenryvi,1590 yonder,3,1kinghenryvi,1590 odds,3,1kinghenryvi,1590 bowels,3,1kinghenryvi,1590 become,3,1kinghenryvi,1590 rescued,3,1kinghenryvi,1590 Poor,3,1kinghenryvi,1590 passions,3,1kinghenryvi,1590 soon,3,1kinghenryvi,1590 draw,3,1kinghenryvi,1590 yourself,3,1kinghenryvi,1590 grown,3,1kinghenryvi,1590 Give,3,1kinghenryvi,1590 Only,3,1kinghenryvi,1590 golden,3,1kinghenryvi,1590 came,3,1kinghenryvi,1590 amity,3,1kinghenryvi,1590 began,3,1kinghenryvi,1590 cities,3,1kinghenryvi,1590 six,3,1kinghenryvi,1590 sin,3,1kinghenryvi,1590 bound,3,1kinghenryvi,1590 light,3,1kinghenryvi,1590 throne,3,1kinghenryvi,1590 peevish,3,1kinghenryvi,1590 forsake,3,1kinghenryvi,1590 skill,3,1kinghenryvi,1590 apparent,3,1kinghenryvi,1590 where's,3,1kinghenryvi,1590 disgrace,3,1kinghenryvi,1590 study,3,1kinghenryvi,1590 Thanks,3,1kinghenryvi,1590 pieces,3,1kinghenryvi,1590 play'd,3,1kinghenryvi,1590 betwixt,3,1kinghenryvi,1590 ourselves,3,1kinghenryvi,1590 accursed,3,1kinghenryvi,1590 Tush,3,1kinghenryvi,1590 terms,3,1kinghenryvi,1590 worthy,3,1kinghenryvi,1590 Armagnac,3,1kinghenryvi,1590 above,3,1kinghenryvi,1590 rush,3,1kinghenryvi,1590 soldier,3,1kinghenryvi,1590 parliament,3,1kinghenryvi,1590 know'st,3,1kinghenryvi,1590 wish,3,1kinghenryvi,1590 died,3,1kinghenryvi,1590 voice,3,1kinghenryvi,1590 desire,3,1kinghenryvi,1590 steel,3,1kinghenryvi,1590 ruled,3,1kinghenryvi,1590 alliance,3,1kinghenryvi,1590 hungry,3,1kinghenryvi,1590 sick,3,1kinghenryvi,1590 burning,3,1kinghenryvi,1590 wanting,3,1kinghenryvi,1590 At,3,1kinghenryvi,1590 Ah,3,1kinghenryvi,1590 mutiny,3,1kinghenryvi,1590 replete,3,1kinghenryvi,1590 patience,3,1kinghenryvi,1590 youthful,3,1kinghenryvi,1590 lance,3,1kinghenryvi,1590 assault,3,1kinghenryvi,1590 ladyship,3,1kinghenryvi,1590 enter'd,3,1kinghenryvi,1590 Legate,3,1kinghenryvi,1590 pleasure,3,1kinghenryvi,1590 ease,3,1kinghenryvi,1590 conqueror,3,1kinghenryvi,1590 Let's,3,1kinghenryvi,1590 pass,3,1kinghenryvi,1590 grandfather,3,1kinghenryvi,1590 heads,3,1kinghenryvi,1590 weep,3,1kinghenryvi,1590 sooner,3,1kinghenryvi,1590 woful,3,1kinghenryvi,1590 BEAUFORT,3,1kinghenryvi,1590 Behold,3,1kinghenryvi,1590 tedious,3,1kinghenryvi,1590 beget,3,1kinghenryvi,1590 despite,3,1kinghenryvi,1590 vows,3,1kinghenryvi,1590 used,3,1kinghenryvi,1590 'Twas,3,1kinghenryvi,1590 Whither,3,1kinghenryvi,1590 north,3,1kinghenryvi,1590 tower,3,1kinghenryvi,1590 deep,3,1kinghenryvi,1590 deer,3,1kinghenryvi,1590 promised,3,1kinghenryvi,1590 stood,3,1kinghenryvi,1590 beat,3,1kinghenryvi,1590 stoop,3,1kinghenryvi,1590 unworthy,3,1kinghenryvi,1590 redress,3,1kinghenryvi,1590 dower,3,1kinghenryvi,1590 forged,3,1kinghenryvi,1590 sack,3,1kinghenryvi,1590 memory,3,1kinghenryvi,1590 manner,3,1kinghenryvi,1590 Watch,3,1kinghenryvi,1590 that's,3,1kinghenryvi,1590 Mortimer,3,1kinghenryvi,1590 train,3,1kinghenryvi,1590 stout,3,1kinghenryvi,1590 loud,3,1kinghenryvi,1590 Sennet,3,1kinghenryvi,1590 hot,3,1kinghenryvi,1590 hark,3,1kinghenryvi,1590 valour,3,1kinghenryvi,1590 weapon,3,1kinghenryvi,1590 Christian,3,1kinghenryvi,1590 welcome,3,1kinghenryvi,1590 submit,3,1kinghenryvi,1590 hang,3,1kinghenryvi,1590 shut,3,1kinghenryvi,1590 deny,3,1kinghenryvi,1590 During,3,1kinghenryvi,1590 marching,3,1kinghenryvi,1590 pain,3,1kinghenryvi,1590 devise,3,1kinghenryvi,1590 bosom,3,1kinghenryvi,1590 except,3,1kinghenryvi,1590 fiend,3,1kinghenryvi,1590 Fastolfe,3,1kinghenryvi,1590 mayst,3,1kinghenryvi,1590 armour,3,1kinghenryvi,1590 Arc,3,1kinghenryvi,1590 chance,3,1kinghenryvi,1590 overborne,3,1kinghenryvi,1590 thanks,3,1kinghenryvi,1590 bought,3,1kinghenryvi,1590 change,3,1kinghenryvi,1590 nobles,3,1kinghenryvi,1590 witch,3,1kinghenryvi,1590 Command,3,1kinghenryvi,1590 keeps,3,1kinghenryvi,1590 equal,3,1kinghenryvi,1590 report,3,1kinghenryvi,1590 Lords,3,1kinghenryvi,1590 faith,3,1kinghenryvi,1590 almost,3,1kinghenryvi,1590 rare,3,1kinghenryvi,1590 bears,3,1kinghenryvi,1590 beard,3,1kinghenryvi,1590 things,3,1kinghenryvi,1590 spread,3,1kinghenryvi,1590 quickly,3,1kinghenryvi,1590 garden,3,1kinghenryvi,1590 churchmen,3,1kinghenryvi,1590 say'st,3,1kinghenryvi,1590 powers,3,1kinghenryvi,1590 mourn,3,1kinghenryvi,1590 Long,3,1kinghenryvi,1590 Eltham,3,1kinghenryvi,1590 already,3,1kinghenryvi,1590 wrought,3,1kinghenryvi,1590 mark,3,1kinghenryvi,1590 known,3,1kinghenryvi,1590 issue,3,1kinghenryvi,1590 because,3,1kinghenryvi,1590 leader,3,1kinghenryvi,1590 woo,3,1kinghenryvi,1590 flatter,3,1kinghenryvi,1590 Protector,3,1kinghenryvi,1590 GLANSDALE,3,1kinghenryvi,1590 need,3,1kinghenryvi,1590 letters,3,1kinghenryvi,1590 fire,3,1kinghenryvi,1590 breed,3,1kinghenryvi,1590 passage,3,1kinghenryvi,1590 renown,3,1kinghenryvi,1590 Shrewsbury,3,1kinghenryvi,1590 retire,3,1kinghenryvi,1590 style,3,1kinghenryvi,1590 five,3,1kinghenryvi,1590 win,3,1kinghenryvi,1590 court,3,1kinghenryvi,1590 martial,3,1kinghenryvi,1590 says,3,1kinghenryvi,1590 moment,3,1kinghenryvi,1590 allegiance,3,1kinghenryvi,1590 relent,3,1kinghenryvi,1590 Say,3,1kinghenryvi,1590 crown'd,3,1kinghenryvi,1590 flourish,3,1kinghenryvi,1590 rise,3,1kinghenryvi,1590 able,3,1kinghenryvi,1590 receive,3,1kinghenryvi,1590 between,3,1kinghenryvi,1590 themselves,3,1kinghenryvi,1590 surprised,3,1kinghenryvi,1590 taken,3,1kinghenryvi,1590 what's,3,1kinghenryvi,1590 wondrous,3,1kinghenryvi,1590 rain,3,1kinghenryvi,1590 wolf,3,1kinghenryvi,1590 angry,3,1kinghenryvi,1590 fail,3,1kinghenryvi,1590 grieve,3,1kinghenryvi,1590 durst,3,1kinghenryvi,1590 judge,3,1kinghenryvi,1590 delays,3,1kinghenryvi,1590 work,3,1kinghenryvi,1590 letter,3,1kinghenryvi,1590 palace,3,1kinghenryvi,1590 lordly,3,1kinghenryvi,1590 Unto,3,1kinghenryvi,1590 whither,3,1kinghenryvi,1590 bars,3,1kinghenryvi,1590 dastard,3,1kinghenryvi,1590 comfort,3,1kinghenryvi,1590 public,3,1kinghenryvi,1590 is't,3,1kinghenryvi,1590 coat,3,1kinghenryvi,1590 sufficient,3,1kinghenryvi,1590 perish,3,1kinghenryvi,1590 provoked,3,1kinghenryvi,1590 carry,3,1kinghenryvi,1590 asunder,3,1kinghenryvi,1590 shoot,3,1kinghenryvi,1590 clear,3,1kinghenryvi,1590 dangerous,3,1kinghenryvi,1590 Although,3,1kinghenryvi,1590 cowards,3,1kinghenryvi,1590 Gaoler,3,1kinghenryvi,1590 prayers,3,1kinghenryvi,1590 seas,3,1kinghenryvi,1590 always,3,1kinghenryvi,1590 Maine,3,1kinghenryvi,1590 aloof,3,1kinghenryvi,1590 use,3,1kinghenryvi,1590 seek,3,1kinghenryvi,1590 either,3,1kinghenryvi,1590 condition,3,1kinghenryvi,1590 cost,3,1kinghenryvi,1590 tidings,3,1kinghenryvi,1590 blame,3,1kinghenryvi,1590 hours,3,1kinghenryvi,1590 Meantime,3,1kinghenryvi,1590 led,3,1kinghenryvi,1590 Lieutenant,3,1kinghenryvi,1590 lie,3,1kinghenryvi,1590 pope,3,1kinghenryvi,1590 triumph,3,1kinghenryvi,1590 sleep,3,1kinghenryvi,1590 mad,3,1kinghenryvi,1590 least,3,1kinghenryvi,1590 begins,3,1kinghenryvi,1590 straight,3,1kinghenryvi,1590 met,3,1kinghenryvi,1590 treacherous,3,1kinghenryvi,1590 EARL,3,1kinghenryvi,1590 abuse,3,1kinghenryvi,1590 Except,3,1kinghenryvi,1590 whiles,3,1kinghenryvi,1590 citizens,3,1kinghenryvi,1590 levied,3,1kinghenryvi,1590 hurt,3,1kinghenryvi,1590 witness,3,1kinghenryvi,1590 Did,3,1kinghenryvi,1590 frame,3,1kinghenryvi,1590 begotten,3,1kinghenryvi,1590 success,3,1kinghenryvi,1590 shine,3,1kinghenryvi,1590 dame,3,1kinghenryvi,1590 Take,3,1kinghenryvi,1590 ambitious,3,1kinghenryvi,1590 cross,3,1kinghenryvi,1590 stomachs,3,1kinghenryvi,1590 forbear,3,1kinghenryvi,1590 obedience,3,1kinghenryvi,1590 oaths,3,1kinghenryvi,1590 Frenchmen's,3,1kinghenryvi,1590 e'er,3,1kinghenryvi,1590 Cambridge,4,1kinghenryvi,1590 regard,4,1kinghenryvi,1590 Nay,4,1kinghenryvi,1590 suffer,4,1kinghenryvi,1590 join,4,1kinghenryvi,1590 smiles,4,1kinghenryvi,1590 leisure,4,1kinghenryvi,1590 heir,4,1kinghenryvi,1590 speech,4,1kinghenryvi,1590 Fie,4,1kinghenryvi,1590 advantage,4,1kinghenryvi,1590 honours,4,1kinghenryvi,1590 haste,4,1kinghenryvi,1590 Wilt,4,1kinghenryvi,1590 joy,4,1kinghenryvi,1590 cardinal's,4,1kinghenryvi,1590 pray,4,1kinghenryvi,1590 contract,4,1kinghenryvi,1590 Must,4,1kinghenryvi,1590 sight,4,1kinghenryvi,1590 fury,4,1kinghenryvi,1590 sort,4,1kinghenryvi,1590 iron,4,1kinghenryvi,1590 care,4,1kinghenryvi,1590 Scout,4,1kinghenryvi,1590 After,4,1kinghenryvi,1590 highness,4,1kinghenryvi,1590 subjects,4,1kinghenryvi,1590 cheer,4,1kinghenryvi,1590 Methinks,4,1kinghenryvi,1590 black,4,1kinghenryvi,1590 view,4,1kinghenryvi,1590 execution,4,1kinghenryvi,1590 stands,4,1kinghenryvi,1590 enough,4,1kinghenryvi,1590 bastard,4,1kinghenryvi,1590 sea,4,1kinghenryvi,1590 suit,4,1kinghenryvi,1590 embrace,4,1kinghenryvi,1590 church,4,1kinghenryvi,1590 Such,4,1kinghenryvi,1590 Farewell,4,1kinghenryvi,1590 stern,4,1kinghenryvi,1590 wings,4,1kinghenryvi,1590 Servant,4,1kinghenryvi,1590 offence,4,1kinghenryvi,1590 broils,4,1kinghenryvi,1590 guarded,4,1kinghenryvi,1590 envious,4,1kinghenryvi,1590 after,4,1kinghenryvi,1590 princes,4,1kinghenryvi,1590 sun,4,1kinghenryvi,1590 malice,4,1kinghenryvi,1590 accept,4,1kinghenryvi,1590 Betwixt,4,1kinghenryvi,1590 flesh,4,1kinghenryvi,1590 want,4,1kinghenryvi,1590 ruin,4,1kinghenryvi,1590 join'd,4,1kinghenryvi,1590 matter,4,1kinghenryvi,1590 each,4,1kinghenryvi,1590 authority,4,1kinghenryvi,1590 pay,4,1kinghenryvi,1590 quarrel,4,1kinghenryvi,1590 hopes,4,1kinghenryvi,1590 proof,4,1kinghenryvi,1590 kings,4,1kinghenryvi,1590 ashes,4,1kinghenryvi,1590 tear,4,1kinghenryvi,1590 fatal,4,1kinghenryvi,1590 whole,4,1kinghenryvi,1590 nobility,4,1kinghenryvi,1590 glorious,4,1kinghenryvi,1590 yourselves,4,1kinghenryvi,1590 gave,4,1kinghenryvi,1590 behind,4,1kinghenryvi,1590 struck,4,1kinghenryvi,1590 prisoners,4,1kinghenryvi,1590 weal,4,1kinghenryvi,1590 captains,4,1kinghenryvi,1590 suddenly,4,1kinghenryvi,1590 amongst,4,1kinghenryvi,1590 longer,4,1kinghenryvi,1590 Like,4,1kinghenryvi,1590 beds,4,1kinghenryvi,1590 pitch,4,1kinghenryvi,1590 quite,4,1kinghenryvi,1590 ghost,4,1kinghenryvi,1590 virgin,4,1kinghenryvi,1590 servant,4,1kinghenryvi,1590 favour,4,1kinghenryvi,1590 tawny,4,1kinghenryvi,1590 gain,4,1kinghenryvi,1590 dear,4,1kinghenryvi,1590 vouchsafe,4,1kinghenryvi,1590 boast,4,1kinghenryvi,1590 privilege,4,1kinghenryvi,1590 thyself,4,1kinghenryvi,1590 feast,4,1kinghenryvi,1590 Temple,4,1kinghenryvi,1590 wherein,4,1kinghenryvi,1590 lose,4,1kinghenryvi,1590 knee,4,1kinghenryvi,1590 choice,4,1kinghenryvi,1590 nation,4,1kinghenryvi,1590 call'd,4,1kinghenryvi,1590 skirmish,4,1kinghenryvi,1590 return'd,4,1kinghenryvi,1590 money,4,1kinghenryvi,1590 stones,4,1kinghenryvi,1590 shot,4,1kinghenryvi,1590 dreadful,4,1kinghenryvi,1590 tyranny,4,1kinghenryvi,1590 maiden,4,1kinghenryvi,1590 secret,4,1kinghenryvi,1590 Hark,4,1kinghenryvi,1590 broke,4,1kinghenryvi,1590 George,4,1kinghenryvi,1590 restored,4,1kinghenryvi,1590 DUKE,4,1kinghenryvi,1590 castle,4,1kinghenryvi,1590 silence,4,1kinghenryvi,1590 remedy,4,1kinghenryvi,1590 strike,4,1kinghenryvi,1590 Bastard,4,1kinghenryvi,1590 awhile,4,1kinghenryvi,1590 famous,4,1kinghenryvi,1590 placed,4,1kinghenryvi,1590 yours,4,1kinghenryvi,1590 end,4,1kinghenryvi,1590 didst,4,1kinghenryvi,1590 chief,4,1kinghenryvi,1590 coward,4,1kinghenryvi,1590 knows,4,1kinghenryvi,1590 state,4,1kinghenryvi,1590 let's,4,1kinghenryvi,1590 benefit,4,1kinghenryvi,1590 Were,4,1kinghenryvi,1590 same,4,1kinghenryvi,1590 thing,4,1kinghenryvi,1590 why,4,1kinghenryvi,1590 third,4,1kinghenryvi,1590 heard,4,1kinghenryvi,1590 intend,4,1kinghenryvi,1590 found,4,1kinghenryvi,1590 SIR,4,1kinghenryvi,1590 news,4,1kinghenryvi,1590 Till,4,1kinghenryvi,1590 wert,4,1kinghenryvi,1590 three,4,1kinghenryvi,1590 company,4,1kinghenryvi,1590 roses,4,1kinghenryvi,1590 ta'en,4,1kinghenryvi,1590 depart,4,1kinghenryvi,1590 reproach,4,1kinghenryvi,1590 gentleman,4,1kinghenryvi,1590 fast,4,1kinghenryvi,1590 Welcome,4,1kinghenryvi,1590 reason,4,1kinghenryvi,1590 stroke,4,1kinghenryvi,1590 given,4,1kinghenryvi,1590 Regent,4,1kinghenryvi,1590 argument,4,1kinghenryvi,1590 WOODVILE,4,1kinghenryvi,1590 wife,4,1kinghenryvi,1590 hearts,4,1kinghenryvi,1590 prithee,4,1kinghenryvi,1590 swear,4,1kinghenryvi,1590 aught,4,1kinghenryvi,1590 conclude,4,1kinghenryvi,1590 corn,4,1kinghenryvi,1590 traitor,4,1kinghenryvi,1590 secure,4,1kinghenryvi,1590 Edward,4,1kinghenryvi,1590 hither,4,1kinghenryvi,1590 together,4,1kinghenryvi,1590 goes,4,1kinghenryvi,1590 persuade,4,1kinghenryvi,1590 limbs,4,1kinghenryvi,1590 burst,4,1kinghenryvi,1590 beauty,4,1kinghenryvi,1590 attend,4,1kinghenryvi,1590 prelate,4,1kinghenryvi,1590 regent,4,1kinghenryvi,1590 behold,4,1kinghenryvi,1590 flower,4,1kinghenryvi,1590 private,4,1kinghenryvi,1590 ten,4,1kinghenryvi,1590 woman,4,1kinghenryvi,1590 shape,4,1kinghenryvi,1590 sharp,4,1kinghenryvi,1590 women,4,1kinghenryvi,1590 truce,5,1kinghenryvi,1590 guard,5,1kinghenryvi,1590 days,5,1kinghenryvi,1590 Warwick,5,1kinghenryvi,1590 horse,5,1kinghenryvi,1590 discord,5,1kinghenryvi,1590 royal,5,1kinghenryvi,1590 rather,5,1kinghenryvi,1590 Dauphin's,5,1kinghenryvi,1590 while,5,1kinghenryvi,1590 drum,5,1kinghenryvi,1590 withal,5,1kinghenryvi,1590 Warder,5,1kinghenryvi,1590 lies,5,1kinghenryvi,1590 Sergeant,5,1kinghenryvi,1590 Lawyer,5,1kinghenryvi,1590 case,5,1kinghenryvi,1590 mercy,5,1kinghenryvi,1590 Soldier,5,1kinghenryvi,1590 reign,5,1kinghenryvi,1590 Whose,5,1kinghenryvi,1590 noise,5,1kinghenryvi,1590 Beside,5,1kinghenryvi,1590 sir,5,1kinghenryvi,1590 nothing,5,1kinghenryvi,1590 warrant,5,1kinghenryvi,1590 worth,5,1kinghenryvi,1590 Out,5,1kinghenryvi,1590 born,5,1kinghenryvi,1590 humble,5,1kinghenryvi,1590 feet,5,1kinghenryvi,1590 horsemen,5,1kinghenryvi,1590 Gunner,5,1kinghenryvi,1590 overthrow,5,1kinghenryvi,1590 deeds,5,1kinghenryvi,1590 desperate,5,1kinghenryvi,1590 On,5,1kinghenryvi,1590 earl,5,1kinghenryvi,1590 prove,5,1kinghenryvi,1590 Open,5,1kinghenryvi,1590 grief,5,1kinghenryvi,1590 burn,5,1kinghenryvi,1590 dost,5,1kinghenryvi,1590 shadow,5,1kinghenryvi,1590 conquest,5,1kinghenryvi,1590 degree,5,1kinghenryvi,1590 curse,5,1kinghenryvi,1590 breath,5,1kinghenryvi,1590 victory,5,1kinghenryvi,1590 priest,5,1kinghenryvi,1590 bodies,5,1kinghenryvi,1590 Second,5,1kinghenryvi,1590 whereof,5,1kinghenryvi,1590 less,5,1kinghenryvi,1590 pure,5,1kinghenryvi,1590 presume,5,1kinghenryvi,1590 brought,5,1kinghenryvi,1590 General,5,1kinghenryvi,1590 Lady,5,1kinghenryvi,1590 liberty,5,1kinghenryvi,1590 praise,5,1kinghenryvi,1590 open,5,1kinghenryvi,1590 arm,5,1kinghenryvi,1590 Are,5,1kinghenryvi,1590 far,5,1kinghenryvi,1590 Madam,5,1kinghenryvi,1590 peers,5,1kinghenryvi,1590 mischief,5,1kinghenryvi,1590 faction,5,1kinghenryvi,1590 Flourish,5,1kinghenryvi,1590 ours,5,1kinghenryvi,1590 substance,5,1kinghenryvi,1590 Porter,5,1kinghenryvi,1590 youth,5,1kinghenryvi,1590 several,5,1kinghenryvi,1590 general,5,1kinghenryvi,1590 very,5,1kinghenryvi,1590 mind,5,1kinghenryvi,1590 chair,5,1kinghenryvi,1590 presently,5,1kinghenryvi,1590 comes,5,1kinghenryvi,1590 trouble,5,1kinghenryvi,1590 wrongs,5,1kinghenryvi,1590 We'll,5,1kinghenryvi,1590 haughty,5,1kinghenryvi,1590 pride,5,1kinghenryvi,1590 dying,5,1kinghenryvi,1590 cursed,5,1kinghenryvi,1590 consent,5,1kinghenryvi,1590 ground,5,1kinghenryvi,1590 fortune,5,1kinghenryvi,1590 methinks,5,1kinghenryvi,1590 wounds,5,1kinghenryvi,1590 Naples,5,1kinghenryvi,1590 Boy,5,1kinghenryvi,1590 hour,5,1kinghenryvi,1590 excursions,5,1kinghenryvi,1590 strong,5,1kinghenryvi,1590 country's,5,1kinghenryvi,1590 alone,5,1kinghenryvi,1590 torch,5,1kinghenryvi,1590 spite,5,1kinghenryvi,1590 bishop,5,1kinghenryvi,1590 remember,5,1kinghenryvi,1590 thoughts,5,1kinghenryvi,1590 Great,5,1kinghenryvi,1590 Away,5,1kinghenryvi,1590 terror,5,1kinghenryvi,1590 Man,5,1kinghenryvi,1590 slay,5,1kinghenryvi,1590 rescue,5,1kinghenryvi,1590 himself,5,1kinghenryvi,1590 lady,5,1kinghenryvi,1590 red,6,1kinghenryvi,1590 Bedford,6,1kinghenryvi,1590 honourable,6,1kinghenryvi,1590 tears,6,1kinghenryvi,1590 Whom,6,1kinghenryvi,1590 cheeks,6,1kinghenryvi,1590 afterwards,6,1kinghenryvi,1590 scourge,6,1kinghenryvi,1590 virtuous,6,1kinghenryvi,1590 Pole,6,1kinghenryvi,1590 looks,6,1kinghenryvi,1590 gather,6,1kinghenryvi,1590 Our,6,1kinghenryvi,1590 heaven,6,1kinghenryvi,1590 dies,6,1kinghenryvi,1590 bold,6,1kinghenryvi,1590 coats,6,1kinghenryvi,1590 Do,6,1kinghenryvi,1590 nephew,6,1kinghenryvi,1590 sign,6,1kinghenryvi,1590 Had,6,1kinghenryvi,1590 troops,6,1kinghenryvi,1590 treachery,6,1kinghenryvi,1590 Re,6,1kinghenryvi,1590 God's,6,1kinghenryvi,1590 half,6,1kinghenryvi,1590 city,6,1kinghenryvi,1590 foot,6,1kinghenryvi,1590 though,6,1kinghenryvi,1590 combat,6,1kinghenryvi,1590 GARGRAVE,6,1kinghenryvi,1590 Should,6,1kinghenryvi,1590 Between,6,1kinghenryvi,1590 Else,6,1kinghenryvi,1590 eye,6,1kinghenryvi,1590 Therefore,6,1kinghenryvi,1590 child,6,1kinghenryvi,1590 courage,6,1kinghenryvi,1590 Third,6,1kinghenryvi,1590 sake,6,1kinghenryvi,1590 only,6,1kinghenryvi,1590 loving,6,1kinghenryvi,1590 flight,6,1kinghenryvi,1590 Thus,6,1kinghenryvi,1590 duty,6,1kinghenryvi,1590 prevail,6,1kinghenryvi,1590 rage,6,1kinghenryvi,1590 face,6,1kinghenryvi,1590 happy,6,1kinghenryvi,1590 fame,6,1kinghenryvi,1590 word,6,1kinghenryvi,1590 even,6,1kinghenryvi,1590 till,6,1kinghenryvi,1590 lay,6,1kinghenryvi,1590 gentlemen,6,1kinghenryvi,1590 hold,6,1kinghenryvi,1590 dissension,6,1kinghenryvi,1590 captain,6,1kinghenryvi,1590 battle,6,1kinghenryvi,1590 cry,6,1kinghenryvi,1590 countrymen,6,1kinghenryvi,1590 return,6,1kinghenryvi,1590 spirits,6,1kinghenryvi,1590 last,6,1kinghenryvi,1590 being,6,1kinghenryvi,1590 content,6,1kinghenryvi,1590 without,6,1kinghenryvi,1590 kind,6,1kinghenryvi,1590 parley,6,1kinghenryvi,1590 market,6,1kinghenryvi,1590 order,6,1kinghenryvi,1590 enemy,6,1kinghenryvi,1590 treason,7,1kinghenryvi,1590 thought,7,1kinghenryvi,1590 Stay,7,1kinghenryvi,1590 Either,7,1kinghenryvi,1590 maintain,7,1kinghenryvi,1590 run,7,1kinghenryvi,1590 years,7,1kinghenryvi,1590 hear,7,1kinghenryvi,1590 full,7,1kinghenryvi,1590 Nor,7,1kinghenryvi,1590 Aside,7,1kinghenryvi,1590 within,7,1kinghenryvi,1590 vile,7,1kinghenryvi,1590 heavens,7,1kinghenryvi,1590 white,7,1kinghenryvi,1590 false,7,1kinghenryvi,1590 One,7,1kinghenryvi,1590 friend,7,1kinghenryvi,1590 else,7,1kinghenryvi,1590 proud,7,1kinghenryvi,1590 Good,7,1kinghenryvi,1590 best,7,1kinghenryvi,1590 down,7,1kinghenryvi,1590 gone,7,1kinghenryvi,1590 said,7,1kinghenryvi,1590 breast,7,1kinghenryvi,1590 raise,7,1kinghenryvi,1590 de,7,1kinghenryvi,1590 Master,7,1kinghenryvi,1590 crave,7,1kinghenryvi,1590 earth,7,1kinghenryvi,1590 la,7,1kinghenryvi,1590 ill,7,1kinghenryvi,1590 Because,7,1kinghenryvi,1590 pale,7,1kinghenryvi,1590 revenge,7,1kinghenryvi,1590 enemies,7,1kinghenryvi,1590 new,7,1kinghenryvi,1590 march,7,1kinghenryvi,1590 watch,7,1kinghenryvi,1590 gentle,7,1kinghenryvi,1590 tender,7,1kinghenryvi,1590 slain,7,1kinghenryvi,1590 She,7,1kinghenryvi,1590 high,7,1kinghenryvi,1590 strife,7,1kinghenryvi,1590 CARDINAL,7,1kinghenryvi,1590 won,7,1kinghenryvi,1590 get,7,1kinghenryvi,1590 grave,7,1kinghenryvi,1590 stand,7,1kinghenryvi,1590 way,7,1kinghenryvi,1590 own,7,1kinghenryvi,1590 next,7,1kinghenryvi,1590 ransom,7,1kinghenryvi,1590 foe,7,1kinghenryvi,1590 colours,7,1kinghenryvi,1590 Shepherd,7,1kinghenryvi,1590 large,7,1kinghenryvi,1590 talk,7,1kinghenryvi,1590 seen,7,1kinghenryvi,1590 send,7,1kinghenryvi,1590 Anjou,7,1kinghenryvi,1590 try,7,1kinghenryvi,1590 follow,7,1kinghenryvi,1590 Frenchmen,8,1kinghenryvi,1590 Alencon,8,1kinghenryvi,1590 meet,8,1kinghenryvi,1590 trust,8,1kinghenryvi,1590 Upon,8,1kinghenryvi,1590 charge,8,1kinghenryvi,1590 head,8,1kinghenryvi,1590 another,8,1kinghenryvi,1590 Not,8,1kinghenryvi,1590 scorn,8,1kinghenryvi,1590 Was,8,1kinghenryvi,1590 William,8,1kinghenryvi,1590 bring,8,1kinghenryvi,1590 boy,8,1kinghenryvi,1590 siege,8,1kinghenryvi,1590 force,8,1kinghenryvi,1590 Her,8,1kinghenryvi,1590 Go,8,1kinghenryvi,1590 weak,8,1kinghenryvi,1590 'tis,8,1kinghenryvi,1590 Soldiers,8,1kinghenryvi,1590 left,8,1kinghenryvi,1590 hands,8,1kinghenryvi,1590 FASTOLFE,8,1kinghenryvi,1590 Yes,8,1kinghenryvi,1590 pluck,8,1kinghenryvi,1590 right,8,1kinghenryvi,1590 maid,8,1kinghenryvi,1590 free,8,1kinghenryvi,1590 near,8,1kinghenryvi,1590 thine,8,1kinghenryvi,1590 army,8,1kinghenryvi,1590 duke,8,1kinghenryvi,1590 Bourdeaux,8,1kinghenryvi,1590 fair,8,1kinghenryvi,1590 please,8,1kinghenryvi,1590 hope,8,1kinghenryvi,1590 law,8,1kinghenryvi,1590 lives,8,1kinghenryvi,1590 sound,8,1kinghenryvi,1590 house,8,1kinghenryvi,1590 sent,8,1kinghenryvi,1590 madam,8,1kinghenryvi,1590 poor,8,1kinghenryvi,1590 Since,8,1kinghenryvi,1590 fled,8,1kinghenryvi,1590 live,8,1kinghenryvi,1590 Fifth,8,1kinghenryvi,1590 sudden,8,1kinghenryvi,1590 command,8,1kinghenryvi,1590 power,8,1kinghenryvi,1590 brave,9,1kinghenryvi,1590 V,9,1kinghenryvi,1590 country,9,1kinghenryvi,1590 hell,9,1kinghenryvi,1590 prisoner,9,1kinghenryvi,1590 strength,9,1kinghenryvi,1590 birth,9,1kinghenryvi,1590 gracious,9,1kinghenryvi,1590 sure,9,1kinghenryvi,1590 call,9,1kinghenryvi,1590 towns,9,1kinghenryvi,1590 body,9,1kinghenryvi,1590 wrong,9,1kinghenryvi,1590 These,9,1kinghenryvi,1590 There,9,1kinghenryvi,1590 wars,9,1kinghenryvi,1590 mean,9,1kinghenryvi,1590 III,9,1kinghenryvi,1590 since,9,1kinghenryvi,1590 Speak,9,1kinghenryvi,1590 farewell,9,1kinghenryvi,1590 aid,9,1kinghenryvi,1590 bear,9,1kinghenryvi,1590 loss,9,1kinghenryvi,1590 Suffolk,9,1kinghenryvi,1590 those,9,1kinghenryvi,1590 part,9,1kinghenryvi,1590 More,9,1kinghenryvi,1590 speak,9,1kinghenryvi,1590 Alarum,9,1kinghenryvi,1590 Have,9,1kinghenryvi,1590 through,9,1kinghenryvi,1590 From,9,1kinghenryvi,1590 See,9,1kinghenryvi,1590 All,9,1kinghenryvi,1590 break,9,1kinghenryvi,1590 save,9,1kinghenryvi,1590 'Tis,9,1kinghenryvi,1590 knight,9,1kinghenryvi,1590 ever,9,1kinghenryvi,1590 perceive,9,1kinghenryvi,1590 thousand,9,1kinghenryvi,1590 holy,9,1kinghenryvi,1590 eyes,9,1kinghenryvi,1590 SALISBURY,9,1kinghenryvi,1590 we'll,9,1kinghenryvi,1590 Captain,9,1kinghenryvi,1590 might,9,1kinghenryvi,1590 John,10,1kinghenryvi,1590 world,10,1kinghenryvi,1590 Who,10,1kinghenryvi,1590 better,10,1kinghenryvi,1590 turn,10,1kinghenryvi,1590 about,10,1kinghenryvi,1590 foes,10,1kinghenryvi,1590 Within,10,1kinghenryvi,1590 II,10,1kinghenryvi,1590 night,10,1kinghenryvi,1590 valiant,10,1kinghenryvi,1590 whose,10,1kinghenryvi,1590 wear,10,1kinghenryvi,1590 Saint,10,1kinghenryvi,1590 tongue,10,1kinghenryvi,1590 look,10,1kinghenryvi,1590 age,10,1kinghenryvi,1590 Yet,10,1kinghenryvi,1590 little,10,1kinghenryvi,1590 Than,10,1kinghenryvi,1590 Sir,10,1kinghenryvi,1590 myself,10,1kinghenryvi,1590 gates,10,1kinghenryvi,1590 war,10,1kinghenryvi,1590 London,10,1kinghenryvi,1590 fall,10,1kinghenryvi,1590 queen,10,1kinghenryvi,1590 forces,10,1kinghenryvi,1590 warlike,10,1kinghenryvi,1590 makes,10,1kinghenryvi,1590 sovereign,10,1kinghenryvi,1590 true,10,1kinghenryvi,1590 cannot,10,1kinghenryvi,1590 princely,10,1kinghenryvi,1590 dare,10,1kinghenryvi,1590 spirit,10,1kinghenryvi,1590 Will,11,1kinghenryvi,1590 every,11,1kinghenryvi,1590 yield,11,1kinghenryvi,1590 cause,11,1kinghenryvi,1590 mother,11,1kinghenryvi,1590 Mayor,11,1kinghenryvi,1590 others,11,1kinghenryvi,1590 Tower,11,1kinghenryvi,1590 alarum,11,1kinghenryvi,1590 means,11,1kinghenryvi,1590 BASSET,11,1kinghenryvi,1590 field,11,1kinghenryvi,1590 forth,11,1kinghenryvi,1590 hast,11,1kinghenryvi,1590 Hath,11,1kinghenryvi,1590 majesty,11,1kinghenryvi,1590 many,11,1kinghenryvi,1590 soldiers,11,1kinghenryvi,1590 father's,11,1kinghenryvi,1590 Reignier,11,1kinghenryvi,1590 still,11,1kinghenryvi,1590 Well,11,1kinghenryvi,1590 old,11,1kinghenryvi,1590 wilt,11,1kinghenryvi,1590 back,11,1kinghenryvi,1590 sweet,11,1kinghenryvi,1590 glory,11,1kinghenryvi,1590 shame,11,1kinghenryvi,1590 crown,11,1kinghenryvi,1590 much,12,1kinghenryvi,1590 help,12,1kinghenryvi,1590 truth,12,1kinghenryvi,1590 Come,12,1kinghenryvi,1590 town,12,1kinghenryvi,1590 Why,12,1kinghenryvi,1590 against,12,1kinghenryvi,1590 daughter,12,1kinghenryvi,1590 Plantagenet,12,1kinghenryvi,1590 tell,12,1kinghenryvi,1590 An,12,1kinghenryvi,1590 canst,12,1kinghenryvi,1590 IV,12,1kinghenryvi,1590 done,12,1kinghenryvi,1590 lost,12,1kinghenryvi,1590 prince,12,1kinghenryvi,1590 before,12,1kinghenryvi,1590 who,12,1kinghenryvi,1590 off,12,1kinghenryvi,1590 England's,12,1kinghenryvi,1590 find,12,1kinghenryvi,1590 base,12,1kinghenryvi,1590 Paris,12,1kinghenryvi,1590 Rouen,12,1kinghenryvi,1590 Where,12,1kinghenryvi,1590 Thy,12,1kinghenryvi,1590 shalt,12,1kinghenryvi,1590 in,268,1kinghenryvi,1590 answer,13,1kinghenryvi,1590 friends,13,1kinghenryvi,1590 hence,13,1kinghenryvi,1590 protector,13,1kinghenryvi,1590 stay,13,1kinghenryvi,1590 enter,13,1kinghenryvi,1590 go,13,1kinghenryvi,1590 made,13,1kinghenryvi,1590 into,13,1kinghenryvi,1590 ere,13,1kinghenryvi,1590 over,13,1kinghenryvi,1590 MORTIMER,13,1kinghenryvi,1590 Before,13,1kinghenryvi,1590 two,13,1kinghenryvi,1590 Margaret,14,1kinghenryvi,1590 ',14,1kinghenryvi,1590 Henry's,14,1kinghenryvi,1590 Ay,14,1kinghenryvi,1590 long,14,1kinghenryvi,1590 realm,14,1kinghenryvi,1590 keep,14,1kinghenryvi,1590 nor,14,1kinghenryvi,1590 could,14,1kinghenryvi,1590 think,14,1kinghenryvi,1590 AUVERGNE,14,1kinghenryvi,1590 time,14,1kinghenryvi,1590 whom,14,1kinghenryvi,1590 late,14,1kinghenryvi,1590 other,14,1kinghenryvi,1590 COUNTESS,15,1kinghenryvi,1590 soul,15,1kinghenryvi,1590 both,15,1kinghenryvi,1590 therefore,15,1kinghenryvi,1590 Be,15,1kinghenryvi,1590 most,15,1kinghenryvi,1590 Your,15,1kinghenryvi,1590 young,15,1kinghenryvi,1590 ne'er,15,1kinghenryvi,1590 Talbot's,15,1kinghenryvi,1590 Pucelle,15,1kinghenryvi,1590 Salisbury,15,1kinghenryvi,1590 Joan,16,1kinghenryvi,1590 words,16,1kinghenryvi,1590 His,16,1kinghenryvi,1590 Is,16,1kinghenryvi,1590 Which,16,1kinghenryvi,1590 place,16,1kinghenryvi,1590 rose,16,1kinghenryvi,1590 walls,16,1kinghenryvi,1590 Earl,16,1kinghenryvi,1590 too,16,1kinghenryvi,1590 set,17,1kinghenryvi,1590 son,17,1kinghenryvi,1590 dead,17,1kinghenryvi,1590 know,17,1kinghenryvi,1590 hand,17,1kinghenryvi,1590 none,17,1kinghenryvi,1590 Richard,17,1kinghenryvi,1590 bloody,17,1kinghenryvi,1590 once,17,1kinghenryvi,1590 Shall,17,1kinghenryvi,1590 Winchester,17,1kinghenryvi,1590 Serving,17,1kinghenryvi,1590 leave,17,1kinghenryvi,1590 JOHN,17,1kinghenryvi,1590 Burgundy,18,1kinghenryvi,1590 away,18,1kinghenryvi,1590 sword,18,1kinghenryvi,1590 rest,18,1kinghenryvi,1590 side,18,1kinghenryvi,1590 VERNON,18,1kinghenryvi,1590 can,18,1kinghenryvi,1590 up,18,1kinghenryvi,1590 They,18,1kinghenryvi,1590 uncle,18,1kinghenryvi,1590 first,18,1kinghenryvi,1590 die,18,1kinghenryvi,1590 Gloucester,19,1kinghenryvi,1590 With,19,1kinghenryvi,1590 fear,19,1kinghenryvi,1590 name,19,1kinghenryvi,1590 LUCY,19,1kinghenryvi,1590 God,19,1kinghenryvi,1590 You,19,1kinghenryvi,1590 an,19,1kinghenryvi,1590 Let,19,1kinghenryvi,1590 England,19,1kinghenryvi,1590 thus,19,1kinghenryvi,1590 some,20,1kinghenryvi,1590 honour,20,1kinghenryvi,1590 We,20,1kinghenryvi,1590 First,20,1kinghenryvi,1590 where,20,1kinghenryvi,1590 mine,20,1kinghenryvi,1590 When,20,1kinghenryvi,1590 must,21,1kinghenryvi,1590 No,21,1kinghenryvi,1590 He,21,1kinghenryvi,1590 It,21,1kinghenryvi,1590 any,21,1kinghenryvi,1590 again,21,1kinghenryvi,1590 Messenger,21,1kinghenryvi,1590 never,22,1kinghenryvi,1590 Of,22,1kinghenryvi,1590 grace,22,1kinghenryvi,1590 day,22,1kinghenryvi,1590 EXETER,22,1kinghenryvi,1590 ORLEANS,23,1kinghenryvi,1590 BASTARD,23,1kinghenryvi,1590 By,23,1kinghenryvi,1590 Dauphin,23,1kinghenryvi,1590 good,23,1kinghenryvi,1590 been,23,1kinghenryvi,1590 how,23,1kinghenryvi,1590 ye,23,1kinghenryvi,1590 Somerset,23,1kinghenryvi,1590 say,24,1kinghenryvi,1590 see,24,1kinghenryvi,1590 Charles,24,1kinghenryvi,1590 love,24,1kinghenryvi,1590 How,24,1kinghenryvi,1590 King,24,1kinghenryvi,1590 Thou,24,1kinghenryvi,1590 arms,24,1kinghenryvi,1590 father,24,1kinghenryvi,1590 Orleans,25,1kinghenryvi,1590 noble,25,1kinghenryvi,1590 heart,25,1kinghenryvi,1590 well,25,1kinghenryvi,1590 great,25,1kinghenryvi,1590 take,25,1kinghenryvi,1590 MARGARET,25,1kinghenryvi,1590 a,281,1kinghenryvi,1590 which,26,1kinghenryvi,1590 life,26,1kinghenryvi,1590 art,26,1kinghenryvi,1590 fly,26,1kinghenryvi,1590 BURGUNDY,26,1kinghenryvi,1590 when,26,1kinghenryvi,1590 BEDFORD,27,1kinghenryvi,1590 fight,27,1kinghenryvi,1590 had,27,1kinghenryvi,1590 yet,27,1kinghenryvi,1590 ACT,27,1kinghenryvi,1590 there,28,1kinghenryvi,1590 give,28,1kinghenryvi,1590 Then,28,1kinghenryvi,1590 York,28,1kinghenryvi,1590 did,28,1kinghenryvi,1590 SCENE,28,1kinghenryvi,1590 peace,29,1kinghenryvi,1590 upon,29,1kinghenryvi,1590 Here,29,1kinghenryvi,1590 This,29,1kinghenryvi,1590 English,29,1kinghenryvi,1590 Duke,30,1kinghenryvi,1590 blood,30,1kinghenryvi,1590 So,30,1kinghenryvi,1590 make,30,1kinghenryvi,1590 one,30,1kinghenryvi,1590 let,30,1kinghenryvi,1590 men,30,1kinghenryvi,1590 ALENCON,31,1kinghenryvi,1590 than,31,1kinghenryvi,1590 French,31,1kinghenryvi,1590 unto,31,1kinghenryvi,1590 Exit,31,1kinghenryvi,1590 such,32,1kinghenryvi,1590 RICHARD,32,1kinghenryvi,1590 Or,32,1kinghenryvi,1590 BISHOP,32,1kinghenryvi,1590 come,32,1kinghenryvi,1590 PLANTAGENET,32,1kinghenryvi,1590 What,32,1kinghenryvi,1590 my,288,1kinghenryvi,1590 As,33,1kinghenryvi,1590 doth,33,1kinghenryvi,1590 WARWICK,33,1kinghenryvi,1590 And,289,1kinghenryvi,1590 Now,34,1kinghenryvi,1590 she,34,1kinghenryvi,1590 In,34,1kinghenryvi,1590 more,34,1kinghenryvi,1590 SOMERSET,34,1kinghenryvi,1590 man,34,1kinghenryvi,1590 these,35,1kinghenryvi,1590 were,35,1kinghenryvi,1590 Exeunt,36,1kinghenryvi,1590 should,36,1kinghenryvi,1590 REIGNIER,36,1kinghenryvi,1590 My,37,1kinghenryvi,1590 Henry,37,1kinghenryvi,1590 WINCHESTER,38,1kinghenryvi,1590 YORK,38,1kinghenryvi,1590 lords,38,1kinghenryvi,1590 O,39,1kinghenryvi,1590 would,39,1kinghenryvi,1590 If,40,1kinghenryvi,1590 now,40,1kinghenryvi,1590 out,40,1kinghenryvi,1590 then,41,1kinghenryvi,1590 hath,41,1kinghenryvi,1590 Lord,41,1kinghenryvi,1590 of,554,1kinghenryvi,1590 A,44,1kinghenryvi,1590 death,44,1kinghenryvi,1590 here,45,1kinghenryvi,1590 them,45,1kinghenryvi,1590 like,47,1kinghenryvi,1590 may,47,1kinghenryvi,1590 us,48,1kinghenryvi,1590 king,48,1kinghenryvi,1590 For,49,1kinghenryvi,1590 if,49,1kinghenryvi,1590 SUFFOLK,49,1kinghenryvi,1590 am,51,1kinghenryvi,1590 they,53,1kinghenryvi,1590 CHARLES,53,1kinghenryvi,1590 was,55,1kinghenryvi,1590 do,56,1kinghenryvi,1590 or,57,1kinghenryvi,1590 I'll,58,1kinghenryvi,1590 GLOUCESTER,60,1kinghenryvi,1590 what,61,1kinghenryvi,1590 at,62,1kinghenryvi,1590 PUCELLE,64,1kinghenryvi,1590 LA,64,1kinghenryvi,1590 lord,64,1kinghenryvi,1590 JOAN,64,1kinghenryvi,1590 KING,65,1kinghenryvi,1590 VI,65,1kinghenryvi,1590 their,65,1kinghenryvi,1590 HENRY,66,1kinghenryvi,1590 are,69,1kinghenryvi,1590 France,70,1kinghenryvi,1590 Enter,70,1kinghenryvi,1590 no,71,1kinghenryvi,1590 But,71,1kinghenryvi,1590 her,72,1kinghenryvi,1590 by,73,1kinghenryvi,1590 from,74,1kinghenryvi,1590 Talbot,75,1kinghenryvi,1590 all,76,1kinghenryvi,1590 on,76,1kinghenryvi,1590 shall,78,1kinghenryvi,1590 him,81,1kinghenryvi,1590 That,81,1kinghenryvi,1590 as,82,1kinghenryvi,1590 OF,83,1kinghenryvi,1590 To,86,1kinghenryvi,1590 but,86,1kinghenryvi,1590 our,87,1kinghenryvi,1590 he,90,1kinghenryvi,1590 TALBOT,92,1kinghenryvi,1590 it,93,1kinghenryvi,1590 The,93,1kinghenryvi,1590 we,95,1kinghenryvi,1590 so,97,1kinghenryvi,1590 thee,101,1kinghenryvi,1590 have,115,1kinghenryvi,1590 the,634,1kinghenryvi,1590 for,134,1kinghenryvi,1590 your,138,1kinghenryvi,1590 will,140,1kinghenryvi,1590 me,145,1kinghenryvi,1590 to,402,1kinghenryvi,1590 thou,150,1kinghenryvi,1590 thy,157,1kinghenryvi,1590 this,158,1kinghenryvi,1590 you,162,1kinghenryvi,1590 not,170,1kinghenryvi,1590 that,173,1kinghenryvi,1590 I,435,1kinghenryvi,1590 is,189,1kinghenryvi,1590 his,190,1kinghenryvi,1590 and,459,1kinghenryvi,1590 be,217,1kinghenryvi,1590 with,225,1kinghenryvi,1590 Changes,1,2kinghenryiv,1598 cheque'd,1,2kinghenryiv,1598 slops,1,2kinghenryiv,1598 silken,1,2kinghenryiv,1598 answered,1,2kinghenryiv,1598 surmise,1,2kinghenryiv,1598 religion,1,2kinghenryiv,1598 advanced,1,2kinghenryiv,1598 generation,1,2kinghenryiv,1598 brawl,1,2kinghenryiv,1598 troubled,1,2kinghenryiv,1598 regard,1,2kinghenryiv,1598 brawn,1,2kinghenryiv,1598 galled,1,2kinghenryiv,1598 washing,1,2kinghenryiv,1598 villany,1,2kinghenryiv,1598 unwelcome,1,2kinghenryiv,1598 somebody,1,2kinghenryiv,1598 viewing,1,2kinghenryiv,1598 forbid,1,2kinghenryiv,1598 Lumbert,1,2kinghenryiv,1598 instruments,1,2kinghenryiv,1598 'larum,1,2kinghenryiv,1598 tomb,1,2kinghenryiv,1598 deafness,1,2kinghenryiv,1598 indited,1,2kinghenryiv,1598 john,1,2kinghenryiv,1598 'lusty,1,2kinghenryiv,1598 gauntlet,1,2kinghenryiv,1598 imaginary,1,2kinghenryiv,1598 neighing,1,2kinghenryiv,1598 witness'd,1,2kinghenryiv,1598 grew,1,2kinghenryiv,1598 Chamber,1,2kinghenryiv,1598 smiled,1,2kinghenryiv,1598 grey,1,2kinghenryiv,1598 discolours,1,2kinghenryiv,1598 pity,1,2kinghenryiv,1598 abrawl,1,2kinghenryiv,1598 address'd,1,2kinghenryiv,1598 ports,1,2kinghenryiv,1598 dispraised,1,2kinghenryiv,1598 hangings,1,2kinghenryiv,1598 Japhet,1,2kinghenryiv,1598 Laying,1,2kinghenryiv,1598 Tells,1,2kinghenryiv,1598 consumption,1,2kinghenryiv,1598 infant,1,2kinghenryiv,1598 infected,1,2kinghenryiv,1598 echo,1,2kinghenryiv,1598 dines,1,2kinghenryiv,1598 confirmities,1,2kinghenryiv,1598 darest,1,2kinghenryiv,1598 malmsey,1,2kinghenryiv,1598 reputation,1,2kinghenryiv,1598 composition,1,2kinghenryiv,1598 pins',1,2kinghenryiv,1598 guilt,1,2kinghenryiv,1598 'What's,1,2kinghenryiv,1598 crook'd,1,2kinghenryiv,1598 reckonings,1,2kinghenryiv,1598 yielding,1,2kinghenryiv,1598 belongs,1,2kinghenryiv,1598 leisure,1,2kinghenryiv,1598 churlish,1,2kinghenryiv,1598 Comfort,1,2kinghenryiv,1598 infamy,1,2kinghenryiv,1598 Romans,1,2kinghenryiv,1598 truer,1,2kinghenryiv,1598 dream'd,1,2kinghenryiv,1598 fewer,1,2kinghenryiv,1598 barber,1,2kinghenryiv,1598 groin,1,2kinghenryiv,1598 'There's,1,2kinghenryiv,1598 commotion's,1,2kinghenryiv,1598 complaints,1,2kinghenryiv,1598 discord,1,2kinghenryiv,1598 possible,1,2kinghenryiv,1598 following,1,2kinghenryiv,1598 lament,1,2kinghenryiv,1598 Vice's,1,2kinghenryiv,1598 whiteness,1,2kinghenryiv,1598 neighbours,1,2kinghenryiv,1598 New,1,2kinghenryiv,1598 peach,1,2kinghenryiv,1598 confront,1,2kinghenryiv,1598 peruse,1,2kinghenryiv,1598 entire,1,2kinghenryiv,1598 advantage,1,2kinghenryiv,1598 female,1,2kinghenryiv,1598 brows,1,2kinghenryiv,1598 villain's,1,2kinghenryiv,1598 alack,1,2kinghenryiv,1598 Whether,1,2kinghenryiv,1598 lower,1,2kinghenryiv,1598 dagger,1,2kinghenryiv,1598 baffled,1,2kinghenryiv,1598 addict,1,2kinghenryiv,1598 dint,1,2kinghenryiv,1598 sterling,1,2kinghenryiv,1598 element,1,2kinghenryiv,1598 cavaleros,1,2kinghenryiv,1598 searching,1,2kinghenryiv,1598 leavest,1,2kinghenryiv,1598 shoulders,1,2kinghenryiv,1598 rob,1,2kinghenryiv,1598 hemp,1,2kinghenryiv,1598 suppose,1,2kinghenryiv,1598 offender,1,2kinghenryiv,1598 branch,1,2kinghenryiv,1598 stopp'd,1,2kinghenryiv,1598 apprehended,1,2kinghenryiv,1598 roam,1,2kinghenryiv,1598 'receive,1,2kinghenryiv,1598 muse,1,2kinghenryiv,1598 assistance,1,2kinghenryiv,1598 easily,1,2kinghenryiv,1598 irrecoverable,1,2kinghenryiv,1598 hush'd,1,2kinghenryiv,1598 bucklers,1,2kinghenryiv,1598 roba,1,2kinghenryiv,1598 Bartholomew,1,2kinghenryiv,1598 doted,1,2kinghenryiv,1598 speedy,1,2kinghenryiv,1598 held,1,2kinghenryiv,1598 mure,1,2kinghenryiv,1598 hell,1,2kinghenryiv,1598 helps,1,2kinghenryiv,1598 Stay,1,2kinghenryiv,1598 whale,1,2kinghenryiv,1598 warning,1,2kinghenryiv,1598 swiftly,1,2kinghenryiv,1598 single,1,2kinghenryiv,1598 duteous,1,2kinghenryiv,1598 mess,1,2kinghenryiv,1598 sisters,1,2kinghenryiv,1598 writes,1,2kinghenryiv,1598 darkness,1,2kinghenryiv,1598 'some,1,2kinghenryiv,1598 painted,1,2kinghenryiv,1598 vail,1,2kinghenryiv,1598 Became,1,2kinghenryiv,1598 trunk,1,2kinghenryiv,1598 imitate,1,2kinghenryiv,1598 groat,1,2kinghenryiv,1598 herd,1,2kinghenryiv,1598 lodging,1,2kinghenryiv,1598 Either,1,2kinghenryiv,1598 repents,1,2kinghenryiv,1598 Cried,1,2kinghenryiv,1598 assemblance,1,2kinghenryiv,1598 blossom,1,2kinghenryiv,1598 Paul's,1,2kinghenryiv,1598 gorgeous,1,2kinghenryiv,1598 errand,1,2kinghenryiv,1598 drum,1,2kinghenryiv,1598 hens,1,2kinghenryiv,1598 Nevil,1,2kinghenryiv,1598 familiarly,1,2kinghenryiv,1598 Beshrew,1,2kinghenryiv,1598 hearted,1,2kinghenryiv,1598 brood,1,2kinghenryiv,1598 rods,1,2kinghenryiv,1598 gettest,1,2kinghenryiv,1598 rib,1,2kinghenryiv,1598 demeanor,1,2kinghenryiv,1598 commodity,1,2kinghenryiv,1598 rid,1,2kinghenryiv,1598 looked,1,2kinghenryiv,1598 advance,1,2kinghenryiv,1598 Tewksbury,1,2kinghenryiv,1598 Woncot,1,2kinghenryiv,1598 flow,1,2kinghenryiv,1598 its,1,2kinghenryiv,1598 shelter,1,2kinghenryiv,1598 valuation,1,2kinghenryiv,1598 Thursday,1,2kinghenryiv,1598 bring'st,1,2kinghenryiv,1598 appeal,1,2kinghenryiv,1598 Ere,1,2kinghenryiv,1598 underneath,1,2kinghenryiv,1598 Sisters,1,2kinghenryiv,1598 innocency,1,2kinghenryiv,1598 calls,1,2kinghenryiv,1598 Nut,1,2kinghenryiv,1598 thou'lt,1,2kinghenryiv,1598 jades,1,2kinghenryiv,1598 commence,1,2kinghenryiv,1598 terrible,1,2kinghenryiv,1598 innocence,1,2kinghenryiv,1598 cheap,1,2kinghenryiv,1598 Snatching,1,2kinghenryiv,1598 mete,1,2kinghenryiv,1598 Rotten,1,2kinghenryiv,1598 heifers,1,2kinghenryiv,1598 odds,1,2kinghenryiv,1598 absolute,1,2kinghenryiv,1598 sore,1,2kinghenryiv,1598 ancestors,1,2kinghenryiv,1598 pippin,1,2kinghenryiv,1598 Peesel,1,2kinghenryiv,1598 dismissed,1,2kinghenryiv,1598 stools,1,2kinghenryiv,1598 pinch,1,2kinghenryiv,1598 contrary,1,2kinghenryiv,1598 stews,1,2kinghenryiv,1598 Furies',1,2kinghenryiv,1598 lied,1,2kinghenryiv,1598 apter,1,2kinghenryiv,1598 invested,1,2kinghenryiv,1598 'rah,1,2kinghenryiv,1598 rated,1,2kinghenryiv,1598 cloyed,1,2kinghenryiv,1598 wounded,1,2kinghenryiv,1598 Rendering,1,2kinghenryiv,1598 kirtles,1,2kinghenryiv,1598 cheeks,1,2kinghenryiv,1598 shoved,1,2kinghenryiv,1598 unwilling,1,2kinghenryiv,1598 chequed,1,2kinghenryiv,1598 PERSONAE,1,2kinghenryiv,1598 infinitive,1,2kinghenryiv,1598 greyhound,1,2kinghenryiv,1598 boy's,1,2kinghenryiv,1598 graffing,1,2kinghenryiv,1598 demand,1,2kinghenryiv,1598 cool'd,1,2kinghenryiv,1598 Revives,1,2kinghenryiv,1598 crutch,1,2kinghenryiv,1598 loathsome,1,2kinghenryiv,1598 thumb,1,2kinghenryiv,1598 battles,1,2kinghenryiv,1598 oldest,1,2kinghenryiv,1598 enrooted,1,2kinghenryiv,1598 softly,1,2kinghenryiv,1598 attempt,1,2kinghenryiv,1598 song,1,2kinghenryiv,1598 Carry,1,2kinghenryiv,1598 argues,1,2kinghenryiv,1598 coffers,1,2kinghenryiv,1598 Revel,1,2kinghenryiv,1598 garment,1,2kinghenryiv,1598 mistook,1,2kinghenryiv,1598 indirect,1,2kinghenryiv,1598 breach,1,2kinghenryiv,1598 pursue,1,2kinghenryiv,1598 craft's,1,2kinghenryiv,1598 performance,1,2kinghenryiv,1598 Scots,1,2kinghenryiv,1598 sanctified,1,2kinghenryiv,1598 advantages,1,2kinghenryiv,1598 passions,1,2kinghenryiv,1598 counter,1,2kinghenryiv,1598 reign,1,2kinghenryiv,1598 torrent,1,2kinghenryiv,1598 seven,1,2kinghenryiv,1598 graced,1,2kinghenryiv,1598 honester,1,2kinghenryiv,1598 surfeit,1,2kinghenryiv,1598 divination,1,2kinghenryiv,1598 sterile,1,2kinghenryiv,1598 spied,1,2kinghenryiv,1598 Calipolis,1,2kinghenryiv,1598 conscience,1,2kinghenryiv,1598 feather,1,2kinghenryiv,1598 camp,1,2kinghenryiv,1598 reform,1,2kinghenryiv,1598 sadly,1,2kinghenryiv,1598 guards,1,2kinghenryiv,1598 friend's,1,2kinghenryiv,1598 Asia,1,2kinghenryiv,1598 favourite,1,2kinghenryiv,1598 sold,1,2kinghenryiv,1598 beefs,1,2kinghenryiv,1598 thousands,1,2kinghenryiv,1598 matters,1,2kinghenryiv,1598 befits,1,2kinghenryiv,1598 sat,1,2kinghenryiv,1598 toss,1,2kinghenryiv,1598 link,1,2kinghenryiv,1598 atomy,1,2kinghenryiv,1598 Jove,1,2kinghenryiv,1598 Clement,1,2kinghenryiv,1598 Samingo,1,2kinghenryiv,1598 demure,1,2kinghenryiv,1598 sorrows,1,2kinghenryiv,1598 opposed,1,2kinghenryiv,1598 Caesar's,1,2kinghenryiv,1598 resolve,1,2kinghenryiv,1598 corner,1,2kinghenryiv,1598 dram,1,2kinghenryiv,1598 sackcloth,1,2kinghenryiv,1598 assemble,1,2kinghenryiv,1598 Perforce,1,2kinghenryiv,1598 boldness,1,2kinghenryiv,1598 beacon,1,2kinghenryiv,1598 Consent,1,2kinghenryiv,1598 proceeds,1,2kinghenryiv,1598 intelligencer,1,2kinghenryiv,1598 overcome,1,2kinghenryiv,1598 forehand,1,2kinghenryiv,1598 roar'd,1,2kinghenryiv,1598 drew,1,2kinghenryiv,1598 enemy's,1,2kinghenryiv,1598 tremblest,1,2kinghenryiv,1598 sorrier,1,2kinghenryiv,1598 offenders,1,2kinghenryiv,1598 sperato,1,2kinghenryiv,1598 pewterer's,1,2kinghenryiv,1598 lift,1,2kinghenryiv,1598 policy,1,2kinghenryiv,1598 Scot,1,2kinghenryiv,1598 madness,1,2kinghenryiv,1598 ugliest,1,2kinghenryiv,1598 characters,1,2kinghenryiv,1598 knaves,1,2kinghenryiv,1598 demands,1,2kinghenryiv,1598 Althaea's,1,2kinghenryiv,1598 breaks,1,2kinghenryiv,1598 Turk's,1,2kinghenryiv,1598 pipe,1,2kinghenryiv,1598 Yield,1,2kinghenryiv,1598 rides,1,2kinghenryiv,1598 Worcester,1,2kinghenryiv,1598 prentice,1,2kinghenryiv,1598 counterfeited,1,2kinghenryiv,1598 visaged,1,2kinghenryiv,1598 healed,1,2kinghenryiv,1598 congealed,1,2kinghenryiv,1598 beseek,1,2kinghenryiv,1598 Encircled,1,2kinghenryiv,1598 chains,1,2kinghenryiv,1598 complexion,1,2kinghenryiv,1598 faiths,1,2kinghenryiv,1598 teach,1,2kinghenryiv,1598 veins,1,2kinghenryiv,1598 toys,1,2kinghenryiv,1598 Fleet,1,2kinghenryiv,1598 unsheath'd,1,2kinghenryiv,1598 gooseberry,1,2kinghenryiv,1598 Hereof,1,2kinghenryiv,1598 slippery,1,2kinghenryiv,1598 defiance,1,2kinghenryiv,1598 sups,1,2kinghenryiv,1598 general's,1,2kinghenryiv,1598 visitation,1,2kinghenryiv,1598 cankers,1,2kinghenryiv,1598 Pistol's,1,2kinghenryiv,1598 Assyrian,1,2kinghenryiv,1598 Supposed,1,2kinghenryiv,1598 groats,1,2kinghenryiv,1598 beachy,1,2kinghenryiv,1598 towns,1,2kinghenryiv,1598 sinful,1,2kinghenryiv,1598 deserve,1,2kinghenryiv,1598 she's,1,2kinghenryiv,1598 'occupy,1,2kinghenryiv,1598 ocean,1,2kinghenryiv,1598 wags,1,2kinghenryiv,1598 handling,1,2kinghenryiv,1598 hereafter,1,2kinghenryiv,1598 weaker,1,2kinghenryiv,1598 racket,1,2kinghenryiv,1598 jumps,1,2kinghenryiv,1598 sung,1,2kinghenryiv,1598 incredulous,1,2kinghenryiv,1598 yards,1,2kinghenryiv,1598 wilderness,1,2kinghenryiv,1598 conceive,1,2kinghenryiv,1598 returned,1,2kinghenryiv,1598 'obsque,1,2kinghenryiv,1598 brisk,1,2kinghenryiv,1598 ken,1,2kinghenryiv,1598 Beyond,1,2kinghenryiv,1598 tapster,1,2kinghenryiv,1598 deceased,1,2kinghenryiv,1598 betted,1,2kinghenryiv,1598 Choked,1,2kinghenryiv,1598 Cophetua,1,2kinghenryiv,1598 Crowd,1,2kinghenryiv,1598 subdued,1,2kinghenryiv,1598 ourself,1,2kinghenryiv,1598 bastard,1,2kinghenryiv,1598 tooth,1,2kinghenryiv,1598 sprout,1,2kinghenryiv,1598 walk,1,2kinghenryiv,1598 saying,1,2kinghenryiv,1598 Pickbone,1,2kinghenryiv,1598 whipping,1,2kinghenryiv,1598 throngs,1,2kinghenryiv,1598 cheating,1,2kinghenryiv,1598 bleedeth,1,2kinghenryiv,1598 chronicles,1,2kinghenryiv,1598 'When,1,2kinghenryiv,1598 Fifth's,1,2kinghenryiv,1598 society,1,2kinghenryiv,1598 unsure,1,2kinghenryiv,1598 scoured,1,2kinghenryiv,1598 throng,1,2kinghenryiv,1598 throne,1,2kinghenryiv,1598 anew,1,2kinghenryiv,1598 Staffordshire,1,2kinghenryiv,1598 drollery,1,2kinghenryiv,1598 geese,1,2kinghenryiv,1598 disposed,1,2kinghenryiv,1598 frosts,1,2kinghenryiv,1598 pardons,1,2kinghenryiv,1598 concern,1,2kinghenryiv,1598 retinue,1,2kinghenryiv,1598 embrace,1,2kinghenryiv,1598 cradle,1,2kinghenryiv,1598 Seem'd,1,2kinghenryiv,1598 Stuffing,1,2kinghenryiv,1598 hang'st,1,2kinghenryiv,1598 engraffed,1,2kinghenryiv,1598 murdered,1,2kinghenryiv,1598 Charge,1,2kinghenryiv,1598 wassail,1,2kinghenryiv,1598 skill,1,2kinghenryiv,1598 winds,1,2kinghenryiv,1598 fashions,1,2kinghenryiv,1598 hammer,1,2kinghenryiv,1598 followed,1,2kinghenryiv,1598 chipp'd,1,2kinghenryiv,1598 'O,1,2kinghenryiv,1598 dignities,1,2kinghenryiv,1598 hotter,1,2kinghenryiv,1598 stern,1,2kinghenryiv,1598 livers,1,2kinghenryiv,1598 succeeds,1,2kinghenryiv,1598 surmises,1,2kinghenryiv,1598 admittance,1,2kinghenryiv,1598 kindly,1,2kinghenryiv,1598 bow'd,1,2kinghenryiv,1598 slighted,1,2kinghenryiv,1598 attached,1,2kinghenryiv,1598 Wait,1,2kinghenryiv,1598 bashful,1,2kinghenryiv,1598 study,1,2kinghenryiv,1598 wages,1,2kinghenryiv,1598 commends,1,2kinghenryiv,1598 sky,1,2kinghenryiv,1598 parish,1,2kinghenryiv,1598 Music,1,2kinghenryiv,1598 faults,1,2kinghenryiv,1598 competence,1,2kinghenryiv,1598 polish'd,1,2kinghenryiv,1598 Added,1,2kinghenryiv,1598 Other,1,2kinghenryiv,1598 pieces,1,2kinghenryiv,1598 offends,1,2kinghenryiv,1598 limbed,1,2kinghenryiv,1598 mother,1,2kinghenryiv,1598 Attendants,1,2kinghenryiv,1598 assistances,1,2kinghenryiv,1598 shallowly,1,2kinghenryiv,1598 scope,1,2kinghenryiv,1598 quittance,1,2kinghenryiv,1598 cheese,1,2kinghenryiv,1598 Dagonet,1,2kinghenryiv,1598 affect,1,2kinghenryiv,1598 smaller,1,2kinghenryiv,1598 sends,1,2kinghenryiv,1598 amiss,1,2kinghenryiv,1598 appear'd,1,2kinghenryiv,1598 considerations,1,2kinghenryiv,1598 Norfolk,1,2kinghenryiv,1598 seats,1,2kinghenryiv,1598 stuck,1,2kinghenryiv,1598 obduracy,1,2kinghenryiv,1598 merit,1,2kinghenryiv,1598 accursed,1,2kinghenryiv,1598 Bench,1,2kinghenryiv,1598 heavens,1,2kinghenryiv,1598 guide,1,2kinghenryiv,1598 wear'st,1,2kinghenryiv,1598 redeem,1,2kinghenryiv,1598 beseeming,1,2kinghenryiv,1598 Learn,1,2kinghenryiv,1598 coherence,1,2kinghenryiv,1598 lingering,1,2kinghenryiv,1598 debtors,1,2kinghenryiv,1598 Besonian,1,2kinghenryiv,1598 conceit,1,2kinghenryiv,1598 piece,1,2kinghenryiv,1598 blooded,1,2kinghenryiv,1598 monster,1,2kinghenryiv,1598 revived,1,2kinghenryiv,1598 marring,1,2kinghenryiv,1598 charm'd,1,2kinghenryiv,1598 standeth,1,2kinghenryiv,1598 Grow,1,2kinghenryiv,1598 twelve,1,2kinghenryiv,1598 guarded,1,2kinghenryiv,1598 swoln,1,2kinghenryiv,1598 give's,1,2kinghenryiv,1598 offensive,1,2kinghenryiv,1598 sparking,1,2kinghenryiv,1598 repentance,1,2kinghenryiv,1598 Whereof,1,2kinghenryiv,1598 kinswoman,1,2kinghenryiv,1598 shilling,1,2kinghenryiv,1598 seeds,1,2kinghenryiv,1598 uncounted,1,2kinghenryiv,1598 absence,1,2kinghenryiv,1598 parrot,1,2kinghenryiv,1598 loiter,1,2kinghenryiv,1598 Cheater,1,2kinghenryiv,1598 potations,1,2kinghenryiv,1598 fally,1,2kinghenryiv,1598 encounter'd,1,2kinghenryiv,1598 lucky,1,2kinghenryiv,1598 falls,1,2kinghenryiv,1598 actions,1,2kinghenryiv,1598 encounter,1,2kinghenryiv,1598 loose,1,2kinghenryiv,1598 Cannibals,1,2kinghenryiv,1598 unarm'd,1,2kinghenryiv,1598 cherish,1,2kinghenryiv,1598 eldest,1,2kinghenryiv,1598 tennis,1,2kinghenryiv,1598 Pardon,1,2kinghenryiv,1598 swoon,1,2kinghenryiv,1598 certainties,1,2kinghenryiv,1598 worthy,1,2kinghenryiv,1598 Leave,1,2kinghenryiv,1598 thence,1,2kinghenryiv,1598 capacities,1,2kinghenryiv,1598 King's,1,2kinghenryiv,1598 cries,1,2kinghenryiv,1598 manhoods,1,2kinghenryiv,1598 coloured,1,2kinghenryiv,1598 overthrown,1,2kinghenryiv,1598 mercies,1,2kinghenryiv,1598 govern'd,1,2kinghenryiv,1598 sup,1,2kinghenryiv,1598 sun,1,2kinghenryiv,1598 elder,1,2kinghenryiv,1598 rust,1,2kinghenryiv,1598 punish,1,2kinghenryiv,1598 Pomfret,1,2kinghenryiv,1598 rampallion,1,2kinghenryiv,1598 humbly,1,2kinghenryiv,1598 winded,1,2kinghenryiv,1598 recovers,1,2kinghenryiv,1598 beaten,1,2kinghenryiv,1598 wavering,1,2kinghenryiv,1598 descend,1,2kinghenryiv,1598 relish,1,2kinghenryiv,1598 saucy,1,2kinghenryiv,1598 masters,1,2kinghenryiv,1598 costly,1,2kinghenryiv,1598 malice,1,2kinghenryiv,1598 loathly,1,2kinghenryiv,1598 quart,1,2kinghenryiv,1598 lances,1,2kinghenryiv,1598 suffering,1,2kinghenryiv,1598 corrupt,1,2kinghenryiv,1598 conceal,1,2kinghenryiv,1598 whisper,1,2kinghenryiv,1598 Old,1,2kinghenryiv,1598 weather,1,2kinghenryiv,1598 tortures,1,2kinghenryiv,1598 Skogan's,1,2kinghenryiv,1598 speaking,1,2kinghenryiv,1598 prevent,1,2kinghenryiv,1598 applause,1,2kinghenryiv,1598 advancements,1,2kinghenryiv,1598 Fly,1,2kinghenryiv,1598 prunes,1,2kinghenryiv,1598 Hence,1,2kinghenryiv,1598 Street,1,2kinghenryiv,1598 knights,1,2kinghenryiv,1598 dreamed,1,2kinghenryiv,1598 night's,1,2kinghenryiv,1598 Cerberus,1,2kinghenryiv,1598 title,1,2kinghenryiv,1598 seems,1,2kinghenryiv,1598 mirth,1,2kinghenryiv,1598 bastardly,1,2kinghenryiv,1598 length,1,2kinghenryiv,1598 steal,1,2kinghenryiv,1598 inflame,1,2kinghenryiv,1598 dearer,1,2kinghenryiv,1598 access,1,2kinghenryiv,1598 halloing,1,2kinghenryiv,1598 superfluity,1,2kinghenryiv,1598 brand,1,2kinghenryiv,1598 Troop,1,2kinghenryiv,1598 roundly,1,2kinghenryiv,1598 'Northumberland,1,2kinghenryiv,1598 hated,1,2kinghenryiv,1598 Retreat,1,2kinghenryiv,1598 transformed,1,2kinghenryiv,1598 rowel,1,2kinghenryiv,1598 immaculate,1,2kinghenryiv,1598 shakest,1,2kinghenryiv,1598 directly,1,2kinghenryiv,1598 usest,1,2kinghenryiv,1598 displeasure,1,2kinghenryiv,1598 property,1,2kinghenryiv,1598 strewing,1,2kinghenryiv,1598 devil's,1,2kinghenryiv,1598 window,1,2kinghenryiv,1598 world's,1,2kinghenryiv,1598 hatch,1,2kinghenryiv,1598 malady,1,2kinghenryiv,1598 culling,1,2kinghenryiv,1598 dukedom,1,2kinghenryiv,1598 wart,1,2kinghenryiv,1598 hermits',1,2kinghenryiv,1598 advancement,1,2kinghenryiv,1598 desist,1,2kinghenryiv,1598 rule,1,2kinghenryiv,1598 wash,1,2kinghenryiv,1598 mistake,1,2kinghenryiv,1598 consecrate,1,2kinghenryiv,1598 familiarity,1,2kinghenryiv,1598 naturally,1,2kinghenryiv,1598 t'other,1,2kinghenryiv,1598 rules,1,2kinghenryiv,1598 ruled,1,2kinghenryiv,1598 Blessed,1,2kinghenryiv,1598 suborn'd,1,2kinghenryiv,1598 nosed,1,2kinghenryiv,1598 HOSTESS,1,2kinghenryiv,1598 parts,1,2kinghenryiv,1598 uprear'd,1,2kinghenryiv,1598 mallet,1,2kinghenryiv,1598 created,1,2kinghenryiv,1598 Follow,1,2kinghenryiv,1598 Draw,1,2kinghenryiv,1598 substantial,1,2kinghenryiv,1598 liggens,1,2kinghenryiv,1598 fairest,1,2kinghenryiv,1598 project,1,2kinghenryiv,1598 shorten,1,2kinghenryiv,1598 unquiet,1,2kinghenryiv,1598 foin,1,2kinghenryiv,1598 each,1,2kinghenryiv,1598 bitten,1,2kinghenryiv,1598 senses,1,2kinghenryiv,1598 nail,1,2kinghenryiv,1598 muzzle,1,2kinghenryiv,1598 prince's,1,2kinghenryiv,1598 warder,1,2kinghenryiv,1598 grievous,1,2kinghenryiv,1598 tumult,1,2kinghenryiv,1598 merriment,1,2kinghenryiv,1598 dishonourable,1,2kinghenryiv,1598 keys,1,2kinghenryiv,1598 emptiness,1,2kinghenryiv,1598 burning,1,2kinghenryiv,1598 o'erset,1,2kinghenryiv,1598 mediation,1,2kinghenryiv,1598 strongly,1,2kinghenryiv,1598 precise,1,2kinghenryiv,1598 discreet,1,2kinghenryiv,1598 steward,1,2kinghenryiv,1598 precisely,1,2kinghenryiv,1598 Priam's,1,2kinghenryiv,1598 ousel,1,2kinghenryiv,1598 backs,1,2kinghenryiv,1598 hat,1,2kinghenryiv,1598 Drew,1,2kinghenryiv,1598 commons,1,2kinghenryiv,1598 Pie,1,2kinghenryiv,1598 threw'st,1,2kinghenryiv,1598 varlets,1,2kinghenryiv,1598 foes,1,2kinghenryiv,1598 potions,1,2kinghenryiv,1598 Stamford,1,2kinghenryiv,1598 tirrits,1,2kinghenryiv,1598 Belike,1,2kinghenryiv,1598 sign,1,2kinghenryiv,1598 leman,1,2kinghenryiv,1598 discern,1,2kinghenryiv,1598 Jane,1,2kinghenryiv,1598 offend,1,2kinghenryiv,1598 Hydra,1,2kinghenryiv,1598 talks,1,2kinghenryiv,1598 sigh,1,2kinghenryiv,1598 Sick,1,2kinghenryiv,1598 tester,1,2kinghenryiv,1598 Ay,1,2kinghenryiv,1598 perfection,1,2kinghenryiv,1598 hidest,1,2kinghenryiv,1598 surety,1,2kinghenryiv,1598 transformation,1,2kinghenryiv,1598 sneap,1,2kinghenryiv,1598 hilding,1,2kinghenryiv,1598 Hie,1,2kinghenryiv,1598 daunted,1,2kinghenryiv,1598 Lucifer's,1,2kinghenryiv,1598 box,1,2kinghenryiv,1598 bow,1,2kinghenryiv,1598 o'ershine,1,2kinghenryiv,1598 hurly,1,2kinghenryiv,1598 govern,1,2kinghenryiv,1598 stretching,1,2kinghenryiv,1598 fortify,1,2kinghenryiv,1598 Hope,1,2kinghenryiv,1598 smile,1,2kinghenryiv,1598 hen,1,2kinghenryiv,1598 hem,1,2kinghenryiv,1598 Having,1,2kinghenryiv,1598 Play,1,2kinghenryiv,1598 misuses,1,2kinghenryiv,1598 By'r,1,2kinghenryiv,1598 outweighs,1,2kinghenryiv,1598 O',1,2kinghenryiv,1598 imagined,1,2kinghenryiv,1598 sensible,1,2kinghenryiv,1598 inclined,1,2kinghenryiv,1598 bar,1,2kinghenryiv,1598 gratis,1,2kinghenryiv,1598 flaws,1,2kinghenryiv,1598 kings,1,2kinghenryiv,1598 gossip,1,2kinghenryiv,1598 obstructions,1,2kinghenryiv,1598 dimensions,1,2kinghenryiv,1598 listen,1,2kinghenryiv,1598 sick'd,1,2kinghenryiv,1598 Smooth's,1,2kinghenryiv,1598 creature,1,2kinghenryiv,1598 Answer,1,2kinghenryiv,1598 brings,1,2kinghenryiv,1598 dreaded,1,2kinghenryiv,1598 twopences,1,2kinghenryiv,1598 shines,1,2kinghenryiv,1598 translate,1,2kinghenryiv,1598 sings,1,2kinghenryiv,1598 Spaniard,1,2kinghenryiv,1598 Hood,1,2kinghenryiv,1598 Recruits,1,2kinghenryiv,1598 innocent,1,2kinghenryiv,1598 prophecies,1,2kinghenryiv,1598 ashes,1,2kinghenryiv,1598 temperality,1,2kinghenryiv,1598 hit,1,2kinghenryiv,1598 habitation,1,2kinghenryiv,1598 overtook,1,2kinghenryiv,1598 meant,1,2kinghenryiv,1598 sovereignty,1,2kinghenryiv,1598 coursers,1,2kinghenryiv,1598 dame's,1,2kinghenryiv,1598 rumour'd,1,2kinghenryiv,1598 Falstaff's,1,2kinghenryiv,1598 winnow'd,1,2kinghenryiv,1598 dullest,1,2kinghenryiv,1598 weightless,1,2kinghenryiv,1598 tallow,1,2kinghenryiv,1598 bigness,1,2kinghenryiv,1598 carmen,1,2kinghenryiv,1598 strangely,1,2kinghenryiv,1598 fortune's,1,2kinghenryiv,1598 surely,1,2kinghenryiv,1598 goods,1,2kinghenryiv,1598 ease,1,2kinghenryiv,1598 bruises,1,2kinghenryiv,1598 tribute,1,2kinghenryiv,1598 Katharine,1,2kinghenryiv,1598 pinches,1,2kinghenryiv,1598 wither'd,1,2kinghenryiv,1598 despair,1,2kinghenryiv,1598 investments,1,2kinghenryiv,1598 pie,1,2kinghenryiv,1598 nave,1,2kinghenryiv,1598 pig,1,2kinghenryiv,1598 meals,1,2kinghenryiv,1598 provokest,1,2kinghenryiv,1598 Has,1,2kinghenryiv,1598 navy,1,2kinghenryiv,1598 proud,1,2kinghenryiv,1598 earn,1,2kinghenryiv,1598 vultures,1,2kinghenryiv,1598 overlive,1,2kinghenryiv,1598 step,1,2kinghenryiv,1598 exterior,1,2kinghenryiv,1598 Up,1,2kinghenryiv,1598 countries,1,2kinghenryiv,1598 yourselves,1,2kinghenryiv,1598 pot,1,2kinghenryiv,1598 thighs,1,2kinghenryiv,1598 devotion,1,2kinghenryiv,1598 nobly,1,2kinghenryiv,1598 outlive,1,2kinghenryiv,1598 awakes,1,2kinghenryiv,1598 nihil,1,2kinghenryiv,1598 obey,1,2kinghenryiv,1598 brawling,1,2kinghenryiv,1598 oversights,1,2kinghenryiv,1598 sirs,1,2kinghenryiv,1598 Ending,1,2kinghenryiv,1598 bung,1,2kinghenryiv,1598 Corporal,1,2kinghenryiv,1598 Mingled,1,2kinghenryiv,1598 trimm'd,1,2kinghenryiv,1598 sought,1,2kinghenryiv,1598 whore,1,2kinghenryiv,1598 Compare,1,2kinghenryiv,1598 unequal,1,2kinghenryiv,1598 broaches,1,2kinghenryiv,1598 madmen,1,2kinghenryiv,1598 depending,1,2kinghenryiv,1598 Squele,1,2kinghenryiv,1598 Murder,1,2kinghenryiv,1598 weed,1,2kinghenryiv,1598 thewes,1,2kinghenryiv,1598 divide,1,2kinghenryiv,1598 bulk,1,2kinghenryiv,1598 week,1,2kinghenryiv,1598 proportion,1,2kinghenryiv,1598 straw,1,2kinghenryiv,1598 pantier,1,2kinghenryiv,1598 stray,1,2kinghenryiv,1598 abides,1,2kinghenryiv,1598 Heard,1,2kinghenryiv,1598 metal,1,2kinghenryiv,1598 humane,1,2kinghenryiv,1598 sooner,1,2kinghenryiv,1598 ragged'st,1,2kinghenryiv,1598 leather,1,2kinghenryiv,1598 Jove's,1,2kinghenryiv,1598 fields,1,2kinghenryiv,1598 imagine,1,2kinghenryiv,1598 dignify,1,2kinghenryiv,1598 possibility,1,2kinghenryiv,1598 suffer'd,1,2kinghenryiv,1598 leaders,1,2kinghenryiv,1598 Sits,1,2kinghenryiv,1598 difference,1,2kinghenryiv,1598 bestowed,1,2kinghenryiv,1598 belt,1,2kinghenryiv,1598 unfix,1,2kinghenryiv,1598 sorts,1,2kinghenryiv,1598 got,1,2kinghenryiv,1598 Thou'lt,1,2kinghenryiv,1598 truncheon,1,2kinghenryiv,1598 Si,1,2kinghenryiv,1598 crush,1,2kinghenryiv,1598 Oxford,1,2kinghenryiv,1598 children,1,2kinghenryiv,1598 corpse,1,2kinghenryiv,1598 Barren,1,2kinghenryiv,1598 awaked,1,2kinghenryiv,1598 foolishly,1,2kinghenryiv,1598 honeysuckle,1,2kinghenryiv,1598 erection,1,2kinghenryiv,1598 homely,1,2kinghenryiv,1598 attention,1,2kinghenryiv,1598 sounds,1,2kinghenryiv,1598 atonement,1,2kinghenryiv,1598 tricks,1,2kinghenryiv,1598 'tween,1,2kinghenryiv,1598 moreover,1,2kinghenryiv,1598 sorted,1,2kinghenryiv,1598 paring,1,2kinghenryiv,1598 'ten,1,2kinghenryiv,1598 faitors,1,2kinghenryiv,1598 Glasses,1,2kinghenryiv,1598 anything,1,2kinghenryiv,1598 couch,1,2kinghenryiv,1598 learned,1,2kinghenryiv,1598 somewhat,1,2kinghenryiv,1598 latest,1,2kinghenryiv,1598 bent,1,2kinghenryiv,1598 imperial,1,2kinghenryiv,1598 Behold,1,2kinghenryiv,1598 Teacheth,1,2kinghenryiv,1598 Lies,1,2kinghenryiv,1598 idleness,1,2kinghenryiv,1598 welkin,1,2kinghenryiv,1598 bullocks,1,2kinghenryiv,1598 gape,1,2kinghenryiv,1598 piled,1,2kinghenryiv,1598 befallen,1,2kinghenryiv,1598 plough,1,2kinghenryiv,1598 engrossments,1,2kinghenryiv,1598 afore,1,2kinghenryiv,1598 foulest,1,2kinghenryiv,1598 Drawing,1,2kinghenryiv,1598 overcame,1,2kinghenryiv,1598 block,1,2kinghenryiv,1598 persistency,1,2kinghenryiv,1598 buds,1,2kinghenryiv,1598 tingling,1,2kinghenryiv,1598 jewel,1,2kinghenryiv,1598 exion,1,2kinghenryiv,1598 Conjecture,1,2kinghenryiv,1598 keep'st,1,2kinghenryiv,1598 Boot,1,2kinghenryiv,1598 silencing,1,2kinghenryiv,1598 despise,1,2kinghenryiv,1598 surfeiting,1,2kinghenryiv,1598 'no,1,2kinghenryiv,1598 extreme,1,2kinghenryiv,1598 fifth,1,2kinghenryiv,1598 calmest,1,2kinghenryiv,1598 theme,1,2kinghenryiv,1598 friendly,1,2kinghenryiv,1598 royally,1,2kinghenryiv,1598 curry,1,2kinghenryiv,1598 Said,1,2kinghenryiv,1598 Alecto's,1,2kinghenryiv,1598 badge,1,2kinghenryiv,1598 misbecame,1,2kinghenryiv,1598 swift,1,2kinghenryiv,1598 discomfort,1,2kinghenryiv,1598 worship's,1,2kinghenryiv,1598 herein,1,2kinghenryiv,1598 amongst,1,2kinghenryiv,1598 swims,1,2kinghenryiv,1598 vassal,1,2kinghenryiv,1598 bees,1,2kinghenryiv,1598 fustilarian,1,2kinghenryiv,1598 Meet,1,2kinghenryiv,1598 About,1,2kinghenryiv,1598 admired,1,2kinghenryiv,1598 sins,1,2kinghenryiv,1598 year's,1,2kinghenryiv,1598 enterprise,1,2kinghenryiv,1598 ensue,1,2kinghenryiv,1598 picture,1,2kinghenryiv,1598 epilogue,1,2kinghenryiv,1598 nags,1,2kinghenryiv,1598 stories,1,2kinghenryiv,1598 beds,1,2kinghenryiv,1598 smack,1,2kinghenryiv,1598 sing,1,2kinghenryiv,1598 rejoice,1,2kinghenryiv,1598 moody,1,2kinghenryiv,1598 Coldspur,1,2kinghenryiv,1598 attain'd,1,2kinghenryiv,1598 grandsire,1,2kinghenryiv,1598 immortal,1,2kinghenryiv,1598 headstrong,1,2kinghenryiv,1598 displeasing,1,2kinghenryiv,1598 crowned,1,2kinghenryiv,1598 Both,1,2kinghenryiv,1598 jealousies,1,2kinghenryiv,1598 afoot,1,2kinghenryiv,1598 foremost,1,2kinghenryiv,1598 anointed,1,2kinghenryiv,1598 opens,1,2kinghenryiv,1598 radish,1,2kinghenryiv,1598 quite,1,2kinghenryiv,1598 pearls,1,2kinghenryiv,1598 magnanimous,1,2kinghenryiv,1598 Chide,1,2kinghenryiv,1598 river,1,2kinghenryiv,1598 canopies,1,2kinghenryiv,1598 store,1,2kinghenryiv,1598 stuffed,1,2kinghenryiv,1598 overscutched,1,2kinghenryiv,1598 entertain,1,2kinghenryiv,1598 ghost,1,2kinghenryiv,1598 deliverance,1,2kinghenryiv,1598 lisping,1,2kinghenryiv,1598 panting,1,2kinghenryiv,1598 sail,1,2kinghenryiv,1598 government,1,2kinghenryiv,1598 instant,1,2kinghenryiv,1598 wiped,1,2kinghenryiv,1598 Boar's,1,2kinghenryiv,1598 forgive,1,2kinghenryiv,1598 wretch,1,2kinghenryiv,1598 tormenta,1,2kinghenryiv,1598 breast,1,2kinghenryiv,1598 blowing,1,2kinghenryiv,1598 tormente,1,2kinghenryiv,1598 snatch'd,1,2kinghenryiv,1598 Norfolk's,1,2kinghenryiv,1598 gallows,1,2kinghenryiv,1598 retail,1,2kinghenryiv,1598 sage,1,2kinghenryiv,1598 tyrant,1,2kinghenryiv,1598 satisfy,1,2kinghenryiv,1598 marched,1,2kinghenryiv,1598 exercises,1,2kinghenryiv,1598 instances,1,2kinghenryiv,1598 fencing,1,2kinghenryiv,1598 carrion,1,2kinghenryiv,1598 current,1,2kinghenryiv,1598 lineal,1,2kinghenryiv,1598 favour,1,2kinghenryiv,1598 jewels,1,2kinghenryiv,1598 stood,1,2kinghenryiv,1598 weekly,1,2kinghenryiv,1598 Remember'd,1,2kinghenryiv,1598 Arthur's,1,2kinghenryiv,1598 Making,1,2kinghenryiv,1598 Dolphin,1,2kinghenryiv,1598 taverns,1,2kinghenryiv,1598 stoop,1,2kinghenryiv,1598 blubbered,1,2kinghenryiv,1598 handsome,1,2kinghenryiv,1598 weigh'd,1,2kinghenryiv,1598 Past,1,2kinghenryiv,1598 quiver,1,2kinghenryiv,1598 whereon,1,2kinghenryiv,1598 driving,1,2kinghenryiv,1598 almanac,1,2kinghenryiv,1598 stone,1,2kinghenryiv,1598 lone,1,2kinghenryiv,1598 stony,1,2kinghenryiv,1598 profaned,1,2kinghenryiv,1598 martlemas,1,2kinghenryiv,1598 Accusing,1,2kinghenryiv,1598 seeing,1,2kinghenryiv,1598 gild,1,2kinghenryiv,1598 Spread,1,2kinghenryiv,1598 vault,1,2kinghenryiv,1598 lent,1,2kinghenryiv,1598 nobleman,1,2kinghenryiv,1598 Besides,1,2kinghenryiv,1598 lighten,1,2kinghenryiv,1598 suggestion,1,2kinghenryiv,1598 gall,1,2kinghenryiv,1598 Blown,1,2kinghenryiv,1598 burier,1,2kinghenryiv,1598 destruction,1,2kinghenryiv,1598 potable,1,2kinghenryiv,1598 waist,1,2kinghenryiv,1598 tempering,1,2kinghenryiv,1598 touch'd,1,2kinghenryiv,1598 haunch,1,2kinghenryiv,1598 forged,1,2kinghenryiv,1598 stockings,1,2kinghenryiv,1598 mouthed'st,1,2kinghenryiv,1598 defence,1,2kinghenryiv,1598 midwives,1,2kinghenryiv,1598 generally,1,2kinghenryiv,1598 restraint,1,2kinghenryiv,1598 Sounds,1,2kinghenryiv,1598 members,1,2kinghenryiv,1598 ay,1,2kinghenryiv,1598 Laud,1,2kinghenryiv,1598 comforts,1,2kinghenryiv,1598 aptest,1,2kinghenryiv,1598 apes,1,2kinghenryiv,1598 pallets,1,2kinghenryiv,1598 possess'd,1,2kinghenryiv,1598 worldlings,1,2kinghenryiv,1598 pregnancy,1,2kinghenryiv,1598 holland,1,2kinghenryiv,1598 cruelty,1,2kinghenryiv,1598 caper,1,2kinghenryiv,1598 approach,1,2kinghenryiv,1598 Unfather'd,1,2kinghenryiv,1598 amend,1,2kinghenryiv,1598 growth,1,2kinghenryiv,1598 Neptune's,1,2kinghenryiv,1598 bless'd,1,2kinghenryiv,1598 constables,1,2kinghenryiv,1598 Perkes,1,2kinghenryiv,1598 rouse,1,2kinghenryiv,1598 cured,1,2kinghenryiv,1598 dried,1,2kinghenryiv,1598 realm,1,2kinghenryiv,1598 prosper,1,2kinghenryiv,1598 curdy,1,2kinghenryiv,1598 Earls,1,2kinghenryiv,1598 unpay,1,2kinghenryiv,1598 wonderful,1,2kinghenryiv,1598 abominable,1,2kinghenryiv,1598 frights,1,2kinghenryiv,1598 ask'd,1,2kinghenryiv,1598 pursuit,1,2kinghenryiv,1598 damn'd,1,2kinghenryiv,1598 committed,1,2kinghenryiv,1598 Yonder,1,2kinghenryiv,1598 fledged,1,2kinghenryiv,1598 bodies,1,2kinghenryiv,1598 wisely,1,2kinghenryiv,1598 region,1,2kinghenryiv,1598 lo,1,2kinghenryiv,1598 Corporate,1,2kinghenryiv,1598 strain,1,2kinghenryiv,1598 necessity,1,2kinghenryiv,1598 philosopher's,1,2kinghenryiv,1598 utmost,1,2kinghenryiv,1598 crave,1,2kinghenryiv,1598 roused,1,2kinghenryiv,1598 gibbets,1,2kinghenryiv,1598 chipper,1,2kinghenryiv,1598 gambol,1,2kinghenryiv,1598 Pleaseth,1,2kinghenryiv,1598 situation,1,2kinghenryiv,1598 spero,1,2kinghenryiv,1598 ebon,1,2kinghenryiv,1598 collected,1,2kinghenryiv,1598 routs,1,2kinghenryiv,1598 catastrophe,1,2kinghenryiv,1598 unfirm,1,2kinghenryiv,1598 'Where,1,2kinghenryiv,1598 hoard,1,2kinghenryiv,1598 account,1,2kinghenryiv,1598 infernal,1,2kinghenryiv,1598 avoirdupois,1,2kinghenryiv,1598 scholar,1,2kinghenryiv,1598 Curling,1,2kinghenryiv,1598 Thereafter,1,2kinghenryiv,1598 mingle,1,2kinghenryiv,1598 imp,1,2kinghenryiv,1598 studies,1,2kinghenryiv,1598 victuallers,1,2kinghenryiv,1598 carved,1,2kinghenryiv,1598 tolling,1,2kinghenryiv,1598 train,1,2kinghenryiv,1598 enmity,1,2kinghenryiv,1598 stature,1,2kinghenryiv,1598 environ,1,2kinghenryiv,1598 offences,1,2kinghenryiv,1598 idem,1,2kinghenryiv,1598 ink,1,2kinghenryiv,1598 warms,1,2kinghenryiv,1598 Ursula,1,2kinghenryiv,1598 studied,1,2kinghenryiv,1598 abrooch,1,2kinghenryiv,1598 settled,1,2kinghenryiv,1598 offer'd,1,2kinghenryiv,1598 thoughtful,1,2kinghenryiv,1598 levy,1,2kinghenryiv,1598 alteration,1,2kinghenryiv,1598 moon,1,2kinghenryiv,1598 laboured,1,2kinghenryiv,1598 beholding,1,2kinghenryiv,1598 add,1,2kinghenryiv,1598 Thrust,1,2kinghenryiv,1598 achieved,1,2kinghenryiv,1598 resolved,1,2kinghenryiv,1598 bruited,1,2kinghenryiv,1598 dragons,1,2kinghenryiv,1598 ample,1,2kinghenryiv,1598 queasiness,1,2kinghenryiv,1598 frustrate,1,2kinghenryiv,1598 lest,1,2kinghenryiv,1598 hogshead,1,2kinghenryiv,1598 afternoon,1,2kinghenryiv,1598 dries,1,2kinghenryiv,1598 dole,1,2kinghenryiv,1598 all's,1,2kinghenryiv,1598 clangor,1,2kinghenryiv,1598 aids,1,2kinghenryiv,1598 blue,1,2kinghenryiv,1598 continent,1,2kinghenryiv,1598 feats,1,2kinghenryiv,1598 necessary,1,2kinghenryiv,1598 bench,1,2kinghenryiv,1598 mischiefs,1,2kinghenryiv,1598 strand,1,2kinghenryiv,1598 nimble,1,2kinghenryiv,1598 discordant,1,2kinghenryiv,1598 incertain,1,2kinghenryiv,1598 show'd,1,2kinghenryiv,1598 presurmise,1,2kinghenryiv,1598 knee,1,2kinghenryiv,1598 Figuring,1,2kinghenryiv,1598 scatter'd,1,2kinghenryiv,1598 Kiss,1,2kinghenryiv,1598 upbraided,1,2kinghenryiv,1598 acquaint,1,2kinghenryiv,1598 digression,1,2kinghenryiv,1598 Because,1,2kinghenryiv,1598 prescriptions,1,2kinghenryiv,1598 Tilly,1,2kinghenryiv,1598 Caesars,1,2kinghenryiv,1598 hark,1,2kinghenryiv,1598 graves,1,2kinghenryiv,1598 accents,1,2kinghenryiv,1598 harken,1,2kinghenryiv,1598 Tisick,1,2kinghenryiv,1598 reasons,1,2kinghenryiv,1598 eats,1,2kinghenryiv,1598 hoc,1,2kinghenryiv,1598 personal,1,2kinghenryiv,1598 beavers,1,2kinghenryiv,1598 sanctities,1,2kinghenryiv,1598 bodily,1,2kinghenryiv,1598 ability,1,2kinghenryiv,1598 imprisonment,1,2kinghenryiv,1598 tripe,1,2kinghenryiv,1598 reasonable,1,2kinghenryiv,1598 frighted,1,2kinghenryiv,1598 buildeth,1,2kinghenryiv,1598 lewd,1,2kinghenryiv,1598 hall,1,2kinghenryiv,1598 decreasing,1,2kinghenryiv,1598 Bishop,1,2kinghenryiv,1598 unarmed,1,2kinghenryiv,1598 puffed,1,2kinghenryiv,1598 outright,1,2kinghenryiv,1598 labouring,1,2kinghenryiv,1598 Achitophel,1,2kinghenryiv,1598 kingly,1,2kinghenryiv,1598 Foretells,1,2kinghenryiv,1598 ta,1,2kinghenryiv,1598 continents,1,2kinghenryiv,1598 swarm'd,1,2kinghenryiv,1598 knit,1,2kinghenryiv,1598 Lack,1,2kinghenryiv,1598 text,1,2kinghenryiv,1598 bloodied,1,2kinghenryiv,1598 pale,1,2kinghenryiv,1598 saltness,1,2kinghenryiv,1598 coldest,1,2kinghenryiv,1598 lanthorn,1,2kinghenryiv,1598 intended,1,2kinghenryiv,1598 palm,1,2kinghenryiv,1598 fashion'd,1,2kinghenryiv,1598 finish,1,2kinghenryiv,1598 perform'd,1,2kinghenryiv,1598 weeds,1,2kinghenryiv,1598 acknowledge,1,2kinghenryiv,1598 'Let,1,2kinghenryiv,1598 unfasten,1,2kinghenryiv,1598 repeat,1,2kinghenryiv,1598 Pluck,1,2kinghenryiv,1598 Full,1,2kinghenryiv,1598 pot's,1,2kinghenryiv,1598 draws,1,2kinghenryiv,1598 thinkest,1,2kinghenryiv,1598 confession,1,2kinghenryiv,1598 ladder,1,2kinghenryiv,1598 sighing,1,2kinghenryiv,1598 separate,1,2kinghenryiv,1598 sincere,1,2kinghenryiv,1598 Shrove,1,2kinghenryiv,1598 unguided,1,2kinghenryiv,1598 forty,1,2kinghenryiv,1598 appliances,1,2kinghenryiv,1598 legged,1,2kinghenryiv,1598 particulars,1,2kinghenryiv,1598 whore's,1,2kinghenryiv,1598 halt,1,2kinghenryiv,1598 miscarried,1,2kinghenryiv,1598 Cain,1,2kinghenryiv,1598 perpetual,1,2kinghenryiv,1598 successively,1,2kinghenryiv,1598 Empty,1,2kinghenryiv,1598 commendable,1,2kinghenryiv,1598 constrain'd,1,2kinghenryiv,1598 midnight,1,2kinghenryiv,1598 weeps,1,2kinghenryiv,1598 juvenal,1,2kinghenryiv,1598 Pleading,1,2kinghenryiv,1598 defensible,1,2kinghenryiv,1598 impatient,1,2kinghenryiv,1598 unpicked,1,2kinghenryiv,1598 plenteously,1,2kinghenryiv,1598 ask,1,2kinghenryiv,1598 ship,1,2kinghenryiv,1598 neglect,1,2kinghenryiv,1598 hangs,1,2kinghenryiv,1598 delight,1,2kinghenryiv,1598 mode,1,2kinghenryiv,1598 return'd,1,2kinghenryiv,1598 winter's,1,2kinghenryiv,1598 spit,1,2kinghenryiv,1598 extremest,1,2kinghenryiv,1598 litter,1,2kinghenryiv,1598 emptier,1,2kinghenryiv,1598 Criest,1,2kinghenryiv,1598 frown,1,2kinghenryiv,1598 Dispatch,1,2kinghenryiv,1598 Helen,1,2kinghenryiv,1598 minute's,1,2kinghenryiv,1598 Borne,1,2kinghenryiv,1598 attach,1,2kinghenryiv,1598 owed,1,2kinghenryiv,1598 Baying,1,2kinghenryiv,1598 sanctify,1,2kinghenryiv,1598 infer,1,2kinghenryiv,1598 forlorn,1,2kinghenryiv,1598 pack,1,2kinghenryiv,1598 worldly,1,2kinghenryiv,1598 yielder,1,2kinghenryiv,1598 dreadful,1,2kinghenryiv,1598 puts,1,2kinghenryiv,1598 stillest,1,2kinghenryiv,1598 Cast,1,2kinghenryiv,1598 yielded,1,2kinghenryiv,1598 billows,1,2kinghenryiv,1598 winking,1,2kinghenryiv,1598 awe,1,2kinghenryiv,1598 lull'd,1,2kinghenryiv,1598 consideration,1,2kinghenryiv,1598 'semper,1,2kinghenryiv,1598 ouches,1,2kinghenryiv,1598 retainers,1,2kinghenryiv,1598 Proper,1,2kinghenryiv,1598 Proface,1,2kinghenryiv,1598 food,1,2kinghenryiv,1598 conversing,1,2kinghenryiv,1598 prepared,1,2kinghenryiv,1598 Discharge,1,2kinghenryiv,1598 famished,1,2kinghenryiv,1598 yard,1,2kinghenryiv,1598 tearing,1,2kinghenryiv,1598 object,1,2kinghenryiv,1598 Weary,1,2kinghenryiv,1598 goblet,1,2kinghenryiv,1598 beetle,1,2kinghenryiv,1598 push,1,2kinghenryiv,1598 Alarum,1,2kinghenryiv,1598 fond,1,2kinghenryiv,1598 juggler,1,2kinghenryiv,1598 froze,1,2kinghenryiv,1598 scarcely,1,2kinghenryiv,1598 forcible,1,2kinghenryiv,1598 attempts,1,2kinghenryiv,1598 gird,1,2kinghenryiv,1598 fancies,1,2kinghenryiv,1598 beards,1,2kinghenryiv,1598 rightly,1,2kinghenryiv,1598 mayst,1,2kinghenryiv,1598 folk,1,2kinghenryiv,1598 suspire,1,2kinghenryiv,1598 fold,1,2kinghenryiv,1598 toasts,1,2kinghenryiv,1598 humour's,1,2kinghenryiv,1598 Care,1,2kinghenryiv,1598 hive,1,2kinghenryiv,1598 Hast,1,2kinghenryiv,1598 Scarlet,1,2kinghenryiv,1598 chimes,1,2kinghenryiv,1598 jester,1,2kinghenryiv,1598 penknife,1,2kinghenryiv,1598 Utis,1,2kinghenryiv,1598 apprehensive,1,2kinghenryiv,1598 liveries,1,2kinghenryiv,1598 olive,1,2kinghenryiv,1598 furnish,1,2kinghenryiv,1598 knock,1,2kinghenryiv,1598 thanks,1,2kinghenryiv,1598 Tavern,1,2kinghenryiv,1598 trick,1,2kinghenryiv,1598 bought,1,2kinghenryiv,1598 prate,1,2kinghenryiv,1598 Barson,1,2kinghenryiv,1598 Among,1,2kinghenryiv,1598 theirs,1,2kinghenryiv,1598 complices,1,2kinghenryiv,1598 partial,1,2kinghenryiv,1598 Hark,1,2kinghenryiv,1598 purchased,1,2kinghenryiv,1598 Wheeson,1,2kinghenryiv,1598 fed,1,2kinghenryiv,1598 beggary,1,2kinghenryiv,1598 Acting,1,2kinghenryiv,1598 touch,1,2kinghenryiv,1598 Again,1,2kinghenryiv,1598 leer,1,2kinghenryiv,1598 cheque,1,2kinghenryiv,1598 butcher's,1,2kinghenryiv,1598 fantasy,1,2kinghenryiv,1598 daring,1,2kinghenryiv,1598 Psalmist,1,2kinghenryiv,1598 foundation,1,2kinghenryiv,1598 displaced,1,2kinghenryiv,1598 tragic,1,2kinghenryiv,1598 Stoop,1,2kinghenryiv,1598 baboon,1,2kinghenryiv,1598 hazard,1,2kinghenryiv,1598 mayest,1,2kinghenryiv,1598 Jesus,1,2kinghenryiv,1598 lavishly,1,2kinghenryiv,1598 feign,1,2kinghenryiv,1598 guess,1,2kinghenryiv,1598 bullet,1,2kinghenryiv,1598 root,1,2kinghenryiv,1598 moves,1,2kinghenryiv,1598 spoken,1,2kinghenryiv,1598 surgery,1,2kinghenryiv,1598 superfluous,1,2kinghenryiv,1598 march,1,2kinghenryiv,1598 height,1,2kinghenryiv,1598 Peto,1,2kinghenryiv,1598 Spoken,1,2kinghenryiv,1598 births,1,2kinghenryiv,1598 aggravate,1,2kinghenryiv,1598 George,1,2kinghenryiv,1598 smith's,1,2kinghenryiv,1598 quoif,1,2kinghenryiv,1598 Comes,1,2kinghenryiv,1598 exposition,1,2kinghenryiv,1598 contented,1,2kinghenryiv,1598 leak,1,2kinghenryiv,1598 rood,1,2kinghenryiv,1598 often,1,2kinghenryiv,1598 brewer's,1,2kinghenryiv,1598 active,1,2kinghenryiv,1598 raze,1,2kinghenryiv,1598 Turnbull,1,2kinghenryiv,1598 intervallums,1,2kinghenryiv,1598 surfeited,1,2kinghenryiv,1598 drawers,1,2kinghenryiv,1598 perceived,1,2kinghenryiv,1598 lavish,1,2kinghenryiv,1598 proofs,1,2kinghenryiv,1598 Sup,1,2kinghenryiv,1598 firmness,1,2kinghenryiv,1598 scullion,1,2kinghenryiv,1598 rigol,1,2kinghenryiv,1598 breeds,1,2kinghenryiv,1598 destiny,1,2kinghenryiv,1598 incurable,1,2kinghenryiv,1598 main,1,2kinghenryiv,1598 Depart,1,2kinghenryiv,1598 Virtue,1,2kinghenryiv,1598 DUKE,1,2kinghenryiv,1598 goodwife,1,2kinghenryiv,1598 ballad,1,2kinghenryiv,1598 tarry,1,2kinghenryiv,1598 albeit,1,2kinghenryiv,1598 Stafford,1,2kinghenryiv,1598 Washing,1,2kinghenryiv,1598 carried,1,2kinghenryiv,1598 JACK,1,2kinghenryiv,1598 Fondly,1,2kinghenryiv,1598 Umfrevile,1,2kinghenryiv,1598 Spoke,1,2kinghenryiv,1598 report,1,2kinghenryiv,1598 mechanical,1,2kinghenryiv,1598 canker'd,1,2kinghenryiv,1598 tokens,1,2kinghenryiv,1598 unluckily,1,2kinghenryiv,1598 abated,1,2kinghenryiv,1598 forehead,1,2kinghenryiv,1598 hilt,1,2kinghenryiv,1598 barony,1,2kinghenryiv,1598 'bounce',1,2kinghenryiv,1598 rose,1,2kinghenryiv,1598 undoes,1,2kinghenryiv,1598 rascals,1,2kinghenryiv,1598 silence,1,2kinghenryiv,1598 undeserver,1,2kinghenryiv,1598 clamour,1,2kinghenryiv,1598 weighing,1,2kinghenryiv,1598 takest,1,2kinghenryiv,1598 overspread,1,2kinghenryiv,1598 retired,1,2kinghenryiv,1598 distance,1,2kinghenryiv,1598 overween,1,2kinghenryiv,1598 built,1,2kinghenryiv,1598 disgorge,1,2kinghenryiv,1598 sickly,1,2kinghenryiv,1598 Brothers,1,2kinghenryiv,1598 smallest,1,2kinghenryiv,1598 pawn'd,1,2kinghenryiv,1598 'Gainst,1,2kinghenryiv,1598 nightgown,1,2kinghenryiv,1598 repose,1,2kinghenryiv,1598 omit,1,2kinghenryiv,1598 thinks,1,2kinghenryiv,1598 patch,1,2kinghenryiv,1598 martyr,1,2kinghenryiv,1598 tends,1,2kinghenryiv,1598 accite,1,2kinghenryiv,1598 marks,1,2kinghenryiv,1598 Venus,1,2kinghenryiv,1598 Seven,1,2kinghenryiv,1598 newest,1,2kinghenryiv,1598 begone,1,2kinghenryiv,1598 Althaea,1,2kinghenryiv,1598 Surecard,1,2kinghenryiv,1598 beast,1,2kinghenryiv,1598 retreat,1,2kinghenryiv,1598 toil'd,1,2kinghenryiv,1598 gavest,1,2kinghenryiv,1598 doleful,1,2kinghenryiv,1598 faculties,1,2kinghenryiv,1598 scroll,1,2kinghenryiv,1598 pates,1,2kinghenryiv,1598 hips,1,2kinghenryiv,1598 beats,1,2kinghenryiv,1598 forgetive,1,2kinghenryiv,1598 unstained,1,2kinghenryiv,1598 Wrested,1,2kinghenryiv,1598 gently,1,2kinghenryiv,1598 mounted,1,2kinghenryiv,1598 proudly,1,2kinghenryiv,1598 females,1,2kinghenryiv,1598 sprung,1,2kinghenryiv,1598 paths,1,2kinghenryiv,1598 scaly,1,2kinghenryiv,1598 deserving,1,2kinghenryiv,1598 conceited,1,2kinghenryiv,1598 below,1,2kinghenryiv,1598 vapours,1,2kinghenryiv,1598 daily,1,2kinghenryiv,1598 entertainment,1,2kinghenryiv,1598 rout,1,2kinghenryiv,1598 schedule,1,2kinghenryiv,1598 remedy,1,2kinghenryiv,1598 rash,1,2kinghenryiv,1598 tender,1,2kinghenryiv,1598 spread,1,2kinghenryiv,1598 estate,1,2kinghenryiv,1598 chapt,1,2kinghenryiv,1598 pleaseth,1,2kinghenryiv,1598 ours,1,2kinghenryiv,1598 blew,1,2kinghenryiv,1598 traitors,1,2kinghenryiv,1598 Peopled,1,2kinghenryiv,1598 est,1,2kinghenryiv,1598 hide,1,2kinghenryiv,1598 Excursions,1,2kinghenryiv,1598 Alack,1,2kinghenryiv,1598 inwards,1,2kinghenryiv,1598 misuse,1,2kinghenryiv,1598 headland,1,2kinghenryiv,1598 chaps,1,2kinghenryiv,1598 dangers,1,2kinghenryiv,1598 glasses,1,2kinghenryiv,1598 leathern,1,2kinghenryiv,1598 fails,1,2kinghenryiv,1598 restrain,1,2kinghenryiv,1598 excuses,1,2kinghenryiv,1598 Lethe,1,2kinghenryiv,1598 strike,1,2kinghenryiv,1598 abridge,1,2kinghenryiv,1598 mare's,1,2kinghenryiv,1598 anatomize,1,2kinghenryiv,1598 Bare,1,2kinghenryiv,1598 discoverers,1,2kinghenryiv,1598 Briefly,1,2kinghenryiv,1598 visage,1,2kinghenryiv,1598 Sit,1,2kinghenryiv,1598 wolves,1,2kinghenryiv,1598 picking,1,2kinghenryiv,1598 basket,1,2kinghenryiv,1598 nut,1,2kinghenryiv,1598 morrows,1,2kinghenryiv,1598 mate,1,2kinghenryiv,1598 progress,1,2kinghenryiv,1598 begging,1,2kinghenryiv,1598 perform,1,2kinghenryiv,1598 loser,1,2kinghenryiv,1598 who's,1,2kinghenryiv,1598 odious,1,2kinghenryiv,1598 caraways,1,2kinghenryiv,1598 ignorant,1,2kinghenryiv,1598 presented,1,2kinghenryiv,1598 Approach,1,2kinghenryiv,1598 dares,1,2kinghenryiv,1598 mouth,1,2kinghenryiv,1598 Certain,1,2kinghenryiv,1598 scars,1,2kinghenryiv,1598 places,1,2kinghenryiv,1598 awhile,1,2kinghenryiv,1598 spiritless,1,2kinghenryiv,1598 quarter,1,2kinghenryiv,1598 mouse,1,2kinghenryiv,1598 lattice,1,2kinghenryiv,1598 Alban's,1,2kinghenryiv,1598 slenderer,1,2kinghenryiv,1598 tapestry,1,2kinghenryiv,1598 Peter,1,2kinghenryiv,1598 helter,1,2kinghenryiv,1598 Will't,1,2kinghenryiv,1598 bestride,1,2kinghenryiv,1598 pack'd,1,2kinghenryiv,1598 Turns,1,2kinghenryiv,1598 tutor,1,2kinghenryiv,1598 dirty,1,2kinghenryiv,1598 capitol,1,2kinghenryiv,1598 girdles,1,2kinghenryiv,1598 engrossed,1,2kinghenryiv,1598 mourn,1,2kinghenryiv,1598 spurn,1,2kinghenryiv,1598 seasons,1,2kinghenryiv,1598 scab,1,2kinghenryiv,1598 admits,1,2kinghenryiv,1598 lodge,1,2kinghenryiv,1598 revolution,1,2kinghenryiv,1598 'Happy,1,2kinghenryiv,1598 pacify,1,2kinghenryiv,1598 ringing,1,2kinghenryiv,1598 certificate,1,2kinghenryiv,1598 filial,1,2kinghenryiv,1598 sheriff,1,2kinghenryiv,1598 gainsaid,1,2kinghenryiv,1598 industry,1,2kinghenryiv,1598 fares,1,2kinghenryiv,1598 Long,1,2kinghenryiv,1598 elm,1,2kinghenryiv,1598 disdain'd,1,2kinghenryiv,1598 Presume,1,2kinghenryiv,1598 bleeds,1,2kinghenryiv,1598 solid,1,2kinghenryiv,1598 Stockfish,1,2kinghenryiv,1598 covert,1,2kinghenryiv,1598 satisfaction,1,2kinghenryiv,1598 qualities,1,2kinghenryiv,1598 stars,1,2kinghenryiv,1598 prize,1,2kinghenryiv,1598 saving,1,2kinghenryiv,1598 halting,1,2kinghenryiv,1598 bosoms,1,2kinghenryiv,1598 blanket,1,2kinghenryiv,1598 robbery,1,2kinghenryiv,1598 Grant,1,2kinghenryiv,1598 starting,1,2kinghenryiv,1598 purposed,1,2kinghenryiv,1598 kirtle,1,2kinghenryiv,1598 vent,1,2kinghenryiv,1598 fortnight,1,2kinghenryiv,1598 humorous,1,2kinghenryiv,1598 blush,1,2kinghenryiv,1598 chair,1,2kinghenryiv,1598 malt,1,2kinghenryiv,1598 reverently,1,2kinghenryiv,1598 indifference,1,2kinghenryiv,1598 steers,1,2kinghenryiv,1598 tapestries,1,2kinghenryiv,1598 procure,1,2kinghenryiv,1598 belong,1,2kinghenryiv,1598 quantities,1,2kinghenryiv,1598 stabbed,1,2kinghenryiv,1598 mask,1,2kinghenryiv,1598 skin,1,2kinghenryiv,1598 Lubber's,1,2kinghenryiv,1598 ghastly,1,2kinghenryiv,1598 mast,1,2kinghenryiv,1598 parties,1,2kinghenryiv,1598 acquit,1,2kinghenryiv,1598 achievement,1,2kinghenryiv,1598 kissing,1,2kinghenryiv,1598 coward,1,2kinghenryiv,1598 son's,1,2kinghenryiv,1598 decension,1,2kinghenryiv,1598 'And,1,2kinghenryiv,1598 persuaded,1,2kinghenryiv,1598 Sampson,1,2kinghenryiv,1598 Presenter,1,2kinghenryiv,1598 administration,1,2kinghenryiv,1598 decide,1,2kinghenryiv,1598 bringer,1,2kinghenryiv,1598 skelter,1,2kinghenryiv,1598 issue,1,2kinghenryiv,1598 furnish'd,1,2kinghenryiv,1598 Archbishop's,1,2kinghenryiv,1598 disadvantage,1,2kinghenryiv,1598 quoth,1,2kinghenryiv,1598 Trojan,1,2kinghenryiv,1598 increases,1,2kinghenryiv,1598 infinitely,1,2kinghenryiv,1598 blow,1,2kinghenryiv,1598 chaff,1,2kinghenryiv,1598 'Go,1,2kinghenryiv,1598 sortance,1,2kinghenryiv,1598 martyrs,1,2kinghenryiv,1598 gates,1,2kinghenryiv,1598 'I',1,2kinghenryiv,1598 labour,1,2kinghenryiv,1598 Job,1,2kinghenryiv,1598 weaken'd,1,2kinghenryiv,1598 enlarge,1,2kinghenryiv,1598 address,1,2kinghenryiv,1598 infect,1,2kinghenryiv,1598 vinegar,1,2kinghenryiv,1598 chide,1,2kinghenryiv,1598 thief,1,2kinghenryiv,1598 downy,1,2kinghenryiv,1598 hautboy,1,2kinghenryiv,1598 INDUCTION,1,2kinghenryiv,1598 seal'd,1,2kinghenryiv,1598 'Sir,1,2kinghenryiv,1598 West,1,2kinghenryiv,1598 northward,1,2kinghenryiv,1598 Spent,1,2kinghenryiv,1598 likeliest,1,2kinghenryiv,1598 Eating,1,2kinghenryiv,1598 free,1,2kinghenryiv,1598 costermonger,1,2kinghenryiv,1598 'Si,1,2kinghenryiv,1598 ordinary,1,2kinghenryiv,1598 fantastically,1,2kinghenryiv,1598 cuttle,1,2kinghenryiv,1598 shoeing,1,2kinghenryiv,1598 marvel,1,2kinghenryiv,1598 fist,1,2kinghenryiv,1598 dainty,1,2kinghenryiv,1598 divorced,1,2kinghenryiv,1598 disguised,1,2kinghenryiv,1598 trouble,1,2kinghenryiv,1598 division,1,2kinghenryiv,1598 blasted,1,2kinghenryiv,1598 silkman,1,2kinghenryiv,1598 Rome,1,2kinghenryiv,1598 wen,1,2kinghenryiv,1598 i'faith,1,2kinghenryiv,1598 vapour,1,2kinghenryiv,1598 forgiven,1,2kinghenryiv,1598 louder,1,2kinghenryiv,1598 inland,1,2kinghenryiv,1598 arrested,1,2kinghenryiv,1598 possession,1,2kinghenryiv,1598 Nine,1,2kinghenryiv,1598 banks,1,2kinghenryiv,1598 ratsbane,1,2kinghenryiv,1598 breed,1,2kinghenryiv,1598 neaf,1,2kinghenryiv,1598 losing,1,2kinghenryiv,1598 trembling,1,2kinghenryiv,1598 doctor,1,2kinghenryiv,1598 stained,1,2kinghenryiv,1598 pause,1,2kinghenryiv,1598 profited,1,2kinghenryiv,1598 suspicion,1,2kinghenryiv,1598 poll,1,2kinghenryiv,1598 agate,1,2kinghenryiv,1598 'for,1,2kinghenryiv,1598 proved,1,2kinghenryiv,1598 renown,1,2kinghenryiv,1598 semblable,1,2kinghenryiv,1598 strained,1,2kinghenryiv,1598 Johns,1,2kinghenryiv,1598 Treason's,1,2kinghenryiv,1598 flesh'd,1,2kinghenryiv,1598 cough,1,2kinghenryiv,1598 odd,1,2kinghenryiv,1598 enamour'd,1,2kinghenryiv,1598 stale,1,2kinghenryiv,1598 neck,1,2kinghenryiv,1598 understanding,1,2kinghenryiv,1598 safely,1,2kinghenryiv,1598 smoky,1,2kinghenryiv,1598 fits,1,2kinghenryiv,1598 bumper,1,2kinghenryiv,1598 pond,1,2kinghenryiv,1598 sides,1,2kinghenryiv,1598 tardily,1,2kinghenryiv,1598 win,1,2kinghenryiv,1598 capable,1,2kinghenryiv,1598 oft,1,2kinghenryiv,1598 roast,1,2kinghenryiv,1598 Dumbe,1,2kinghenryiv,1598 curb'd,1,2kinghenryiv,1598 Galen,1,2kinghenryiv,1598 proposed,1,2kinghenryiv,1598 privy,1,2kinghenryiv,1598 hateful,1,2kinghenryiv,1598 'Twill,1,2kinghenryiv,1598 confines,1,2kinghenryiv,1598 curb,1,2kinghenryiv,1598 roughly,1,2kinghenryiv,1598 bawdy,1,2kinghenryiv,1598 operation,1,2kinghenryiv,1598 martial,1,2kinghenryiv,1598 hearer,1,2kinghenryiv,1598 Blunts,1,2kinghenryiv,1598 curs,1,2kinghenryiv,1598 brimful,1,2kinghenryiv,1598 measured,1,2kinghenryiv,1598 lovedst,1,2kinghenryiv,1598 buckle,1,2kinghenryiv,1598 Turkish,1,2kinghenryiv,1598 binds,1,2kinghenryiv,1598 sitting,1,2kinghenryiv,1598 prophesied,1,2kinghenryiv,1598 THOMAS,1,2kinghenryiv,1598 Tuesday,1,2kinghenryiv,1598 banish'd,1,2kinghenryiv,1598 surveyors,1,2kinghenryiv,1598 pension,1,2kinghenryiv,1598 marshal's,1,2kinghenryiv,1598 severed,1,2kinghenryiv,1598 steel'd,1,2kinghenryiv,1598 broadsides,1,2kinghenryiv,1598 manifest,1,2kinghenryiv,1598 Stoop'd,1,2kinghenryiv,1598 recover,1,2kinghenryiv,1598 bestow'd,1,2kinghenryiv,1598 happiest,1,2kinghenryiv,1598 dunghill,1,2kinghenryiv,1598 conjectures,1,2kinghenryiv,1598 clock,1,2kinghenryiv,1598 heaps,1,2kinghenryiv,1598 Saw,1,2kinghenryiv,1598 flight,1,2kinghenryiv,1598 musicians,1,2kinghenryiv,1598 walls,1,2kinghenryiv,1598 clawed,1,2kinghenryiv,1598 healthy,1,2kinghenryiv,1598 Construe,1,2kinghenryiv,1598 impediments,1,2kinghenryiv,1598 death's,1,2kinghenryiv,1598 Trigon,1,2kinghenryiv,1598 arbour,1,2kinghenryiv,1598 Snores,1,2kinghenryiv,1598 crown's,1,2kinghenryiv,1598 Blunt,1,2kinghenryiv,1598 partition,1,2kinghenryiv,1598 crowding,1,2kinghenryiv,1598 flint,1,2kinghenryiv,1598 maidenhead,1,2kinghenryiv,1598 renown'd,1,2kinghenryiv,1598 Thine,1,2kinghenryiv,1598 crown'd,1,2kinghenryiv,1598 liked,1,2kinghenryiv,1598 invincible,1,2kinghenryiv,1598 chastisement,1,2kinghenryiv,1598 canaries,1,2kinghenryiv,1598 gallows',1,2kinghenryiv,1598 stiff,1,2kinghenryiv,1598 Wart's,1,2kinghenryiv,1598 tunes,1,2kinghenryiv,1598 Untwine,1,2kinghenryiv,1598 signories,1,2kinghenryiv,1598 Coventry,1,2kinghenryiv,1598 stage,1,2kinghenryiv,1598 Throw,1,2kinghenryiv,1598 staff,1,2kinghenryiv,1598 rise,1,2kinghenryiv,1598 commoners,1,2kinghenryiv,1598 growing,1,2kinghenryiv,1598 conversations,1,2kinghenryiv,1598 departing,1,2kinghenryiv,1598 bleed,1,2kinghenryiv,1598 wag,1,2kinghenryiv,1598 girdle,1,2kinghenryiv,1598 sufferance,1,2kinghenryiv,1598 hurries,1,2kinghenryiv,1598 handle,1,2kinghenryiv,1598 arts,1,2kinghenryiv,1598 arrow,1,2kinghenryiv,1598 East,1,2kinghenryiv,1598 they'll,1,2kinghenryiv,1598 huswives,1,2kinghenryiv,1598 blemish,1,2kinghenryiv,1598 tutor'd,1,2kinghenryiv,1598 saith,1,2kinghenryiv,1598 resistance,1,2kinghenryiv,1598 rags,1,2kinghenryiv,1598 inflammation,1,2kinghenryiv,1598 ends,1,2kinghenryiv,1598 instinct,1,2kinghenryiv,1598 kitchen,1,2kinghenryiv,1598 peradventure,1,2kinghenryiv,1598 price,1,2kinghenryiv,1598 Mass,1,2kinghenryiv,1598 bearded,1,2kinghenryiv,1598 villains,1,2kinghenryiv,1598 supped,1,2kinghenryiv,1598 complain,1,2kinghenryiv,1598 multitude,1,2kinghenryiv,1598 wheel,1,2kinghenryiv,1598 pounds,1,2kinghenryiv,1598 bells,1,2kinghenryiv,1598 cushions,1,2kinghenryiv,1598 overturn'd,1,2kinghenryiv,1598 Three,1,2kinghenryiv,1598 aspen,1,2kinghenryiv,1598 pence,1,2kinghenryiv,1598 survive,1,2kinghenryiv,1598 ruins,1,2kinghenryiv,1598 notice,1,2kinghenryiv,1598 misleaders,1,2kinghenryiv,1598 curses,1,2kinghenryiv,1598 irons,1,2kinghenryiv,1598 sweets,1,2kinghenryiv,1598 Gives,1,2kinghenryiv,1598 mightily,1,2kinghenryiv,1598 vulgar,1,2kinghenryiv,1598 gladly,1,2kinghenryiv,1598 husbandry,1,2kinghenryiv,1598 prompt,1,2kinghenryiv,1598 agree,1,2kinghenryiv,1598 mettle,1,2kinghenryiv,1598 seize,1,2kinghenryiv,1598 oblivion,1,2kinghenryiv,1598 quicksilver,1,2kinghenryiv,1598 Uneasy,1,2kinghenryiv,1598 Sneak,1,2kinghenryiv,1598 morsel,1,2kinghenryiv,1598 imbrue,1,2kinghenryiv,1598 exclamation,1,2kinghenryiv,1598 poison,1,2kinghenryiv,1598 Threw,1,2kinghenryiv,1598 listening,1,2kinghenryiv,1598 keeper's,1,2kinghenryiv,1598 charged,1,2kinghenryiv,1598 canvass,1,2kinghenryiv,1598 Surrey,1,2kinghenryiv,1598 clapped,1,2kinghenryiv,1598 anger,1,2kinghenryiv,1598 foreign,1,2kinghenryiv,1598 tamely,1,2kinghenryiv,1598 gunpowder,1,2kinghenryiv,1598 lechery,1,2kinghenryiv,1598 sweatest,1,2kinghenryiv,1598 bitterness,1,2kinghenryiv,1598 wondrous,1,2kinghenryiv,1598 Bourdeaux,1,2kinghenryiv,1598 wife's,1,2kinghenryiv,1598 supply,1,2kinghenryiv,1598 imputation,1,2kinghenryiv,1598 haply,1,2kinghenryiv,1598 overwhelmed,1,2kinghenryiv,1598 consent,1,2kinghenryiv,1598 whistle,1,2kinghenryiv,1598 belie,1,2kinghenryiv,1598 determined,1,2kinghenryiv,1598 serves,1,2kinghenryiv,1598 fox,1,2kinghenryiv,1598 falling,1,2kinghenryiv,1598 clout,1,2kinghenryiv,1598 went,1,2kinghenryiv,1598 stirs,1,2kinghenryiv,1598 wrong'd,1,2kinghenryiv,1598 whence,1,2kinghenryiv,1598 Noble,1,2kinghenryiv,1598 cover,1,2kinghenryiv,1598 uneasy,1,2kinghenryiv,1598 fail,1,2kinghenryiv,1598 file,1,2kinghenryiv,1598 gifts,1,2kinghenryiv,1598 earnestness,1,2kinghenryiv,1598 Strike,1,2kinghenryiv,1598 Stumbling,1,2kinghenryiv,1598 hideous,1,2kinghenryiv,1598 viz,1,2kinghenryiv,1598 grieve,1,2kinghenryiv,1598 Stopping,1,2kinghenryiv,1598 create,1,2kinghenryiv,1598 hunger,1,2kinghenryiv,1598 dispersed,1,2kinghenryiv,1598 vomit,1,2kinghenryiv,1598 evil,1,2kinghenryiv,1598 inwardly,1,2kinghenryiv,1598 Employ,1,2kinghenryiv,1598 Douglas',1,2kinghenryiv,1598 durst,1,2kinghenryiv,1598 Heren,1,2kinghenryiv,1598 Stretches,1,2kinghenryiv,1598 Many,1,2kinghenryiv,1598 tilled,1,2kinghenryiv,1598 grate,1,2kinghenryiv,1598 judge,1,2kinghenryiv,1598 doublet,1,2kinghenryiv,1598 giving,1,2kinghenryiv,1598 Tilt,1,2kinghenryiv,1598 desert,1,2kinghenryiv,1598 miracle,1,2kinghenryiv,1598 foeman,1,2kinghenryiv,1598 establish,1,2kinghenryiv,1598 etceteras,1,2kinghenryiv,1598 cribs,1,2kinghenryiv,1598 utterly,1,2kinghenryiv,1598 commences,1,2kinghenryiv,1598 snake,1,2kinghenryiv,1598 article,1,2kinghenryiv,1598 victor,1,2kinghenryiv,1598 cloud,1,2kinghenryiv,1598 phrases,1,2kinghenryiv,1598 wilful,1,2kinghenryiv,1598 daggers,1,2kinghenryiv,1598 windmill,1,2kinghenryiv,1598 commenced,1,2kinghenryiv,1598 speeded,1,2kinghenryiv,1598 Greeks,1,2kinghenryiv,1598 Phrase,1,2kinghenryiv,1598 Impatient,1,2kinghenryiv,1598 methinks,1,2kinghenryiv,1598 vaward,1,2kinghenryiv,1598 worm,1,2kinghenryiv,1598 Hinckley,1,2kinghenryiv,1598 parcels,1,2kinghenryiv,1598 endeared,1,2kinghenryiv,1598 wit's,1,2kinghenryiv,1598 dated,1,2kinghenryiv,1598 serve's,1,2kinghenryiv,1598 deafening,1,2kinghenryiv,1598 prostrate,1,2kinghenryiv,1598 Africa,1,2kinghenryiv,1598 fighting,1,2kinghenryiv,1598 wore,1,2kinghenryiv,1598 husbanded,1,2kinghenryiv,1598 passing,1,2kinghenryiv,1598 brandish,1,2kinghenryiv,1598 clay,1,2kinghenryiv,1598 fig,1,2kinghenryiv,1598 Galloway,1,2kinghenryiv,1598 pantler,1,2kinghenryiv,1598 Deny,1,2kinghenryiv,1598 endeavour,1,2kinghenryiv,1598 flame,1,2kinghenryiv,1598 minute,1,2kinghenryiv,1598 liege's,1,2kinghenryiv,1598 misdoubts,1,2kinghenryiv,1598 Sorrow,1,2kinghenryiv,1598 Keech,1,2kinghenryiv,1598 duer,1,2kinghenryiv,1598 delectable,1,2kinghenryiv,1598 Weaken'd,1,2kinghenryiv,1598 Scroop,1,2kinghenryiv,1598 pleases,1,2kinghenryiv,1598 continue,1,2kinghenryiv,1598 engaged,1,2kinghenryiv,1598 carat,1,2kinghenryiv,1598 forspent,1,2kinghenryiv,1598 opener,1,2kinghenryiv,1598 folly,1,2kinghenryiv,1598 horn,1,2kinghenryiv,1598 buckles,1,2kinghenryiv,1598 buckler,1,2kinghenryiv,1598 outbids,1,2kinghenryiv,1598 married,1,2kinghenryiv,1598 joined,1,2kinghenryiv,1598 manured,1,2kinghenryiv,1598 redresses,1,2kinghenryiv,1598 duties,1,2kinghenryiv,1598 contagious,1,2kinghenryiv,1598 bloodshed,1,2kinghenryiv,1598 mansion,1,2kinghenryiv,1598 gormandizing,1,2kinghenryiv,1598 alway,1,2kinghenryiv,1598 tavern,1,2kinghenryiv,1598 Flattering,1,2kinghenryiv,1598 indignities,1,2kinghenryiv,1598 surge,1,2kinghenryiv,1598 ostentation,1,2kinghenryiv,1598 bite,1,2kinghenryiv,1598 lined,1,2kinghenryiv,1598 divers,1,2kinghenryiv,1598 immodest,1,2kinghenryiv,1598 herself,1,2kinghenryiv,1598 backbite,1,2kinghenryiv,1598 Cotswold,1,2kinghenryiv,1598 summ'd,1,2kinghenryiv,1598 queen,1,2kinghenryiv,1598 busses,1,2kinghenryiv,1598 wived,1,2kinghenryiv,1598 Barbary,1,2kinghenryiv,1598 betters,1,2kinghenryiv,1598 madly,1,2kinghenryiv,1598 wonted,1,2kinghenryiv,1598 whither,1,2kinghenryiv,1598 Offend,1,2kinghenryiv,1598 'Brother,1,2kinghenryiv,1598 Pluto's,1,2kinghenryiv,1598 perfectness,1,2kinghenryiv,1598 increasing,1,2kinghenryiv,1598 meaning,1,2kinghenryiv,1598 gilded,1,2kinghenryiv,1598 Four,1,2kinghenryiv,1598 backbitten,1,2kinghenryiv,1598 hove,1,2kinghenryiv,1598 public,1,2kinghenryiv,1598 dispraise,1,2kinghenryiv,1598 hideously,1,2kinghenryiv,1598 prophesy,1,2kinghenryiv,1598 Kill'd,1,2kinghenryiv,1598 fate,1,2kinghenryiv,1598 cock,1,2kinghenryiv,1598 wrenching,1,2kinghenryiv,1598 strengthened,1,2kinghenryiv,1598 observance,1,2kinghenryiv,1598 band,1,2kinghenryiv,1598 recordation,1,2kinghenryiv,1598 brighten,1,2kinghenryiv,1598 trains,1,2kinghenryiv,1598 crowing,1,2kinghenryiv,1598 'Gan,1,2kinghenryiv,1598 vital,1,2kinghenryiv,1598 balm,1,2kinghenryiv,1598 hoop,1,2kinghenryiv,1598 Officer,1,2kinghenryiv,1598 tame,1,2kinghenryiv,1598 rising,1,2kinghenryiv,1598 Sneak's,1,2kinghenryiv,1598 Rumour's,1,2kinghenryiv,1598 rightfully,1,2kinghenryiv,1598 feeble,1,2kinghenryiv,1598 favourable,1,2kinghenryiv,1598 author,1,2kinghenryiv,1598 gallant,1,2kinghenryiv,1598 ache,1,2kinghenryiv,1598 o'erwhelm,1,2kinghenryiv,1598 tale,1,2kinghenryiv,1598 coal,1,2kinghenryiv,1598 buzzing,1,2kinghenryiv,1598 lap,1,2kinghenryiv,1598 constant,1,2kinghenryiv,1598 Need,1,2kinghenryiv,1598 howl'st,1,2kinghenryiv,1598 wider,1,2kinghenryiv,1598 orient,1,2kinghenryiv,1598 Priam,1,2kinghenryiv,1598 Knew,1,2kinghenryiv,1598 Lean,1,2kinghenryiv,1598 kindreds,1,2kinghenryiv,1598 Appear,1,2kinghenryiv,1598 deliberate,1,2kinghenryiv,1598 sufficient,1,2kinghenryiv,1598 Henry,1,2kinghenryiv,1598 stroke,1,2kinghenryiv,1598 given,1,2kinghenryiv,1598 watchful,1,2kinghenryiv,1598 Shallow',1,2kinghenryiv,1598 carry,1,2kinghenryiv,1598 jordan,1,2kinghenryiv,1598 rapier,1,2kinghenryiv,1598 greets,1,2kinghenryiv,1598 beshrew,1,2kinghenryiv,1598 sights,1,2kinghenryiv,1598 shoot,1,2kinghenryiv,1598 biggen,1,2kinghenryiv,1598 concludes,1,2kinghenryiv,1598 dungeon,1,2kinghenryiv,1598 lecherous,1,2kinghenryiv,1598 clear,1,2kinghenryiv,1598 Hiren,1,2kinghenryiv,1598 melody,1,2kinghenryiv,1598 None,1,2kinghenryiv,1598 fertile,1,2kinghenryiv,1598 inhabitants,1,2kinghenryiv,1598 temper'd,1,2kinghenryiv,1598 greet,1,2kinghenryiv,1598 stand'st,1,2kinghenryiv,1598 fattest,1,2kinghenryiv,1598 famine,1,2kinghenryiv,1598 Lives,1,2kinghenryiv,1598 ripens,1,2kinghenryiv,1598 devour,1,2kinghenryiv,1598 follows,1,2kinghenryiv,1598 backsword,1,2kinghenryiv,1598 mustard,1,2kinghenryiv,1598 gaping,1,2kinghenryiv,1598 intreasured,1,2kinghenryiv,1598 Cheering,1,2kinghenryiv,1598 snap,1,2kinghenryiv,1598 pangs,1,2kinghenryiv,1598 consigning,1,2kinghenryiv,1598 Who's,1,2kinghenryiv,1598 request,1,2kinghenryiv,1598 cowards,1,2kinghenryiv,1598 ranged,1,2kinghenryiv,1598 whetted,1,2kinghenryiv,1598 revolt,1,2kinghenryiv,1598 asking,1,2kinghenryiv,1598 consist,1,2kinghenryiv,1598 spurring,1,2kinghenryiv,1598 presents,1,2kinghenryiv,1598 Erebus,1,2kinghenryiv,1598 fronts,1,2kinghenryiv,1598 forsooth,1,2kinghenryiv,1598 rabbit,1,2kinghenryiv,1598 Repent,1,2kinghenryiv,1598 feeding,1,2kinghenryiv,1598 shove,1,2kinghenryiv,1598 slanders,1,2kinghenryiv,1598 appertinent,1,2kinghenryiv,1598 undertook,1,2kinghenryiv,1598 favours,1,2kinghenryiv,1598 potion,1,2kinghenryiv,1598 Nell,1,2kinghenryiv,1598 quean,1,2kinghenryiv,1598 Turn'd,1,2kinghenryiv,1598 borrowing,1,2kinghenryiv,1598 recruits,1,2kinghenryiv,1598 bawl,1,2kinghenryiv,1598 peeped,1,2kinghenryiv,1598 choler,1,2kinghenryiv,1598 scraped,1,2kinghenryiv,1598 notwithstanding,1,2kinghenryiv,1598 peascod,1,2kinghenryiv,1598 vainly,1,2kinghenryiv,1598 Reply,1,2kinghenryiv,1598 shout,1,2kinghenryiv,1598 Anon,1,2kinghenryiv,1598 drudgery,1,2kinghenryiv,1598 satisfied,1,2kinghenryiv,1598 yellow,1,2kinghenryiv,1598 abject,1,2kinghenryiv,1598 hung,1,2kinghenryiv,1598 pulsidge,1,2kinghenryiv,1598 seas,1,2kinghenryiv,1598 seat,1,2kinghenryiv,1598 perfumed,1,2kinghenryiv,1598 hairs,1,2kinghenryiv,1598 sunshine,1,2kinghenryiv,1598 perfumes,1,2kinghenryiv,1598 cheerful,1,2kinghenryiv,1598 hearty,1,2kinghenryiv,1598 assembled,1,2kinghenryiv,1598 copy,1,2kinghenryiv,1598 cool,1,2kinghenryiv,1598 attendance,1,2kinghenryiv,1598 Serves,1,2kinghenryiv,1598 contento,1,2kinghenryiv,1598 'neighbour,1,2kinghenryiv,1598 hearse,1,2kinghenryiv,1598 contenta,1,2kinghenryiv,1598 rearward,1,2kinghenryiv,1598 bachelor,1,2kinghenryiv,1598 fairer,1,2kinghenryiv,1598 packet,1,2kinghenryiv,1598 examples,1,2kinghenryiv,1598 ugly,1,2kinghenryiv,1598 traverse,1,2kinghenryiv,1598 Barnes,1,2kinghenryiv,1598 remission,1,2kinghenryiv,1598 sect,1,2kinghenryiv,1598 needful,1,2kinghenryiv,1598 quaff'd,1,2kinghenryiv,1598 publish,1,2kinghenryiv,1598 renewed,1,2kinghenryiv,1598 followedst,1,2kinghenryiv,1598 SCROOP,1,2kinghenryiv,1598 comb,1,2kinghenryiv,1598 drums,1,2kinghenryiv,1598 knowest,1,2kinghenryiv,1598 feathers,1,2kinghenryiv,1598 singular,1,2kinghenryiv,1598 falseness,1,2kinghenryiv,1598 conjoins,1,2kinghenryiv,1598 presence,1,2kinghenryiv,1598 confederates,1,2kinghenryiv,1598 original,1,2kinghenryiv,1598 puppy,1,2kinghenryiv,1598 coz,1,2kinghenryiv,1598 look'd,1,2kinghenryiv,1598 arrows,1,2kinghenryiv,1598 covetousness,1,2kinghenryiv,1598 others',1,2kinghenryiv,1598 divorce,1,2kinghenryiv,1598 period,1,2kinghenryiv,1598 liking,1,2kinghenryiv,1598 fellows,1,2kinghenryiv,1598 prophecy,1,2kinghenryiv,1598 thereof,1,2kinghenryiv,1598 hound,1,2kinghenryiv,1598 Believe,1,2kinghenryiv,1598 lifting,1,2kinghenryiv,1598 candles',1,2kinghenryiv,1598 corn,1,2kinghenryiv,1598 setting,1,2kinghenryiv,1598 marking,1,2kinghenryiv,1598 foining,1,2kinghenryiv,1598 Mile,1,2kinghenryiv,1598 Seal,1,2kinghenryiv,1598 exploit,1,2kinghenryiv,1598 bunches,1,2kinghenryiv,1598 increase,1,2kinghenryiv,1598 debuty,1,2kinghenryiv,1598 monkey,1,2kinghenryiv,1598 heavenly,1,2kinghenryiv,1598 quoits,1,2kinghenryiv,1598 divisions,1,2kinghenryiv,1598 modest,1,2kinghenryiv,1598 avoid,1,2kinghenryiv,1598 pour,1,2kinghenryiv,1598 gathering,1,2kinghenryiv,1598 Abbey,1,2kinghenryiv,1598 Through,1,2kinghenryiv,1598 blame,1,2kinghenryiv,1598 Things,1,2kinghenryiv,1598 tidy,1,2kinghenryiv,1598 tiring,1,2kinghenryiv,1598 slender,1,2kinghenryiv,1598 curtain,1,2kinghenryiv,1598 huge,1,2kinghenryiv,1598 bait,1,2kinghenryiv,1598 glove,1,2kinghenryiv,1598 Use,1,2kinghenryiv,1598 Send,1,2kinghenryiv,1598 Ephesians,1,2kinghenryiv,1598 lovers,1,2kinghenryiv,1598 George's,1,2kinghenryiv,1598 blushing,1,2kinghenryiv,1598 self,1,2kinghenryiv,1598 'accommodo',1,2kinghenryiv,1598 according,1,2kinghenryiv,1598 fairly,1,2kinghenryiv,1598 floods,1,2kinghenryiv,1598 ball,1,2kinghenryiv,1598 distracted,1,2kinghenryiv,1598 inset,1,2kinghenryiv,1598 Ralph,1,2kinghenryiv,1598 see'st,1,2kinghenryiv,1598 bald,1,2kinghenryiv,1598 report'st,1,2kinghenryiv,1598 Edward,1,2kinghenryiv,1598 bleeding,1,2kinghenryiv,1598 misorder'd,1,2kinghenryiv,1598 reputed,1,2kinghenryiv,1598 undo,1,2kinghenryiv,1598 Lieutenant,1,2kinghenryiv,1598 talk'd,1,2kinghenryiv,1598 swell,1,2kinghenryiv,1598 censer,1,2kinghenryiv,1598 nurse,1,2kinghenryiv,1598 fronting,1,2kinghenryiv,1598 fangless,1,2kinghenryiv,1598 anthems,1,2kinghenryiv,1598 illumineth,1,2kinghenryiv,1598 robas,1,2kinghenryiv,1598 genius,1,2kinghenryiv,1598 carriage,1,2kinghenryiv,1598 howl,1,2kinghenryiv,1598 angered,1,2kinghenryiv,1598 sullen,1,2kinghenryiv,1598 formal,1,2kinghenryiv,1598 season,1,2kinghenryiv,1598 Delivered,1,2kinghenryiv,1598 madam,1,2kinghenryiv,1598 unyoked,1,2kinghenryiv,1598 convert,1,2kinghenryiv,1598 March,1,2kinghenryiv,1598 couple,1,2kinghenryiv,1598 beginnings,1,2kinghenryiv,1598 bestow,1,2kinghenryiv,1598 drooping,1,2kinghenryiv,1598 sheets,1,2kinghenryiv,1598 Using,1,2kinghenryiv,1598 instead,1,2kinghenryiv,1598 chops,1,2kinghenryiv,1598 chanced,1,2kinghenryiv,1598 stormy,1,2kinghenryiv,1598 until,1,2kinghenryiv,1598 parcel,1,2kinghenryiv,1598 invented,1,2kinghenryiv,1598 swinge,1,2kinghenryiv,1598 licence,1,2kinghenryiv,1598 Nothing,1,2kinghenryiv,1598 sheriff's,1,2kinghenryiv,1598 effects,1,2kinghenryiv,1598 servants,1,2kinghenryiv,1598 borrowed,1,2kinghenryiv,1598 fustian,1,2kinghenryiv,1598 upbraid,1,2kinghenryiv,1598 pusillanimity,1,2kinghenryiv,1598 suitor,1,2kinghenryiv,1598 Atropos,1,2kinghenryiv,1598 unseconded,1,2kinghenryiv,1598 imagination,1,2kinghenryiv,1598 honesty,1,2kinghenryiv,1598 petty,1,2kinghenryiv,1598 rheumatic,1,2kinghenryiv,1598 write,1,2kinghenryiv,1598 debate,1,2kinghenryiv,1598 dace,1,2kinghenryiv,1598 stewed,1,2kinghenryiv,1598 Helicons,1,2kinghenryiv,1598 alter'd,1,2kinghenryiv,1598 sounded,1,2kinghenryiv,1598 volume,1,2kinghenryiv,1598 dining,1,2kinghenryiv,1598 successful,1,2kinghenryiv,1598 maintained,1,2kinghenryiv,1598 Gave,1,2kinghenryiv,1598 Oldcastle,1,2kinghenryiv,1598 least,1,2kinghenryiv,1598 spite,1,2kinghenryiv,1598 Towards,1,2kinghenryiv,1598 'scape,1,2kinghenryiv,1598 Saturn,1,2kinghenryiv,1598 scum,1,2kinghenryiv,1598 seldom,1,2kinghenryiv,1598 forced,1,2kinghenryiv,1598 reward,1,2kinghenryiv,1598 eel,1,2kinghenryiv,1598 'Hem,1,2kinghenryiv,1598 posting,1,2kinghenryiv,1598 Foretelling,1,2kinghenryiv,1598 Wounding,1,2kinghenryiv,1598 enforcement,1,2kinghenryiv,1598 forked,1,2kinghenryiv,1598 compounded,1,2kinghenryiv,1598 sadness,1,2kinghenryiv,1598 dealing,1,2kinghenryiv,1598 Preserving,1,2kinghenryiv,1598 courageous,1,2kinghenryiv,1598 headed,1,2kinghenryiv,1598 trip,1,2kinghenryiv,1598 foundered,1,2kinghenryiv,1598 immortally,1,2kinghenryiv,1598 lamenting,1,2kinghenryiv,1598 EPILOGUE,1,2kinghenryiv,1598 'John,1,2kinghenryiv,1598 likelihoods,1,2kinghenryiv,1598 hinges,1,2kinghenryiv,1598 aiming,1,2kinghenryiv,1598 antiquity,1,2kinghenryiv,1598 murder'd,1,2kinghenryiv,1598 fennel,1,2kinghenryiv,1598 evils,1,2kinghenryiv,1598 determine,1,2kinghenryiv,1598 familiars,1,2kinghenryiv,1598 Acquitted,1,2kinghenryiv,1598 cinders,1,2kinghenryiv,1598 confirmation,1,2kinghenryiv,1598 pleasant,1,2kinghenryiv,1598 correctioner,1,2kinghenryiv,1598 foreruns,1,2kinghenryiv,1598 recreant,1,2kinghenryiv,1598 Men,1,2kinghenryiv,1598 county,1,2kinghenryiv,1598 incision,1,2kinghenryiv,1598 liquors,1,2kinghenryiv,1598 Haled,1,2kinghenryiv,1598 Quenching,1,2kinghenryiv,1598 Ellen,1,2kinghenryiv,1598 crafty,1,2kinghenryiv,1598 eleven,1,2kinghenryiv,1598 quarrels,1,2kinghenryiv,1598 principle,1,2kinghenryiv,1598 withdraw,1,2kinghenryiv,1598 monarch's,1,2kinghenryiv,1598 maidenly,1,2kinghenryiv,1598 interpretation,1,2kinghenryiv,1598 henceforth,1,2kinghenryiv,1598 strokes,1,2kinghenryiv,1598 on't,1,2kinghenryiv,1598 absolutely,1,2kinghenryiv,1598 Doit,1,2kinghenryiv,1598 forgetfulness,1,2kinghenryiv,1598 substituted,1,2kinghenryiv,1598 substitutes,1,2kinghenryiv,1598 German,1,2kinghenryiv,1598 thereupon,1,2kinghenryiv,1598 terror,1,2kinghenryiv,1598 sporting,1,2kinghenryiv,1598 respects,1,2kinghenryiv,1598 Basingstoke,1,2kinghenryiv,1598 directions,1,2kinghenryiv,1598 Instruct,1,2kinghenryiv,1598 lethargy,1,2kinghenryiv,1598 participation,1,2kinghenryiv,1598 incessant,1,2kinghenryiv,1598 credit,1,2kinghenryiv,1598 plucks,1,2kinghenryiv,1598 flap,1,2kinghenryiv,1598 spilt,1,2kinghenryiv,1598 thither,1,2kinghenryiv,1598 tenderness,1,2kinghenryiv,1598 warming,1,2kinghenryiv,1598 Green,1,2kinghenryiv,1598 gravity,1,2kinghenryiv,1598 prawns,1,2kinghenryiv,1598 borrower's,1,2kinghenryiv,1598 tickle,1,2kinghenryiv,1598 kickshaws,1,2kinghenryiv,1598 compel,1,2kinghenryiv,1598 withdrew,1,2kinghenryiv,1598 Prodigal,1,2kinghenryiv,1598 fright,1,2kinghenryiv,1598 peep,1,2kinghenryiv,1598 Dombledon,1,2kinghenryiv,1598 jade,1,2kinghenryiv,1598 keepest,1,2kinghenryiv,1598 pagan,1,2kinghenryiv,1598 knave's,1,2kinghenryiv,1598 revenged,1,2kinghenryiv,1598 weariness,1,2kinghenryiv,1598 breaking,1,2kinghenryiv,1598 squire,1,2kinghenryiv,1598 summary,1,2kinghenryiv,1598 Lent,1,2kinghenryiv,1598 appetite,1,2kinghenryiv,1598 shrews,1,2kinghenryiv,1598 aconitum,1,2kinghenryiv,1598 Lend,1,2kinghenryiv,1598 follow'd,1,2kinghenryiv,1598 simply,1,2kinghenryiv,1598 corruption,1,2kinghenryiv,1598 shrewd,1,2kinghenryiv,1598 assurance,1,2kinghenryiv,1598 frank,1,2kinghenryiv,1598 Death,1,2kinghenryiv,1598 witty,1,2kinghenryiv,1598 sentence,1,2kinghenryiv,1598 mouths,1,2kinghenryiv,1598 witness,1,2kinghenryiv,1598 tardy,1,2kinghenryiv,1598 continuantly,1,2kinghenryiv,1598 reply,1,2kinghenryiv,1598 earned,1,2kinghenryiv,1598 You'll,1,2kinghenryiv,1598 payment,1,2kinghenryiv,1598 Note,1,2kinghenryiv,1598 considerance,1,2kinghenryiv,1598 strengthless,1,2kinghenryiv,1598 shaft,1,2kinghenryiv,1598 careless,1,2kinghenryiv,1598 dash,1,2kinghenryiv,1598 pattern,1,2kinghenryiv,1598 inventory,1,2kinghenryiv,1598 Goodman,1,2kinghenryiv,1598 distemper'd,1,2kinghenryiv,1598 wrathful,1,2kinghenryiv,1598 attend,1,2kinghenryiv,1598 honour'd,1,2kinghenryiv,1598 Arthur,1,2kinghenryiv,1598 substitute,1,2kinghenryiv,1598 harsh,1,2kinghenryiv,1598 confine,1,2kinghenryiv,1598 dragging,1,2kinghenryiv,1598 William's,1,2kinghenryiv,1598 swallow,1,2kinghenryiv,1598 Falls,1,2kinghenryiv,1598 Lest,1,2kinghenryiv,1598 Less,1,2kinghenryiv,1598 lake,1,2kinghenryiv,1598 whoe'er,1,2kinghenryiv,1598 precepts,1,2kinghenryiv,1598 Die,1,2kinghenryiv,1598 HUMPHREY,1,2kinghenryiv,1598 Rouse,1,2kinghenryiv,1598 dub,1,2kinghenryiv,1598 unseason'd,1,2kinghenryiv,1598 toe,1,2kinghenryiv,1598 rocky,1,2kinghenryiv,1598 lawless,1,2kinghenryiv,1598 stirrer,1,2kinghenryiv,1598 withhold,1,2kinghenryiv,1598 pens,1,2kinghenryiv,1598 fifteen,1,2kinghenryiv,1598 booked,1,2kinghenryiv,1598 bedew,1,2kinghenryiv,1598 globe,1,2kinghenryiv,1598 another's,1,2kinghenryiv,1598 plucking,1,2kinghenryiv,1598 accites,1,2kinghenryiv,1598 months,1,2kinghenryiv,1598 Bring,1,2kinghenryiv,1598 fruiterer,1,2kinghenryiv,1598 Reign,1,2kinghenryiv,1598 DRAMATIS,1,2kinghenryiv,1598 Simon,1,2kinghenryiv,1598 whores,1,2kinghenryiv,1598 Gray's,1,2kinghenryiv,1598 success,1,2kinghenryiv,1598 reverent,1,2kinghenryiv,1598 venom,1,2kinghenryiv,1598 guests,1,2kinghenryiv,1598 burden,1,2kinghenryiv,1598 propose,1,2kinghenryiv,1598 Gasping,1,2kinghenryiv,1598 flower,1,2kinghenryiv,1598 dame,1,2kinghenryiv,1598 pamper'd,1,2kinghenryiv,1598 damn,1,2kinghenryiv,1598 flown,1,2kinghenryiv,1598 Chester,1,2kinghenryiv,1598 cakes,1,2kinghenryiv,1598 usurpation,1,2kinghenryiv,1598 wills,1,2kinghenryiv,1598 he'ld,1,2kinghenryiv,1598 divided,1,2kinghenryiv,1598 creditors,1,2kinghenryiv,1598 smell,1,2kinghenryiv,1598 Worthies,1,2kinghenryiv,1598 scalds,1,2kinghenryiv,1598 stings,1,2kinghenryiv,1598 inheritor,1,2kinghenryiv,1598 Fain,1,2kinghenryiv,1598 'How,1,2kinghenryiv,1598 wantest,1,2kinghenryiv,1598 dwelling,1,2kinghenryiv,1598 Fair,1,2kinghenryiv,1598 insinew'd,1,2kinghenryiv,1598 Staying,1,2kinghenryiv,1598 den,1,2kinghenryiv,1598 expire,1,2kinghenryiv,1598 corporal,1,2kinghenryiv,1598 scales,1,2kinghenryiv,1598 figures,1,2kinghenryiv,1598 tainted,1,2kinghenryiv,1598 mix,1,2kinghenryiv,1598 pronounce,1,2kinghenryiv,1598 soundly,1,2kinghenryiv,1598 eyelids,1,2kinghenryiv,1598 lambkin,1,2kinghenryiv,1598 Concurring,1,2kinghenryiv,1598 kill,1,2kinghenryiv,1598 charity,1,2kinghenryiv,1598 fillip,1,2kinghenryiv,1598 sawed,1,2kinghenryiv,1598 doting,1,2kinghenryiv,1598 forbear,1,2kinghenryiv,1598 parley,1,2kinghenryiv,1598 shoes,1,2kinghenryiv,1598 Find,1,2kinghenryiv,1598 flattering,1,2kinghenryiv,1598 avaunt,1,2kinghenryiv,1598 bids,1,2kinghenryiv,1598 Hector,1,2kinghenryiv,1598 tread,1,2kinghenryiv,1598 coped,1,2kinghenryiv,1598 Agamemnon,1,2kinghenryiv,1598 hunting,1,2kinghenryiv,1598 chivalry,1,2kinghenryiv,1598 merchant's,1,2kinghenryiv,1598 dim,1,2kinghenryiv,1598 e'en,1,2kinghenryiv,1598 e'er,1,2kinghenryiv,1598 hold'st,1,2kinghenryiv,1598 durance,1,2kinghenryiv,1598 observing,1,2kinghenryiv,1598 dig,1,2kinghenryiv,1598 Fill,1,2kinghenryiv,1598 seek'st,1,2kinghenryiv,1598 degrees,1,2kinghenryiv,1598 Quoit,1,2kinghenryiv,1598 ending,1,2kinghenryiv,1598 sway,1,2kinghenryiv,1598 lads,1,2kinghenryiv,1598 largely,1,2kinghenryiv,1598 WALES,1,2kinghenryiv,1598 remembered,1,2kinghenryiv,1598 Confound,1,2kinghenryiv,1598 brave,2,2kinghenryiv,1598 attended,2,2kinghenryiv,1598 treason,2,2kinghenryiv,1598 discharged,2,2kinghenryiv,1598 event,2,2kinghenryiv,1598 lusty,2,2kinghenryiv,1598 staves,2,2kinghenryiv,1598 sweetheart,2,2kinghenryiv,1598 advised,2,2kinghenryiv,1598 muster,2,2kinghenryiv,1598 suffer,2,2kinghenryiv,1598 join,2,2kinghenryiv,1598 advice,2,2kinghenryiv,1598 derived,2,2kinghenryiv,1598 fathers,2,2kinghenryiv,1598 Hear,2,2kinghenryiv,1598 country,2,2kinghenryiv,1598 writ,2,2kinghenryiv,1598 peasant,2,2kinghenryiv,1598 shadows,2,2kinghenryiv,1598 ran,2,2kinghenryiv,1598 hasty,2,2kinghenryiv,1598 rock,2,2kinghenryiv,1598 bones,2,2kinghenryiv,1598 ascends,2,2kinghenryiv,1598 purge,2,2kinghenryiv,1598 mend,2,2kinghenryiv,1598 scene,2,2kinghenryiv,1598 day's,2,2kinghenryiv,1598 counties,2,2kinghenryiv,1598 worshipful,2,2kinghenryiv,1598 road,2,2kinghenryiv,1598 melt,2,2kinghenryiv,1598 commotion,2,2kinghenryiv,1598 loosely,2,2kinghenryiv,1598 swifter,2,2kinghenryiv,1598 laughter,2,2kinghenryiv,1598 truly,2,2kinghenryiv,1598 eight,2,2kinghenryiv,1598 Must,2,2kinghenryiv,1598 finger,2,2kinghenryiv,1598 spake,2,2kinghenryiv,1598 mere,2,2kinghenryiv,1598 decay,2,2kinghenryiv,1598 ruffian,2,2kinghenryiv,1598 Warkworth,2,2kinghenryiv,1598 prisoner,2,2kinghenryiv,1598 aprons,2,2kinghenryiv,1598 learn'd,2,2kinghenryiv,1598 errant,2,2kinghenryiv,1598 pottle,2,2kinghenryiv,1598 appear,2,2kinghenryiv,1598 throat,2,2kinghenryiv,1598 cowardice,2,2kinghenryiv,1598 nought,2,2kinghenryiv,1598 worms,2,2kinghenryiv,1598 sort,2,2kinghenryiv,1598 iron,2,2kinghenryiv,1598 trust,2,2kinghenryiv,1598 lief,2,2kinghenryiv,1598 joys,2,2kinghenryiv,1598 scruple,2,2kinghenryiv,1598 moist,2,2kinghenryiv,1598 Gloucester,2,2kinghenryiv,1598 conger,2,2kinghenryiv,1598 insurrection,2,2kinghenryiv,1598 early,2,2kinghenryiv,1598 mercy,2,2kinghenryiv,1598 bending,2,2kinghenryiv,1598 giant,2,2kinghenryiv,1598 birth,2,2kinghenryiv,1598 jest,2,2kinghenryiv,1598 pins,2,2kinghenryiv,1598 drive,2,2kinghenryiv,1598 working,2,2kinghenryiv,1598 bearing,2,2kinghenryiv,1598 dance,2,2kinghenryiv,1598 stream,2,2kinghenryiv,1598 assembly,2,2kinghenryiv,1598 grows,2,2kinghenryiv,1598 line,2,2kinghenryiv,1598 An't,2,2kinghenryiv,1598 incensed,2,2kinghenryiv,1598 limb,2,2kinghenryiv,1598 broken,2,2kinghenryiv,1598 pike,2,2kinghenryiv,1598 thou'rt,2,2kinghenryiv,1598 Keep,2,2kinghenryiv,1598 afterwards,2,2kinghenryiv,1598 Much,2,2kinghenryiv,1598 Dancer,2,2kinghenryiv,1598 Only,2,2kinghenryiv,1598 soil,2,2kinghenryiv,1598 calm,2,2kinghenryiv,1598 gross,2,2kinghenryiv,1598 bragging,2,2kinghenryiv,1598 hanging,2,2kinghenryiv,1598 glass,2,2kinghenryiv,1598 making,2,2kinghenryiv,1598 fools,2,2kinghenryiv,1598 Nor,2,2kinghenryiv,1598 soft,2,2kinghenryiv,1598 furious,2,2kinghenryiv,1598 blessed,2,2kinghenryiv,1598 visit,2,2kinghenryiv,1598 amity,2,2kinghenryiv,1598 boar,2,2kinghenryiv,1598 six,2,2kinghenryiv,1598 extraordinarily,2,2kinghenryiv,1598 history,2,2kinghenryiv,1598 Get,2,2kinghenryiv,1598 bound,2,2kinghenryiv,1598 striking,2,2kinghenryiv,1598 Morton,2,2kinghenryiv,1598 caliver,2,2kinghenryiv,1598 Forest,2,2kinghenryiv,1598 saddle,2,2kinghenryiv,1598 yeoman,2,2kinghenryiv,1598 vice,2,2kinghenryiv,1598 wake,2,2kinghenryiv,1598 nine,2,2kinghenryiv,1598 sow,2,2kinghenryiv,1598 church,2,2kinghenryiv,1598 Such,2,2kinghenryiv,1598 confident,2,2kinghenryiv,1598 melting,2,2kinghenryiv,1598 Was,2,2kinghenryiv,1598 glutton,2,2kinghenryiv,1598 't,2,2kinghenryiv,1598 disgrace,2,2kinghenryiv,1598 deeply,2,2kinghenryiv,1598 wings,2,2kinghenryiv,1598 sets,2,2kinghenryiv,1598 conjunction,2,2kinghenryiv,1598 awful,2,2kinghenryiv,1598 offence,2,2kinghenryiv,1598 taught,2,2kinghenryiv,1598 compound,2,2kinghenryiv,1598 received,2,2kinghenryiv,1598 France,2,2kinghenryiv,1598 points,2,2kinghenryiv,1598 figure,2,2kinghenryiv,1598 Whereon,2,2kinghenryiv,1598 fault,2,2kinghenryiv,1598 instance,2,2kinghenryiv,1598 fruit,2,2kinghenryiv,1598 household,2,2kinghenryiv,1598 Wherein,2,2kinghenryiv,1598 vanity,2,2kinghenryiv,1598 poorest,2,2kinghenryiv,1598 reverence,2,2kinghenryiv,1598 impartial,2,2kinghenryiv,1598 plainly,2,2kinghenryiv,1598 tah,2,2kinghenryiv,1598 putting,2,2kinghenryiv,1598 language,2,2kinghenryiv,1598 tap,2,2kinghenryiv,1598 kneel,2,2kinghenryiv,1598 One,2,2kinghenryiv,1598 want,2,2kinghenryiv,1598 ruff,2,2kinghenryiv,1598 wipe,2,2kinghenryiv,1598 SURREY,2,2kinghenryiv,1598 dies,2,2kinghenryiv,1598 diet,2,2kinghenryiv,1598 esquire,2,2kinghenryiv,1598 imperious,2,2kinghenryiv,1598 sense,2,2kinghenryiv,1598 seem'd,2,2kinghenryiv,1598 bona,2,2kinghenryiv,1598 breeding,2,2kinghenryiv,1598 boot,2,2kinghenryiv,1598 steep,2,2kinghenryiv,1598 coats,2,2kinghenryiv,1598 sweating,2,2kinghenryiv,1598 wits,2,2kinghenryiv,1598 observe,2,2kinghenryiv,1598 Amurath,2,2kinghenryiv,1598 knowledge,2,2kinghenryiv,1598 ha',2,2kinghenryiv,1598 sauciness,2,2kinghenryiv,1598 I',2,2kinghenryiv,1598 invest,2,2kinghenryiv,1598 Hold,2,2kinghenryiv,1598 drinking,2,2kinghenryiv,1598 crack,2,2kinghenryiv,1598 utter,2,2kinghenryiv,1598 serving,2,2kinghenryiv,1598 invent,2,2kinghenryiv,1598 loath,2,2kinghenryiv,1598 shortly,2,2kinghenryiv,1598 wash'd,2,2kinghenryiv,1598 scurvy,2,2kinghenryiv,1598 proof,2,2kinghenryiv,1598 treble,2,2kinghenryiv,1598 Pay,2,2kinghenryiv,1598 stab,2,2kinghenryiv,1598 wisdom,2,2kinghenryiv,1598 tear,2,2kinghenryiv,1598 Exceeding,2,2kinghenryiv,1598 medicine,2,2kinghenryiv,1598 approve,2,2kinghenryiv,1598 bee,2,2kinghenryiv,1598 pleasure,2,2kinghenryiv,1598 quick,2,2kinghenryiv,1598 shillings,2,2kinghenryiv,1598 Let's,2,2kinghenryiv,1598 troops,2,2kinghenryiv,1598 changes,2,2kinghenryiv,1598 Welsh,2,2kinghenryiv,1598 monstrous,2,2kinghenryiv,1598 bull,2,2kinghenryiv,1598 sits,2,2kinghenryiv,1598 sorry,2,2kinghenryiv,1598 Open,2,2kinghenryiv,1598 busy,2,2kinghenryiv,1598 swaggerer,2,2kinghenryiv,1598 rebel,2,2kinghenryiv,1598 dove,2,2kinghenryiv,1598 tables,2,2kinghenryiv,1598 immediate,2,2kinghenryiv,1598 wear,2,2kinghenryiv,1598 beyond,2,2kinghenryiv,1598 fifty,2,2kinghenryiv,1598 Beadles,2,2kinghenryiv,1598 Speak,2,2kinghenryiv,1598 Saint,2,2kinghenryiv,1598 satin,2,2kinghenryiv,1598 Didst,2,2kinghenryiv,1598 silk,2,2kinghenryiv,1598 conquest,2,2kinghenryiv,1598 degree,2,2kinghenryiv,1598 travel,2,2kinghenryiv,1598 used,2,2kinghenryiv,1598 preserve,2,2kinghenryiv,1598 beer,2,2kinghenryiv,1598 survey,2,2kinghenryiv,1598 gown,2,2kinghenryiv,1598 divine,2,2kinghenryiv,1598 stronger,2,2kinghenryiv,1598 pains,2,2kinghenryiv,1598 foutre,2,2kinghenryiv,1598 grace's,2,2kinghenryiv,1598 ashamed,2,2kinghenryiv,1598 north,2,2kinghenryiv,1598 lately,2,2kinghenryiv,1598 crowns,2,2kinghenryiv,1598 uses,2,2kinghenryiv,1598 dogs,2,2kinghenryiv,1598 deed,2,2kinghenryiv,1598 story,2,2kinghenryiv,1598 promised,2,2kinghenryiv,1598 plate,2,2kinghenryiv,1598 Nature's,2,2kinghenryiv,1598 keeping,2,2kinghenryiv,1598 rascal's,2,2kinghenryiv,1598 sixpence,2,2kinghenryiv,1598 servant,2,2kinghenryiv,1598 consider,2,2kinghenryiv,1598 debt,2,2kinghenryiv,1598 gentlewomen,2,2kinghenryiv,1598 ago,2,2kinghenryiv,1598 Unless,2,2kinghenryiv,1598 plays,2,2kinghenryiv,1598 gilt,2,2kinghenryiv,1598 gait,2,2kinghenryiv,1598 dignity,2,2kinghenryiv,1598 deaf,2,2kinghenryiv,1598 victory,2,2kinghenryiv,1598 lend,2,2kinghenryiv,1598 enforce,2,2kinghenryiv,1598 husband,2,2kinghenryiv,1598 ale,2,2kinghenryiv,1598 ah,2,2kinghenryiv,1598 newly,2,2kinghenryiv,1598 wench,2,2kinghenryiv,1598 crosses,2,2kinghenryiv,1598 forgotten,2,2kinghenryiv,1598 feast,2,2kinghenryiv,1598 move,2,2kinghenryiv,1598 small,2,2kinghenryiv,1598 johns,2,2kinghenryiv,1598 Grooms,2,2kinghenryiv,1598 banish,2,2kinghenryiv,1598 idly,2,2kinghenryiv,1598 idle,2,2kinghenryiv,1598 hadst,2,2kinghenryiv,1598 la,2,2kinghenryiv,1598 wherein,2,2kinghenryiv,1598 spent,2,2kinghenryiv,1598 loved,2,2kinghenryiv,1598 lose,2,2kinghenryiv,1598 act,2,2kinghenryiv,1598 commandment,2,2kinghenryiv,1598 swell'd,2,2kinghenryiv,1598 forgot,2,2kinghenryiv,1598 withered,2,2kinghenryiv,1598 pure,2,2kinghenryiv,1598 men's,2,2kinghenryiv,1598 Double,2,2kinghenryiv,1598 Came,2,2kinghenryiv,1598 killed,2,2kinghenryiv,1598 choice,2,2kinghenryiv,1598 running,2,2kinghenryiv,1598 plot,2,2kinghenryiv,1598 soldiership,2,2kinghenryiv,1598 Most,2,2kinghenryiv,1598 weapon,2,2kinghenryiv,1598 remember'd,2,2kinghenryiv,1598 forestall'd,2,2kinghenryiv,1598 Christian,2,2kinghenryiv,1598 nation,2,2kinghenryiv,1598 trade,2,2kinghenryiv,1598 plain,2,2kinghenryiv,1598 drawn,2,2kinghenryiv,1598 knocking,2,2kinghenryiv,1598 joyful,2,2kinghenryiv,1598 school,2,2kinghenryiv,1598 sweetest,2,2kinghenryiv,1598 praise,2,2kinghenryiv,1598 acquaintance,2,2kinghenryiv,1598 knocks,2,2kinghenryiv,1598 manned,2,2kinghenryiv,1598 pair,2,2kinghenryiv,1598 pain,2,2kinghenryiv,1598 heaviness,2,2kinghenryiv,1598 paid,2,2kinghenryiv,1598 fiery,2,2kinghenryiv,1598 ape,2,2kinghenryiv,1598 devise,2,2kinghenryiv,1598 stones,2,2kinghenryiv,1598 hate,2,2kinghenryiv,1598 alive,2,2kinghenryiv,1598 shot,2,2kinghenryiv,1598 Monmouth's,2,2kinghenryiv,1598 counsellors,2,2kinghenryiv,1598 fiend,2,2kinghenryiv,1598 tyranny,2,2kinghenryiv,1598 bearer,2,2kinghenryiv,1598 courses,2,2kinghenryiv,1598 ass,2,2kinghenryiv,1598 forms,2,2kinghenryiv,1598 nearest,2,2kinghenryiv,1598 armour,2,2kinghenryiv,1598 Robin,2,2kinghenryiv,1598 beggars,2,2kinghenryiv,1598 undone,2,2kinghenryiv,1598 native,2,2kinghenryiv,1598 'you,2,2kinghenryiv,1598 here's,2,2kinghenryiv,1598 change,2,2kinghenryiv,1598 Europe,2,2kinghenryiv,1598 leaf,2,2kinghenryiv,1598 ventured,2,2kinghenryiv,1598 Should,2,2kinghenryiv,1598 luck,2,2kinghenryiv,1598 borrow,2,2kinghenryiv,1598 lean,2,2kinghenryiv,1598 opinions,2,2kinghenryiv,1598 render'd,2,2kinghenryiv,1598 keeps,2,2kinghenryiv,1598 heavier,2,2kinghenryiv,1598 castle,2,2kinghenryiv,1598 workings,2,2kinghenryiv,1598 empty,2,2kinghenryiv,1598 Canst,2,2kinghenryiv,1598 breathed,2,2kinghenryiv,1598 mischief,2,2kinghenryiv,1598 Gad's,2,2kinghenryiv,1598 Lords,2,2kinghenryiv,1598 mountains,2,2kinghenryiv,1598 nose,2,2kinghenryiv,1598 contains,2,2kinghenryiv,1598 mutton,2,2kinghenryiv,1598 perturbation,2,2kinghenryiv,1598 Hang,2,2kinghenryiv,1598 contention,2,2kinghenryiv,1598 riots,2,2kinghenryiv,1598 bears,2,2kinghenryiv,1598 faint,2,2kinghenryiv,1598 wildness,2,2kinghenryiv,1598 companions,2,2kinghenryiv,1598 ewes,2,2kinghenryiv,1598 tenor,2,2kinghenryiv,1598 inns,2,2kinghenryiv,1598 sirrah,2,2kinghenryiv,1598 lingers,2,2kinghenryiv,1598 Down,2,2kinghenryiv,1598 written,2,2kinghenryiv,1598 learning,2,2kinghenryiv,1598 admit,2,2kinghenryiv,1598 Derives,2,2kinghenryiv,1598 mount,2,2kinghenryiv,1598 quickly,2,2kinghenryiv,1598 Set,2,2kinghenryiv,1598 freely,2,2kinghenryiv,1598 famous,2,2kinghenryiv,1598 precious,2,2kinghenryiv,1598 leaves,2,2kinghenryiv,1598 singing,2,2kinghenryiv,1598 teeth,2,2kinghenryiv,1598 mightst,2,2kinghenryiv,1598 tempest,2,2kinghenryiv,1598 male,2,2kinghenryiv,1598 merrily,2,2kinghenryiv,1598 wrought,2,2kinghenryiv,1598 keeper,2,2kinghenryiv,1598 mandrake,2,2kinghenryiv,1598 'gainst,2,2kinghenryiv,1598 courage,2,2kinghenryiv,1598 presently,2,2kinghenryiv,1598 Shouts,2,2kinghenryiv,1598 woe,2,2kinghenryiv,1598 misled,2,2kinghenryiv,1598 brains,2,2kinghenryiv,1598 starved,2,2kinghenryiv,1598 inch,2,2kinghenryiv,1598 greatest,2,2kinghenryiv,1598 fish,2,2kinghenryiv,1598 brethren,2,2kinghenryiv,1598 higher,2,2kinghenryiv,1598 hypocrite,2,2kinghenryiv,1598 accompanied,2,2kinghenryiv,1598 sayest,2,2kinghenryiv,1598 Question,2,2kinghenryiv,1598 desires,2,2kinghenryiv,1598 wet,2,2kinghenryiv,1598 firm,2,2kinghenryiv,1598 wrath,2,2kinghenryiv,1598 o'clock,2,2kinghenryiv,1598 ones,2,2kinghenryiv,1598 musters,2,2kinghenryiv,1598 Coming,2,2kinghenryiv,1598 impudent,2,2kinghenryiv,1598 opinion,2,2kinghenryiv,1598 flies,2,2kinghenryiv,1598 indictment,2,2kinghenryiv,1598 Hotspur,2,2kinghenryiv,1598 bread,2,2kinghenryiv,1598 confined,2,2kinghenryiv,1598 ring,2,2kinghenryiv,1598 loving,2,2kinghenryiv,1598 third,2,2kinghenryiv,1598 upright,2,2kinghenryiv,1598 abundance,2,2kinghenryiv,1598 beastly,2,2kinghenryiv,1598 riot,2,2kinghenryiv,1598 Dead,2,2kinghenryiv,1598 lightness,2,2kinghenryiv,1598 ripe,2,2kinghenryiv,1598 decrees,2,2kinghenryiv,1598 dust,2,2kinghenryiv,1598 Ancient,2,2kinghenryiv,1598 wax,2,2kinghenryiv,1598 Can,2,2kinghenryiv,1598 duty,2,2kinghenryiv,1598 audience,2,2kinghenryiv,1598 swinged,2,2kinghenryiv,1598 oath,2,2kinghenryiv,1598 garland,2,2kinghenryiv,1598 assure,2,2kinghenryiv,1598 pride,2,2kinghenryiv,1598 bullets,2,2kinghenryiv,1598 bedfellow,2,2kinghenryiv,1598 admitted,2,2kinghenryiv,1598 Princes,2,2kinghenryiv,1598 proceeding,2,2kinghenryiv,1598 bucket,2,2kinghenryiv,1598 enforced,2,2kinghenryiv,1598 caught,2,2kinghenryiv,1598 joints,2,2kinghenryiv,1598 muddy,2,2kinghenryiv,1598 takes,2,2kinghenryiv,1598 fallen,2,2kinghenryiv,1598 taken,2,2kinghenryiv,1598 reports,2,2kinghenryiv,1598 rotten,2,2kinghenryiv,1598 weeping,2,2kinghenryiv,1598 opposite,2,2kinghenryiv,1598 jerkins,2,2kinghenryiv,1598 rain,2,2kinghenryiv,1598 yoke,2,2kinghenryiv,1598 wolf,2,2kinghenryiv,1598 sober,2,2kinghenryiv,1598 flow'd,2,2kinghenryiv,1598 minister,2,2kinghenryiv,1598 fain,2,2kinghenryiv,1598 heirs,2,2kinghenryiv,1598 table,2,2kinghenryiv,1598 'll,2,2kinghenryiv,1598 profane,2,2kinghenryiv,1598 minds,2,2kinghenryiv,1598 diseased,2,2kinghenryiv,1598 stolen,2,2kinghenryiv,1598 united,2,2kinghenryiv,1598 That's,2,2kinghenryiv,1598 humour,2,2kinghenryiv,1598 pleased,2,2kinghenryiv,1598 worn,2,2kinghenryiv,1598 colours,2,2kinghenryiv,1598 threw,2,2kinghenryiv,1598 west,2,2kinghenryiv,1598 fie,2,2kinghenryiv,1598 fit,2,2kinghenryiv,1598 galls,2,2kinghenryiv,1598 perfect,2,2kinghenryiv,1598 passion,2,2kinghenryiv,1598 wheat,2,2kinghenryiv,1598 fill,2,2kinghenryiv,1598 wide,2,2kinghenryiv,1598 shows,2,2kinghenryiv,1598 unfold,2,2kinghenryiv,1598 Hereford,2,2kinghenryiv,1598 lived,2,2kinghenryiv,1598 bate,2,2kinghenryiv,1598 bird,2,2kinghenryiv,1598 countenanced,2,2kinghenryiv,1598 appointed,2,2kinghenryiv,1598 Wednesday,2,2kinghenryiv,1598 large,2,2kinghenryiv,1598 Each,2,2kinghenryiv,1598 fare,2,2kinghenryiv,1598 trumpets,2,2kinghenryiv,1598 drinks,2,2kinghenryiv,1598 Welcome,2,2kinghenryiv,1598 bind,2,2kinghenryiv,1598 appearance,2,2kinghenryiv,1598 otherwise,2,2kinghenryiv,1598 shirts,2,2kinghenryiv,1598 holes,2,2kinghenryiv,1598 openly,2,2kinghenryiv,1598 Prick,2,2kinghenryiv,1598 Led,2,2kinghenryiv,1598 pledge,2,2kinghenryiv,1598 holds,2,2kinghenryiv,1598 swears,2,2kinghenryiv,1598 holy,2,2kinghenryiv,1598 quit,2,2kinghenryiv,1598 clean,2,2kinghenryiv,1598 articles,2,2kinghenryiv,1598 queller,2,2kinghenryiv,1598 argument,2,2kinghenryiv,1598 winter,2,2kinghenryiv,1598 flood,2,2kinghenryiv,1598 liver,2,2kinghenryiv,1598 tiny,2,2kinghenryiv,1598 Wherefore,2,2kinghenryiv,1598 horsed,2,2kinghenryiv,1598 fitter,2,2kinghenryiv,1598 goodman,2,2kinghenryiv,1598 intents,2,2kinghenryiv,1598 also,2,2kinghenryiv,1598 manage,2,2kinghenryiv,1598 perils,2,2kinghenryiv,1598 Troy,2,2kinghenryiv,1598 hunt,2,2kinghenryiv,1598 fourteen,2,2kinghenryiv,1598 commission,2,2kinghenryiv,1598 supplies,2,2kinghenryiv,1598 feeder,2,2kinghenryiv,1598 always,2,2kinghenryiv,1598 inward,2,2kinghenryiv,1598 seek,2,2kinghenryiv,1598 south,2,2kinghenryiv,1598 supposed,2,2kinghenryiv,1598 marvellous,2,2kinghenryiv,1598 ended,2,2kinghenryiv,1598 strengths,2,2kinghenryiv,1598 tells,2,2kinghenryiv,1598 shapes,2,2kinghenryiv,1598 battle,2,2kinghenryiv,1598 hulk,2,2kinghenryiv,1598 Drawers,2,2kinghenryiv,1598 traitor,2,2kinghenryiv,1598 'Your,2,2kinghenryiv,1598 wearied,2,2kinghenryiv,1598 greedy,2,2kinghenryiv,1598 entreat,2,2kinghenryiv,1598 rebel's,2,2kinghenryiv,1598 suffice,2,2kinghenryiv,1598 Humphrey,2,2kinghenryiv,1598 post,2,2kinghenryiv,1598 Smithfield,2,2kinghenryiv,1598 leg,2,2kinghenryiv,1598 prison,2,2kinghenryiv,1598 pigeons,2,2kinghenryiv,1598 mother's,2,2kinghenryiv,1598 alas,2,2kinghenryiv,1598 Glendower,2,2kinghenryiv,1598 drawer,2,2kinghenryiv,1598 greeting,2,2kinghenryiv,1598 barren,2,2kinghenryiv,1598 methought,2,2kinghenryiv,1598 master's,2,2kinghenryiv,1598 chances,2,2kinghenryiv,1598 slumber,2,2kinghenryiv,1598 wearing,2,2kinghenryiv,1598 careful,2,2kinghenryiv,1598 balance,2,2kinghenryiv,1598 conduct,2,2kinghenryiv,1598 burst,2,2kinghenryiv,1598 forces,2,2kinghenryiv,1598 Dorothy,2,2kinghenryiv,1598 doing,2,2kinghenryiv,1598 correction,2,2kinghenryiv,1598 Thine's,2,2kinghenryiv,1598 sister,2,2kinghenryiv,1598 elbow,2,2kinghenryiv,1598 sovereign,2,2kinghenryiv,1598 nobody,2,2kinghenryiv,1598 employment,2,2kinghenryiv,1598 burnt,2,2kinghenryiv,1598 lion,2,2kinghenryiv,1598 physic,2,2kinghenryiv,1598 appearing,2,2kinghenryiv,1598 valorous,2,2kinghenryiv,1598 telling,2,2kinghenryiv,1598 fever,2,2kinghenryiv,1598 military,2,2kinghenryiv,1598 phrase,2,2kinghenryiv,1598 inherit,2,2kinghenryiv,1598 virtue,2,2kinghenryiv,1598 Fifth,2,2kinghenryiv,1598 peer,2,2kinghenryiv,1598 silver,2,2kinghenryiv,1598 books,2,2kinghenryiv,1598 spring,2,2kinghenryiv,1598 Gaultree,2,2kinghenryiv,1598 gluttony,2,2kinghenryiv,1598 boisterous,2,2kinghenryiv,1598 frame,2,2kinghenryiv,1598 weight,2,2kinghenryiv,1598 stratagem,2,2kinghenryiv,1598 catch,2,2kinghenryiv,1598 blessing,2,2kinghenryiv,1598 top,2,2kinghenryiv,1598 bred,2,2kinghenryiv,1598 liest,2,2kinghenryiv,1598 reverend,2,2kinghenryiv,1598 leap'd,2,2kinghenryiv,1598 shake,2,2kinghenryiv,1598 shine,2,2kinghenryiv,1598 filthy,2,2kinghenryiv,1598 undergo,2,2kinghenryiv,1598 Take,2,2kinghenryiv,1598 brevity,2,2kinghenryiv,1598 Accommodated,2,2kinghenryiv,1598 private,2,2kinghenryiv,1598 speaker,2,2kinghenryiv,1598 Yorkshire,2,2kinghenryiv,1598 justly,2,2kinghenryiv,1598 Honest,2,2kinghenryiv,1598 neighbour,2,2kinghenryiv,1598 breathe,2,2kinghenryiv,1598 obedience,2,2kinghenryiv,1598 petticoat,2,2kinghenryiv,1598 vilely,2,2kinghenryiv,1598 summer,2,2kinghenryiv,1598 redress'd,2,2kinghenryiv,1598 heed,3,2kinghenryiv,1598 armies,3,2kinghenryiv,1598 swords,3,2kinghenryiv,1598 c,3,2kinghenryiv,1598 taking,3,2kinghenryiv,1598 red,3,2kinghenryiv,1598 drop,3,2kinghenryiv,1598 motion,3,2kinghenryiv,1598 heir,3,2kinghenryiv,1598 necessities,3,2kinghenryiv,1598 forswear,3,2kinghenryiv,1598 wears,3,2kinghenryiv,1598 business,3,2kinghenryiv,1598 Fie,3,2kinghenryiv,1598 zeal,3,2kinghenryiv,1598 heart's,3,2kinghenryiv,1598 Wilt,3,2kinghenryiv,1598 roar,3,2kinghenryiv,1598 joy,3,2kinghenryiv,1598 Never,3,2kinghenryiv,1598 whereupon,3,2kinghenryiv,1598 vain,3,2kinghenryiv,1598 honourable,3,2kinghenryiv,1598 fought,3,2kinghenryiv,1598 maintain,3,2kinghenryiv,1598 Harry's,3,2kinghenryiv,1598 withal,3,2kinghenryiv,1598 laugh,3,2kinghenryiv,1598 thirty,3,2kinghenryiv,1598 marshal,3,2kinghenryiv,1598 spare,3,2kinghenryiv,1598 cast,3,2kinghenryiv,1598 practised,3,2kinghenryiv,1598 delivered,3,2kinghenryiv,1598 chin,3,2kinghenryiv,1598 trumpet,3,2kinghenryiv,1598 cheer,3,2kinghenryiv,1598 cheek,3,2kinghenryiv,1598 paper,3,2kinghenryiv,1598 wait,3,2kinghenryiv,1598 kin,3,2kinghenryiv,1598 black,3,2kinghenryiv,1598 further,3,2kinghenryiv,1598 pillow,3,2kinghenryiv,1598 stands,3,2kinghenryiv,1598 sin,3,2kinghenryiv,1598 'twas,3,2kinghenryiv,1598 scorn,3,2kinghenryiv,1598 fell,3,2kinghenryiv,1598 peril,3,2kinghenryiv,1598 sworn,3,2kinghenryiv,1598 Farewell,3,2kinghenryiv,1598 where's,3,2kinghenryiv,1598 acquainted,3,2kinghenryiv,1598 looks,3,2kinghenryiv,1598 becomes,3,2kinghenryiv,1598 poverty,3,2kinghenryiv,1598 ourselves,3,2kinghenryiv,1598 These,3,2kinghenryiv,1598 Out,3,2kinghenryiv,1598 ways,3,2kinghenryiv,1598 Officers,3,2kinghenryiv,1598 exceeding,3,2kinghenryiv,1598 terms,3,2kinghenryiv,1598 expedition,3,2kinghenryiv,1598 sum,3,2kinghenryiv,1598 companion,3,2kinghenryiv,1598 feed,3,2kinghenryiv,1598 fearful,3,2kinghenryiv,1598 feel,3,2kinghenryiv,1598 promise,3,2kinghenryiv,1598 parliament,3,2kinghenryiv,1598 Please,3,2kinghenryiv,1598 edge,3,2kinghenryiv,1598 turned,3,2kinghenryiv,1598 died,3,2kinghenryiv,1598 pretty,3,2kinghenryiv,1598 meat,3,2kinghenryiv,1598 Turning,3,2kinghenryiv,1598 steel,3,2kinghenryiv,1598 There's,3,2kinghenryiv,1598 wast,3,2kinghenryiv,1598 apoplexy,3,2kinghenryiv,1598 conditions,3,2kinghenryiv,1598 big,3,2kinghenryiv,1598 Faith,3,2kinghenryiv,1598 authority,3,2kinghenryiv,1598 manners,3,2kinghenryiv,1598 Holy,3,2kinghenryiv,1598 Windsor,3,2kinghenryiv,1598 measure,3,2kinghenryiv,1598 At,3,2kinghenryiv,1598 patience,3,2kinghenryiv,1598 youthful,3,2kinghenryiv,1598 blows,3,2kinghenryiv,1598 Whiles,3,2kinghenryiv,1598 deeds,3,2kinghenryiv,1598 Lo,3,2kinghenryiv,1598 bad,3,2kinghenryiv,1598 Nightwork,3,2kinghenryiv,1598 unless,3,2kinghenryiv,1598 denied,3,2kinghenryiv,1598 Within,3,2kinghenryiv,1598 beg,3,2kinghenryiv,1598 arrest,3,2kinghenryiv,1598 pox,3,2kinghenryiv,1598 nice,3,2kinghenryiv,1598 god,3,2kinghenryiv,1598 weep,3,2kinghenryiv,1598 whereby,3,2kinghenryiv,1598 miscarry,3,2kinghenryiv,1598 behind,3,2kinghenryiv,1598 bell,3,2kinghenryiv,1598 cap,3,2kinghenryiv,1598 orchard,3,2kinghenryiv,1598 people,3,2kinghenryiv,1598 Put,3,2kinghenryiv,1598 twice,3,2kinghenryiv,1598 farewell,3,2kinghenryiv,1598 buy,3,2kinghenryiv,1598 longer,3,2kinghenryiv,1598 gout,3,2kinghenryiv,1598 vantage,3,2kinghenryiv,1598 begin,3,2kinghenryiv,1598 Land,3,2kinghenryiv,1598 stay'd,3,2kinghenryiv,1598 affection,3,2kinghenryiv,1598 confess,3,2kinghenryiv,1598 air,3,2kinghenryiv,1598 Fear,3,2kinghenryiv,1598 Here's,3,2kinghenryiv,1598 needs,3,2kinghenryiv,1598 'Fore,3,2kinghenryiv,1598 continual,3,2kinghenryiv,1598 time's,3,2kinghenryiv,1598 seeming,3,2kinghenryiv,1598 redress,3,2kinghenryiv,1598 does,3,2kinghenryiv,1598 RUMOUR,3,2kinghenryiv,1598 manner,3,2kinghenryiv,1598 forget,3,2kinghenryiv,1598 humours,3,2kinghenryiv,1598 fears,3,2kinghenryiv,1598 abide,3,2kinghenryiv,1598 Reads,3,2kinghenryiv,1598 temper,3,2kinghenryiv,1598 loves,3,2kinghenryiv,1598 endure,3,2kinghenryiv,1598 Puff,3,2kinghenryiv,1598 Yes,3,2kinghenryiv,1598 ho,3,2kinghenryiv,1598 apparel,3,2kinghenryiv,1598 BLUNT,3,2kinghenryiv,1598 greater,3,2kinghenryiv,1598 ready,3,2kinghenryiv,1598 thrice,3,2kinghenryiv,1598 hardly,3,2kinghenryiv,1598 speaks,3,2kinghenryiv,1598 round,3,2kinghenryiv,1598 shallow,3,2kinghenryiv,1598 Knocking,3,2kinghenryiv,1598 Gaunt,3,2kinghenryiv,1598 spur,3,2kinghenryiv,1598 rushes,3,2kinghenryiv,1598 appears,3,2kinghenryiv,1598 shut,3,2kinghenryiv,1598 deny,3,2kinghenryiv,1598 provided,3,2kinghenryiv,1598 pluck,3,2kinghenryiv,1598 open,3,2kinghenryiv,1598 page,3,2kinghenryiv,1598 wasted,3,2kinghenryiv,1598 point,3,2kinghenryiv,1598 bosom,3,2kinghenryiv,1598 fear'd,3,2kinghenryiv,1598 revenge,3,2kinghenryiv,1598 roll,3,2kinghenryiv,1598 few,3,2kinghenryiv,1598 enemies,3,2kinghenryiv,1598 enjoy,3,2kinghenryiv,1598 nobles,3,2kinghenryiv,1598 Between,3,2kinghenryiv,1598 Monmouth,3,2kinghenryiv,1598 HARCOURT,3,2kinghenryiv,1598 restored,3,2kinghenryiv,1598 equal,3,2kinghenryiv,1598 honey,3,2kinghenryiv,1598 rank,3,2kinghenryiv,1598 hill,3,2kinghenryiv,1598 Archbishop,3,2kinghenryiv,1598 note,3,2kinghenryiv,1598 Better,3,2kinghenryiv,1598 dress,3,2kinghenryiv,1598 apple,3,2kinghenryiv,1598 penny,3,2kinghenryiv,1598 rate,3,2kinghenryiv,1598 bottle,3,2kinghenryiv,1598 Justices,3,2kinghenryiv,1598 blunt,3,2kinghenryiv,1598 candle,3,2kinghenryiv,1598 observed,3,2kinghenryiv,1598 bottom,3,2kinghenryiv,1598 slain,3,2kinghenryiv,1598 affections,3,2kinghenryiv,1598 you'll,3,2kinghenryiv,1598 coronation,3,2kinghenryiv,1598 several,3,2kinghenryiv,1598 cloak,3,2kinghenryiv,1598 child,3,2kinghenryiv,1598 Dost,3,2kinghenryiv,1598 Some,3,2kinghenryiv,1598 purposes,3,2kinghenryiv,1598 All,3,2kinghenryiv,1598 mare,3,2kinghenryiv,1598 injuries,3,2kinghenryiv,1598 slave,3,2kinghenryiv,1598 because,3,2kinghenryiv,1598 leader,3,2kinghenryiv,1598 shoulder,3,2kinghenryiv,1598 Were,3,2kinghenryiv,1598 close,3,2kinghenryiv,1598 troublesome,3,2kinghenryiv,1598 wrongs,3,2kinghenryiv,1598 Scotland,3,2kinghenryiv,1598 gravy,3,2kinghenryiv,1598 former,3,2kinghenryiv,1598 throw,3,2kinghenryiv,1598 why,3,2kinghenryiv,1598 stomach,3,2kinghenryiv,1598 knife,3,2kinghenryiv,1598 fetch,3,2kinghenryiv,1598 Thus,3,2kinghenryiv,1598 stick,3,2kinghenryiv,1598 'The,3,2kinghenryiv,1598 receive,3,2kinghenryiv,1598 intent,3,2kinghenryiv,1598 enraged,3,2kinghenryiv,1598 rage,3,2kinghenryiv,1598 danger,3,2kinghenryiv,1598 wanton,3,2kinghenryiv,1598 SIR,3,2kinghenryiv,1598 swagger,3,2kinghenryiv,1598 Fourth,3,2kinghenryiv,1598 next,3,2kinghenryiv,1598 walk'd,3,2kinghenryiv,1598 familiar,3,2kinghenryiv,1598 served,3,2kinghenryiv,1598 faced,3,2kinghenryiv,1598 what's,3,2kinghenryiv,1598 angel,3,2kinghenryiv,1598 drops,3,2kinghenryiv,1598 waste,3,2kinghenryiv,1598 Make,3,2kinghenryiv,1598 weapons,3,2kinghenryiv,1598 fame,3,2kinghenryiv,1598 wounds,3,2kinghenryiv,1598 fly,3,2kinghenryiv,1598 palace,3,2kinghenryiv,1598 channel,3,2kinghenryiv,1598 rebuke,3,2kinghenryiv,1598 bare,3,2kinghenryiv,1598 Unto,3,2kinghenryiv,1598 smooth,3,2kinghenryiv,1598 patient,3,2kinghenryiv,1598 Visor,3,2kinghenryiv,1598 comfort,3,2kinghenryiv,1598 grievances,3,2kinghenryiv,1598 names,3,2kinghenryiv,1598 flock,3,2kinghenryiv,1598 tall,3,2kinghenryiv,1598 knighthood,3,2kinghenryiv,1598 pardon,3,2kinghenryiv,1598 dangerous,3,2kinghenryiv,1598 hollow,3,2kinghenryiv,1598 commonwealth,3,2kinghenryiv,1598 horses,3,2kinghenryiv,1598 seal,3,2kinghenryiv,1598 gives,3,2kinghenryiv,1598 prayers,3,2kinghenryiv,1598 lungs,3,2kinghenryiv,1598 lying,3,2kinghenryiv,1598 acts,3,2kinghenryiv,1598 drunk,3,2kinghenryiv,1598 we'll,3,2kinghenryiv,1598 arrant,3,2kinghenryiv,1598 nights,3,2kinghenryiv,1598 souls,3,2kinghenryiv,1598 tide,3,2kinghenryiv,1598 led,3,2kinghenryiv,1598 goes,3,2kinghenryiv,1598 sickness,3,2kinghenryiv,1598 ebb,3,2kinghenryiv,1598 laws,3,2kinghenryiv,1598 clouds,3,2kinghenryiv,1598 limbs,3,2kinghenryiv,1598 bishop,3,2kinghenryiv,1598 straight,3,2kinghenryiv,1598 Messenger,3,2kinghenryiv,1598 met,3,2kinghenryiv,1598 Captain,3,2kinghenryiv,1598 cheater,3,2kinghenryiv,1598 meeting,3,2kinghenryiv,1598 Since,3,2kinghenryiv,1598 burns,3,2kinghenryiv,1598 fled,3,2kinghenryiv,1598 thinking,3,2kinghenryiv,1598 fashion,3,2kinghenryiv,1598 wound,3,2kinghenryiv,1598 Indeed,3,2kinghenryiv,1598 sleeping,3,2kinghenryiv,1598 puissance,3,2kinghenryiv,1598 hurt,3,2kinghenryiv,1598 compell'd,3,2kinghenryiv,1598 widow,3,2kinghenryiv,1598 fubbed,3,2kinghenryiv,1598 SHALLOW'S,3,2kinghenryiv,1598 respect,3,2kinghenryiv,1598 dare,3,2kinghenryiv,1598 due,3,2kinghenryiv,1598 sudden,3,2kinghenryiv,1598 Travers,3,2kinghenryiv,1598 dispatch,3,2kinghenryiv,1598 dry,3,2kinghenryiv,1598 shift,3,2kinghenryiv,1598 rescue,3,2kinghenryiv,1598 physician,3,2kinghenryiv,1598 armed,3,2kinghenryiv,1598 Too,3,2kinghenryiv,1598 wenches,3,2kinghenryiv,1598 command,3,2kinghenryiv,1598 boots,3,2kinghenryiv,1598 remembrance,3,2kinghenryiv,1598 shape,3,2kinghenryiv,1598 Fang,3,2kinghenryiv,1598 order,3,2kinghenryiv,1598 chambers,3,2kinghenryiv,1598 turn'd,3,2kinghenryiv,1598 women,3,2kinghenryiv,1598 fortunes,3,2kinghenryiv,1598 is,259,2kinghenryiv,1598 to,515,2kinghenryiv,1598 Francis,4,2kinghenryiv,1598 quality,4,2kinghenryiv,1598 Nay,4,2kinghenryiv,1598 Alas,4,2kinghenryiv,1598 help,4,2kinghenryiv,1598 dish,4,2kinghenryiv,1598 entered,4,2kinghenryiv,1598 Douglas,4,2kinghenryiv,1598 Tell,4,2kinghenryiv,1598 joint,4,2kinghenryiv,1598 while,4,2kinghenryiv,1598 sight,4,2kinghenryiv,1598 naked,4,2kinghenryiv,1598 hanged,4,2kinghenryiv,1598 sons,4,2kinghenryiv,1598 After,4,2kinghenryiv,1598 gracious,4,2kinghenryiv,1598 subjects,4,2kinghenryiv,1598 posts,4,2kinghenryiv,1598 toward,4,2kinghenryiv,1598 hearing,4,2kinghenryiv,1598 golden,4,2kinghenryiv,1598 something,4,2kinghenryiv,1598 execution,4,2kinghenryiv,1598 'twere,4,2kinghenryiv,1598 suit,4,2kinghenryiv,1598 yield,4,2kinghenryiv,1598 justices,4,2kinghenryiv,1598 level,4,2kinghenryiv,1598 doubt,4,2kinghenryiv,1598 stuff,4,2kinghenryiv,1598 fight,4,2kinghenryiv,1598 brain,4,2kinghenryiv,1598 daughter,4,2kinghenryiv,1598 model,4,2kinghenryiv,1598 humble,4,2kinghenryiv,1598 rude,4,2kinghenryiv,1598 Though,4,2kinghenryiv,1598 murder,4,2kinghenryiv,1598 mean,4,2kinghenryiv,1598 French,4,2kinghenryiv,1598 party,4,2kinghenryiv,1598 colour,4,2kinghenryiv,1598 bitter,4,2kinghenryiv,1598 hopes,4,2kinghenryiv,1598 Stand,4,2kinghenryiv,1598 kept,4,2kinghenryiv,1598 On,4,2kinghenryiv,1598 force,4,2kinghenryiv,1598 pawn,4,2kinghenryiv,1598 wo't,4,2kinghenryiv,1598 prove,4,2kinghenryiv,1598 struck,4,2kinghenryiv,1598 shadow,4,2kinghenryiv,1598 captains,4,2kinghenryiv,1598 eaten,4,2kinghenryiv,1598 gate,4,2kinghenryiv,1598 breath,4,2kinghenryiv,1598 image,4,2kinghenryiv,1598 aim,4,2kinghenryiv,1598 gain,4,2kinghenryiv,1598 tongues,4,2kinghenryiv,1598 legs,4,2kinghenryiv,1598 likely,4,2kinghenryiv,1598 hands,4,2kinghenryiv,1598 Clarence,4,2kinghenryiv,1598 memory,4,2kinghenryiv,1598 gentlewoman,4,2kinghenryiv,1598 commend,4,2kinghenryiv,1598 loud,4,2kinghenryiv,1598 loss,4,2kinghenryiv,1598 devil,4,2kinghenryiv,1598 swaggering,4,2kinghenryiv,1598 valour,4,2kinghenryiv,1598 easy,4,2kinghenryiv,1598 hard,4,2kinghenryiv,1598 Call,4,2kinghenryiv,1598 call'd,4,2kinghenryiv,1598 hang,4,2kinghenryiv,1598 PERCY,4,2kinghenryiv,1598 excuse,4,2kinghenryiv,1598 proper,4,2kinghenryiv,1598 rough,4,2kinghenryiv,1598 chance,4,2kinghenryiv,1598 judgment,4,2kinghenryiv,1598 having,4,2kinghenryiv,1598 room,4,2kinghenryiv,1598 nay,4,2kinghenryiv,1598 Against,4,2kinghenryiv,1598 build,4,2kinghenryiv,1598 water,4,2kinghenryiv,1598 WART,4,2kinghenryiv,1598 beard,4,2kinghenryiv,1598 bravely,4,2kinghenryiv,1598 substance,4,2kinghenryiv,1598 excused,4,2kinghenryiv,1598 forest,4,2kinghenryiv,1598 See,4,2kinghenryiv,1598 effect,4,2kinghenryiv,1598 doors,4,2kinghenryiv,1598 varlet,4,2kinghenryiv,1598 myself,4,2kinghenryiv,1598 chief,4,2kinghenryiv,1598 dream,4,2kinghenryiv,1598 mark,4,2kinghenryiv,1598 thick,4,2kinghenryiv,1598 SNARE,4,2kinghenryiv,1598 let's,4,2kinghenryiv,1598 won,4,2kinghenryiv,1598 discharge,4,2kinghenryiv,1598 number,4,2kinghenryiv,1598 Being,4,2kinghenryiv,1598 living,4,2kinghenryiv,1598 taste,4,2kinghenryiv,1598 slight,4,2kinghenryiv,1598 sorrow,4,2kinghenryiv,1598 PETO,4,2kinghenryiv,1598 Percy,4,2kinghenryiv,1598 Say,4,2kinghenryiv,1598 believe,4,2kinghenryiv,1598 forward,4,2kinghenryiv,1598 accommodated,4,2kinghenryiv,1598 coming,4,2kinghenryiv,1598 hair,4,2kinghenryiv,1598 womb,4,2kinghenryiv,1598 hundred,4,2kinghenryiv,1598 followers,4,2kinghenryiv,1598 cares,4,2kinghenryiv,1598 letter,4,2kinghenryiv,1598 allow,4,2kinghenryiv,1598 fine,4,2kinghenryiv,1598 rich,4,2kinghenryiv,1598 Boy,4,2kinghenryiv,1598 particular,4,2kinghenryiv,1598 ta'en,4,2kinghenryiv,1598 Jerusalem,4,2kinghenryiv,1598 linen,4,2kinghenryiv,1598 perceive,4,2kinghenryiv,1598 Very,4,2kinghenryiv,1598 Earl,4,2kinghenryiv,1598 green,4,2kinghenryiv,1598 giddy,4,2kinghenryiv,1598 cut,4,2kinghenryiv,1598 along,4,2kinghenryiv,1598 cook,4,2kinghenryiv,1598 mouldy,4,2kinghenryiv,1598 sweat,4,2kinghenryiv,1598 seed,4,2kinghenryiv,1598 either,4,2kinghenryiv,1598 courtesy,4,2kinghenryiv,1598 vessel,4,2kinghenryiv,1598 cost,4,2kinghenryiv,1598 tidings,4,2kinghenryiv,1598 rascally,4,2kinghenryiv,1598 hours,4,2kinghenryiv,1598 return,4,2kinghenryiv,1598 brow,4,2kinghenryiv,1598 mad,4,2kinghenryiv,1598 abroad,4,2kinghenryiv,1598 TRAVERS,4,2kinghenryiv,1598 Another,4,2kinghenryiv,1598 Clement's,4,2kinghenryiv,1598 makes,4,2kinghenryiv,1598 EARL,4,2kinghenryiv,1598 Percy's,4,2kinghenryiv,1598 May,4,2kinghenryiv,1598 Eastcheap,4,2kinghenryiv,1598 ragged,4,2kinghenryiv,1598 strange,4,2kinghenryiv,1598 numbers,4,2kinghenryiv,1598 laid,4,2kinghenryiv,1598 dog,4,2kinghenryiv,1598 asleep,4,2kinghenryiv,1598 princely,4,2kinghenryiv,1598 weigh,4,2kinghenryiv,1598 He's,4,2kinghenryiv,1598 shalt,4,2kinghenryiv,1598 dale,4,2kinghenryiv,1598 wouldst,4,2kinghenryiv,1598 lady,4,2kinghenryiv,1598 took,5,2kinghenryiv,1598 double,5,2kinghenryiv,1598 weary,5,2kinghenryiv,1598 woman's,5,2kinghenryiv,1598 honours,5,2kinghenryiv,1598 rode,5,2kinghenryiv,1598 villain,5,2kinghenryiv,1598 boys,5,2kinghenryiv,1598 rather,5,2kinghenryiv,1598 soul,5,2kinghenryiv,1598 strength,5,2kinghenryiv,1598 soon,5,2kinghenryiv,1598 highness,5,2kinghenryiv,1598 purse,5,2kinghenryiv,1598 heat,5,2kinghenryiv,1598 town,5,2kinghenryiv,1598 officers,5,2kinghenryiv,1598 SHADOW,5,2kinghenryiv,1598 Duke,5,2kinghenryiv,1598 virtuous,5,2kinghenryiv,1598 sea,5,2kinghenryiv,1598 score,5,2kinghenryiv,1598 deliver,5,2kinghenryiv,1598 'I,5,2kinghenryiv,1598 countenance,5,2kinghenryiv,1598 second,5,2kinghenryiv,1598 thin,5,2kinghenryiv,1598 William,5,2kinghenryiv,1598 worst,5,2kinghenryiv,1598 civil,5,2kinghenryiv,1598 commit,5,2kinghenryiv,1598 ancient,5,2kinghenryiv,1598 choose,5,2kinghenryiv,1598 soldier,5,2kinghenryiv,1598 wise,5,2kinghenryiv,1598 office,5,2kinghenryiv,1598 spoke,5,2kinghenryiv,1598 he's,5,2kinghenryiv,1598 wherefore,5,2kinghenryiv,1598 side,5,2kinghenryiv,1598 A',5,2kinghenryiv,1598 What's,5,2kinghenryiv,1598 Gloucestershire,5,2kinghenryiv,1598 Ah,5,2kinghenryiv,1598 pay,5,2kinghenryiv,1598 quarrel,5,2kinghenryiv,1598 music,5,2kinghenryiv,1598 neither,5,2kinghenryiv,1598 canst,5,2kinghenryiv,1598 archbishop,5,2kinghenryiv,1598 bless,5,2kinghenryiv,1598 whole,5,2kinghenryiv,1598 play,5,2kinghenryiv,1598 Had,5,2kinghenryiv,1598 Hal,5,2kinghenryiv,1598 Is't,5,2kinghenryiv,1598 heads,5,2kinghenryiv,1598 Or,5,2kinghenryiv,1598 goodly,5,2kinghenryiv,1598 Like,5,2kinghenryiv,1598 Rumour,5,2kinghenryiv,1598 Inn,5,2kinghenryiv,1598 ha,5,2kinghenryiv,1598 beat,5,2kinghenryiv,1598 dear,5,2kinghenryiv,1598 that's,5,2kinghenryiv,1598 sherris,5,2kinghenryiv,1598 age,5,2kinghenryiv,1598 lost,5,2kinghenryiv,1598 Jack,5,2kinghenryiv,1598 foul,5,2kinghenryiv,1598 arm,5,2kinghenryiv,1598 brothers,5,2kinghenryiv,1598 mock,5,2kinghenryiv,1598 foot,5,2kinghenryiv,1598 Sirrah,5,2kinghenryiv,1598 pricked,5,2kinghenryiv,1598 broke,5,2kinghenryiv,1598 Into,5,2kinghenryiv,1598 watch,5,2kinghenryiv,1598 far,5,2kinghenryiv,1598 occasion,5,2kinghenryiv,1598 Westminster,5,2kinghenryiv,1598 almost,5,2kinghenryiv,1598 eye,5,2kinghenryiv,1598 Peace,5,2kinghenryiv,1598 Therefore,5,2kinghenryiv,1598 Health,5,2kinghenryiv,1598 question,5,2kinghenryiv,1598 mile,5,2kinghenryiv,1598 Beadle,5,2kinghenryiv,1598 soldiers,5,2kinghenryiv,1598 They,5,2kinghenryiv,1598 stairs,5,2kinghenryiv,1598 grave,5,2kinghenryiv,1598 pound,5,2kinghenryiv,1598 sake,5,2kinghenryiv,1598 happiness,5,2kinghenryiv,1598 Gower,5,2kinghenryiv,1598 able,5,2kinghenryiv,1598 perforce,5,2kinghenryiv,1598 found,5,2kinghenryiv,1598 supper,5,2kinghenryiv,1598 owe,5,2kinghenryiv,1598 glad,5,2kinghenryiv,1598 wert,5,2kinghenryiv,1598 work,5,2kinghenryiv,1598 ride,5,2kinghenryiv,1598 Sweet,5,2kinghenryiv,1598 offices,5,2kinghenryiv,1598 ne'er,5,2kinghenryiv,1598 Fare,5,2kinghenryiv,1598 talk,5,2kinghenryiv,1598 cup,5,2kinghenryiv,1598 short,5,2kinghenryiv,1598 Where's,5,2kinghenryiv,1598 alone,5,2kinghenryiv,1598 kingdom,5,2kinghenryiv,1598 seem,5,2kinghenryiv,1598 Jesu,5,2kinghenryiv,1598 condition,5,2kinghenryiv,1598 whom,5,2kinghenryiv,1598 expectation,5,2kinghenryiv,1598 Pray,5,2kinghenryiv,1598 English,5,2kinghenryiv,1598 heels,5,2kinghenryiv,1598 purpose,5,2kinghenryiv,1598 ear,5,2kinghenryiv,1598 Quickly,5,2kinghenryiv,1598 Groom,5,2kinghenryiv,1598 street,5,2kinghenryiv,1598 late,5,2kinghenryiv,1598 going,5,2kinghenryiv,1598 try,5,2kinghenryiv,1598 rebels,5,2kinghenryiv,1598 swaggerers,5,2kinghenryiv,1598 he'll,5,2kinghenryiv,1598 shame,5,2kinghenryiv,1598 lack,5,2kinghenryiv,1598 me,261,2kinghenryiv,1598 Ned,6,2kinghenryiv,1598 told,6,2kinghenryiv,1598 guard,6,2kinghenryiv,1598 Warwick,6,2kinghenryiv,1598 wicked,6,2kinghenryiv,1598 assured,6,2kinghenryiv,1598 Hotspur's,6,2kinghenryiv,1598 security,6,2kinghenryiv,1598 disease,6,2kinghenryiv,1598 offer,6,2kinghenryiv,1598 tears,6,2kinghenryiv,1598 under,6,2kinghenryiv,1598 lies,6,2kinghenryiv,1598 run,6,2kinghenryiv,1598 Tearsheet,6,2kinghenryiv,1598 damned,6,2kinghenryiv,1598 sad,6,2kinghenryiv,1598 saw,6,2kinghenryiv,1598 another,6,2kinghenryiv,1598 noise,6,2kinghenryiv,1598 worth,6,2kinghenryiv,1598 subject,6,2kinghenryiv,1598 counsel,6,2kinghenryiv,1598 read,6,2kinghenryiv,1598 vile,6,2kinghenryiv,1598 turn,6,2kinghenryiv,1598 common,6,2kinghenryiv,1598 Wart,6,2kinghenryiv,1598 princes,6,2kinghenryiv,1598 service,6,2kinghenryiv,1598 false,6,2kinghenryiv,1598 wine,6,2kinghenryiv,1598 wind,6,2kinghenryiv,1598 flesh,6,2kinghenryiv,1598 wish,6,2kinghenryiv,1598 anon,6,2kinghenryiv,1598 stop,6,2kinghenryiv,1598 chamber,6,2kinghenryiv,1598 has,6,2kinghenryiv,1598 III,6,2kinghenryiv,1598 among,6,2kinghenryiv,1598 Wales,6,2kinghenryiv,1598 past,6,2kinghenryiv,1598 earl,6,2kinghenryiv,1598 ears,6,2kinghenryiv,1598 Snare,6,2kinghenryiv,1598 valiant,6,2kinghenryiv,1598 weak,6,2kinghenryiv,1598 deep,6,2kinghenryiv,1598 speed,6,2kinghenryiv,1598 thyself,6,2kinghenryiv,1598 aside,6,2kinghenryiv,1598 earth,6,2kinghenryiv,1598 less,6,2kinghenryiv,1598 hot,6,2kinghenryiv,1598 More,6,2kinghenryiv,1598 four,6,2kinghenryiv,1598 whether,6,2kinghenryiv,1598 form,6,2kinghenryiv,1598 ye,6,2kinghenryiv,1598 fat,6,2kinghenryiv,1598 venture,6,2kinghenryiv,1598 Shadow,6,2kinghenryiv,1598 griefs,6,2kinghenryiv,1598 She,6,2kinghenryiv,1598 Porter,6,2kinghenryiv,1598 Doth,6,2kinghenryiv,1598 already,6,2kinghenryiv,1598 mass,6,2kinghenryiv,1598 known,6,2kinghenryiv,1598 Hastings,6,2kinghenryiv,1598 called,6,2kinghenryiv,1598 army,6,2kinghenryiv,1598 tailor,6,2kinghenryiv,1598 between,6,2kinghenryiv,1598 serve,6,2kinghenryiv,1598 prick,6,2kinghenryiv,1598 dull,6,2kinghenryiv,1598 Even,6,2kinghenryiv,1598 diseases,6,2kinghenryiv,1598 grant,6,2kinghenryiv,1598 safety,6,2kinghenryiv,1598 hook,6,2kinghenryiv,1598 law,6,2kinghenryiv,1598 reason,6,2kinghenryiv,1598 wild,6,2kinghenryiv,1598 dozen,6,2kinghenryiv,1598 strong,6,2kinghenryiv,1598 GOWER,6,2kinghenryiv,1598 swear,6,2kinghenryiv,1598 Thy,6,2kinghenryiv,1598 ten,6,2kinghenryiv,1598 JOHN,6,2kinghenryiv,1598 answer,7,2kinghenryiv,1598 health,7,2kinghenryiv,1598 Would,7,2kinghenryiv,1598 Whose,7,2kinghenryiv,1598 Their,7,2kinghenryiv,1598 born,7,2kinghenryiv,1598 grow,7,2kinghenryiv,1598 voice,7,2kinghenryiv,1598 wars,7,2kinghenryiv,1598 Poins,7,2kinghenryiv,1598 else,7,2kinghenryiv,1598 stay,7,2kinghenryiv,1598 Ha,7,2kinghenryiv,1598 dinner,7,2kinghenryiv,1598 bid,7,2kinghenryiv,1598 quiet,7,2kinghenryiv,1598 Bolingbroke,7,2kinghenryiv,1598 Second,7,2kinghenryiv,1598 brought,7,2kinghenryiv,1598 Under,7,2kinghenryiv,1598 money,7,2kinghenryiv,1598 fool,7,2kinghenryiv,1598 lead,7,2kinghenryiv,1598 borne,7,2kinghenryiv,1598 BULLCALF,7,2kinghenryiv,1598 general,7,2kinghenryiv,1598 Feeble,7,2kinghenryiv,1598 foolish,7,2kinghenryiv,1598 didst,7,2kinghenryiv,1598 knows,7,2kinghenryiv,1598 father's,7,2kinghenryiv,1598 letters,7,2kinghenryiv,1598 affairs,7,2kinghenryiv,1598 only,7,2kinghenryiv,1598 save,7,2kinghenryiv,1598 belly,7,2kinghenryiv,1598 happy,7,2kinghenryiv,1598 Robert,7,2kinghenryiv,1598 York,7,2kinghenryiv,1598 Till,7,2kinghenryiv,1598 fortune,7,2kinghenryiv,1598 three,7,2kinghenryiv,1598 company,7,2kinghenryiv,1598 hour,7,2kinghenryiv,1598 kiss,7,2kinghenryiv,1598 Bullcalf,7,2kinghenryiv,1598 thank,7,2kinghenryiv,1598 low,7,2kinghenryiv,1598 thrust,7,2kinghenryiv,1598 person,7,2kinghenryiv,1598 send,7,2kinghenryiv,1598 spirits,7,2kinghenryiv,1598 MOULDY,7,2kinghenryiv,1598 Before,7,2kinghenryiv,1598 liege,7,2kinghenryiv,1598 Did,7,2kinghenryiv,1598 land,7,2kinghenryiv,1598 greatness,7,2kinghenryiv,1598 woman,7,2kinghenryiv,1598 enemy,7,2kinghenryiv,1598 o'er,8,2kinghenryiv,1598 speech,8,2kinghenryiv,1598 case,8,2kinghenryiv,1598 yourself,8,2kinghenryiv,1598 years,8,2kinghenryiv,1598 Thomas,8,2kinghenryiv,1598 warrant,8,2kinghenryiv,1598 worse,8,2kinghenryiv,1598 king's,8,2kinghenryiv,1598 white,8,2kinghenryiv,1598 bold,8,2kinghenryiv,1598 desire,8,2kinghenryiv,1598 book,8,2kinghenryiv,1598 An,8,2kinghenryiv,1598 His,8,2kinghenryiv,1598 Singing,8,2kinghenryiv,1598 bed,8,2kinghenryiv,1598 means,8,2kinghenryiv,1598 gold,8,2kinghenryiv,1598 gave,8,2kinghenryiv,1598 yea,8,2kinghenryiv,1598 left,8,2kinghenryiv,1598 twenty,8,2kinghenryiv,1598 field,8,2kinghenryiv,1598 course,8,2kinghenryiv,1598 though,8,2kinghenryiv,1598 Than,8,2kinghenryiv,1598 King,8,2kinghenryiv,1598 things,8,2kinghenryiv,1598 From,8,2kinghenryiv,1598 powers,8,2kinghenryiv,1598 Mowbray,8,2kinghenryiv,1598 high,8,2kinghenryiv,1598 Look,8,2kinghenryiv,1598 Richard,8,2kinghenryiv,1598 nor,8,2kinghenryiv,1598 MORTON,8,2kinghenryiv,1598 need,8,2kinghenryiv,1598 over,8,2kinghenryiv,1598 five,8,2kinghenryiv,1598 break,8,2kinghenryiv,1598 LADY,8,2kinghenryiv,1598 arms,8,2kinghenryiv,1598 ground,8,2kinghenryiv,1598 fall,8,2kinghenryiv,1598 man's,8,2kinghenryiv,1598 gentlemen,8,2kinghenryiv,1598 home,8,2kinghenryiv,1598 sound,8,2kinghenryiv,1598 eat,8,2kinghenryiv,1598 hostess,8,2kinghenryiv,1598 thoughts,8,2kinghenryiv,1598 Marry,8,2kinghenryiv,1598 without,8,2kinghenryiv,1598 kind,8,2kinghenryiv,1598 days,9,2kinghenryiv,1598 horse,9,2kinghenryiv,1598 FANG,9,2kinghenryiv,1598 rascal,9,2kinghenryiv,1598 charge,9,2kinghenryiv,1598 draw,9,2kinghenryiv,1598 words,9,2kinghenryiv,1598 sure,9,2kinghenryiv,1598 bring,9,2kinghenryiv,1598 rebellion,9,2kinghenryiv,1598 Colevile,9,2kinghenryiv,1598 itself,9,2kinghenryiv,1598 II,9,2kinghenryiv,1598 best,9,2kinghenryiv,1598 grief,9,2kinghenryiv,1598 Lancaster,9,2kinghenryiv,1598 dost,9,2kinghenryiv,1598 'tis,9,2kinghenryiv,1598 God's,9,2kinghenryiv,1598 excellent,9,2kinghenryiv,1598 door,9,2kinghenryiv,1598 knew,9,2kinghenryiv,1598 new,9,2kinghenryiv,1598 year,9,2kinghenryiv,1598 mind,9,2kinghenryiv,1598 bloody,9,2kinghenryiv,1598 Mouldy,9,2kinghenryiv,1598 near,9,2kinghenryiv,1598 wit,9,2kinghenryiv,1598 themselves,9,2kinghenryiv,1598 FEEBLE,9,2kinghenryiv,1598 even,9,2kinghenryiv,1598 worship,9,2kinghenryiv,1598 an't,9,2kinghenryiv,1598 base,9,2kinghenryiv,1598 gentleman,9,2kinghenryiv,1598 lay,9,2kinghenryiv,1598 eyes,9,2kinghenryiv,1598 seen,9,2kinghenryiv,1598 together,9,2kinghenryiv,1598 abuse,9,2kinghenryiv,1598 Away,9,2kinghenryiv,1598 COLEVILE,9,2kinghenryiv,1598 last,9,2kinghenryiv,1598 nature,9,2kinghenryiv,1598 follow,9,2kinghenryiv,1598 meet,10,2kinghenryiv,1598 become,10,2kinghenryiv,1598 Not,10,2kinghenryiv,1598 enough,10,2kinghenryiv,1598 wrong,10,2kinghenryiv,1598 rest,10,2kinghenryiv,1598 matter,10,2kinghenryiv,1598 just,10,2kinghenryiv,1598 o',10,2kinghenryiv,1598 Yet,10,2kinghenryiv,1598 half,10,2kinghenryiv,1598 right,10,2kinghenryiv,1598 gentle,10,2kinghenryiv,1598 yours,10,2kinghenryiv,1598 there's,10,2kinghenryiv,1598 state,10,2kinghenryiv,1598 fire,10,2kinghenryiv,1598 heard,10,2kinghenryiv,1598 heavy,10,2kinghenryiv,1598 war,10,2kinghenryiv,1598 find,10,2kinghenryiv,1598 hope,10,2kinghenryiv,1598 England,10,2kinghenryiv,1598 lives,10,2kinghenryiv,1598 wife,10,2kinghenryiv,1598 remember,10,2kinghenryiv,1598 himself,10,2kinghenryiv,1598 Upon,11,2kinghenryiv,1598 light,11,2kinghenryiv,1598 Silence,11,2kinghenryiv,1598 cause,11,2kinghenryiv,1598 Servant,11,2kinghenryiv,1598 after,11,2kinghenryiv,1598 friend,11,2kinghenryiv,1598 since,11,2kinghenryiv,1598 long,11,2kinghenryiv,1598 keep,11,2kinghenryiv,1598 welcome,11,2kinghenryiv,1598 forth,11,2kinghenryiv,1598 hast,11,2kinghenryiv,1598 Hath,11,2kinghenryiv,1598 justice,11,2kinghenryiv,1598 lords,11,2kinghenryiv,1598 knave,11,2kinghenryiv,1598 who,11,2kinghenryiv,1598 get,11,2kinghenryiv,1598 thine,11,2kinghenryiv,1598 Shrewsbury,11,2kinghenryiv,1598 morrow,11,2kinghenryiv,1598 till,11,2kinghenryiv,1598 house,11,2kinghenryiv,1598 cold,11,2kinghenryiv,1598 first,11,2kinghenryiv,1598 lie,11,2kinghenryiv,1598 live,11,2kinghenryiv,1598 crown,11,2kinghenryiv,1598 drink,12,2kinghenryiv,1598 whoreson,12,2kinghenryiv,1598 came,12,2kinghenryiv,1598 others,12,2kinghenryiv,1598 Do,12,2kinghenryiv,1598 whose,12,2kinghenryiv,1598 i',12,2kinghenryiv,1598 sack,12,2kinghenryiv,1598 present,12,2kinghenryiv,1598 show,12,2kinghenryiv,1598 through,12,2kinghenryiv,1598 action,12,2kinghenryiv,1598 none,12,2kinghenryiv,1598 youth,12,2kinghenryiv,1598 ere,12,2kinghenryiv,1598 says,12,2kinghenryiv,1598 Drawer,12,2kinghenryiv,1598 fair,12,2kinghenryiv,1598 London,12,2kinghenryiv,1598 use,12,2kinghenryiv,1598 back,12,2kinghenryiv,1598 troth,12,2kinghenryiv,1598 Mistress,12,2kinghenryiv,1598 sleep,12,2kinghenryiv,1598 Where,12,2kinghenryiv,1598 certain,12,2kinghenryiv,1598 royal,13,2kinghenryiv,1598 Will,13,2kinghenryiv,1598 full,13,2kinghenryiv,1598 sit,13,2kinghenryiv,1598 body,13,2kinghenryiv,1598 Our,13,2kinghenryiv,1598 sword,13,2kinghenryiv,1598 hence,13,2kinghenryiv,1598 therefore,13,2kinghenryiv,1598 rogue,13,2kinghenryiv,1598 same,13,2kinghenryiv,1598 still,13,2kinghenryiv,1598 beseech,13,2kinghenryiv,1598 marry,13,2kinghenryiv,1598 ever,13,2kinghenryiv,1598 lordship,13,2kinghenryiv,1598 unto,13,2kinghenryiv,1598 Prince,13,2kinghenryiv,1598 hither,13,2kinghenryiv,1598 spirit,13,2kinghenryiv,1598 power,13,2kinghenryiv,1598 thought,14,2kinghenryiv,1598 friends,14,2kinghenryiv,1598 Give,14,2kinghenryiv,1598 within,14,2kinghenryiv,1598 enter,14,2kinghenryiv,1598 Re,14,2kinghenryiv,1598 tongue,14,2kinghenryiv,1598 those,14,2kinghenryiv,1598 Are,14,2kinghenryiv,1598 Your,14,2kinghenryiv,1598 once,14,2kinghenryiv,1598 hold,14,2kinghenryiv,1598 captain,14,2kinghenryiv,1598 sweet,14,2kinghenryiv,1598 being,14,2kinghenryiv,1598 Northumberland,14,2kinghenryiv,1598 die,14,2kinghenryiv,1598 V,15,2kinghenryiv,1598 world,15,2kinghenryiv,1598 care,15,2kinghenryiv,1598 brother,15,2kinghenryiv,1598 Who,15,2kinghenryiv,1598 set,15,2kinghenryiv,1598 There,15,2kinghenryiv,1598 honour,15,2kinghenryiv,1598 heaven,15,2kinghenryiv,1598 Be,15,2kinghenryiv,1598 boy,15,2kinghenryiv,1598 gone,15,2kinghenryiv,1598 put,15,2kinghenryiv,1598 Have,15,2kinghenryiv,1598 end,15,2kinghenryiv,1598 way,15,2kinghenryiv,1598 face,15,2kinghenryiv,1598 Westmoreland,15,2kinghenryiv,1598 knight,15,2kinghenryiv,1598 please,15,2kinghenryiv,1598 thousand,15,2kinghenryiv,1598 master,15,2kinghenryiv,1598 honest,15,2kinghenryiv,1598 sent,15,2kinghenryiv,1598 leave,15,2kinghenryiv,1598 truth,16,2kinghenryiv,1598 call,16,2kinghenryiv,1598 against,16,2kinghenryiv,1598 fear,16,2kinghenryiv,1598 about,16,2kinghenryiv,1598 sick,16,2kinghenryiv,1598 Of,16,2kinghenryiv,1598 place,16,2kinghenryiv,1598 made,16,2kinghenryiv,1598 where,16,2kinghenryiv,1598 wilt,16,2kinghenryiv,1598 times,17,2kinghenryiv,1598 Now,17,2kinghenryiv,1598 nothing,17,2kinghenryiv,1598 Go,17,2kinghenryiv,1598 done,17,2kinghenryiv,1598 could,17,2kinghenryiv,1598 'Tis,17,2kinghenryiv,1598 GLOUCESTER,17,2kinghenryiv,1598 Doll,17,2kinghenryiv,1598 she,18,2kinghenryiv,1598 fellow,18,2kinghenryiv,1598 little,18,2kinghenryiv,1598 again,18,2kinghenryiv,1598 court,18,2kinghenryiv,1598 both,19,2kinghenryiv,1598 Good,19,2kinghenryiv,1598 ill,19,2kinghenryiv,1598 First,19,2kinghenryiv,1598 ACT,19,2kinghenryiv,1598 Then,19,2kinghenryiv,1598 Shall,19,2kinghenryiv,1598 merry,20,2kinghenryiv,1598 DAVY,20,2kinghenryiv,1598 Yea,20,2kinghenryiv,1598 part,20,2kinghenryiv,1598 faith,20,2kinghenryiv,1598 majesty,20,2kinghenryiv,1598 many,20,2kinghenryiv,1598 stand,20,2kinghenryiv,1598 CLARENCE,20,2kinghenryiv,1598 Pistol,20,2kinghenryiv,1598 poor,20,2kinghenryiv,1598 SCENE,20,2kinghenryiv,1598 pray,21,2kinghenryiv,1598 hear,21,2kinghenryiv,1598 away,21,2kinghenryiv,1598 night,21,2kinghenryiv,1598 Which,21,2kinghenryiv,1598 love,21,2kinghenryiv,1598 into,21,2kinghenryiv,1598 thus,21,2kinghenryiv,1598 death,22,2kinghenryiv,1598 Here,22,2kinghenryiv,1598 Is,22,2kinghenryiv,1598 look,22,2kinghenryiv,1598 indeed,22,2kinghenryiv,1598 Falstaff,22,2kinghenryiv,1598 off,22,2kinghenryiv,1598 Exit,22,2kinghenryiv,1598 LORD,23,2kinghenryiv,1598 Davy,23,2kinghenryiv,1598 MOWBRAY,23,2kinghenryiv,1598 name,23,2kinghenryiv,1598 No,23,2kinghenryiv,1598 cousin,23,2kinghenryiv,1598 noble,23,2kinghenryiv,1598 young,23,2kinghenryiv,1598 Thou,23,2kinghenryiv,1598 Well,23,2kinghenryiv,1598 own,23,2kinghenryiv,1598 When,23,2kinghenryiv,1598 might,23,2kinghenryiv,1598 every,24,2kinghenryiv,1598 HASTINGS,24,2kinghenryiv,1598 Why,24,2kinghenryiv,1598 In,24,2kinghenryiv,1598 blood,24,2kinghenryiv,1598 We,24,2kinghenryiv,1598 can,24,2kinghenryiv,1598 said,24,2kinghenryiv,1598 true,24,2kinghenryiv,1598 much,25,2kinghenryiv,1598 NORTHUMBERLAND,25,2kinghenryiv,1598 tell,25,2kinghenryiv,1598 So,25,2kinghenryiv,1598 bear,25,2kinghenryiv,1598 great,25,2kinghenryiv,1598 Let,25,2kinghenryiv,1598 life,26,2kinghenryiv,1598 head,26,2kinghenryiv,1598 By,26,2kinghenryiv,1598 been,26,2kinghenryiv,1598 This,26,2kinghenryiv,1598 before,26,2kinghenryiv,1598 thing,26,2kinghenryiv,1598 heart,26,2kinghenryiv,1598 other,26,2kinghenryiv,1598 SILENCE,27,2kinghenryiv,1598 With,27,2kinghenryiv,1598 never,27,2kinghenryiv,1598 day,27,2kinghenryiv,1598 two,27,2kinghenryiv,1598 better,28,2kinghenryiv,1598 dead,28,2kinghenryiv,1598 how,28,2kinghenryiv,1598 hand,28,2kinghenryiv,1598 art,28,2kinghenryiv,1598 news,28,2kinghenryiv,1598 cannot,28,2kinghenryiv,1598 As,29,2kinghenryiv,1598 If,29,2kinghenryiv,1598 yet,29,2kinghenryiv,1598 give,29,2kinghenryiv,1598 mine,29,2kinghenryiv,1598 word,29,2kinghenryiv,1598 YORK,30,2kinghenryiv,1598 think,30,2kinghenryiv,1598 ARCHBISHOP,30,2kinghenryiv,1598 son,31,2kinghenryiv,1598 It,31,2kinghenryiv,1598 POINS,31,2kinghenryiv,1598 time,31,2kinghenryiv,1598 take,31,2kinghenryiv,1598 LANCASTER,31,2kinghenryiv,1598 Harry,32,2kinghenryiv,1598 Exeunt,32,2kinghenryiv,1598 any,32,2kinghenryiv,1598 grace,32,2kinghenryiv,1598 Page,33,2kinghenryiv,1598 some,33,2kinghenryiv,1598 prince,33,2kinghenryiv,1598 comes,33,2kinghenryiv,1598 WESTMORELAND,34,2kinghenryiv,1598 a',34,2kinghenryiv,1598 TEARSHEET,34,2kinghenryiv,1598 DOLL,34,2kinghenryiv,1598 know,35,2kinghenryiv,1598 How,35,2kinghenryiv,1598 men,35,2kinghenryiv,1598 when,35,2kinghenryiv,1598 too,35,2kinghenryiv,1598 Shallow,36,2kinghenryiv,1598 Bardolph,36,2kinghenryiv,1598 her,36,2kinghenryiv,1598 He,36,2kinghenryiv,1598 go,36,2kinghenryiv,1598 father,36,2kinghenryiv,1598 peace,37,2kinghenryiv,1598 down,37,2kinghenryiv,1598 most,37,2kinghenryiv,1598 PISTOL,37,2kinghenryiv,1598 I'll,37,2kinghenryiv,1598 were,37,2kinghenryiv,1598 one,37,2kinghenryiv,1598 ',38,2kinghenryiv,1598 OF,38,2kinghenryiv,1598 speak,38,2kinghenryiv,1598 WARWICK,38,2kinghenryiv,1598 Come,39,2kinghenryiv,1598 such,39,2kinghenryiv,1598 us,40,2kinghenryiv,1598 out,40,2kinghenryiv,1598 did,40,2kinghenryiv,1598 these,41,2kinghenryiv,1598 very,41,2kinghenryiv,1598 old,41,2kinghenryiv,1598 must,42,2kinghenryiv,1598 say,42,2kinghenryiv,1598 in,298,2kinghenryiv,1598 For,43,2kinghenryiv,1598 may,43,2kinghenryiv,1598 A,44,2kinghenryiv,1598 there,44,2kinghenryiv,1598 You,44,2kinghenryiv,1598 should,44,2kinghenryiv,1598 up,45,2kinghenryiv,1598 make,45,2kinghenryiv,1598 My,47,2kinghenryiv,1598 their,47,2kinghenryiv,1598 or,47,2kinghenryiv,1598 than,49,2kinghenryiv,1598 had,49,2kinghenryiv,1598 What,49,2kinghenryiv,1598 let,50,2kinghenryiv,1598 doth,51,2kinghenryiv,1598 Enter,51,2kinghenryiv,1598 see,52,2kinghenryiv,1598 O,53,2kinghenryiv,1598 MISTRESS,53,2kinghenryiv,1598 king,53,2kinghenryiv,1598 then,54,2kinghenryiv,1598 QUICKLY,54,2kinghenryiv,1598 upon,55,2kinghenryiv,1598 God,56,2kinghenryiv,1598 more,56,2kinghenryiv,1598 they,57,2kinghenryiv,1598 if,57,2kinghenryiv,1598 hath,57,2kinghenryiv,1598 which,60,2kinghenryiv,1598 Master,60,2kinghenryiv,1598 But,60,2kinghenryiv,1598 them,61,2kinghenryiv,1598 an,61,2kinghenryiv,1598 what,62,2kinghenryiv,1598 like,64,2kinghenryiv,1598 PRINCE,65,2kinghenryiv,1598 of,577,2kinghenryiv,1598 Chief,66,2kinghenryiv,1598 am,67,2kinghenryiv,1598 That,67,2kinghenryiv,1598 would,68,2kinghenryiv,1598 Justice,68,2kinghenryiv,1598 IV,69,2kinghenryiv,1598 man,69,2kinghenryiv,1598 here,70,2kinghenryiv,1598 KING,70,2kinghenryiv,1598 was,70,2kinghenryiv,1598 To,71,2kinghenryiv,1598 from,72,2kinghenryiv,1598 BARDOLPH,74,2kinghenryiv,1598 at,75,2kinghenryiv,1598 Sir,75,2kinghenryiv,1598 well,75,2kinghenryiv,1598 thy,75,2kinghenryiv,1598 now,79,2kinghenryiv,1598 come,79,2kinghenryiv,1598 SHALLOW,80,2kinghenryiv,1598 sir,81,2kinghenryiv,1598 John,83,2kinghenryiv,1598 thee,84,2kinghenryiv,1598 on,84,2kinghenryiv,1598 we,84,2kinghenryiv,1598 no,86,2kinghenryiv,1598 by,87,2kinghenryiv,1598 are,90,2kinghenryiv,1598 lord,94,2kinghenryiv,1598 our,95,2kinghenryiv,1598 shall,97,2kinghenryiv,1598 all,100,2kinghenryiv,1598 I,614,2kinghenryiv,1598 The,103,2kinghenryiv,1598 do,105,2kinghenryiv,1598 Lord,106,2kinghenryiv,1598 my,364,2kinghenryiv,1598 but,113,2kinghenryiv,1598 the,894,2kinghenryiv,1598 HENRY,132,2kinghenryiv,1598 so,137,2kinghenryiv,1598 will,139,2kinghenryiv,1598 good,140,2kinghenryiv,1598 thou,142,2kinghenryiv,1598 this,143,2kinghenryiv,1598 he,146,2kinghenryiv,1598 as,146,2kinghenryiv,1598 for,161,2kinghenryiv,1598 him,167,2kinghenryiv,1598 have,176,2kinghenryiv,1598 and,689,2kinghenryiv,1598 be,178,2kinghenryiv,1598 you,452,2kinghenryiv,1598 FALSTAFF,199,2kinghenryiv,1598 his,201,2kinghenryiv,1598 And,204,2kinghenryiv,1598 it,212,2kinghenryiv,1598 a,468,2kinghenryiv,1598 not,223,2kinghenryiv,1598 your,227,2kinghenryiv,1598 that,229,2kinghenryiv,1598 with,246,2kinghenryiv,1598 fealty,1,2kinghenryvi,1590 cheque'd,1,2kinghenryvi,1590 attended,1,2kinghenryvi,1590 followers',1,2kinghenryvi,1590 affords,1,2kinghenryvi,1590 augment,1,2kinghenryvi,1590 silken,1,2kinghenryvi,1590 champions,1,2kinghenryvi,1590 discharged,1,2kinghenryvi,1590 islanders,1,2kinghenryvi,1590 Alencon,1,2kinghenryvi,1590 answered,1,2kinghenryvi,1590 pleading,1,2kinghenryvi,1590 cripple,1,2kinghenryvi,1590 deputy,1,2kinghenryvi,1590 degenerate,1,2kinghenryvi,1590 event,1,2kinghenryvi,1590 cage,1,2kinghenryvi,1590 scathe,1,2kinghenryvi,1590 Cambridge,1,2kinghenryvi,1590 alehouse,1,2kinghenryvi,1590 James,1,2kinghenryvi,1590 reclaims,1,2kinghenryvi,1590 affy,1,2kinghenryvi,1590 Reigns,1,2kinghenryvi,1590 parted,1,2kinghenryvi,1590 father',1,2kinghenryvi,1590 relief,1,2kinghenryvi,1590 Crowned,1,2kinghenryvi,1590 Stands,1,2kinghenryvi,1590 X,1,2kinghenryvi,1590 guise,1,2kinghenryvi,1590 Prove,1,2kinghenryvi,1590 termed,1,2kinghenryvi,1590 bonny,1,2kinghenryvi,1590 lamentable,1,2kinghenryvi,1590 Fed,1,2kinghenryvi,1590 Downs,1,2kinghenryvi,1590 cutting,1,2kinghenryvi,1590 mistaking,1,2kinghenryvi,1590 'Humphrey,1,2kinghenryvi,1590 hangings,1,2kinghenryvi,1590 yawning,1,2kinghenryvi,1590 Adsum,1,2kinghenryvi,1590 Bedford,1,2kinghenryvi,1590 Proud,1,2kinghenryvi,1590 extorted,1,2kinghenryvi,1590 y,1,2kinghenryvi,1590 fancy,1,2kinghenryvi,1590 Valiant,1,2kinghenryvi,1590 infant,1,2kinghenryvi,1590 afar,1,2kinghenryvi,1590 Duchess,1,2kinghenryvi,1590 for't,1,2kinghenryvi,1590 verge,1,2kinghenryvi,1590 impugns,1,2kinghenryvi,1590 Adam,1,2kinghenryvi,1590 belongs,1,2kinghenryvi,1590 Hear,1,2kinghenryvi,1590 Pity,1,2kinghenryvi,1590 preferred,1,2kinghenryvi,1590 Picardy,1,2kinghenryvi,1590 infamy,1,2kinghenryvi,1590 Comfort,1,2kinghenryvi,1590 mistress,1,2kinghenryvi,1590 truer,1,2kinghenryvi,1590 coelestibus,1,2kinghenryvi,1590 dream'd,1,2kinghenryvi,1590 Prayers,1,2kinghenryvi,1590 garret,1,2kinghenryvi,1590 contradict,1,2kinghenryvi,1590 Devise,1,2kinghenryvi,1590 orders,1,2kinghenryvi,1590 span,1,2kinghenryvi,1590 scouring,1,2kinghenryvi,1590 conjurations,1,2kinghenryvi,1590 ruthless,1,2kinghenryvi,1590 twit,1,2kinghenryvi,1590 fuel,1,2kinghenryvi,1590 woman's,1,2kinghenryvi,1590 civil'st,1,2kinghenryvi,1590 dims,1,2kinghenryvi,1590 hempen,1,2kinghenryvi,1590 Weeps,1,2kinghenryvi,1590 commodities,1,2kinghenryvi,1590 reaches,1,2kinghenryvi,1590 cade,1,2kinghenryvi,1590 villain's,1,2kinghenryvi,1590 lawful,1,2kinghenryvi,1590 brown,1,2kinghenryvi,1590 Whether,1,2kinghenryvi,1590 nipping,1,2kinghenryvi,1590 suspicious,1,2kinghenryvi,1590 rock,1,2kinghenryvi,1590 clerkly,1,2kinghenryvi,1590 Villain,1,2kinghenryvi,1590 Messengers,1,2kinghenryvi,1590 zeal,1,2kinghenryvi,1590 bones,1,2kinghenryvi,1590 boned,1,2kinghenryvi,1590 beadles,1,2kinghenryvi,1590 horse',1,2kinghenryvi,1590 labours,1,2kinghenryvi,1590 breathless,1,2kinghenryvi,1590 exploits,1,2kinghenryvi,1590 GLOUCESTER's,1,2kinghenryvi,1590 searching,1,2kinghenryvi,1590 outrun,1,2kinghenryvi,1590 offended,1,2kinghenryvi,1590 wren,1,2kinghenryvi,1590 health,1,2kinghenryvi,1590 subsidy,1,2kinghenryvi,1590 unhelpful,1,2kinghenryvi,1590 offender,1,2kinghenryvi,1590 tanner,1,2kinghenryvi,1590 stopp'd,1,2kinghenryvi,1590 Wilt,1,2kinghenryvi,1590 apprehended,1,2kinghenryvi,1590 Beat,1,2kinghenryvi,1590 Bear,1,2kinghenryvi,1590 muse,1,2kinghenryvi,1590 proclaim'd,1,2kinghenryvi,1590 counties,1,2kinghenryvi,1590 trivial,1,2kinghenryvi,1590 space,1,2kinghenryvi,1590 waxen,1,2kinghenryvi,1590 bucklers,1,2kinghenryvi,1590 cypress,1,2kinghenryvi,1590 Dauphin's,1,2kinghenryvi,1590 vaulting,1,2kinghenryvi,1590 Stafford's,1,2kinghenryvi,1590 melt,1,2kinghenryvi,1590 Rebellious,1,2kinghenryvi,1590 ostrich,1,2kinghenryvi,1590 Iris,1,2kinghenryvi,1590 helm,1,2kinghenryvi,1590 Churchmen,1,2kinghenryvi,1590 drowsy,1,2kinghenryvi,1590 recall,1,2kinghenryvi,1590 Address,1,2kinghenryvi,1590 fifteens,1,2kinghenryvi,1590 warning,1,2kinghenryvi,1590 bondmen,1,2kinghenryvi,1590 Christ,1,2kinghenryvi,1590 single,1,2kinghenryvi,1590 frowning,1,2kinghenryvi,1590 York's,1,2kinghenryvi,1590 shave,1,2kinghenryvi,1590 poisonous,1,2kinghenryvi,1590 mule,1,2kinghenryvi,1590 thorns,1,2kinghenryvi,1590 writes,1,2kinghenryvi,1590 dirt,1,2kinghenryvi,1590 vigilance,1,2kinghenryvi,1590 younger,1,2kinghenryvi,1590 joint,1,2kinghenryvi,1590 Hanging,1,2kinghenryvi,1590 finger,1,2kinghenryvi,1590 richest,1,2kinghenryvi,1590 Became,1,2kinghenryvi,1590 harbours,1,2kinghenryvi,1590 cursing,1,2kinghenryvi,1590 groat,1,2kinghenryvi,1590 wherewith,1,2kinghenryvi,1590 spake,1,2kinghenryvi,1590 mere,1,2kinghenryvi,1590 decay,1,2kinghenryvi,1590 mean'st,1,2kinghenryvi,1590 braver,1,2kinghenryvi,1590 vale,1,2kinghenryvi,1590 grim,1,2kinghenryvi,1590 Help,1,2kinghenryvi,1590 Neapolitan,1,2kinghenryvi,1590 toil,1,2kinghenryvi,1590 aprons,1,2kinghenryvi,1590 comest,1,2kinghenryvi,1590 Unworthy,1,2kinghenryvi,1590 rancour's,1,2kinghenryvi,1590 Nevil,1,2kinghenryvi,1590 Dealing,1,2kinghenryvi,1590 Joan,1,2kinghenryvi,1590 Beshrew,1,2kinghenryvi,1590 brood,1,2kinghenryvi,1590 cottages,1,2kinghenryvi,1590 hearted,1,2kinghenryvi,1590 offer,1,2kinghenryvi,1590 struck'st,1,2kinghenryvi,1590 shifted,1,2kinghenryvi,1590 demeanor,1,2kinghenryvi,1590 brightest,1,2kinghenryvi,1590 Beguiles,1,2kinghenryvi,1590 slander,1,2kinghenryvi,1590 villanies,1,2kinghenryvi,1590 understand,1,2kinghenryvi,1590 its,1,2kinghenryvi,1590 flow,1,2kinghenryvi,1590 cave,1,2kinghenryvi,1590 coated,1,2kinghenryvi,1590 appeal,1,2kinghenryvi,1590 Ere,1,2kinghenryvi,1590 throat,1,2kinghenryvi,1590 stretched,1,2kinghenryvi,1590 years',1,2kinghenryvi,1590 underneath,1,2kinghenryvi,1590 louring,1,2kinghenryvi,1590 sour,1,2kinghenryvi,1590 terribly,1,2kinghenryvi,1590 Suffer,1,2kinghenryvi,1590 jaded,1,2kinghenryvi,1590 Medea,1,2kinghenryvi,1590 Absyrtus,1,2kinghenryvi,1590 untaught,1,2kinghenryvi,1590 jades,1,2kinghenryvi,1590 alehouse',1,2kinghenryvi,1590 Expect,1,2kinghenryvi,1590 terrible,1,2kinghenryvi,1590 cheap,1,2kinghenryvi,1590 regentship,1,2kinghenryvi,1590 rue,1,2kinghenryvi,1590 Blaspheming,1,2kinghenryvi,1590 Assure,1,2kinghenryvi,1590 odds,1,2kinghenryvi,1590 iron,1,2kinghenryvi,1590 bishops,1,2kinghenryvi,1590 damned,1,2kinghenryvi,1590 sore,1,2kinghenryvi,1590 pick,1,2kinghenryvi,1590 Shaking,1,2kinghenryvi,1590 fretful,1,2kinghenryvi,1590 kinder,1,2kinghenryvi,1590 works,1,2kinghenryvi,1590 gaols,1,2kinghenryvi,1590 printed,1,2kinghenryvi,1590 abound,1,2kinghenryvi,1590 rated,1,2kinghenryvi,1590 wrest,1,2kinghenryvi,1590 Bedford's,1,2kinghenryvi,1590 duchies,1,2kinghenryvi,1590 thump,1,2kinghenryvi,1590 cheeks,1,2kinghenryvi,1590 envenomed,1,2kinghenryvi,1590 PERSONAE,1,2kinghenryvi,1590 proclaim,1,2kinghenryvi,1590 rescued,1,2kinghenryvi,1590 denay'd,1,2kinghenryvi,1590 Ungentle,1,2kinghenryvi,1590 Seditious,1,2kinghenryvi,1590 spark,1,2kinghenryvi,1590 deservest,1,2kinghenryvi,1590 lightning,1,2kinghenryvi,1590 crutch,1,2kinghenryvi,1590 lyingest,1,2kinghenryvi,1590 cask,1,2kinghenryvi,1590 spares,1,2kinghenryvi,1590 gallop,1,2kinghenryvi,1590 argues,1,2kinghenryvi,1590 unconquered,1,2kinghenryvi,1590 laces,1,2kinghenryvi,1590 pursue,1,2kinghenryvi,1590 Once,1,2kinghenryvi,1590 performance,1,2kinghenryvi,1590 downfall,1,2kinghenryvi,1590 practised,1,2kinghenryvi,1590 successive,1,2kinghenryvi,1590 Rate,1,2kinghenryvi,1590 Poor,1,2kinghenryvi,1590 law's,1,2kinghenryvi,1590 plague,1,2kinghenryvi,1590 Over,1,2kinghenryvi,1590 assures,1,2kinghenryvi,1590 counter,1,2kinghenryvi,1590 flagging,1,2kinghenryvi,1590 VIII,1,2kinghenryvi,1590 chid,1,2kinghenryvi,1590 practises,1,2kinghenryvi,1590 grasp'd,1,2kinghenryvi,1590 honester,1,2kinghenryvi,1590 Southwell,1,2kinghenryvi,1590 land's,1,2kinghenryvi,1590 espouse,1,2kinghenryvi,1590 feather,1,2kinghenryvi,1590 draw,1,2kinghenryvi,1590 consuming,1,2kinghenryvi,1590 unpolish'd,1,2kinghenryvi,1590 thirtieth,1,2kinghenryvi,1590 ruder,1,2kinghenryvi,1590 subversion,1,2kinghenryvi,1590 Conjuro,1,2kinghenryvi,1590 Horner's,1,2kinghenryvi,1590 pine,1,2kinghenryvi,1590 thousands,1,2kinghenryvi,1590 townsmen,1,2kinghenryvi,1590 toss,1,2kinghenryvi,1590 dance,1,2kinghenryvi,1590 betake,1,2kinghenryvi,1590 Contenteth,1,2kinghenryvi,1590 nubibus,1,2kinghenryvi,1590 losers,1,2kinghenryvi,1590 line,1,2kinghenryvi,1590 hour's,1,2kinghenryvi,1590 sorrows,1,2kinghenryvi,1590 hoise,1,2kinghenryvi,1590 purposely,1,2kinghenryvi,1590 maintains,1,2kinghenryvi,1590 Bristol,1,2kinghenryvi,1590 choleric,1,2kinghenryvi,1590 corner,1,2kinghenryvi,1590 instigation,1,2kinghenryvi,1590 Orleans,1,2kinghenryvi,1590 lime,1,2kinghenryvi,1590 vaunts,1,2kinghenryvi,1590 Comb,1,2kinghenryvi,1590 drab,1,2kinghenryvi,1590 Anchises,1,2kinghenryvi,1590 proceeds,1,2kinghenryvi,1590 ALEXANDER,1,2kinghenryvi,1590 occupat,1,2kinghenryvi,1590 obdurate,1,2kinghenryvi,1590 purse,1,2kinghenryvi,1590 subjects,1,2kinghenryvi,1590 overcome,1,2kinghenryvi,1590 Remember,1,2kinghenryvi,1590 restitution,1,2kinghenryvi,1590 awry,1,2kinghenryvi,1590 heap,1,2kinghenryvi,1590 meddling,1,2kinghenryvi,1590 worthier,1,2kinghenryvi,1590 exclaim,1,2kinghenryvi,1590 headless,1,2kinghenryvi,1590 cheek,1,2kinghenryvi,1590 fingers,1,2kinghenryvi,1590 dogged,1,2kinghenryvi,1590 lift,1,2kinghenryvi,1590 quadrangle,1,2kinghenryvi,1590 madness,1,2kinghenryvi,1590 babes,1,2kinghenryvi,1590 chop,1,2kinghenryvi,1590 characters,1,2kinghenryvi,1590 knaves,1,2kinghenryvi,1590 gross,1,2kinghenryvi,1590 breaks,1,2kinghenryvi,1590 rebels',1,2kinghenryvi,1590 chimney,1,2kinghenryvi,1590 falcon's,1,2kinghenryvi,1590 wrong'st,1,2kinghenryvi,1590 gelded,1,2kinghenryvi,1590 guerdon'd,1,2kinghenryvi,1590 teach,1,2kinghenryvi,1590 riches,1,2kinghenryvi,1590 Adventure,1,2kinghenryvi,1590 Beside,1,2kinghenryvi,1590 furious,1,2kinghenryvi,1590 posse,1,2kinghenryvi,1590 fume,1,2kinghenryvi,1590 mourn'd,1,2kinghenryvi,1590 palfrey,1,2kinghenryvi,1590 freedom,1,2kinghenryvi,1590 confessed,1,2kinghenryvi,1590 lesser,1,2kinghenryvi,1590 wail,1,2kinghenryvi,1590 confirms,1,2kinghenryvi,1590 'Simpcox,1,2kinghenryvi,1590 riotous,1,2kinghenryvi,1590 mounts,1,2kinghenryvi,1590 cities,1,2kinghenryvi,1590 sinful,1,2kinghenryvi,1590 ladies',1,2kinghenryvi,1590 barks,1,2kinghenryvi,1590 pillow,1,2kinghenryvi,1590 wishest,1,2kinghenryvi,1590 impostor,1,2kinghenryvi,1590 wizard,1,2kinghenryvi,1590 ocean,1,2kinghenryvi,1590 outface,1,2kinghenryvi,1590 seeking,1,2kinghenryvi,1590 Tully,1,2kinghenryvi,1590 Pirates,1,2kinghenryvi,1590 shames,1,2kinghenryvi,1590 erst,1,2kinghenryvi,1590 I'd,1,2kinghenryvi,1590 blocks,1,2kinghenryvi,1590 proclaims,1,2kinghenryvi,1590 afflict,1,2kinghenryvi,1590 Lordings,1,2kinghenryvi,1590 represent,1,2kinghenryvi,1590 wilderness,1,2kinghenryvi,1590 speeches,1,2kinghenryvi,1590 prevail'd,1,2kinghenryvi,1590 sprays,1,2kinghenryvi,1590 petitioner,1,2kinghenryvi,1590 imprison'd,1,2kinghenryvi,1590 courtly,1,2kinghenryvi,1590 minions,1,2kinghenryvi,1590 accompt,1,2kinghenryvi,1590 reaching,1,2kinghenryvi,1590 deceased,1,2kinghenryvi,1590 scorpion's,1,2kinghenryvi,1590 robbing,1,2kinghenryvi,1590 clerks,1,2kinghenryvi,1590 may't,1,2kinghenryvi,1590 think'st,1,2kinghenryvi,1590 subdued,1,2kinghenryvi,1590 drudge's,1,2kinghenryvi,1590 agent,1,2kinghenryvi,1590 bode,1,2kinghenryvi,1590 fleet,1,2kinghenryvi,1590 ourself,1,2kinghenryvi,1590 scourge,1,2kinghenryvi,1590 felon,1,2kinghenryvi,1590 wall,1,2kinghenryvi,1590 affiance,1,2kinghenryvi,1590 sworder,1,2kinghenryvi,1590 saying,1,2kinghenryvi,1590 chain'd,1,2kinghenryvi,1590 courtezans,1,2kinghenryvi,1590 start'st,1,2kinghenryvi,1590 coals,1,2kinghenryvi,1590 whipping,1,2kinghenryvi,1590 YORK'S,1,2kinghenryvi,1590 'Tell,1,2kinghenryvi,1590 carrying,1,2kinghenryvi,1590 wake,1,2kinghenryvi,1590 Gazing,1,2kinghenryvi,1590 chiefest,1,2kinghenryvi,1590 scoured,1,2kinghenryvi,1590 anew,1,2kinghenryvi,1590 laying,1,2kinghenryvi,1590 forewarning,1,2kinghenryvi,1590 disposed,1,2kinghenryvi,1590 scorn,1,2kinghenryvi,1590 concert,1,2kinghenryvi,1590 pardons,1,2kinghenryvi,1590 spy,1,2kinghenryvi,1590 nine,1,2kinghenryvi,1590 peril,1,2kinghenryvi,1590 livest,1,2kinghenryvi,1590 'Seek,1,2kinghenryvi,1590 vaunted,1,2kinghenryvi,1590 deliver,1,2kinghenryvi,1590 weapon's,1,2kinghenryvi,1590 passeth,1,2kinghenryvi,1590 thunders,1,2kinghenryvi,1590 CLERK,1,2kinghenryvi,1590 frosty,1,2kinghenryvi,1590 loaves,1,2kinghenryvi,1590 steps,1,2kinghenryvi,1590 terra,1,2kinghenryvi,1590 famed,1,2kinghenryvi,1590 exceeded,1,2kinghenryvi,1590 justices,1,2kinghenryvi,1590 Razing,1,2kinghenryvi,1590 attainted,1,2kinghenryvi,1590 children's,1,2kinghenryvi,1590 records,1,2kinghenryvi,1590 lowing,1,2kinghenryvi,1590 lewdly,1,2kinghenryvi,1590 follower,1,2kinghenryvi,1590 Gall,1,2kinghenryvi,1590 wofull'st,1,2kinghenryvi,1590 hammer,1,2kinghenryvi,1590 followed,1,2kinghenryvi,1590 conventicles,1,2kinghenryvi,1590 apparent,1,2kinghenryvi,1590 fleeced,1,2kinghenryvi,1590 Silence,1,2kinghenryvi,1590 nominate,1,2kinghenryvi,1590 'prentices,1,2kinghenryvi,1590 belonging,1,2kinghenryvi,1590 succeeds,1,2kinghenryvi,1590 kindly,1,2kinghenryvi,1590 pointing,1,2kinghenryvi,1590 exacted,1,2kinghenryvi,1590 surmised,1,2kinghenryvi,1590 clergy's,1,2kinghenryvi,1590 equity,1,2kinghenryvi,1590 disgrace,1,2kinghenryvi,1590 deeply,1,2kinghenryvi,1590 firmly,1,2kinghenryvi,1590 study,1,2kinghenryvi,1590 deserts,1,2kinghenryvi,1590 sky,1,2kinghenryvi,1590 level,1,2kinghenryvi,1590 unbowed,1,2kinghenryvi,1590 faulty,1,2kinghenryvi,1590 suck,1,2kinghenryvi,1590 Thanks,1,2kinghenryvi,1590 emblaze,1,2kinghenryvi,1590 merciless,1,2kinghenryvi,1590 terrace,1,2kinghenryvi,1590 pieces,1,2kinghenryvi,1590 controller,1,2kinghenryvi,1590 play'd,1,2kinghenryvi,1590 scope,1,2kinghenryvi,1590 becomes,1,2kinghenryvi,1590 cheese,1,2kinghenryvi,1590 affect,1,2kinghenryvi,1590 awful,1,2kinghenryvi,1590 sends,1,2kinghenryvi,1590 poverty,1,2kinghenryvi,1590 eternized,1,2kinghenryvi,1590 sinners,1,2kinghenryvi,1590 loosed,1,2kinghenryvi,1590 minion,1,2kinghenryvi,1590 worst,1,2kinghenryvi,1590 Ceres',1,2kinghenryvi,1590 puissant,1,2kinghenryvi,1590 premised,1,2kinghenryvi,1590 poles,1,2kinghenryvi,1590 taught,1,2kinghenryvi,1590 reap,1,2kinghenryvi,1590 merit,1,2kinghenryvi,1590 irae,1,2kinghenryvi,1590 eating,1,2kinghenryvi,1590 guide,1,2kinghenryvi,1590 breeches,1,2kinghenryvi,1590 compound,1,2kinghenryvi,1590 passed,1,2kinghenryvi,1590 Bretagne,1,2kinghenryvi,1590 Princess,1,2kinghenryvi,1590 danced,1,2kinghenryvi,1590 lingering,1,2kinghenryvi,1590 hautboys,1,2kinghenryvi,1590 Wast,1,2kinghenryvi,1590 doublets,1,2kinghenryvi,1590 Item,1,2kinghenryvi,1590 snow,1,2kinghenryvi,1590 courtiers,1,2kinghenryvi,1590 chased,1,2kinghenryvi,1590 Ruled,1,2kinghenryvi,1590 unhallow'd,1,2kinghenryvi,1590 twelve,1,2kinghenryvi,1590 allegations,1,2kinghenryvi,1590 qualm,1,2kinghenryvi,1590 Whereof,1,2kinghenryvi,1590 shilling,1,2kinghenryvi,1590 bricks,1,2kinghenryvi,1590 bliss,1,2kinghenryvi,1590 Attracts,1,2kinghenryvi,1590 fastened,1,2kinghenryvi,1590 encounter'd,1,2kinghenryvi,1590 lucky,1,2kinghenryvi,1590 quake,1,2kinghenryvi,1590 exceeding,1,2kinghenryvi,1590 Quitting,1,2kinghenryvi,1590 affected,1,2kinghenryvi,1590 Broke,1,2kinghenryvi,1590 cherish,1,2kinghenryvi,1590 virgin's,1,2kinghenryvi,1590 Wink,1,2kinghenryvi,1590 instance,1,2kinghenryvi,1590 taper,1,2kinghenryvi,1590 bribe,1,2kinghenryvi,1590 showers,1,2kinghenryvi,1590 fruit,1,2kinghenryvi,1590 household,1,2kinghenryvi,1590 willing,1,2kinghenryvi,1590 Calydon,1,2kinghenryvi,1590 behavedst,1,2kinghenryvi,1590 pageant,1,2kinghenryvi,1590 bestrid,1,2kinghenryvi,1590 unrevenged,1,2kinghenryvi,1590 sue,1,2kinghenryvi,1590 brick,1,2kinghenryvi,1590 sum,1,2kinghenryvi,1590 draught,1,2kinghenryvi,1590 shining,1,2kinghenryvi,1590 complete,1,2kinghenryvi,1590 companion,1,2kinghenryvi,1590 justice',1,2kinghenryvi,1590 Kings,1,2kinghenryvi,1590 bride,1,2kinghenryvi,1590 circled,1,2kinghenryvi,1590 bows,1,2kinghenryvi,1590 Owen,1,2kinghenryvi,1590 recovery,1,2kinghenryvi,1590 Pomfret,1,2kinghenryvi,1590 infinite,1,2kinghenryvi,1590 flaming,1,2kinghenryvi,1590 circuit,1,2kinghenryvi,1590 saucy,1,2kinghenryvi,1590 'scaped,1,2kinghenryvi,1590 costly,1,2kinghenryvi,1590 infallible,1,2kinghenryvi,1590 quart,1,2kinghenryvi,1590 hales,1,2kinghenryvi,1590 Old,1,2kinghenryvi,1590 tortures,1,2kinghenryvi,1590 Guard,1,2kinghenryvi,1590 choose,1,2kinghenryvi,1590 wing,1,2kinghenryvi,1590 patrimony,1,2kinghenryvi,1590 wink,1,2kinghenryvi,1590 putting,1,2kinghenryvi,1590 Fly,1,2kinghenryvi,1590 Latin,1,2kinghenryvi,1590 irksome,1,2kinghenryvi,1590 tax,1,2kinghenryvi,1590 wished,1,2kinghenryvi,1590 language,1,2kinghenryvi,1590 nails,1,2kinghenryvi,1590 monarchy,1,2kinghenryvi,1590 caves,1,2kinghenryvi,1590 rend,1,2kinghenryvi,1590 Crying,1,2kinghenryvi,1590 dedicate,1,2kinghenryvi,1590 Dare,1,2kinghenryvi,1590 wand,1,2kinghenryvi,1590 thirsting,1,2kinghenryvi,1590 seems,1,2kinghenryvi,1590 usurp,1,2kinghenryvi,1590 rent,1,2kinghenryvi,1590 executioner,1,2kinghenryvi,1590 astonish,1,2kinghenryvi,1590 halloing,1,2kinghenryvi,1590 Sawyer,1,2kinghenryvi,1590 partridge,1,2kinghenryvi,1590 brand,1,2kinghenryvi,1590 hates,1,2kinghenryvi,1590 Retreat,1,2kinghenryvi,1590 ruin,1,2kinghenryvi,1590 turmoiled,1,2kinghenryvi,1590 anon,1,2kinghenryvi,1590 turned,1,2kinghenryvi,1590 servile,1,2kinghenryvi,1590 Immediately,1,2kinghenryvi,1590 eagle,1,2kinghenryvi,1590 imperious,1,2kinghenryvi,1590 throws,1,2kinghenryvi,1590 Putting,1,2kinghenryvi,1590 execrations,1,2kinghenryvi,1590 devil's,1,2kinghenryvi,1590 sense,1,2kinghenryvi,1590 withheld,1,2kinghenryvi,1590 northern,1,2kinghenryvi,1590 mandrake's,1,2kinghenryvi,1590 indebted,1,2kinghenryvi,1590 torment'st,1,2kinghenryvi,1590 summon,1,2kinghenryvi,1590 parching,1,2kinghenryvi,1590 ungracious,1,2kinghenryvi,1590 warm,1,2kinghenryvi,1590 dukedom,1,2kinghenryvi,1590 wars,1,2kinghenryvi,1590 meat,1,2kinghenryvi,1590 timeless,1,2kinghenryvi,1590 triple,1,2kinghenryvi,1590 wash,1,2kinghenryvi,1590 basilisk,1,2kinghenryvi,1590 claret,1,2kinghenryvi,1590 mistake,1,2kinghenryvi,1590 boot,1,2kinghenryvi,1590 stirr'd,1,2kinghenryvi,1590 steed,1,2kinghenryvi,1590 desire,1,2kinghenryvi,1590 t'other,1,2kinghenryvi,1590 Plantagenet,1,2kinghenryvi,1590 Ladies,1,2kinghenryvi,1590 rules,1,2kinghenryvi,1590 ruled,1,2kinghenryvi,1590 condemns,1,2kinghenryvi,1590 wits,1,2kinghenryvi,1590 observe,1,2kinghenryvi,1590 breastplate,1,2kinghenryvi,1590 steer,1,2kinghenryvi,1590 manhood,1,2kinghenryvi,1590 bright,1,2kinghenryvi,1590 Vaux,1,2kinghenryvi,1590 praised,1,2kinghenryvi,1590 uprear'd,1,2kinghenryvi,1590 digg'd,1,2kinghenryvi,1590 compared,1,2kinghenryvi,1590 prevails,1,2kinghenryvi,1590 tent,1,2kinghenryvi,1590 sympathy,1,2kinghenryvi,1590 Descended,1,2kinghenryvi,1590 Marquess,1,2kinghenryvi,1590 fairest,1,2kinghenryvi,1590 smiledst,1,2kinghenryvi,1590 frames,1,2kinghenryvi,1590 Used,1,2kinghenryvi,1590 nephew,1,2kinghenryvi,1590 bitter,1,2kinghenryvi,1590 bills,1,2kinghenryvi,1590 preferr'd,1,2kinghenryvi,1590 scandal,1,2kinghenryvi,1590 prince's,1,2kinghenryvi,1590 Crown'd,1,2kinghenryvi,1590 Faith,1,2kinghenryvi,1590 mickle,1,2kinghenryvi,1590 authority,1,2kinghenryvi,1590 stumble,1,2kinghenryvi,1590 bastardy,1,2kinghenryvi,1590 palmer's,1,2kinghenryvi,1590 Lands,1,2kinghenryvi,1590 chamber,1,2kinghenryvi,1590 I',1,2kinghenryvi,1590 keys,1,2kinghenryvi,1590 chirping,1,2kinghenryvi,1590 Harmless,1,2kinghenryvi,1590 slaves,1,2kinghenryvi,1590 manners,1,2kinghenryvi,1590 drown,1,2kinghenryvi,1590 statutes,1,2kinghenryvi,1590 Leaving,1,2kinghenryvi,1590 strongly,1,2kinghenryvi,1590 pillars,1,2kinghenryvi,1590 hap,1,2kinghenryvi,1590 kern,1,2kinghenryvi,1590 backs,1,2kinghenryvi,1590 planet,1,2kinghenryvi,1590 abortive,1,2kinghenryvi,1590 aboard,1,2kinghenryvi,1590 tally,1,2kinghenryvi,1590 contumelious,1,2kinghenryvi,1590 A',1,2kinghenryvi,1590 Home,1,2kinghenryvi,1590 seventh,1,2kinghenryvi,1590 defile,1,2kinghenryvi,1590 refuse,1,2kinghenryvi,1590 gotten,1,2kinghenryvi,1590 offend,1,2kinghenryvi,1590 orator,1,2kinghenryvi,1590 distinguish,1,2kinghenryvi,1590 talks,1,2kinghenryvi,1590 Windsor,1,2kinghenryvi,1590 resemble,1,2kinghenryvi,1590 burthen'd,1,2kinghenryvi,1590 granted,1,2kinghenryvi,1590 flattery,1,2kinghenryvi,1590 appeased,1,2kinghenryvi,1590 invent,1,2kinghenryvi,1590 paw,1,2kinghenryvi,1590 infection,1,2kinghenryvi,1590 mistrust,1,2kinghenryvi,1590 empress,1,2kinghenryvi,1590 mutiny,1,2kinghenryvi,1590 scarce,1,2kinghenryvi,1590 replete,1,2kinghenryvi,1590 slander's,1,2kinghenryvi,1590 patience,1,2kinghenryvi,1590 blows,1,2kinghenryvi,1590 knowing,1,2kinghenryvi,1590 lobby,1,2kinghenryvi,1590 bloodshedding,1,2kinghenryvi,1590 resolutely,1,2kinghenryvi,1590 shortly,1,2kinghenryvi,1590 hew,1,2kinghenryvi,1590 murderers,1,2kinghenryvi,1590 smile,1,2kinghenryvi,1590 La,1,2kinghenryvi,1590 Having,1,2kinghenryvi,1590 Lo,1,2kinghenryvi,1590 fates,1,2kinghenryvi,1590 wrings,1,2kinghenryvi,1590 Me,1,2kinghenryvi,1590 siege,1,2kinghenryvi,1590 furthermore,1,2kinghenryvi,1590 proof,1,2kinghenryvi,1590 ladyship,1,2kinghenryvi,1590 eternity,1,2kinghenryvi,1590 subscribe,1,2kinghenryvi,1590 in't,1,2kinghenryvi,1590 Weaver,1,2kinghenryvi,1590 Weaves,1,2kinghenryvi,1590 Advance,1,2kinghenryvi,1590 greatly,1,2kinghenryvi,1590 belike,1,2kinghenryvi,1590 sophister,1,2kinghenryvi,1590 exceed,1,2kinghenryvi,1590 star,1,2kinghenryvi,1590 void,1,2kinghenryvi,1590 grumbling,1,2kinghenryvi,1590 fouler,1,2kinghenryvi,1590 studying,1,2kinghenryvi,1590 pen,1,2kinghenryvi,1590 Proclaim,1,2kinghenryvi,1590 pawn,1,2kinghenryvi,1590 hid,1,2kinghenryvi,1590 wisdom,1,2kinghenryvi,1590 pulls,1,2kinghenryvi,1590 conceived,1,2kinghenryvi,1590 ashes,1,2kinghenryvi,1590 miracles,1,2kinghenryvi,1590 bezonians,1,2kinghenryvi,1590 'Imprimis,1,2kinghenryvi,1590 bee,1,2kinghenryvi,1590 sovereignty,1,2kinghenryvi,1590 printing,1,2kinghenryvi,1590 Wales,1,2kinghenryvi,1590 IX,1,2kinghenryvi,1590 Lionel's,1,2kinghenryvi,1590 quick,1,2kinghenryvi,1590 tribute,1,2kinghenryvi,1590 hobnails,1,2kinghenryvi,1590 contracted,1,2kinghenryvi,1590 pate,1,2kinghenryvi,1590 revolting,1,2kinghenryvi,1590 adder,1,2kinghenryvi,1590 Buckingham's,1,2kinghenryvi,1590 past,1,2kinghenryvi,1590 troops,1,2kinghenryvi,1590 election,1,2kinghenryvi,1590 meals,1,2kinghenryvi,1590 pin,1,2kinghenryvi,1590 hoarded,1,2kinghenryvi,1590 treachery,1,2kinghenryvi,1590 Has,1,2kinghenryvi,1590 hopest,1,2kinghenryvi,1590 wedded,1,2kinghenryvi,1590 Medice,1,2kinghenryvi,1590 extortions,1,2kinghenryvi,1590 Sight,1,2kinghenryvi,1590 Up,1,2kinghenryvi,1590 display'd,1,2kinghenryvi,1590 Scarce,1,2kinghenryvi,1590 countries,1,2kinghenryvi,1590 lizards',1,2kinghenryvi,1590 riseth,1,2kinghenryvi,1590 thighs,1,2kinghenryvi,1590 meritorious,1,2kinghenryvi,1590 Gold,1,2kinghenryvi,1590 Julius,1,2kinghenryvi,1590 o'erthrow,1,2kinghenryvi,1590 revenues,1,2kinghenryvi,1590 mained,1,2kinghenryvi,1590 Seems,1,2kinghenryvi,1590 beheaded,1,2kinghenryvi,1590 erecting,1,2kinghenryvi,1590 Studied,1,2kinghenryvi,1590 Dauphin,1,2kinghenryvi,1590 Dukes,1,2kinghenryvi,1590 surprise,1,2kinghenryvi,1590 Good,1,2kinghenryvi,1590 god,1,2kinghenryvi,1590 priests,1,2kinghenryvi,1590 broached,1,2kinghenryvi,1590 Image,1,2kinghenryvi,1590 gowns,1,2kinghenryvi,1590 Thunder,1,2kinghenryvi,1590 royalty,1,2kinghenryvi,1590 weed,1,2kinghenryvi,1590 cancelling,1,2kinghenryvi,1590 condign,1,2kinghenryvi,1590 morning's,1,2kinghenryvi,1590 apothecary,1,2kinghenryvi,1590 rampant,1,2kinghenryvi,1590 dandle,1,2kinghenryvi,1590 nigh,1,2kinghenryvi,1590 unload,1,2kinghenryvi,1590 puttock's,1,2kinghenryvi,1590 spotless,1,2kinghenryvi,1590 threadbare,1,2kinghenryvi,1590 bend,1,2kinghenryvi,1590 climbed,1,2kinghenryvi,1590 Receive,1,2kinghenryvi,1590 stray,1,2kinghenryvi,1590 Say's,1,2kinghenryvi,1590 abides,1,2kinghenryvi,1590 Drum,1,2kinghenryvi,1590 canker,1,2kinghenryvi,1590 preserved,1,2kinghenryvi,1590 bush,1,2kinghenryvi,1590 miscarry,1,2kinghenryvi,1590 willingness,1,2kinghenryvi,1590 darling's,1,2kinghenryvi,1590 bury,1,2kinghenryvi,1590 tumble,1,2kinghenryvi,1590 Sits,1,2kinghenryvi,1590 whereas,1,2kinghenryvi,1590 cherish'd,1,2kinghenryvi,1590 kindness,1,2kinghenryvi,1590 truncheon,1,2kinghenryvi,1590 pedler's,1,2kinghenryvi,1590 cap,1,2kinghenryvi,1590 children,1,2kinghenryvi,1590 breathing,1,2kinghenryvi,1590 corpse,1,2kinghenryvi,1590 straiter,1,2kinghenryvi,1590 Barren,1,2kinghenryvi,1590 petition,1,2kinghenryvi,1590 homely,1,2kinghenryvi,1590 Kenilworth,1,2kinghenryvi,1590 pry,1,2kinghenryvi,1590 Excepting,1,2kinghenryvi,1590 meetest,1,2kinghenryvi,1590 swoons,1,2kinghenryvi,1590 anything,1,2kinghenryvi,1590 weak,1,2kinghenryvi,1590 woful,1,2kinghenryvi,1590 Save,1,2kinghenryvi,1590 BEAUFORT,1,2kinghenryvi,1590 Wingham,1,2kinghenryvi,1590 Entreat,1,2kinghenryvi,1590 complot,1,2kinghenryvi,1590 Strange,1,2kinghenryvi,1590 Dying,1,2kinghenryvi,1590 quill,1,2kinghenryvi,1590 Clifford's,1,2kinghenryvi,1590 disperse,1,2kinghenryvi,1590 beyond,1,2kinghenryvi,1590 shadow,1,2kinghenryvi,1590 surveyor,1,2kinghenryvi,1590 buildings,1,2kinghenryvi,1590 Speak,1,2kinghenryvi,1590 Put,1,2kinghenryvi,1590 throbbing,1,2kinghenryvi,1590 Died,1,2kinghenryvi,1590 manacle,1,2kinghenryvi,1590 exile,1,2kinghenryvi,1590 Dieu,1,2kinghenryvi,1590 Disdaining,1,2kinghenryvi,1590 tickled,1,2kinghenryvi,1590 bended,1,2kinghenryvi,1590 block,1,2kinghenryvi,1590 curst,1,2kinghenryvi,1590 serpent,1,2kinghenryvi,1590 disbursed,1,2kinghenryvi,1590 twice,1,2kinghenryvi,1590 Didst,1,2kinghenryvi,1590 surfeiting,1,2kinghenryvi,1590 traitors',1,2kinghenryvi,1590 gun,1,2kinghenryvi,1590 fifteenth,1,2kinghenryvi,1590 conquest,1,2kinghenryvi,1590 degree,1,2kinghenryvi,1590 testify,1,2kinghenryvi,1590 bud,1,2kinghenryvi,1590 dangerously,1,2kinghenryvi,1590 deathful,1,2kinghenryvi,1590 buz,1,2kinghenryvi,1590 buy,1,2kinghenryvi,1590 beef,1,2kinghenryvi,1590 Ajax,1,2kinghenryvi,1590 Ye,1,2kinghenryvi,1590 vassal,1,2kinghenryvi,1590 jurisdiction,1,2kinghenryvi,1590 travel,1,2kinghenryvi,1590 bees,1,2kinghenryvi,1590 O'er,1,2kinghenryvi,1590 wheresoe'er,1,2kinghenryvi,1590 survey,1,2kinghenryvi,1590 Whate'er,1,2kinghenryvi,1590 admired,1,2kinghenryvi,1590 craving,1,2kinghenryvi,1590 couch'd,1,2kinghenryvi,1590 sins,1,2kinghenryvi,1590 proportion'd,1,2kinghenryvi,1590 hair'd,1,2kinghenryvi,1590 ambassadors,1,2kinghenryvi,1590 stronger,1,2kinghenryvi,1590 pains,1,2kinghenryvi,1590 sink,1,2kinghenryvi,1590 gate,1,2kinghenryvi,1590 'Twas,1,2kinghenryvi,1590 rejoice,1,2kinghenryvi,1590 sing,1,2kinghenryvi,1590 hourly,1,2kinghenryvi,1590 quire,1,2kinghenryvi,1590 fulness,1,2kinghenryvi,1590 'Villiago,1,2kinghenryvi,1590 twigs,1,2kinghenryvi,1590 Masters,1,2kinghenryvi,1590 calling,1,2kinghenryvi,1590 footing,1,2kinghenryvi,1590 north,1,2kinghenryvi,1590 attain'd,1,2kinghenryvi,1590 hopeful,1,2kinghenryvi,1590 gasp,1,2kinghenryvi,1590 misty,1,2kinghenryvi,1590 afoot,1,2kinghenryvi,1590 Behoves,1,2kinghenryvi,1590 bargain'd,1,2kinghenryvi,1590 pillage,1,2kinghenryvi,1590 tower,1,2kinghenryvi,1590 'Who's,1,2kinghenryvi,1590 infortunate,1,2kinghenryvi,1590 jointly,1,2kinghenryvi,1590 hoops,1,2kinghenryvi,1590 dogs,1,2kinghenryvi,1590 arrogant,1,2kinghenryvi,1590 Omitting,1,2kinghenryvi,1590 noblemen,1,2kinghenryvi,1590 college,1,2kinghenryvi,1590 raught,1,2kinghenryvi,1590 Cannon,1,2kinghenryvi,1590 childish,1,2kinghenryvi,1590 flourishes,1,2kinghenryvi,1590 deem,1,2kinghenryvi,1590 departed,1,2kinghenryvi,1590 Irish,1,2kinghenryvi,1590 government,1,2kinghenryvi,1590 awaits,1,2kinghenryvi,1590 deer,1,2kinghenryvi,1590 promised,1,2kinghenryvi,1590 papers,1,2kinghenryvi,1590 Cannot,1,2kinghenryvi,1590 reave,1,2kinghenryvi,1590 promises,1,2kinghenryvi,1590 doornail,1,2kinghenryvi,1590 puddle,1,2kinghenryvi,1590 keeping,1,2kinghenryvi,1590 nostrils,1,2kinghenryvi,1590 tyrant,1,2kinghenryvi,1590 gift,1,2kinghenryvi,1590 satisfy,1,2kinghenryvi,1590 doit,1,2kinghenryvi,1590 servant,1,2kinghenryvi,1590 excellent,1,2kinghenryvi,1590 repute,1,2kinghenryvi,1590 carrion,1,2kinghenryvi,1590 attainture,1,2kinghenryvi,1590 needy,1,2kinghenryvi,1590 violence,1,2kinghenryvi,1590 HUMPHREY'S,1,2kinghenryvi,1590 Woodstock,1,2kinghenryvi,1590 succor,1,2kinghenryvi,1590 recovered,1,2kinghenryvi,1590 Succeed,1,2kinghenryvi,1590 laments,1,2kinghenryvi,1590 shag,1,2kinghenryvi,1590 beak,1,2kinghenryvi,1590 beam,1,2kinghenryvi,1590 gathered,1,2kinghenryvi,1590 dwell,1,2kinghenryvi,1590 quiver,1,2kinghenryvi,1590 oftener,1,2kinghenryvi,1590 stony,1,2kinghenryvi,1590 splitted,1,2kinghenryvi,1590 liberal,1,2kinghenryvi,1590 gait,1,2kinghenryvi,1590 vouchsafe,1,2kinghenryvi,1590 likely,1,2kinghenryvi,1590 pluck'd,1,2kinghenryvi,1590 lent,1,2kinghenryvi,1590 drain,1,2kinghenryvi,1590 nobleman,1,2kinghenryvi,1590 Last,1,2kinghenryvi,1590 trash,1,2kinghenryvi,1590 accuser,1,2kinghenryvi,1590 enforce,1,2kinghenryvi,1590 collect,1,2kinghenryvi,1590 does,1,2kinghenryvi,1590 gall,1,2kinghenryvi,1590 poise,1,2kinghenryvi,1590 destruction,1,2kinghenryvi,1590 dowries,1,2kinghenryvi,1590 expects,1,2kinghenryvi,1590 melts,1,2kinghenryvi,1590 sack,1,2kinghenryvi,1590 spleenful,1,2kinghenryvi,1590 laughing,1,2kinghenryvi,1590 defence,1,2kinghenryvi,1590 lends,1,2kinghenryvi,1590 conjurers,1,2kinghenryvi,1590 quaint,1,2kinghenryvi,1590 speed,1,2kinghenryvi,1590 crab,1,2kinghenryvi,1590 memory,1,2kinghenryvi,1590 relenting,1,2kinghenryvi,1590 possess'd,1,2kinghenryvi,1590 slips,1,2kinghenryvi,1590 approach,1,2kinghenryvi,1590 'prentice,1,2kinghenryvi,1590 caper,1,2kinghenryvi,1590 ah,1,2kinghenryvi,1590 newly,1,2kinghenryvi,1590 Corner,1,2kinghenryvi,1590 displeased,1,2kinghenryvi,1590 humours,1,2kinghenryvi,1590 Watch,1,2kinghenryvi,1590 sheath,1,2kinghenryvi,1590 correct,1,2kinghenryvi,1590 feast,1,2kinghenryvi,1590 sugar'd,1,2kinghenryvi,1590 betray'd,1,2kinghenryvi,1590 move,1,2kinghenryvi,1590 Kentishman,1,2kinghenryvi,1590 abominable,1,2kinghenryvi,1590 Persuaded,1,2kinghenryvi,1590 ox,1,2kinghenryvi,1590 board,1,2kinghenryvi,1590 commend,1,2kinghenryvi,1590 Dispute,1,2kinghenryvi,1590 bodies,1,2kinghenryvi,1590 delay,1,2kinghenryvi,1590 comment,1,2kinghenryvi,1590 Troubles,1,2kinghenryvi,1590 crew,1,2kinghenryvi,1590 heifer,1,2kinghenryvi,1590 unspotted,1,2kinghenryvi,1590 strait,1,2kinghenryvi,1590 banish,1,2kinghenryvi,1590 Deliver'd,1,2kinghenryvi,1590 idly,1,2kinghenryvi,1590 halfpenny,1,2kinghenryvi,1590 published,1,2kinghenryvi,1590 slily,1,2kinghenryvi,1590 Early,1,2kinghenryvi,1590 Fortune's,1,2kinghenryvi,1590 prevailed,1,2kinghenryvi,1590 idle,1,2kinghenryvi,1590 Live,1,2kinghenryvi,1590 sometime,1,2kinghenryvi,1590 dog's,1,2kinghenryvi,1590 look'st,1,2kinghenryvi,1590 Took,1,2kinghenryvi,1590 Ready,1,2kinghenryvi,1590 caused,1,2kinghenryvi,1590 instigate,1,2kinghenryvi,1590 morn,1,2kinghenryvi,1590 crimes,1,2kinghenryvi,1590 train,1,2kinghenryvi,1590 propounded,1,2kinghenryvi,1590 peacemakers,1,2kinghenryvi,1590 venturous,1,2kinghenryvi,1590 Begin,1,2kinghenryvi,1590 oeuvres,1,2kinghenryvi,1590 offences,1,2kinghenryvi,1590 ink,1,2kinghenryvi,1590 settled,1,2kinghenryvi,1590 offer'd,1,2kinghenryvi,1590 lightly,1,2kinghenryvi,1590 causes,1,2kinghenryvi,1590 Yea,1,2kinghenryvi,1590 Staring,1,2kinghenryvi,1590 moon,1,2kinghenryvi,1590 blur,1,2kinghenryvi,1590 add,1,2kinghenryvi,1590 ho,1,2kinghenryvi,1590 semblance,1,2kinghenryvi,1590 Servants,1,2kinghenryvi,1590 sucker,1,2kinghenryvi,1590 Faster,1,2kinghenryvi,1590 effectual,1,2kinghenryvi,1590 meant'st,1,2kinghenryvi,1590 Breathe,1,2kinghenryvi,1590 custom'd,1,2kinghenryvi,1590 all's,1,2kinghenryvi,1590 circumspect,1,2kinghenryvi,1590 felony,1,2kinghenryvi,1590 Normans,1,2kinghenryvi,1590 pissing,1,2kinghenryvi,1590 nurtured,1,2kinghenryvi,1590 defy,1,2kinghenryvi,1590 necessary,1,2kinghenryvi,1590 beauteous,1,2kinghenryvi,1590 smart,1,2kinghenryvi,1590 Smith,1,2kinghenryvi,1590 betime,1,2kinghenryvi,1590 boding,1,2kinghenryvi,1590 Frenchman's,1,2kinghenryvi,1590 knew,1,2kinghenryvi,1590 show'd,1,2kinghenryvi,1590 madding,1,2kinghenryvi,1590 unassail'd,1,2kinghenryvi,1590 slack,1,2kinghenryvi,1590 upbraided,1,2kinghenryvi,1590 journey,1,2kinghenryvi,1590 glided,1,2kinghenryvi,1590 Raising,1,2kinghenryvi,1590 sancta,1,2kinghenryvi,1590 softens,1,2kinghenryvi,1590 Calling,1,2kinghenryvi,1590 reads,1,2kinghenryvi,1590 Guards,1,2kinghenryvi,1590 Pompey,1,2kinghenryvi,1590 hop,1,2kinghenryvi,1590 Came,1,2kinghenryvi,1590 harm,1,2kinghenryvi,1590 killed,1,2kinghenryvi,1590 chalky,1,2kinghenryvi,1590 Mort,1,2kinghenryvi,1590 clime,1,2kinghenryvi,1590 running,1,2kinghenryvi,1590 hindmost,1,2kinghenryvi,1590 executed,1,2kinghenryvi,1590 tempted,1,2kinghenryvi,1590 demean'd,1,2kinghenryvi,1590 easy,1,2kinghenryvi,1590 fierce,1,2kinghenryvi,1590 irrevocable,1,2kinghenryvi,1590 discourse,1,2kinghenryvi,1590 fight'st,1,2kinghenryvi,1590 enfranchisement,1,2kinghenryvi,1590 plums,1,2kinghenryvi,1590 front,1,2kinghenryvi,1590 Most,1,2kinghenryvi,1590 Tantaene,1,2kinghenryvi,1590 orphan,1,2kinghenryvi,1590 drudges,1,2kinghenryvi,1590 hall,1,2kinghenryvi,1590 Bishop,1,2kinghenryvi,1590 Talking,1,2kinghenryvi,1590 pull,1,2kinghenryvi,1590 undiscover'd,1,2kinghenryvi,1590 outright,1,2kinghenryvi,1590 Brutus',1,2kinghenryvi,1590 kingly,1,2kinghenryvi,1590 peaceably,1,2kinghenryvi,1590 knit,1,2kinghenryvi,1590 senseless,1,2kinghenryvi,1590 tinkers,1,2kinghenryvi,1590 toasted,1,2kinghenryvi,1590 fowl,1,2kinghenryvi,1590 character'd,1,2kinghenryvi,1590 shallow,1,2kinghenryvi,1590 burying,1,2kinghenryvi,1590 Knowledge,1,2kinghenryvi,1590 spun,1,2kinghenryvi,1590 weeds,1,2kinghenryvi,1590 paly,1,2kinghenryvi,1590 peroration,1,2kinghenryvi,1590 repeal,1,2kinghenryvi,1590 Continue,1,2kinghenryvi,1590 expend,1,2kinghenryvi,1590 Trumpets,1,2kinghenryvi,1590 signal,1,2kinghenryvi,1590 strings,1,2kinghenryvi,1590 Rear,1,2kinghenryvi,1590 shut,1,2kinghenryvi,1590 cited,1,2kinghenryvi,1590 Full,1,2kinghenryvi,1590 brainpan,1,2kinghenryvi,1590 lengthen,1,2kinghenryvi,1590 consult,1,2kinghenryvi,1590 feasted,1,2kinghenryvi,1590 forts,1,2kinghenryvi,1590 protects,1,2kinghenryvi,1590 school,1,2kinghenryvi,1590 sweetest,1,2kinghenryvi,1590 provided,1,2kinghenryvi,1590 Calaber,1,2kinghenryvi,1590 wisdoms,1,2kinghenryvi,1590 examine,1,2kinghenryvi,1590 excuse,1,2kinghenryvi,1590 sucking,1,2kinghenryvi,1590 pluck,1,2kinghenryvi,1590 enticing,1,2kinghenryvi,1590 course,1,2kinghenryvi,1590 expect,1,2kinghenryvi,1590 virginal,1,2kinghenryvi,1590 She's,1,2kinghenryvi,1590 majesty's,1,2kinghenryvi,1590 refused,1,2kinghenryvi,1590 culpable,1,2kinghenryvi,1590 brothers,1,2kinghenryvi,1590 form,1,2kinghenryvi,1590 hammering,1,2kinghenryvi,1590 hawk,1,2kinghenryvi,1590 plum,1,2kinghenryvi,1590 kingdoms,1,2kinghenryvi,1590 redeemed,1,2kinghenryvi,1590 forefathers,1,2kinghenryvi,1590 avenged,1,2kinghenryvi,1590 pair,1,2kinghenryvi,1590 courts,1,2kinghenryvi,1590 neglect,1,2kinghenryvi,1590 hangs,1,2kinghenryvi,1590 delight,1,2kinghenryvi,1590 costs,1,2kinghenryvi,1590 paid,1,2kinghenryvi,1590 southern,1,2kinghenryvi,1590 plotted,1,2kinghenryvi,1590 gins,1,2kinghenryvi,1590 mayor,1,2kinghenryvi,1590 frown,1,2kinghenryvi,1590 Dispatch,1,2kinghenryvi,1590 accordeth,1,2kinghenryvi,1590 scatter,1,2kinghenryvi,1590 shakes,1,2kinghenryvi,1590 deceitful,1,2kinghenryvi,1590 noun,1,2kinghenryvi,1590 Telamonius,1,2kinghenryvi,1590 strays,1,2kinghenryvi,1590 timor,1,2kinghenryvi,1590 pack,1,2kinghenryvi,1590 fool,1,2kinghenryvi,1590 dismal,1,2kinghenryvi,1590 awe,1,2kinghenryvi,1590 except,1,2kinghenryvi,1590 chastity,1,2kinghenryvi,1590 aimest,1,2kinghenryvi,1590 pursuivant,1,2kinghenryvi,1590 vowed,1,2kinghenryvi,1590 gaudy,1,2kinghenryvi,1590 softest,1,2kinghenryvi,1590 contain,1,2kinghenryvi,1590 images,1,2kinghenryvi,1590 saints,1,2kinghenryvi,1590 serpents,1,2kinghenryvi,1590 yard,1,2kinghenryvi,1590 Hot,1,2kinghenryvi,1590 creatures,1,2kinghenryvi,1590 renowned,1,2kinghenryvi,1590 overweening,1,2kinghenryvi,1590 fresh,1,2kinghenryvi,1590 Argo,1,2kinghenryvi,1590 hapless,1,2kinghenryvi,1590 monument,1,2kinghenryvi,1590 gird,1,2kinghenryvi,1590 rightly,1,2kinghenryvi,1590 besotted,1,2kinghenryvi,1590 mayst,1,2kinghenryvi,1590 Men's,1,2kinghenryvi,1590 learnt,1,2kinghenryvi,1590 fold,1,2kinghenryvi,1590 Bewitch,1,2kinghenryvi,1590 White,1,2kinghenryvi,1590 term,1,2kinghenryvi,1590 betide,1,2kinghenryvi,1590 applied,1,2kinghenryvi,1590 Robin,1,2kinghenryvi,1590 hive,1,2kinghenryvi,1590 calculate,1,2kinghenryvi,1590 workmen,1,2kinghenryvi,1590 defended,1,2kinghenryvi,1590 knock,1,2kinghenryvi,1590 ringleader,1,2kinghenryvi,1590 Hart,1,2kinghenryvi,1590 suborned,1,2kinghenryvi,1590 strangeness,1,2kinghenryvi,1590 complices,1,2kinghenryvi,1590 cullions,1,2kinghenryvi,1590 few,1,2kinghenryvi,1590 rabblement,1,2kinghenryvi,1590 vincere,1,2kinghenryvi,1590 o'ergrow,1,2kinghenryvi,1590 lurking,1,2kinghenryvi,1590 array,1,2kinghenryvi,1590 revenging,1,2kinghenryvi,1590 Sometimes,1,2kinghenryvi,1590 naughty,1,2kinghenryvi,1590 spiteful,1,2kinghenryvi,1590 bookish,1,2kinghenryvi,1590 justify,1,2kinghenryvi,1590 porpentine,1,2kinghenryvi,1590 daring,1,2kinghenryvi,1590 Elysium,1,2kinghenryvi,1590 gnarling,1,2kinghenryvi,1590 politicly,1,2kinghenryvi,1590 broil,1,2kinghenryvi,1590 usually,1,2kinghenryvi,1590 displaced,1,2kinghenryvi,1590 tragic,1,2kinghenryvi,1590 Stoop,1,2kinghenryvi,1590 eagles',1,2kinghenryvi,1590 Ask,1,2kinghenryvi,1590 Jesus,1,2kinghenryvi,1590 essentially,1,2kinghenryvi,1590 howling,1,2kinghenryvi,1590 Drones,1,2kinghenryvi,1590 rehearsal,1,2kinghenryvi,1590 jaws,1,2kinghenryvi,1590 capital,1,2kinghenryvi,1590 Ave,1,2kinghenryvi,1590 transporting,1,2kinghenryvi,1590 afear'd,1,2kinghenryvi,1590 Into,1,2kinghenryvi,1590 wreck'd,1,2kinghenryvi,1590 Alive,1,2kinghenryvi,1590 George,1,2kinghenryvi,1590 Between,1,2kinghenryvi,1590 nods,1,2kinghenryvi,1590 execute,1,2kinghenryvi,1590 notable,1,2kinghenryvi,1590 wheels,1,2kinghenryvi,1590 Matthew,1,2kinghenryvi,1590 lacking,1,2kinghenryvi,1590 procession,1,2kinghenryvi,1590 active,1,2kinghenryvi,1590 luce,1,2kinghenryvi,1590 restored,1,2kinghenryvi,1590 room,1,2kinghenryvi,1590 Illyrian,1,2kinghenryvi,1590 nap,1,2kinghenryvi,1590 whispers,1,2kinghenryvi,1590 Kill,1,2kinghenryvi,1590 washes,1,2kinghenryvi,1590 tried,1,2kinghenryvi,1590 discolour'd,1,2kinghenryvi,1590 frozen,1,2kinghenryvi,1590 Bedlam,1,2kinghenryvi,1590 long'd,1,2kinghenryvi,1590 Collected,1,2kinghenryvi,1590 ashy,1,2kinghenryvi,1590 glorify,1,2kinghenryvi,1590 confederacy,1,2kinghenryvi,1590 breeds,1,2kinghenryvi,1590 Despoiled,1,2kinghenryvi,1590 maim,1,2kinghenryvi,1590 Virtue,1,2kinghenryvi,1590 bedchamber,1,2kinghenryvi,1590 maid,1,2kinghenryvi,1590 consider'd,1,2kinghenryvi,1590 venture,1,2kinghenryvi,1590 rigor,1,2kinghenryvi,1590 swallowing,1,2kinghenryvi,1590 unloose,1,2kinghenryvi,1590 Sorry,1,2kinghenryvi,1590 JACK,1,2kinghenryvi,1590 mechanical,1,2kinghenryvi,1590 Repairs,1,2kinghenryvi,1590 Canst,1,2kinghenryvi,1590 shouldst,1,2kinghenryvi,1590 Aldermen,1,2kinghenryvi,1590 barons,1,2kinghenryvi,1590 breathed,1,2kinghenryvi,1590 mischief,1,2kinghenryvi,1590 rose,1,2kinghenryvi,1590 procurator,1,2kinghenryvi,1590 hoarse,1,2kinghenryvi,1590 silence,1,2kinghenryvi,1590 lifeless,1,2kinghenryvi,1590 clamour,1,2kinghenryvi,1590 objections,1,2kinghenryvi,1590 scape,1,2kinghenryvi,1590 retired,1,2kinghenryvi,1590 Knock,1,2kinghenryvi,1590 build,1,2kinghenryvi,1590 dragged,1,2kinghenryvi,1590 couldst,1,2kinghenryvi,1590 built,1,2kinghenryvi,1590 nourish,1,2kinghenryvi,1590 Better,1,2kinghenryvi,1590 unknown,1,2kinghenryvi,1590 repose,1,2kinghenryvi,1590 fourth,1,2kinghenryvi,1590 Hale,1,2kinghenryvi,1590 rooted,1,2kinghenryvi,1590 nose,1,2kinghenryvi,1590 deposed,1,2kinghenryvi,1590 marks,1,2kinghenryvi,1590 envy,1,2kinghenryvi,1590 oughtest,1,2kinghenryvi,1590 joy'd,1,2kinghenryvi,1590 proverb,1,2kinghenryvi,1590 Seven,1,2kinghenryvi,1590 Althaea,1,2kinghenryvi,1590 lack'd,1,2kinghenryvi,1590 furniture,1,2kinghenryvi,1590 beast,1,2kinghenryvi,1590 trencher,1,2kinghenryvi,1590 proceed,1,2kinghenryvi,1590 waked,1,2kinghenryvi,1590 disgraces,1,2kinghenryvi,1590 apostles,1,2kinghenryvi,1590 hire,1,2kinghenryvi,1590 disgrace's,1,2kinghenryvi,1590 imminent,1,2kinghenryvi,1590 blab,1,2kinghenryvi,1590 cedar,1,2kinghenryvi,1590 Henceforth,1,2kinghenryvi,1590 roll'd,1,2kinghenryvi,1590 beats,1,2kinghenryvi,1590 Hang,1,2kinghenryvi,1590 dress,1,2kinghenryvi,1590 restore,1,2kinghenryvi,1590 conquer'd,1,2kinghenryvi,1590 cathedral,1,2kinghenryvi,1590 lording,1,2kinghenryvi,1590 Injurious,1,2kinghenryvi,1590 Asmath,1,2kinghenryvi,1590 circle,1,2kinghenryvi,1590 shaking,1,2kinghenryvi,1590 rate,1,2kinghenryvi,1590 mislike,1,2kinghenryvi,1590 exhort,1,2kinghenryvi,1590 Goffe,1,2kinghenryvi,1590 Was't,1,2kinghenryvi,1590 daintiest,1,2kinghenryvi,1590 Enchased,1,2kinghenryvi,1590 vantages,1,2kinghenryvi,1590 daily,1,2kinghenryvi,1590 entertainment,1,2kinghenryvi,1590 grammar,1,2kinghenryvi,1590 Achilles',1,2kinghenryvi,1590 infancy,1,2kinghenryvi,1590 captivity,1,2kinghenryvi,1590 parley'd,1,2kinghenryvi,1590 remedy,1,2kinghenryvi,1590 rash,1,2kinghenryvi,1590 queens,1,2kinghenryvi,1590 bravely,1,2kinghenryvi,1590 courtship,1,2kinghenryvi,1590 estate,1,2kinghenryvi,1590 bewails,1,2kinghenryvi,1590 scar,1,2kinghenryvi,1590 Cromer,1,2kinghenryvi,1590 blunt,1,2kinghenryvi,1590 ours,1,2kinghenryvi,1590 hawks,1,2kinghenryvi,1590 inns,1,2kinghenryvi,1590 year,1,2kinghenryvi,1590 boys',1,2kinghenryvi,1590 selling,1,2kinghenryvi,1590 Presumptuous,1,2kinghenryvi,1590 kneels,1,2kinghenryvi,1590 dukes,1,2kinghenryvi,1590 bottom,1,2kinghenryvi,1590 burthens,1,2kinghenryvi,1590 meditation,1,2kinghenryvi,1590 chaps,1,2kinghenryvi,1590 dangers,1,2kinghenryvi,1590 treason's,1,2kinghenryvi,1590 wandering,1,2kinghenryvi,1590 smoothing,1,2kinghenryvi,1590 substance,1,2kinghenryvi,1590 charneco,1,2kinghenryvi,1590 annoy,1,2kinghenryvi,1590 Bare,1,2kinghenryvi,1590 visage,1,2kinghenryvi,1590 unburthens,1,2kinghenryvi,1590 charm,1,2kinghenryvi,1590 Embrace,1,2kinghenryvi,1590 shore',1,2kinghenryvi,1590 stays,1,2kinghenryvi,1590 arise,1,2kinghenryvi,1590 progress,1,2kinghenryvi,1590 misdoubt,1,2kinghenryvi,1590 exiled,1,2kinghenryvi,1590 parting,1,2kinghenryvi,1590 coronation,1,2kinghenryvi,1590 lantern,1,2kinghenryvi,1590 Consider,1,2kinghenryvi,1590 loser,1,2kinghenryvi,1590 counsellor,1,2kinghenryvi,1590 who's,1,2kinghenryvi,1590 odious,1,2kinghenryvi,1590 threefold,1,2kinghenryvi,1590 ignorant,1,2kinghenryvi,1590 misery,1,2kinghenryvi,1590 unhappy,1,2kinghenryvi,1590 shared,1,2kinghenryvi,1590 evermore,1,2kinghenryvi,1590 scars,1,2kinghenryvi,1590 places,1,2kinghenryvi,1590 awhile,1,2kinghenryvi,1590 alder,1,2kinghenryvi,1590 madman's,1,2kinghenryvi,1590 freely,1,2kinghenryvi,1590 Doth,1,2kinghenryvi,1590 Fling,1,2kinghenryvi,1590 revive,1,2kinghenryvi,1590 Erect,1,2kinghenryvi,1590 verb,1,2kinghenryvi,1590 injustice,1,2kinghenryvi,1590 Dost,1,2kinghenryvi,1590 Hide,1,2kinghenryvi,1590 transparent,1,2kinghenryvi,1590 rugged,1,2kinghenryvi,1590 ensuing,1,2kinghenryvi,1590 Convey,1,2kinghenryvi,1590 Sea,1,2kinghenryvi,1590 seasons,1,2kinghenryvi,1590 spurs,1,2kinghenryvi,1590 strife,1,2kinghenryvi,1590 Sole,1,2kinghenryvi,1590 lodge,1,2kinghenryvi,1590 doors,1,2kinghenryvi,1590 expired,1,2kinghenryvi,1590 stare,1,2kinghenryvi,1590 'bona,1,2kinghenryvi,1590 Emmanuel,1,2kinghenryvi,1590 blessings,1,2kinghenryvi,1590 mill,1,2kinghenryvi,1590 milk,1,2kinghenryvi,1590 realms,1,2kinghenryvi,1590 nod,1,2kinghenryvi,1590 Say'st,1,2kinghenryvi,1590 probable,1,2kinghenryvi,1590 mightst,1,2kinghenryvi,1590 kisses,1,2kinghenryvi,1590 beautify,1,2kinghenryvi,1590 housekeeping,1,2kinghenryvi,1590 playfellows,1,2kinghenryvi,1590 bosoms,1,2kinghenryvi,1590 Maries,1,2kinghenryvi,1590 foolish,1,2kinghenryvi,1590 Sufficeth,1,2kinghenryvi,1590 Mark'd,1,2kinghenryvi,1590 blinded,1,2kinghenryvi,1590 jars,1,2kinghenryvi,1590 crimeless,1,2kinghenryvi,1590 readily,1,2kinghenryvi,1590 mala,1,2kinghenryvi,1590 Cease,1,2kinghenryvi,1590 wrought,1,2kinghenryvi,1590 remorseful,1,2kinghenryvi,1590 dowry,1,2kinghenryvi,1590 beggar,1,2kinghenryvi,1590 straightway,1,2kinghenryvi,1590 assay'd,1,2kinghenryvi,1590 insolent,1,2kinghenryvi,1590 Britain's,1,2kinghenryvi,1590 procure,1,2kinghenryvi,1590 belong,1,2kinghenryvi,1590 midwife,1,2kinghenryvi,1590 Father,1,2kinghenryvi,1590 untutor'd,1,2kinghenryvi,1590 ghastly,1,2kinghenryvi,1590 Bearing,1,2kinghenryvi,1590 acquit,1,2kinghenryvi,1590 throughout,1,2kinghenryvi,1590 Sort,1,2kinghenryvi,1590 fraudful,1,2kinghenryvi,1590 couronne,1,2kinghenryvi,1590 son's,1,2kinghenryvi,1590 proudest,1,2kinghenryvi,1590 knits,1,2kinghenryvi,1590 blot,1,2kinghenryvi,1590 Honour,1,2kinghenryvi,1590 mistakest,1,2kinghenryvi,1590 misled,1,2kinghenryvi,1590 hawking,1,2kinghenryvi,1590 achieve,1,2kinghenryvi,1590 AEacida,1,2kinghenryvi,1590 Strangers,1,2kinghenryvi,1590 leader,1,2kinghenryvi,1590 believing,1,2kinghenryvi,1590 witches,1,2kinghenryvi,1590 flatter,1,2kinghenryvi,1590 gallowglasses,1,2kinghenryvi,1590 inch,1,2kinghenryvi,1590 chafe,1,2kinghenryvi,1590 Invite,1,2kinghenryvi,1590 wives',1,2kinghenryvi,1590 beside,1,2kinghenryvi,1590 bushes,1,2kinghenryvi,1590 heaven's,1,2kinghenryvi,1590 special,1,2kinghenryvi,1590 fret,1,2kinghenryvi,1590 benefit,1,2kinghenryvi,1590 brethren,1,2kinghenryvi,1590 higher,1,2kinghenryvi,1590 Clip,1,2kinghenryvi,1590 Murder'd,1,2kinghenryvi,1590 plenteous,1,2kinghenryvi,1590 naught,1,2kinghenryvi,1590 worthless,1,2kinghenryvi,1590 reproachfully,1,2kinghenryvi,1590 Made,1,2kinghenryvi,1590 marvel,1,2kinghenryvi,1590 serge,1,2kinghenryvi,1590 accusation,1,2kinghenryvi,1590 scribbled,1,2kinghenryvi,1590 Descend,1,2kinghenryvi,1590 ceremonies,1,2kinghenryvi,1590 horrible,1,2kinghenryvi,1590 oil,1,2kinghenryvi,1590 disguised,1,2kinghenryvi,1590 threatest,1,2kinghenryvi,1590 stake,1,2kinghenryvi,1590 blasted,1,2kinghenryvi,1590 'Aio,1,2kinghenryvi,1590 Rome,1,2kinghenryvi,1590 wet,1,2kinghenryvi,1590 Giving,1,2kinghenryvi,1590 thorough,1,2kinghenryvi,1590 firm,1,2kinghenryvi,1590 Fatal,1,2kinghenryvi,1590 o'clock,1,2kinghenryvi,1590 desired,1,2kinghenryvi,1590 ones,1,2kinghenryvi,1590 stain,1,2kinghenryvi,1590 arrested,1,2kinghenryvi,1590 blameful,1,2kinghenryvi,1590 expedient,1,2kinghenryvi,1590 hooped,1,2kinghenryvi,1590 railing,1,2kinghenryvi,1590 headlong,1,2kinghenryvi,1590 losing,1,2kinghenryvi,1590 knavery,1,2kinghenryvi,1590 trembling,1,2kinghenryvi,1590 taste,1,2kinghenryvi,1590 chines,1,2kinghenryvi,1590 pause,1,2kinghenryvi,1590 overgorged,1,2kinghenryvi,1590 frightful,1,2kinghenryvi,1590 desolation,1,2kinghenryvi,1590 renown,1,2kinghenryvi,1590 claims,1,2kinghenryvi,1590 abase,1,2kinghenryvi,1590 SIMPCOX's,1,2kinghenryvi,1590 They'll,1,2kinghenryvi,1590 unfeeling,1,2kinghenryvi,1590 sale,1,2kinghenryvi,1590 sow'd,1,2kinghenryvi,1590 leanness,1,2kinghenryvi,1590 flies,1,2kinghenryvi,1590 buckram,1,2kinghenryvi,1590 roars,1,2kinghenryvi,1590 pomp,1,2kinghenryvi,1590 safely,1,2kinghenryvi,1590 Main,1,2kinghenryvi,1590 boarded,1,2kinghenryvi,1590 experience,1,2kinghenryvi,1590 discipline,1,2kinghenryvi,1590 sides,1,2kinghenryvi,1590 Deep,1,2kinghenryvi,1590 enters,1,2kinghenryvi,1590 desolate,1,2kinghenryvi,1590 roast,1,2kinghenryvi,1590 persons,1,2kinghenryvi,1590 plasterer,1,2kinghenryvi,1590 Heart's,1,2kinghenryvi,1590 stomach,1,2kinghenryvi,1590 Dread,1,2kinghenryvi,1590 'Twill,1,2kinghenryvi,1590 herbs,1,2kinghenryvi,1590 Aged,1,2kinghenryvi,1590 cure,1,2kinghenryvi,1590 tumultuous,1,2kinghenryvi,1590 youngest,1,2kinghenryvi,1590 woes,1,2kinghenryvi,1590 Moreover,1,2kinghenryvi,1590 troublous,1,2kinghenryvi,1590 lovedst,1,2kinghenryvi,1590 welfare,1,2kinghenryvi,1590 stigmatic,1,2kinghenryvi,1590 provinces,1,2kinghenryvi,1590 binds,1,2kinghenryvi,1590 THOMAS,1,2kinghenryvi,1590 prophesied,1,2kinghenryvi,1590 allay,1,2kinghenryvi,1590 callet,1,2kinghenryvi,1590 bloodless,1,2kinghenryvi,1590 closet,1,2kinghenryvi,1590 Dead,1,2kinghenryvi,1590 recover,1,2kinghenryvi,1590 posted,1,2kinghenryvi,1590 city's,1,2kinghenryvi,1590 bestow'd,1,2kinghenryvi,1590 walks,1,2kinghenryvi,1590 handed,1,2kinghenryvi,1590 happiest,1,2kinghenryvi,1590 saws,1,2kinghenryvi,1590 obsequies,1,2kinghenryvi,1590 offending,1,2kinghenryvi,1590 walls,1,2kinghenryvi,1590 talons,1,2kinghenryvi,1590 damsons,1,2kinghenryvi,1590 unbloodied,1,2kinghenryvi,1590 brigandine,1,2kinghenryvi,1590 falcon,1,2kinghenryvi,1590 choked,1,2kinghenryvi,1590 death's,1,2kinghenryvi,1590 count,1,2kinghenryvi,1590 distress'd,1,2kinghenryvi,1590 remains,1,2kinghenryvi,1590 shamefully,1,2kinghenryvi,1590 Blunt,1,2kinghenryvi,1590 Sleeping,1,2kinghenryvi,1590 trinkets,1,2kinghenryvi,1590 maidenhead,1,2kinghenryvi,1590 birthright,1,2kinghenryvi,1590 champion,1,2kinghenryvi,1590 protection,1,2kinghenryvi,1590 humility,1,2kinghenryvi,1590 burthen,1,2kinghenryvi,1590 invincible,1,2kinghenryvi,1590 repairing,1,2kinghenryvi,1590 copies,1,2kinghenryvi,1590 Lacies,1,2kinghenryvi,1590 dust,1,2kinghenryvi,1590 vow'd,1,2kinghenryvi,1590 called,1,2kinghenryvi,1590 Think,1,2kinghenryvi,1590 stiff,1,2kinghenryvi,1590 stumbling,1,2kinghenryvi,1590 'The,1,2kinghenryvi,1590 Throw,1,2kinghenryvi,1590 flourish,1,2kinghenryvi,1590 linger,1,2kinghenryvi,1590 driven,1,2kinghenryvi,1590 rise,1,2kinghenryvi,1590 Agrees,1,2kinghenryvi,1590 heave,1,2kinghenryvi,1590 raven's,1,2kinghenryvi,1590 Hangs,1,2kinghenryvi,1590 receive,1,2kinghenryvi,1590 'To,1,2kinghenryvi,1590 perforce,1,2kinghenryvi,1590 standard,1,2kinghenryvi,1590 governors,1,2kinghenryvi,1590 Reprove,1,2kinghenryvi,1590 animis,1,2kinghenryvi,1590 Irishmen,1,2kinghenryvi,1590 threatens,1,2kinghenryvi,1590 Contemptuous,1,2kinghenryvi,1590 handle,1,2kinghenryvi,1590 graceless,1,2kinghenryvi,1590 assure,1,2kinghenryvi,1590 brother's,1,2kinghenryvi,1590 Outcast,1,2kinghenryvi,1590 ELEANOR,1,2kinghenryvi,1590 hags,1,2kinghenryvi,1590 ends,1,2kinghenryvi,1590 instinct,1,2kinghenryvi,1590 undermine,1,2kinghenryvi,1590 admitted,1,2kinghenryvi,1590 proceeding,1,2kinghenryvi,1590 wont,1,2kinghenryvi,1590 supper,1,2kinghenryvi,1590 villains,1,2kinghenryvi,1590 forfend,1,2kinghenryvi,1590 women's,1,2kinghenryvi,1590 Poison,1,2kinghenryvi,1590 Fourth,1,2kinghenryvi,1590 Ordnance,1,2kinghenryvi,1590 flowering,1,2kinghenryvi,1590 witted,1,2kinghenryvi,1590 breakfast,1,2kinghenryvi,1590 defer,1,2kinghenryvi,1590 cursed,1,2kinghenryvi,1590 bounty,1,2kinghenryvi,1590 Defacing,1,2kinghenryvi,1590 Shame,1,2kinghenryvi,1590 throats,1,2kinghenryvi,1590 Gives,1,2kinghenryvi,1590 Trow'st,1,2kinghenryvi,1590 robb'd,1,2kinghenryvi,1590 Banish,1,2kinghenryvi,1590 Sixth,1,2kinghenryvi,1590 steadier,1,2kinghenryvi,1590 vulgar,1,2kinghenryvi,1590 familiar,1,2kinghenryvi,1590 Romanos,1,2kinghenryvi,1590 anchors,1,2kinghenryvi,1590 requite,1,2kinghenryvi,1590 husbandry,1,2kinghenryvi,1590 agree,1,2kinghenryvi,1590 vengeful,1,2kinghenryvi,1590 faces,1,2kinghenryvi,1590 seize,1,2kinghenryvi,1590 thankfulness,1,2kinghenryvi,1590 Bid,1,2kinghenryvi,1590 penitent,1,2kinghenryvi,1590 Margery,1,2kinghenryvi,1590 served,1,2kinghenryvi,1590 stolest,1,2kinghenryvi,1590 Citizen,1,2kinghenryvi,1590 takes,1,2kinghenryvi,1590 edict,1,2kinghenryvi,1590 conference,1,2kinghenryvi,1590 Mail'd,1,2kinghenryvi,1590 slavery,1,2kinghenryvi,1590 purest,1,2kinghenryvi,1590 prologue,1,2kinghenryvi,1590 graft,1,2kinghenryvi,1590 foreign,1,2kinghenryvi,1590 killing,1,2kinghenryvi,1590 Sharp,1,2kinghenryvi,1590 opposite,1,2kinghenryvi,1590 Servingman,1,2kinghenryvi,1590 compass,1,2kinghenryvi,1590 lopp'd,1,2kinghenryvi,1590 wife's,1,2kinghenryvi,1590 sayst,1,2kinghenryvi,1590 herrings,1,2kinghenryvi,1590 rain,1,2kinghenryvi,1590 sticking,1,2kinghenryvi,1590 baleful,1,2kinghenryvi,1590 unite,1,2kinghenryvi,1590 Red,1,2kinghenryvi,1590 beehives,1,2kinghenryvi,1590 Unsounded,1,2kinghenryvi,1590 sweeps,1,2kinghenryvi,1590 Cobham,1,2kinghenryvi,1590 duly,1,2kinghenryvi,1590 yoke,1,2kinghenryvi,1590 wolf,1,2kinghenryvi,1590 touching,1,2kinghenryvi,1590 drops,1,2kinghenryvi,1590 timely,1,2kinghenryvi,1590 harvest,1,2kinghenryvi,1590 serves,1,2kinghenryvi,1590 Uneath,1,2kinghenryvi,1590 skills,1,2kinghenryvi,1590 Forbear,1,2kinghenryvi,1590 'Invitis,1,2kinghenryvi,1590 asketh,1,2kinghenryvi,1590 followers,1,2kinghenryvi,1590 Noble,1,2kinghenryvi,1590 fail,1,2kinghenryvi,1590 watching,1,2kinghenryvi,1590 prevention,1,2kinghenryvi,1590 mightier,1,2kinghenryvi,1590 grasp,1,2kinghenryvi,1590 Strike,1,2kinghenryvi,1590 Show,1,2kinghenryvi,1590 grieve,1,2kinghenryvi,1590 create,1,2kinghenryvi,1590 clown,1,2kinghenryvi,1590 dispersed,1,2kinghenryvi,1590 cried,1,2kinghenryvi,1590 durst,1,2kinghenryvi,1590 Swear,1,2kinghenryvi,1590 advertised,1,2kinghenryvi,1590 diseases,1,2kinghenryvi,1590 misleader,1,2kinghenryvi,1590 Morisco,1,2kinghenryvi,1590 Thither,1,2kinghenryvi,1590 doublet,1,2kinghenryvi,1590 stolen,1,2kinghenryvi,1590 diamonds,1,2kinghenryvi,1590 Almighty,1,2kinghenryvi,1590 establish,1,2kinghenryvi,1590 utterly,1,2kinghenryvi,1590 cares,1,2kinghenryvi,1590 hitherward,1,2kinghenryvi,1590 cloud,1,2kinghenryvi,1590 distract,1,2kinghenryvi,1590 Undoing,1,2kinghenryvi,1590 palsy,1,2kinghenryvi,1590 Hadst,1,2kinghenryvi,1590 affable,1,2kinghenryvi,1590 commenced,1,2kinghenryvi,1590 Proceed,1,2kinghenryvi,1590 lump,1,2kinghenryvi,1590 quell,1,2kinghenryvi,1590 Shake,1,2kinghenryvi,1590 township,1,2kinghenryvi,1590 discomfit,1,2kinghenryvi,1590 churl,1,2kinghenryvi,1590 race,1,2kinghenryvi,1590 kinsman,1,2kinghenryvi,1590 silly,1,2kinghenryvi,1590 kites,1,2kinghenryvi,1590 scorns,1,2kinghenryvi,1590 worm,1,2kinghenryvi,1590 worn,1,2kinghenryvi,1590 tune,1,2kinghenryvi,1590 indigested,1,2kinghenryvi,1590 threw,1,2kinghenryvi,1590 prostrate,1,2kinghenryvi,1590 clerk,1,2kinghenryvi,1590 brush,1,2kinghenryvi,1590 lodged,1,2kinghenryvi,1590 west,1,2kinghenryvi,1590 clay,1,2kinghenryvi,1590 fie,1,2kinghenryvi,1590 feared,1,2kinghenryvi,1590 fig,1,2kinghenryvi,1590 'em,1,2kinghenryvi,1590 bear's,1,2kinghenryvi,1590 fin,1,2kinghenryvi,1590 returneth,1,2kinghenryvi,1590 endeavour,1,2kinghenryvi,1590 iniquity's,1,2kinghenryvi,1590 minute,1,2kinghenryvi,1590 offices,1,2kinghenryvi,1590 pulled,1,2kinghenryvi,1590 Basimecu,1,2kinghenryvi,1590 fill,1,2kinghenryvi,1590 woods,1,2kinghenryvi,1590 clad,1,2kinghenryvi,1590 savage,1,2kinghenryvi,1590 punish'd,1,2kinghenryvi,1590 Burns,1,2kinghenryvi,1590 particular,1,2kinghenryvi,1590 horn,1,2kinghenryvi,1590 hose,1,2kinghenryvi,1590 bark,1,2kinghenryvi,1590 Steel,1,2kinghenryvi,1590 minded,1,2kinghenryvi,1590 thunder,1,2kinghenryvi,1590 contagious,1,2kinghenryvi,1590 host,1,2kinghenryvi,1590 ta'en,1,2kinghenryvi,1590 shown,1,2kinghenryvi,1590 tail,1,2kinghenryvi,1590 ran'st,1,2kinghenryvi,1590 pocket,1,2kinghenryvi,1590 Received,1,2kinghenryvi,1590 Mother,1,2kinghenryvi,1590 Demanding,1,2kinghenryvi,1590 Jerusalem,1,2kinghenryvi,1590 vex,1,2kinghenryvi,1590 forgets,1,2kinghenryvi,1590 practise,1,2kinghenryvi,1590 prospect,1,2kinghenryvi,1590 mates,1,2kinghenryvi,1590 counterpoised,1,2kinghenryvi,1590 Sicilia,1,2kinghenryvi,1590 wrongfully,1,2kinghenryvi,1590 subtlety,1,2kinghenryvi,1590 whither,1,2kinghenryvi,1590 recoil,1,2kinghenryvi,1590 traitorous,1,2kinghenryvi,1590 opposites,1,2kinghenryvi,1590 scholars,1,2kinghenryvi,1590 ambitiously,1,2kinghenryvi,1590 Knit,1,2kinghenryvi,1590 meaning,1,2kinghenryvi,1590 arouse,1,2kinghenryvi,1590 defamed,1,2kinghenryvi,1590 stinking,1,2kinghenryvi,1590 aunt,1,2kinghenryvi,1590 Cut,1,2kinghenryvi,1590 marcheth,1,2kinghenryvi,1590 fate,1,2kinghenryvi,1590 bane,1,2kinghenryvi,1590 voiding,1,2kinghenryvi,1590 prophets,1,2kinghenryvi,1590 plainness,1,2kinghenryvi,1590 flames,1,2kinghenryvi,1590 Melford,1,2kinghenryvi,1590 hallow'd,1,2kinghenryvi,1590 vital,1,2kinghenryvi,1590 bested,1,2kinghenryvi,1590 mightest,1,2kinghenryvi,1590 cools,1,2kinghenryvi,1590 rising,1,2kinghenryvi,1590 Noise,1,2kinghenryvi,1590 quillets,1,2kinghenryvi,1590 governance,1,2kinghenryvi,1590 hating,1,2kinghenryvi,1590 bill,1,2kinghenryvi,1590 evidence,1,2kinghenryvi,1590 boldly,1,2kinghenryvi,1590 surly,1,2kinghenryvi,1590 drinks,1,2kinghenryvi,1590 middest,1,2kinghenryvi,1590 soul's,1,2kinghenryvi,1590 gallant,1,2kinghenryvi,1590 tale,1,2kinghenryvi,1590 coal,1,2kinghenryvi,1590 predominant,1,2kinghenryvi,1590 lap,1,2kinghenryvi,1590 complaint,1,2kinghenryvi,1590 'Against,1,2kinghenryvi,1590 winners,1,2kinghenryvi,1590 falsely,1,2kinghenryvi,1590 wrested,1,2kinghenryvi,1590 folks,1,2kinghenryvi,1590 affliction,1,2kinghenryvi,1590 rusted,1,2kinghenryvi,1590 provokes,1,2kinghenryvi,1590 whatsoe'er,1,2kinghenryvi,1590 excursions,1,2kinghenryvi,1590 clouted,1,2kinghenryvi,1590 Trust,1,2kinghenryvi,1590 sixth,1,2kinghenryvi,1590 audacious,1,2kinghenryvi,1590 redound,1,2kinghenryvi,1590 asunder,1,2kinghenryvi,1590 Savoy,1,2kinghenryvi,1590 Rather,1,2kinghenryvi,1590 openly,1,2kinghenryvi,1590 shoon,1,2kinghenryvi,1590 shoot,1,2kinghenryvi,1590 pledge,1,2kinghenryvi,1590 shook,1,2kinghenryvi,1590 apron,1,2kinghenryvi,1590 empire,1,2kinghenryvi,1590 Pride,1,2kinghenryvi,1590 sparkling,1,2kinghenryvi,1590 holp,1,2kinghenryvi,1590 clean,1,2kinghenryvi,1590 handicrafts,1,2kinghenryvi,1590 peaceful,1,2kinghenryvi,1590 green,1,2kinghenryvi,1590 populous,1,2kinghenryvi,1590 greet,1,2kinghenryvi,1590 besom,1,2kinghenryvi,1590 pupil,1,2kinghenryvi,1590 garrisons,1,2kinghenryvi,1590 cur,1,2kinghenryvi,1590 giddy,1,2kinghenryvi,1590 follows,1,2kinghenryvi,1590 gaping,1,2kinghenryvi,1590 pangs,1,2kinghenryvi,1590 Who's,1,2kinghenryvi,1590 succors,1,2kinghenryvi,1590 vocation,1,2kinghenryvi,1590 cowards,1,2kinghenryvi,1590 sunder,1,2kinghenryvi,1590 reputing,1,2kinghenryvi,1590 revolt,1,2kinghenryvi,1590 besieged,1,2kinghenryvi,1590 murdering,1,2kinghenryvi,1590 depth,1,2kinghenryvi,1590 discomfited,1,2kinghenryvi,1590 rabble,1,2kinghenryvi,1590 flood,1,2kinghenryvi,1590 waning,1,2kinghenryvi,1590 wondering,1,2kinghenryvi,1590 Wherefore,1,2kinghenryvi,1590 sparkle,1,2kinghenryvi,1590 Rancour,1,2kinghenryvi,1590 slanders,1,2kinghenryvi,1590 favours,1,2kinghenryvi,1590 want'st,1,2kinghenryvi,1590 conjure,1,2kinghenryvi,1590 notwithstanding,1,2kinghenryvi,1590 Stabb'd,1,2kinghenryvi,1590 forbears,1,2kinghenryvi,1590 prayers,1,2kinghenryvi,1590 cleft,1,2kinghenryvi,1590 Envy,1,2kinghenryvi,1590 robes,1,2kinghenryvi,1590 terrors,1,2kinghenryvi,1590 behead,1,2kinghenryvi,1590 cope,1,2kinghenryvi,1590 obligations,1,2kinghenryvi,1590 ignobly,1,2kinghenryvi,1590 plodded,1,2kinghenryvi,1590 approved,1,2kinghenryvi,1590 perfumed,1,2kinghenryvi,1590 boded,1,2kinghenryvi,1590 interest,1,2kinghenryvi,1590 SUFFOLK'S,1,2kinghenryvi,1590 hunt,1,2kinghenryvi,1590 combatants,1,2kinghenryvi,1590 fourteen,1,2kinghenryvi,1590 Causeless,1,2kinghenryvi,1590 cheerful,1,2kinghenryvi,1590 furred,1,2kinghenryvi,1590 Theirs,1,2kinghenryvi,1590 AEolus,1,2kinghenryvi,1590 attendance,1,2kinghenryvi,1590 always,1,2kinghenryvi,1590 tangle,1,2kinghenryvi,1590 winged,1,2kinghenryvi,1590 gardener,1,2kinghenryvi,1590 hamper,1,2kinghenryvi,1590 Blotting,1,2kinghenryvi,1590 breasts,1,2kinghenryvi,1590 low,1,2kinghenryvi,1590 Dartford,1,2kinghenryvi,1590 aloof,1,2kinghenryvi,1590 blabbing,1,2kinghenryvi,1590 drunk,1,2kinghenryvi,1590 meagre,1,2kinghenryvi,1590 babe,1,2kinghenryvi,1590 tugg'd,1,2kinghenryvi,1590 sinking,1,2kinghenryvi,1590 kingdom,1,2kinghenryvi,1590 abrook,1,2kinghenryvi,1590 suits,1,2kinghenryvi,1590 canonized,1,2kinghenryvi,1590 baby,1,2kinghenryvi,1590 goodness,1,2kinghenryvi,1590 priesthood,1,2kinghenryvi,1590 aught,1,2kinghenryvi,1590 drums,1,2kinghenryvi,1590 feathers,1,2kinghenryvi,1590 either,1,2kinghenryvi,1590 feeling,1,2kinghenryvi,1590 confederates,1,2kinghenryvi,1590 decease,1,2kinghenryvi,1590 SUFFOLK's,1,2kinghenryvi,1590 suppress,1,2kinghenryvi,1590 harmful,1,2kinghenryvi,1590 trespass,1,2kinghenryvi,1590 supposed,1,2kinghenryvi,1590 Sylla,1,2kinghenryvi,1590 unkindness,1,2kinghenryvi,1590 Assail,1,2kinghenryvi,1590 ended,1,2kinghenryvi,1590 Ne'er,1,2kinghenryvi,1590 cower'd,1,2kinghenryvi,1590 'Jesu,1,2kinghenryvi,1590 understood,1,2kinghenryvi,1590 others',1,2kinghenryvi,1590 sees,1,2kinghenryvi,1590 Thames,1,2kinghenryvi,1590 Seized,1,2kinghenryvi,1590 condition,1,2kinghenryvi,1590 tells,1,2kinghenryvi,1590 bickerings,1,2kinghenryvi,1590 liking,1,2kinghenryvi,1590 period,1,2kinghenryvi,1590 Patience,1,2kinghenryvi,1590 kennel,1,2kinghenryvi,1590 Sicil,1,2kinghenryvi,1590 thereof,1,2kinghenryvi,1590 harbouring,1,2kinghenryvi,1590 proclaimeth,1,2kinghenryvi,1590 leper,1,2kinghenryvi,1590 aspiring,1,2kinghenryvi,1590 wisdom's,1,2kinghenryvi,1590 witch'd,1,2kinghenryvi,1590 Commentaries,1,2kinghenryvi,1590 troop,1,2kinghenryvi,1590 setting,1,2kinghenryvi,1590 Dido,1,2kinghenryvi,1590 Obscure,1,2kinghenryvi,1590 Nephew,1,2kinghenryvi,1590 Heaping,1,2kinghenryvi,1590 preferment,1,2kinghenryvi,1590 espoused,1,2kinghenryvi,1590 chequer'd,1,2kinghenryvi,1590 sacred,1,2kinghenryvi,1590 Seal,1,2kinghenryvi,1590 basilisks,1,2kinghenryvi,1590 lightens,1,2kinghenryvi,1590 Gentlemen,1,2kinghenryvi,1590 felonious,1,2kinghenryvi,1590 dispense,1,2kinghenryvi,1590 pledges,1,2kinghenryvi,1590 Obey,1,2kinghenryvi,1590 He'll,1,2kinghenryvi,1590 avoid,1,2kinghenryvi,1590 Abbey,1,2kinghenryvi,1590 downright,1,2kinghenryvi,1590 Know,1,2kinghenryvi,1590 regal,1,2kinghenryvi,1590 Through,1,2kinghenryvi,1590 blame,1,2kinghenryvi,1590 Deliver,1,2kinghenryvi,1590 chests,1,2kinghenryvi,1590 o'erweening,1,2kinghenryvi,1590 revelling,1,2kinghenryvi,1590 curtain,1,2kinghenryvi,1590 bait,1,2kinghenryvi,1590 Cades,1,2kinghenryvi,1590 recreants,1,2kinghenryvi,1590 Bargulus,1,2kinghenryvi,1590 dislike,1,2kinghenryvi,1590 port,1,2kinghenryvi,1590 Send,1,2kinghenryvi,1590 George's,1,2kinghenryvi,1590 caudle,1,2kinghenryvi,1590 parentage,1,2kinghenryvi,1590 secure,1,2kinghenryvi,1590 self,1,2kinghenryvi,1590 gusts,1,2kinghenryvi,1590 Gelidus,1,2kinghenryvi,1590 uncover'd,1,2kinghenryvi,1590 according,1,2kinghenryvi,1590 raven,1,2kinghenryvi,1590 ravenous,1,2kinghenryvi,1590 bee's,1,2kinghenryvi,1590 Close,1,2kinghenryvi,1590 remorseless,1,2kinghenryvi,1590 Loather,1,2kinghenryvi,1590 blank,1,2kinghenryvi,1590 post,1,2kinghenryvi,1590 les,1,2kinghenryvi,1590 see'st,1,2kinghenryvi,1590 gloss,1,2kinghenryvi,1590 leg,1,2kinghenryvi,1590 contusions,1,2kinghenryvi,1590 enclosing,1,2kinghenryvi,1590 Mover,1,2kinghenryvi,1590 exorcisms,1,2kinghenryvi,1590 ghosts,1,2kinghenryvi,1590 grieves,1,2kinghenryvi,1590 ordain'd,1,2kinghenryvi,1590 Glendower,1,2kinghenryvi,1590 Climbing,1,2kinghenryvi,1590 bade,1,2kinghenryvi,1590 nurse,1,2kinghenryvi,1590 Roman,1,2kinghenryvi,1590 slough,1,2kinghenryvi,1590 would'st,1,2kinghenryvi,1590 greeting,1,2kinghenryvi,1590 judgest,1,2kinghenryvi,1590 howl,1,2kinghenryvi,1590 trap,1,2kinghenryvi,1590 sullen,1,2kinghenryvi,1590 injured,1,2kinghenryvi,1590 statue,1,2kinghenryvi,1590 Delivered,1,2kinghenryvi,1590 blast,1,2kinghenryvi,1590 passionate,1,2kinghenryvi,1590 inflict,1,2kinghenryvi,1590 bolder,1,2kinghenryvi,1590 conferr'd,1,2kinghenryvi,1590 merchant,1,2kinghenryvi,1590 coin,1,2kinghenryvi,1590 crooked,1,2kinghenryvi,1590 master's,1,2kinghenryvi,1590 sheets,1,2kinghenryvi,1590 Beldam,1,2kinghenryvi,1590 bags,1,2kinghenryvi,1590 pope,1,2kinghenryvi,1590 stormy,1,2kinghenryvi,1590 deathsman,1,2kinghenryvi,1590 controlling,1,2kinghenryvi,1590 Best's,1,2kinghenryvi,1590 invented,1,2kinghenryvi,1590 bearest,1,2kinghenryvi,1590 thread,1,2kinghenryvi,1590 teipsum,1,2kinghenryvi,1590 spider,1,2kinghenryvi,1590 licence,1,2kinghenryvi,1590 conduit,1,2kinghenryvi,1590 choke,1,2kinghenryvi,1590 withstand,1,2kinghenryvi,1590 borrowed,1,2kinghenryvi,1590 persuade,1,2kinghenryvi,1590 Fish,1,2kinghenryvi,1590 Magnus',1,2kinghenryvi,1590 Ring,1,2kinghenryvi,1590 seated,1,2kinghenryvi,1590 'Item,1,2kinghenryvi,1590 allegation,1,2kinghenryvi,1590 Armourer's,1,2kinghenryvi,1590 map,1,2kinghenryvi,1590 cloudy,1,2kinghenryvi,1590 evening,1,2kinghenryvi,1590 wearing,1,2kinghenryvi,1590 writs,1,2kinghenryvi,1590 alter'd,1,2kinghenryvi,1590 sounded,1,2kinghenryvi,1590 revealed,1,2kinghenryvi,1590 abroad,1,2kinghenryvi,1590 splitting,1,2kinghenryvi,1590 thrifty,1,2kinghenryvi,1590 balance,1,2kinghenryvi,1590 unlike,1,2kinghenryvi,1590 revolted,1,2kinghenryvi,1590 future,1,2kinghenryvi,1590 mayor's,1,2kinghenryvi,1590 scum,1,2kinghenryvi,1590 Particularities,1,2kinghenryvi,1590 bishop,1,2kinghenryvi,1590 learn,1,2kinghenryvi,1590 villains',1,2kinghenryvi,1590 starve,1,2kinghenryvi,1590 lease,1,2kinghenryvi,1590 doing,1,2kinghenryvi,1590 Another,1,2kinghenryvi,1590 dismiss'd,1,2kinghenryvi,1590 remember,1,2kinghenryvi,1590 forked,1,2kinghenryvi,1590 defaced,1,2kinghenryvi,1590 warlike,1,2kinghenryvi,1590 impious,1,2kinghenryvi,1590 Sometime,1,2kinghenryvi,1590 chosen,1,2kinghenryvi,1590 wretch's,1,2kinghenryvi,1590 sister,1,2kinghenryvi,1590 met,1,2kinghenryvi,1590 headed,1,2kinghenryvi,1590 defendant,1,2kinghenryvi,1590 leaps,1,2kinghenryvi,1590 lamenting,1,2kinghenryvi,1590 pull'd,1,2kinghenryvi,1590 smooth'st,1,2kinghenryvi,1590 stirrup,1,2kinghenryvi,1590 maces,1,2kinghenryvi,1590 reformation,1,2kinghenryvi,1590 nobody,1,2kinghenryvi,1590 street,1,2kinghenryvi,1590 determine,1,2kinghenryvi,1590 Since,1,2kinghenryvi,1590 seduced,1,2kinghenryvi,1590 burnt,1,2kinghenryvi,1590 supplant,1,2kinghenryvi,1590 gens,1,2kinghenryvi,1590 murder's,1,2kinghenryvi,1590 pleasant,1,2kinghenryvi,1590 Except,1,2kinghenryvi,1590 whip,1,2kinghenryvi,1590 merciful,1,2kinghenryvi,1590 ladies,1,2kinghenryvi,1590 crocodile,1,2kinghenryvi,1590 clothier,1,2kinghenryvi,1590 flew,1,2kinghenryvi,1590 debating,1,2kinghenryvi,1590 Levy,1,2kinghenryvi,1590 thinking,1,2kinghenryvi,1590 Neighbours,1,2kinghenryvi,1590 Meg,1,2kinghenryvi,1590 fashion,1,2kinghenryvi,1590 punishment,1,2kinghenryvi,1590 hastily,1,2kinghenryvi,1590 Tears,1,2kinghenryvi,1590 cardinals,1,2kinghenryvi,1590 Forsooth,1,2kinghenryvi,1590 shearman,1,2kinghenryvi,1590 harmony,1,2kinghenryvi,1590 Frenchwoman,1,2kinghenryvi,1590 inspired,1,2kinghenryvi,1590 envies,1,2kinghenryvi,1590 enjoying,1,2kinghenryvi,1590 homage,1,2kinghenryvi,1590 CADE'S,1,2kinghenryvi,1590 struggling,1,2kinghenryvi,1590 IDEN's,1,2kinghenryvi,1590 capite,1,2kinghenryvi,1590 telling,1,2kinghenryvi,1590 prowess,1,2kinghenryvi,1590 cliffs,1,2kinghenryvi,1590 untainted,1,2kinghenryvi,1590 eunuch,1,2kinghenryvi,1590 directions,1,2kinghenryvi,1590 Respecting,1,2kinghenryvi,1590 grounds,1,2kinghenryvi,1590 flaw,1,2kinghenryvi,1590 flax,1,2kinghenryvi,1590 liquid,1,2kinghenryvi,1590 lath,1,2kinghenryvi,1590 Mounsieur,1,2kinghenryvi,1590 citizens,1,2kinghenryvi,1590 tickle,1,2kinghenryvi,1590 VII,1,2kinghenryvi,1590 burly,1,2kinghenryvi,1590 dishonour'd,1,2kinghenryvi,1590 Looking,1,2kinghenryvi,1590 encroaching,1,2kinghenryvi,1590 betimes,1,2kinghenryvi,1590 muffled,1,2kinghenryvi,1590 baiting,1,2kinghenryvi,1590 Without,1,2kinghenryvi,1590 whet,1,2kinghenryvi,1590 knave's,1,2kinghenryvi,1590 puissance,1,2kinghenryvi,1590 Disdain,1,2kinghenryvi,1590 resembled,1,2kinghenryvi,1590 impart,1,2kinghenryvi,1590 Nevil's,1,2kinghenryvi,1590 were't,1,2kinghenryvi,1590 Lent,1,2kinghenryvi,1590 Holden,1,2kinghenryvi,1590 strange,1,2kinghenryvi,1590 bribes,1,2kinghenryvi,1590 Lend,1,2kinghenryvi,1590 quill'd,1,2kinghenryvi,1590 contend,1,2kinghenryvi,1590 ripen'd,1,2kinghenryvi,1590 oracles,1,2kinghenryvi,1590 Justice,1,2kinghenryvi,1590 mow,1,2kinghenryvi,1590 conflict,1,2kinghenryvi,1590 shrewd,1,2kinghenryvi,1590 Death,1,2kinghenryvi,1590 sentence,1,2kinghenryvi,1590 hired,1,2kinghenryvi,1590 widow,1,2kinghenryvi,1590 inconstancy,1,2kinghenryvi,1590 Priests,1,2kinghenryvi,1590 PLANTAGENET,1,2kinghenryvi,1590 banditto,1,2kinghenryvi,1590 Smooth,1,2kinghenryvi,1590 slay,1,2kinghenryvi,1590 dash,1,2kinghenryvi,1590 wounding,1,2kinghenryvi,1590 Goodman,1,2kinghenryvi,1590 dog,1,2kinghenryvi,1590 asleep,1,2kinghenryvi,1590 honour'd,1,2kinghenryvi,1590 substitute,1,2kinghenryvi,1590 harsh,1,2kinghenryvi,1590 happily,1,2kinghenryvi,1590 mud,1,2kinghenryvi,1590 swallow,1,2kinghenryvi,1590 offender's,1,2kinghenryvi,1590 famish,1,2kinghenryvi,1590 Lest,1,2kinghenryvi,1590 tainture,1,2kinghenryvi,1590 lake,1,2kinghenryvi,1590 Die,1,2kinghenryvi,1590 frame,1,2kinghenryvi,1590 bucks,1,2kinghenryvi,1590 dug,1,2kinghenryvi,1590 aidance,1,2kinghenryvi,1590 'First,1,2kinghenryvi,1590 miseries,1,2kinghenryvi,1590 commandments,1,2kinghenryvi,1590 prelate,1,2kinghenryvi,1590 stinks,1,2kinghenryvi,1590 Lets,1,2kinghenryvi,1590 pent,1,2kinghenryvi,1590 lank,1,2kinghenryvi,1590 bonfires,1,2kinghenryvi,1590 primrose,1,2kinghenryvi,1590 artus,1,2kinghenryvi,1590 globe,1,2kinghenryvi,1590 dry,1,2kinghenryvi,1590 bred,1,2kinghenryvi,1590 mum,1,2kinghenryvi,1590 longboat's,1,2kinghenryvi,1590 blossoms,1,2kinghenryvi,1590 reverend,1,2kinghenryvi,1590 instantly,1,2kinghenryvi,1590 demean,1,2kinghenryvi,1590 DRAMATIS,1,2kinghenryvi,1590 chariot,1,2kinghenryvi,1590 certain,1,2kinghenryvi,1590 shift,1,2kinghenryvi,1590 reverent,1,2kinghenryvi,1590 princes',1,2kinghenryvi,1590 Channel,1,2kinghenryvi,1590 rescue,1,2kinghenryvi,1590 shine,1,2kinghenryvi,1590 flower,1,2kinghenryvi,1590 armed,1,2kinghenryvi,1590 grapple,1,2kinghenryvi,1590 pennyworths,1,2kinghenryvi,1590 Christendom,1,2kinghenryvi,1590 Tom,1,2kinghenryvi,1590 uncivil,1,2kinghenryvi,1590 awkward,1,2kinghenryvi,1590 gnaw,1,2kinghenryvi,1590 Left,1,2kinghenryvi,1590 prevaileth,1,2kinghenryvi,1590 BOTH,1,2kinghenryvi,1590 herald's,1,2kinghenryvi,1590 wizards,1,2kinghenryvi,1590 trees,1,2kinghenryvi,1590 Kneeling,1,2kinghenryvi,1590 Yorks,1,2kinghenryvi,1590 cross,1,2kinghenryvi,1590 smell,1,2kinghenryvi,1590 surfeits,1,2kinghenryvi,1590 pirates,1,2kinghenryvi,1590 Parliament,1,2kinghenryvi,1590 encountered,1,2kinghenryvi,1590 dastards,1,2kinghenryvi,1590 Ascanius,1,2kinghenryvi,1590 stings,1,2kinghenryvi,1590 private,1,2kinghenryvi,1590 Fain,1,2kinghenryvi,1590 dauphin,1,2kinghenryvi,1590 reconcile,1,2kinghenryvi,1590 scales,1,2kinghenryvi,1590 slip,1,2kinghenryvi,1590 stomachs,1,2kinghenryvi,1590 pronounce,1,2kinghenryvi,1590 behoof,1,2kinghenryvi,1590 blasphemy,1,2kinghenryvi,1590 mutual,1,2kinghenryvi,1590 Unlike,1,2kinghenryvi,1590 Disturb,1,2kinghenryvi,1590 choicely,1,2kinghenryvi,1590 earth's,1,2kinghenryvi,1590 spectacle,1,2kinghenryvi,1590 shire,1,2kinghenryvi,1590 adjudged,1,2kinghenryvi,1590 striving,1,2kinghenryvi,1590 majestas,1,2kinghenryvi,1590 shirt,1,2kinghenryvi,1590 'mongst,1,2kinghenryvi,1590 Clapping,1,2kinghenryvi,1590 flattering,1,2kinghenryvi,1590 await,1,2kinghenryvi,1590 suffocate,1,2kinghenryvi,1590 undertake,1,2kinghenryvi,1590 hatches,1,2kinghenryvi,1590 hatchet,1,2kinghenryvi,1590 sands,1,2kinghenryvi,1590 dim,1,2kinghenryvi,1590 share,1,2kinghenryvi,1590 dissemble,1,2kinghenryvi,1590 dig,1,2kinghenryvi,1590 gazer,1,2kinghenryvi,1590 steadfast,1,2kinghenryvi,1590 exempt,1,2kinghenryvi,1590 corrosive,1,2kinghenryvi,1590 vanquish,1,2kinghenryvi,1590 hedge,1,2kinghenryvi,1590 servant's,1,2kinghenryvi,1590 summer,1,2kinghenryvi,1590 daughters,1,2kinghenryvi,1590 Drove,1,2kinghenryvi,1590 claimed,1,2kinghenryvi,1590 dimm'd,2,2kinghenryvi,1590 Frenchmen,2,2kinghenryvi,1590 troubled,2,2kinghenryvi,1590 parchment,2,2kinghenryvi,1590 tomb,2,2kinghenryvi,1590 ignorance,2,2kinghenryvi,1590 swords,2,2kinghenryvi,1590 snared,2,2kinghenryvi,1590 lawyers,2,2kinghenryvi,1590 join,2,2kinghenryvi,1590 advice,2,2kinghenryvi,1590 Philippe,2,2kinghenryvi,1590 jar,2,2kinghenryvi,1590 beadle,2,2kinghenryvi,1590 tremble,2,2kinghenryvi,1590 treasury,2,2kinghenryvi,1590 GEORGE,2,2kinghenryvi,1590 wish'd,2,2kinghenryvi,1590 burn'd,2,2kinghenryvi,1590 reign'd,2,2kinghenryvi,1590 traitor's,2,2kinghenryvi,1590 depose,2,2kinghenryvi,1590 Join,2,2kinghenryvi,1590 torn,2,2kinghenryvi,1590 advantage,2,2kinghenryvi,1590 brows,2,2kinghenryvi,1590 GLOUCESTER'S,2,2kinghenryvi,1590 haste,2,2kinghenryvi,1590 purge,2,2kinghenryvi,1590 Tours,2,2kinghenryvi,1590 resign,2,2kinghenryvi,1590 assured,2,2kinghenryvi,1590 shoulders,2,2kinghenryvi,1590 easily,2,2kinghenryvi,1590 express,2,2kinghenryvi,1590 whips,2,2kinghenryvi,1590 held,2,2kinghenryvi,1590 commotion,2,2kinghenryvi,1590 Never,2,2kinghenryvi,1590 truly,2,2kinghenryvi,1590 Must,2,2kinghenryvi,1590 Despite,2,2kinghenryvi,1590 groan,2,2kinghenryvi,1590 trunk,2,2kinghenryvi,1590 halters,2,2kinghenryvi,1590 Citizens,2,2kinghenryvi,1590 whipped,2,2kinghenryvi,1590 Far,2,2kinghenryvi,1590 rid,2,2kinghenryvi,1590 fought,2,2kinghenryvi,1590 naked,2,2kinghenryvi,1590 hanged,2,2kinghenryvi,1590 summer's,2,2kinghenryvi,1590 maintain,2,2kinghenryvi,1590 strangled,2,2kinghenryvi,1590 signs,2,2kinghenryvi,1590 innocence,2,2kinghenryvi,1590 ravish,2,2kinghenryvi,1590 lies,2,2kinghenryvi,1590 bridle,2,2kinghenryvi,1590 trust,2,2kinghenryvi,1590 contrary,2,2kinghenryvi,1590 Third's,2,2kinghenryvi,1590 Were't,2,2kinghenryvi,1590 wounded,2,2kinghenryvi,1590 earls,2,2kinghenryvi,1590 Married,2,2kinghenryvi,1590 demand,2,2kinghenryvi,1590 Pool,2,2kinghenryvi,1590 spare,2,2kinghenryvi,1590 cast,2,2kinghenryvi,1590 loathsome,2,2kinghenryvi,1590 walking,2,2kinghenryvi,1590 delivered,2,2kinghenryvi,1590 soon,2,2kinghenryvi,1590 sad,2,2kinghenryvi,1590 After,2,2kinghenryvi,1590 jest,2,2kinghenryvi,1590 'What,2,2kinghenryvi,1590 confusion,2,2kinghenryvi,1590 sat,2,2kinghenryvi,1590 years,2,2kinghenryvi,1590 Eleanor's,2,2kinghenryvi,1590 Jove,2,2kinghenryvi,1590 Saunder,2,2kinghenryvi,1590 broken,2,2kinghenryvi,1590 sennet,2,2kinghenryvi,1590 broker,2,2kinghenryvi,1590 factious,2,2kinghenryvi,1590 trumpet,2,2kinghenryvi,1590 toward,2,2kinghenryvi,1590 tremblest,2,2kinghenryvi,1590 Only,2,2kinghenryvi,1590 seemeth,2,2kinghenryvi,1590 golden,2,2kinghenryvi,1590 soil,2,2kinghenryvi,1590 calm,2,2kinghenryvi,1590 calf,2,2kinghenryvi,1590 glass,2,2kinghenryvi,1590 chains,2,2kinghenryvi,1590 soft,2,2kinghenryvi,1590 began,2,2kinghenryvi,1590 paltry,2,2kinghenryvi,1590 soar,2,2kinghenryvi,1590 execution,2,2kinghenryvi,1590 plains,2,2kinghenryvi,1590 waft,2,2kinghenryvi,1590 sums,2,2kinghenryvi,1590 liefest,2,2kinghenryvi,1590 ken,2,2kinghenryvi,1590 'twere,2,2kinghenryvi,1590 bastard,2,2kinghenryvi,1590 walk,2,2kinghenryvi,1590 flying,2,2kinghenryvi,1590 famish'd,2,2kinghenryvi,1590 kneel'd,2,2kinghenryvi,1590 throne,2,2kinghenryvi,1590 suit,2,2kinghenryvi,1590 score,2,2kinghenryvi,1590 stealing,2,2kinghenryvi,1590 birds,2,2kinghenryvi,1590 embrace,2,2kinghenryvi,1590 cradle,2,2kinghenryvi,1590 bringing,2,2kinghenryvi,1590 winds,2,2kinghenryvi,1590 Farewell,2,2kinghenryvi,1590 raised,2,2kinghenryvi,1590 Cheapside,2,2kinghenryvi,1590 Falconers,2,2kinghenryvi,1590 Thump,2,2kinghenryvi,1590 where's,2,2kinghenryvi,1590 livery,2,2kinghenryvi,1590 multitudes,2,2kinghenryvi,1590 beloved,2,2kinghenryvi,1590 gather,2,2kinghenryvi,1590 league,2,2kinghenryvi,1590 esteem,2,2kinghenryvi,1590 vile,2,2kinghenryvi,1590 everlasting,2,2kinghenryvi,1590 Simpcox,2,2kinghenryvi,1590 piece,2,2kinghenryvi,1590 Our,2,2kinghenryvi,1590 henceforward,2,2kinghenryvi,1590 climbing,2,2kinghenryvi,1590 afraid,2,2kinghenryvi,1590 Officers,2,2kinghenryvi,1590 civil,2,2kinghenryvi,1590 Horner,2,2kinghenryvi,1590 falls,2,2kinghenryvi,1590 Pardon,2,2kinghenryvi,1590 white,2,2kinghenryvi,1590 thence,2,2kinghenryvi,1590 cries,2,2kinghenryvi,1590 humble,2,2kinghenryvi,1590 elder,2,2kinghenryvi,1590 reverence,2,2kinghenryvi,1590 descent,2,2kinghenryvi,1590 Spare,2,2kinghenryvi,1590 beaten,2,2kinghenryvi,1590 accept,2,2kinghenryvi,1590 Killingworth,2,2kinghenryvi,1590 pinnace,2,2kinghenryvi,1590 weather,2,2kinghenryvi,1590 wine,2,2kinghenryvi,1590 soldier,2,2kinghenryvi,1590 flesh,2,2kinghenryvi,1590 Hence,2,2kinghenryvi,1590 'sallet',2,2kinghenryvi,1590 Street,2,2kinghenryvi,1590 Safer,2,2kinghenryvi,1590 peasants,2,2kinghenryvi,1590 steal,2,2kinghenryvi,1590 edge,2,2kinghenryvi,1590 heaved,2,2kinghenryvi,1590 know'st,2,2kinghenryvi,1590 esquire,2,2kinghenryvi,1590 staying,2,2kinghenryvi,1590 ambassador,2,2kinghenryvi,1590 world's,2,2kinghenryvi,1590 harbour,2,2kinghenryvi,1590 pretty,2,2kinghenryvi,1590 tortured,2,2kinghenryvi,1590 steel,2,2kinghenryvi,1590 There's,2,2kinghenryvi,1590 manly,2,2kinghenryvi,1590 Englishmen,2,2kinghenryvi,1590 tend,2,2kinghenryvi,1590 created,2,2kinghenryvi,1590 hungry,2,2kinghenryvi,1590 grievous,2,2kinghenryvi,1590 Mischance,2,2kinghenryvi,1590 unkind,2,2kinghenryvi,1590 melancholy,2,2kinghenryvi,1590 has,2,2kinghenryvi,1590 Nevils',2,2kinghenryvi,1590 balls,2,2kinghenryvi,1590 marquess,2,2kinghenryvi,1590 Am,2,2kinghenryvi,1590 An,2,2kinghenryvi,1590 packing,2,2kinghenryvi,1590 stubborn,2,2kinghenryvi,1590 music,2,2kinghenryvi,1590 surety,2,2kinghenryvi,1590 hang'd,2,2kinghenryvi,1590 neither,2,2kinghenryvi,1590 daunted,2,2kinghenryvi,1590 box,2,2kinghenryvi,1590 Him,2,2kinghenryvi,1590 Whiles,2,2kinghenryvi,1590 Those,2,2kinghenryvi,1590 alarum,2,2kinghenryvi,1590 Wither,2,2kinghenryvi,1590 blown,2,2kinghenryvi,1590 Still,2,2kinghenryvi,1590 bag,2,2kinghenryvi,1590 inclined,2,2kinghenryvi,1590 Ashford,2,2kinghenryvi,1590 listen,2,2kinghenryvi,1590 brings,2,2kinghenryvi,1590 to't,2,2kinghenryvi,1590 stab,2,2kinghenryvi,1590 Her,2,2kinghenryvi,1590 finds,2,2kinghenryvi,1590 tear,2,2kinghenryvi,1590 WALTER,2,2kinghenryvi,1590 beg,2,2kinghenryvi,1590 fatal,2,2kinghenryvi,1590 vanquished,2,2kinghenryvi,1590 bless,2,2kinghenryvi,1590 owner,2,2kinghenryvi,1590 Sword,2,2kinghenryvi,1590 goods,2,2kinghenryvi,1590 ease,2,2kinghenryvi,1590 east,2,2kinghenryvi,1590 despair,2,2kinghenryvi,1590 droops,2,2kinghenryvi,1590 Is't,2,2kinghenryvi,1590 devotion,2,2kinghenryvi,1590 nobly,2,2kinghenryvi,1590 outlive,2,2kinghenryvi,1590 Charles,2,2kinghenryvi,1590 obey,2,2kinghenryvi,1590 corrupted,2,2kinghenryvi,1590 kiss'd,2,2kinghenryvi,1590 sirs,2,2kinghenryvi,1590 Murder,2,2kinghenryvi,1590 be'st,2,2kinghenryvi,1590 sorry,2,2kinghenryvi,1590 proportion,2,2kinghenryvi,1590 leather,2,2kinghenryvi,1590 imagine,2,2kinghenryvi,1590 behind,2,2kinghenryvi,1590 suffer'd,2,2kinghenryvi,1590 dove,2,2kinghenryvi,1590 salute,2,2kinghenryvi,1590 sounds,2,2kinghenryvi,1590 learned,2,2kinghenryvi,1590 gaze,2,2kinghenryvi,1590 bent,2,2kinghenryvi,1590 treasons,2,2kinghenryvi,1590 imperial,2,2kinghenryvi,1590 Born,2,2kinghenryvi,1590 sumptuous,2,2kinghenryvi,1590 monuments,2,2kinghenryvi,1590 a',2,2kinghenryvi,1590 jewel,2,2kinghenryvi,1590 fifth,2,2kinghenryvi,1590 tedious,2,2kinghenryvi,1590 despite,2,2kinghenryvi,1590 herein,2,2kinghenryvi,1590 Above,2,2kinghenryvi,1590 beer,2,2kinghenryvi,1590 Enough,2,2kinghenryvi,1590 gown,2,2kinghenryvi,1590 Meet,2,2kinghenryvi,1590 headstrong,2,2kinghenryvi,1590 oxen,2,2kinghenryvi,1590 inheritance,2,2kinghenryvi,1590 begin,2,2kinghenryvi,1590 store,2,2kinghenryvi,1590 entertain,2,2kinghenryvi,1590 i',2,2kinghenryvi,1590 breath,2,2kinghenryvi,1590 stay'd,2,2kinghenryvi,1590 forgive,2,2kinghenryvi,1590 Methought,2,2kinghenryvi,1590 resolute,2,2kinghenryvi,1590 gallows,2,2kinghenryvi,1590 yea,2,2kinghenryvi,1590 Fear,2,2kinghenryvi,1590 Petitioners,2,2kinghenryvi,1590 aid,2,2kinghenryvi,1590 Here's,2,2kinghenryvi,1590 wreck,2,2kinghenryvi,1590 stoop,2,2kinghenryvi,1590 tragedy,2,2kinghenryvi,1590 deaf,2,2kinghenryvi,1590 engirt,2,2kinghenryvi,1590 Alexander,2,2kinghenryvi,1590 husband,2,2kinghenryvi,1590 houses,2,2kinghenryvi,1590 forget,2,2kinghenryvi,1590 door,2,2kinghenryvi,1590 ask'd,2,2kinghenryvi,1590 Langley,2,2kinghenryvi,1590 questions,2,2kinghenryvi,1590 month,2,2kinghenryvi,1590 whereof,2,2kinghenryvi,1590 cousin,2,2kinghenryvi,1590 temper,2,2kinghenryvi,1590 cloaks,2,2kinghenryvi,1590 Pernicious,2,2kinghenryvi,1590 glance,2,2kinghenryvi,1590 Lionel,2,2kinghenryvi,1590 stout,2,2kinghenryvi,1590 loud,2,2kinghenryvi,1590 loss,2,2kinghenryvi,1590 Wouldst,2,2kinghenryvi,1590 resolved,2,2kinghenryvi,1590 spent,2,2kinghenryvi,1590 lest,2,2kinghenryvi,1590 less,2,2kinghenryvi,1590 MATTHEW,2,2kinghenryvi,1590 apparel,2,2kinghenryvi,1590 spend,2,2kinghenryvi,1590 act,2,2kinghenryvi,1590 lock'd,2,2kinghenryvi,1590 mischiefs,2,2kinghenryvi,1590 ready,2,2kinghenryvi,1590 subornation,2,2kinghenryvi,1590 pure,2,2kinghenryvi,1590 sun's,2,2kinghenryvi,1590 climb,2,2kinghenryvi,1590 graves,2,2kinghenryvi,1590 reasons,2,2kinghenryvi,1590 Seeing,2,2kinghenryvi,1590 plot,2,2kinghenryvi,1590 Jourdain,2,2kinghenryvi,1590 axe,2,2kinghenryvi,1590 weapon,2,2kinghenryvi,1590 te,2,2kinghenryvi,1590 round,2,2kinghenryvi,1590 Christian,2,2kinghenryvi,1590 owls,2,2kinghenryvi,1590 signify,2,2kinghenryvi,1590 employ'd,2,2kinghenryvi,1590 serpent's,2,2kinghenryvi,1590 shun,2,2kinghenryvi,1590 Lady,2,2kinghenryvi,1590 liberty,2,2kinghenryvi,1590 reach,2,2kinghenryvi,1590 forthcoming,2,2kinghenryvi,1590 four,2,2kinghenryvi,1590 marching,2,2kinghenryvi,1590 whether,2,2kinghenryvi,1590 vengeance,2,2kinghenryvi,1590 weeps,2,2kinghenryvi,1590 prepare,2,2kinghenryvi,1590 Hatfield,2,2kinghenryvi,1590 rack'd,2,2kinghenryvi,1590 ship,2,2kinghenryvi,1590 winter's,2,2kinghenryvi,1590 spear,2,2kinghenryvi,1590 devise,2,2kinghenryvi,1590 twain,2,2kinghenryvi,1590 bosom,2,2kinghenryvi,1590 worldly,2,2kinghenryvi,1590 yielded,2,2kinghenryvi,1590 fall'n,2,2kinghenryvi,1590 fiend,2,2kinghenryvi,1590 duke's,2,2kinghenryvi,1590 Small,2,2kinghenryvi,1590 fond,2,2kinghenryvi,1590 protected,2,2kinghenryvi,1590 Attendant,2,2kinghenryvi,1590 hateth,2,2kinghenryvi,1590 armour,2,2kinghenryvi,1590 She'll,2,2kinghenryvi,1590 chance,2,2kinghenryvi,1590 passengers,2,2kinghenryvi,1590 thanks,2,2kinghenryvi,1590 fet,2,2kinghenryvi,1590 deadly,2,2kinghenryvi,1590 fee,2,2kinghenryvi,1590 beggary,2,2kinghenryvi,1590 native,2,2kinghenryvi,1590 judgment,2,2kinghenryvi,1590 hiss,2,2kinghenryvi,1590 enjoy,2,2kinghenryvi,1590 broke,2,2kinghenryvi,1590 beams,2,2kinghenryvi,1590 nobles,2,2kinghenryvi,1590 watch,2,2kinghenryvi,1590 fan,2,2kinghenryvi,1590 lean,2,2kinghenryvi,1590 Command,2,2kinghenryvi,1590 occasion,2,2kinghenryvi,1590 condemn'd,2,2kinghenryvi,1590 effected,2,2kinghenryvi,1590 keeps,2,2kinghenryvi,1590 moved,2,2kinghenryvi,1590 Armourer,2,2kinghenryvi,1590 report,2,2kinghenryvi,1590 Ten,2,2kinghenryvi,1590 empty,2,2kinghenryvi,1590 reported,2,2kinghenryvi,1590 calm'd,2,2kinghenryvi,1590 Westminster,2,2kinghenryvi,1590 clapp'd,2,2kinghenryvi,1590 note,2,2kinghenryvi,1590 darts,2,2kinghenryvi,1590 almost,2,2kinghenryvi,1590 retreat,2,2kinghenryvi,1590 action,2,2kinghenryvi,1590 wonder,2,2kinghenryvi,1590 penny,2,2kinghenryvi,1590 mounted,2,2kinghenryvi,1590 rout,2,2kinghenryvi,1590 brazen,2,2kinghenryvi,1590 beard,2,2kinghenryvi,1590 affrights,2,2kinghenryvi,1590 churchman,2,2kinghenryvi,1590 descended,2,2kinghenryvi,1590 Clarence',2,2kinghenryvi,1590 Base,2,2kinghenryvi,1590 fails,2,2kinghenryvi,1590 chase,2,2kinghenryvi,1590 wolves,2,2kinghenryvi,1590 young,2,2kinghenryvi,1590 mount,2,2kinghenryvi,1590 mate,2,2kinghenryvi,1590 Set,2,2kinghenryvi,1590 dares,2,2kinghenryvi,1590 grovel,2,2kinghenryvi,1590 Berwick,2,2kinghenryvi,1590 say'st,2,2kinghenryvi,1590 cloak,2,2kinghenryvi,1590 Health,2,2kinghenryvi,1590 child,2,2kinghenryvi,1590 vanquish'd,2,2kinghenryvi,1590 question,2,2kinghenryvi,1590 placed,2,2kinghenryvi,1590 yours,2,2kinghenryvi,1590 mourn,2,2kinghenryvi,1590 discontent,2,2kinghenryvi,1590 duchy,2,2kinghenryvi,1590 mortal,2,2kinghenryvi,1590 Free,2,2kinghenryvi,1590 sheriff,2,2kinghenryvi,1590 Edmund's,2,2kinghenryvi,1590 teeth,2,2kinghenryvi,1590 start,2,2kinghenryvi,1590 flinty,2,2kinghenryvi,1590 sallet,2,2kinghenryvi,1590 AEneas,2,2kinghenryvi,1590 beads,2,2kinghenryvi,1590 didst,2,2kinghenryvi,1590 Could,2,2kinghenryvi,1590 sovereign's,2,2kinghenryvi,1590 mass,2,2kinghenryvi,1590 mark,2,2kinghenryvi,1590 crimson,2,2kinghenryvi,1590 woe,2,2kinghenryvi,1590 slave,2,2kinghenryvi,1590 devils,2,2kinghenryvi,1590 starved,2,2kinghenryvi,1590 craves,2,2kinghenryvi,1590 mournful,2,2kinghenryvi,1590 gates,2,2kinghenryvi,1590 victorious,2,2kinghenryvi,1590 bedlam,2,2kinghenryvi,1590 chide,2,2kinghenryvi,1590 thief,2,2kinghenryvi,1590 mountain,2,2kinghenryvi,1590 peremptory,2,2kinghenryvi,1590 multiplied,2,2kinghenryvi,1590 discharge,2,2kinghenryvi,1590 number,2,2kinghenryvi,1590 Reignier,2,2kinghenryvi,1590 fist,2,2kinghenryvi,1590 letters,2,2kinghenryvi,1590 wealthy,2,2kinghenryvi,1590 behalf,2,2kinghenryvi,1590 suspicion,2,2kinghenryvi,1590 pole,2,2kinghenryvi,1590 opinion,2,2kinghenryvi,1590 GOFFE,2,2kinghenryvi,1590 example,2,2kinghenryvi,1590 salt,2,2kinghenryvi,1590 neck,2,2kinghenryvi,1590 sake,2,2kinghenryvi,1590 Ambitious,2,2kinghenryvi,1590 purchase,2,2kinghenryvi,1590 style,2,2kinghenryvi,1590 Cumberland,2,2kinghenryvi,1590 swain,2,2kinghenryvi,1590 wit,2,2kinghenryvi,1590 Witness,2,2kinghenryvi,1590 privy,2,2kinghenryvi,1590 thoroughly,2,2kinghenryvi,1590 curs,2,2kinghenryvi,1590 fetch,2,2kinghenryvi,1590 faultless,2,2kinghenryvi,1590 loving,2,2kinghenryvi,1590 upright,2,2kinghenryvi,1590 sitting,2,2kinghenryvi,1590 allegiance,2,2kinghenryvi,1590 magistrates,2,2kinghenryvi,1590 dunghill,2,2kinghenryvi,1590 standing,2,2kinghenryvi,1590 Servingmen,2,2kinghenryvi,1590 subtle,2,2kinghenryvi,1590 dusky,2,2kinghenryvi,1590 stick,2,2kinghenryvi,1590 earnest,2,2kinghenryvi,1590 wax,2,2kinghenryvi,1590 believe,2,2kinghenryvi,1590 barbarous,2,2kinghenryvi,1590 prevail,2,2kinghenryvi,1590 commanded,2,2kinghenryvi,1590 intent,2,2kinghenryvi,1590 Mate,2,2kinghenryvi,1590 rags,2,2kinghenryvi,1590 uncurable,2,2kinghenryvi,1590 Knowing,2,2kinghenryvi,1590 Mass,2,2kinghenryvi,1590 spectacles,2,2kinghenryvi,1590 stayed,2,2kinghenryvi,1590 bells,2,2kinghenryvi,1590 Three,2,2kinghenryvi,1590 notice,2,2kinghenryvi,1590 curses,2,2kinghenryvi,1590 surprised,2,2kinghenryvi,1590 fact,2,2kinghenryvi,1590 raging,2,2kinghenryvi,1590 taken,2,2kinghenryvi,1590 marry,2,2kinghenryvi,1590 charges,2,2kinghenryvi,1590 poison,2,2kinghenryvi,1590 weeping,2,2kinghenryvi,1590 dumb,2,2kinghenryvi,1590 haply,2,2kinghenryvi,1590 caterpillars,2,2kinghenryvi,1590 soldiers',2,2kinghenryvi,1590 fro,2,2kinghenryvi,1590 ope,2,2kinghenryvi,1590 whence,2,2kinghenryvi,1590 wrong'd,2,2kinghenryvi,1590 fill'd,2,2kinghenryvi,1590 overcharged,2,2kinghenryvi,1590 gifts,2,2kinghenryvi,1590 glad,2,2kinghenryvi,1590 contempt,2,2kinghenryvi,1590 dispatch'd,2,2kinghenryvi,1590 evil,2,2kinghenryvi,1590 Make,2,2kinghenryvi,1590 cloth,2,2kinghenryvi,1590 giving,2,2kinghenryvi,1590 That's,2,2kinghenryvi,1590 snake,2,2kinghenryvi,1590 foe,2,2kinghenryvi,1590 answers,2,2kinghenryvi,1590 fame,2,2kinghenryvi,1590 humour,2,2kinghenryvi,1590 Rises,2,2kinghenryvi,1590 wounds,2,2kinghenryvi,1590 Naples,2,2kinghenryvi,1590 Sorrow,2,2kinghenryvi,1590 gazing,2,2kinghenryvi,1590 lists,2,2kinghenryvi,1590 profit,2,2kinghenryvi,1590 lordly,2,2kinghenryvi,1590 rich,2,2kinghenryvi,1590 supplications,2,2kinghenryvi,1590 safety,2,2kinghenryvi,1590 bare,2,2kinghenryvi,1590 bite,2,2kinghenryvi,1590 unfold,2,2kinghenryvi,1590 Reading,2,2kinghenryvi,1590 smooth,2,2kinghenryvi,1590 perceive,2,2kinghenryvi,1590 Castle,2,2kinghenryvi,1590 lived,2,2kinghenryvi,1590 tilt,2,2kinghenryvi,1590 censure,2,2kinghenryvi,1590 Foul,2,2kinghenryvi,1590 bird,2,2kinghenryvi,1590 'Prentices,2,2kinghenryvi,1590 strikes,2,2kinghenryvi,1590 public,2,2kinghenryvi,1590 prophesy,2,2kinghenryvi,1590 band,2,2kinghenryvi,1590 bank,2,2kinghenryvi,1590 disorder,2,2kinghenryvi,1590 secrets,2,2kinghenryvi,1590 names,2,2kinghenryvi,1590 dam,2,2kinghenryvi,1590 large,2,2kinghenryvi,1590 fare,2,2kinghenryvi,1590 flock,2,2kinghenryvi,1590 feeble,2,2kinghenryvi,1590 released,2,2kinghenryvi,1590 shepherd,2,2kinghenryvi,1590 is't,2,2kinghenryvi,1590 Caesar,2,2kinghenryvi,1590 coat,2,2kinghenryvi,1590 man's,2,2kinghenryvi,1590 conversed,2,2kinghenryvi,1590 convey,2,2kinghenryvi,1590 perish,2,2kinghenryvi,1590 intolerable,2,2kinghenryvi,1590 carry,2,2kinghenryvi,1590 entering,2,2kinghenryvi,1590 wild,2,2kinghenryvi,1590 holds,2,2kinghenryvi,1590 Lay,2,2kinghenryvi,1590 fertile,2,2kinghenryvi,1590 articles,2,2kinghenryvi,1590 waited,2,2kinghenryvi,1590 famine,2,2kinghenryvi,1590 concluded,2,2kinghenryvi,1590 presumption,2,2kinghenryvi,1590 argument,2,2kinghenryvi,1590 loyal,2,2kinghenryvi,1590 condemn,2,2kinghenryvi,1590 winter,2,2kinghenryvi,1590 resolution,2,2kinghenryvi,1590 seal,2,2kinghenryvi,1590 task,2,2kinghenryvi,1590 choler,2,2kinghenryvi,1590 convenient,2,2kinghenryvi,1590 unmeet,2,2kinghenryvi,1590 seas,2,2kinghenryvi,1590 Troy,2,2kinghenryvi,1590 lovely,2,2kinghenryvi,1590 commission,2,2kinghenryvi,1590 cool,2,2kinghenryvi,1590 ignoble,2,2kinghenryvi,1590 Anne,2,2kinghenryvi,1590 acts,2,2kinghenryvi,1590 weaver,2,2kinghenryvi,1590 seem,2,2kinghenryvi,1590 defend,2,2kinghenryvi,1590 Jesu,2,2kinghenryvi,1590 screech,2,2kinghenryvi,1590 'twixt,2,2kinghenryvi,1590 camest,2,2kinghenryvi,1590 sweep,2,2kinghenryvi,1590 tidings,2,2kinghenryvi,1590 crest,2,2kinghenryvi,1590 Resign,2,2kinghenryvi,1590 bricklayer,2,2kinghenryvi,1590 corn,2,2kinghenryvi,1590 pirate,2,2kinghenryvi,1590 gobbets,2,2kinghenryvi,1590 secrecy,2,2kinghenryvi,1590 Pray,2,2kinghenryvi,1590 English,2,2kinghenryvi,1590 Dick,2,2kinghenryvi,1590 increase,2,2kinghenryvi,1590 heavenly,2,2kinghenryvi,1590 affright,2,2kinghenryvi,1590 'twill,2,2kinghenryvi,1590 term'd,2,2kinghenryvi,1590 countrymen,2,2kinghenryvi,1590 rancorous,2,2kinghenryvi,1590 Sent,2,2kinghenryvi,1590 sell,2,2kinghenryvi,1590 aloud,2,2kinghenryvi,1590 'God,2,2kinghenryvi,1590 Fields,2,2kinghenryvi,1590 oppose,2,2kinghenryvi,1590 Next,2,2kinghenryvi,1590 bleeding,2,2kinghenryvi,1590 led,2,2kinghenryvi,1590 mother's,2,2kinghenryvi,1590 undo,2,2kinghenryvi,1590 duchess',2,2kinghenryvi,1590 sickness,2,2kinghenryvi,1590 purpose,2,2kinghenryvi,1590 triumph,2,2kinghenryvi,1590 Two,2,2kinghenryvi,1590 laws,2,2kinghenryvi,1590 regarded,2,2kinghenryvi,1590 slow,2,2kinghenryvi,1590 commons',2,2kinghenryvi,1590 Nothing,2,2kinghenryvi,1590 slumber,2,2kinghenryvi,1590 lays,2,2kinghenryvi,1590 ignominious,2,2kinghenryvi,1590 Hume's,2,2kinghenryvi,1590 clouds,2,2kinghenryvi,1590 Albion's,2,2kinghenryvi,1590 least,2,2kinghenryvi,1590 Somerset's,2,2kinghenryvi,1590 conduct,2,2kinghenryvi,1590 seldom,2,2kinghenryvi,1590 begins,2,2kinghenryvi,1590 forces,2,2kinghenryvi,1590 wring,2,2kinghenryvi,1590 dealing,2,2kinghenryvi,1590 island,2,2kinghenryvi,1590 lofty,2,2kinghenryvi,1590 Oppose,2,2kinghenryvi,1590 According,2,2kinghenryvi,1590 Rise,2,2kinghenryvi,1590 EARL,2,2kinghenryvi,1590 biting,2,2kinghenryvi,1590 county,2,2kinghenryvi,1590 wound,2,2kinghenryvi,1590 chicken,2,2kinghenryvi,1590 lion,2,2kinghenryvi,1590 amain,2,2kinghenryvi,1590 marriage,2,2kinghenryvi,1590 mourning,2,2kinghenryvi,1590 whiles,2,2kinghenryvi,1590 dismiss,2,2kinghenryvi,1590 sometimes,2,2kinghenryvi,1590 Kneels,2,2kinghenryvi,1590 credit,2,2kinghenryvi,1590 limed,2,2kinghenryvi,1590 virtue,2,2kinghenryvi,1590 sleeping,2,2kinghenryvi,1590 territories,2,2kinghenryvi,1590 severally,2,2kinghenryvi,1590 dukedoms,2,2kinghenryvi,1590 fright,2,2kinghenryvi,1590 peep,2,2kinghenryvi,1590 list,2,2kinghenryvi,1590 eighteen,2,2kinghenryvi,1590 nature,2,2kinghenryvi,1590 books,2,2kinghenryvi,1590 shade,2,2kinghenryvi,1590 numbers,2,2kinghenryvi,1590 appellant,2,2kinghenryvi,1590 judged,2,2kinghenryvi,1590 attend,2,2kinghenryvi,1590 Gaultier,2,2kinghenryvi,1590 due,2,2kinghenryvi,1590 solace,2,2kinghenryvi,1590 sudden,2,2kinghenryvi,1590 catch,2,2kinghenryvi,1590 rocks,2,2kinghenryvi,1590 lame,2,2kinghenryvi,1590 Bring,2,2kinghenryvi,1590 Too,2,2kinghenryvi,1590 fence,2,2kinghenryvi,1590 he'll,2,2kinghenryvi,1590 greatness,2,2kinghenryvi,1590 dew,2,2kinghenryvi,1590 kind,2,2kinghenryvi,1590 Butcher,2,2kinghenryvi,1590 drown'd,2,2kinghenryvi,1590 Large,2,2kinghenryvi,1590 remorse,2,2kinghenryvi,1590 charity,2,2kinghenryvi,1590 gear,2,2kinghenryvi,1590 shape,2,2kinghenryvi,1590 market,2,2kinghenryvi,1590 Thrice,2,2kinghenryvi,1590 sandy,2,2kinghenryvi,1590 crows,2,2kinghenryvi,1590 turn'd,2,2kinghenryvi,1590 sharp,2,2kinghenryvi,1590 kerns,3,2kinghenryvi,1590 heed,3,2kinghenryvi,1590 jet,3,2kinghenryvi,1590 o'er,3,2kinghenryvi,1590 forbid,3,2kinghenryvi,1590 snares,3,2kinghenryvi,1590 advised,3,2kinghenryvi,1590 LORD,3,2kinghenryvi,1590 double,3,2kinghenryvi,1590 disturb,3,2kinghenryvi,1590 business,3,2kinghenryvi,1590 following,3,2kinghenryvi,1590 Fie,3,2kinghenryvi,1590 wicked,3,2kinghenryvi,1590 honours,3,2kinghenryvi,1590 rascal,3,2kinghenryvi,1590 heart's,3,2kinghenryvi,1590 boys,3,2kinghenryvi,1590 rather,3,2kinghenryvi,1590 cardinal's,3,2kinghenryvi,1590 Stay,3,2kinghenryvi,1590 darkness,3,2kinghenryvi,1590 Black,3,2kinghenryvi,1590 ruffian,3,2kinghenryvi,1590 grin,3,2kinghenryvi,1590 sighs,3,2kinghenryvi,1590 Cardinal,3,2kinghenryvi,1590 lowly,3,2kinghenryvi,1590 fury,3,2kinghenryvi,1590 weighty,3,2kinghenryvi,1590 nought,3,2kinghenryvi,1590 laugh,3,2kinghenryvi,1590 prey,3,2kinghenryvi,1590 sort,3,2kinghenryvi,1590 Post,3,2kinghenryvi,1590 supplication,3,2kinghenryvi,1590 joys,3,2kinghenryvi,1590 Would,3,2kinghenryvi,1590 become,3,2kinghenryvi,1590 agreed,3,2kinghenryvi,1590 case,3,2kinghenryvi,1590 breach,3,2kinghenryvi,1590 Soldier,3,2kinghenryvi,1590 strength,3,2kinghenryvi,1590 seven,3,2kinghenryvi,1590 Fellow,3,2kinghenryvi,1590 stock,3,2kinghenryvi,1590 matters,3,2kinghenryvi,1590 grown,3,2kinghenryvi,1590 circumstance,3,2kinghenryvi,1590 Cold,3,2kinghenryvi,1590 drag,3,2kinghenryvi,1590 crying,3,2kinghenryvi,1590 An't,3,2kinghenryvi,1590 limb,3,2kinghenryvi,1590 heat,3,2kinghenryvi,1590 Thomas,3,2kinghenryvi,1590 offenders,3,2kinghenryvi,1590 town,3,2kinghenryvi,1590 paper,3,2kinghenryvi,1590 Methinks,3,2kinghenryvi,1590 blessed,3,2kinghenryvi,1590 bound,3,2kinghenryvi,1590 warrant,3,2kinghenryvi,1590 impossible,3,2kinghenryvi,1590 'twas,3,2kinghenryvi,1590 forsake,3,2kinghenryvi,1590 church,3,2kinghenryvi,1590 murderer,3,2kinghenryvi,1590 Isle,3,2kinghenryvi,1590 counsel,3,2kinghenryvi,1590 countenance,3,2kinghenryvi,1590 stern,3,2kinghenryvi,1590 second,3,2kinghenryvi,1590 looks,3,2kinghenryvi,1590 wings,3,2kinghenryvi,1590 groans,3,2kinghenryvi,1590 doubt,3,2kinghenryvi,1590 bridge,3,2kinghenryvi,1590 Attendants,3,2kinghenryvi,1590 amiss,3,2kinghenryvi,1590 received,3,2kinghenryvi,1590 There,3,2kinghenryvi,1590 fault,3,2kinghenryvi,1590 runs,3,2kinghenryvi,1590 envious,3,2kinghenryvi,1590 commit,3,2kinghenryvi,1590 eldest,3,2kinghenryvi,1590 protectorship,3,2kinghenryvi,1590 princes,3,2kinghenryvi,1590 sup,3,2kinghenryvi,1590 sun,3,2kinghenryvi,1590 feed,3,2kinghenryvi,1590 feel,3,2kinghenryvi,1590 humbly,3,2kinghenryvi,1590 service,3,2kinghenryvi,1590 shrine,3,2kinghenryvi,1590 ward,3,2kinghenryvi,1590 knees,3,2kinghenryvi,1590 Please,3,2kinghenryvi,1590 harmless,3,2kinghenryvi,1590 dies,3,2kinghenryvi,1590 wise,3,2kinghenryvi,1590 Though,3,2kinghenryvi,1590 Cousin,3,2kinghenryvi,1590 murder,3,2kinghenryvi,1590 friend,3,2kinghenryvi,1590 stop,3,2kinghenryvi,1590 voice,3,2kinghenryvi,1590 cunning,3,2kinghenryvi,1590 book,3,2kinghenryvi,1590 Follow,3,2kinghenryvi,1590 conquer,3,2kinghenryvi,1590 sick,3,2kinghenryvi,1590 stir,3,2kinghenryvi,1590 burning,3,2kinghenryvi,1590 Hold,3,2kinghenryvi,1590 spoil,3,2kinghenryvi,1590 quarrel,3,2kinghenryvi,1590 bow,3,2kinghenryvi,1590 eternal,3,2kinghenryvi,1590 deeds,3,2kinghenryvi,1590 itself,3,2kinghenryvi,1590 lands,3,2kinghenryvi,1590 Stand,3,2kinghenryvi,1590 unless,3,2kinghenryvi,1590 On,3,2kinghenryvi,1590 Within,3,2kinghenryvi,1590 hit,3,2kinghenryvi,1590 surely,3,2kinghenryvi,1590 play,3,2kinghenryvi,1590 sport,3,2kinghenryvi,1590 pot,3,2kinghenryvi,1590 quiet,3,2kinghenryvi,1590 valiant,3,2kinghenryvi,1590 weep,3,2kinghenryvi,1590 busy,3,2kinghenryvi,1590 sooner,3,2kinghenryvi,1590 days',3,2kinghenryvi,1590 rebel,3,2kinghenryvi,1590 devilish,3,2kinghenryvi,1590 Sirs,3,2kinghenryvi,1590 Bolingbroke,3,2kinghenryvi,1590 meanest,3,2kinghenryvi,1590 Dies,3,2kinghenryvi,1590 just,3,2kinghenryvi,1590 vows,3,2kinghenryvi,1590 submission,3,2kinghenryvi,1590 preserve,3,2kinghenryvi,1590 longer,3,2kinghenryvi,1590 pitch,3,2kinghenryvi,1590 solemn,3,2kinghenryvi,1590 ghost,3,2kinghenryvi,1590 wiped,3,2kinghenryvi,1590 image,3,2kinghenryvi,1590 confess,3,2kinghenryvi,1590 betray,3,2kinghenryvi,1590 breast,3,2kinghenryvi,1590 raise,3,2kinghenryvi,1590 sheep,3,2kinghenryvi,1590 sheet,3,2kinghenryvi,1590 stood,3,2kinghenryvi,1590 beat,3,2kinghenryvi,1590 murderous,3,2kinghenryvi,1590 stone,3,2kinghenryvi,1590 unworthy,3,2kinghenryvi,1590 victory,3,2kinghenryvi,1590 seeing,3,2kinghenryvi,1590 stain'd,3,2kinghenryvi,1590 thrive,3,2kinghenryvi,1590 accused,3,2kinghenryvi,1590 Clarence,3,2kinghenryvi,1590 ay,3,2kinghenryvi,1590 shed,3,2kinghenryvi,1590 cruelty,3,2kinghenryvi,1590 fixed,3,2kinghenryvi,1590 small,3,2kinghenryvi,1590 o',3,2kinghenryvi,1590 hadst,3,2kinghenryvi,1590 miserable,3,2kinghenryvi,1590 la,3,2kinghenryvi,1590 wherein,3,2kinghenryvi,1590 devil,3,2kinghenryvi,1590 greater,3,2kinghenryvi,1590 men's,3,2kinghenryvi,1590 load,3,2kinghenryvi,1590 thrice,3,2kinghenryvi,1590 isle,3,2kinghenryvi,1590 labouring,3,2kinghenryvi,1590 messenger,3,2kinghenryvi,1590 welcome,3,2kinghenryvi,1590 Gaunt,3,2kinghenryvi,1590 call'd,3,2kinghenryvi,1590 deny,3,2kinghenryvi,1590 drawn,3,2kinghenryvi,1590 praise,3,2kinghenryvi,1590 deaths,3,2kinghenryvi,1590 hate,3,2kinghenryvi,1590 forlorn,3,2kinghenryvi,1590 little,3,2kinghenryvi,1590 fear'd,3,2kinghenryvi,1590 rough,3,2kinghenryvi,1590 secret,3,2kinghenryvi,1590 bought,3,2kinghenryvi,1590 touch,3,2kinghenryvi,1590 trial,3,2kinghenryvi,1590 Art,3,2kinghenryvi,1590 having,3,2kinghenryvi,1590 lead,3,2kinghenryvi,1590 march,3,2kinghenryvi,1590 leap,3,2kinghenryvi,1590 justice,3,2kinghenryvi,1590 equal,3,2kinghenryvi,1590 main,3,2kinghenryvi,1590 shameful,3,2kinghenryvi,1590 DUKE,3,2kinghenryvi,1590 Stafford,3,2kinghenryvi,1590 guiltless,3,2kinghenryvi,1590 thinks,3,2kinghenryvi,1590 hinds,3,2kinghenryvi,1590 Alban,3,2kinghenryvi,1590 below,3,2kinghenryvi,1590 armourer,3,2kinghenryvi,1590 traitorously,3,2kinghenryvi,1590 strike,3,2kinghenryvi,1590 you'll,3,2kinghenryvi,1590 several,3,2kinghenryvi,1590 famous,3,2kinghenryvi,1590 general,3,2kinghenryvi,1590 attire,3,2kinghenryvi,1590 leaves,3,2kinghenryvi,1590 fares,3,2kinghenryvi,1590 Long,3,2kinghenryvi,1590 filth,3,2kinghenryvi,1590 plead,3,2kinghenryvi,1590 already,3,2kinghenryvi,1590 blush,3,2kinghenryvi,1590 chair,3,2kinghenryvi,1590 Uncle,3,2kinghenryvi,1590 courage,3,2kinghenryvi,1590 Protector,3,2kinghenryvi,1590 Southwark,3,2kinghenryvi,1590 apart,3,2kinghenryvi,1590 Third,3,2kinghenryvi,1590 Being,3,2kinghenryvi,1590 sand,3,2kinghenryvi,1590 wrath,3,2kinghenryvi,1590 living,3,2kinghenryvi,1590 affairs,3,2kinghenryvi,1590 pound,3,2kinghenryvi,1590 dishonour,3,2kinghenryvi,1590 banishment,3,2kinghenryvi,1590 fits,3,2kinghenryvi,1590 throw,3,2kinghenryvi,1590 Run,3,2kinghenryvi,1590 five,3,2kinghenryvi,1590 message,3,2kinghenryvi,1590 hateful,3,2kinghenryvi,1590 says,3,2kinghenryvi,1590 knife,3,2kinghenryvi,1590 happiness,3,2kinghenryvi,1590 morrow,3,2kinghenryvi,1590 haughty,3,2kinghenryvi,1590 banish'd,3,2kinghenryvi,1590 waking,3,2kinghenryvi,1590 Nevils,3,2kinghenryvi,1590 relent,3,2kinghenryvi,1590 Alarums,3,2kinghenryvi,1590 flint,3,2kinghenryvi,1590 crown'd,3,2kinghenryvi,1590 heavy,3,2kinghenryvi,1590 duty,3,2kinghenryvi,1590 they'll,3,2kinghenryvi,1590 bereft,3,2kinghenryvi,1590 coming,3,2kinghenryvi,1590 dreams,3,2kinghenryvi,1590 faced,3,2kinghenryvi,1590 nest,3,2kinghenryvi,1590 fox,3,2kinghenryvi,1590 minister,3,2kinghenryvi,1590 fain,3,2kinghenryvi,1590 methinks,3,2kinghenryvi,1590 fit,3,2kinghenryvi,1590 vow,3,2kinghenryvi,1590 Beaufort's,3,2kinghenryvi,1590 thereby,3,2kinghenryvi,1590 lordship,3,2kinghenryvi,1590 worship,3,2kinghenryvi,1590 shows,3,2kinghenryvi,1590 holiness,3,2kinghenryvi,1590 wealth,3,2kinghenryvi,1590 depart,3,2kinghenryvi,1590 betters,3,2kinghenryvi,1590 patient,3,2kinghenryvi,1590 wives,3,2kinghenryvi,1590 EDWARD,3,2kinghenryvi,1590 burgonet,3,2kinghenryvi,1590 watch'd,3,2kinghenryvi,1590 Kentish,3,2kinghenryvi,1590 Welcome,3,2kinghenryvi,1590 kite,3,2kinghenryvi,1590 gentlemen,3,2kinghenryvi,1590 cup,3,2kinghenryvi,1590 short,3,2kinghenryvi,1590 hollow,3,2kinghenryvi,1590 Where's,3,2kinghenryvi,1590 Blackheath,3,2kinghenryvi,1590 Brave,3,2kinghenryvi,1590 abject,3,2kinghenryvi,1590 seat,3,2kinghenryvi,1590 along,3,2kinghenryvi,1590 Prince,3,2kinghenryvi,1590 Murderers,3,2kinghenryvi,1590 crept,3,2kinghenryvi,1590 conclude,3,2kinghenryvi,1590 cost,3,2kinghenryvi,1590 sound,3,2kinghenryvi,1590 Believe,3,2kinghenryvi,1590 loyalty,3,2kinghenryvi,1590 heels,3,2kinghenryvi,1590 wretched,3,2kinghenryvi,1590 bail,3,2kinghenryvi,1590 remove,3,2kinghenryvi,1590 excellence,3,2kinghenryvi,1590 instead,3,2kinghenryvi,1590 until,3,2kinghenryvi,1590 brow,3,2kinghenryvi,1590 ear,3,2kinghenryvi,1590 Chatham,3,2kinghenryvi,1590 petty,3,2kinghenryvi,1590 spirits,3,2kinghenryvi,1590 Paris,3,2kinghenryvi,1590 dread,3,2kinghenryvi,1590 abuse,3,2kinghenryvi,1590 conjurer,3,2kinghenryvi,1590 henceforth,3,2kinghenryvi,1590 Master's,3,2kinghenryvi,1590 Man,3,2kinghenryvi,1590 thither,3,2kinghenryvi,1590 beauty,3,2kinghenryvi,1590 peer,3,2kinghenryvi,1590 silver,3,2kinghenryvi,1590 try,3,2kinghenryvi,1590 silent,3,2kinghenryvi,1590 provide,3,2kinghenryvi,1590 princely,3,2kinghenryvi,1590 dark,3,2kinghenryvi,1590 months,3,2kinghenryvi,1590 slew,3,2kinghenryvi,1590 usurper,3,2kinghenryvi,1590 ambitious,3,2kinghenryvi,1590 False,3,2kinghenryvi,1590 Fight,3,2kinghenryvi,1590 forbear,3,2kinghenryvi,1590 parley,3,2kinghenryvi,1590 breathe,3,2kinghenryvi,1590 intends,3,2kinghenryvi,1590 tread,3,2kinghenryvi,1590 Tut,3,2kinghenryvi,1590 fortunes,3,2kinghenryvi,1590 told,4,2kinghenryvi,1590 V,4,2kinghenryvi,1590 Commons,4,2kinghenryvi,1590 pity,4,2kinghenryvi,1590 red,4,2kinghenryvi,1590 groom,4,2kinghenryvi,1590 treasure,4,2kinghenryvi,1590 'Prentice,4,2kinghenryvi,1590 vain,4,2kinghenryvi,1590 violent,4,2kinghenryvi,1590 calls,4,2kinghenryvi,1590 befall,4,2kinghenryvi,1590 run,4,2kinghenryvi,1590 Whom,4,2kinghenryvi,1590 birth,4,2kinghenryvi,1590 conscience,4,2kinghenryvi,1590 grove,4,2kinghenryvi,1590 bearing,4,2kinghenryvi,1590 Not,4,2kinghenryvi,1590 noise,4,2kinghenryvi,1590 black,4,2kinghenryvi,1590 sit,4,2kinghenryvi,1590 Oft,4,2kinghenryvi,1590 nothing,4,2kinghenryvi,1590 penance,4,2kinghenryvi,1590 'A,4,2kinghenryvi,1590 merry,4,2kinghenryvi,1590 virtuous,4,2kinghenryvi,1590 slaughter,4,2kinghenryvi,1590 deceit,4,2kinghenryvi,1590 Such,4,2kinghenryvi,1590 sworn,4,2kinghenryvi,1590 VAUX,4,2kinghenryvi,1590 necks,4,2kinghenryvi,1590 faults,4,2kinghenryvi,1590 Servant,4,2kinghenryvi,1590 wrong,4,2kinghenryvi,1590 heavens,4,2kinghenryvi,1590 brain,4,2kinghenryvi,1590 guarded,4,2kinghenryvi,1590 Dame,4,2kinghenryvi,1590 above,4,2kinghenryvi,1590 fearful,4,2kinghenryvi,1590 grow,4,2kinghenryvi,1590 ancient,4,2kinghenryvi,1590 wind,4,2kinghenryvi,1590 parliament,4,2kinghenryvi,1590 Might,4,2kinghenryvi,1590 wish,4,2kinghenryvi,1590 bold,4,2kinghenryvi,1590 seest,4,2kinghenryvi,1590 accuse,4,2kinghenryvi,1590 coast,4,2kinghenryvi,1590 Bury,4,2kinghenryvi,1590 office,4,2kinghenryvi,1590 parts,4,2kinghenryvi,1590 spoke,4,2kinghenryvi,1590 colour,4,2kinghenryvi,1590 Do,4,2kinghenryvi,1590 each,4,2kinghenryvi,1590 wherefore,4,2kinghenryvi,1590 drinking,4,2kinghenryvi,1590 What's,4,2kinghenryvi,1590 govern,4,2kinghenryvi,1590 ban,4,2kinghenryvi,1590 bad,4,2kinghenryvi,1590 Walter,4,2kinghenryvi,1590 innocent,4,2kinghenryvi,1590 since,4,2kinghenryvi,1590 arrest,4,2kinghenryvi,1590 Had,4,2kinghenryvi,1590 glorious,4,2kinghenryvi,1590 prove,4,2kinghenryvi,1590 gave,4,2kinghenryvi,1590 burn,4,2kinghenryvi,1590 struck,4,2kinghenryvi,1590 prisoners,4,2kinghenryvi,1590 suddenly,4,2kinghenryvi,1590 badge,4,2kinghenryvi,1590 used,4,2kinghenryvi,1590 grace's,4,2kinghenryvi,1590 storm,4,2kinghenryvi,1590 wretch,4,2kinghenryvi,1590 de,4,2kinghenryvi,1590 left,4,2kinghenryvi,1590 stool,4,2kinghenryvi,1590 legs,4,2kinghenryvi,1590 deal,4,2kinghenryvi,1590 dignity,4,2kinghenryvi,1590 priest,4,2kinghenryvi,1590 doom,4,2kinghenryvi,1590 banished,4,2kinghenryvi,1590 Reads,4,2kinghenryvi,1590 Yes,4,2kinghenryvi,1590 loved,4,2kinghenryvi,1590 forgot,4,2kinghenryvi,1590 valour,4,2kinghenryvi,1590 hardly,4,2kinghenryvi,1590 Whitmore,4,2kinghenryvi,1590 half,4,2kinghenryvi,1590 Call,4,2kinghenryvi,1590 perform'd,4,2kinghenryvi,1590 hang,4,2kinghenryvi,1590 plain,4,2kinghenryvi,1590 ask,4,2kinghenryvi,1590 dreadful,4,2kinghenryvi,1590 proper,4,2kinghenryvi,1590 tyranny,4,2kinghenryvi,1590 Hast,4,2kinghenryvi,1590 willingly,4,2kinghenryvi,1590 change,4,2kinghenryvi,1590 water,4,2kinghenryvi,1590 castles,4,2kinghenryvi,1590 Peace,4,2kinghenryvi,1590 tender,4,2kinghenryvi,1590 traitors,4,2kinghenryvi,1590 powers,4,2kinghenryvi,1590 Some,4,2kinghenryvi,1590 prize,4,2kinghenryvi,1590 Makes,4,2kinghenryvi,1590 Roger,4,2kinghenryvi,1590 'gainst,4,2kinghenryvi,1590 skin,4,2kinghenryvi,1590 there's,4,2kinghenryvi,1590 coward,4,2kinghenryvi,1590 because,4,2kinghenryvi,1590 greatest,4,2kinghenryvi,1590 Stanley,4,2kinghenryvi,1590 trouble,4,2kinghenryvi,1590 diadem,4,2kinghenryvi,1590 Townsman,4,2kinghenryvi,1590 commonweal,4,2kinghenryvi,1590 third,4,2kinghenryvi,1590 beseech,4,2kinghenryvi,1590 protect,4,2kinghenryvi,1590 torture,4,2kinghenryvi,1590 Can,4,2kinghenryvi,1590 danger,4,2kinghenryvi,1590 forward,4,2kinghenryvi,1590 serve,4,2kinghenryvi,1590 multitude,4,2kinghenryvi,1590 earthly,4,2kinghenryvi,1590 knight,4,2kinghenryvi,1590 consent,4,2kinghenryvi,1590 hundred,4,2kinghenryvi,1590 went,4,2kinghenryvi,1590 grass,4,2kinghenryvi,1590 guilty,4,2kinghenryvi,1590 judge,4,2kinghenryvi,1590 fortune,4,2kinghenryvi,1590 pleased,4,2kinghenryvi,1590 Sweet,4,2kinghenryvi,1590 married,4,2kinghenryvi,1590 hour,4,2kinghenryvi,1590 reproach,4,2kinghenryvi,1590 gentleman,4,2kinghenryvi,1590 lay,4,2kinghenryvi,1590 shore,4,2kinghenryvi,1590 holy,4,2kinghenryvi,1590 clear,4,2kinghenryvi,1590 streets,4,2kinghenryvi,1590 commonwealth,4,2kinghenryvi,1590 Winchester,4,2kinghenryvi,1590 gives,4,2kinghenryvi,1590 prithee,4,2kinghenryvi,1590 alone,4,2kinghenryvi,1590 captain,4,2kinghenryvi,1590 insolence,4,2kinghenryvi,1590 Mine,4,2kinghenryvi,1590 battle,4,2kinghenryvi,1590 thrust,4,2kinghenryvi,1590 tree,4,2kinghenryvi,1590 entreat,4,2kinghenryvi,1590 return,4,2kinghenryvi,1590 Smithfield,4,2kinghenryvi,1590 goes,4,2kinghenryvi,1590 match,4,2kinghenryvi,1590 March,4,2kinghenryvi,1590 lie,4,2kinghenryvi,1590 mad,4,2kinghenryvi,1590 spite,4,2kinghenryvi,1590 straight,4,2kinghenryvi,1590 murder'd,4,2kinghenryvi,1590 crafty,4,2kinghenryvi,1590 Fifth,4,2kinghenryvi,1590 ragged,4,2kinghenryvi,1590 spring,4,2kinghenryvi,1590 top,4,2kinghenryvi,1590 lamb,4,2kinghenryvi,1590 behold,4,2kinghenryvi,1590 dame,4,2kinghenryvi,1590 neighbour,4,2kinghenryvi,1590 wouldst,4,2kinghenryvi,1590 e'er,4,2kinghenryvi,1590 meet,5,2kinghenryvi,1590 c,5,2kinghenryvi,1590 guilt,5,2kinghenryvi,1590 writ,5,2kinghenryvi,1590 horse,5,2kinghenryvi,1590 rob,5,2kinghenryvi,1590 prisoner,5,2kinghenryvi,1590 drum,5,2kinghenryvi,1590 honourable,5,2kinghenryvi,1590 truth,5,2kinghenryvi,1590 yourself,5,2kinghenryvi,1590 saw,5,2kinghenryvi,1590 brother,5,2kinghenryvi,1590 another,5,2kinghenryvi,1590 came,5,2kinghenryvi,1590 further,5,2kinghenryvi,1590 towns,5,2kinghenryvi,1590 light,5,2kinghenryvi,1590 council,5,2kinghenryvi,1590 worth,5,2kinghenryvi,1590 subject,5,2kinghenryvi,1590 Their,5,2kinghenryvi,1590 worse,5,2kinghenryvi,1590 Normandy,5,2kinghenryvi,1590 common,5,2kinghenryvi,1590 king's,5,2kinghenryvi,1590 feet,5,2kinghenryvi,1590 masters,5,2kinghenryvi,1590 malice,5,2kinghenryvi,1590 rude,5,2kinghenryvi,1590 rule,5,2kinghenryvi,1590 ruler,5,2kinghenryvi,1590 sceptre,5,2kinghenryvi,1590 he's,5,2kinghenryvi,1590 foes,5,2kinghenryvi,1590 At,5,2kinghenryvi,1590 kings,5,2kinghenryvi,1590 OF,5,2kinghenryvi,1590 kept,5,2kinghenryvi,1590 meant,5,2kinghenryvi,1590 whole,5,2kinghenryvi,1590 nobility,5,2kinghenryvi,1590 St,5,2kinghenryvi,1590 Like,5,2kinghenryvi,1590 crowns,5,2kinghenryvi,1590 Soldiers,5,2kinghenryvi,1590 needs,5,2kinghenryvi,1590 Unless,5,2kinghenryvi,1590 dear,5,2kinghenryvi,1590 Myself,5,2kinghenryvi,1590 endure,5,2kinghenryvi,1590 ill,5,2kinghenryvi,1590 lose,5,2kinghenryvi,1590 brought,5,2kinghenryvi,1590 hard,5,2kinghenryvi,1590 pale,5,2kinghenryvi,1590 More,5,2kinghenryvi,1590 Under,5,2kinghenryvi,1590 arm,5,2kinghenryvi,1590 present,5,2kinghenryvi,1590 pain,5,2kinghenryvi,1590 money,5,2kinghenryvi,1590 alive,5,2kinghenryvi,1590 revenge,5,2kinghenryvi,1590 Alarum,5,2kinghenryvi,1590 Sirrah,5,2kinghenryvi,1590 new,5,2kinghenryvi,1590 here's,5,2kinghenryvi,1590 witch,5,2kinghenryvi,1590 Should,5,2kinghenryvi,1590 often,5,2kinghenryvi,1590 nay,5,2kinghenryvi,1590 eye,5,2kinghenryvi,1590 Flourish,5,2kinghenryvi,1590 JOURDAIN,5,2kinghenryvi,1590 sirrah,5,2kinghenryvi,1590 borne,5,2kinghenryvi,1590 Therefore,5,2kinghenryvi,1590 mouth,5,2kinghenryvi,1590 youth,5,2kinghenryvi,1590 towards,5,2kinghenryvi,1590 mild,5,2kinghenryvi,1590 tempest,5,2kinghenryvi,1590 Queen,5,2kinghenryvi,1590 labour,5,2kinghenryvi,1590 need,5,2kinghenryvi,1590 free,5,2kinghenryvi,1590 proved,5,2kinghenryvi,1590 win,5,2kinghenryvi,1590 oft,5,2kinghenryvi,1590 We'll,5,2kinghenryvi,1590 sorrow,5,2kinghenryvi,1590 oath,5,2kinghenryvi,1590 intend,5,2kinghenryvi,1590 found,5,2kinghenryvi,1590 happy,5,2kinghenryvi,1590 hair,5,2kinghenryvi,1590 colours,5,2kinghenryvi,1590 company,5,2kinghenryvi,1590 ride,5,2kinghenryvi,1590 ne'er,5,2kinghenryvi,1590 an't,5,2kinghenryvi,1590 kiss,5,2kinghenryvi,1590 fast,5,2kinghenryvi,1590 trumpets,5,2kinghenryvi,1590 talk,5,2kinghenryvi,1590 aloft,5,2kinghenryvi,1590 dangerous,5,2kinghenryvi,1590 Although,5,2kinghenryvi,1590 hearts,5,2kinghenryvi,1590 swear,5,2kinghenryvi,1590 use,5,2kinghenryvi,1590 True,5,2kinghenryvi,1590 SCALES,5,2kinghenryvi,1590 cry,5,2kinghenryvi,1590 protector's,5,2kinghenryvi,1590 souls,5,2kinghenryvi,1590 whilst,5,2kinghenryvi,1590 Edward,5,2kinghenryvi,1590 prison,5,2kinghenryvi,1590 cold,5,2kinghenryvi,1590 sleep,5,2kinghenryvi,1590 Clerk,5,2kinghenryvi,1590 lips,5,2kinghenryvi,1590 simple,5,2kinghenryvi,1590 wrathful,5,2kinghenryvi,1590 Take,5,2kinghenryvi,1590 without,5,2kinghenryvi,1590 spirit,5,2kinghenryvi,1590 Iden,5,2kinghenryvi,1590 power,5,2kinghenryvi,1590 order,5,2kinghenryvi,1590 JOHN,5,2kinghenryvi,1590 guard,6,2kinghenryvi,1590 speech,6,2kinghenryvi,1590 Tell,6,2kinghenryvi,1590 while,6,2kinghenryvi,1590 brook,6,2kinghenryvi,1590 under,6,2kinghenryvi,1590 mercy,6,2kinghenryvi,1590 reign,6,2kinghenryvi,1590 sold,6,2kinghenryvi,1590 Henry's,6,2kinghenryvi,1590 policy,6,2kinghenryvi,1590 view,6,2kinghenryvi,1590 sin,6,2kinghenryvi,1590 sea,6,2kinghenryvi,1590 fell,6,2kinghenryvi,1590 Pole,6,2kinghenryvi,1590 mother,6,2kinghenryvi,1590 William,6,2kinghenryvi,1590 Mayor,6,2kinghenryvi,1590 turn,6,2kinghenryvi,1590 terms,6,2kinghenryvi,1590 worthy,6,2kinghenryvi,1590 cease,6,2kinghenryvi,1590 kneel,6,2kinghenryvi,1590 died,6,2kinghenryvi,1590 matter,6,2kinghenryvi,1590 While,6,2kinghenryvi,1590 sign,6,2kinghenryvi,1590 canst,6,2kinghenryvi,1590 monstrous,6,2kinghenryvi,1590 got,6,2kinghenryvi,1590 Neighbour,6,2kinghenryvi,1590 deed,6,2kinghenryvi,1590 deep,6,2kinghenryvi,1590 favour,6,2kinghenryvi,1590 Sheriff,6,2kinghenryvi,1590 Master,6,2kinghenryvi,1590 loves,6,2kinghenryvi,1590 hot,6,2kinghenryvi,1590 speaks,6,2kinghenryvi,1590 field,6,2kinghenryvi,1590 prince,6,2kinghenryvi,1590 mighty,6,2kinghenryvi,1590 open,6,2kinghenryvi,1590 point,6,2kinghenryvi,1590 combat,6,2kinghenryvi,1590 SOUTHWELL,6,2kinghenryvi,1590 Against,6,2kinghenryvi,1590 Lords,6,2kinghenryvi,1590 faith,6,2kinghenryvi,1590 hide,6,2kinghenryvi,1590 Beadle,6,2kinghenryvi,1590 knave,6,2kinghenryvi,1590 known,6,2kinghenryvi,1590 issue,6,2kinghenryvi,1590 blow,6,2kinghenryvi,1590 once,6,2kinghenryvi,1590 Were,6,2kinghenryvi,1590 same,6,2kinghenryvi,1590 close,6,2kinghenryvi,1590 sting,6,2kinghenryvi,1590 grave,6,2kinghenryvi,1590 near,6,2kinghenryvi,1590 only,6,2kinghenryvi,1590 war,6,2kinghenryvi,1590 army,6,2kinghenryvi,1590 between,6,2kinghenryvi,1590 ambition,6,2kinghenryvi,1590 rage,6,2kinghenryvi,1590 ransom,6,2kinghenryvi,1590 weapons,6,2kinghenryvi,1590 work,6,2kinghenryvi,1590 palace,6,2kinghenryvi,1590 Unto,6,2kinghenryvi,1590 butcher,6,2kinghenryvi,1590 appointed,6,2kinghenryvi,1590 home,6,2kinghenryvi,1590 cut,6,2kinghenryvi,1590 honest,6,2kinghenryvi,1590 Herald,6,2kinghenryvi,1590 strong,6,2kinghenryvi,1590 forsooth,6,2kinghenryvi,1590 lives,6,2kinghenryvi,1590 person,6,2kinghenryvi,1590 Murderer,6,2kinghenryvi,1590 eat,6,2kinghenryvi,1590 Before,6,2kinghenryvi,1590 fled,6,2kinghenryvi,1590 late,6,2kinghenryvi,1590 May,6,2kinghenryvi,1590 suspect,6,2kinghenryvi,1590 content,6,2kinghenryvi,1590 witness,6,2kinghenryvi,1590 Hume,6,2kinghenryvi,1590 Did,6,2kinghenryvi,1590 Until,6,2kinghenryvi,1590 woman,6,2kinghenryvi,1590 MICHAEL,6,2kinghenryvi,1590 took,7,2kinghenryvi,1590 joy,7,2kinghenryvi,1590 friends,7,2kinghenryvi,1590 sure,7,2kinghenryvi,1590 stands,7,2kinghenryvi,1590 yield,7,2kinghenryvi,1590 within,7,2kinghenryvi,1590 These,7,2kinghenryvi,1590 STANLEY,7,2kinghenryvi,1590 blind,7,2kinghenryvi,1590 title,7,2kinghenryvi,1590 want,7,2kinghenryvi,1590 side,7,2kinghenryvi,1590 force,7,2kinghenryvi,1590 pass,7,2kinghenryvi,1590 yourselves,7,2kinghenryvi,1590 Lancaster,7,2kinghenryvi,1590 Re,7,2kinghenryvi,1590 air,7,2kinghenryvi,1590 that's,7,2kinghenryvi,1590 twenty,7,2kinghenryvi,1590 knee,7,2kinghenryvi,1590 city,7,2kinghenryvi,1590 foot,7,2kinghenryvi,1590 enemies,7,2kinghenryvi,1590 Your,7,2kinghenryvi,1590 indeed,7,2kinghenryvi,1590 none,7,2kinghenryvi,1590 She,7,2kinghenryvi,1590 From,7,2kinghenryvi,1590 garden,7,2kinghenryvi,1590 See,7,2kinghenryvi,1590 very,7,2kinghenryvi,1590 end,7,2kinghenryvi,1590 All,7,2kinghenryvi,1590 dream,7,2kinghenryvi,1590 knows,7,2kinghenryvi,1590 won,7,2kinghenryvi,1590 father's,7,2kinghenryvi,1590 fire,7,2kinghenryvi,1590 duchess,7,2kinghenryvi,1590 thing,7,2kinghenryvi,1590 able,7,2kinghenryvi,1590 pride,7,2kinghenryvi,1590 what's,7,2kinghenryvi,1590 ground,7,2kinghenryvi,1590 wert,7,2kinghenryvi,1590 Earl,7,2kinghenryvi,1590 sent,7,2kinghenryvi,1590 write,7,2kinghenryvi,1590 reward,7,2kinghenryvi,1590 Great,7,2kinghenryvi,1590 Marry,7,2kinghenryvi,1590 Anjou,7,2kinghenryvi,1590 rebels,7,2kinghenryvi,1590 brave,8,2kinghenryvi,1590 darest,8,2kinghenryvi,1590 country,8,2kinghenryvi,1590 Will,8,2kinghenryvi,1590 villain,8,2kinghenryvi,1590 Upon,8,2kinghenryvi,1590 charge,8,2kinghenryvi,1590 sons,8,2kinghenryvi,1590 Give,8,2kinghenryvi,1590 read,8,2kinghenryvi,1590 daughter,8,2kinghenryvi,1590 claim,8,2kinghenryvi,1590 Tower,8,2kinghenryvi,1590 mean,8,2kinghenryvi,1590 French,8,2kinghenryvi,1590 else,8,2kinghenryvi,1590 III,8,2kinghenryvi,1590 pay,8,2kinghenryvi,1590 Gloucester's,8,2kinghenryvi,1590 heads,8,2kinghenryvi,1590 wear,8,2kinghenryvi,1590 put,8,2kinghenryvi,1590 YOUNG,8,2kinghenryvi,1590 rightful,8,2kinghenryvi,1590 earth,8,2kinghenryvi,1590 those,8,2kinghenryvi,1590 Because,8,2kinghenryvi,1590 foul,8,2kinghenryvi,1590 forth,8,2kinghenryvi,1590 Petitioner,8,2kinghenryvi,1590 Are,8,2kinghenryvi,1590 right,8,2kinghenryvi,1590 far,8,2kinghenryvi,1590 quickly,8,2kinghenryvi,1590 Peter,8,2kinghenryvi,1590 Suffolk's,8,2kinghenryvi,1590 high,8,2kinghenryvi,1590 Beaufort,8,2kinghenryvi,1590 Richard,8,2kinghenryvi,1590 presently,8,2kinghenryvi,1590 heard,8,2kinghenryvi,1590 angry,8,2kinghenryvi,1590 miracle,8,2kinghenryvi,1590 word,8,2kinghenryvi,1590 comfort,8,2kinghenryvi,1590 hold,8,2kinghenryvi,1590 pardon,8,2kinghenryvi,1590 Nell,8,2kinghenryvi,1590 Gentleman,8,2kinghenryvi,1590 makes,8,2kinghenryvi,1590 liege,8,2kinghenryvi,1590 laid,8,2kinghenryvi,1590 regent,8,2kinghenryvi,1590 might,8,2kinghenryvi,1590 Alas,9,2kinghenryvi,1590 highness',9,2kinghenryvi,1590 hell,9,2kinghenryvi,1590 every,9,2kinghenryvi,1590 drink,9,2kinghenryvi,1590 enough,9,2kinghenryvi,1590 WILLIAM,9,2kinghenryvi,1590 fellow,9,2kinghenryvi,1590 born,9,2kinghenryvi,1590 after,9,2kinghenryvi,1590 Sound,9,2kinghenryvi,1590 about,9,2kinghenryvi,1590 others,9,2kinghenryvi,1590 rest,9,2kinghenryvi,1590 stay,9,2kinghenryvi,1590 II,9,2kinghenryvi,1590 bed,9,2kinghenryvi,1590 best,9,2kinghenryvi,1590 gold,9,2kinghenryvi,1590 people,9,2kinghenryvi,1590 farewell,9,2kinghenryvi,1590 thyself,9,2kinghenryvi,1590 part,9,2kinghenryvi,1590 though,9,2kinghenryvi,1590 Madam,9,2kinghenryvi,1590 peers,9,2kinghenryvi,1590 gentle,9,2kinghenryvi,1590 bears,9,2kinghenryvi,1590 things,9,2kinghenryvi,1590 soldiers,9,2kinghenryvi,1590 bloody,9,2kinghenryvi,1590 Thus,9,2kinghenryvi,1590 way,9,2kinghenryvi,1590 Even,9,2kinghenryvi,1590 fair,9,2kinghenryvi,1590 find,9,2kinghenryvi,1590 reason,9,2kinghenryvi,1590 wilt,9,2kinghenryvi,1590 seek,9,2kinghenryvi,1590 sweet,9,2kinghenryvi,1590 hither,9,2kinghenryvi,1590 last,9,2kinghenryvi,1590 When,9,2kinghenryvi,1590 dare,9,2kinghenryvi,1590 command,9,2kinghenryvi,1590 kill,9,2kinghenryvi,1590 lady,9,2kinghenryvi,1590 treason,10,2kinghenryvi,1590 Whose,10,2kinghenryvi,1590 gracious,10,2kinghenryvi,1590 sir,10,2kinghenryvi,1590 better,10,2kinghenryvi,1590 cause,10,2kinghenryvi,1590 bring,10,2kinghenryvi,1590 Of,10,2kinghenryvi,1590 means,10,2kinghenryvi,1590 pleasure,10,2kinghenryvi,1590 enter,10,2kinghenryvi,1590 bid,10,2kinghenryvi,1590 curse,10,2kinghenryvi,1590 Spirit,10,2kinghenryvi,1590 Edmund,10,2kinghenryvi,1590 age,10,2kinghenryvi,1590 Jack,10,2kinghenryvi,1590 Eleanor,10,2kinghenryvi,1590 HORNER,10,2kinghenryvi,1590 slain,10,2kinghenryvi,1590 STAFFORD,10,2kinghenryvi,1590 ere,10,2kinghenryvi,1590 Look,10,2kinghenryvi,1590 comes,10,2kinghenryvi,1590 let's,10,2kinghenryvi,1590 get,10,2kinghenryvi,1590 break,10,2kinghenryvi,1590 save,10,2kinghenryvi,1590 next,10,2kinghenryvi,1590 news,10,2kinghenryvi,1590 Till,10,2kinghenryvi,1590 fall,10,2kinghenryvi,1590 old,10,2kinghenryvi,1590 base,10,2kinghenryvi,1590 we'll,10,2kinghenryvi,1590 back,10,2kinghenryvi,1590 seen,10,2kinghenryvi,1590 send,10,2kinghenryvi,1590 together,10,2kinghenryvi,1590 madam,10,2kinghenryvi,1590 land,10,2kinghenryvi,1590 Kent,10,2kinghenryvi,1590 to,522,2kinghenryvi,1590 answer,11,2kinghenryvi,1590 WHITMORE,11,2kinghenryvi,1590 days,11,2kinghenryvi,1590 peace,11,2kinghenryvi,1590 help,11,2kinghenryvi,1590 Wife,11,2kinghenryvi,1590 care,11,2kinghenryvi,1590 highness,11,2kinghenryvi,1590 against,11,2kinghenryvi,1590 Was,11,2kinghenryvi,1590 both,11,2kinghenryvi,1590 commons,11,2kinghenryvi,1590 Go,11,2kinghenryvi,1590 RICHARD,11,2kinghenryvi,1590 Which,11,2kinghenryvi,1590 grief,11,2kinghenryvi,1590 said,11,2kinghenryvi,1590 God's,11,2kinghenryvi,1590 BOLINGBROKE,11,2kinghenryvi,1590 Mortimer,11,2kinghenryvi,1590 show,11,2kinghenryvi,1590 Than,11,2kinghenryvi,1590 Have,11,2kinghenryvi,1590 Ireland,11,2kinghenryvi,1590 many,11,2kinghenryvi,1590 three,11,2kinghenryvi,1590 even,11,2kinghenryvi,1590 ever,11,2kinghenryvi,1590 given,11,2kinghenryvi,1590 presence,11,2kinghenryvi,1590 whom,11,2kinghenryvi,1590 thoughts,11,2kinghenryvi,1590 heir,12,2kinghenryvi,1590 royal,12,2kinghenryvi,1590 SMITH,12,2kinghenryvi,1590 set,12,2kinghenryvi,1590 hence,12,2kinghenryvi,1590 Second,12,2kinghenryvi,1590 Hath,12,2kinghenryvi,1590 through,12,2kinghenryvi,1590 ALL,12,2kinghenryvi,1590 staff,12,2kinghenryvi,1590 Maine,12,2kinghenryvi,1590 Messenger,12,2kinghenryvi,1590 Where,12,2kinghenryvi,1590 HUMPHREY,12,2kinghenryvi,1590 shalt,12,2kinghenryvi,1590 ten,12,2kinghenryvi,1590 other,12,2kinghenryvi,1590 times,13,2kinghenryvi,1590 tears,13,2kinghenryvi,1590 hear,13,2kinghenryvi,1590 BEVIS,13,2kinghenryvi,1590 IV,13,2kinghenryvi,1590 gone,13,2kinghenryvi,1590 dost,13,2kinghenryvi,1590 look,13,2kinghenryvi,1590 hands,13,2kinghenryvi,1590 most,13,2kinghenryvi,1590 keep,13,2kinghenryvi,1590 IDEN,13,2kinghenryvi,1590 Alban's,13,2kinghenryvi,1590 nor,13,2kinghenryvi,1590 stand,13,2kinghenryvi,1590 why,13,2kinghenryvi,1590 court,13,2kinghenryvi,1590 Say,13,2kinghenryvi,1590 SIR,13,2kinghenryvi,1590 till,13,2kinghenryvi,1590 poor,13,2kinghenryvi,1590 Captain,13,2kinghenryvi,1590 true,13,2kinghenryvi,1590 HOLLAND,13,2kinghenryvi,1590 two,13,2kinghenryvi,1590 follow,13,2kinghenryvi,1590 enemy,13,2kinghenryvi,1590 Margaret,14,2kinghenryvi,1590 Humphrey's,14,2kinghenryvi,1590 pray,14,2kinghenryvi,1590 Nor,14,2kinghenryvi,1590 HUME,14,2kinghenryvi,1590 cardinal,14,2kinghenryvi,1590 whose,14,2kinghenryvi,1590 Clifford,14,2kinghenryvi,1590 noble,14,2kinghenryvi,1590 place,14,2kinghenryvi,1590 Sir,14,2kinghenryvi,1590 state,14,2kinghenryvi,1590 still,14,2kinghenryvi,1590 Well,14,2kinghenryvi,1590 face,14,2kinghenryvi,1590 Shall,14,2kinghenryvi,1590 please,14,2kinghenryvi,1590 uncle,14,2kinghenryvi,1590 thank,14,2kinghenryvi,1590 wife,14,2kinghenryvi,1590 Salisbury,14,2kinghenryvi,1590 thought,15,2kinghenryvi,1590 full,15,2kinghenryvi,1590 body,15,2kinghenryvi,1590 PETER,15,2kinghenryvi,1590 proud,15,2kinghenryvi,1590 Saint,15,2kinghenryvi,1590 You,15,2kinghenryvi,1590 arms,15,2kinghenryvi,1590 law,15,2kinghenryvi,1590 thus,15,2kinghenryvi,1590 cannot,15,2kinghenryvi,1590 too,15,2kinghenryvi,1590 Nay,16,2kinghenryvi,1590 much,16,2kinghenryvi,1590 which,16,2kinghenryvi,1590 call,16,2kinghenryvi,1590 honour,16,2kinghenryvi,1590 heaven,16,2kinghenryvi,1590 tell,16,2kinghenryvi,1590 tongue,16,2kinghenryvi,1590 realm,16,2kinghenryvi,1590 lost,16,2kinghenryvi,1590 Yet,16,2kinghenryvi,1590 into,16,2kinghenryvi,1590 mind,16,2kinghenryvi,1590 over,16,2kinghenryvi,1590 could,16,2kinghenryvi,1590 who,16,2kinghenryvi,1590 off,16,2kinghenryvi,1590 own,16,2kinghenryvi,1590 fly,16,2kinghenryvi,1590 hope,16,2kinghenryvi,1590 thousand,16,2kinghenryvi,1590 shame,16,2kinghenryvi,1590 John,17,2kinghenryvi,1590 sight,17,2kinghenryvi,1590 some,17,2kinghenryvi,1590 she,17,2kinghenryvi,1590 false,17,2kinghenryvi,1590 Be,17,2kinghenryvi,1590 Thou,17,2kinghenryvi,1590 England's,17,2kinghenryvi,1590 'Tis,17,2kinghenryvi,1590 first,17,2kinghenryvi,1590 Thy,17,2kinghenryvi,1590 himself,17,2kinghenryvi,1590 world,18,2kinghenryvi,1590 Who,18,2kinghenryvi,1590 fight,18,2kinghenryvi,1590 We,18,2kinghenryvi,1590 love,18,2kinghenryvi,1590 SAY,18,2kinghenryvi,1590 out,18,2kinghenryvi,1590 traitor,18,2kinghenryvi,1590 Away,18,2kinghenryvi,1590 soul,19,2kinghenryvi,1590 Here,19,2kinghenryvi,1590 Ah,19,2kinghenryvi,1590 night,19,2kinghenryvi,1590 long,19,2kinghenryvi,1590 any,19,2kinghenryvi,1590 ye,19,2kinghenryvi,1590 They,19,2kinghenryvi,1590 London,19,2kinghenryvi,1590 father,19,2kinghenryvi,1590 son,20,2kinghenryvi,1590 No,20,2kinghenryvi,1590 doth,20,2kinghenryvi,1590 bear,20,2kinghenryvi,1590 Then,20,2kinghenryvi,1590 thine,20,2kinghenryvi,1590 SIMPCOX,20,2kinghenryvi,1590 time,20,2kinghenryvi,1590 Let,20,2kinghenryvi,1590 eyes,20,2kinghenryvi,1590 house,20,2kinghenryvi,1590 Buckingham,21,2kinghenryvi,1590 been,21,2kinghenryvi,1590 done,21,2kinghenryvi,1590 speak,21,2kinghenryvi,1590 King,21,2kinghenryvi,1590 where,21,2kinghenryvi,1590 again,21,2kinghenryvi,1590 think,21,2kinghenryvi,1590 ',22,2kinghenryvi,1590 must,22,2kinghenryvi,1590 He,22,2kinghenryvi,1590 It,22,2kinghenryvi,1590 down,22,2kinghenryvi,1590 myself,22,2kinghenryvi,1590 before,22,2kinghenryvi,1590 queen,22,2kinghenryvi,1590 sovereign,22,2kinghenryvi,1590 being,22,2kinghenryvi,1590 of,534,2kinghenryvi,1590 sword,23,2kinghenryvi,1590 His,23,2kinghenryvi,1590 therefore,23,2kinghenryvi,1590 protector,23,2kinghenryvi,1590 Is,23,2kinghenryvi,1590 blood,23,2kinghenryvi,1590 dead,23,2kinghenryvi,1590 First,23,2kinghenryvi,1590 In,24,2kinghenryvi,1590 know,24,2kinghenryvi,1590 hand,24,2kinghenryvi,1590 ACT,24,2kinghenryvi,1590 SOMERSET,24,2kinghenryvi,1590 great,24,2kinghenryvi,1590 master,24,2kinghenryvi,1590 leave,24,2kinghenryvi,1590 Now,25,2kinghenryvi,1590 name,25,2kinghenryvi,1590 By,25,2kinghenryvi,1590 give,25,2kinghenryvi,1590 hast,25,2kinghenryvi,1590 men,25,2kinghenryvi,1590 live,25,2kinghenryvi,1590 SCENE,25,2kinghenryvi,1590 words,26,2kinghenryvi,1590 Ay,26,2kinghenryvi,1590 yet,26,2kinghenryvi,1590 majesty,26,2kinghenryvi,1590 This,26,2kinghenryvi,1590 crown,26,2kinghenryvi,1590 DICK,27,2kinghenryvi,1590 Gloucester,27,2kinghenryvi,1590 fear,27,2kinghenryvi,1590 there,27,2kinghenryvi,1590 'tis,27,2kinghenryvi,1590 Cade,27,2kinghenryvi,1590 art,27,2kinghenryvi,1590 duke,27,2kinghenryvi,1590 Aside,28,2kinghenryvi,1590 How,28,2kinghenryvi,1590 Somerset,28,2kinghenryvi,1590 die,28,2kinghenryvi,1590 Come,29,2kinghenryvi,1590 Or,29,2kinghenryvi,1590 Why,30,2kinghenryvi,1590 how,30,2kinghenryvi,1590 made,30,2kinghenryvi,1590 lords,30,2kinghenryvi,1590 DUCHESS,30,2kinghenryvi,1590 England,30,2kinghenryvi,1590 SALISBURY,30,2kinghenryvi,1590 I,542,2kinghenryvi,1590 Warwick,31,2kinghenryvi,1590 grace,31,2kinghenryvi,1590 take,31,2kinghenryvi,1590 Exit,31,2kinghenryvi,1590 then,32,2kinghenryvi,1590 If,32,2kinghenryvi,1590 CLIFFORD,32,2kinghenryvi,1590 Humphrey,33,2kinghenryvi,1590 may,33,2kinghenryvi,1590 did,33,2kinghenryvi,1590 life,34,2kinghenryvi,1590 such,34,2kinghenryvi,1590 So,34,2kinghenryvi,1590 With,35,2kinghenryvi,1590 mine,35,2kinghenryvi,1590 had,36,2kinghenryvi,1590 day,36,2kinghenryvi,1590 A,37,2kinghenryvi,1590 say,37,2kinghenryvi,1590 BUCKINGHAM,37,2kinghenryvi,1590 one,37,2kinghenryvi,1590 see,38,2kinghenryvi,1590 would,38,2kinghenryvi,1590 when,38,2kinghenryvi,1590 here,39,2kinghenryvi,1590 head,39,2kinghenryvi,1590 than,39,2kinghenryvi,1590 come,39,2kinghenryvi,1590 away,40,2kinghenryvi,1590 never,40,2kinghenryvi,1590 Exeunt,40,2kinghenryvi,1590 heart,40,2kinghenryvi,1590 France,41,2kinghenryvi,1590 I'll,41,2kinghenryvi,1590 Henry,41,2kinghenryvi,1590 upon,42,2kinghenryvi,1590 up,43,2kinghenryvi,1590 O,44,2kinghenryvi,1590 us,44,2kinghenryvi,1590 well,44,2kinghenryvi,1590 unto,44,2kinghenryvi,1590 CARDINAL,45,2kinghenryvi,1590 were,45,2kinghenryvi,1590 go,46,2kinghenryvi,1590 WARWICK,47,2kinghenryvi,1590 God,48,2kinghenryvi,1590 As,49,2kinghenryvi,1590 like,50,2kinghenryvi,1590 an,50,2kinghenryvi,1590 or,50,2kinghenryvi,1590 hath,50,2kinghenryvi,1590 can,51,2kinghenryvi,1590 should,51,2kinghenryvi,1590 Lord,51,2kinghenryvi,1590 let,51,2kinghenryvi,1590 more,52,2kinghenryvi,1590 make,52,2kinghenryvi,1590 man,53,2kinghenryvi,1590 they,54,2kinghenryvi,1590 death,56,2kinghenryvi,1590 My,56,2kinghenryvi,1590 Suffolk,56,2kinghenryvi,1590 What,57,2kinghenryvi,1590 in,313,2kinghenryvi,1590 if,59,2kinghenryvi,1590 now,59,2kinghenryvi,1590 For,60,2kinghenryvi,1590 her,60,2kinghenryvi,1590 good,60,2kinghenryvi,1590 what,60,2kinghenryvi,1590 am,61,2kinghenryvi,1590 these,62,2kinghenryvi,1590 their,64,2kinghenryvi,1590 York,65,2kinghenryvi,1590 at,66,2kinghenryvi,1590 Duke,67,2kinghenryvi,1590 was,69,2kinghenryvi,1590 our,69,2kinghenryvi,1590 YORK,70,2kinghenryvi,1590 CADE,70,2kinghenryvi,1590 That,72,2kinghenryvi,1590 the,841,2kinghenryvi,1590 Enter,74,2kinghenryvi,1590 do,76,2kinghenryvi,1590 QUEEN,76,2kinghenryvi,1590 And,333,2kinghenryvi,1590 To,79,2kinghenryvi,1590 are,80,2kinghenryvi,1590 MARGARET,80,2kinghenryvi,1590 no,81,2kinghenryvi,1590 on,82,2kinghenryvi,1590 SUFFOLK,83,2kinghenryvi,1590 we,84,2kinghenryvi,1590 But,84,2kinghenryvi,1590 GLOUCESTER,87,2kinghenryvi,1590 them,88,2kinghenryvi,1590 from,88,2kinghenryvi,1590 by,92,2kinghenryvi,1590 but,94,2kinghenryvi,1590 a,350,2kinghenryvi,1590 lord,96,2kinghenryvi,1590 king,98,2kinghenryvi,1590 so,99,2kinghenryvi,1590 my,358,2kinghenryvi,1590 and,616,2kinghenryvi,1590 The,108,2kinghenryvi,1590 shall,119,2kinghenryvi,1590 VI,121,2kinghenryvi,1590 HENRY,121,2kinghenryvi,1590 KING,122,2kinghenryvi,1590 thee,122,2kinghenryvi,1590 as,127,2kinghenryvi,1590 will,129,2kinghenryvi,1590 all,135,2kinghenryvi,1590 he,151,2kinghenryvi,1590 him,152,2kinghenryvi,1590 it,152,2kinghenryvi,1590 this,157,2kinghenryvi,1590 have,157,2kinghenryvi,1590 your,160,2kinghenryvi,1590 thy,169,2kinghenryvi,1590 you,180,2kinghenryvi,1590 thou,187,2kinghenryvi,1590 not,199,2kinghenryvi,1590 for,202,2kinghenryvi,1590 me,206,2kinghenryvi,1590 that,214,2kinghenryvi,1590 is,222,2kinghenryvi,1590 with,228,2kinghenryvi,1590 be,237,2kinghenryvi,1590 his,238,2kinghenryvi,1590 dimm'd,1,3kinghenryvi,1590 wishful,1,3kinghenryvi,1590 holding,1,3kinghenryvi,1590 champions,1,3kinghenryvi,1590 discharged,1,3kinghenryvi,1590 kingdom's,1,3kinghenryvi,1590 answered,1,3kinghenryvi,1590 'all,1,3kinghenryvi,1590 degenerate,1,3kinghenryvi,1590 event,1,3kinghenryvi,1590 persecutor,1,3kinghenryvi,1590 prancing,1,3kinghenryvi,1590 shepherd's,1,3kinghenryvi,1590 Erroneous,1,3kinghenryvi,1590 troubled,1,3kinghenryvi,1590 regard,1,3kinghenryvi,1590 lusty,1,3kinghenryvi,1590 instruments,1,3kinghenryvi,1590 clouded,1,3kinghenryvi,1590 tomb,1,3kinghenryvi,1590 gauntlet,1,3kinghenryvi,1590 Adjudged,1,3kinghenryvi,1590 relief,1,3kinghenryvi,1590 meek,1,3kinghenryvi,1590 finger'd,1,3kinghenryvi,1590 meed,1,3kinghenryvi,1590 Prove,1,3kinghenryvi,1590 suffer,1,3kinghenryvi,1590 l,1,3kinghenryvi,1590 smiles,1,3kinghenryvi,1590 safeguard,1,3kinghenryvi,1590 Proud,1,3kinghenryvi,1590 drop,1,3kinghenryvi,1590 afar,1,3kinghenryvi,1590 darest,1,3kinghenryvi,1590 cureless,1,3kinghenryvi,1590 interchange,1,3kinghenryvi,1590 Amazonian,1,3kinghenryvi,1590 strengthening,1,3kinghenryvi,1590 Duchess,1,3kinghenryvi,1590 derived,1,3kinghenryvi,1590 fathers,1,3kinghenryvi,1590 motion,1,3kinghenryvi,1590 crook'd,1,3kinghenryvi,1590 apprehend,1,3kinghenryvi,1590 cheer'd,1,3kinghenryvi,1590 tops,1,3kinghenryvi,1590 yielding,1,3kinghenryvi,1590 assay,1,3kinghenryvi,1590 resist,1,3kinghenryvi,1590 double,1,3kinghenryvi,1590 quenchless,1,3kinghenryvi,1590 bereaved,1,3kinghenryvi,1590 infamy,1,3kinghenryvi,1590 Comfort,1,3kinghenryvi,1590 mistress,1,3kinghenryvi,1590 forswear,1,3kinghenryvi,1590 tremble,1,3kinghenryvi,1590 viands,1,3kinghenryvi,1590 weary,1,3kinghenryvi,1590 wears,1,3kinghenryvi,1590 prophet,1,3kinghenryvi,1590 Troy's,1,3kinghenryvi,1590 steeped,1,3kinghenryvi,1590 treasure,1,3kinghenryvi,1590 quietness,1,3kinghenryvi,1590 septentrion,1,3kinghenryvi,1590 stately,1,3kinghenryvi,1590 fuel,1,3kinghenryvi,1590 tyrant's,1,3kinghenryvi,1590 alike,1,3kinghenryvi,1590 depose,1,3kinghenryvi,1590 dine,1,3kinghenryvi,1590 Belgia,1,3kinghenryvi,1590 suspicious,1,3kinghenryvi,1590 unhoped,1,3kinghenryvi,1590 Springs,1,3kinghenryvi,1590 rigour,1,3kinghenryvi,1590 Ravenspurgh,1,3kinghenryvi,1590 looker,1,3kinghenryvi,1590 zeal,1,3kinghenryvi,1590 border,1,3kinghenryvi,1590 purge,1,3kinghenryvi,1590 labours,1,3kinghenryvi,1590 hoarding,1,3kinghenryvi,1590 support,1,3kinghenryvi,1590 offended,1,3kinghenryvi,1590 outrun,1,3kinghenryvi,1590 assured,1,3kinghenryvi,1590 rob,1,3kinghenryvi,1590 doubtful,1,3kinghenryvi,1590 scene,1,3kinghenryvi,1590 western,1,3kinghenryvi,1590 Northumberland's,1,3kinghenryvi,1590 assistance,1,3kinghenryvi,1590 muse,1,3kinghenryvi,1590 undoubted,1,3kinghenryvi,1590 villain,1,3kinghenryvi,1590 butchers,1,3kinghenryvi,1590 cavilling,1,3kinghenryvi,1590 devouring,1,3kinghenryvi,1590 jot,1,3kinghenryvi,1590 Stafford's,1,3kinghenryvi,1590 speedy,1,3kinghenryvi,1590 Stab,1,3kinghenryvi,1590 helps,1,3kinghenryvi,1590 despised,1,3kinghenryvi,1590 trull,1,3kinghenryvi,1590 swiftly,1,3kinghenryvi,1590 bewitch,1,3kinghenryvi,1590 mess,1,3kinghenryvi,1590 Measure,1,3kinghenryvi,1590 exceeds,1,3kinghenryvi,1590 younger,1,3kinghenryvi,1590 wreaths,1,3kinghenryvi,1590 'Alas,1,3kinghenryvi,1590 wrap,1,3kinghenryvi,1590 joins,1,3kinghenryvi,1590 painted,1,3kinghenryvi,1590 pilot's,1,3kinghenryvi,1590 Whereby,1,3kinghenryvi,1590 hers,1,3kinghenryvi,1590 environed,1,3kinghenryvi,1590 trunk,1,3kinghenryvi,1590 proceedings,1,3kinghenryvi,1590 wherewith,1,3kinghenryvi,1590 Iron,1,3kinghenryvi,1590 decay,1,3kinghenryvi,1590 braver,1,3kinghenryvi,1590 Whereat,1,3kinghenryvi,1590 security,1,3kinghenryvi,1590 grin,1,3kinghenryvi,1590 toil,1,3kinghenryvi,1590 comest,1,3kinghenryvi,1590 preferr'st,1,3kinghenryvi,1590 hearten,1,3kinghenryvi,1590 Beshrew,1,3kinghenryvi,1590 brood,1,3kinghenryvi,1590 instrument,1,3kinghenryvi,1590 offer,1,3kinghenryvi,1590 Far,1,3kinghenryvi,1590 rid,1,3kinghenryvi,1590 naked,1,3kinghenryvi,1590 Amazon,1,3kinghenryvi,1590 pitied'st,1,3kinghenryvi,1590 summer's,1,3kinghenryvi,1590 appear,1,3kinghenryvi,1590 wield,1,3kinghenryvi,1590 wittingly,1,3kinghenryvi,1590 flow,1,3kinghenryvi,1590 lick,1,3kinghenryvi,1590 although,1,3kinghenryvi,1590 Agamemnon's,1,3kinghenryvi,1590 shelter,1,3kinghenryvi,1590 pies,1,3kinghenryvi,1590 throat,1,3kinghenryvi,1590 underneath,1,3kinghenryvi,1590 crookback,1,3kinghenryvi,1590 dreaming,1,3kinghenryvi,1590 press,1,3kinghenryvi,1590 patron,1,3kinghenryvi,1590 Jephthah's,1,3kinghenryvi,1590 iron,1,3kinghenryvi,1590 sore,1,3kinghenryvi,1590 malapert,1,3kinghenryvi,1590 heedful,1,3kinghenryvi,1590 bridle,1,3kinghenryvi,1590 thirst,1,3kinghenryvi,1590 orphans,1,3kinghenryvi,1590 subsidies,1,3kinghenryvi,1590 insult,1,3kinghenryvi,1590 earls,1,3kinghenryvi,1590 thicket,1,3kinghenryvi,1590 unconstant,1,3kinghenryvi,1590 curious,1,3kinghenryvi,1590 PERSONAE,1,3kinghenryvi,1590 wither,1,3kinghenryvi,1590 climb'd,1,3kinghenryvi,1590 rescued,1,3kinghenryvi,1590 spare,1,3kinghenryvi,1590 saved,1,3kinghenryvi,1590 couched,1,3kinghenryvi,1590 lightning,1,3kinghenryvi,1590 cast,1,3kinghenryvi,1590 crutch,1,3kinghenryvi,1590 soothe,1,3kinghenryvi,1590 argued,1,3kinghenryvi,1590 saves,1,3kinghenryvi,1590 unlikely,1,3kinghenryvi,1590 could'st,1,3kinghenryvi,1590 utter'd,1,3kinghenryvi,1590 attempt,1,3kinghenryvi,1590 autumn's,1,3kinghenryvi,1590 pleasing,1,3kinghenryvi,1590 Trimm'd,1,3kinghenryvi,1590 trow'st,1,3kinghenryvi,1590 stirring,1,3kinghenryvi,1590 irks,1,3kinghenryvi,1590 tiger's,1,3kinghenryvi,1590 delivered,1,3kinghenryvi,1590 advantages,1,3kinghenryvi,1590 VIII,1,3kinghenryvi,1590 chid,1,3kinghenryvi,1590 bending,1,3kinghenryvi,1590 graces,1,3kinghenryvi,1590 ire,1,3kinghenryvi,1590 grasp'd,1,3kinghenryvi,1590 orphan's,1,3kinghenryvi,1590 plies,1,3kinghenryvi,1590 misleading,1,3kinghenryvi,1590 After,1,3kinghenryvi,1590 camp,1,3kinghenryvi,1590 sadly,1,3kinghenryvi,1590 spies,1,3kinghenryvi,1590 reconciled,1,3kinghenryvi,1590 'What,1,3kinghenryvi,1590 sole,1,3kinghenryvi,1590 sold,1,3kinghenryvi,1590 wrung,1,3kinghenryvi,1590 Young,1,3kinghenryvi,1590 sunders,1,3kinghenryvi,1590 usurp'st,1,3kinghenryvi,1590 sat,1,3kinghenryvi,1590 entrails,1,3kinghenryvi,1590 dance,1,3kinghenryvi,1590 Accords,1,3kinghenryvi,1590 link,1,3kinghenryvi,1590 grows,1,3kinghenryvi,1590 hour's,1,3kinghenryvi,1590 broach'd,1,3kinghenryvi,1590 riddles,1,3kinghenryvi,1590 call'st,1,3kinghenryvi,1590 Cold,1,3kinghenryvi,1590 disprove,1,3kinghenryvi,1590 shrouds,1,3kinghenryvi,1590 corner,1,3kinghenryvi,1590 Plains,1,3kinghenryvi,1590 prop,1,3kinghenryvi,1590 lime,1,3kinghenryvi,1590 crying,1,3kinghenryvi,1590 incensed,1,3kinghenryvi,1590 broker,1,3kinghenryvi,1590 Keep,1,3kinghenryvi,1590 brothers',1,3kinghenryvi,1590 factious,1,3kinghenryvi,1590 obdurate,1,3kinghenryvi,1590 plight,1,3kinghenryvi,1590 overcome,1,3kinghenryvi,1590 posts,1,3kinghenryvi,1590 Much,1,3kinghenryvi,1590 heat,1,3kinghenryvi,1590 concerns,1,3kinghenryvi,1590 faciant,1,3kinghenryvi,1590 Forward,1,3kinghenryvi,1590 possessed,1,3kinghenryvi,1590 Victorious,1,3kinghenryvi,1590 heal,1,3kinghenryvi,1590 roar'd,1,3kinghenryvi,1590 budge,1,3kinghenryvi,1590 Woe,1,3kinghenryvi,1590 drew,1,3kinghenryvi,1590 allays,1,3kinghenryvi,1590 babes,1,3kinghenryvi,1590 demands,1,3kinghenryvi,1590 soonest,1,3kinghenryvi,1590 Dunsmore,1,3kinghenryvi,1590 hanging,1,3kinghenryvi,1590 Inferreth,1,3kinghenryvi,1590 falcon's,1,3kinghenryvi,1590 congealed,1,3kinghenryvi,1590 infringed,1,3kinghenryvi,1590 beseem,1,3kinghenryvi,1590 likeness,1,3kinghenryvi,1590 wrong'st,1,3kinghenryvi,1590 desperately,1,3kinghenryvi,1590 laund,1,3kinghenryvi,1590 guerdon'd,1,3kinghenryvi,1590 fools,1,3kinghenryvi,1590 brotherly,1,3kinghenryvi,1590 veins,1,3kinghenryvi,1590 noise,1,3kinghenryvi,1590 target,1,3kinghenryvi,1590 blessed,1,3kinghenryvi,1590 embassade,1,3kinghenryvi,1590 sha,1,3kinghenryvi,1590 inhuman,1,3kinghenryvi,1590 Cross,1,3kinghenryvi,1590 coldness,1,3kinghenryvi,1590 toss'd,1,3kinghenryvi,1590 wail,1,3kinghenryvi,1590 kin,1,3kinghenryvi,1590 began,1,3kinghenryvi,1590 something,1,3kinghenryvi,1590 shrift,1,3kinghenryvi,1590 limits,1,3kinghenryvi,1590 moving,1,3kinghenryvi,1590 Gentle,1,3kinghenryvi,1590 sinful,1,3kinghenryvi,1590 deserve,1,3kinghenryvi,1590 plucker,1,3kinghenryvi,1590 ocean,1,3kinghenryvi,1590 execution,1,3kinghenryvi,1590 lasts,1,3kinghenryvi,1590 hereafter,1,3kinghenryvi,1590 smoking,1,3kinghenryvi,1590 afflict,1,3kinghenryvi,1590 backing,1,3kinghenryvi,1590 history,1,3kinghenryvi,1590 Oft,1,3kinghenryvi,1590 Withhold,1,3kinghenryvi,1590 conform,1,3kinghenryvi,1590 'good',1,3kinghenryvi,1590 sunset,1,3kinghenryvi,1590 innocents,1,3kinghenryvi,1590 bound,1,3kinghenryvi,1590 warrant,1,3kinghenryvi,1590 Confirm,1,3kinghenryvi,1590 minions,1,3kinghenryvi,1590 usurper's,1,3kinghenryvi,1590 command'st,1,3kinghenryvi,1590 Change,1,3kinghenryvi,1590 possessor,1,3kinghenryvi,1590 subdued,1,3kinghenryvi,1590 fleet,1,3kinghenryvi,1590 ourself,1,3kinghenryvi,1590 tooth,1,3kinghenryvi,1590 invention,1,3kinghenryvi,1590 yeoman,1,3kinghenryvi,1590 sex,1,3kinghenryvi,1590 Herein,1,3kinghenryvi,1590 coals,1,3kinghenryvi,1590 flying,1,3kinghenryvi,1590 seals,1,3kinghenryvi,1590 honourest,1,3kinghenryvi,1590 hardiest,1,3kinghenryvi,1590 landed,1,3kinghenryvi,1590 o'erweens,1,3kinghenryvi,1590 bridal,1,3kinghenryvi,1590 peevish,1,3kinghenryvi,1590 doubtless,1,3kinghenryvi,1590 spy,1,3kinghenryvi,1590 peril,1,3kinghenryvi,1590 Revenged,1,3kinghenryvi,1590 WILLIAM,1,3kinghenryvi,1590 livest,1,3kinghenryvi,1590 council,1,3kinghenryvi,1590 favourites,1,3kinghenryvi,1590 Northumberlands,1,3kinghenryvi,1590 mirthful,1,3kinghenryvi,1590 thunders,1,3kinghenryvi,1590 nymphs,1,3kinghenryvi,1590 lesson,1,3kinghenryvi,1590 liveth,1,3kinghenryvi,1590 windy,1,3kinghenryvi,1590 murdered,1,3kinghenryvi,1590 salve,1,3kinghenryvi,1590 'Henry,1,3kinghenryvi,1590 murderer,1,3kinghenryvi,1590 mantle,1,3kinghenryvi,1590 gazers,1,3kinghenryvi,1590 looking,1,3kinghenryvi,1590 deformity,1,3kinghenryvi,1590 apparent,1,3kinghenryvi,1590 where's,1,3kinghenryvi,1590 Silence,1,3kinghenryvi,1590 usual,1,3kinghenryvi,1590 cropp'd,1,3kinghenryvi,1590 concubine,1,3kinghenryvi,1590 Broach'd,1,3kinghenryvi,1590 't,1,3kinghenryvi,1590 tugging,1,3kinghenryvi,1590 fearless,1,3kinghenryvi,1590 Lifting,1,3kinghenryvi,1590 bashful,1,3kinghenryvi,1590 Heavens,1,3kinghenryvi,1590 second,1,3kinghenryvi,1590 disgrace,1,3kinghenryvi,1590 firmly,1,3kinghenryvi,1590 study,1,3kinghenryvi,1590 adversity,1,3kinghenryvi,1590 chat,1,3kinghenryvi,1590 multitudes,1,3kinghenryvi,1590 sky,1,3kinghenryvi,1590 level,1,3kinghenryvi,1590 groans,1,3kinghenryvi,1590 sets,1,3kinghenryvi,1590 Setting,1,3kinghenryvi,1590 chattering,1,3kinghenryvi,1590 gripes,1,3kinghenryvi,1590 suck,1,3kinghenryvi,1590 inviolable,1,3kinghenryvi,1590 merciless,1,3kinghenryvi,1590 Darraign,1,3kinghenryvi,1590 waiteth,1,3kinghenryvi,1590 executing,1,3kinghenryvi,1590 thin,1,3kinghenryvi,1590 betwixt,1,3kinghenryvi,1590 William,1,3kinghenryvi,1590 Spain,1,3kinghenryvi,1590 timber'd,1,3kinghenryvi,1590 awful,1,3kinghenryvi,1590 sends,1,3kinghenryvi,1590 Unreasonable,1,3kinghenryvi,1590 swept,1,3kinghenryvi,1590 decked,1,3kinghenryvi,1590 read,1,3kinghenryvi,1590 unloving,1,3kinghenryvi,1590 swelling,1,3kinghenryvi,1590 rear,1,3kinghenryvi,1590 suppress'd,1,3kinghenryvi,1590 Albion,1,3kinghenryvi,1590 sly,1,3kinghenryvi,1590 broils,1,3kinghenryvi,1590 beseeming,1,3kinghenryvi,1590 Offer,1,3kinghenryvi,1590 Machiavel,1,3kinghenryvi,1590 unchanging,1,3kinghenryvi,1590 points,1,3kinghenryvi,1590 happen,1,3kinghenryvi,1590 Successful,1,3kinghenryvi,1590 roots,1,3kinghenryvi,1590 henceforward,1,3kinghenryvi,1590 skin's,1,3kinghenryvi,1590 Wiltshire's,1,3kinghenryvi,1590 chased,1,3kinghenryvi,1590 shower,1,3kinghenryvi,1590 Bestride,1,3kinghenryvi,1590 spying,1,3kinghenryvi,1590 swoln,1,3kinghenryvi,1590 bore,1,3kinghenryvi,1590 Tush,1,3kinghenryvi,1590 seduce,1,3kinghenryvi,1590 Whereof,1,3kinghenryvi,1590 shriek'd,1,3kinghenryvi,1590 disannuls,1,3kinghenryvi,1590 bodged,1,3kinghenryvi,1590 word's,1,3kinghenryvi,1590 scold,1,3kinghenryvi,1590 relate,1,3kinghenryvi,1590 Suspicion,1,3kinghenryvi,1590 confer,1,3kinghenryvi,1590 cherish,1,3kinghenryvi,1590 eldest,1,3kinghenryvi,1590 mark'd,1,3kinghenryvi,1590 bribe,1,3kinghenryvi,1590 household,1,3kinghenryvi,1590 horizon,1,3kinghenryvi,1590 willing,1,3kinghenryvi,1590 swoon,1,3kinghenryvi,1590 tree's,1,3kinghenryvi,1590 usurpers,1,3kinghenryvi,1590 Whilst,1,3kinghenryvi,1590 sue,1,3kinghenryvi,1590 bemoan'd,1,3kinghenryvi,1590 mutinies,1,3kinghenryvi,1590 complete,1,3kinghenryvi,1590 brace,1,3kinghenryvi,1590 feed,1,3kinghenryvi,1590 rust,1,3kinghenryvi,1590 feel,1,3kinghenryvi,1590 ominous,1,3kinghenryvi,1590 circled,1,3kinghenryvi,1590 feet,1,3kinghenryvi,1590 fees,1,3kinghenryvi,1590 bows,1,3kinghenryvi,1590 'scapes,1,3kinghenryvi,1590 recovery,1,3kinghenryvi,1590 prejudicial,1,3kinghenryvi,1590 Scales,1,3kinghenryvi,1590 grow,1,3kinghenryvi,1590 circuit,1,3kinghenryvi,1590 swore,1,3kinghenryvi,1590 blind,1,3kinghenryvi,1590 brief,1,3kinghenryvi,1590 magistrate,1,3kinghenryvi,1590 rued,1,3kinghenryvi,1590 accept,1,3kinghenryvi,1590 corrupt,1,3kinghenryvi,1590 conceal,1,3kinghenryvi,1590 whisper,1,3kinghenryvi,1590 tortures,1,3kinghenryvi,1590 Guard,1,3kinghenryvi,1590 choose,1,3kinghenryvi,1590 rooms,1,3kinghenryvi,1590 wing,1,3kinghenryvi,1590 dagger's,1,3kinghenryvi,1590 Vouchsafe,1,3kinghenryvi,1590 shrink,1,3kinghenryvi,1590 Hence,1,3kinghenryvi,1590 nails,1,3kinghenryvi,1590 cavil,1,3kinghenryvi,1590 wins,1,3kinghenryvi,1590 preachment,1,3kinghenryvi,1590 tiger,1,3kinghenryvi,1590 separated,1,3kinghenryvi,1590 rend,1,3kinghenryvi,1590 Dark,1,3kinghenryvi,1590 Might,1,3kinghenryvi,1590 seems,1,3kinghenryvi,1590 latter,1,3kinghenryvi,1590 length,1,3kinghenryvi,1590 rent,1,3kinghenryvi,1590 One,1,3kinghenryvi,1590 Please,1,3kinghenryvi,1590 obsequious,1,3kinghenryvi,1590 rends,1,3kinghenryvi,1590 magnanimity,1,3kinghenryvi,1590 hated,1,3kinghenryvi,1590 Retreat,1,3kinghenryvi,1590 Though,1,3kinghenryvi,1590 poniards,1,3kinghenryvi,1590 renew,1,3kinghenryvi,1590 wisp,1,3kinghenryvi,1590 anon,1,3kinghenryvi,1590 horsemen,1,3kinghenryvi,1590 usest,1,3kinghenryvi,1590 ariseth,1,3kinghenryvi,1590 froward,1,3kinghenryvi,1590 throws,1,3kinghenryvi,1590 Putting,1,3kinghenryvi,1590 devil's,1,3kinghenryvi,1590 sense,1,3kinghenryvi,1590 sleight,1,3kinghenryvi,1590 o'ermatch'd,1,3kinghenryvi,1590 wave,1,3kinghenryvi,1590 summon,1,3kinghenryvi,1590 rebellion,1,3kinghenryvi,1590 warm,1,3kinghenryvi,1590 voice,1,3kinghenryvi,1590 abodements,1,3kinghenryvi,1590 loins,1,3kinghenryvi,1590 pitch'd,1,3kinghenryvi,1590 pretty,1,3kinghenryvi,1590 approacheth,1,3kinghenryvi,1590 timeless,1,3kinghenryvi,1590 basilisk,1,3kinghenryvi,1590 Deceive,1,3kinghenryvi,1590 brake,1,3kinghenryvi,1590 conveyance,1,3kinghenryvi,1590 stirr'd,1,3kinghenryvi,1590 flowing,1,3kinghenryvi,1590 prodigy,1,3kinghenryvi,1590 forefathers',1,3kinghenryvi,1590 There's,1,3kinghenryvi,1590 coats,1,3kinghenryvi,1590 ruled,1,3kinghenryvi,1590 book,1,3kinghenryvi,1590 manly,1,3kinghenryvi,1590 boon,1,3kinghenryvi,1590 marrow,1,3kinghenryvi,1590 blazing,1,3kinghenryvi,1590 bright,1,3kinghenryvi,1590 moisture,1,3kinghenryvi,1590 framed,1,3kinghenryvi,1590 tend,1,3kinghenryvi,1590 unrelenting,1,3kinghenryvi,1590 colour,1,3kinghenryvi,1590 digg'd,1,3kinghenryvi,1590 presageth,1,3kinghenryvi,1590 created,1,3kinghenryvi,1590 praises,1,3kinghenryvi,1590 Draw,1,3kinghenryvi,1590 hungry,1,3kinghenryvi,1590 Marquess,1,3kinghenryvi,1590 conquer,1,3kinghenryvi,1590 foil,1,3kinghenryvi,1590 nephew,1,3kinghenryvi,1590 bitter,1,3kinghenryvi,1590 sick,1,3kinghenryvi,1590 Laugh'd,1,3kinghenryvi,1590 big,1,3kinghenryvi,1590 Di,1,3kinghenryvi,1590 drove,1,3kinghenryvi,1590 whosoe'er,1,3kinghenryvi,1590 prince's,1,3kinghenryvi,1590 refrain,1,3kinghenryvi,1590 authority,1,3kinghenryvi,1590 stumble,1,3kinghenryvi,1590 ha',1,3kinghenryvi,1590 tumult,1,3kinghenryvi,1590 life's,1,3kinghenryvi,1590 Usurps,1,3kinghenryvi,1590 Wrath,1,3kinghenryvi,1590 statutes,1,3kinghenryvi,1590 pillars,1,3kinghenryvi,1590 begetting,1,3kinghenryvi,1590 hat,1,3kinghenryvi,1590 wanting,1,3kinghenryvi,1590 young's,1,3kinghenryvi,1590 sweeter,1,3kinghenryvi,1590 Hungerford,1,3kinghenryvi,1590 rivers,1,3kinghenryvi,1590 utter,1,3kinghenryvi,1590 Sends,1,3kinghenryvi,1590 hay,1,3kinghenryvi,1590 delights,1,3kinghenryvi,1590 exercise,1,3kinghenryvi,1590 appeased,1,3kinghenryvi,1590 deformed,1,3kinghenryvi,1590 pilot,1,3kinghenryvi,1590 spoil,1,3kinghenryvi,1590 Am,1,3kinghenryvi,1590 recounted,1,3kinghenryvi,1590 hang'd,1,3kinghenryvi,1590 scarce,1,3kinghenryvi,1590 replete,1,3kinghenryvi,1590 'Wind,1,3kinghenryvi,1590 youthful,1,3kinghenryvi,1590 Gloucester's,1,3kinghenryvi,1590 eternal,1,3kinghenryvi,1590 Throwing,1,3kinghenryvi,1590 fortify,1,3kinghenryvi,1590 hew,1,3kinghenryvi,1590 lance,1,3kinghenryvi,1590 murderers,1,3kinghenryvi,1590 Wither,1,3kinghenryvi,1590 blown,1,3kinghenryvi,1590 Still,1,3kinghenryvi,1590 Rhesus',1,3kinghenryvi,1590 unmanly,1,3kinghenryvi,1590 hopes,1,3kinghenryvi,1590 Lo,1,3kinghenryvi,1590 hitherto,1,3kinghenryvi,1590 fates,1,3kinghenryvi,1590 sinew,1,3kinghenryvi,1590 inclined,1,3kinghenryvi,1590 discords,1,3kinghenryvi,1590 Falconbridge,1,3kinghenryvi,1590 Stamp,1,3kinghenryvi,1590 butt,1,3kinghenryvi,1590 greatly,1,3kinghenryvi,1590 Answer,1,3kinghenryvi,1590 denied,1,3kinghenryvi,1590 grumbling,1,3kinghenryvi,1590 quaintly,1,3kinghenryvi,1590 void,1,3kinghenryvi,1590 Hew,1,3kinghenryvi,1590 On,1,3kinghenryvi,1590 begun,1,3kinghenryvi,1590 pitied,1,3kinghenryvi,1590 paws,1,3kinghenryvi,1590 pawn,1,3kinghenryvi,1590 destinies,1,3kinghenryvi,1590 hid,1,3kinghenryvi,1590 innocent,1,3kinghenryvi,1590 Within,1,3kinghenryvi,1590 misdeed,1,3kinghenryvi,1590 type,1,3kinghenryvi,1590 prophecies,1,3kinghenryvi,1590 ashes,1,3kinghenryvi,1590 hit,1,3kinghenryvi,1590 'long,1,3kinghenryvi,1590 buzz,1,3kinghenryvi,1590 Ha,1,3kinghenryvi,1590 coursers,1,3kinghenryvi,1590 requires,1,3kinghenryvi,1590 feigned,1,3kinghenryvi,1590 speaketh,1,3kinghenryvi,1590 husbands,1,3kinghenryvi,1590 surely,1,3kinghenryvi,1590 ambush,1,3kinghenryvi,1590 goods,1,3kinghenryvi,1590 quick,1,3kinghenryvi,1590 wither'd,1,3kinghenryvi,1590 denial,1,3kinghenryvi,1590 impregnable,1,3kinghenryvi,1590 mermaid,1,3kinghenryvi,1590 treachery,1,3kinghenryvi,1590 stem,1,3kinghenryvi,1590 temples,1,3kinghenryvi,1590 Is't,1,3kinghenryvi,1590 Scarce,1,3kinghenryvi,1590 nice,1,3kinghenryvi,1590 admiral,1,3kinghenryvi,1590 thickest,1,3kinghenryvi,1590 yourselves,1,3kinghenryvi,1590 lizards',1,3kinghenryvi,1590 riseth,1,3kinghenryvi,1590 tumbled,1,3kinghenryvi,1590 monstrous,1,3kinghenryvi,1590 SOMERSET's,1,3kinghenryvi,1590 Untutor'd,1,3kinghenryvi,1590 attentive,1,3kinghenryvi,1590 heads,1,3kinghenryvi,1590 Drummer,1,3kinghenryvi,1590 kiss'd,1,3kinghenryvi,1590 Dauphin,1,3kinghenryvi,1590 enrolled,1,3kinghenryvi,1590 doubting,1,3kinghenryvi,1590 Impairing,1,3kinghenryvi,1590 courteous,1,3kinghenryvi,1590 intercept,1,3kinghenryvi,1590 sought,1,3kinghenryvi,1590 unequal,1,3kinghenryvi,1590 gowns,1,3kinghenryvi,1590 thorn,1,3kinghenryvi,1590 divide,1,3kinghenryvi,1590 bull,1,3kinghenryvi,1590 reckless,1,3kinghenryvi,1590 morning's,1,3kinghenryvi,1590 sorry,1,3kinghenryvi,1590 forewarn'd,1,3kinghenryvi,1590 unload,1,3kinghenryvi,1590 straw,1,3kinghenryvi,1590 absent,1,3kinghenryvi,1590 Conceive,1,3kinghenryvi,1590 Drum,1,3kinghenryvi,1590 foeman's,1,3kinghenryvi,1590 days',1,3kinghenryvi,1590 rebel,1,3kinghenryvi,1590 leather,1,3kinghenryvi,1590 Jove's,1,3kinghenryvi,1590 willingness,1,3kinghenryvi,1590 eclipsed,1,3kinghenryvi,1590 bury,1,3kinghenryvi,1590 behind,1,3kinghenryvi,1590 prolong,1,3kinghenryvi,1590 suffer'd,1,3kinghenryvi,1590 bell,1,3kinghenryvi,1590 unfit,1,3kinghenryvi,1590 obeyed'st,1,3kinghenryvi,1590 burn,1,3kinghenryvi,1590 sorts,1,3kinghenryvi,1590 went'st,1,3kinghenryvi,1590 cap,1,3kinghenryvi,1590 struck,1,3kinghenryvi,1590 prisoners,1,3kinghenryvi,1590 desirous,1,3kinghenryvi,1590 tell'st,1,3kinghenryvi,1590 Re,1,3kinghenryvi,1590 argue,1,3kinghenryvi,1590 strives,1,3kinghenryvi,1590 shepherds,1,3kinghenryvi,1590 disproportion,1,3kinghenryvi,1590 wean,1,3kinghenryvi,1590 wedlock,1,3kinghenryvi,1590 bent,1,3kinghenryvi,1590 treasons,1,3kinghenryvi,1590 parle,1,3kinghenryvi,1590 summa,1,3kinghenryvi,1590 disperse,1,3kinghenryvi,1590 beyond,1,3kinghenryvi,1590 sustain,1,3kinghenryvi,1590 parks,1,3kinghenryvi,1590 enlargement,1,3kinghenryvi,1590 games,1,3kinghenryvi,1590 gape,1,3kinghenryvi,1590 grudges,1,3kinghenryvi,1590 cancell'd,1,3kinghenryvi,1590 Lascivious,1,3kinghenryvi,1590 Welshmen,1,3kinghenryvi,1590 renounce,1,3kinghenryvi,1590 fee'd,1,3kinghenryvi,1590 suddenly,1,3kinghenryvi,1590 twice,1,3kinghenryvi,1590 brinish,1,3kinghenryvi,1590 keep'st,1,3kinghenryvi,1590 'my,1,3kinghenryvi,1590 'no,1,3kinghenryvi,1590 twitting,1,3kinghenryvi,1590 Sink,1,3kinghenryvi,1590 Sail,1,3kinghenryvi,1590 friendly,1,3kinghenryvi,1590 tedious,1,3kinghenryvi,1590 anguish,1,3kinghenryvi,1590 dissembling,1,3kinghenryvi,1590 ruinate,1,3kinghenryvi,1590 degree,1,3kinghenryvi,1590 bug,1,3kinghenryvi,1590 Dares,1,3kinghenryvi,1590 beget,1,3kinghenryvi,1590 dangerously,1,3kinghenryvi,1590 vows,1,3kinghenryvi,1590 buz,1,3kinghenryvi,1590 Stifle,1,3kinghenryvi,1590 amongst,1,3kinghenryvi,1590 Ye,1,3kinghenryvi,1590 Above,1,3kinghenryvi,1590 gather'd,1,3kinghenryvi,1590 Urge,1,3kinghenryvi,1590 Proclaims,1,3kinghenryvi,1590 resident,1,3kinghenryvi,1590 liken'd,1,3kinghenryvi,1590 gown,1,3kinghenryvi,1590 admired,1,3kinghenryvi,1590 craving,1,3kinghenryvi,1590 lurks,1,3kinghenryvi,1590 sins,1,3kinghenryvi,1590 ambassadors,1,3kinghenryvi,1590 enterprise,1,3kinghenryvi,1590 sink,1,3kinghenryvi,1590 Whither,1,3kinghenryvi,1590 sing,1,3kinghenryvi,1590 moody,1,3kinghenryvi,1590 pitch,1,3kinghenryvi,1590 heap'd,1,3kinghenryvi,1590 begs,1,3kinghenryvi,1590 brew'd,1,3kinghenryvi,1590 Pass'd,1,3kinghenryvi,1590 hopeful,1,3kinghenryvi,1590 brotherlike,1,3kinghenryvi,1590 lately,1,3kinghenryvi,1590 chafed,1,3kinghenryvi,1590 crowned,1,3kinghenryvi,1590 interrupts,1,3kinghenryvi,1590 afoot,1,3kinghenryvi,1590 inheritance,1,3kinghenryvi,1590 begin,1,3kinghenryvi,1590 nettled,1,3kinghenryvi,1590 dogs,1,3kinghenryvi,1590 store,1,3kinghenryvi,1590 ghost,1,3kinghenryvi,1590 deliverance,1,3kinghenryvi,1590 raught,1,3kinghenryvi,1590 impatience,1,3kinghenryvi,1590 childish,1,3kinghenryvi,1590 sear'd,1,3kinghenryvi,1590 rescuing,1,3kinghenryvi,1590 deep,1,3kinghenryvi,1590 miles,1,3kinghenryvi,1590 Cannot,1,3kinghenryvi,1590 blowing,1,3kinghenryvi,1590 impossibilities,1,3kinghenryvi,1590 Methought,1,3kinghenryvi,1590 torments,1,3kinghenryvi,1590 beck,1,3kinghenryvi,1590 artificial,1,3kinghenryvi,1590 Fear,1,3kinghenryvi,1590 Petitioners,1,3kinghenryvi,1590 shrub,1,3kinghenryvi,1590 repent,1,3kinghenryvi,1590 Bess,1,3kinghenryvi,1590 shouts,1,3kinghenryvi,1590 Here's,1,3kinghenryvi,1590 marches,1,3kinghenryvi,1590 consider,1,3kinghenryvi,1590 battery,1,3kinghenryvi,1590 favour,1,3kinghenryvi,1590 Ill,1,3kinghenryvi,1590 stood,1,3kinghenryvi,1590 fetter'd,1,3kinghenryvi,1590 promontory,1,3kinghenryvi,1590 Making,1,3kinghenryvi,1590 quailing,1,3kinghenryvi,1590 yes,1,3kinghenryvi,1590 Crete,1,3kinghenryvi,1590 tongued,1,3kinghenryvi,1590 murderous,1,3kinghenryvi,1590 notes,1,3kinghenryvi,1590 ago,1,3kinghenryvi,1590 swearing,1,3kinghenryvi,1590 BOURBON,1,3kinghenryvi,1590 dwell,1,3kinghenryvi,1590 tragedy,1,3kinghenryvi,1590 Lynn,1,3kinghenryvi,1590 dear,1,3kinghenryvi,1590 gilt,1,3kinghenryvi,1590 deal,1,3kinghenryvi,1590 liberal,1,3kinghenryvi,1590 depends,1,3kinghenryvi,1590 aims,1,3kinghenryvi,1590 deaf,1,3kinghenryvi,1590 commanders,1,3kinghenryvi,1590 pluck'd,1,3kinghenryvi,1590 vault,1,3kinghenryvi,1590 drain,1,3kinghenryvi,1590 nobleman,1,3kinghenryvi,1590 Forslow,1,3kinghenryvi,1590 ruthful,1,3kinghenryvi,1590 thrive,1,3kinghenryvi,1590 Kentishmen,1,3kinghenryvi,1590 dower,1,3kinghenryvi,1590 Blown,1,3kinghenryvi,1590 boast,1,3kinghenryvi,1590 gale,1,3kinghenryvi,1590 touch'd,1,3kinghenryvi,1590 melts,1,3kinghenryvi,1590 haught,1,3kinghenryvi,1590 waits,1,3kinghenryvi,1590 buried,1,3kinghenryvi,1590 incaged,1,3kinghenryvi,1590 houses,1,3kinghenryvi,1590 yields,1,3kinghenryvi,1590 maketh,1,3kinghenryvi,1590 o'ershades,1,3kinghenryvi,1590 smear'd,1,3kinghenryvi,1590 manner,1,3kinghenryvi,1590 curds,1,3kinghenryvi,1590 door,1,3kinghenryvi,1590 rouse,1,3kinghenryvi,1590 cured,1,3kinghenryvi,1590 dried,1,3kinghenryvi,1590 prosper,1,3kinghenryvi,1590 Master,1,3kinghenryvi,1590 betray'd,1,3kinghenryvi,1590 abominable,1,3kinghenryvi,1590 unconstrain'd,1,3kinghenryvi,1590 threaten,1,3kinghenryvi,1590 Towton,1,3kinghenryvi,1590 spreading,1,3kinghenryvi,1590 committed,1,3kinghenryvi,1590 railer,1,3kinghenryvi,1590 Teeth,1,3kinghenryvi,1590 crew,1,3kinghenryvi,1590 engenders,1,3kinghenryvi,1590 necessity,1,3kinghenryvi,1590 wrinkles,1,3kinghenryvi,1590 whereof,1,3kinghenryvi,1590 straying,1,3kinghenryvi,1590 idle,1,3kinghenryvi,1590 Lays,1,3kinghenryvi,1590 sometime,1,3kinghenryvi,1590 argosy,1,3kinghenryvi,1590 Ready,1,3kinghenryvi,1590 scorch'd,1,3kinghenryvi,1590 temper,1,3kinghenryvi,1590 caused,1,3kinghenryvi,1590 reenter,1,3kinghenryvi,1590 miserably,1,3kinghenryvi,1590 tamed,1,3kinghenryvi,1590 expostulate,1,3kinghenryvi,1590 loud,1,3kinghenryvi,1590 eye's,1,3kinghenryvi,1590 hostility,1,3kinghenryvi,1590 ado,1,3kinghenryvi,1590 parents,1,3kinghenryvi,1590 Wouldst,1,3kinghenryvi,1590 Hollanders,1,3kinghenryvi,1590 encamp'd,1,3kinghenryvi,1590 drift,1,3kinghenryvi,1590 speak'st,1,3kinghenryvi,1590 agony,1,3kinghenryvi,1590 playing,1,3kinghenryvi,1590 'Saint,1,3kinghenryvi,1590 easeful,1,3kinghenryvi,1590 spent,1,3kinghenryvi,1590 frustrate,1,3kinghenryvi,1590 lest,1,3kinghenryvi,1590 Resign'd,1,3kinghenryvi,1590 Sennet,1,3kinghenryvi,1590 Breathe,1,3kinghenryvi,1590 bides,1,3kinghenryvi,1590 loved,1,3kinghenryvi,1590 all's,1,3kinghenryvi,1590 knot,1,3kinghenryvi,1590 disport,1,3kinghenryvi,1590 shear,1,3kinghenryvi,1590 lets,1,3kinghenryvi,1590 boding,1,3kinghenryvi,1590 Whoever,1,3kinghenryvi,1590 outrages,1,3kinghenryvi,1590 haps,1,3kinghenryvi,1590 Gloucester',1,3kinghenryvi,1590 serious,1,3kinghenryvi,1590 tyrants,1,3kinghenryvi,1590 attain,1,3kinghenryvi,1590 scatter'd,1,3kinghenryvi,1590 pure,1,3kinghenryvi,1590 Culling,1,3kinghenryvi,1590 hot,1,3kinghenryvi,1590 Numbering,1,3kinghenryvi,1590 climb,1,3kinghenryvi,1590 Came,1,3kinghenryvi,1590 thrice,1,3kinghenryvi,1590 Dicky,1,3kinghenryvi,1590 graves,1,3kinghenryvi,1590 prescription,1,3kinghenryvi,1590 Minos,1,3kinghenryvi,1590 events,1,3kinghenryvi,1590 hardly,1,3kinghenryvi,1590 reasons,1,3kinghenryvi,1590 Seeing,1,3kinghenryvi,1590 running,1,3kinghenryvi,1590 ornaments,1,3kinghenryvi,1590 tempted,1,3kinghenryvi,1590 ramping,1,3kinghenryvi,1590 demean'd,1,3kinghenryvi,1590 shriver,1,3kinghenryvi,1590 Applaud,1,3kinghenryvi,1590 irrevocable,1,3kinghenryvi,1590 hare,1,3kinghenryvi,1590 discourse,1,3kinghenryvi,1590 Proteus,1,3kinghenryvi,1590 Break,1,3kinghenryvi,1590 Seeking,1,3kinghenryvi,1590 front,1,3kinghenryvi,1590 speaks,1,3kinghenryvi,1590 faints,1,3kinghenryvi,1590 weeks,1,3kinghenryvi,1590 Daedalus,1,3kinghenryvi,1590 afford,1,3kinghenryvi,1590 crow,1,3kinghenryvi,1590 haunts,1,3kinghenryvi,1590 amount,1,3kinghenryvi,1590 splits,1,3kinghenryvi,1590 signify,1,3kinghenryvi,1590 mought,1,3kinghenryvi,1590 fowl,1,3kinghenryvi,1590 shallow,1,3kinghenryvi,1590 impression,1,3kinghenryvi,1590 employ'd,1,3kinghenryvi,1590 finish,1,3kinghenryvi,1590 Hercules,1,3kinghenryvi,1590 bluntest,1,3kinghenryvi,1590 perform'd,1,3kinghenryvi,1590 smooths,1,3kinghenryvi,1590 killer,1,3kinghenryvi,1590 repeal'd,1,3kinghenryvi,1590 serpent's,1,3kinghenryvi,1590 Courage,1,3kinghenryvi,1590 cites,1,3kinghenryvi,1590 poltroons,1,3kinghenryvi,1590 'love,1,3kinghenryvi,1590 Full,1,3kinghenryvi,1590 four,1,3kinghenryvi,1590 dens,1,3kinghenryvi,1590 drawn,1,3kinghenryvi,1590 sighing,1,3kinghenryvi,1590 Enjoy,1,3kinghenryvi,1590 suitors,1,3kinghenryvi,1590 school,1,3kinghenryvi,1590 praise,1,3kinghenryvi,1590 perpetual,1,3kinghenryvi,1590 marching,1,3kinghenryvi,1590 excuse,1,3kinghenryvi,1590 sucking,1,3kinghenryvi,1590 expect,1,3kinghenryvi,1590 opes,1,3kinghenryvi,1590 Smile,1,3kinghenryvi,1590 bathed,1,3kinghenryvi,1590 occasions,1,3kinghenryvi,1590 misdoubteth,1,3kinghenryvi,1590 eased,1,3kinghenryvi,1590 sturdy,1,3kinghenryvi,1590 prepare,1,3kinghenryvi,1590 misgive,1,3kinghenryvi,1590 laurel,1,3kinghenryvi,1590 harder,1,3kinghenryvi,1590 Muster'd,1,3kinghenryvi,1590 chameleon,1,3kinghenryvi,1590 Likely,1,3kinghenryvi,1590 fasts,1,3kinghenryvi,1590 southern,1,3kinghenryvi,1590 wasted,1,3kinghenryvi,1590 diest,1,3kinghenryvi,1590 ista,1,3kinghenryvi,1590 forswore,1,3kinghenryvi,1590 Creator's,1,3kinghenryvi,1590 haven,1,3kinghenryvi,1590 Prepare,1,3kinghenryvi,1590 Helen,1,3kinghenryvi,1590 orisons,1,3kinghenryvi,1590 shaken,1,3kinghenryvi,1590 twain,1,3kinghenryvi,1590 bosom,1,3kinghenryvi,1590 Indian,1,3kinghenryvi,1590 fear'd,1,3kinghenryvi,1590 shot,1,3kinghenryvi,1590 puts,1,3kinghenryvi,1590 combat,1,3kinghenryvi,1590 except,1,3kinghenryvi,1590 moan,1,3kinghenryvi,1590 vowed,1,3kinghenryvi,1590 creatures,1,3kinghenryvi,1590 renowned,1,3kinghenryvi,1590 obey'd,1,3kinghenryvi,1590 forcible,1,3kinghenryvi,1590 pikes,1,3kinghenryvi,1590 dyed,1,3kinghenryvi,1590 ghostly,1,3kinghenryvi,1590 rightly,1,3kinghenryvi,1590 attempting,1,3kinghenryvi,1590 girt,1,3kinghenryvi,1590 betide,1,3kinghenryvi,1590 open'd,1,3kinghenryvi,1590 beggars,1,3kinghenryvi,1590 lukewarm,1,3kinghenryvi,1590 Short,1,3kinghenryvi,1590 olive,1,3kinghenryvi,1590 Margaret's,1,3kinghenryvi,1590 misfortune's,1,3kinghenryvi,1590 furnish,1,3kinghenryvi,1590 knock,1,3kinghenryvi,1590 quicksand,1,3kinghenryvi,1590 bought,1,3kinghenryvi,1590 Accursed,1,3kinghenryvi,1590 comic,1,3kinghenryvi,1590 undone,1,3kinghenryvi,1590 mellow'd,1,3kinghenryvi,1590 complices,1,3kinghenryvi,1590 Hark,1,3kinghenryvi,1590 purchased,1,3kinghenryvi,1590 fee,1,3kinghenryvi,1590 Sirrah,1,3kinghenryvi,1590 rave,1,3kinghenryvi,1590 native,1,3kinghenryvi,1590 array,1,3kinghenryvi,1590 chides,1,3kinghenryvi,1590 manors,1,3kinghenryvi,1590 coffins,1,3kinghenryvi,1590 Misthink,1,3kinghenryvi,1590 butcher's,1,3kinghenryvi,1590 sanctuary,1,3kinghenryvi,1590 net,1,3kinghenryvi,1590 Elysium,1,3kinghenryvi,1590 befell,1,3kinghenryvi,1590 sovereigns,1,3kinghenryvi,1590 tragic,1,3kinghenryvi,1590 Enforced,1,3kinghenryvi,1590 Jesus,1,3kinghenryvi,1590 feign,1,3kinghenryvi,1590 treasures,1,3kinghenryvi,1590 overgone,1,3kinghenryvi,1590 precedent,1,3kinghenryvi,1590 Europe,1,3kinghenryvi,1590 servitor,1,3kinghenryvi,1590 Ave,1,3kinghenryvi,1590 Into,1,3kinghenryvi,1590 witch,1,3kinghenryvi,1590 Suggest,1,3kinghenryvi,1590 trumpet's,1,3kinghenryvi,1590 racking,1,3kinghenryvi,1590 scalding,1,3kinghenryvi,1590 deniest,1,3kinghenryvi,1590 Admiral,1,3kinghenryvi,1590 coop'd,1,3kinghenryvi,1590 tough,1,3kinghenryvi,1590 Command,1,3kinghenryvi,1590 breech,1,3kinghenryvi,1590 dip'dst,1,3kinghenryvi,1590 hawthorn,1,3kinghenryvi,1590 Phoebus,1,3kinghenryvi,1590 Madam,1,3kinghenryvi,1590 suppresseth,1,3kinghenryvi,1590 Shout,1,3kinghenryvi,1590 incomparable,1,3kinghenryvi,1590 fared,1,3kinghenryvi,1590 main,1,3kinghenryvi,1590 maid,1,3kinghenryvi,1590 threescore,1,3kinghenryvi,1590 counterfeiting,1,3kinghenryvi,1590 younker,1,3kinghenryvi,1590 repass'd,1,3kinghenryvi,1590 empty,1,3kinghenryvi,1590 Ten,1,3kinghenryvi,1590 carries,1,3kinghenryvi,1590 Canst,1,3kinghenryvi,1590 griefs,1,3kinghenryvi,1590 Aldermen,1,3kinghenryvi,1590 hilt,1,3kinghenryvi,1590 apprehension,1,3kinghenryvi,1590 Smiles,1,3kinghenryvi,1590 forewarned,1,3kinghenryvi,1590 clamour,1,3kinghenryvi,1590 indeed,1,3kinghenryvi,1590 Congeal'd,1,3kinghenryvi,1590 Ireland,1,3kinghenryvi,1590 faction,1,3kinghenryvi,1590 build,1,3kinghenryvi,1590 dragged,1,3kinghenryvi,1590 AEsop,1,3kinghenryvi,1590 couldst,1,3kinghenryvi,1590 mountains,1,3kinghenryvi,1590 Archbishop,1,3kinghenryvi,1590 triumphant,1,3kinghenryvi,1590 whelp,1,3kinghenryvi,1590 smallest,1,3kinghenryvi,1590 Brothers,1,3kinghenryvi,1590 Conditionally,1,3kinghenryvi,1590 Better,1,3kinghenryvi,1590 repose,1,3kinghenryvi,1590 flocks,1,3kinghenryvi,1590 Else,1,3kinghenryvi,1590 install'd,1,3kinghenryvi,1590 nose,1,3kinghenryvi,1590 midst,1,3kinghenryvi,1590 marks,1,3kinghenryvi,1590 envy,1,3kinghenryvi,1590 number'd,1,3kinghenryvi,1590 fable,1,3kinghenryvi,1590 beast,1,3kinghenryvi,1590 almost,1,3kinghenryvi,1590 waken,1,3kinghenryvi,1590 strengthen'd,1,3kinghenryvi,1590 Hames,1,3kinghenryvi,1590 halberds,1,3kinghenryvi,1590 signified,1,3kinghenryvi,1590 glues,1,3kinghenryvi,1590 cedar,1,3kinghenryvi,1590 conquer'd,1,3kinghenryvi,1590 glued,1,3kinghenryvi,1590 pinch'd,1,3kinghenryvi,1590 fetlocks,1,3kinghenryvi,1590 Injurious,1,3kinghenryvi,1590 guess'd,1,3kinghenryvi,1590 fretting,1,3kinghenryvi,1590 sprung,1,3kinghenryvi,1590 mislike,1,3kinghenryvi,1590 forsaken,1,3kinghenryvi,1590 view'd,1,3kinghenryvi,1590 below,1,3kinghenryvi,1590 Was't,1,3kinghenryvi,1590 vapours,1,3kinghenryvi,1590 contention,1,3kinghenryvi,1590 bottle,1,3kinghenryvi,1590 disgraced,1,3kinghenryvi,1590 requireth,1,3kinghenryvi,1590 captivity,1,3kinghenryvi,1590 slipp'd,1,3kinghenryvi,1590 queens,1,3kinghenryvi,1590 tigers,1,3kinghenryvi,1590 pleaseth,1,3kinghenryvi,1590 candle,1,3kinghenryvi,1590 hide,1,3kinghenryvi,1590 ewes,1,3kinghenryvi,1590 pensive,1,3kinghenryvi,1590 Scorning,1,3kinghenryvi,1590 parch'd,1,3kinghenryvi,1590 chaos,1,3kinghenryvi,1590 call'dst,1,3kinghenryvi,1590 Beseeching,1,3kinghenryvi,1590 Base,1,3kinghenryvi,1590 mock'd,1,3kinghenryvi,1590 chase,1,3kinghenryvi,1590 excuses,1,3kinghenryvi,1590 Down,1,3kinghenryvi,1590 adventure,1,3kinghenryvi,1590 furnace,1,3kinghenryvi,1590 annoy,1,3kinghenryvi,1590 extraught,1,3kinghenryvi,1590 Sit,1,3kinghenryvi,1590 borough,1,3kinghenryvi,1590 charm,1,3kinghenryvi,1590 thirsty,1,3kinghenryvi,1590 grants,1,3kinghenryvi,1590 slake,1,3kinghenryvi,1590 withdrawn,1,3kinghenryvi,1590 Royal,1,3kinghenryvi,1590 parting,1,3kinghenryvi,1590 coronation,1,3kinghenryvi,1590 springs,1,3kinghenryvi,1590 misery,1,3kinghenryvi,1590 mouth,1,3kinghenryvi,1590 Berwick,1,3kinghenryvi,1590 scare,1,3kinghenryvi,1590 Flanders,1,3kinghenryvi,1590 inly,1,3kinghenryvi,1590 bestride,1,3kinghenryvi,1590 overlook,1,3kinghenryvi,1590 tutor,1,3kinghenryvi,1590 question,1,3kinghenryvi,1590 resisted,1,3kinghenryvi,1590 unprovided,1,3kinghenryvi,1590 forecast,1,3kinghenryvi,1590 recount,1,3kinghenryvi,1590 inform'd,1,3kinghenryvi,1590 general,1,3kinghenryvi,1590 discontent,1,3kinghenryvi,1590 effect,1,3kinghenryvi,1590 spurn,1,3kinghenryvi,1590 device,1,3kinghenryvi,1590 pretend,1,3kinghenryvi,1590 set'st,1,3kinghenryvi,1590 strife,1,3kinghenryvi,1590 prayerbook,1,3kinghenryvi,1590 elsewhere,1,3kinghenryvi,1590 Arm'd,1,3kinghenryvi,1590 industry,1,3kinghenryvi,1590 Witty,1,3kinghenryvi,1590 covert,1,3kinghenryvi,1590 satisfaction,1,3kinghenryvi,1590 mans,1,3kinghenryvi,1590 conclusion,1,3kinghenryvi,1590 mightst,1,3kinghenryvi,1590 shield,1,3kinghenryvi,1590 'Arm,1,3kinghenryvi,1590 steely,1,3kinghenryvi,1590 range,1,3kinghenryvi,1590 plead,1,3kinghenryvi,1590 Maries,1,3kinghenryvi,1590 bosoms,1,3kinghenryvi,1590 foolish,1,3kinghenryvi,1590 Sons,1,3kinghenryvi,1590 Mark'd,1,3kinghenryvi,1590 observation,1,3kinghenryvi,1590 mutter,1,3kinghenryvi,1590 beads,1,3kinghenryvi,1590 Roger,1,3kinghenryvi,1590 wrought,1,3kinghenryvi,1590 keeper,1,3kinghenryvi,1590 Gallia,1,3kinghenryvi,1590 dowry,1,3kinghenryvi,1590 treacherously,1,3kinghenryvi,1590 beggar,1,3kinghenryvi,1590 chain,1,3kinghenryvi,1590 sacrificed,1,3kinghenryvi,1590 reverently,1,3kinghenryvi,1590 bloods,1,3kinghenryvi,1590 procure,1,3kinghenryvi,1590 midwife,1,3kinghenryvi,1590 curtsy,1,3kinghenryvi,1590 shrubs,1,3kinghenryvi,1590 tents,1,3kinghenryvi,1590 devil',1,3kinghenryvi,1590 Bearing,1,3kinghenryvi,1590 invectives,1,3kinghenryvi,1590 mark,1,3kinghenryvi,1590 son's,1,3kinghenryvi,1590 ranks,1,3kinghenryvi,1590 persuaded,1,3kinghenryvi,1590 mars,1,3kinghenryvi,1590 injuries,1,3kinghenryvi,1590 penitence,1,3kinghenryvi,1590 knits,1,3kinghenryvi,1590 blot,1,3kinghenryvi,1590 coverture,1,3kinghenryvi,1590 misled,1,3kinghenryvi,1590 veil,1,3kinghenryvi,1590 Brethren,1,3kinghenryvi,1590 Thee,1,3kinghenryvi,1590 Aubrey,1,3kinghenryvi,1590 quoth,1,3kinghenryvi,1590 leader,1,3kinghenryvi,1590 ungentle,1,3kinghenryvi,1590 Revoke,1,3kinghenryvi,1590 revengeful,1,3kinghenryvi,1590 starved,1,3kinghenryvi,1590 'Go,1,3kinghenryvi,1590 craves,1,3kinghenryvi,1590 beside,1,3kinghenryvi,1590 Torment,1,3kinghenryvi,1590 infect,1,3kinghenryvi,1590 struggles,1,3kinghenryvi,1590 thief,1,3kinghenryvi,1590 special,1,3kinghenryvi,1590 inexorable,1,3kinghenryvi,1590 mountain,1,3kinghenryvi,1590 fret,1,3kinghenryvi,1590 arch,1,3kinghenryvi,1590 brethren,1,3kinghenryvi,1590 higher,1,3kinghenryvi,1590 peremptory,1,3kinghenryvi,1590 Somerville,1,3kinghenryvi,1590 search,1,3kinghenryvi,1590 dishonours,1,3kinghenryvi,1590 discharge,1,3kinghenryvi,1590 snarl,1,3kinghenryvi,1590 Menelaus,1,3kinghenryvi,1590 worthless,1,3kinghenryvi,1590 doubted,1,3kinghenryvi,1590 Reignier,1,3kinghenryvi,1590 gin,1,3kinghenryvi,1590 abandon'd,1,3kinghenryvi,1590 fist,1,3kinghenryvi,1590 privileged,1,3kinghenryvi,1590 impiety,1,3kinghenryvi,1590 subdue,1,3kinghenryvi,1590 stratagems,1,3kinghenryvi,1590 mockery,1,3kinghenryvi,1590 disguised,1,3kinghenryvi,1590 Perhaps,1,3kinghenryvi,1590 fills,1,3kinghenryvi,1590 wet,1,3kinghenryvi,1590 Giving,1,3kinghenryvi,1590 sand,1,3kinghenryvi,1590 Commanded,1,3kinghenryvi,1590 maintain'd,1,3kinghenryvi,1590 desired,1,3kinghenryvi,1590 living,1,3kinghenryvi,1590 ones,1,3kinghenryvi,1590 Chaplain,1,3kinghenryvi,1590 hardest,1,3kinghenryvi,1590 Hyrcania,1,3kinghenryvi,1590 wealthy,1,3kinghenryvi,1590 woodcock,1,3kinghenryvi,1590 fray,1,3kinghenryvi,1590 Wert,1,3kinghenryvi,1590 proves,1,3kinghenryvi,1590 Cheer'd,1,3kinghenryvi,1590 suspicion,1,3kinghenryvi,1590 Mortimer's,1,3kinghenryvi,1590 slight,1,3kinghenryvi,1590 affairs,1,3kinghenryvi,1590 presaging,1,3kinghenryvi,1590 opinion,1,3kinghenryvi,1590 proved,1,3kinghenryvi,1590 despairing,1,3kinghenryvi,1590 neat,1,3kinghenryvi,1590 Tidings,1,3kinghenryvi,1590 stale,1,3kinghenryvi,1590 Instead,1,3kinghenryvi,1590 neck,1,3kinghenryvi,1590 Ambitious,1,3kinghenryvi,1590 understanding,1,3kinghenryvi,1590 pomp,1,3kinghenryvi,1590 safely,1,3kinghenryvi,1590 swain,1,3kinghenryvi,1590 Confess,1,3kinghenryvi,1590 wrapt,1,3kinghenryvi,1590 sides,1,3kinghenryvi,1590 Witness,1,3kinghenryvi,1590 Defy,1,3kinghenryvi,1590 Went,1,3kinghenryvi,1590 unpardonable,1,3kinghenryvi,1590 privy,1,3kinghenryvi,1590 mow'd,1,3kinghenryvi,1590 hateful,1,3kinghenryvi,1590 redemption,1,3kinghenryvi,1590 'Twill,1,3kinghenryvi,1590 Taking,1,3kinghenryvi,1590 impose,1,3kinghenryvi,1590 tumultuous,1,3kinghenryvi,1590 youngest,1,3kinghenryvi,1590 unstanched,1,3kinghenryvi,1590 Sad,1,3kinghenryvi,1590 fetch,1,3kinghenryvi,1590 welfare,1,3kinghenryvi,1590 buckle,1,3kinghenryvi,1590 stigmatic,1,3kinghenryvi,1590 flexible,1,3kinghenryvi,1590 third,1,3kinghenryvi,1590 err'd,1,3kinghenryvi,1590 provinces,1,3kinghenryvi,1590 morrow,1,3kinghenryvi,1590 upright,1,3kinghenryvi,1590 prime,1,3kinghenryvi,1590 haughty,1,3kinghenryvi,1590 sitting,1,3kinghenryvi,1590 Infuse,1,3kinghenryvi,1590 gay,1,3kinghenryvi,1590 banish'd,1,3kinghenryvi,1590 bandy,1,3kinghenryvi,1590 falchion,1,3kinghenryvi,1590 Guess,1,3kinghenryvi,1590 Exempt,1,3kinghenryvi,1590 moment,1,3kinghenryvi,1590 callet,1,3kinghenryvi,1590 recover'd,1,3kinghenryvi,1590 meaner,1,3kinghenryvi,1590 recover,1,3kinghenryvi,1590 posted,1,3kinghenryvi,1590 closer,1,3kinghenryvi,1590 bestow'd,1,3kinghenryvi,1590 conspire,1,3kinghenryvi,1590 lightness,1,3kinghenryvi,1590 oak,1,3kinghenryvi,1590 Dear,1,3kinghenryvi,1590 Antipodes,1,3kinghenryvi,1590 'no',1,3kinghenryvi,1590 Germans,1,3kinghenryvi,1590 obsequies,1,3kinghenryvi,1590 hearers,1,3kinghenryvi,1590 talons,1,3kinghenryvi,1590 ripe,1,3kinghenryvi,1590 gainsays,1,3kinghenryvi,1590 standing,1,3kinghenryvi,1590 Herefordshire,1,3kinghenryvi,1590 niece,1,3kinghenryvi,1590 subtle,1,3kinghenryvi,1590 thwarting,1,3kinghenryvi,1590 renown'd,1,3kinghenryvi,1590 champion,1,3kinghenryvi,1590 protection,1,3kinghenryvi,1590 fling,1,3kinghenryvi,1590 widows,1,3kinghenryvi,1590 burthen,1,3kinghenryvi,1590 speedily,1,3kinghenryvi,1590 sinews,1,3kinghenryvi,1590 accomplish,1,3kinghenryvi,1590 Shed,1,3kinghenryvi,1590 believe,1,3kinghenryvi,1590 stage,1,3kinghenryvi,1590 Weep,1,3kinghenryvi,1590 Throw,1,3kinghenryvi,1590 staff,1,3kinghenryvi,1590 actors,1,3kinghenryvi,1590 prevail,1,3kinghenryvi,1590 hopeless,1,3kinghenryvi,1590 trusty,1,3kinghenryvi,1590 nuptial,1,3kinghenryvi,1590 fount,1,3kinghenryvi,1590 becomest,1,3kinghenryvi,1590 departing,1,3kinghenryvi,1590 Where'er,1,3kinghenryvi,1590 Unsavoury,1,3kinghenryvi,1590 intend,1,3kinghenryvi,1590 found,1,3kinghenryvi,1590 sufferance,1,3kinghenryvi,1590 assure,1,3kinghenryvi,1590 greetings,1,3kinghenryvi,1590 dying,1,3kinghenryvi,1590 rids,1,3kinghenryvi,1590 Tire,1,3kinghenryvi,1590 presumptuous,1,3kinghenryvi,1590 tuae,1,3kinghenryvi,1590 XI's,1,3kinghenryvi,1590 supper,1,3kinghenryvi,1590 villains,1,3kinghenryvi,1590 split,1,3kinghenryvi,1590 confiscate,1,3kinghenryvi,1590 forfend,1,3kinghenryvi,1590 wheel,1,3kinghenryvi,1590 bells,1,3kinghenryvi,1590 beseems,1,3kinghenryvi,1590 belly,1,3kinghenryvi,1590 Throws,1,3kinghenryvi,1590 possess,1,3kinghenryvi,1590 flail,1,3kinghenryvi,1590 caught,1,3kinghenryvi,1590 enforced,1,3kinghenryvi,1590 hair,1,3kinghenryvi,1590 Shame,1,3kinghenryvi,1590 hail,1,3kinghenryvi,1590 Gives,1,3kinghenryvi,1590 mightily,1,3kinghenryvi,1590 premeditation,1,3kinghenryvi,1590 surprised,1,3kinghenryvi,1590 fix'd,1,3kinghenryvi,1590 raging,1,3kinghenryvi,1590 undutiful,1,3kinghenryvi,1590 bruit,1,3kinghenryvi,1590 Greece,1,3kinghenryvi,1590 IV's,1,3kinghenryvi,1590 ransom,1,3kinghenryvi,1590 penitent,1,3kinghenryvi,1590 rages,1,3kinghenryvi,1590 faced,1,3kinghenryvi,1590 Inferring,1,3kinghenryvi,1590 put'st,1,3kinghenryvi,1590 earthly,1,3kinghenryvi,1590 rotten,1,3kinghenryvi,1590 virtue's,1,3kinghenryvi,1590 keeper's,1,3kinghenryvi,1590 charged,1,3kinghenryvi,1590 size,1,3kinghenryvi,1590 fondly,1,3kinghenryvi,1590 weeping,1,3kinghenryvi,1590 forfeit,1,3kinghenryvi,1590 spleen,1,3kinghenryvi,1590 opposite,1,3kinghenryvi,1590 inclination,1,3kinghenryvi,1590 compass,1,3kinghenryvi,1590 knight,1,3kinghenryvi,1590 lust,1,3kinghenryvi,1590 lopp'd,1,3kinghenryvi,1590 wife's,1,3kinghenryvi,1590 earldom,1,3kinghenryvi,1590 rail,1,3kinghenryvi,1590 pitchy,1,3kinghenryvi,1590 haply,1,3kinghenryvi,1590 baleful,1,3kinghenryvi,1590 soldiers',1,3kinghenryvi,1590 nest,1,3kinghenryvi,1590 sweeps,1,3kinghenryvi,1590 sedition,1,3kinghenryvi,1590 farther,1,3kinghenryvi,1590 determined,1,3kinghenryvi,1590 drops,1,3kinghenryvi,1590 harvest,1,3kinghenryvi,1590 Amongst,1,3kinghenryvi,1590 Deposed,1,3kinghenryvi,1590 wooer,1,3kinghenryvi,1590 fox,1,3kinghenryvi,1590 Forbear,1,3kinghenryvi,1590 angry,1,3kinghenryvi,1590 falling,1,3kinghenryvi,1590 avoiding,1,3kinghenryvi,1590 stoutly,1,3kinghenryvi,1590 wrong'd,1,3kinghenryvi,1590 embroider'd,1,3kinghenryvi,1590 unfortunate,1,3kinghenryvi,1590 fail,1,3kinghenryvi,1590 flow'd,1,3kinghenryvi,1590 glad,1,3kinghenryvi,1590 outstretched,1,3kinghenryvi,1590 Strike,1,3kinghenryvi,1590 hideous,1,3kinghenryvi,1590 Show,1,3kinghenryvi,1590 fain,1,3kinghenryvi,1590 table,1,3kinghenryvi,1590 hunger,1,3kinghenryvi,1590 weakling,1,3kinghenryvi,1590 unsheathe,1,3kinghenryvi,1590 lustful,1,3kinghenryvi,1590 assail,1,3kinghenryvi,1590 Many,1,3kinghenryvi,1590 perfections,1,3kinghenryvi,1590 wept,1,3kinghenryvi,1590 chimney's,1,3kinghenryvi,1590 cloth,1,3kinghenryvi,1590 judge,1,3kinghenryvi,1590 weapons,1,3kinghenryvi,1590 sportful,1,3kinghenryvi,1590 modesty,1,3kinghenryvi,1590 augmented,1,3kinghenryvi,1590 diamonds,1,3kinghenryvi,1590 delays,1,3kinghenryvi,1590 cares,1,3kinghenryvi,1590 Forspent,1,3kinghenryvi,1590 victor,1,3kinghenryvi,1590 hitherward,1,3kinghenryvi,1590 sin's,1,3kinghenryvi,1590 wilful,1,3kinghenryvi,1590 lump,1,3kinghenryvi,1590 lasting,1,3kinghenryvi,1590 answers,1,3kinghenryvi,1590 Greeks,1,3kinghenryvi,1590 race,1,3kinghenryvi,1590 kinsman,1,3kinghenryvi,1590 misfortune,1,3kinghenryvi,1590 pleased,1,3kinghenryvi,1590 worm,1,3kinghenryvi,1590 worn,1,3kinghenryvi,1590 indigested,1,3kinghenryvi,1590 overpeer'd,1,3kinghenryvi,1590 scolding,1,3kinghenryvi,1590 passing,1,3kinghenryvi,1590 skilful,1,3kinghenryvi,1590 ride,1,3kinghenryvi,1590 overboard,1,3kinghenryvi,1590 unjust,1,3kinghenryvi,1590 puller,1,3kinghenryvi,1590 fiercely,1,3kinghenryvi,1590 'Commend,1,3kinghenryvi,1590 fit,1,3kinghenryvi,1590 officer,1,3kinghenryvi,1590 impeach,1,3kinghenryvi,1590 gazing,1,3kinghenryvi,1590 allay'd,1,3kinghenryvi,1590 issuing,1,3kinghenryvi,1590 swallow'd,1,3kinghenryvi,1590 Calais,1,3kinghenryvi,1590 rich,1,3kinghenryvi,1590 pleases,1,3kinghenryvi,1590 foemen,1,3kinghenryvi,1590 Attend,1,3kinghenryvi,1590 punish'd,1,3kinghenryvi,1590 savage,1,3kinghenryvi,1590 channel,1,3kinghenryvi,1590 Bids't,1,3kinghenryvi,1590 Bourbon,1,3kinghenryvi,1590 horn,1,3kinghenryvi,1590 Oxfordshire,1,3kinghenryvi,1590 buckler,1,3kinghenryvi,1590 married,1,3kinghenryvi,1590 rebuke,1,3kinghenryvi,1590 lordship,1,3kinghenryvi,1590 tackles,1,3kinghenryvi,1590 host,1,3kinghenryvi,1590 ta'en,1,3kinghenryvi,1590 abreast,1,3kinghenryvi,1590 alway,1,3kinghenryvi,1590 'Content',1,3kinghenryvi,1590 shown,1,3kinghenryvi,1590 worship,1,3kinghenryvi,1590 Flattering,1,3kinghenryvi,1590 wealth,1,3kinghenryvi,1590 herself,1,3kinghenryvi,1590 fawn,1,3kinghenryvi,1590 uncle,1,3kinghenryvi,1590 heirs',1,3kinghenryvi,1590 vex,1,3kinghenryvi,1590 Work,1,3kinghenryvi,1590 beware,1,3kinghenryvi,1590 mates,1,3kinghenryvi,1590 chiefly,1,3kinghenryvi,1590 counterpoised,1,3kinghenryvi,1590 butcherly,1,3kinghenryvi,1590 partly,1,3kinghenryvi,1590 foaming,1,3kinghenryvi,1590 wives,1,3kinghenryvi,1590 wonted,1,3kinghenryvi,1590 'Good,1,3kinghenryvi,1590 dastard,1,3kinghenryvi,1590 comfort,1,3kinghenryvi,1590 base,1,3kinghenryvi,1590 aunt,1,3kinghenryvi,1590 allow'd,1,3kinghenryvi,1590 prophesy,1,3kinghenryvi,1590 marcheth,1,3kinghenryvi,1590 appointed,1,3kinghenryvi,1590 band,1,3kinghenryvi,1590 Icarus,1,3kinghenryvi,1590 friendship,1,3kinghenryvi,1590 lasted,1,3kinghenryvi,1590 effuse,1,3kinghenryvi,1590 dad,1,3kinghenryvi,1590 flames,1,3kinghenryvi,1590 Environed,1,3kinghenryvi,1590 cools,1,3kinghenryvi,1590 weakness,1,3kinghenryvi,1590 Vere,1,3kinghenryvi,1590 rising,1,3kinghenryvi,1590 footstool,1,3kinghenryvi,1590 replant,1,3kinghenryvi,1590 large,1,3kinghenryvi,1590 Field,1,3kinghenryvi,1590 Each,1,3kinghenryvi,1590 Seats,1,3kinghenryvi,1590 boldly,1,3kinghenryvi,1590 blaze,1,3kinghenryvi,1590 surly,1,3kinghenryvi,1590 Offers,1,3kinghenryvi,1590 lights,1,3kinghenryvi,1590 released,1,3kinghenryvi,1590 author,1,3kinghenryvi,1590 tale,1,3kinghenryvi,1590 coal,1,3kinghenryvi,1590 is't,1,3kinghenryvi,1590 Shamest,1,3kinghenryvi,1590 lap,1,3kinghenryvi,1590 timorous,1,3kinghenryvi,1590 law,1,3kinghenryvi,1590 Daintry,1,3kinghenryvi,1590 saddest,1,3kinghenryvi,1590 cable,1,3kinghenryvi,1590 marries,1,3kinghenryvi,1590 arm'd,1,3kinghenryvi,1590 Priam,1,3kinghenryvi,1590 source,1,3kinghenryvi,1590 MARQUESS,1,3kinghenryvi,1590 knighthood,1,3kinghenryvi,1590 unpeople,1,3kinghenryvi,1590 bind,1,3kinghenryvi,1590 cup,1,3kinghenryvi,1590 Sprawl'st,1,3kinghenryvi,1590 brotherhood,1,3kinghenryvi,1590 hatred,1,3kinghenryvi,1590 sufficient,1,3kinghenryvi,1590 Trust,1,3kinghenryvi,1590 Assist,1,3kinghenryvi,1590 entering,1,3kinghenryvi,1590 asunder,1,3kinghenryvi,1590 Rather,1,3kinghenryvi,1590 alms,1,3kinghenryvi,1590 creep,1,3kinghenryvi,1590 ought,1,3kinghenryvi,1590 shore,1,3kinghenryvi,1590 swears,1,3kinghenryvi,1590 quit,1,3kinghenryvi,1590 short,1,3kinghenryvi,1590 misproud,1,3kinghenryvi,1590 Bonville,1,3kinghenryvi,1590 tearful,1,3kinghenryvi,1590 greyhounds,1,3kinghenryvi,1590 greet,1,3kinghenryvi,1590 gainsay,1,3kinghenryvi,1590 Diomede,1,3kinghenryvi,1590 toiling,1,3kinghenryvi,1590 hollow,1,3kinghenryvi,1590 helmets,1,3kinghenryvi,1590 giddy,1,3kinghenryvi,1590 cur,1,3kinghenryvi,1590 Although,1,3kinghenryvi,1590 Matter,1,3kinghenryvi,1590 owl's,1,3kinghenryvi,1590 pangs,1,3kinghenryvi,1590 Who's,1,3kinghenryvi,1590 counterfeit,1,3kinghenryvi,1590 carve,1,3kinghenryvi,1590 fires,1,3kinghenryvi,1590 family,1,3kinghenryvi,1590 cowards,1,3kinghenryvi,1590 Via,1,3kinghenryvi,1590 sunder,1,3kinghenryvi,1590 environ'd,1,3kinghenryvi,1590 loyal,1,3kinghenryvi,1590 revolt,1,3kinghenryvi,1590 asking,1,3kinghenryvi,1590 assist,1,3kinghenryvi,1590 cheerly,1,3kinghenryvi,1590 depth,1,3kinghenryvi,1590 commonwealth,1,3kinghenryvi,1590 Cliffords,1,3kinghenryvi,1590 eagle's,1,3kinghenryvi,1590 slanders,1,3kinghenryvi,1590 Charged,1,3kinghenryvi,1590 impaled,1,3kinghenryvi,1590 Deceitful,1,3kinghenryvi,1590 gives,1,3kinghenryvi,1590 notwithstanding,1,3kinghenryvi,1590 profits,1,3kinghenryvi,1590 fitted,1,3kinghenryvi,1590 Seize,1,3kinghenryvi,1590 prayers,1,3kinghenryvi,1590 cleft,1,3kinghenryvi,1590 rook'd,1,3kinghenryvi,1590 aspire,1,3kinghenryvi,1590 cope,1,3kinghenryvi,1590 fail'st,1,3kinghenryvi,1590 dissension,1,3kinghenryvi,1590 hung,1,3kinghenryvi,1590 hairs,1,3kinghenryvi,1590 adopt,1,3kinghenryvi,1590 hunt,1,3kinghenryvi,1590 cheerful,1,3kinghenryvi,1590 Nero,1,3kinghenryvi,1590 ignoble,1,3kinghenryvi,1590 dishonoured,1,3kinghenryvi,1590 bodes,1,3kinghenryvi,1590 winged,1,3kinghenryvi,1590 favour'd,1,3kinghenryvi,1590 breasts,1,3kinghenryvi,1590 bachelor,1,3kinghenryvi,1590 blade,1,3kinghenryvi,1590 adieu,1,3kinghenryvi,1590 fairer,1,3kinghenryvi,1590 drunk,1,3kinghenryvi,1590 babe,1,3kinghenryvi,1590 captain,1,3kinghenryvi,1590 adder's,1,3kinghenryvi,1590 decree,1,3kinghenryvi,1590 suits,1,3kinghenryvi,1590 cony,1,3kinghenryvi,1590 offspring,1,3kinghenryvi,1590 Right,1,3kinghenryvi,1590 oppress'd,1,3kinghenryvi,1590 pronounced,1,3kinghenryvi,1590 Nestor,1,3kinghenryvi,1590 priesthood,1,3kinghenryvi,1590 aboding,1,3kinghenryvi,1590 promiseth,1,3kinghenryvi,1590 gnats,1,3kinghenryvi,1590 troth,1,3kinghenryvi,1590 presence,1,3kinghenryvi,1590 south,1,3kinghenryvi,1590 decease,1,3kinghenryvi,1590 screech,1,3kinghenryvi,1590 harmful,1,3kinghenryvi,1590 trespass,1,3kinghenryvi,1590 ended,1,3kinghenryvi,1590 presenteth,1,3kinghenryvi,1590 scrupulous,1,3kinghenryvi,1590 divorce,1,3kinghenryvi,1590 sees,1,3kinghenryvi,1590 heavens',1,3kinghenryvi,1590 drunken,1,3kinghenryvi,1590 valued,1,3kinghenryvi,1590 dauntless,1,3kinghenryvi,1590 period,1,3kinghenryvi,1590 Atlas,1,3kinghenryvi,1590 shapes,1,3kinghenryvi,1590 fellows,1,3kinghenryvi,1590 prophecy,1,3kinghenryvi,1590 tidings,1,3kinghenryvi,1590 Patience,1,3kinghenryvi,1590 Dian,1,3kinghenryvi,1590 Resign,1,3kinghenryvi,1590 aspiring,1,3kinghenryvi,1590 corn,1,3kinghenryvi,1590 captivates,1,3kinghenryvi,1590 Stern,1,3kinghenryvi,1590 fawns,1,3kinghenryvi,1590 Olympian,1,3kinghenryvi,1590 Dick,1,3kinghenryvi,1590 threshold,1,3kinghenryvi,1590 Sinon,1,3kinghenryvi,1590 changing,1,3kinghenryvi,1590 usage,1,3kinghenryvi,1590 increase,1,3kinghenryvi,1590 whate'er,1,3kinghenryvi,1590 Back'd,1,3kinghenryvi,1590 heavenly,1,3kinghenryvi,1590 Obeying,1,3kinghenryvi,1590 modest,1,3kinghenryvi,1590 deign,1,3kinghenryvi,1590 He'll,1,3kinghenryvi,1590 affright,1,3kinghenryvi,1590 'twill,1,3kinghenryvi,1590 avoid,1,3kinghenryvi,1590 fathers',1,3kinghenryvi,1590 jointure,1,3kinghenryvi,1590 Northampton,1,3kinghenryvi,1590 therein,1,3kinghenryvi,1590 trembles,1,3kinghenryvi,1590 distinguished,1,3kinghenryvi,1590 funeral,1,3kinghenryvi,1590 Roscius,1,3kinghenryvi,1590 dislike,1,3kinghenryvi,1590 suffice,1,3kinghenryvi,1590 topmost,1,3kinghenryvi,1590 Judas,1,3kinghenryvi,1590 self,1,3kinghenryvi,1590 according,1,3kinghenryvi,1590 mirror,1,3kinghenryvi,1590 raven,1,3kinghenryvi,1590 exceptions,1,3kinghenryvi,1590 Sent,1,3kinghenryvi,1590 remorseless,1,3kinghenryvi,1590 commixture,1,3kinghenryvi,1590 foretold,1,3kinghenryvi,1590 Neither,1,3kinghenryvi,1590 undo,1,3kinghenryvi,1590 Nurse,1,3kinghenryvi,1590 trusting,1,3kinghenryvi,1590 grieves,1,3kinghenryvi,1590 Intend,1,3kinghenryvi,1590 swell,1,3kinghenryvi,1590 axe's,1,3kinghenryvi,1590 grieved,1,3kinghenryvi,1590 Rivers,1,3kinghenryvi,1590 wrangling,1,3kinghenryvi,1590 injured,1,3kinghenryvi,1590 match,1,3kinghenryvi,1590 lastly,1,3kinghenryvi,1590 Bishop's,1,3kinghenryvi,1590 protest,1,3kinghenryvi,1590 purpose,1,3kinghenryvi,1590 aright,1,3kinghenryvi,1590 currish,1,3kinghenryvi,1590 mistrustful,1,3kinghenryvi,1590 canopy,1,3kinghenryvi,1590 safer,1,3kinghenryvi,1590 detect,1,3kinghenryvi,1590 howl'd,1,3kinghenryvi,1590 degraded,1,3kinghenryvi,1590 chances,1,3kinghenryvi,1590 instead,1,3kinghenryvi,1590 Subjects,1,3kinghenryvi,1590 ebb,1,3kinghenryvi,1590 contemplate,1,3kinghenryvi,1590 parcel,1,3kinghenryvi,1590 principal,1,3kinghenryvi,1590 thresher,1,3kinghenryvi,1590 laws,1,3kinghenryvi,1590 brow,1,3kinghenryvi,1590 slow,1,3kinghenryvi,1590 trod,1,3kinghenryvi,1590 away',1,3kinghenryvi,1590 withstand,1,3kinghenryvi,1590 ean,1,3kinghenryvi,1590 ear,1,3kinghenryvi,1590 struggle,1,3kinghenryvi,1590 divining,1,3kinghenryvi,1590 unbid,1,3kinghenryvi,1590 debate,1,3kinghenryvi,1590 write,1,3kinghenryvi,1590 cloudy,1,3kinghenryvi,1590 Tread,1,3kinghenryvi,1590 evening,1,3kinghenryvi,1590 spirits,1,3kinghenryvi,1590 laudis,1,3kinghenryvi,1590 alter'd,1,3kinghenryvi,1590 limbs,1,3kinghenryvi,1590 Albion's,1,3kinghenryvi,1590 sounded,1,3kinghenryvi,1590 perjury,1,3kinghenryvi,1590 nourish'd,1,3kinghenryvi,1590 lazy,1,3kinghenryvi,1590 distressed,1,3kinghenryvi,1590 'scape,1,3kinghenryvi,1590 lineally,1,3kinghenryvi,1590 Five,1,3kinghenryvi,1590 waned,1,3kinghenryvi,1590 smiling,1,3kinghenryvi,1590 clangour,1,3kinghenryvi,1590 bishop,1,3kinghenryvi,1590 poets,1,3kinghenryvi,1590 wring,1,3kinghenryvi,1590 impale,1,3kinghenryvi,1590 Dogs,1,3kinghenryvi,1590 doing,1,3kinghenryvi,1590 kindling,1,3kinghenryvi,1590 remember,1,3kinghenryvi,1590 cleaving,1,3kinghenryvi,1590 sadness,1,3kinghenryvi,1590 inferior,1,3kinghenryvi,1590 Sometime,1,3kinghenryvi,1590 island,1,3kinghenryvi,1590 unskilful,1,3kinghenryvi,1590 phoenix,1,3kinghenryvi,1590 armours,1,3kinghenryvi,1590 treacherous,1,3kinghenryvi,1590 Captain,1,3kinghenryvi,1590 link'd,1,3kinghenryvi,1590 upward,1,3kinghenryvi,1590 hardy,1,3kinghenryvi,1590 foretell,1,3kinghenryvi,1590 shambles,1,3kinghenryvi,1590 meeting,1,3kinghenryvi,1590 murder'd,1,3kinghenryvi,1590 nobody,1,3kinghenryvi,1590 Essex,1,3kinghenryvi,1590 'Retire,1,3kinghenryvi,1590 seduced,1,3kinghenryvi,1590 verified,1,3kinghenryvi,1590 whip,1,3kinghenryvi,1590 ladies,1,3kinghenryvi,1590 debating,1,3kinghenryvi,1590 biting,1,3kinghenryvi,1590 county,1,3kinghenryvi,1590 lay'st,1,3kinghenryvi,1590 unlick'd,1,3kinghenryvi,1590 Middleham,1,3kinghenryvi,1590 Tears,1,3kinghenryvi,1590 delicates,1,3kinghenryvi,1590 remaining,1,3kinghenryvi,1590 unnaturally,1,3kinghenryvi,1590 harmony,1,3kinghenryvi,1590 Frenchwoman,1,3kinghenryvi,1590 captives,1,3kinghenryvi,1590 Indeed,1,3kinghenryvi,1590 o'erbear,1,3kinghenryvi,1590 graybeards,1,3kinghenryvi,1590 dismiss,1,3kinghenryvi,1590 prowess,1,3kinghenryvi,1590 Marry,1,3kinghenryvi,1590 vizard,1,3kinghenryvi,1590 fraud,1,3kinghenryvi,1590 Thereby,1,3kinghenryvi,1590 nativity,1,3kinghenryvi,1590 deathmen,1,3kinghenryvi,1590 gulf,1,3kinghenryvi,1590 incessant,1,3kinghenryvi,1590 Yonder's,1,3kinghenryvi,1590 credit,1,3kinghenryvi,1590 preposterous,1,3kinghenryvi,1590 sheathe,1,3kinghenryvi,1590 runners,1,3kinghenryvi,1590 citizens,1,3kinghenryvi,1590 frivolous,1,3kinghenryvi,1590 beauty,1,3kinghenryvi,1590 brooks,1,3kinghenryvi,1590 peer,1,3kinghenryvi,1590 shelves,1,3kinghenryvi,1590 hewing,1,3kinghenryvi,1590 whet,1,3kinghenryvi,1590 harms,1,3kinghenryvi,1590 levied,1,3kinghenryvi,1590 sepulchres,1,3kinghenryvi,1590 breaking,1,3kinghenryvi,1590 Counting,1,3kinghenryvi,1590 ragged,1,3kinghenryvi,1590 venge,1,3kinghenryvi,1590 carelessly,1,3kinghenryvi,1590 entreaty,1,3kinghenryvi,1590 sway'd,1,3kinghenryvi,1590 o'ercharged,1,3kinghenryvi,1590 conflict,1,3kinghenryvi,1590 adage,1,3kinghenryvi,1590 try,1,3kinghenryvi,1590 assurance,1,3kinghenryvi,1590 Leicestershire,1,3kinghenryvi,1590 Therein,1,3kinghenryvi,1590 sentence,1,3kinghenryvi,1590 witness,1,3kinghenryvi,1590 leads,1,3kinghenryvi,1590 numbers,1,3kinghenryvi,1590 cover'd,1,3kinghenryvi,1590 reply,1,3kinghenryvi,1590 PLANTAGENET,1,3kinghenryvi,1590 You'll,1,3kinghenryvi,1590 payment,1,3kinghenryvi,1590 dash,1,3kinghenryvi,1590 sprang'st,1,3kinghenryvi,1590 Mount,1,3kinghenryvi,1590 dog,1,3kinghenryvi,1590 confirm,1,3kinghenryvi,1590 respect,1,3kinghenryvi,1590 mangled,1,3kinghenryvi,1590 harsh,1,3kinghenryvi,1590 dragging,1,3kinghenryvi,1590 Dazzle,1,3kinghenryvi,1590 losses,1,3kinghenryvi,1590 Wailing,1,3kinghenryvi,1590 famish,1,3kinghenryvi,1590 boisterous,1,3kinghenryvi,1590 meeds,1,3kinghenryvi,1590 frame,1,3kinghenryvi,1590 sounding,1,3kinghenryvi,1590 due,1,3kinghenryvi,1590 dub,1,3kinghenryvi,1590 Thracian,1,3kinghenryvi,1590 Butchers,1,3kinghenryvi,1590 lord's,1,3kinghenryvi,1590 pent,1,3kinghenryvi,1590 lane,1,3kinghenryvi,1590 privily,1,3kinghenryvi,1590 dispatch,1,3kinghenryvi,1590 injurious,1,3kinghenryvi,1590 conflicts,1,3kinghenryvi,1590 Wishing,1,3kinghenryvi,1590 poisons,1,3kinghenryvi,1590 DRAMATIS,1,3kinghenryvi,1590 lamp,1,3kinghenryvi,1590 shift,1,3kinghenryvi,1590 venom,1,3kinghenryvi,1590 spurr'd,1,3kinghenryvi,1590 rescue,1,3kinghenryvi,1590 shine,1,3kinghenryvi,1590 filled,1,3kinghenryvi,1590 chancellor,1,3kinghenryvi,1590 propose,1,3kinghenryvi,1590 Thereon,1,3kinghenryvi,1590 armed,1,3kinghenryvi,1590 flower,1,3kinghenryvi,1590 commanding,1,3kinghenryvi,1590 dame,1,3kinghenryvi,1590 noontide,1,3kinghenryvi,1590 Christendom,1,3kinghenryvi,1590 bechanced,1,3kinghenryvi,1590 quietly,1,3kinghenryvi,1590 obtain,1,3kinghenryvi,1590 trees,1,3kinghenryvi,1590 frail,1,3kinghenryvi,1590 Parliament,1,3kinghenryvi,1590 Talk,1,3kinghenryvi,1590 stings,1,3kinghenryvi,1590 Saxton,1,3kinghenryvi,1590 kind,1,3kinghenryvi,1590 private,1,3kinghenryvi,1590 dauphin,1,3kinghenryvi,1590 booty,1,3kinghenryvi,1590 tacklings,1,3kinghenryvi,1590 den,1,3kinghenryvi,1590 spray,1,3kinghenryvi,1590 reconcile,1,3kinghenryvi,1590 repaid,1,3kinghenryvi,1590 figures,1,3kinghenryvi,1590 darling,1,3kinghenryvi,1590 tainted,1,3kinghenryvi,1590 Saying,1,3kinghenryvi,1590 toads,1,3kinghenryvi,1590 mid,1,3kinghenryvi,1590 lade,1,3kinghenryvi,1590 dials,1,3kinghenryvi,1590 earth's,1,3kinghenryvi,1590 charity,1,3kinghenryvi,1590 Fight,1,3kinghenryvi,1590 striving,1,3kinghenryvi,1590 parley,1,3kinghenryvi,1590 Humbly,1,3kinghenryvi,1590 obedience,1,3kinghenryvi,1590 shape,1,3kinghenryvi,1590 petticoat,1,3kinghenryvi,1590 Hector,1,3kinghenryvi,1590 tread,1,3kinghenryvi,1590 spoils,1,3kinghenryvi,1590 bide,1,3kinghenryvi,1590 perhaps,1,3kinghenryvi,1590 chivalry,1,3kinghenryvi,1590 share,1,3kinghenryvi,1590 order,1,3kinghenryvi,1590 e'er,1,3kinghenryvi,1590 dig,1,3kinghenryvi,1590 ships,1,3kinghenryvi,1590 Hugh,1,3kinghenryvi,1590 unwares,1,3kinghenryvi,1590 consents,1,3kinghenryvi,1590 fortunes,1,3kinghenryvi,1590 WALES,1,3kinghenryvi,1590 beaver,1,3kinghenryvi,1590 swan,1,3kinghenryvi,1590 forgery,1,3kinghenryvi,1590 in,257,3kinghenryvi,1590 affords,2,3kinghenryvi,1590 luckless,2,3kinghenryvi,1590 Touching,2,3kinghenryvi,1590 willow,2,3kinghenryvi,1590 parted,2,3kinghenryvi,1590 swords,2,3kinghenryvi,1590 muster,2,3kinghenryvi,1590 c,2,3kinghenryvi,1590 fruits,2,3kinghenryvi,1590 speech,2,3kinghenryvi,1590 following,2,3kinghenryvi,1590 lament,2,3kinghenryvi,1590 hinder,2,3kinghenryvi,1590 traitor's,2,3kinghenryvi,1590 honours,2,3kinghenryvi,1590 honourably,2,3kinghenryvi,1590 hasty,2,3kinghenryvi,1590 Messengers,2,3kinghenryvi,1590 bones,2,3kinghenryvi,1590 stopp'd,2,3kinghenryvi,1590 highness',2,3kinghenryvi,1590 Women,2,3kinghenryvi,1590 proclaim'd,2,3kinghenryvi,1590 ere't,2,3kinghenryvi,1590 melt,2,3kinghenryvi,1590 held,2,3kinghenryvi,1590 Never,2,3kinghenryvi,1590 helm,2,3kinghenryvi,1590 'ay',2,3kinghenryvi,1590 strengthen,2,3kinghenryvi,1590 thorns,2,3kinghenryvi,1590 slaughter'd,2,3kinghenryvi,1590 thorny,2,3kinghenryvi,1590 finger,2,3kinghenryvi,1590 groan,2,3kinghenryvi,1590 herd,2,3kinghenryvi,1590 Either,2,3kinghenryvi,1590 Tewksbury,2,3kinghenryvi,1590 understand,2,3kinghenryvi,1590 maintain,2,3kinghenryvi,1590 Buckingham,2,3kinghenryvi,1590 drink,2,3kinghenryvi,1590 Ere,2,3kinghenryvi,1590 match'd,2,3kinghenryvi,1590 sour,2,3kinghenryvi,1590 under,2,3kinghenryvi,1590 yonder,2,3kinghenryvi,1590 taunts,2,3kinghenryvi,1590 beauty's,2,3kinghenryvi,1590 befall,2,3kinghenryvi,1590 rue,2,3kinghenryvi,1590 contrary,2,3kinghenryvi,1590 spark,2,3kinghenryvi,1590 battles,2,3kinghenryvi,1590 pursue,2,3kinghenryvi,1590 Once,2,3kinghenryvi,1590 downfall,2,3kinghenryvi,1590 Soldier,2,3kinghenryvi,1590 disdain,2,3kinghenryvi,1590 graced,2,3kinghenryvi,1590 birth,2,3kinghenryvi,1590 conscience,2,3kinghenryvi,1590 befall'n,2,3kinghenryvi,1590 befits,2,3kinghenryvi,1590 grown,2,3kinghenryvi,1590 bearing,2,3kinghenryvi,1590 saw,2,3kinghenryvi,1590 line,2,3kinghenryvi,1590 fortunate,2,3kinghenryvi,1590 sorrows,2,3kinghenryvi,1590 resolve,2,3kinghenryvi,1590 usurps,2,3kinghenryvi,1590 chop,2,3kinghenryvi,1590 calm,2,3kinghenryvi,1590 paper,2,3kinghenryvi,1590 officers,2,3kinghenryvi,1590 Yield,2,3kinghenryvi,1590 chains,2,3kinghenryvi,1590 amity,2,3kinghenryvi,1590 widow's,2,3kinghenryvi,1590 view,2,3kinghenryvi,1590 she's,2,3kinghenryvi,1590 six,2,3kinghenryvi,1590 waft,2,3kinghenryvi,1590 Off,2,3kinghenryvi,1590 sung,2,3kinghenryvi,1590 Pembroke,2,3kinghenryvi,1590 sir,2,3kinghenryvi,1590 fleece,2,3kinghenryvi,1590 impossible,2,3kinghenryvi,1590 usurp'd,2,3kinghenryvi,1590 eager,2,3kinghenryvi,1590 'A,2,3kinghenryvi,1590 wall,2,3kinghenryvi,1590 merry,2,3kinghenryvi,1590 monarch,2,3kinghenryvi,1590 mocking,2,3kinghenryvi,1590 Write,2,3kinghenryvi,1590 deceit,2,3kinghenryvi,1590 chiefest,2,3kinghenryvi,1590 lions,2,3kinghenryvi,1590 scorn,2,3kinghenryvi,1590 nine,2,3kinghenryvi,1590 forsake,2,3kinghenryvi,1590 worth,2,3kinghenryvi,1590 entail,2,3kinghenryvi,1590 famed,2,3kinghenryvi,1590 raised,2,3kinghenryvi,1590 'O,2,3kinghenryvi,1590 stern,2,3kinghenryvi,1590 Their,2,3kinghenryvi,1590 pitiful,2,3kinghenryvi,1590 lambs,2,3kinghenryvi,1590 quondam,2,3kinghenryvi,1590 Watchmen,2,3kinghenryvi,1590 war's,2,3kinghenryvi,1590 play'd,2,3kinghenryvi,1590 bewray,2,3kinghenryvi,1590 cheers,2,3kinghenryvi,1590 thieves,2,3kinghenryvi,1590 worst,2,3kinghenryvi,1590 taught,2,3kinghenryvi,1590 reap,2,3kinghenryvi,1590 worse,2,3kinghenryvi,1590 felt,2,3kinghenryvi,1590 accursed,2,3kinghenryvi,1590 received,2,3kinghenryvi,1590 Harry,2,3kinghenryvi,1590 stamps,2,3kinghenryvi,1590 fellow,2,3kinghenryvi,1590 guarded,2,3kinghenryvi,1590 Turn,2,3kinghenryvi,1590 encounter'd,2,3kinghenryvi,1590 envious,2,3kinghenryvi,1590 terms,2,3kinghenryvi,1590 unfeigned,2,3kinghenryvi,1590 encounter,2,3kinghenryvi,1590 seeks,2,3kinghenryvi,1590 dearly,2,3kinghenryvi,1590 showers,2,3kinghenryvi,1590 Wherein,2,3kinghenryvi,1590 Leave,2,3kinghenryvi,1590 cries,2,3kinghenryvi,1590 elder,2,3kinghenryvi,1590 pedigree,2,3kinghenryvi,1590 cease,2,3kinghenryvi,1590 plainly,2,3kinghenryvi,1590 descend,2,3kinghenryvi,1590 masters,2,3kinghenryvi,1590 malice,2,3kinghenryvi,1590 Warwickshire,2,3kinghenryvi,1590 others,2,3kinghenryvi,1590 prevent,2,3kinghenryvi,1590 Fly,2,3kinghenryvi,1590 soldier,2,3kinghenryvi,1590 flesh,2,3kinghenryvi,1590 knights,2,3kinghenryvi,1590 Dare,2,3kinghenryvi,1590 night's,2,3kinghenryvi,1590 battle's,2,3kinghenryvi,1590 edge,2,3kinghenryvi,1590 upholds,2,3kinghenryvi,1590 dies,2,3kinghenryvi,1590 Cousin,2,3kinghenryvi,1590 seest,2,3kinghenryvi,1590 died,2,3kinghenryvi,1590 eagle,2,3kinghenryvi,1590 talk'st,2,3kinghenryvi,1590 northern,2,3kinghenryvi,1590 pierce,2,3kinghenryvi,1590 ambassador,2,3kinghenryvi,1590 stop,2,3kinghenryvi,1590 harbour,2,3kinghenryvi,1590 wars,2,3kinghenryvi,1590 coast,2,3kinghenryvi,1590 office,2,3kinghenryvi,1590 matter,2,3kinghenryvi,1590 revel,2,3kinghenryvi,1590 plaints,2,3kinghenryvi,1590 spoke,2,3kinghenryvi,1590 prevails,2,3kinghenryvi,1590 deserves,2,3kinghenryvi,1590 Do,2,3kinghenryvi,1590 scandal,2,3kinghenryvi,1590 keys,2,3kinghenryvi,1590 morning,2,3kinghenryvi,1590 burning,2,3kinghenryvi,1590 drown,2,3kinghenryvi,1590 Takes,2,3kinghenryvi,1590 hap,2,3kinghenryvi,1590 conquered,2,3kinghenryvi,1590 backs,2,3kinghenryvi,1590 overthrow,2,3kinghenryvi,1590 Phaethon,2,3kinghenryvi,1590 What's,2,3kinghenryvi,1590 Belike,2,3kinghenryvi,1590 gotten,2,3kinghenryvi,1590 offend,2,3kinghenryvi,1590 sigh,2,3kinghenryvi,1590 descends,2,3kinghenryvi,1590 granted,2,3kinghenryvi,1590 'Twere,2,3kinghenryvi,1590 mistrust,2,3kinghenryvi,1590 molehill,2,3kinghenryvi,1590 loath,2,3kinghenryvi,1590 Becomes,2,3kinghenryvi,1590 knowing,2,3kinghenryvi,1590 govern,2,3kinghenryvi,1590 alarum,2,3kinghenryvi,1590 Those,2,3kinghenryvi,1590 wash'd,2,3kinghenryvi,1590 desperate,2,3kinghenryvi,1590 itself,2,3kinghenryvi,1590 encompass'd,2,3kinghenryvi,1590 Having,2,3kinghenryvi,1590 bad,2,3kinghenryvi,1590 hoped,2,3kinghenryvi,1590 Stand,2,3kinghenryvi,1590 doves,2,3kinghenryvi,1590 brings,2,3kinghenryvi,1590 shines,2,3kinghenryvi,1590 resteth,2,3kinghenryvi,1590 finds,2,3kinghenryvi,1590 wisdom,2,3kinghenryvi,1590 enter'd,2,3kinghenryvi,1590 piteous,2,3kinghenryvi,1590 sovereignty,2,3kinghenryvi,1590 meant,2,3kinghenryvi,1590 blest,2,3kinghenryvi,1590 bless,2,3kinghenryvi,1590 conqueror,2,3kinghenryvi,1590 Let's,2,3kinghenryvi,1590 sport,2,3kinghenryvi,1590 earl,2,3kinghenryvi,1590 devotion,2,3kinghenryvi,1590 quiet,2,3kinghenryvi,1590 Dukes,2,3kinghenryvi,1590 surprise,2,3kinghenryvi,1590 bishop's,2,3kinghenryvi,1590 gold,2,3kinghenryvi,1590 Open,2,3kinghenryvi,1590 homely,2,3kinghenryvi,1590 latest,2,3kinghenryvi,1590 Didst,2,3kinghenryvi,1590 curse,2,3kinghenryvi,1590 buy,2,3kinghenryvi,1590 used,2,3kinghenryvi,1590 wheresoe'er,2,3kinghenryvi,1590 Whate'er,2,3kinghenryvi,1590 people's,2,3kinghenryvi,1590 divine,2,3kinghenryvi,1590 stronger,2,3kinghenryvi,1590 gate,2,3kinghenryvi,1590 north,2,3kinghenryvi,1590 grandsire,2,3kinghenryvi,1590 gasp,2,3kinghenryvi,1590 solemn,2,3kinghenryvi,1590 story,2,3kinghenryvi,1590 March'd,2,3kinghenryvi,1590 forgive,2,3kinghenryvi,1590 promised,2,3kinghenryvi,1590 cannibals,2,3kinghenryvi,1590 resolute,2,3kinghenryvi,1590 singled,2,3kinghenryvi,1590 tyrant,2,3kinghenryvi,1590 satisfy,2,3kinghenryvi,1590 sheep,2,3kinghenryvi,1590 deck,2,3kinghenryvi,1590 sheet,2,3kinghenryvi,1590 violence,2,3kinghenryvi,1590 wreck,2,3kinghenryvi,1590 gain,2,3kinghenryvi,1590 choosing,2,3kinghenryvi,1590 vouchsafe,2,3kinghenryvi,1590 seeing,2,3kinghenryvi,1590 likely,2,3kinghenryvi,1590 redress,2,3kinghenryvi,1590 victors,2,3kinghenryvi,1590 husband,2,3kinghenryvi,1590 stole,2,3kinghenryvi,1590 lady's,2,3kinghenryvi,1590 ah,2,3kinghenryvi,1590 piercing,2,3kinghenryvi,1590 lo,2,3kinghenryvi,1590 malcontent,2,3kinghenryvi,1590 huntsmen,2,3kinghenryvi,1590 account,2,3kinghenryvi,1590 Myself,2,3kinghenryvi,1590 Mortimer,2,3kinghenryvi,1590 age,2,3kinghenryvi,1590 enmity,2,3kinghenryvi,1590 loves,2,3kinghenryvi,1590 Renowned,2,3kinghenryvi,1590 stout,2,3kinghenryvi,1590 pursued,2,3kinghenryvi,1590 matching,2,3kinghenryvi,1590 enjoys,2,3kinghenryvi,1590 levy,2,3kinghenryvi,1590 causes,2,3kinghenryvi,1590 Suffolk,2,3kinghenryvi,1590 defy,2,3kinghenryvi,1590 greater,2,3kinghenryvi,1590 bootless,2,3kinghenryvi,1590 show'd,2,3kinghenryvi,1590 untimely,2,3kinghenryvi,1590 wisest,2,3kinghenryvi,1590 presume,2,3kinghenryvi,1590 choice,2,3kinghenryvi,1590 hark,2,3kinghenryvi,1590 imprisonment,2,3kinghenryvi,1590 unlook'd,2,3kinghenryvi,1590 weapon,2,3kinghenryvi,1590 EDMUND,2,3kinghenryvi,1590 Bishop,2,3kinghenryvi,1590 round,2,3kinghenryvi,1590 knit,2,3kinghenryvi,1590 natural,2,3kinghenryvi,1590 call'd,2,3kinghenryvi,1590 shun,2,3kinghenryvi,1590 avoided,2,3kinghenryvi,1590 Ulysses,2,3kinghenryvi,1590 weeps,2,3kinghenryvi,1590 ship,2,3kinghenryvi,1590 forsworn,2,3kinghenryvi,1590 revell'd,2,3kinghenryvi,1590 forlorn,2,3kinghenryvi,1590 Keepers,2,3kinghenryvi,1590 alive,2,3kinghenryvi,1590 fool,2,3kinghenryvi,1590 Fell,2,3kinghenryvi,1590 fresh,2,3kinghenryvi,1590 hapless,2,3kinghenryvi,1590 mayst,2,3kinghenryvi,1590 fold,2,3kinghenryvi,1590 forcibly,2,3kinghenryvi,1590 chance,2,3kinghenryvi,1590 crook,2,3kinghenryvi,1590 Think'st,2,3kinghenryvi,1590 Hard,2,3kinghenryvi,1590 lurking,2,3kinghenryvi,1590 sweetly,2,3kinghenryvi,1590 willingly,2,3kinghenryvi,1590 Art,2,3kinghenryvi,1590 beams,2,3kinghenryvi,1590 change,2,3kinghenryvi,1590 moves,2,3kinghenryvi,1590 spoken,2,3kinghenryvi,1590 execute,2,3kinghenryvi,1590 lean,2,3kinghenryvi,1590 Comes,2,3kinghenryvi,1590 room,2,3kinghenryvi,1590 glories,2,3kinghenryvi,1590 peers,2,3kinghenryvi,1590 castle,2,3kinghenryvi,1590 tarry,2,3kinghenryvi,1590 nay,2,3kinghenryvi,1590 Stafford,2,3kinghenryvi,1590 Against,2,3kinghenryvi,1590 report,2,3kinghenryvi,1590 hill,2,3kinghenryvi,1590 shouldst,2,3kinghenryvi,1590 breathed,2,3kinghenryvi,1590 proveth,2,3kinghenryvi,1590 pawn'd,2,3kinghenryvi,1590 'Gainst,2,3kinghenryvi,1590 sending,2,3kinghenryvi,1590 'Charge,2,3kinghenryvi,1590 retreat,2,3kinghenryvi,1590 Sicils,2,3kinghenryvi,1590 mounted,2,3kinghenryvi,1590 rate,2,3kinghenryvi,1590 ireful,2,3kinghenryvi,1590 disinherited,2,3kinghenryvi,1590 vantages,2,3kinghenryvi,1590 daily,2,3kinghenryvi,1590 brazen,2,3kinghenryvi,1590 things,2,3kinghenryvi,1590 estate,2,3kinghenryvi,1590 blunt,2,3kinghenryvi,1590 year,2,3kinghenryvi,1590 borne,2,3kinghenryvi,1590 narrow,2,3kinghenryvi,1590 arguments,2,3kinghenryvi,1590 escaped,2,3kinghenryvi,1590 perform,2,3kinghenryvi,1590 adopted,2,3kinghenryvi,1590 threefold,2,3kinghenryvi,1590 dares,2,3kinghenryvi,1590 freely,2,3kinghenryvi,1590 say'st,2,3kinghenryvi,1590 powers,2,3kinghenryvi,1590 famous,2,3kinghenryvi,1590 revive,2,3kinghenryvi,1590 vanquish'd,2,3kinghenryvi,1590 placed,2,3kinghenryvi,1590 mourn,2,3kinghenryvi,1590 Southam,2,3kinghenryvi,1590 lodge,2,3kinghenryvi,1590 leaves,2,3kinghenryvi,1590 arrived,2,3kinghenryvi,1590 Long,2,3kinghenryvi,1590 teeth,2,3kinghenryvi,1590 Widow,2,3kinghenryvi,1590 stars,2,3kinghenryvi,1590 prize,2,3kinghenryvi,1590 flinty,2,3kinghenryvi,1590 tempest,2,3kinghenryvi,1590 robbers,2,3kinghenryvi,1590 male,2,3kinghenryvi,1590 blush,2,3kinghenryvi,1590 'gainst,2,3kinghenryvi,1590 sovereign's,2,3kinghenryvi,1590 mast,2,3kinghenryvi,1590 there's,2,3kinghenryvi,1590 dearest,2,3kinghenryvi,1590 dream,2,3kinghenryvi,1590 coward,2,3kinghenryvi,1590 proudest,2,3kinghenryvi,1590 thick,2,3kinghenryvi,1590 known,2,3kinghenryvi,1590 flatter,2,3kinghenryvi,1590 minutes,2,3kinghenryvi,1590 greatest,2,3kinghenryvi,1590 labour,2,3kinghenryvi,1590 chide,2,3kinghenryvi,1590 using,2,3kinghenryvi,1590 captive,2,3kinghenryvi,1590 uncrown,2,3kinghenryvi,1590 Stanley,2,3kinghenryvi,1590 Made,2,3kinghenryvi,1590 trouble,2,3kinghenryvi,1590 firm,2,3kinghenryvi,1590 lieutenant,2,3kinghenryvi,1590 trembling,2,3kinghenryvi,1590 same,2,3kinghenryvi,1590 impudent,2,3kinghenryvi,1590 renown,2,3kinghenryvi,1590 winding,2,3kinghenryvi,1590 sting,2,3kinghenryvi,1590 wrongs,2,3kinghenryvi,1590 purchase,2,3kinghenryvi,1590 court,2,3kinghenryvi,1590 woes,2,3kinghenryvi,1590 knife,2,3kinghenryvi,1590 troublous,2,3kinghenryvi,1590 allegiance,2,3kinghenryvi,1590 walks,2,3kinghenryvi,1590 closed,2,3kinghenryvi,1590 back'd,2,3kinghenryvi,1590 Alarums,2,3kinghenryvi,1590 death's,2,3kinghenryvi,1590 save,2,3kinghenryvi,1590 birthright,2,3kinghenryvi,1590 likes,2,3kinghenryvi,1590 vow'd,2,3kinghenryvi,1590 called,2,3kinghenryvi,1590 wax,2,3kinghenryvi,1590 flourish,2,3kinghenryvi,1590 duty,2,3kinghenryvi,1590 linger,2,3kinghenryvi,1590 able,2,3kinghenryvi,1590 heave,2,3kinghenryvi,1590 swarm,2,3kinghenryvi,1590 commanded,2,3kinghenryvi,1590 growing,2,3kinghenryvi,1590 intent,2,3kinghenryvi,1590 Forced,2,3kinghenryvi,1590 garland,2,3kinghenryvi,1590 wood,2,3kinghenryvi,1590 they'll,2,3kinghenryvi,1590 pride,2,3kinghenryvi,1590 wanton,2,3kinghenryvi,1590 bereft,2,3kinghenryvi,1590 wont,2,3kinghenryvi,1590 threats,2,3kinghenryvi,1590 Westmoreland,2,3kinghenryvi,1590 robb'd,2,3kinghenryvi,1590 Sixth,2,3kinghenryvi,1590 Shalt,2,3kinghenryvi,1590 agree,2,3kinghenryvi,1590 seize,2,3kinghenryvi,1590 taken,2,3kinghenryvi,1590 conference,2,3kinghenryvi,1590 marry,2,3kinghenryvi,1590 what's,2,3kinghenryvi,1590 trodden,2,3kinghenryvi,1590 anger,2,3kinghenryvi,1590 foreign,2,3kinghenryvi,1590 sways,2,3kinghenryvi,1590 womb,2,3kinghenryvi,1590 owe,2,3kinghenryvi,1590 wondrous,2,3kinghenryvi,1590 rain,2,3kinghenryvi,1590 Cobham,2,3kinghenryvi,1590 serves,2,3kinghenryvi,1590 masquers,2,3kinghenryvi,1590 marble,2,3kinghenryvi,1590 hundred,2,3kinghenryvi,1590 ope,2,3kinghenryvi,1590 went,2,3kinghenryvi,1590 fill'd,2,3kinghenryvi,1590 create,2,3kinghenryvi,1590 Make,2,3kinghenryvi,1590 minds,2,3kinghenryvi,1590 giving,2,3kinghenryvi,1590 desert,2,3kinghenryvi,1590 amends,2,3kinghenryvi,1590 fame,2,3kinghenryvi,1590 Stabbing,2,3kinghenryvi,1590 scorns,2,3kinghenryvi,1590 Naples,2,3kinghenryvi,1590 perfect,2,3kinghenryvi,1590 bark,2,3kinghenryvi,1590 minded,2,3kinghenryvi,1590 smooth,2,3kinghenryvi,1590 butcher,2,3kinghenryvi,1590 perceive,2,3kinghenryvi,1590 setter,2,3kinghenryvi,1590 watch'd,2,3kinghenryvi,1590 'Warwick,2,3kinghenryvi,1590 meaning,2,3kinghenryvi,1590 breeder,2,3kinghenryvi,1590 gentleman,2,3kinghenryvi,1590 balm,2,3kinghenryvi,1590 dam,2,3kinghenryvi,1590 lenity,2,3kinghenryvi,1590 fare,2,3kinghenryvi,1590 flock,2,3kinghenryvi,1590 shepherd,2,3kinghenryvi,1590 gallant,2,3kinghenryvi,1590 Caesar,2,3kinghenryvi,1590 constant,2,3kinghenryvi,1590 man's,2,3kinghenryvi,1590 gentlemen,2,3kinghenryvi,1590 excursions,2,3kinghenryvi,1590 torment,2,3kinghenryvi,1590 shoot,2,3kinghenryvi,1590 pledge,2,3kinghenryvi,1590 holds,2,3kinghenryvi,1590 shook,2,3kinghenryvi,1590 clear,2,3kinghenryvi,1590 thank,2,3kinghenryvi,1590 'Courage,2,3kinghenryvi,1590 sparkling,2,3kinghenryvi,1590 articles,2,3kinghenryvi,1590 peaceful,2,3kinghenryvi,1590 dangerous,2,3kinghenryvi,1590 follows,2,3kinghenryvi,1590 honest,2,3kinghenryvi,1590 presumption,2,3kinghenryvi,1590 murdering,2,3kinghenryvi,1590 winter,2,3kinghenryvi,1590 flood,2,3kinghenryvi,1590 besiege,2,3kinghenryvi,1590 Where's,2,3kinghenryvi,1590 seal,2,3kinghenryvi,1590 favours,2,3kinghenryvi,1590 title's,2,3kinghenryvi,1590 falsehood,2,3kinghenryvi,1590 hearts,2,3kinghenryvi,1590 country's,2,3kinghenryvi,1590 prithee,2,3kinghenryvi,1590 lovely,2,3kinghenryvi,1590 aloof,2,3kinghenryvi,1590 supposed,2,3kinghenryvi,1590 look'd,2,3kinghenryvi,1590 Ne'er,2,3kinghenryvi,1590 conclude,2,3kinghenryvi,1590 Wakefield,2,3kinghenryvi,1590 tells,2,3kinghenryvi,1590 cost,2,3kinghenryvi,1590 shapen,2,3kinghenryvi,1590 True,2,3kinghenryvi,1590 Resolve,2,3kinghenryvi,1590 shaped,2,3kinghenryvi,1590 troop,2,3kinghenryvi,1590 thrust,2,3kinghenryvi,1590 loyalty,2,3kinghenryvi,1590 downright,2,3kinghenryvi,1590 lovest,2,3kinghenryvi,1590 entreat,2,3kinghenryvi,1590 wretched,2,3kinghenryvi,1590 tied,2,3kinghenryvi,1590 extremes,2,3kinghenryvi,1590 prayer,2,3kinghenryvi,1590 blushing,2,3kinghenryvi,1590 secure,2,3kinghenryvi,1590 Forthwith,2,3kinghenryvi,1590 led,2,3kinghenryvi,1590 alas,2,3kinghenryvi,1590 ordain'd,2,3kinghenryvi,1590 blast,2,3kinghenryvi,1590 triumphs,2,3kinghenryvi,1590 drooping,2,3kinghenryvi,1590 heated,2,3kinghenryvi,1590 storms,2,3kinghenryvi,1590 sleep,2,3kinghenryvi,1590 forwardness,2,3kinghenryvi,1590 persuade,2,3kinghenryvi,1590 honesty,2,3kinghenryvi,1590 queen's,2,3kinghenryvi,1590 protectors,2,3kinghenryvi,1590 clouds,2,3kinghenryvi,1590 seldom,2,3kinghenryvi,1590 forced,2,3kinghenryvi,1590 gust,2,3kinghenryvi,1590 rapier's,2,3kinghenryvi,1590 reward,2,3kinghenryvi,1590 burst,2,3kinghenryvi,1590 dread,2,3kinghenryvi,1590 met,2,3kinghenryvi,1590 swim,2,3kinghenryvi,1590 readiness,2,3kinghenryvi,1590 Since,2,3kinghenryvi,1590 abuse,2,3kinghenryvi,1590 Men,2,3kinghenryvi,1590 widower,2,3kinghenryvi,1590 powerful,2,3kinghenryvi,1590 sever'd,2,3kinghenryvi,1590 strokes,2,3kinghenryvi,1590 Bootless,2,3kinghenryvi,1590 resembles,2,3kinghenryvi,1590 peck,2,3kinghenryvi,1590 limed,2,3kinghenryvi,1590 VII,2,3kinghenryvi,1590 mutinous,2,3kinghenryvi,1590 shroud,2,3kinghenryvi,1590 betimes,2,3kinghenryvi,1590 suspect,2,3kinghenryvi,1590 sailors,2,3kinghenryvi,1590 strange,2,3kinghenryvi,1590 contend,2,3kinghenryvi,1590 slay,2,3kinghenryvi,1590 careless,2,3kinghenryvi,1590 provide,2,3kinghenryvi,1590 brat,2,3kinghenryvi,1590 swallow,2,3kinghenryvi,1590 dare,2,3kinghenryvi,1590 sudden,2,3kinghenryvi,1590 He's,2,3kinghenryvi,1590 catch,2,3kinghenryvi,1590 top,2,3kinghenryvi,1590 proclamation,2,3kinghenryvi,1590 Bring,2,3kinghenryvi,1590 Unsheathe,2,3kinghenryvi,1590 hewn,2,3kinghenryvi,1590 shake,2,3kinghenryvi,1590 behold,2,3kinghenryvi,1590 pass'd,2,3kinghenryvi,1590 Take,2,3kinghenryvi,1590 rewards,2,3kinghenryvi,1590 without,2,3kinghenryvi,1590 ambitious,2,3kinghenryvi,1590 'good,2,3kinghenryvi,1590 stol'n,2,3kinghenryvi,1590 Fair,2,3kinghenryvi,1590 boots,2,3kinghenryvi,1590 press'd,2,3kinghenryvi,1590 Yorkshire,2,3kinghenryvi,1590 remorse,2,3kinghenryvi,1590 spectacle,2,3kinghenryvi,1590 Kent,2,3kinghenryvi,1590 forbear,2,3kinghenryvi,1590 bids,2,3kinghenryvi,1590 intends,2,3kinghenryvi,1590 Rutland's,2,3kinghenryvi,1590 subjects',2,3kinghenryvi,1590 hunting,2,3kinghenryvi,1590 undertake,2,3kinghenryvi,1590 sands,2,3kinghenryvi,1590 Tut,2,3kinghenryvi,1590 sway,2,3kinghenryvi,1590 lady,2,3kinghenryvi,1590 daughters,2,3kinghenryvi,1590 o'er,3,3kinghenryvi,1590 red,3,3kinghenryvi,1590 country,3,3kinghenryvi,1590 scouts,3,3kinghenryvi,1590 woman's,3,3kinghenryvi,1590 brows,3,3kinghenryvi,1590 rock,3,3kinghenryvi,1590 heart's,3,3kinghenryvi,1590 single,3,3kinghenryvi,1590 vain,3,3kinghenryvi,1590 sighs,3,3kinghenryvi,1590 fought,3,3kinghenryvi,1590 succession,3,3kinghenryvi,1590 cowardice,3,3kinghenryvi,1590 prey,3,3kinghenryvi,1590 odds,3,3kinghenryvi,1590 trust,3,3kinghenryvi,1590 remain,3,3kinghenryvi,1590 joys,3,3kinghenryvi,1590 wounded,3,3kinghenryvi,1590 RICHMOND,3,3kinghenryvi,1590 demand,3,3kinghenryvi,1590 plague,3,3kinghenryvi,1590 sad,3,3kinghenryvi,1590 feather,3,3kinghenryvi,1590 slept,3,3kinghenryvi,1590 Give,3,3kinghenryvi,1590 broken,3,3kinghenryvi,1590 trumpet,3,3kinghenryvi,1590 anchor,3,3kinghenryvi,1590 toward,3,3kinghenryvi,1590 policy,3,3kinghenryvi,1590 perjured,3,3kinghenryvi,1590 suns,3,3kinghenryvi,1590 sin,3,3kinghenryvi,1590 HUGH,3,3kinghenryvi,1590 think'st,3,3kinghenryvi,1590 deceived,3,3kinghenryvi,1590 'Tell,3,3kinghenryvi,1590 birds,3,3kinghenryvi,1590 bringing,3,3kinghenryvi,1590 sworn,3,3kinghenryvi,1590 melting,3,3kinghenryvi,1590 beloved,3,3kinghenryvi,1590 league,3,3kinghenryvi,1590 Attendants,3,3kinghenryvi,1590 puissant,3,3kinghenryvi,1590 offence,3,3kinghenryvi,1590 civil,3,3kinghenryvi,1590 bliss,3,3kinghenryvi,1590 Montgomery,3,3kinghenryvi,1590 STANLEY,3,3kinghenryvi,1590 Pardon,3,3kinghenryvi,1590 white,3,3kinghenryvi,1590 shining,3,3kinghenryvi,1590 above,3,3kinghenryvi,1590 promise,3,3kinghenryvi,1590 descent,3,3kinghenryvi,1590 humbly,3,3kinghenryvi,1590 'scaped,3,3kinghenryvi,1590 usurp,3,3kinghenryvi,1590 executioner,3,3kinghenryvi,1590 steal,3,3kinghenryvi,1590 harmless,3,3kinghenryvi,1590 wipe,3,3kinghenryvi,1590 ruin,3,3kinghenryvi,1590 murder,3,3kinghenryvi,1590 succeed,3,3kinghenryvi,1590 rule,3,3kinghenryvi,1590 wash,3,3kinghenryvi,1590 desire,3,3kinghenryvi,1590 manhood,3,3kinghenryvi,1590 sign,3,3kinghenryvi,1590 protector,3,3kinghenryvi,1590 patience,3,3kinghenryvi,1590 bow,3,3kinghenryvi,1590 Whiles,3,3kinghenryvi,1590 shortly,3,3kinghenryvi,1590 unnatural,3,3kinghenryvi,1590 smile,3,3kinghenryvi,1590 cruel,3,3kinghenryvi,1590 kept,3,3kinghenryvi,1590 beg,3,3kinghenryvi,1590 past,3,3kinghenryvi,1590 pass,3,3kinghenryvi,1590 obey,3,3kinghenryvi,1590 Good,3,3kinghenryvi,1590 sith,3,3kinghenryvi,1590 nigh,3,3kinghenryvi,1590 car,3,3kinghenryvi,1590 woful,3,3kinghenryvi,1590 shadow,3,3kinghenryvi,1590 sepulchre,3,3kinghenryvi,1590 just,3,3kinghenryvi,1590 conquest,3,3kinghenryvi,1590 About,3,3kinghenryvi,1590 stabb'd,3,3kinghenryvi,1590 convey'd,3,3kinghenryvi,1590 anointed,3,3kinghenryvi,1590 quite,3,3kinghenryvi,1590 sail,3,3kinghenryvi,1590 wretch,3,3kinghenryvi,1590 image,3,3kinghenryvi,1590 raise,3,3kinghenryvi,1590 stops,3,3kinghenryvi,1590 beat,3,3kinghenryvi,1590 stoop,3,3kinghenryvi,1590 succor,3,3kinghenryvi,1590 legs,3,3kinghenryvi,1590 napkin,3,3kinghenryvi,1590 stain'd,3,3kinghenryvi,1590 game,3,3kinghenryvi,1590 doom,3,3kinghenryvi,1590 bodies,3,3kinghenryvi,1590 delay,3,3kinghenryvi,1590 small,3,3kinghenryvi,1590 slily,3,3kinghenryvi,1590 abide,3,3kinghenryvi,1590 miserable,3,3kinghenryvi,1590 commands,3,3kinghenryvi,1590 knew,3,3kinghenryvi,1590 Because,3,3kinghenryvi,1590 SOMERVILLE,3,3kinghenryvi,1590 valour,3,3kinghenryvi,1590 easy,3,3kinghenryvi,1590 axe,3,3kinghenryvi,1590 park,3,3kinghenryvi,1590 Call,3,3kinghenryvi,1590 pale,3,3kinghenryvi,1590 Gaunt,3,3kinghenryvi,1590 weeds,3,3kinghenryvi,1590 signal,3,3kinghenryvi,1590 Sandal,3,3kinghenryvi,1590 shut,3,3kinghenryvi,1590 deny,3,3kinghenryvi,1590 pluck,3,3kinghenryvi,1590 whether,3,3kinghenryvi,1590 Under,3,3kinghenryvi,1590 vengeance,3,3kinghenryvi,1590 MONTGOMERY,3,3kinghenryvi,1590 pain,3,3kinghenryvi,1590 winter's,3,3kinghenryvi,1590 fiery,3,3kinghenryvi,1590 mock,3,3kinghenryvi,1590 mayor,3,3kinghenryvi,1590 frown,3,3kinghenryvi,1590 devise,3,3kinghenryvi,1590 stones,3,3kinghenryvi,1590 hate,3,3kinghenryvi,1590 show,3,3kinghenryvi,1590 dismal,3,3kinghenryvi,1590 object,3,3kinghenryvi,1590 armour,3,3kinghenryvi,1590 cheque,3,3kinghenryvi,1590 judgment,3,3kinghenryvi,1590 purple,3,3kinghenryvi,1590 enjoy,3,3kinghenryvi,1590 guess,3,3kinghenryvi,1590 lead,3,3kinghenryvi,1590 contented,3,3kinghenryvi,1590 occasion,3,3kinghenryvi,1590 DUKE,3,3kinghenryvi,1590 thinks,3,3kinghenryvi,1590 none,3,3kinghenryvi,1590 gently,3,3kinghenryvi,1590 Peace,3,3kinghenryvi,1590 mildness,3,3kinghenryvi,1590 spread,3,3kinghenryvi,1590 traitors,3,3kinghenryvi,1590 Excursions,3,3kinghenryvi,1590 wolves,3,3kinghenryvi,1590 arise,3,3kinghenryvi,1590 Doth,3,3kinghenryvi,1590 wonder'd,3,3kinghenryvi,1590 Some,3,3kinghenryvi,1590 mild,3,3kinghenryvi,1590 fares,3,3kinghenryvi,1590 escape,3,3kinghenryvi,1590 rests,3,3kinghenryvi,1590 presently,3,3kinghenryvi,1590 quench,3,3kinghenryvi,1590 wot,3,3kinghenryvi,1590 won,3,3kinghenryvi,1590 shoulder,3,3kinghenryvi,1590 threatening,3,3kinghenryvi,1590 wrath,3,3kinghenryvi,1590 fire,3,3kinghenryvi,1590 possession,3,3kinghenryvi,1590 pause,3,3kinghenryvi,1590 passage,3,3kinghenryvi,1590 dishonour,3,3kinghenryvi,1590 oft,3,3kinghenryvi,1590 bands,3,3kinghenryvi,1590 hears,3,3kinghenryvi,1590 usurping,3,3kinghenryvi,1590 remains,3,3kinghenryvi,1590 dust,3,3kinghenryvi,1590 Think,3,3kinghenryvi,1590 perforce,3,3kinghenryvi,1590 themselves,3,3kinghenryvi,1590 Brittany,3,3kinghenryvi,1590 serve,3,3kinghenryvi,1590 prick,3,3kinghenryvi,1590 owl,3,3kinghenryvi,1590 disinherit,3,3kinghenryvi,1590 requite,3,3kinghenryvi,1590 takes,3,3kinghenryvi,1590 supply,3,3kinghenryvi,1590 yoke,3,3kinghenryvi,1590 guilty,3,3kinghenryvi,1590 heirs,3,3kinghenryvi,1590 grieve,3,3kinghenryvi,1590 evil,3,3kinghenryvi,1590 advertised,3,3kinghenryvi,1590 That's,3,3kinghenryvi,1590 Hadst,3,3kinghenryvi,1590 silly,3,3kinghenryvi,1590 please,3,3kinghenryvi,1590 passion,3,3kinghenryvi,1590 unawares,3,3kinghenryvi,1590 Unto,3,3kinghenryvi,1590 shows,3,3kinghenryvi,1590 bite,3,3kinghenryvi,1590 Jerusalem,3,3kinghenryvi,1590 lived,3,3kinghenryvi,1590 insulting,3,3kinghenryvi,1590 lad,3,3kinghenryvi,1590 soul's,3,3kinghenryvi,1590 lay,3,3kinghenryvi,1590 shameless,3,3kinghenryvi,1590 holy,3,3kinghenryvi,1590 request,3,3kinghenryvi,1590 resolution,3,3kinghenryvi,1590 task,3,3kinghenryvi,1590 Brave,3,3kinghenryvi,1590 Troy,3,3kinghenryvi,1590 sunshine,3,3kinghenryvi,1590 Barnet,3,3kinghenryvi,1590 needful,3,3kinghenryvi,1590 defend,3,3kinghenryvi,1590 camest,3,3kinghenryvi,1590 tree,3,3kinghenryvi,1590 whilst,3,3kinghenryvi,1590 prison,3,3kinghenryvi,1590 goes,3,3kinghenryvi,1590 seized,3,3kinghenryvi,1590 until,3,3kinghenryvi,1590 Two,3,3kinghenryvi,1590 mad,3,3kinghenryvi,1590 learn,3,3kinghenryvi,1590 warlike,3,3kinghenryvi,1590 chosen,3,3kinghenryvi,1590 glory,3,3kinghenryvi,1590 burns,3,3kinghenryvi,1590 body's,3,3kinghenryvi,1590 Great,3,3kinghenryvi,1590 bethink,3,3kinghenryvi,1590 wound,3,3kinghenryvi,1590 henceforth,3,3kinghenryvi,1590 thither,3,3kinghenryvi,1590 Fifth,3,3kinghenryvi,1590 revenged,3,3kinghenryvi,1590 hurt,3,3kinghenryvi,1590 shade,3,3kinghenryvi,1590 silent,3,3kinghenryvi,1590 simple,3,3kinghenryvi,1590 weight,3,3kinghenryvi,1590 rocks,3,3kinghenryvi,1590 lamb,3,3kinghenryvi,1590 months,3,3kinghenryvi,1590 Until,3,3kinghenryvi,1590 fence,3,3kinghenryvi,1590 drown'd,3,3kinghenryvi,1590 mis,3,3kinghenryvi,1590 repair,3,3kinghenryvi,1590 wouldst,3,3kinghenryvi,1590 turn'd,3,3kinghenryvi,1590 summer,3,3kinghenryvi,1590 attended,4,3kinghenryvi,1590 treason,4,3kinghenryvi,1590 Ned,4,3kinghenryvi,1590 told,4,3kinghenryvi,1590 LORD,4,3kinghenryvi,1590 horse,4,3kinghenryvi,1590 resign,4,3kinghenryvi,1590 branch,4,3kinghenryvi,1590 pray,4,3kinghenryvi,1590 Must,4,3kinghenryvi,1590 brook,4,3kinghenryvi,1590 thirty,4,3kinghenryvi,1590 lies,4,3kinghenryvi,1590 run,4,3kinghenryvi,1590 proclaim,4,3kinghenryvi,1590 care,4,3kinghenryvi,1590 Poor,4,3kinghenryvi,1590 afterwards,4,3kinghenryvi,1590 town,4,3kinghenryvi,1590 soft,4,3kinghenryvi,1590 Methinks,4,3kinghenryvi,1590 towns,4,3kinghenryvi,1590 light,4,3kinghenryvi,1590 embrace,4,3kinghenryvi,1590 counsel,4,3kinghenryvi,1590 forthwith,4,3kinghenryvi,1590 faults,4,3kinghenryvi,1590 heavens,4,3kinghenryvi,1590 PEMBROKE,4,3kinghenryvi,1590 There,4,3kinghenryvi,1590 uncles,4,3kinghenryvi,1590 Sound,4,3kinghenryvi,1590 fruit,4,3kinghenryvi,1590 service,4,3kinghenryvi,1590 bold,4,3kinghenryvi,1590 join'd,4,3kinghenryvi,1590 sceptre,4,3kinghenryvi,1590 tent,4,3kinghenryvi,1590 he's,4,3kinghenryvi,1590 each,4,3kinghenryvi,1590 wherefore,4,3kinghenryvi,1590 side,4,3kinghenryvi,1590 stir,4,3kinghenryvi,1590 Hold,4,3kinghenryvi,1590 orator,4,3kinghenryvi,1590 measure,4,3kinghenryvi,1590 pay,4,3kinghenryvi,1590 unless,4,3kinghenryvi,1590 since,4,3kinghenryvi,1590 fortune's,4,3kinghenryvi,1590 deserved,4,3kinghenryvi,1590 ease,4,3kinghenryvi,1590 despair,4,3kinghenryvi,1590 troops,4,3kinghenryvi,1590 grandfather,4,3kinghenryvi,1590 sire,4,3kinghenryvi,1590 bend,4,3kinghenryvi,1590 bush,4,3kinghenryvi,1590 kindness,4,3kinghenryvi,1590 Clifford's,4,3kinghenryvi,1590 Dies,4,3kinghenryvi,1590 Both,4,3kinghenryvi,1590 crowns,4,3kinghenryvi,1590 storm,4,3kinghenryvi,1590 government,4,3kinghenryvi,1590 deer,4,3kinghenryvi,1590 confess,4,3kinghenryvi,1590 aim,4,3kinghenryvi,1590 air,4,3kinghenryvi,1590 gift,4,3kinghenryvi,1590 safe,4,3kinghenryvi,1590 needs,4,3kinghenryvi,1590 speed,4,3kinghenryvi,1590 shed,4,3kinghenryvi,1590 realm,4,3kinghenryvi,1590 pursuit,4,3kinghenryvi,1590 plant,4,3kinghenryvi,1590 crave,4,3kinghenryvi,1590 cousin,4,3kinghenryvi,1590 Yea,4,3kinghenryvi,1590 Yes,4,3kinghenryvi,1590 resolved,4,3kinghenryvi,1590 ill,4,3kinghenryvi,1590 spend,4,3kinghenryvi,1590 twenty,4,3kinghenryvi,1590 act,4,3kinghenryvi,1590 ready,4,3kinghenryvi,1590 harm,4,3kinghenryvi,1590 killed,4,3kinghenryvi,1590 half,4,3kinghenryvi,1590 messenger,4,3kinghenryvi,1590 kingly,4,3kinghenryvi,1590 More,4,3kinghenryvi,1590 husband's,4,3kinghenryvi,1590 liberty,4,3kinghenryvi,1590 ask,4,3kinghenryvi,1590 dreadful,4,3kinghenryvi,1590 rough,4,3kinghenryvi,1590 secret,4,3kinghenryvi,1590 Are,4,3kinghenryvi,1590 deadly,4,3kinghenryvi,1590 justice,4,3kinghenryvi,1590 through,4,3kinghenryvi,1590 keeps,4,3kinghenryvi,1590 equal,4,3kinghenryvi,1590 Lords,4,3kinghenryvi,1590 faith,4,3kinghenryvi,1590 deposed,4,3kinghenryvi,1590 bears,4,3kinghenryvi,1590 tender,4,3kinghenryvi,1590 ours,4,3kinghenryvi,1590 STAFFORD,4,3kinghenryvi,1590 forest,4,3kinghenryvi,1590 Alban's,4,3kinghenryvi,1590 yours,4,3kinghenryvi,1590 already,4,3kinghenryvi,1590 chief,4,3kinghenryvi,1590 knows,4,3kinghenryvi,1590 woe,4,3kinghenryvi,1590 Richmond,4,3kinghenryvi,1590 because,4,3kinghenryvi,1590 Third,4,3kinghenryvi,1590 behalf,4,3kinghenryvi,1590 close,4,3kinghenryvi,1590 grave,4,3kinghenryvi,1590 Scotland,4,3kinghenryvi,1590 retire,4,3kinghenryvi,1590 former,4,3kinghenryvi,1590 wit,4,3kinghenryvi,1590 five,4,3kinghenryvi,1590 win,4,3kinghenryvi,1590 diadem,4,3kinghenryvi,1590 selfsame,4,3kinghenryvi,1590 walls,4,3kinghenryvi,1590 crown'd,4,3kinghenryvi,1590 between,4,3kinghenryvi,1590 repossess,4,3kinghenryvi,1590 brother's,4,3kinghenryvi,1590 danger,4,3kinghenryvi,1590 coming,4,3kinghenryvi,1590 next,4,3kinghenryvi,1590 Three,4,3kinghenryvi,1590 wolf,4,3kinghenryvi,1590 durst,4,3kinghenryvi,1590 cloud,4,3kinghenryvi,1590 wert,4,3kinghenryvi,1590 Castle,4,3kinghenryvi,1590 patient,4,3kinghenryvi,1590 whither,4,3kinghenryvi,1590 waves,4,3kinghenryvi,1590 bird,4,3kinghenryvi,1590 Welcome,4,3kinghenryvi,1590 mischance,4,3kinghenryvi,1590 given,4,3kinghenryvi,1590 satisfied,4,3kinghenryvi,1590 always,4,3kinghenryvi,1590 low,4,3kinghenryvi,1590 drums,4,3kinghenryvi,1590 either,4,3kinghenryvi,1590 Mine,4,3kinghenryvi,1590 sound,4,3kinghenryvi,1590 blame,4,3kinghenryvi,1590 send,4,3kinghenryvi,1590 mother's,4,3kinghenryvi,1590 Nobleman,4,3kinghenryvi,1590 sent,4,3kinghenryvi,1590 lie,4,3kinghenryvi,1590 seated,4,3kinghenryvi,1590 abroad,4,3kinghenryvi,1590 spite,4,3kinghenryvi,1590 begins,4,3kinghenryvi,1590 steeds,4,3kinghenryvi,1590 straight,4,3kinghenryvi,1590 thoughts,4,3kinghenryvi,1590 lips,4,3kinghenryvi,1590 mourning,4,3kinghenryvi,1590 virtue,4,3kinghenryvi,1590 nature,4,3kinghenryvi,1590 laid,4,3kinghenryvi,1590 Lest,4,3kinghenryvi,1590 bred,4,3kinghenryvi,1590 spirit,4,3kinghenryvi,1590 oaths,4,3kinghenryvi,1590 Suppose,4,3kinghenryvi,1590 enemy,4,3kinghenryvi,1590 women,4,3kinghenryvi,1590 to,516,3kinghenryvi,1590 forbid,5,3kinghenryvi,1590 ruthless,5,3kinghenryvi,1590 Grey,5,3kinghenryvi,1590 hell,5,3kinghenryvi,1590 Stay,5,3kinghenryvi,1590 prisoner,5,3kinghenryvi,1590 sight,5,3kinghenryvi,1590 withal,5,3kinghenryvi,1590 sort,5,3kinghenryvi,1590 Would,5,3kinghenryvi,1590 Upon,5,3kinghenryvi,1590 become,5,3kinghenryvi,1590 cheeks,5,3kinghenryvi,1590 case,5,3kinghenryvi,1590 jest,5,3kinghenryvi,1590 draw,5,3kinghenryvi,1590 yourself,5,3kinghenryvi,1590 highness,5,3kinghenryvi,1590 sure,5,3kinghenryvi,1590 cheer,5,3kinghenryvi,1590 golden,5,3kinghenryvi,1590 black,5,3kinghenryvi,1590 further,5,3kinghenryvi,1590 'twere,5,3kinghenryvi,1590 virtuous,5,3kinghenryvi,1590 Burgundy,5,3kinghenryvi,1590 slaughter,5,3kinghenryvi,1590 fell,5,3kinghenryvi,1590 Such,5,3kinghenryvi,1590 Farewell,5,3kinghenryvi,1590 Was,5,3kinghenryvi,1590 wings,5,3kinghenryvi,1590 Thanks,5,3kinghenryvi,1590 kill'd,5,3kinghenryvi,1590 thence,5,3kinghenryvi,1590 bring,5,3kinghenryvi,1590 want,5,3kinghenryvi,1590 wish,5,3kinghenryvi,1590 wise,5,3kinghenryvi,1590 steel,5,3kinghenryvi,1590 wast,5,3kinghenryvi,1590 alliance,5,3kinghenryvi,1590 French,5,3kinghenryvi,1590 has,5,3kinghenryvi,1590 At,5,3kinghenryvi,1590 An,5,3kinghenryvi,1590 neither,5,3kinghenryvi,1590 deeds,5,3kinghenryvi,1590 Tutor,5,3kinghenryvi,1590 belike,5,3kinghenryvi,1590 force,5,3kinghenryvi,1590 tear,5,3kinghenryvi,1590 play,5,3kinghenryvi,1590 glorious,5,3kinghenryvi,1590 sits,5,3kinghenryvi,1590 challenge,5,3kinghenryvi,1590 goodly,5,3kinghenryvi,1590 weak,5,3kinghenryvi,1590 dost,5,3kinghenryvi,1590 people,5,3kinghenryvi,1590 frowns,5,3kinghenryvi,1590 Like,5,3kinghenryvi,1590 deed,5,3kinghenryvi,1590 defence,5,3kinghenryvi,1590 forget,5,3kinghenryvi,1590 most,5,3kinghenryvi,1590 aside,5,3kinghenryvi,1590 add,5,3kinghenryvi,1590 hard,5,3kinghenryvi,1590 welcome,5,3kinghenryvi,1590 plain,5,3kinghenryvi,1590 mighty,5,3kinghenryvi,1590 foot,5,3kinghenryvi,1590 few,5,3kinghenryvi,1590 having,5,3kinghenryvi,1590 here's,5,3kinghenryvi,1590 root,5,3kinghenryvi,1590 often,5,3kinghenryvi,1590 rose,5,3kinghenryvi,1590 water,5,3kinghenryvi,1590 you'll,5,3kinghenryvi,1590 youth,5,3kinghenryvi,1590 mortal,5,3kinghenryvi,1590 didst,5,3kinghenryvi,1590 issue,5,3kinghenryvi,1590 free,5,3kinghenryvi,1590 get,5,3kinghenryvi,1590 throw,5,3kinghenryvi,1590 We'll,5,3kinghenryvi,1590 says,5,3kinghenryvi,1590 heavy,5,3kinghenryvi,1590 Coventry,5,3kinghenryvi,1590 army,5,3kinghenryvi,1590 Can,5,3kinghenryvi,1590 rise,5,3kinghenryvi,1590 rage,5,3kinghenryvi,1590 Fourth,5,3kinghenryvi,1590 wounds,5,3kinghenryvi,1590 company,5,3kinghenryvi,1590 even,5,3kinghenryvi,1590 fill,5,3kinghenryvi,1590 safety,5,3kinghenryvi,1590 depart,5,3kinghenryvi,1590 trumpets,5,3kinghenryvi,1590 talk,5,3kinghenryvi,1590 home,5,3kinghenryvi,1590 master,5,3kinghenryvi,1590 cut,5,3kinghenryvi,1590 alone,5,3kinghenryvi,1590 seen,5,3kinghenryvi,1590 thereof,5,3kinghenryvi,1590 person,5,3kinghenryvi,1590 madam,5,3kinghenryvi,1590 triumph,5,3kinghenryvi,1590 least,5,3kinghenryvi,1590 EARL,5,3kinghenryvi,1590 warriors,5,3kinghenryvi,1590 lion,5,3kinghenryvi,1590 spring,5,3kinghenryvi,1590 land,5,3kinghenryvi,1590 success,5,3kinghenryvi,1590 he'll,5,3kinghenryvi,1590 command,5,3kinghenryvi,1590 woman,5,3kinghenryvi,1590 join,6,3kinghenryvi,1590 took,6,3kinghenryvi,1590 Alas,6,3kinghenryvi,1590 haste,6,3kinghenryvi,1590 fury,6,3kinghenryvi,1590 charge,6,3kinghenryvi,1590 years,6,3kinghenryvi,1590 subjects,6,3kinghenryvi,1590 enough,6,3kinghenryvi,1590 'twas,6,3kinghenryvi,1590 subject,6,3kinghenryvi,1590 within,6,3kinghenryvi,1590 fault,6,3kinghenryvi,1590 humble,6,3kinghenryvi,1590 bride,6,3kinghenryvi,1590 claim,6,3kinghenryvi,1590 Stabs,6,3kinghenryvi,1590 quarrel,6,3kinghenryvi,1590 bed,6,3kinghenryvi,1590 ears,6,3kinghenryvi,1590 prove,6,3kinghenryvi,1590 children,6,3kinghenryvi,1590 Speak,6,3kinghenryvi,1590 despite,6,3kinghenryvi,1590 longer,6,3kinghenryvi,1590 look,6,3kinghenryvi,1590 ay,6,3kinghenryvi,1590 that's,6,3kinghenryvi,1590 hadst,6,3kinghenryvi,1590 knee,6,3kinghenryvi,1590 course,6,3kinghenryvi,1590 open,6,3kinghenryvi,1590 point,6,3kinghenryvi,1590 broke,6,3kinghenryvi,1590 Should,6,3kinghenryvi,1590 wonder,6,3kinghenryvi,1590 eye,6,3kinghenryvi,1590 into,6,3kinghenryvi,1590 high,6,3kinghenryvi,1590 Look,6,3kinghenryvi,1590 towards,6,3kinghenryvi,1590 end,6,3kinghenryvi,1590 Queen,6,3kinghenryvi,1590 courage,6,3kinghenryvi,1590 All,6,3kinghenryvi,1590 blow,6,3kinghenryvi,1590 need,6,3kinghenryvi,1590 letters,6,3kinghenryvi,1590 flies,6,3kinghenryvi,1590 sake,6,3kinghenryvi,1590 Huntsman,6,3kinghenryvi,1590 flight,6,3kinghenryvi,1590 Thus,6,3kinghenryvi,1590 forward,6,3kinghenryvi,1590 SIR,6,3kinghenryvi,1590 followers,6,3kinghenryvi,1590 methinks,6,3kinghenryvi,1590 three,6,3kinghenryvi,1590 Sweet,6,3kinghenryvi,1590 find,6,3kinghenryvi,1590 hour,6,3kinghenryvi,1590 kiss,6,3kinghenryvi,1590 fast,6,3kinghenryvi,1590 reason,6,3kinghenryvi,1590 seas,6,3kinghenryvi,1590 swear,6,3kinghenryvi,1590 seem,6,3kinghenryvi,1590 tide,6,3kinghenryvi,1590 return,6,3kinghenryvi,1590 hither,6,3kinghenryvi,1590 Lieutenant,6,3kinghenryvi,1590 cold,6,3kinghenryvi,1590 forces,6,3kinghenryvi,1590 Another,6,3kinghenryvi,1590 amain,6,3kinghenryvi,1590 late,6,3kinghenryvi,1590 May,6,3kinghenryvi,1590 Did,6,3kinghenryvi,1590 dry,6,3kinghenryvi,1590 cross,6,3kinghenryvi,1590 times,7,3kinghenryvi,1590 guard,7,3kinghenryvi,1590 days,7,3kinghenryvi,1590 John,7,3kinghenryvi,1590 hearted,7,3kinghenryvi,1590 truth,7,3kinghenryvi,1590 Whom,7,3kinghenryvi,1590 nothing,7,3kinghenryvi,1590 cause,7,3kinghenryvi,1590 mother,7,3kinghenryvi,1590 ourselves,7,3kinghenryvi,1590 turn,7,3kinghenryvi,1590 common,7,3kinghenryvi,1590 daughter,7,3kinghenryvi,1590 king's,7,3kinghenryvi,1590 worthy,7,3kinghenryvi,1590 false,7,3kinghenryvi,1590 kneel,7,3kinghenryvi,1590 dukedom,7,3kinghenryvi,1590 Her,7,3kinghenryvi,1590 Go,7,3kinghenryvi,1590 fatal,7,3kinghenryvi,1590 enter,7,3kinghenryvi,1590 weep,7,3kinghenryvi,1590 Saint,7,3kinghenryvi,1590 put,7,3kinghenryvi,1590 'Twas,7,3kinghenryvi,1590 God's,7,3kinghenryvi,1590 aid,7,3kinghenryvi,1590 brought,7,3kinghenryvi,1590 foul,7,3kinghenryvi,1590 city,7,3kinghenryvi,1590 brothers,7,3kinghenryvi,1590 ye,7,3kinghenryvi,1590 strike,7,3kinghenryvi,1590 Sir,7,3kinghenryvi,1590 Say,7,3kinghenryvi,1590 happy,7,3kinghenryvi,1590 MORTIMER,7,3kinghenryvi,1590 consent,7,3kinghenryvi,1590 ground,7,3kinghenryvi,1590 fall,7,3kinghenryvi,1590 old,7,3kinghenryvi,1590 word,7,3kinghenryvi,1590 vow,7,3kinghenryvi,1590 strong,7,3kinghenryvi,1590 wife,7,3kinghenryvi,1590 Prince,7,3kinghenryvi,1590 kingdom,7,3kinghenryvi,1590 cry,7,3kinghenryvi,1590 regal,7,3kinghenryvi,1590 hours,7,3kinghenryvi,1590 together,7,3kinghenryvi,1590 first,7,3kinghenryvi,1590 whiles,7,3kinghenryvi,1590 last,7,3kinghenryvi,1590 content,7,3kinghenryvi,1590 widow,7,3kinghenryvi,1590 BONA,7,3kinghenryvi,1590 princely,7,3kinghenryvi,1590 breathe,7,3kinghenryvi,1590 JOHN,7,3kinghenryvi,1590 royal,8,3kinghenryvi,1590 Will,8,3kinghenryvi,1590 rather,8,3kinghenryvi,1590 Gloucester,8,3kinghenryvi,1590 soon,8,3kinghenryvi,1590 call,8,3kinghenryvi,1590 suit,8,3kinghenryvi,1590 Mayor,8,3kinghenryvi,1590 These,8,3kinghenryvi,1590 RIVERS,8,3kinghenryvi,1590 born,8,3kinghenryvi,1590 fearful,8,3kinghenryvi,1590 III,8,3kinghenryvi,1590 canst,8,3kinghenryvi,1590 pleasure,8,3kinghenryvi,1590 bid,8,3kinghenryvi,1590 said,8,3kinghenryvi,1590 breast,8,3kinghenryvi,1590 earth,8,3kinghenryvi,1590 lost,8,3kinghenryvi,1590 less,8,3kinghenryvi,1590 lose,8,3kinghenryvi,1590 keep,8,3kinghenryvi,1590 arm,8,3kinghenryvi,1590 little,8,3kinghenryvi,1590 Exeter,8,3kinghenryvi,1590 thanks,8,3kinghenryvi,1590 enemies,8,3kinghenryvi,1590 majesty,8,3kinghenryvi,1590 faint,8,3kinghenryvi,1590 quickly,8,3kinghenryvi,1590 Therefore,8,3kinghenryvi,1590 awhile,8,3kinghenryvi,1590 See,8,3kinghenryvi,1590 chair,8,3kinghenryvi,1590 Son,8,3kinghenryvi,1590 thing,8,3kinghenryvi,1590 break,8,3kinghenryvi,1590 only,8,3kinghenryvi,1590 Well,8,3kinghenryvi,1590 own,8,3kinghenryvi,1590 whence,8,3kinghenryvi,1590 cried,8,3kinghenryvi,1590 Till,8,3kinghenryvi,1590 ever,8,3kinghenryvi,1590 NORFOLK,8,3kinghenryvi,1590 seat,8,3kinghenryvi,1590 traitor,8,3kinghenryvi,1590 sister,8,3kinghenryvi,1590 fled,8,3kinghenryvi,1590 liege,8,3kinghenryvi,1590 Northumberland,8,3kinghenryvi,1590 power,8,3kinghenryvi,1590 peace,9,3kinghenryvi,1590 lawful,9,3kinghenryvi,1590 Tell,9,3kinghenryvi,1590 mercy,9,3kinghenryvi,1590 reign,9,3kinghenryvi,1590 stands,9,3kinghenryvi,1590 throne,9,3kinghenryvi,1590 doubt,9,3kinghenryvi,1590 Norfolk,9,3kinghenryvi,1590 wrong,9,3kinghenryvi,1590 after,9,3kinghenryvi,1590 about,9,3kinghenryvi,1590 sword,9,3kinghenryvi,1590 parliament,9,3kinghenryvi,1590 While,9,3kinghenryvi,1590 name,9,3kinghenryvi,1590 Had,9,3kinghenryvi,1590 We,9,3kinghenryvi,1590 got,9,3kinghenryvi,1590 farewell,9,3kinghenryvi,1590 Unless,9,3kinghenryvi,1590 long,9,3kinghenryvi,1590 victory,9,3kinghenryvi,1590 noble,9,3kinghenryvi,1590 Alarum,9,3kinghenryvi,1590 Than,9,3kinghenryvi,1590 new,9,3kinghenryvi,1590 She,9,3kinghenryvi,1590 child,9,3kinghenryvi,1590 very,9,3kinghenryvi,1590 Were,9,3kinghenryvi,1590 near,9,3kinghenryvi,1590 Hastings,9,3kinghenryvi,1590 Even,9,3kinghenryvi,1590 Brother,9,3kinghenryvi,1590 grant,9,3kinghenryvi,1590 pardon,9,3kinghenryvi,1590 along,9,3kinghenryvi,1590 we'll,9,3kinghenryvi,1590 English,9,3kinghenryvi,1590 post,9,3kinghenryvi,1590 Before,9,3kinghenryvi,1590 RUTLAND,9,3kinghenryvi,1590 slew,9,3kinghenryvi,1590 might,9,3kinghenryvi,1590 kill,9,3kinghenryvi,1590 answer,10,3kinghenryvi,1590 V,10,3kinghenryvi,1590 every,10,3kinghenryvi,1590 WESTMORELAND,10,3kinghenryvi,1590 strength,10,3kinghenryvi,1590 looks,10,3kinghenryvi,1590 Tower,10,3kinghenryvi,1590 foes,10,3kinghenryvi,1590 blows,10,3kinghenryvi,1590 kings,10,3kinghenryvi,1590 whose,10,3kinghenryvi,1590 gone,10,3kinghenryvi,1590 wear,10,3kinghenryvi,1590 Soldiers,10,3kinghenryvi,1590 thyself,10,3kinghenryvi,1590 loss,10,3kinghenryvi,1590 those,10,3kinghenryvi,1590 place,10,3kinghenryvi,1590 forth,10,3kinghenryvi,1590 Father,10,3kinghenryvi,1590 over,10,3kinghenryvi,1590 sorrow,10,3kinghenryvi,1590 loving,10,3kinghenryvi,1590 England's,10,3kinghenryvi,1590 ne'er,10,3kinghenryvi,1590 lives,10,3kinghenryvi,1590 use,10,3kinghenryvi,1590 March,10,3kinghenryvi,1590 Away,10,3kinghenryvi,1590 ten,10,3kinghenryvi,1590 other,10,3kinghenryvi,1590 joy,11,3kinghenryvi,1590 thought,11,3kinghenryvi,1590 while,11,3kinghenryvi,1590 drum,11,3kinghenryvi,1590 another,11,3kinghenryvi,1590 full,11,3kinghenryvi,1590 sea,11,3kinghenryvi,1590 Of,11,3kinghenryvi,1590 II,11,3kinghenryvi,1590 means,11,3kinghenryvi,1590 night,11,3kinghenryvi,1590 best,11,3kinghenryvi,1590 Rutland,11,3kinghenryvi,1590 gave,11,3kinghenryvi,1590 grief,11,3kinghenryvi,1590 ELIZABETH,11,3kinghenryvi,1590 left,11,3kinghenryvi,1590 prince,11,3kinghenryvi,1590 Hath,11,3kinghenryvi,1590 George,11,3kinghenryvi,1590 arms,11,3kinghenryvi,1590 Shall,11,3kinghenryvi,1590 colours,11,3kinghenryvi,1590 hold,11,3kinghenryvi,1590 back,11,3kinghenryvi,1590 seek,11,3kinghenryvi,1590 brave,12,3kinghenryvi,1590 meet,12,3kinghenryvi,1590 GEORGE,12,3kinghenryvi,1590 help,12,3kinghenryvi,1590 sit,12,3kinghenryvi,1590 against,12,3kinghenryvi,1590 sun,12,3kinghenryvi,1590 lands,12,3kinghenryvi,1590 proud,12,3kinghenryvi,1590 Bona,12,3kinghenryvi,1590 part,12,3kinghenryvi,1590 Lady,12,3kinghenryvi,1590 ere,12,3kinghenryvi,1590 bloody,12,3kinghenryvi,1590 state,12,3kinghenryvi,1590 could,12,3kinghenryvi,1590 still,12,3kinghenryvi,1590 fair,12,3kinghenryvi,1590 Warwick's,12,3kinghenryvi,1590 palace,12,3kinghenryvi,1590 Let,12,3kinghenryvi,1590 England,12,3kinghenryvi,1590 marriage,12,3kinghenryvi,1590 two,12,3kinghenryvi,1590 shame,12,3kinghenryvi,1590 heir,13,3kinghenryvi,1590 world,13,3kinghenryvi,1590 sons,13,3kinghenryvi,1590 came,13,3kinghenryvi,1590 honour,13,3kinghenryvi,1590 Be,13,3kinghenryvi,1590 OF,13,3kinghenryvi,1590 It,13,3kinghenryvi,1590 tongue,13,3kinghenryvi,1590 any,13,3kinghenryvi,1590 dead,13,3kinghenryvi,1590 far,13,3kinghenryvi,1590 Have,13,3kinghenryvi,1590 Your,13,3kinghenryvi,1590 Flourish,13,3kinghenryvi,1590 mind,13,3kinghenryvi,1590 let's,13,3kinghenryvi,1590 Earl,13,3kinghenryvi,1590 die,13,3kinghenryvi,1590 Whose,14,3kinghenryvi,1590 Nor,14,3kinghenryvi,1590 Not,14,3kinghenryvi,1590 Who,14,3kinghenryvi,1590 Our,14,3kinghenryvi,1590 Here,14,3kinghenryvi,1590 wind,14,3kinghenryvi,1590 mean,14,3kinghenryvi,1590 Plantagenet,14,3kinghenryvi,1590 valiant,14,3kinghenryvi,1590 been,14,3kinghenryvi,1590 march,14,3kinghenryvi,1590 slain,14,3kinghenryvi,1590 gates,14,3kinghenryvi,1590 who,14,3kinghenryvi,1590 think,14,3kinghenryvi,1590 duke,14,3kinghenryvi,1590 foe,14,3kinghenryvi,1590 whom,14,3kinghenryvi,1590 himself,14,3kinghenryvi,1590 his,270,3kinghenryvi,1590 Post,15,3kinghenryvi,1590 better,15,3kinghenryvi,1590 title,15,3kinghenryvi,1590 heaven,15,3kinghenryvi,1590 else,15,3kinghenryvi,1590 revenge,15,3kinghenryvi,1590 From,15,3kinghenryvi,1590 comes,15,3kinghenryvi,1590 'Tis,15,3kinghenryvi,1590 makes,15,3kinghenryvi,1590 follow,15,3kinghenryvi,1590 Exit,15,3kinghenryvi,1590 a,271,3kinghenryvi,1590 HASTINGS,16,3kinghenryvi,1590 gracious,16,3kinghenryvi,1590 Watchman,16,3kinghenryvi,1590 friend,16,3kinghenryvi,1590 there,16,3kinghenryvi,1590 boy,16,3kinghenryvi,1590 grace,16,3kinghenryvi,1590 young,16,3kinghenryvi,1590 nor,16,3kinghenryvi,1590 heard,16,3kinghenryvi,1590 face,16,3kinghenryvi,1590 Somerset,16,3kinghenryvi,1590 fortune,16,3kinghenryvi,1590 great,16,3kinghenryvi,1590 wilt,16,3kinghenryvi,1590 eyes,16,3kinghenryvi,1590 battle,16,3kinghenryvi,1590 poor,16,3kinghenryvi,1590 Messenger,16,3kinghenryvi,1590 sovereign,16,3kinghenryvi,1590 being,16,3kinghenryvi,1590 When,16,3kinghenryvi,1590 Margaret,17,3kinghenryvi,1590 soul,17,3kinghenryvi,1590 yield,17,3kinghenryvi,1590 Oxford,17,3kinghenryvi,1590 done,17,3kinghenryvi,1590 father's,17,3kinghenryvi,1590 before,17,3kinghenryvi,1590 till,17,3kinghenryvi,1590 Where,17,3kinghenryvi,1590 pity,18,3kinghenryvi,1590 Nay,18,3kinghenryvi,1590 Keeper,18,3kinghenryvi,1590 Come,18,3kinghenryvi,1590 body,18,3kinghenryvi,1590 set,18,3kinghenryvi,1590 His,18,3kinghenryvi,1590 Second,18,3kinghenryvi,1590 First,18,3kinghenryvi,1590 though,18,3kinghenryvi,1590 gentle,18,3kinghenryvi,1590 once,18,3kinghenryvi,1590 why,18,3kinghenryvi,1590 way,18,3kinghenryvi,1590 news,18,3kinghenryvi,1590 thousand,18,3kinghenryvi,1590 thus,18,3kinghenryvi,1590 live,18,3kinghenryvi,1590 shalt,18,3kinghenryvi,1590 which,19,3kinghenryvi,1590 By,19,3kinghenryvi,1590 Is,19,3kinghenryvi,1590 Lancaster,19,3kinghenryvi,1590 oath,19,3kinghenryvi,1590 Lewis,19,3kinghenryvi,1590 EXETER,19,3kinghenryvi,1590 Thy,19,3kinghenryvi,1590 some,20,3kinghenryvi,1590 Montague,20,3kinghenryvi,1590 In,20,3kinghenryvi,1590 Which,20,3kinghenryvi,1590 They,20,3kinghenryvi,1590 war,20,3kinghenryvi,1590 NORTHUMBERLAND,21,3kinghenryvi,1590 Henry's,21,3kinghenryvi,1590 fight,21,3kinghenryvi,1590 'tis,21,3kinghenryvi,1590 go,21,3kinghenryvi,1590 You,21,3kinghenryvi,1590 field,21,3kinghenryvi,1590 art,21,3kinghenryvi,1590 hast,21,3kinghenryvi,1590 myself,21,3kinghenryvi,1590 true,21,3kinghenryvi,1590 tears,22,3kinghenryvi,1590 therefore,22,3kinghenryvi,1590 hands,22,3kinghenryvi,1590 know,22,3kinghenryvi,1590 time,22,3kinghenryvi,1590 day,22,3kinghenryvi,1590 cannot,22,3kinghenryvi,1590 Edward's,22,3kinghenryvi,1590 she,23,3kinghenryvi,1590 had,23,3kinghenryvi,1590 bear,23,3kinghenryvi,1590 Yet,23,3kinghenryvi,1590 How,23,3kinghenryvi,1590 This,23,3kinghenryvi,1590 house,23,3kinghenryvi,1590 With,24,3kinghenryvi,1590 fear,24,3kinghenryvi,1590 where,24,3kinghenryvi,1590 again,24,3kinghenryvi,1590 London,24,3kinghenryvi,1590 fly,24,3kinghenryvi,1590 away,25,3kinghenryvi,1590 hence,25,3kinghenryvi,1590 OXFORD,25,3kinghenryvi,1590 stand,25,3kinghenryvi,1590 off,25,3kinghenryvi,1590 hope,25,3kinghenryvi,1590 ',26,3kinghenryvi,1590 much,26,3kinghenryvi,1590 friends,26,3kinghenryvi,1590 say,26,3kinghenryvi,1590 Aside,26,3kinghenryvi,1590 tell,26,3kinghenryvi,1590 never,26,3kinghenryvi,1590 XI,26,3kinghenryvi,1590 soldiers,26,3kinghenryvi,1590 thine,26,3kinghenryvi,1590 LADY,26,3kinghenryvi,1590 PRINCE,26,3kinghenryvi,1590 sweet,26,3kinghenryvi,1590 GREY,26,3kinghenryvi,1590 man,26,3kinghenryvi,1590 LEWIS,27,3kinghenryvi,1590 Ah,27,3kinghenryvi,1590 good,27,3kinghenryvi,1590 MONTAGUE,27,3kinghenryvi,1590 made,27,3kinghenryvi,1590 out,27,3kinghenryvi,1590 SOMERSET,27,3kinghenryvi,1590 upon,28,3kinghenryvi,1590 such,28,3kinghenryvi,1590 stay,28,3kinghenryvi,1590 If,28,3kinghenryvi,1590 doth,28,3kinghenryvi,1590 yet,28,3kinghenryvi,1590 right,28,3kinghenryvi,1590 ACT,28,3kinghenryvi,1590 Then,28,3kinghenryvi,1590 one,28,3kinghenryvi,1590 come,28,3kinghenryvi,1590 As,29,3kinghenryvi,1590 He,29,3kinghenryvi,1590 down,29,3kinghenryvi,1590 Or,29,3kinghenryvi,1590 can,29,3kinghenryvi,1590 God,29,3kinghenryvi,1590 give,29,3kinghenryvi,1590 Thou,29,3kinghenryvi,1590 men,29,3kinghenryvi,1590 too,29,3kinghenryvi,1590 SCENE,29,3kinghenryvi,1590 and,541,3kinghenryvi,1590 see,30,3kinghenryvi,1590 No,30,3kinghenryvi,1590 A,31,3kinghenryvi,1590 life,31,3kinghenryvi,1590 both,31,3kinghenryvi,1590 Lord,31,3kinghenryvi,1590 did,31,3kinghenryvi,1590 hear,32,3kinghenryvi,1590 head,32,3kinghenryvi,1590 rest,32,3kinghenryvi,1590 these,32,3kinghenryvi,1590 an,32,3kinghenryvi,1590 Richard,32,3kinghenryvi,1590 words,33,3kinghenryvi,1590 Duke,34,3kinghenryvi,1590 Exeunt,34,3kinghenryvi,1590 hand,34,3kinghenryvi,1590 many,34,3kinghenryvi,1590 must,35,3kinghenryvi,1590 mine,35,3kinghenryvi,1590 well,35,3kinghenryvi,1590 France,36,3kinghenryvi,1590 take,36,3kinghenryvi,1590 when,36,3kinghenryvi,1590 leave,37,3kinghenryvi,1590 up,38,3kinghenryvi,1590 heart,38,3kinghenryvi,1590 were,38,3kinghenryvi,1590 let,38,3kinghenryvi,1590 death,39,3kinghenryvi,1590 they,39,3kinghenryvi,1590 So,39,3kinghenryvi,1590 speak,39,3kinghenryvi,1590 unto,39,3kinghenryvi,1590 O,40,3kinghenryvi,1590 love,40,3kinghenryvi,1590 lords,40,3kinghenryvi,1590 blood,41,3kinghenryvi,1590 Clarence,41,3kinghenryvi,1590 King,41,3kinghenryvi,1590 Now,42,3kinghenryvi,1590 should,42,3kinghenryvi,1590 would,42,3kinghenryvi,1590 YORK,43,3kinghenryvi,1590 Clifford,44,3kinghenryvi,1590 lord,44,3kinghenryvi,1590 may,44,3kinghenryvi,1590 here,45,3kinghenryvi,1590 than,45,3kinghenryvi,1590 Ay,45,3kinghenryvi,1590 am,45,3kinghenryvi,1590 son,46,3kinghenryvi,1590 CLIFFORD,46,3kinghenryvi,1590 how,47,3kinghenryvi,1590 hath,48,3kinghenryvi,1590 or,49,3kinghenryvi,1590 queen,51,3kinghenryvi,1590 make,52,3kinghenryvi,1590 like,53,3kinghenryvi,1590 Why,53,3kinghenryvi,1590 brother,54,3kinghenryvi,1590 RICHARD,54,3kinghenryvi,1590 her,56,3kinghenryvi,1590 us,56,3kinghenryvi,1590 then,58,3kinghenryvi,1590 CLARENCE,58,3kinghenryvi,1590 was,58,3kinghenryvi,1590 What,59,3kinghenryvi,1590 I'll,60,3kinghenryvi,1590 them,61,3kinghenryvi,1590 do,61,3kinghenryvi,1590 crown,62,3kinghenryvi,1590 My,63,3kinghenryvi,1590 Henry,63,3kinghenryvi,1590 MARGARET,63,3kinghenryvi,1590 on,64,3kinghenryvi,1590 York,65,3kinghenryvi,1590 if,66,3kinghenryvi,1590 father,67,3kinghenryvi,1590 more,71,3kinghenryvi,1590 Enter,71,3kinghenryvi,1590 are,72,3kinghenryvi,1590 at,73,3kinghenryvi,1590 no,73,3kinghenryvi,1590 QUEEN,74,3kinghenryvi,1590 Edward,75,3kinghenryvi,1590 so,76,3kinghenryvi,1590 from,76,3kinghenryvi,1590 their,77,3kinghenryvi,1590 what,77,3kinghenryvi,1590 That,78,3kinghenryvi,1590 all,82,3kinghenryvi,1590 now,83,3kinghenryvi,1590 GLOUCESTER,86,3kinghenryvi,1590 by,90,3kinghenryvi,1590 For,91,3kinghenryvi,1590 To,94,3kinghenryvi,1590 my,350,3kinghenryvi,1590 The,96,3kinghenryvi,1590 But,97,3kinghenryvi,1590 but,100,3kinghenryvi,1590 shall,105,3kinghenryvi,1590 king,106,3kinghenryvi,1590 have,110,3kinghenryvi,1590 VI,111,3kinghenryvi,1590 we,111,3kinghenryvi,1590 HENRY,113,3kinghenryvi,1590 Warwick,117,3kinghenryvi,1590 thee,118,3kinghenryvi,1590 as,118,3kinghenryvi,1590 WARWICK,122,3kinghenryvi,1590 he,124,3kinghenryvi,1590 IV,126,3kinghenryvi,1590 our,128,3kinghenryvi,1590 your,130,3kinghenryvi,1590 it,130,3kinghenryvi,1590 will,130,3kinghenryvi,1590 him,143,3kinghenryvi,1590 And,406,3kinghenryvi,1590 of,411,3kinghenryvi,1590 you,167,3kinghenryvi,1590 this,168,3kinghenryvi,1590 is,178,3kinghenryvi,1590 thy,180,3kinghenryvi,1590 EDWARD,181,3kinghenryvi,1590 me,184,3kinghenryvi,1590 not,184,3kinghenryvi,1590 for,190,3kinghenryvi,1590 thou,191,3kinghenryvi,1590 be,195,3kinghenryvi,1590 the,718,3kinghenryvi,1590 I,495,3kinghenryvi,1590 KING,249,3kinghenryvi,1590 that,250,3kinghenryvi,1590 with,250,3kinghenryvi,1590 profession,1,juliuscaesar,1599 treason,1,juliuscaesar,1599 veil'd,1,juliuscaesar,1599 steads,1,juliuscaesar,1599 troubled,1,juliuscaesar,1599 parchment,1,juliuscaesar,1599 sleeve,1,juliuscaesar,1599 rushing,1,juliuscaesar,1599 somebody,1,juliuscaesar,1599 M,1,juliuscaesar,1599 name's,1,juliuscaesar,1599 womanish,1,juliuscaesar,1599 drawing,1,juliuscaesar,1599 elephants,1,juliuscaesar,1599 meek,1,juliuscaesar,1599 guard,1,juliuscaesar,1599 Stands,1,juliuscaesar,1599 smiled,1,juliuscaesar,1599 crouch,1,juliuscaesar,1599 address'd,1,juliuscaesar,1599 Yours,1,juliuscaesar,1599 taking,1,juliuscaesar,1599 basis,1,juliuscaesar,1599 You've,1,juliuscaesar,1599 derived,1,juliuscaesar,1599 fathers,1,juliuscaesar,1599 tops,1,juliuscaesar,1599 leisure,1,juliuscaesar,1599 relics,1,juliuscaesar,1599 necessities,1,juliuscaesar,1599 brass,1,juliuscaesar,1599 crimson'd,1,juliuscaesar,1599 writ,1,juliuscaesar,1599 planted,1,juliuscaesar,1599 possible,1,juliuscaesar,1599 treasure,1,juliuscaesar,1599 hinder,1,juliuscaesar,1599 neighbours,1,juliuscaesar,1599 woman's,1,juliuscaesar,1599 gray,1,juliuscaesar,1599 shadows,1,juliuscaesar,1599 entire,1,juliuscaesar,1599 dine,1,juliuscaesar,1599 rag,1,juliuscaesar,1599 lawful,1,juliuscaesar,1599 unborn,1,juliuscaesar,1599 honourably,1,juliuscaesar,1599 hasty,1,juliuscaesar,1599 rock,1,juliuscaesar,1599 replication,1,juliuscaesar,1599 ascends,1,juliuscaesar,1599 dint,1,juliuscaesar,1599 element,1,juliuscaesar,1599 breathless,1,juliuscaesar,1599 interpreted,1,juliuscaesar,1599 rascal,1,juliuscaesar,1599 bonds,1,juliuscaesar,1599 assured,1,juliuscaesar,1599 robe,1,juliuscaesar,1599 rob,1,juliuscaesar,1599 comets,1,juliuscaesar,1599 doubtful,1,juliuscaesar,1599 heart's,1,juliuscaesar,1599 scene,1,juliuscaesar,1599 Wilt,1,juliuscaesar,1599 foamed,1,juliuscaesar,1599 day's,1,juliuscaesar,1599 easily,1,juliuscaesar,1599 space,1,juliuscaesar,1599 villain,1,juliuscaesar,1599 testy,1,juliuscaesar,1599 strengthen,1,juliuscaesar,1599 warning,1,juliuscaesar,1599 dish,1,juliuscaesar,1599 Kills,1,juliuscaesar,1599 single,1,juliuscaesar,1599 eight,1,juliuscaesar,1599 Passion,1,juliuscaesar,1599 sleepy,1,juliuscaesar,1599 beest,1,juliuscaesar,1599 darkness,1,juliuscaesar,1599 'Alas,1,juliuscaesar,1599 painted,1,juliuscaesar,1599 richest,1,juliuscaesar,1599 herd,1,juliuscaesar,1599 dropp'd,1,juliuscaesar,1599 spake,1,juliuscaesar,1599 mere,1,juliuscaesar,1599 decay,1,juliuscaesar,1599 security,1,juliuscaesar,1599 besmear,1,juliuscaesar,1599 braved,1,juliuscaesar,1599 errand,1,juliuscaesar,1599 learn'd,1,juliuscaesar,1599 Held,1,juliuscaesar,1599 rumour,1,juliuscaesar,1599 offer,1,juliuscaesar,1599 lowly,1,juliuscaesar,1599 Far,1,juliuscaesar,1599 demeanor,1,juliuscaesar,1599 fought,1,juliuscaesar,1599 naked,1,juliuscaesar,1599 Lovers,1,juliuscaesar,1599 hanged,1,juliuscaesar,1599 Forgets,1,juliuscaesar,1599 summer's,1,juliuscaesar,1599 feeds,1,juliuscaesar,1599 praising,1,juliuscaesar,1599 unassailable,1,juliuscaesar,1599 sayings,1,juliuscaesar,1599 fury,1,juliuscaesar,1599 bring'st,1,juliuscaesar,1599 Ere,1,juliuscaesar,1599 throat,1,juliuscaesar,1599 cowardice,1,juliuscaesar,1599 sour,1,juliuscaesar,1599 horrid,1,juliuscaesar,1599 prey,1,juliuscaesar,1599 obscurely,1,juliuscaesar,1599 jades,1,juliuscaesar,1599 thirty,1,juliuscaesar,1599 Cowards,1,juliuscaesar,1599 befall,1,juliuscaesar,1599 consorted,1,juliuscaesar,1599 iron,1,juliuscaesar,1599 damned,1,juliuscaesar,1599 offal,1,juliuscaesar,1599 Post,1,juliuscaesar,1599 Shaking,1,juliuscaesar,1599 stamp'd,1,juliuscaesar,1599 trust,1,juliuscaesar,1599 Began,1,juliuscaesar,1599 AEMILIUS,1,juliuscaesar,1599 lief,1,juliuscaesar,1599 remain,1,juliuscaesar,1599 rated,1,juliuscaesar,1599 bowels,1,juliuscaesar,1599 wounded,1,juliuscaesar,1599 Incenses,1,juliuscaesar,1599 envenomed,1,juliuscaesar,1599 PERSONAE,1,juliuscaesar,1599 climb'd,1,juliuscaesar,1599 spare,1,juliuscaesar,1599 spark,1,juliuscaesar,1599 insurrection,1,juliuscaesar,1599 case,1,juliuscaesar,1599 teacher,1,juliuscaesar,1599 attempt,1,juliuscaesar,1599 song,1,juliuscaesar,1599 coffers,1,juliuscaesar,1599 ascended,1,juliuscaesar,1599 mistook,1,juliuscaesar,1599 regions,1,juliuscaesar,1599 pleasing,1,juliuscaesar,1599 lustre,1,juliuscaesar,1599 performance,1,juliuscaesar,1599 accidental,1,juliuscaesar,1599 plague,1,juliuscaesar,1599 passions,1,juliuscaesar,1599 order'd,1,juliuscaesar,1599 torrent,1,juliuscaesar,1599 criedst,1,juliuscaesar,1599 Forget,1,juliuscaesar,1599 eruptions,1,juliuscaesar,1599 lacks,1,juliuscaesar,1599 sterile,1,juliuscaesar,1599 amazed,1,juliuscaesar,1599 tarrying,1,juliuscaesar,1599 conscience,1,juliuscaesar,1599 After,1,juliuscaesar,1599 apparition,1,juliuscaesar,1599 draw,1,juliuscaesar,1599 camp,1,juliuscaesar,1599 friend's,1,juliuscaesar,1599 insisted,1,juliuscaesar,1599 engagements,1,juliuscaesar,1599 receiving,1,juliuscaesar,1599 unaccustom'd,1,juliuscaesar,1599 ruddy,1,juliuscaesar,1599 sat,1,juliuscaesar,1599 bearing,1,juliuscaesar,1599 assembly,1,juliuscaesar,1599 constantly,1,juliuscaesar,1599 grows,1,juliuscaesar,1599 hour's,1,juliuscaesar,1599 affability,1,juliuscaesar,1599 disprove,1,juliuscaesar,1599 choleric,1,juliuscaesar,1599 limb,1,juliuscaesar,1599 gracious,1,juliuscaesar,1599 afraid',1,juliuscaesar,1599 suburbs,1,juliuscaesar,1599 caps,1,juliuscaesar,1599 Liberty,1,juliuscaesar,1599 Lucilius',1,juliuscaesar,1599 brothers',1,juliuscaesar,1599 Anchises,1,juliuscaesar,1599 factious,1,juliuscaesar,1599 afterwards,1,juliuscaesar,1599 heap,1,juliuscaesar,1599 roar'd,1,juliuscaesar,1599 revels,1,juliuscaesar,1599 budge,1,juliuscaesar,1599 Woe,1,juliuscaesar,1599 Fled,1,juliuscaesar,1599 worthier,1,juliuscaesar,1599 charactery,1,juliuscaesar,1599 cheer,1,juliuscaesar,1599 contrive,1,juliuscaesar,1599 cheek,1,juliuscaesar,1599 voices,1,juliuscaesar,1599 lift,1,juliuscaesar,1599 soil,1,juliuscaesar,1599 yearns,1,juliuscaesar,1599 officers,1,juliuscaesar,1599 Yield,1,juliuscaesar,1599 glass,1,juliuscaesar,1599 making,1,juliuscaesar,1599 chimney,1,juliuscaesar,1599 shrewdly,1,juliuscaesar,1599 complexion,1,juliuscaesar,1599 addition,1,juliuscaesar,1599 teach,1,juliuscaesar,1599 soft,1,juliuscaesar,1599 Methinks,1,juliuscaesar,1599 richer,1,juliuscaesar,1599 squadrons,1,juliuscaesar,1599 wait,1,juliuscaesar,1599 wrathfully,1,juliuscaesar,1599 Thoughts,1,juliuscaesar,1599 contribution,1,juliuscaesar,1599 slippery,1,juliuscaesar,1599 black,1,juliuscaesar,1599 companies,1,juliuscaesar,1599 Lay'st,1,juliuscaesar,1599 Gentle,1,juliuscaesar,1599 view,1,juliuscaesar,1599 soar,1,juliuscaesar,1599 provender,1,juliuscaesar,1599 ocean,1,juliuscaesar,1599 plucked,1,juliuscaesar,1599 execution,1,juliuscaesar,1599 LENA,1,juliuscaesar,1599 six,1,juliuscaesar,1599 shamed,1,juliuscaesar,1599 acted,1,juliuscaesar,1599 plains,1,juliuscaesar,1599 warnings,1,juliuscaesar,1599 I'm,1,juliuscaesar,1599 blocks,1,juliuscaesar,1599 whatsoever,1,juliuscaesar,1599 soundless,1,juliuscaesar,1599 history,1,juliuscaesar,1599 sums,1,juliuscaesar,1599 speeches,1,juliuscaesar,1599 instigations,1,juliuscaesar,1599 stands,1,juliuscaesar,1599 prevail'd,1,juliuscaesar,1599 ages,1,juliuscaesar,1599 brook'd,1,juliuscaesar,1599 laugh'd,1,juliuscaesar,1599 think'st,1,juliuscaesar,1599 Crown,1,juliuscaesar,1599 ourself,1,juliuscaesar,1599 bastard,1,juliuscaesar,1599 enkindled,1,juliuscaesar,1599 disclosed,1,juliuscaesar,1599 portentous,1,juliuscaesar,1599 saying,1,juliuscaesar,1599 sex,1,juliuscaesar,1599 ruby,1,juliuscaesar,1599 Kneel,1,juliuscaesar,1599 coronets,1,juliuscaesar,1599 arguing,1,juliuscaesar,1599 Write,1,juliuscaesar,1599 wake,1,juliuscaesar,1599 touched,1,juliuscaesar,1599 catching,1,juliuscaesar,1599 slaughter,1,juliuscaesar,1599 yawn'd,1,juliuscaesar,1599 peevish,1,juliuscaesar,1599 lions,1,juliuscaesar,1599 Mean,1,juliuscaesar,1599 Walk,1,juliuscaesar,1599 birds,1,juliuscaesar,1599 chew,1,juliuscaesar,1599 dismember,1,juliuscaesar,1599 embrace,1,juliuscaesar,1599 thunders,1,juliuscaesar,1599 vanishest,1,juliuscaesar,1599 scorn'd,1,juliuscaesar,1599 famed,1,juliuscaesar,1599 Merely,1,juliuscaesar,1599 winds,1,juliuscaesar,1599 subject,1,juliuscaesar,1599 followed,1,juliuscaesar,1599 looking,1,juliuscaesar,1599 apparent,1,juliuscaesar,1599 melting,1,juliuscaesar,1599 Slay,1,juliuscaesar,1599 counsel,1,juliuscaesar,1599 kindle,1,juliuscaesar,1599 dignities,1,juliuscaesar,1599 bow'd,1,juliuscaesar,1599 's,1,juliuscaesar,1599 slighted,1,juliuscaesar,1599 acquainted,1,juliuscaesar,1599 study,1,juliuscaesar,1599 extremities,1,juliuscaesar,1599 exorcist,1,juliuscaesar,1599 pitiful,1,juliuscaesar,1599 sky,1,juliuscaesar,1599 hatch'd,1,juliuscaesar,1599 Music,1,juliuscaesar,1599 Defiance,1,juliuscaesar,1599 conquests,1,juliuscaesar,1599 offering,1,juliuscaesar,1599 stuff,1,juliuscaesar,1599 Accoutred,1,juliuscaesar,1599 Attendants,1,juliuscaesar,1599 shallows,1,juliuscaesar,1599 scope,1,juliuscaesar,1599 Spain,1,juliuscaesar,1599 becomes,1,juliuscaesar,1599 Guide,1,juliuscaesar,1599 suffered,1,juliuscaesar,1599 appear'd,1,juliuscaesar,1599 Anthony,1,juliuscaesar,1599 indifferent,1,juliuscaesar,1599 shriek,1,juliuscaesar,1599 puissant,1,juliuscaesar,1599 taught,1,juliuscaesar,1599 everlasting,1,juliuscaesar,1599 eating,1,juliuscaesar,1599 hooted,1,juliuscaesar,1599 vanish,1,juliuscaesar,1599 turning,1,juliuscaesar,1599 points,1,juliuscaesar,1599 undeservers,1,juliuscaesar,1599 conceit,1,juliuscaesar,1599 fawning,1,juliuscaesar,1599 Out,1,juliuscaesar,1599 unkindly,1,juliuscaesar,1599 confounded,1,juliuscaesar,1599 skies,1,juliuscaesar,1599 profess,1,juliuscaesar,1599 afraid,1,juliuscaesar,1599 ways,1,juliuscaesar,1599 rhyme,1,juliuscaesar,1599 burneth,1,juliuscaesar,1599 daughter,1,juliuscaesar,1599 refresh'd,1,juliuscaesar,1599 absence,1,juliuscaesar,1599 reek,1,juliuscaesar,1599 combined,1,juliuscaesar,1599 orts,1,juliuscaesar,1599 runs,1,juliuscaesar,1599 freeman,1,juliuscaesar,1599 'Fly,1,juliuscaesar,1599 tradesman's,1,juliuscaesar,1599 terms,1,juliuscaesar,1599 encounter,1,juliuscaesar,1599 'Long,1,juliuscaesar,1599 dearly,1,juliuscaesar,1599 commit,1,juliuscaesar,1599 Sound,1,juliuscaesar,1599 Colossus,1,juliuscaesar,1599 expedition,1,juliuscaesar,1599 flatterer,1,juliuscaesar,1599 Leave,1,juliuscaesar,1599 flattered,1,juliuscaesar,1599 speechless,1,juliuscaesar,1599 overthrown,1,juliuscaesar,1599 sup,1,juliuscaesar,1599 vanished,1,juliuscaesar,1599 palter,1,juliuscaesar,1599 justice',1,juliuscaesar,1599 feed,1,juliuscaesar,1599 ancestor,1,juliuscaesar,1599 feel,1,juliuscaesar,1599 spaniel,1,juliuscaesar,1599 feet,1,juliuscaesar,1599 sauce,1,juliuscaesar,1599 benches,1,juliuscaesar,1599 melancholy's,1,juliuscaesar,1599 beaten,1,juliuscaesar,1599 service,1,juliuscaesar,1599 descend,1,juliuscaesar,1599 'scaped,1,juliuscaesar,1599 elders,1,juliuscaesar,1599 costly,1,juliuscaesar,1599 malice,1,juliuscaesar,1599 suffering,1,juliuscaesar,1599 tag,1,juliuscaesar,1599 Betwixt,1,juliuscaesar,1599 behaviors,1,juliuscaesar,1599 Whereto,1,juliuscaesar,1599 choose,1,juliuscaesar,1599 rude,1,juliuscaesar,1599 putting,1,juliuscaesar,1599 Vouchsafe,1,juliuscaesar,1599 mothers',1,juliuscaesar,1599 flesh,1,juliuscaesar,1599 Gorging,1,juliuscaesar,1599 Crying,1,juliuscaesar,1599 Might,1,juliuscaesar,1599 handiwork,1,juliuscaesar,1599 seems,1,juliuscaesar,1599 dreamer,1,juliuscaesar,1599 rent,1,juliuscaesar,1599 One,1,juliuscaesar,1599 want,1,juliuscaesar,1599 drowsily,1,juliuscaesar,1599 peasants,1,juliuscaesar,1599 inflame,1,juliuscaesar,1599 dearer,1,juliuscaesar,1599 astonish,1,juliuscaesar,1599 Dash,1,juliuscaesar,1599 ferret,1,juliuscaesar,1599 scorning,1,juliuscaesar,1599 hates,1,juliuscaesar,1599 Retreat,1,juliuscaesar,1599 seest,1,juliuscaesar,1599 servile,1,juliuscaesar,1599 Immediately,1,juliuscaesar,1599 horsemen,1,juliuscaesar,1599 nimbleness,1,juliuscaesar,1599 custom,1,juliuscaesar,1599 murder,1,juliuscaesar,1599 throws,1,juliuscaesar,1599 property,1,juliuscaesar,1599 Tending,1,juliuscaesar,1599 northern,1,juliuscaesar,1599 Fetch,1,juliuscaesar,1599 useth,1,juliuscaesar,1599 'Speak,1,juliuscaesar,1599 bidding,1,juliuscaesar,1599 warn,1,juliuscaesar,1599 stop,1,juliuscaesar,1599 loins,1,juliuscaesar,1599 wars,1,juliuscaesar,1599 wary,1,juliuscaesar,1599 meat,1,juliuscaesar,1599 wash,1,juliuscaesar,1599 Burn,1,juliuscaesar,1599 office,1,juliuscaesar,1599 join'd,1,juliuscaesar,1599 Lions,1,juliuscaesar,1599 stirr'd,1,juliuscaesar,1599 untired,1,juliuscaesar,1599 rubbish,1,juliuscaesar,1599 untrod,1,juliuscaesar,1599 alliance,1,juliuscaesar,1599 forgave,1,juliuscaesar,1599 bright,1,juliuscaesar,1599 Parthia,1,juliuscaesar,1599 party,1,juliuscaesar,1599 Repair,1,juliuscaesar,1599 infirmity,1,juliuscaesar,1599 Follow,1,juliuscaesar,1599 Draw,1,juliuscaesar,1599 hungry,1,juliuscaesar,1599 objects,1,juliuscaesar,1599 healthful,1,juliuscaesar,1599 tending,1,juliuscaesar,1599 perch'd,1,juliuscaesar,1599 opening,1,juliuscaesar,1599 annoying,1,juliuscaesar,1599 big,1,juliuscaesar,1599 senses,1,juliuscaesar,1599 scandal,1,juliuscaesar,1599 youths,1,juliuscaesar,1599 grievous,1,juliuscaesar,1599 contriver,1,juliuscaesar,1599 Et,1,juliuscaesar,1599 ha',1,juliuscaesar,1599 bastardy,1,juliuscaesar,1599 life's,1,juliuscaesar,1599 dishonourable,1,juliuscaesar,1599 physical,1,juliuscaesar,1599 commended,1,juliuscaesar,1599 surest,1,juliuscaesar,1599 While,1,juliuscaesar,1599 notest,1,juliuscaesar,1599 overthrow,1,juliuscaesar,1599 climate,1,juliuscaesar,1599 Struck,1,juliuscaesar,1599 foes,1,juliuscaesar,1599 utter,1,juliuscaesar,1599 Belike,1,juliuscaesar,1599 refuse,1,juliuscaesar,1599 Tyranny,1,juliuscaesar,1599 orator,1,juliuscaesar,1599 descends,1,juliuscaesar,1599 vexeth,1,juliuscaesar,1599 measure,1,juliuscaesar,1599 'Twere,1,juliuscaesar,1599 flattery,1,juliuscaesar,1599 fearfulness,1,juliuscaesar,1599 appeased,1,juliuscaesar,1599 controversy,1,juliuscaesar,1599 stubborn,1,juliuscaesar,1599 quarrel,1,juliuscaesar,1599 depend,1,juliuscaesar,1599 motives,1,juliuscaesar,1599 youthful,1,juliuscaesar,1599 bow,1,juliuscaesar,1599 Him,1,juliuscaesar,1599 loath,1,juliuscaesar,1599 Whiles,1,juliuscaesar,1599 guiltiness,1,juliuscaesar,1599 eternal,1,juliuscaesar,1599 govern,1,juliuscaesar,1599 suffers,1,juliuscaesar,1599 alarum,1,juliuscaesar,1599 hew,1,juliuscaesar,1599 voluntary,1,juliuscaesar,1599 encompass'd,1,juliuscaesar,1599 hopes,1,juliuscaesar,1599 Lo,1,juliuscaesar,1599 prodigious,1,juliuscaesar,1599 fates,1,juliuscaesar,1599 Nature,1,juliuscaesar,1599 sensible,1,juliuscaesar,1599 'Havoc,1,juliuscaesar,1599 Statilius,1,juliuscaesar,1599 harlot,1,juliuscaesar,1599 foam,1,juliuscaesar,1599 praetors,1,juliuscaesar,1599 gentleness,1,juliuscaesar,1599 scarfs,1,juliuscaesar,1599 listen,1,juliuscaesar,1599 canst,1,juliuscaesar,1599 Answer,1,juliuscaesar,1599 Weighing,1,juliuscaesar,1599 star,1,juliuscaesar,1599 shriller,1,juliuscaesar,1599 void,1,juliuscaesar,1599 lottery,1,juliuscaesar,1599 begun,1,juliuscaesar,1599 force,1,juliuscaesar,1599 gamesome,1,juliuscaesar,1599 hie,1,juliuscaesar,1599 conjointly,1,juliuscaesar,1599 finds,1,juliuscaesar,1599 thews,1,juliuscaesar,1599 conceived,1,juliuscaesar,1599 House,1,juliuscaesar,1599 flowers,1,juliuscaesar,1599 piteous,1,juliuscaesar,1599 fatal,1,juliuscaesar,1599 Ho,1,juliuscaesar,1599 dinner,1,juliuscaesar,1599 blest,1,juliuscaesar,1599 triumvirs,1,juliuscaesar,1599 appoint,1,juliuscaesar,1599 path,1,juliuscaesar,1599 grasped,1,juliuscaesar,1599 Recounts,1,juliuscaesar,1599 fatter,1,juliuscaesar,1599 Seldom,1,juliuscaesar,1599 sport,1,juliuscaesar,1599 adder,1,juliuscaesar,1599 past,1,juliuscaesar,1599 illuminate,1,juliuscaesar,1599 hides,1,juliuscaesar,1599 pulpits,1,juliuscaesar,1599 meals,1,juliuscaesar,1599 Has,1,juliuscaesar,1599 pit,1,juliuscaesar,1599 proud,1,juliuscaesar,1599 Up,1,juliuscaesar,1599 Is't,1,juliuscaesar,1599 Answering,1,juliuscaesar,1599 ague,1,juliuscaesar,1599 strew,1,juliuscaesar,1599 Pella,1,juliuscaesar,1599 nice,1,juliuscaesar,1599 vesture,1,juliuscaesar,1599 nobly,1,juliuscaesar,1599 Marullus,1,juliuscaesar,1599 outlive,1,juliuscaesar,1599 obey,1,juliuscaesar,1599 enrolled,1,juliuscaesar,1599 sought,1,juliuscaesar,1599 madmen,1,juliuscaesar,1599 doers,1,juliuscaesar,1599 be'st,1,juliuscaesar,1599 sits,1,juliuscaesar,1599 hills,1,juliuscaesar,1599 busy,1,juliuscaesar,1599 absent,1,juliuscaesar,1599 Dearer,1,juliuscaesar,1599 Bequeathing,1,juliuscaesar,1599 was't,1,juliuscaesar,1599 rebel,1,juliuscaesar,1599 fields,1,juliuscaesar,1599 loads,1,juliuscaesar,1599 knotty,1,juliuscaesar,1599 redder,1,juliuscaesar,1599 cavern,1,juliuscaesar,1599 behind,1,juliuscaesar,1599 lethe,1,juliuscaesar,1599 difference,1,juliuscaesar,1599 Prithee,1,juliuscaesar,1599 climber,1,juliuscaesar,1599 kindness,1,juliuscaesar,1599 posture,1,juliuscaesar,1599 immediately,1,juliuscaesar,1599 unscorch'd,1,juliuscaesar,1599 coffin,1,juliuscaesar,1599 madman,1,juliuscaesar,1599 petition,1,juliuscaesar,1599 arose,1,juliuscaesar,1599 sounds,1,juliuscaesar,1599 tricks,1,juliuscaesar,1599 moreover,1,juliuscaesar,1599 orchard,1,juliuscaesar,1599 yon,1,juliuscaesar,1599 immediate,1,juliuscaesar,1599 Sirs,1,juliuscaesar,1599 pre,1,juliuscaesar,1599 gaze,1,juliuscaesar,1599 latest,1,juliuscaesar,1599 woful,1,juliuscaesar,1599 Save,1,juliuscaesar,1599 disperse,1,juliuscaesar,1599 beyond,1,juliuscaesar,1599 shadow,1,juliuscaesar,1599 modestly,1,juliuscaesar,1599 perilous,1,juliuscaesar,1599 vaunting,1,juliuscaesar,1599 melteth,1,juliuscaesar,1599 games,1,juliuscaesar,1599 disclose,1,juliuscaesar,1599 Put,1,juliuscaesar,1599 waving,1,juliuscaesar,1599 courtesies,1,juliuscaesar,1599 grudged,1,juliuscaesar,1599 meanest,1,juliuscaesar,1599 legacy,1,juliuscaesar,1599 suddenly,1,juliuscaesar,1599 o'erread,1,juliuscaesar,1599 Tarquin,1,juliuscaesar,1599 carpenter,1,juliuscaesar,1599 persuasion,1,juliuscaesar,1599 arbours,1,juliuscaesar,1599 'Shall,1,juliuscaesar,1599 Sink,1,juliuscaesar,1599 discomfort,1,juliuscaesar,1599 vows,1,juliuscaesar,1599 Shakes,1,juliuscaesar,1599 buy,1,juliuscaesar,1599 Ye,1,juliuscaesar,1599 ingrafted,1,juliuscaesar,1599 used,1,juliuscaesar,1599 Urge,1,juliuscaesar,1599 Sardians,1,juliuscaesar,1599 o'ersway,1,juliuscaesar,1599 bees,1,juliuscaesar,1599 Meet,1,juliuscaesar,1599 people's,1,juliuscaesar,1599 'Break,1,juliuscaesar,1599 Flatterers,1,juliuscaesar,1599 stronger,1,juliuscaesar,1599 pains,1,juliuscaesar,1599 gate,1,juliuscaesar,1599 'Twas,1,juliuscaesar,1599 sister's,1,juliuscaesar,1599 Sway'd,1,juliuscaesar,1599 stretch,1,juliuscaesar,1599 extenuated,1,juliuscaesar,1599 pitch,1,juliuscaesar,1599 lamented,1,juliuscaesar,1599 heap'd,1,juliuscaesar,1599 north,1,juliuscaesar,1599 ashamed,1,juliuscaesar,1599 upper,1,juliuscaesar,1599 resort,1,juliuscaesar,1599 Both,1,juliuscaesar,1599 beginning,1,juliuscaesar,1599 afoot,1,juliuscaesar,1599 foremost,1,juliuscaesar,1599 opens,1,juliuscaesar,1599 tower,1,juliuscaesar,1599 quite,1,juliuscaesar,1599 predictions,1,juliuscaesar,1599 dogs,1,juliuscaesar,1599 noted,1,juliuscaesar,1599 entertain,1,juliuscaesar,1599 eagles,1,juliuscaesar,1599 storm,1,juliuscaesar,1599 failing,1,juliuscaesar,1599 story,1,juliuscaesar,1599 banqueting,1,juliuscaesar,1599 deep,1,juliuscaesar,1599 breath,1,juliuscaesar,1599 deer,1,juliuscaesar,1599 affection,1,juliuscaesar,1599 promised,1,juliuscaesar,1599 whereto,1,juliuscaesar,1599 mood,1,juliuscaesar,1599 papers,1,juliuscaesar,1599 Cannot,1,juliuscaesar,1599 ha,1,juliuscaesar,1599 Fortune,1,juliuscaesar,1599 voyage,1,juliuscaesar,1599 Durst,1,juliuscaesar,1599 satisfy,1,juliuscaesar,1599 Fear,1,juliuscaesar,1599 Companion,1,juliuscaesar,1599 servant,1,juliuscaesar,1599 instances,1,juliuscaesar,1599 spirited,1,juliuscaesar,1599 Here's,1,juliuscaesar,1599 repute,1,juliuscaesar,1599 waspish,1,juliuscaesar,1599 carrion,1,juliuscaesar,1599 current,1,juliuscaesar,1599 sheep,1,juliuscaesar,1599 'Give,1,juliuscaesar,1599 fasten,1,juliuscaesar,1599 beat,1,juliuscaesar,1599 yoked,1,juliuscaesar,1599 Advances,1,juliuscaesar,1599 debt,1,juliuscaesar,1599 needs,1,juliuscaesar,1599 stoop,1,juliuscaesar,1599 Ambition,1,juliuscaesar,1599 yes,1,juliuscaesar,1599 laments,1,juliuscaesar,1599 murderous,1,juliuscaesar,1599 praying,1,juliuscaesar,1599 legs,1,juliuscaesar,1599 Unless,1,juliuscaesar,1599 stone,1,juliuscaesar,1599 disturbed,1,juliuscaesar,1599 stony,1,juliuscaesar,1599 deal,1,juliuscaesar,1599 gait,1,juliuscaesar,1599 vouchsafe,1,juliuscaesar,1599 deaf,1,juliuscaesar,1599 victory,1,juliuscaesar,1599 Safe,1,juliuscaesar,1599 befriend,1,juliuscaesar,1599 interim,1,juliuscaesar,1599 time's,1,juliuscaesar,1599 lighted,1,juliuscaesar,1599 lend,1,juliuscaesar,1599 mirrors,1,juliuscaesar,1599 rears,1,juliuscaesar,1599 torches,1,juliuscaesar,1599 affrighted,1,juliuscaesar,1599 makest,1,juliuscaesar,1599 Brute,1,juliuscaesar,1599 ay,1,juliuscaesar,1599 yields,1,juliuscaesar,1599 apes,1,juliuscaesar,1599 Directly,1,juliuscaesar,1599 memory,1,juliuscaesar,1599 falser,1,juliuscaesar,1599 interred,1,juliuscaesar,1599 piercing,1,juliuscaesar,1599 displeased,1,juliuscaesar,1599 humours,1,juliuscaesar,1599 banished,1,juliuscaesar,1599 betray'd,1,juliuscaesar,1599 that's,1,juliuscaesar,1599 wonderful,1,juliuscaesar,1599 ask'd,1,juliuscaesar,1599 cowardly,1,juliuscaesar,1599 Nervii,1,juliuscaesar,1599 comment,1,juliuscaesar,1599 Hooting,1,juliuscaesar,1599 necessity,1,juliuscaesar,1599 utmost,1,juliuscaesar,1599 Goes,1,juliuscaesar,1599 wrangle,1,juliuscaesar,1599 Early,1,juliuscaesar,1599 whereof,1,juliuscaesar,1599 unfirm,1,juliuscaesar,1599 meditates,1,juliuscaesar,1599 sometime,1,juliuscaesar,1599 described,1,juliuscaesar,1599 Took,1,juliuscaesar,1599 cloaks,1,juliuscaesar,1599 value,1,juliuscaesar,1599 train,1,juliuscaesar,1599 offences,1,juliuscaesar,1599 begg'd,1,juliuscaesar,1599 causes,1,juliuscaesar,1599 superstitious,1,juliuscaesar,1599 Decius',1,juliuscaesar,1599 moon,1,juliuscaesar,1599 loss,1,juliuscaesar,1599 Forum,1,juliuscaesar,1599 add,1,juliuscaesar,1599 speak'st,1,juliuscaesar,1599 semblance,1,juliuscaesar,1599 Desiring,1,juliuscaesar,1599 shrieking,1,juliuscaesar,1599 knot,1,juliuscaesar,1599 apparel,1,juliuscaesar,1599 squeal,1,juliuscaesar,1599 blue,1,juliuscaesar,1599 brutish,1,juliuscaesar,1599 bootless,1,juliuscaesar,1599 mischiefs,1,juliuscaesar,1599 incertain,1,juliuscaesar,1599 forgot,1,juliuscaesar,1599 clamours,1,juliuscaesar,1599 natures,1,juliuscaesar,1599 pure,1,juliuscaesar,1599 marr'd,1,juliuscaesar,1599 load,1,juliuscaesar,1599 Guards,1,juliuscaesar,1599 couchings,1,juliuscaesar,1599 Came,1,juliuscaesar,1599 presume,1,juliuscaesar,1599 Fulfil,1,juliuscaesar,1599 spouts,1,juliuscaesar,1599 accents,1,juliuscaesar,1599 choice,1,juliuscaesar,1599 tempted,1,juliuscaesar,1599 fierce,1,juliuscaesar,1599 discourse,1,juliuscaesar,1599 outward,1,juliuscaesar,1599 harm's,1,juliuscaesar,1599 frighted,1,juliuscaesar,1599 tu,1,juliuscaesar,1599 Camp,1,juliuscaesar,1599 Army,1,juliuscaesar,1599 hug,1,juliuscaesar,1599 tinctures,1,juliuscaesar,1599 cancel,1,juliuscaesar,1599 labouring,1,juliuscaesar,1599 swounded,1,juliuscaesar,1599 Ligarius',1,juliuscaesar,1599 orchards,1,juliuscaesar,1599 kingly,1,juliuscaesar,1599 infirmities,1,juliuscaesar,1599 senseless,1,juliuscaesar,1599 nearer,1,juliuscaesar,1599 neat's,1,juliuscaesar,1599 disjoins,1,juliuscaesar,1599 basest,1,juliuscaesar,1599 Call,1,juliuscaesar,1599 perform'd,1,juliuscaesar,1599 husband's,1,juliuscaesar,1599 Read,1,juliuscaesar,1599 natural,1,juliuscaesar,1599 serpent's,1,juliuscaesar,1599 repeal,1,juliuscaesar,1599 signal,1,juliuscaesar,1599 strings,1,juliuscaesar,1599 Contaminate,1,juliuscaesar,1599 four,1,juliuscaesar,1599 foul,1,juliuscaesar,1599 sighing,1,juliuscaesar,1599 defense,1,juliuscaesar,1599 disconsolate,1,juliuscaesar,1599 Enjoy,1,juliuscaesar,1599 threaten'd,1,juliuscaesar,1599 avoided,1,juliuscaesar,1599 praise,1,juliuscaesar,1599 shell,1,juliuscaesar,1599 'ARTEMIDORUS,1,juliuscaesar,1599 expect,1,juliuscaesar,1599 hazards,1,juliuscaesar,1599 midnight,1,juliuscaesar,1599 deaths,1,juliuscaesar,1599 bathed,1,juliuscaesar,1599 straws,1,juliuscaesar,1599 tomorrow,1,juliuscaesar,1599 avenged,1,juliuscaesar,1599 neglect,1,juliuscaesar,1599 hangs,1,juliuscaesar,1599 stricken,1,juliuscaesar,1599 mender,1,juliuscaesar,1599 winter's,1,juliuscaesar,1599 paid,1,juliuscaesar,1599 wasted,1,juliuscaesar,1599 Night,1,juliuscaesar,1599 mock,1,juliuscaesar,1599 increaseth,1,juliuscaesar,1599 strive,1,juliuscaesar,1599 Ingratitude,1,juliuscaesar,1599 deceitful,1,juliuscaesar,1599 devise,1,juliuscaesar,1599 drizzled,1,juliuscaesar,1599 Remorse,1,juliuscaesar,1599 tempests,1,juliuscaesar,1599 shop,1,juliuscaesar,1599 hate,1,juliuscaesar,1599 worldly,1,juliuscaesar,1599 hats,1,juliuscaesar,1599 puts,1,juliuscaesar,1599 yielded,1,juliuscaesar,1599 petitions,1,juliuscaesar,1599 except,1,juliuscaesar,1599 faithful,1,juliuscaesar,1599 napkins,1,juliuscaesar,1599 prepared,1,juliuscaesar,1599 unlucky,1,juliuscaesar,1599 fond,1,juliuscaesar,1599 girl,1,juliuscaesar,1599 dews,1,juliuscaesar,1599 attempts,1,juliuscaesar,1599 unkindest,1,juliuscaesar,1599 forms,1,juliuscaesar,1599 rightly,1,juliuscaesar,1599 lock,1,juliuscaesar,1599 fold,1,juliuscaesar,1599 ingratitude,1,juliuscaesar,1599 Blood,1,juliuscaesar,1599 menace,1,juliuscaesar,1599 calculate,1,juliuscaesar,1599 beggars,1,juliuscaesar,1599 apprehensive,1,juliuscaesar,1599 Thasos,1,juliuscaesar,1599 Stole,1,juliuscaesar,1599 Kind,1,juliuscaesar,1599 aweary,1,juliuscaesar,1599 unnumber'd,1,juliuscaesar,1599 Among,1,juliuscaesar,1599 eighth,1,juliuscaesar,1599 fawn'd,1,juliuscaesar,1599 undone,1,juliuscaesar,1599 abler,1,juliuscaesar,1599 Apt,1,juliuscaesar,1599 rabblement,1,juliuscaesar,1599 Soul,1,juliuscaesar,1599 fed,1,juliuscaesar,1599 native,1,juliuscaesar,1599 chides,1,juliuscaesar,1599 sweetly,1,juliuscaesar,1599 Ate,1,juliuscaesar,1599 naughty,1,juliuscaesar,1599 Action,1,juliuscaesar,1599 hiss,1,juliuscaesar,1599 rhetoric,1,juliuscaesar,1599 sicken,1,juliuscaesar,1599 mention,1,juliuscaesar,1599 trial,1,juliuscaesar,1599 chafing,1,juliuscaesar,1599 hazard,1,juliuscaesar,1599 guess,1,juliuscaesar,1599 honeyless,1,juliuscaesar,1599 stemming,1,juliuscaesar,1599 leaf,1,juliuscaesar,1599 compact,1,juliuscaesar,1599 march,1,juliuscaesar,1599 consumed,1,juliuscaesar,1599 height,1,juliuscaesar,1599 nobler,1,juliuscaesar,1599 Between,1,juliuscaesar,1599 fat,1,juliuscaesar,1599 wheels,1,juliuscaesar,1599 Horses,1,juliuscaesar,1599 rays,1,juliuscaesar,1599 Comes,1,juliuscaesar,1599 imitations,1,juliuscaesar,1599 opinions,1,juliuscaesar,1599 leap,1,juliuscaesar,1599 justice,1,juliuscaesar,1599 hunters,1,juliuscaesar,1599 Countrymen,1,juliuscaesar,1599 render'd,1,juliuscaesar,1599 perceived,1,juliuscaesar,1599 carrions,1,juliuscaesar,1599 Hack'd,1,juliuscaesar,1599 universal,1,juliuscaesar,1599 keeps,1,juliuscaesar,1599 ventures,1,juliuscaesar,1599 main,1,juliuscaesar,1599 Depart,1,juliuscaesar,1599 surgeon,1,juliuscaesar,1599 mortified,1,juliuscaesar,1599 tarry,1,juliuscaesar,1599 ANTONIUS,1,juliuscaesar,1599 glow,1,juliuscaesar,1599 honey,1,juliuscaesar,1599 rote,1,juliuscaesar,1599 Against,1,juliuscaesar,1599 report,1,juliuscaesar,1599 empty,1,juliuscaesar,1599 carries,1,juliuscaesar,1599 tokens,1,juliuscaesar,1599 mechanical,1,juliuscaesar,1599 Canst,1,juliuscaesar,1599 breathed,1,juliuscaesar,1599 mischief,1,juliuscaesar,1599 rose,1,juliuscaesar,1599 bravery,1,juliuscaesar,1599 faction,1,juliuscaesar,1599 Genius,1,juliuscaesar,1599 spouting,1,juliuscaesar,1599 couldst,1,juliuscaesar,1599 water,1,juliuscaesar,1599 smallest,1,juliuscaesar,1599 darts,1,juliuscaesar,1599 repose,1,juliuscaesar,1599 Else,1,juliuscaesar,1599 errands,1,juliuscaesar,1599 apply,1,juliuscaesar,1599 hinds,1,juliuscaesar,1599 action,1,juliuscaesar,1599 workman,1,juliuscaesar,1599 faculties,1,juliuscaesar,1599 imminent,1,juliuscaesar,1599 occupation,1,juliuscaesar,1599 signified,1,juliuscaesar,1599 mace,1,juliuscaesar,1599 gently,1,juliuscaesar,1599 acting,1,juliuscaesar,1599 noon,1,juliuscaesar,1599 'Brutus,1,juliuscaesar,1599 below,1,juliuscaesar,1599 conceited,1,juliuscaesar,1599 indifferently,1,juliuscaesar,1599 Conceptions,1,juliuscaesar,1599 rout,1,juliuscaesar,1599 captivity,1,juliuscaesar,1599 schedule,1,juliuscaesar,1599 bravely,1,juliuscaesar,1599 faint,1,juliuscaesar,1599 tenor,1,juliuscaesar,1599 year,1,juliuscaesar,1599 Sheathe,1,juliuscaesar,1599 observer,1,juliuscaesar,1599 observed,1,juliuscaesar,1599 Love,1,juliuscaesar,1599 mock'd,1,juliuscaesar,1599 glasses,1,juliuscaesar,1599 oration,1,juliuscaesar,1599 Clean,1,juliuscaesar,1599 Soft,1,juliuscaesar,1599 chase,1,juliuscaesar,1599 stares,1,juliuscaesar,1599 meditating,1,juliuscaesar,1599 annoy,1,juliuscaesar,1599 Fearing,1,juliuscaesar,1599 citizen,1,juliuscaesar,1599 borne,1,juliuscaesar,1599 Briefly,1,juliuscaesar,1599 Sit,1,juliuscaesar,1599 visage,1,juliuscaesar,1599 Transformed,1,juliuscaesar,1599 charm,1,juliuscaesar,1599 affections,1,juliuscaesar,1599 thirsty,1,juliuscaesar,1599 Searching,1,juliuscaesar,1599 stays,1,juliuscaesar,1599 progress,1,juliuscaesar,1599 you'll,1,juliuscaesar,1599 who's,1,juliuscaesar,1599 Mischief,1,juliuscaesar,1599 presented,1,juliuscaesar,1599 forest,1,juliuscaesar,1599 places,1,juliuscaesar,1599 stared,1,juliuscaesar,1599 hurtled,1,juliuscaesar,1599 doomsday,1,juliuscaesar,1599 say'st,1,juliuscaesar,1599 Age,1,juliuscaesar,1599 Doth,1,juliuscaesar,1599 cloak,1,juliuscaesar,1599 bestride,1,juliuscaesar,1599 withholds,1,juliuscaesar,1599 child,1,juliuscaesar,1599 vanquish'd,1,juliuscaesar,1599 Loud,1,juliuscaesar,1599 Hide,1,juliuscaesar,1599 Dost,1,juliuscaesar,1599 Signifies,1,juliuscaesar,1599 recount,1,juliuscaesar,1599 mourn,1,juliuscaesar,1599 concave,1,juliuscaesar,1599 ravens,1,juliuscaesar,1599 attire,1,juliuscaesar,1599 People,1,juliuscaesar,1599 lodge,1,juliuscaesar,1599 mortal,1,juliuscaesar,1599 Hybla,1,juliuscaesar,1599 Free,1,juliuscaesar,1599 sterner,1,juliuscaesar,1599 sacrifice,1,juliuscaesar,1599 Delay,1,juliuscaesar,1599 proscriptions,1,juliuscaesar,1599 tribunes,1,juliuscaesar,1599 arrived,1,juliuscaesar,1599 'Darest,1,juliuscaesar,1599 deck'd,1,juliuscaesar,1599 ungently,1,juliuscaesar,1599 covert,1,juliuscaesar,1599 satisfaction,1,juliuscaesar,1599 prize,1,juliuscaesar,1599 saving,1,juliuscaesar,1599 Makes,1,juliuscaesar,1599 range,1,juliuscaesar,1599 lioness,1,juliuscaesar,1599 tempest,1,juliuscaesar,1599 bosoms,1,juliuscaesar,1599 foolish,1,juliuscaesar,1599 towers,1,juliuscaesar,1599 Grant,1,juliuscaesar,1599 robbers,1,juliuscaesar,1599 Mark'd,1,juliuscaesar,1599 purposed,1,juliuscaesar,1599 merrily,1,juliuscaesar,1599 beads,1,juliuscaesar,1599 confidence,1,juliuscaesar,1599 wrought,1,juliuscaesar,1599 straightway,1,juliuscaesar,1599 lowest,1,juliuscaesar,1599 decline,1,juliuscaesar,1599 stabbed,1,juliuscaesar,1599 courage,1,juliuscaesar,1599 mask,1,juliuscaesar,1599 egg,1,juliuscaesar,1599 ghastly,1,juliuscaesar,1599 partake,1,juliuscaesar,1599 kissing,1,juliuscaesar,1599 soles,1,juliuscaesar,1599 ninth,1,juliuscaesar,1599 ranks,1,juliuscaesar,1599 mart,1,juliuscaesar,1599 fountain,1,juliuscaesar,1599 unmeritable,1,juliuscaesar,1599 woe,1,juliuscaesar,1599 slave,1,juliuscaesar,1599 Any,1,juliuscaesar,1599 furnish'd,1,juliuscaesar,1599 Weigh,1,juliuscaesar,1599 let's,1,juliuscaesar,1599 because,1,juliuscaesar,1599 Sign'd,1,juliuscaesar,1599 Casca's,1,juliuscaesar,1599 billow,1,juliuscaesar,1599 ungentle,1,juliuscaesar,1599 rheumy,1,juliuscaesar,1599 blow,1,juliuscaesar,1599 brains,1,juliuscaesar,1599 vision,1,juliuscaesar,1599 craves,1,juliuscaesar,1599 gates,1,juliuscaesar,1599 ruffle,1,juliuscaesar,1599 enlarge,1,juliuscaesar,1599 dropping,1,juliuscaesar,1599 shoulder,1,juliuscaesar,1599 chide,1,juliuscaesar,1599 disrobe,1,juliuscaesar,1599 mountain,1,juliuscaesar,1599 seal'd,1,juliuscaesar,1599 threatening,1,juliuscaesar,1599 captive,1,juliuscaesar,1599 smatch,1,juliuscaesar,1599 search,1,juliuscaesar,1599 engender'd,1,juliuscaesar,1599 graze,1,juliuscaesar,1599 worthless,1,juliuscaesar,1599 smoke,1,juliuscaesar,1599 uttered,1,juliuscaesar,1599 doubted,1,juliuscaesar,1599 Made,1,juliuscaesar,1599 Descend,1,juliuscaesar,1599 thigh,1,juliuscaesar,1599 Choose,1,juliuscaesar,1599 stake,1,juliuscaesar,1599 division,1,juliuscaesar,1599 desires,1,juliuscaesar,1599 Giving,1,juliuscaesar,1599 Offering,1,juliuscaesar,1599 arises,1,juliuscaesar,1599 firm,1,juliuscaesar,1599 wrath,1,juliuscaesar,1599 desired,1,juliuscaesar,1599 stain,1,juliuscaesar,1599 Were,1,juliuscaesar,1599 abridged,1,juliuscaesar,1599 fray,1,juliuscaesar,1599 exigent,1,juliuscaesar,1599 proves,1,juliuscaesar,1599 jigging,1,juliuscaesar,1599 oaks,1,juliuscaesar,1599 losing,1,juliuscaesar,1599 Coming,1,juliuscaesar,1599 Join'd,1,juliuscaesar,1599 proved,1,juliuscaesar,1599 stale,1,juliuscaesar,1599 rogues,1,juliuscaesar,1599 neck,1,juliuscaesar,1599 roars,1,juliuscaesar,1599 today,1,juliuscaesar,1599 former,1,juliuscaesar,1599 purchase,1,juliuscaesar,1599 dishonour,1,juliuscaesar,1599 safely,1,juliuscaesar,1599 knock'd,1,juliuscaesar,1599 Unshaked,1,juliuscaesar,1599 Freedom,1,juliuscaesar,1599 liberties,1,juliuscaesar,1599 Witness,1,juliuscaesar,1599 five,1,juliuscaesar,1599 win,1,juliuscaesar,1599 father'd,1,juliuscaesar,1599 proposed,1,juliuscaesar,1599 'Lo,1,juliuscaesar,1599 hateful,1,juliuscaesar,1599 mischievous,1,juliuscaesar,1599 Antonius',1,juliuscaesar,1599 stomach,1,juliuscaesar,1599 confines,1,juliuscaesar,1599 unicorns,1,juliuscaesar,1599 hears,1,juliuscaesar,1599 Moreover,1,juliuscaesar,1599 retentive,1,juliuscaesar,1599 sighted,1,juliuscaesar,1599 loving,1,juliuscaesar,1599 sitting,1,juliuscaesar,1599 Rushing,1,juliuscaesar,1599 stabs,1,juliuscaesar,1599 selfsame,1,juliuscaesar,1599 recover,1,juliuscaesar,1599 Dear,1,juliuscaesar,1599 cuts,1,juliuscaesar,1599 abjects,1,juliuscaesar,1599 Cheque'd,1,juliuscaesar,1599 preformed,1,juliuscaesar,1599 tributaries,1,juliuscaesar,1599 Sure,1,juliuscaesar,1599 ripe,1,juliuscaesar,1599 Alarums,1,juliuscaesar,1599 salutation,1,juliuscaesar,1599 standing,1,juliuscaesar,1599 count,1,juliuscaesar,1599 remains,1,juliuscaesar,1599 stingless,1,juliuscaesar,1599 subtle,1,juliuscaesar,1599 buffet,1,juliuscaesar,1599 returning,1,juliuscaesar,1599 misgiving,1,juliuscaesar,1599 chastisement,1,juliuscaesar,1599 cynic,1,juliuscaesar,1599 likes,1,juliuscaesar,1599 Dwell,1,juliuscaesar,1599 dust,1,juliuscaesar,1599 stiff,1,juliuscaesar,1599 unpurged,1,juliuscaesar,1599 'Caesar',1,juliuscaesar,1599 sinews,1,juliuscaesar,1599 earnest,1,juliuscaesar,1599 wax,1,juliuscaesar,1599 Can,1,juliuscaesar,1599 driven,1,juliuscaesar,1599 actors,1,juliuscaesar,1599 prevail,1,juliuscaesar,1599 drives,1,juliuscaesar,1599 between,1,juliuscaesar,1599 Chastisement,1,juliuscaesar,1599 hidden,1,juliuscaesar,1599 intend,1,juliuscaesar,1599 garland,1,juliuscaesar,1599 providence,1,juliuscaesar,1599 fantasies,1,juliuscaesar,1599 wood,1,juliuscaesar,1599 serve,1,juliuscaesar,1599 covetous,1,juliuscaesar,1599 'do,1,juliuscaesar,1599 apace,1,juliuscaesar,1599 reveller,1,juliuscaesar,1599 proceeding,1,juliuscaesar,1599 wont,1,juliuscaesar,1599 purpled,1,juliuscaesar,1599 prick,1,juliuscaesar,1599 supper,1,juliuscaesar,1599 Endure,1,juliuscaesar,1599 split,1,juliuscaesar,1599 emulation,1,juliuscaesar,1599 Writings,1,juliuscaesar,1599 women's,1,juliuscaesar,1599 receivest,1,juliuscaesar,1599 multitude,1,juliuscaesar,1599 next,1,juliuscaesar,1599 cushions,1,juliuscaesar,1599 threats,1,juliuscaesar,1599 Three,1,juliuscaesar,1599 discard,1,juliuscaesar,1599 flourish'd,1,juliuscaesar,1599 cursed,1,juliuscaesar,1599 ruins,1,juliuscaesar,1599 Senators,1,juliuscaesar,1599 notice,1,juliuscaesar,1599 Gives,1,juliuscaesar,1599 thunderbolts,1,juliuscaesar,1599 cull,1,juliuscaesar,1599 vulgar,1,juliuscaesar,1599 fix'd,1,juliuscaesar,1599 agree,1,juliuscaesar,1599 livelong,1,juliuscaesar,1599 Hoping,1,juliuscaesar,1599 worships,1,juliuscaesar,1599 hack,1,juliuscaesar,1599 what's,1,juliuscaesar,1599 charges,1,juliuscaesar,1599 Hail,1,juliuscaesar,1599 wreath,1,juliuscaesar,1599 clapped,1,juliuscaesar,1599 anger,1,juliuscaesar,1599 weeping,1,juliuscaesar,1599 spleen,1,juliuscaesar,1599 killing,1,juliuscaesar,1599 labour'd,1,juliuscaesar,1599 opposite,1,juliuscaesar,1599 compass,1,juliuscaesar,1599 owe,1,juliuscaesar,1599 rudeness,1,juliuscaesar,1599 dull,1,juliuscaesar,1599 soldiers',1,juliuscaesar,1599 repealing,1,juliuscaesar,1599 wolf,1,juliuscaesar,1599 supporting,1,juliuscaesar,1599 touching,1,juliuscaesar,1599 determined,1,juliuscaesar,1599 flash,1,juliuscaesar,1599 waste,1,juliuscaesar,1599 sober,1,juliuscaesar,1599 falling,1,juliuscaesar,1599 wrong'd,1,juliuscaesar,1599 cobble,1,juliuscaesar,1599 fail,1,juliuscaesar,1599 mightier,1,juliuscaesar,1599 Strike,1,juliuscaesar,1599 hideous,1,juliuscaesar,1599 compare,1,juliuscaesar,1599 Show,1,juliuscaesar,1599 fain,1,juliuscaesar,1599 guilty,1,juliuscaesar,1599 table,1,juliuscaesar,1599 grieve,1,juliuscaesar,1599 wholesome,1,juliuscaesar,1599 Antony's,1,juliuscaesar,1599 Swear,1,juliuscaesar,1599 insuppressive,1,juliuscaesar,1599 encouraged,1,juliuscaesar,1599 Many,1,juliuscaesar,1599 wept,1,juliuscaesar,1599 yond,1,juliuscaesar,1599 particle,1,juliuscaesar,1599 judge,1,juliuscaesar,1599 messengers,1,juliuscaesar,1599 weapons,1,juliuscaesar,1599 doublet,1,juliuscaesar,1599 modesty,1,juliuscaesar,1599 augmented,1,juliuscaesar,1599 cautelous,1,juliuscaesar,1599 flatterer's,1,juliuscaesar,1599 bustling,1,juliuscaesar,1599 establish,1,juliuscaesar,1599 exhalations,1,juliuscaesar,1599 cares,1,juliuscaesar,1599 foe,1,juliuscaesar,1599 ransoms,1,juliuscaesar,1599 distract,1,juliuscaesar,1599 Proceed,1,juliuscaesar,1599 wander,1,juliuscaesar,1599 wert,1,juliuscaesar,1599 Shake,1,juliuscaesar,1599 Call'd,1,juliuscaesar,1599 crests,1,juliuscaesar,1599 appertain,1,juliuscaesar,1599 Impatient,1,juliuscaesar,1599 methinks,1,juliuscaesar,1599 Yond,1,juliuscaesar,1599 Runs,1,juliuscaesar,1599 kites,1,juliuscaesar,1599 pleased,1,juliuscaesar,1599 tune,1,juliuscaesar,1599 threw,1,juliuscaesar,1599 prostrate,1,juliuscaesar,1599 company,1,juliuscaesar,1599 fighting,1,juliuscaesar,1599 scolding,1,juliuscaesar,1599 do't,1,juliuscaesar,1599 husbanded,1,juliuscaesar,1599 underlings,1,juliuscaesar,1599 o'ershot,1,juliuscaesar,1599 flame,1,juliuscaesar,1599 offices,1,juliuscaesar,1599 fine,1,juliuscaesar,1599 passion,1,juliuscaesar,1599 vow,1,juliuscaesar,1599 Doing,1,juliuscaesar,1599 Weeping,1,juliuscaesar,1599 swallow'd,1,juliuscaesar,1599 scratch'd,1,juliuscaesar,1599 glanced,1,juliuscaesar,1599 fill,1,juliuscaesar,1599 stains,1,juliuscaesar,1599 safety,1,juliuscaesar,1599 savage,1,juliuscaesar,1599 engaged,1,juliuscaesar,1599 clap,1,juliuscaesar,1599 channel,1,juliuscaesar,1599 Domestic,1,juliuscaesar,1599 protester,1,juliuscaesar,1599 Fast,1,juliuscaesar,1599 bark,1,juliuscaesar,1599 minded,1,juliuscaesar,1599 niggard,1,juliuscaesar,1599 lordship,1,juliuscaesar,1599 thunder,1,juliuscaesar,1599 meddle,1,juliuscaesar,1599 wide,1,juliuscaesar,1599 pocket,1,juliuscaesar,1599 divers,1,juliuscaesar,1599 kill'st,1,juliuscaesar,1599 lines,1,juliuscaesar,1599 an't,1,juliuscaesar,1599 intermit,1,juliuscaesar,1599 expounded,1,juliuscaesar,1599 wives,1,juliuscaesar,1599 Plucking,1,juliuscaesar,1599 o'erswell,1,juliuscaesar,1599 watch'd,1,juliuscaesar,1599 waves,1,juliuscaesar,1599 bars,1,juliuscaesar,1599 censure,1,juliuscaesar,1599 bird,1,juliuscaesar,1599 stinking,1,juliuscaesar,1599 strikes,1,juliuscaesar,1599 allow'd,1,juliuscaesar,1599 prophesy,1,juliuscaesar,1599 chapped,1,juliuscaesar,1599 slanderous,1,juliuscaesar,1599 cogitations,1,juliuscaesar,1599 untouch'd,1,juliuscaesar,1599 friendship,1,juliuscaesar,1599 bang,1,juliuscaesar,1599 flames,1,juliuscaesar,1599 weakness,1,juliuscaesar,1599 large,1,juliuscaesar,1599 boldly,1,juliuscaesar,1599 blaze,1,juliuscaesar,1599 afloat,1,juliuscaesar,1599 surly,1,juliuscaesar,1599 lights,1,juliuscaesar,1599 tale,1,juliuscaesar,1599 is't,1,juliuscaesar,1599 buzzing,1,juliuscaesar,1599 Shamest,1,juliuscaesar,1599 calendar,1,juliuscaesar,1599 law,1,juliuscaesar,1599 Listen,1,juliuscaesar,1599 thousand,1,juliuscaesar,1599 farthest,1,juliuscaesar,1599 Leap,1,juliuscaesar,1599 Knew,1,juliuscaesar,1599 cup,1,juliuscaesar,1599 otherwise,1,juliuscaesar,1599 excepted,1,juliuscaesar,1599 watchful,1,juliuscaesar,1599 holes,1,juliuscaesar,1599 insupportable,1,juliuscaesar,1599 greets,1,juliuscaesar,1599 Every,1,juliuscaesar,1599 eagerly,1,juliuscaesar,1599 Prick,1,juliuscaesar,1599 Villains,1,juliuscaesar,1599 Shrunk,1,juliuscaesar,1599 thaw'd,1,juliuscaesar,1599 pledge,1,juliuscaesar,1599 shook,1,juliuscaesar,1599 apron,1,juliuscaesar,1599 dungeon,1,juliuscaesar,1599 hole,1,juliuscaesar,1599 waited,1,juliuscaesar,1599 links,1,juliuscaesar,1599 firmament,1,juliuscaesar,1599 whizzing,1,juliuscaesar,1599 hollow,1,juliuscaesar,1599 concluded,1,juliuscaesar,1599 follows,1,juliuscaesar,1599 fired,1,juliuscaesar,1599 Vexed,1,juliuscaesar,1599 sweaty,1,juliuscaesar,1599 carve,1,juliuscaesar,1599 fires,1,juliuscaesar,1599 request,1,juliuscaesar,1599 'better',1,juliuscaesar,1599 Erebus,1,juliuscaesar,1599 presents,1,juliuscaesar,1599 arrive,1,juliuscaesar,1599 lives,1,juliuscaesar,1599 airless,1,juliuscaesar,1599 commonwealth,1,juliuscaesar,1599 defeat,1,juliuscaesar,1599 horses,1,juliuscaesar,1599 Where's,1,juliuscaesar,1599 grudge,1,juliuscaesar,1599 feeding,1,juliuscaesar,1599 resolution,1,juliuscaesar,1599 Roman's,1,juliuscaesar,1599 counsels,1,juliuscaesar,1599 train'd,1,juliuscaesar,1599 conjure,1,juliuscaesar,1599 interpose,1,juliuscaesar,1599 choler,1,juliuscaesar,1599 notwithstanding,1,juliuscaesar,1599 Plutus',1,juliuscaesar,1599 prayers,1,juliuscaesar,1599 masker,1,juliuscaesar,1599 also,1,juliuscaesar,1599 Troy,1,juliuscaesar,1599 hairs,1,juliuscaesar,1599 fourteen,1,juliuscaesar,1599 elements,1,juliuscaesar,1599 lying,1,juliuscaesar,1599 favour's,1,juliuscaesar,1599 Calls,1,juliuscaesar,1599 always,1,juliuscaesar,1599 hearse,1,juliuscaesar,1599 gliding,1,juliuscaesar,1599 fleering,1,juliuscaesar,1599 trophies,1,juliuscaesar,1599 contagion,1,juliuscaesar,1599 toils,1,juliuscaesar,1599 states,1,juliuscaesar,1599 conquerors,1,juliuscaesar,1599 kingdom,1,juliuscaesar,1599 converse,1,juliuscaesar,1599 fuller,1,juliuscaesar,1599 crept,1,juliuscaesar,1599 heralds,1,juliuscaesar,1599 Older,1,juliuscaesar,1599 feathers,1,juliuscaesar,1599 presence,1,juliuscaesar,1599 south,1,juliuscaesar,1599 lowliness,1,juliuscaesar,1599 sports,1,juliuscaesar,1599 unkindness,1,juliuscaesar,1599 Ne'er,1,juliuscaesar,1599 look'd,1,juliuscaesar,1599 'twixt,1,juliuscaesar,1599 understood,1,juliuscaesar,1599 age's,1,juliuscaesar,1599 vessel,1,juliuscaesar,1599 render,1,juliuscaesar,1599 Mine,1,juliuscaesar,1599 shapes,1,juliuscaesar,1599 cumber,1,juliuscaesar,1599 Believe,1,juliuscaesar,1599 whom,1,juliuscaesar,1599 mix'd,1,juliuscaesar,1599 bared,1,juliuscaesar,1599 expectation,1,juliuscaesar,1599 setting,1,juliuscaesar,1599 Cnidos,1,juliuscaesar,1599 ranging,1,juliuscaesar,1599 traitor,1,juliuscaesar,1599 Pray,1,juliuscaesar,1599 sacred,1,juliuscaesar,1599 lightens,1,juliuscaesar,1599 Gentlemen,1,juliuscaesar,1599 Fashion,1,juliuscaesar,1599 person,1,juliuscaesar,1599 portents,1,juliuscaesar,1599 He'll,1,juliuscaesar,1599 avoid,1,juliuscaesar,1599 fathers',1,juliuscaesar,1599 downward,1,juliuscaesar,1599 Through,1,juliuscaesar,1599 Things,1,juliuscaesar,1599 lovest,1,juliuscaesar,1599 Clouds,1,juliuscaesar,1599 wretched,1,juliuscaesar,1599 trembled,1,juliuscaesar,1599 tied,1,juliuscaesar,1599 Bending,1,juliuscaesar,1599 applauses,1,juliuscaesar,1599 lovers,1,juliuscaesar,1599 gusty,1,juliuscaesar,1599 infused,1,juliuscaesar,1599 self,1,juliuscaesar,1599 according,1,juliuscaesar,1599 return,1,juliuscaesar,1599 Cuts,1,juliuscaesar,1599 Next,1,juliuscaesar,1599 slaying,1,juliuscaesar,1599 reputed,1,juliuscaesar,1599 talk'd,1,juliuscaesar,1599 sent,1,juliuscaesar,1599 grieved,1,juliuscaesar,1599 greeting,1,juliuscaesar,1599 limitation,1,juliuscaesar,1599 'These,1,juliuscaesar,1599 chose,1,juliuscaesar,1599 kerchief,1,juliuscaesar,1599 formal,1,juliuscaesar,1599 season,1,juliuscaesar,1599 leagues,1,juliuscaesar,1599 protest,1,juliuscaesar,1599 triumphs,1,juliuscaesar,1599 break'st,1,juliuscaesar,1599 canopy,1,juliuscaesar,1599 attains,1,juliuscaesar,1599 coin,1,juliuscaesar,1599 crooked,1,juliuscaesar,1599 master's,1,juliuscaesar,1599 pipes,1,juliuscaesar,1599 threat,1,juliuscaesar,1599 until,1,juliuscaesar,1599 Fire,1,juliuscaesar,1599 regarded,1,juliuscaesar,1599 torch,1,juliuscaesar,1599 trod,1,juliuscaesar,1599 eat,1,juliuscaesar,1599 'Liberty,1,juliuscaesar,1599 seated,1,juliuscaesar,1599 sacrificers,1,juliuscaesar,1599 Omitted,1,juliuscaesar,1599 petty,1,juliuscaesar,1599 litter'd,1,juliuscaesar,1599 Musing,1,juliuscaesar,1599 evening,1,juliuscaesar,1599 sounded,1,juliuscaesar,1599 Gave,1,juliuscaesar,1599 legacies,1,juliuscaesar,1599 However,1,juliuscaesar,1599 conn'd,1,juliuscaesar,1599 disposing,1,juliuscaesar,1599 mine's,1,juliuscaesar,1599 consequence,1,juliuscaesar,1599 forced,1,juliuscaesar,1599 learn,1,juliuscaesar,1599 burst,1,juliuscaesar,1599 wring,1,juliuscaesar,1599 laugher,1,juliuscaesar,1599 impatiently,1,juliuscaesar,1599 funerals,1,juliuscaesar,1599 met,1,juliuscaesar,1599 chidden,1,juliuscaesar,1599 headed,1,juliuscaesar,1599 lofty,1,juliuscaesar,1599 Sooth,1,juliuscaesar,1599 misconstrued,1,juliuscaesar,1599 whelped,1,juliuscaesar,1599 plunged,1,juliuscaesar,1599 pull'd,1,juliuscaesar,1599 meeting,1,juliuscaesar,1599 determine,1,juliuscaesar,1599 Clock,1,juliuscaesar,1599 conjured,1,juliuscaesar,1599 Since,1,juliuscaesar,1599 grievously,1,juliuscaesar,1599 seduced,1,juliuscaesar,1599 phantasma,1,juliuscaesar,1599 burns,1,juliuscaesar,1599 whit,1,juliuscaesar,1599 Except,1,juliuscaesar,1599 Assemble,1,juliuscaesar,1599 battlements,1,juliuscaesar,1599 Great,1,juliuscaesar,1599 bethink,1,juliuscaesar,1599 swound,1,juliuscaesar,1599 across,1,juliuscaesar,1599 Hated,1,juliuscaesar,1599 warriors,1,juliuscaesar,1599 monarch's,1,juliuscaesar,1599 henceforth,1,juliuscaesar,1599 captives,1,juliuscaesar,1599 marriage,1,juliuscaesar,1599 appearing,1,juliuscaesar,1599 Sleek,1,juliuscaesar,1599 Sleep,1,juliuscaesar,1599 players,1,juliuscaesar,1599 graybeards,1,juliuscaesar,1599 staled,1,juliuscaesar,1599 dismiss,1,juliuscaesar,1599 sometimes,1,juliuscaesar,1599 recreate,1,juliuscaesar,1599 Marry,1,juliuscaesar,1599 fever,1,juliuscaesar,1599 purgers,1,juliuscaesar,1599 Produce,1,juliuscaesar,1599 thither,1,juliuscaesar,1599 attendants,1,juliuscaesar,1599 citizens,1,juliuscaesar,1599 gravity,1,juliuscaesar,1599 Millions,1,juliuscaesar,1599 improve,1,juliuscaesar,1599 beauty,1,juliuscaesar,1599 compel,1,juliuscaesar,1599 throwing,1,juliuscaesar,1599 muffling,1,juliuscaesar,1599 fright,1,juliuscaesar,1599 Without,1,juliuscaesar,1599 peep,1,juliuscaesar,1599 besides,1,juliuscaesar,1599 silver,1,juliuscaesar,1599 list,1,juliuscaesar,1599 whet,1,juliuscaesar,1599 hurl,1,juliuscaesar,1599 impart,1,juliuscaesar,1599 levying,1,juliuscaesar,1599 appetite,1,juliuscaesar,1599 villager,1,juliuscaesar,1599 counters,1,juliuscaesar,1599 Lend,1,juliuscaesar,1599 Submitting,1,juliuscaesar,1599 neigh,1,juliuscaesar,1599 carelessly,1,juliuscaesar,1599 books,1,juliuscaesar,1599 compell'd,1,juliuscaesar,1599 moe,1,juliuscaesar,1599 sway'd,1,juliuscaesar,1599 follow'd,1,juliuscaesar,1599 Render,1,juliuscaesar,1599 corruption,1,juliuscaesar,1599 shrewd,1,juliuscaesar,1599 silent,1,juliuscaesar,1599 simple,1,juliuscaesar,1599 sentence,1,juliuscaesar,1599 'This,1,juliuscaesar,1599 witness,1,juliuscaesar,1599 tardy,1,juliuscaesar,1599 numbers,1,juliuscaesar,1599 cover'd,1,juliuscaesar,1599 reply,1,juliuscaesar,1599 yesternight,1,juliuscaesar,1599 presage,1,juliuscaesar,1599 upmost,1,juliuscaesar,1599 slay,1,juliuscaesar,1599 Labeo,1,juliuscaesar,1599 Mount,1,juliuscaesar,1599 dog,1,juliuscaesar,1599 discovered,1,juliuscaesar,1599 remain'd,1,juliuscaesar,1599 dark,1,juliuscaesar,1599 losses,1,juliuscaesar,1599 boldest,1,juliuscaesar,1599 outlawry,1,juliuscaesar,1599 Falls,1,juliuscaesar,1599 majestic,1,juliuscaesar,1599 indirection,1,juliuscaesar,1599 Aeneas,1,juliuscaesar,1599 miseries,1,juliuscaesar,1599 He's,1,juliuscaesar,1599 land,1,juliuscaesar,1599 carcass,1,juliuscaesar,1599 praetor's,1,juliuscaesar,1599 soothsayer,1,juliuscaesar,1599 court'sies,1,juliuscaesar,1599 lamb,1,juliuscaesar,1599 instantly,1,juliuscaesar,1599 months,1,juliuscaesar,1599 wonders,1,juliuscaesar,1599 resting,1,juliuscaesar,1599 DRAMATIS,1,juliuscaesar,1599 venom,1,juliuscaesar,1599 shine,1,juliuscaesar,1599 dank,1,juliuscaesar,1599 Epicurus,1,juliuscaesar,1599 Conspirators,1,juliuscaesar,1599 undergo,1,juliuscaesar,1599 arming,1,juliuscaesar,1599 pass'd,1,juliuscaesar,1599 damn,1,juliuscaesar,1599 bargain,1,juliuscaesar,1599 cognizance,1,juliuscaesar,1599 entreated,1,juliuscaesar,1599 tired,1,juliuscaesar,1599 trees,1,juliuscaesar,1599 wills,1,juliuscaesar,1599 divided,1,juliuscaesar,1599 ascend,1,juliuscaesar,1599 greatness,1,juliuscaesar,1599 Kneeling,1,juliuscaesar,1599 smell,1,juliuscaesar,1599 stol'n,1,juliuscaesar,1599 dew,1,juliuscaesar,1599 schoolboy,1,juliuscaesar,1599 gentler,1,juliuscaesar,1599 Talk,1,juliuscaesar,1599 pulling,1,juliuscaesar,1599 dwelling,1,juliuscaesar,1599 wenches,1,juliuscaesar,1599 alchemy,1,juliuscaesar,1599 corporal,1,juliuscaesar,1599 brim,1,juliuscaesar,1599 slip,1,juliuscaesar,1599 stomachs,1,juliuscaesar,1599 figures,1,juliuscaesar,1599 soundly,1,juliuscaesar,1599 mourned,1,juliuscaesar,1599 amaze,1,juliuscaesar,1599 Opens,1,juliuscaesar,1599 glared,1,juliuscaesar,1599 cooling,1,juliuscaesar,1599 parley,1,juliuscaesar,1599 repair,1,juliuscaesar,1599 'Peace,1,juliuscaesar,1599 oaths,1,juliuscaesar,1599 lack,1,juliuscaesar,1599 shape,1,juliuscaesar,1599 Thrice,1,juliuscaesar,1599 spoils,1,juliuscaesar,1599 Words,1,juliuscaesar,1599 Brutus's,1,juliuscaesar,1599 crows,1,juliuscaesar,1599 dim,1,juliuscaesar,1599 share,1,juliuscaesar,1599 dip,1,juliuscaesar,1599 elbows,1,juliuscaesar,1599 Fill,1,juliuscaesar,1599 vilely,1,juliuscaesar,1599 Fierce,1,juliuscaesar,1599 Tut,1,juliuscaesar,1599 degrees,1,juliuscaesar,1599 fortunes,1,juliuscaesar,1599 hedge,1,juliuscaesar,1599 wafture,1,juliuscaesar,1599 sway,1,juliuscaesar,1599 Reviving,1,juliuscaesar,1599 heed,2,juliuscaesar,1599 armies,2,juliuscaesar,1599 lusty,2,juliuscaesar,1599 instruments,2,juliuscaesar,1599 Stir,2,juliuscaesar,1599 tremble,2,juliuscaesar,1599 weary,2,juliuscaesar,1599 raw,2,juliuscaesar,1599 wish'd,2,juliuscaesar,1599 following,2,juliuscaesar,1599 royal,2,juliuscaesar,1599 brows,2,juliuscaesar,1599 Whether,2,juliuscaesar,1599 foolery,2,juliuscaesar,1599 mend,2,juliuscaesar,1599 butchers,2,juliuscaesar,1599 Lupercal,2,juliuscaesar,1599 hell,2,juliuscaesar,1599 laughter,2,juliuscaesar,1599 bondmen,2,juliuscaesar,1599 philosophy,2,juliuscaesar,1599 theatre,2,juliuscaesar,1599 prisoner,2,juliuscaesar,1599 utterance,2,juliuscaesar,1599 comest,2,juliuscaesar,1599 rid,2,juliuscaesar,1599 drink,2,juliuscaesar,1599 underneath,2,juliuscaesar,1599 laugh,2,juliuscaesar,1599 soul,2,juliuscaesar,1599 calls,2,juliuscaesar,1599 terrible,2,juliuscaesar,1599 pleasures,2,juliuscaesar,1599 care,2,juliuscaesar,1599 proclaim,2,juliuscaesar,1599 demand,2,juliuscaesar,1599 cast,2,juliuscaesar,1599 battles,2,juliuscaesar,1599 early,2,juliuscaesar,1599 softly,2,juliuscaesar,1599 walking,2,juliuscaesar,1599 Over,2,juliuscaesar,1599 strength,2,juliuscaesar,1599 seven,2,juliuscaesar,1599 birth,2,juliuscaesar,1599 drive,2,juliuscaesar,1599 slept,2,juliuscaesar,1599 Young,2,juliuscaesar,1599 entrails,2,juliuscaesar,1599 stream,2,juliuscaesar,1599 fortunate,2,juliuscaesar,1599 bathe,2,juliuscaesar,1599 corse,2,juliuscaesar,1599 Remember,2,juliuscaesar,1599 sparks,2,juliuscaesar,1599 Only,2,juliuscaesar,1599 rites,2,juliuscaesar,1599 Senate,2,juliuscaesar,1599 something,2,juliuscaesar,1599 hereafter,2,juliuscaesar,1599 bound,2,juliuscaesar,1599 impossible,2,juliuscaesar,1599 merry,2,juliuscaesar,1599 deceived,2,juliuscaesar,1599 touches,2,juliuscaesar,1599 sea,2,juliuscaesar,1599 'twas,2,juliuscaesar,1599 beasts,2,juliuscaesar,1599 yield,2,juliuscaesar,1599 council,2,juliuscaesar,1599 Octavius',2,juliuscaesar,1599 deliver,2,juliuscaesar,1599 mantle,2,juliuscaesar,1599 Was,2,juliuscaesar,1599 countenance,2,juliuscaesar,1599 't,2,juliuscaesar,1599 testament,2,juliuscaesar,1599 beloved,2,juliuscaesar,1599 suck,2,juliuscaesar,1599 pieces,2,juliuscaesar,1599 worst,2,juliuscaesar,1599 received,2,juliuscaesar,1599 Cato's,2,juliuscaesar,1599 civil,2,juliuscaesar,1599 kill'd,2,juliuscaesar,1599 proceeded,2,juliuscaesar,1599 Flavius,2,juliuscaesar,1599 envious,2,juliuscaesar,1599 willing,2,juliuscaesar,1599 Wherein,2,juliuscaesar,1599 princes,2,juliuscaesar,1599 humble,2,juliuscaesar,1599 govern'd,2,juliuscaesar,1599 elder,2,juliuscaesar,1599 reverence,2,juliuscaesar,1599 bowl,2,juliuscaesar,1599 grow,2,juliuscaesar,1599 swore,2,juliuscaesar,1599 neighbourhood,2,juliuscaesar,1599 whisper,2,juliuscaesar,1599 Old,2,juliuscaesar,1599 false,2,juliuscaesar,1599 speaking,2,juliuscaesar,1599 wing,2,juliuscaesar,1599 ceremony,2,juliuscaesar,1599 kneel,2,juliuscaesar,1599 mirth,2,juliuscaesar,1599 knees,2,juliuscaesar,1599 steal,2,juliuscaesar,1599 ensign,2,juliuscaesar,1599 know'st,2,juliuscaesar,1599 Dardanius,2,juliuscaesar,1599 seem'd,2,juliuscaesar,1599 window,2,juliuscaesar,1599 bond,2,juliuscaesar,1599 rule,2,juliuscaesar,1599 wast,2,juliuscaesar,1599 ruled,2,juliuscaesar,1599 observe,2,juliuscaesar,1599 book,2,juliuscaesar,1599 colour,2,juliuscaesar,1599 conditions,2,juliuscaesar,1599 rived,2,juliuscaesar,1599 urge,2,juliuscaesar,1599 each,2,juliuscaesar,1599 bills,2,juliuscaesar,1599 conspirator,2,juliuscaesar,1599 slaves,2,juliuscaesar,1599 has,2,juliuscaesar,1599 commons,2,juliuscaesar,1599 What's,2,juliuscaesar,1599 seventy,2,juliuscaesar,1599 At,2,juliuscaesar,1599 spoil,2,juliuscaesar,1599 An,2,juliuscaesar,1599 pay,2,juliuscaesar,1599 wronged,2,juliuscaesar,1599 Looks,2,juliuscaesar,1599 Hie,2,juliuscaesar,1599 blows,2,juliuscaesar,1599 murderers,2,juliuscaesar,1599 bay,2,juliuscaesar,1599 creature,2,juliuscaesar,1599 Standing,2,juliuscaesar,1599 tear,2,juliuscaesar,1599 whole,2,juliuscaesar,1599 deserved,2,juliuscaesar,1599 quick,2,juliuscaesar,1599 ease,2,juliuscaesar,1599 digest,2,juliuscaesar,1599 east,2,juliuscaesar,1599 added,2,juliuscaesar,1599 troops,2,juliuscaesar,1599 groaning,2,juliuscaesar,1599 priests,2,juliuscaesar,1599 sorry,2,juliuscaesar,1599 Drum,2,juliuscaesar,1599 metal,2,juliuscaesar,1599 leather,2,juliuscaesar,1599 whose,2,juliuscaesar,1599 bury,2,juliuscaesar,1599 corpse,2,juliuscaesar,1599 MARCUS,2,juliuscaesar,1599 'tween,2,juliuscaesar,1599 bent,2,juliuscaesar,1599 jealous,2,juliuscaesar,1599 overcame,2,juliuscaesar,1599 Didst,2,juliuscaesar,1599 shouted,2,juliuscaesar,1599 just,2,juliuscaesar,1599 curse,2,juliuscaesar,1599 forgetful,2,juliuscaesar,1599 hilts,2,juliuscaesar,1599 Above,2,juliuscaesar,1599 stabb'd,2,juliuscaesar,1599 sink,2,juliuscaesar,1599 Whither,2,juliuscaesar,1599 begin,2,juliuscaesar,1599 store,2,juliuscaesar,1599 i',2,juliuscaesar,1599 ghost,2,juliuscaesar,1599 impatience,2,juliuscaesar,1599 stay'd,2,juliuscaesar,1599 confess,2,juliuscaesar,1599 aim,2,juliuscaesar,1599 Soldiers,2,juliuscaesar,1599 yea,2,juliuscaesar,1599 tyrant,2,juliuscaesar,1599 raise,2,juliuscaesar,1599 burial,2,juliuscaesar,1599 shouts,2,juliuscaesar,1599 favour,2,juliuscaesar,1599 Ill,2,juliuscaesar,1599 'Help,2,juliuscaesar,1599 plays,2,juliuscaesar,1599 Revenge,2,juliuscaesar,1599 commanders,2,juliuscaesar,1599 thrive,2,juliuscaesar,1599 destruction,2,juliuscaesar,1599 touch'd,2,juliuscaesar,1599 houses,2,juliuscaesar,1599 shed,2,juliuscaesar,1599 forget,2,juliuscaesar,1599 thyself,2,juliuscaesar,1599 enclosed,2,juliuscaesar,1599 Thorough,2,juliuscaesar,1599 door,2,juliuscaesar,1599 feast,2,juliuscaesar,1599 fears,2,juliuscaesar,1599 'Caesar,2,juliuscaesar,1599 sufficeth,2,juliuscaesar,1599 strain,2,juliuscaesar,1599 aside,2,juliuscaesar,1599 o',2,juliuscaesar,1599 porch,2,juliuscaesar,1599 abide,2,juliuscaesar,1599 Live,2,juliuscaesar,1599 Myself,2,juliuscaesar,1599 temper,2,juliuscaesar,1599 Begin,2,juliuscaesar,1599 lover,2,juliuscaesar,1599 Yea,2,juliuscaesar,1599 lost,2,juliuscaesar,1599 beholding,2,juliuscaesar,1599 Sennet,2,juliuscaesar,1599 devil,2,juliuscaesar,1599 twenty,2,juliuscaesar,1599 necessary,2,juliuscaesar,1599 act,2,juliuscaesar,1599 knew,2,juliuscaesar,1599 spot,2,juliuscaesar,1599 show'd,2,juliuscaesar,1599 tyrants,2,juliuscaesar,1599 knee,2,juliuscaesar,1599 attain,2,juliuscaesar,1599 rendered,2,juliuscaesar,1599 reads,2,juliuscaesar,1599 Because,2,juliuscaesar,1599 men's,2,juliuscaesar,1599 harm,2,juliuscaesar,1599 valour,2,juliuscaesar,1599 hart,2,juliuscaesar,1599 personal,2,juliuscaesar,1599 enfranchisement,2,juliuscaesar,1599 quarter'd,2,juliuscaesar,1599 Knocking,2,juliuscaesar,1599 pale,2,juliuscaesar,1599 intended,2,juliuscaesar,1599 verses,2,juliuscaesar,1599 More,2,juliuscaesar,1599 Beware,2,juliuscaesar,1599 Pluck,2,juliuscaesar,1599 liberty,2,juliuscaesar,1599 draws,2,juliuscaesar,1599 plain,2,juliuscaesar,1599 drawn,2,juliuscaesar,1599 ladder,2,juliuscaesar,1599 suitors,2,juliuscaesar,1599 school,2,juliuscaesar,1599 marching,2,juliuscaesar,1599 pluck,2,juliuscaesar,1599 open,2,juliuscaesar,1599 arm,2,juliuscaesar,1599 prepare,2,juliuscaesar,1599 ambition's,2,juliuscaesar,1599 ask,2,juliuscaesar,1599 drachmas,2,juliuscaesar,1599 diest,2,juliuscaesar,1599 money,2,juliuscaesar,1599 apt,2,juliuscaesar,1599 fear'd,2,juliuscaesar,1599 fool,2,juliuscaesar,1599 tyranny,2,juliuscaesar,1599 awl,2,juliuscaesar,1599 revenge,2,juliuscaesar,1599 creatures,2,juliuscaesar,1599 ass,2,juliuscaesar,1599 Commoners,2,juliuscaesar,1599 push,2,juliuscaesar,1599 fresh,2,juliuscaesar,1599 mayst,2,juliuscaesar,1599 error,2,juliuscaesar,1599 secret,2,juliuscaesar,1599 chance,2,juliuscaesar,1599 touch,2,juliuscaesar,1599 judgment,2,juliuscaesar,1599 fantasy,2,juliuscaesar,1599 Stoop,2,juliuscaesar,1599 having,2,juliuscaesar,1599 here's,2,juliuscaesar,1599 watch,2,juliuscaesar,1599 yesterday,2,juliuscaesar,1599 lean,2,juliuscaesar,1599 contented,2,juliuscaesar,1599 often,2,juliuscaesar,1599 Kill,2,juliuscaesar,1599 tried,2,juliuscaesar,1599 condemn'd,2,juliuscaesar,1599 Madam,2,juliuscaesar,1599 Shout,2,juliuscaesar,1599 rank,2,juliuscaesar,1599 shouldst,2,juliuscaesar,1599 sickly,2,juliuscaesar,1599 faith,2,juliuscaesar,1599 unknown,2,juliuscaesar,1599 thinks,2,juliuscaesar,1599 envy,2,juliuscaesar,1599 beast,2,juliuscaesar,1599 wonder,2,juliuscaesar,1599 strucken,2,juliuscaesar,1599 rash,2,juliuscaesar,1599 wildness,2,juliuscaesar,1599 ours,2,juliuscaesar,1599 blunt,2,juliuscaesar,1599 sirrah,2,juliuscaesar,1599 slain,2,juliuscaesar,1599 She,2,juliuscaesar,1599 liable,2,juliuscaesar,1599 narrow,2,juliuscaesar,1599 parting,2,juliuscaesar,1599 ordinance,2,juliuscaesar,1599 Train,2,juliuscaesar,1599 Lord,2,juliuscaesar,1599 effect,2,juliuscaesar,1599 spurn,2,juliuscaesar,1599 spurs,2,juliuscaesar,1599 strife,2,juliuscaesar,1599 doors,2,juliuscaesar,1599 towards,2,juliuscaesar,1599 nod,2,juliuscaesar,1599 soldiers,2,juliuscaesar,1599 start,2,juliuscaesar,1599 stars,2,juliuscaesar,1599 purposes,2,juliuscaesar,1599 itching,2,juliuscaesar,1599 chair,2,juliuscaesar,1599 bloods,2,juliuscaesar,1599 reading,2,juliuscaesar,1599 tents,2,juliuscaesar,1599 thick,2,juliuscaesar,1599 issue,2,juliuscaesar,1599 leaden,2,juliuscaesar,1599 infants,2,juliuscaesar,1599 beside,2,juliuscaesar,1599 fret,2,juliuscaesar,1599 benefit,2,juliuscaesar,1599 higher,2,juliuscaesar,1599 Room,2,juliuscaesar,1599 apart,2,juliuscaesar,1599 cobbler,2,juliuscaesar,1599 banks,2,juliuscaesar,1599 breed,2,juliuscaesar,1599 Italy,2,juliuscaesar,1599 pause,2,juliuscaesar,1599 slight,2,juliuscaesar,1599 sting,2,juliuscaesar,1599 wrongs,2,juliuscaesar,1599 reflection,2,juliuscaesar,1599 throw,2,juliuscaesar,1599 wit,2,juliuscaesar,1599 sides,2,juliuscaesar,1599 sorrow,2,juliuscaesar,1599 bay'd,2,juliuscaesar,1599 cross'd,2,juliuscaesar,1599 ring,2,juliuscaesar,1599 lovedst,2,juliuscaesar,1599 third,2,juliuscaesar,1599 Varro,2,juliuscaesar,1599 banish'd,2,juliuscaesar,1599 bondage,2,juliuscaesar,1599 closet,2,juliuscaesar,1599 walks,2,juliuscaesar,1599 prodigies,2,juliuscaesar,1599 Calpurnia's,2,juliuscaesar,1599 clock,2,juliuscaesar,1599 choked,2,juliuscaesar,1599 alarums,2,juliuscaesar,1599 save,2,juliuscaesar,1599 flint,2,juliuscaesar,1599 Think,2,juliuscaesar,1599 duty,2,juliuscaesar,1599 audience,2,juliuscaesar,1599 growing,2,juliuscaesar,1599 Fates,2,juliuscaesar,1599 sufferance,2,juliuscaesar,1599 assure,2,juliuscaesar,1599 exalted,2,juliuscaesar,1599 coming,2,juliuscaesar,1599 walk'd,2,juliuscaesar,1599 hair,2,juliuscaesar,1599 hail,2,juliuscaesar,1599 familiar,2,juliuscaesar,1599 faces,2,juliuscaesar,1599 dreams,2,juliuscaesar,1599 dreamt,2,juliuscaesar,1599 served,2,juliuscaesar,1599 marry,2,juliuscaesar,1599 angel,2,juliuscaesar,1599 Titinius',2,juliuscaesar,1599 dumb,2,juliuscaesar,1599 yoke,2,juliuscaesar,1599 serves,2,juliuscaesar,1599 uttermost,2,juliuscaesar,1599 ope,2,juliuscaesar,1599 Noble,2,juliuscaesar,1599 Whispers,2,juliuscaesar,1599 prevention,2,juliuscaesar,1599 heirs,2,juliuscaesar,1599 fair,2,juliuscaesar,1599 evil,2,juliuscaesar,1599 daggers,2,juliuscaesar,1599 letter,2,juliuscaesar,1599 discover,2,juliuscaesar,1599 BRUTUS's,2,juliuscaesar,1599 worthiness,2,juliuscaesar,1599 rich,2,juliuscaesar,1599 ne'er,2,juliuscaesar,1599 incorporate,2,juliuscaesar,1599 married,2,juliuscaesar,1599 shows,2,juliuscaesar,1599 unfold,2,juliuscaesar,1599 fawn,2,juliuscaesar,1599 practise,2,juliuscaesar,1599 beware,2,juliuscaesar,1599 partly,2,juliuscaesar,1599 comfort,2,juliuscaesar,1599 unbraced,2,juliuscaesar,1599 names,2,juliuscaesar,1599 prefer,2,juliuscaesar,1599 fare,2,juliuscaesar,1599 gallant,2,juliuscaesar,1599 arm'd,2,juliuscaesar,1599 gentlemen,2,juliuscaesar,1599 thrusting,2,juliuscaesar,1599 mothers,2,juliuscaesar,1599 sights,2,juliuscaesar,1599 ought,2,juliuscaesar,1599 holds,2,juliuscaesar,1599 holy,2,juliuscaesar,1599 None,2,juliuscaesar,1599 temper'd,2,juliuscaesar,1599 cur,2,juliuscaesar,1599 cowards,2,juliuscaesar,1599 Wherefore,2,juliuscaesar,1599 seal,2,juliuscaesar,1599 Brave,2,juliuscaesar,1599 country's,2,juliuscaesar,1599 hung,2,juliuscaesar,1599 perils,2,juliuscaesar,1599 seat,2,juliuscaesar,1599 swear,2,juliuscaesar,1599 low,2,juliuscaesar,1599 sweat,2,juliuscaesar,1599 decree,2,juliuscaesar,1599 aught,2,juliuscaesar,1599 Ghost,2,juliuscaesar,1599 defend,2,juliuscaesar,1599 hounds,2,juliuscaesar,1599 ended,2,juliuscaesar,1599 courtesy,2,juliuscaesar,1599 sees,2,juliuscaesar,1599 exploit,2,juliuscaesar,1599 nights,2,juliuscaesar,1599 heels,2,juliuscaesar,1599 Send,2,juliuscaesar,1599 sell,2,juliuscaesar,1599 tide,2,juliuscaesar,1599 bleeding,2,juliuscaesar,1599 ghosts,2,juliuscaesar,1599 swell,2,juliuscaesar,1599 barren,2,juliuscaesar,1599 fearing,2,juliuscaesar,1599 statua,2,juliuscaesar,1599 bestow,2,juliuscaesar,1599 Mistrust,2,juliuscaesar,1599 Judge,2,juliuscaesar,1599 Two,2,juliuscaesar,1599 servants,2,juliuscaesar,1599 slumber,2,juliuscaesar,1599 suitor,2,juliuscaesar,1599 mad,2,juliuscaesar,1599 abroad,2,juliuscaesar,1599 smiling,2,juliuscaesar,1599 begins,2,juliuscaesar,1599 swim,2,juliuscaesar,1599 makes,2,juliuscaesar,1599 glory,2,juliuscaesar,1599 upward,2,juliuscaesar,1599 According,2,juliuscaesar,1599 abuse,2,juliuscaesar,1599 fled,2,juliuscaesar,1599 wound,2,juliuscaesar,1599 strokes,2,juliuscaesar,1599 mourning,2,juliuscaesar,1599 terror,2,juliuscaesar,1599 credit,2,juliuscaesar,1599 Greek,2,juliuscaesar,1599 betimes,2,juliuscaesar,1599 severally,2,juliuscaesar,1599 stretch'd,2,juliuscaesar,1599 Olympus,2,juliuscaesar,1599 revenged,2,juliuscaesar,1599 bribes,2,juliuscaesar,1599 Lena,2,juliuscaesar,1599 urged,2,juliuscaesar,1599 try,2,juliuscaesar,1599 mouths,2,juliuscaesar,1599 asleep,2,juliuscaesar,1599 Lest,2,juliuscaesar,1599 Several,2,juliuscaesar,1599 Bring,2,juliuscaesar,1599 chariot,2,juliuscaesar,1599 Take,2,juliuscaesar,1599 Ride,2,juliuscaesar,1599 shouting,2,juliuscaesar,1599 spectacle,2,juliuscaesar,1599 augurers,2,juliuscaesar,1599 shoes,2,juliuscaesar,1599 bids,2,juliuscaesar,1599 perhaps,2,juliuscaesar,1599 brave,3,juliuscaesar,1599 answered,3,juliuscaesar,1599 told,3,juliuscaesar,1599 regard,3,juliuscaesar,1599 o'er,3,juliuscaesar,1599 c,3,juliuscaesar,1599 drop,3,juliuscaesar,1599 motion,3,juliuscaesar,1599 horse,3,juliuscaesar,1599 Tear,3,juliuscaesar,1599 advantage,3,juliuscaesar,1599 ran,3,juliuscaesar,1599 bones,3,juliuscaesar,1599 Bear,3,juliuscaesar,1599 joy,3,juliuscaesar,1599 brands,3,juliuscaesar,1599 held,3,juliuscaesar,1599 Stay,3,juliuscaesar,1599 groan,3,juliuscaesar,1599 Either,3,juliuscaesar,1599 withal,3,juliuscaesar,1599 yonder,3,juliuscaesar,1599 sort,3,juliuscaesar,1599 truth,3,juliuscaesar,1599 ancestors,3,juliuscaesar,1599 Quite,3,juliuscaesar,1599 become,3,juliuscaesar,1599 lightning,3,juliuscaesar,1599 Poor,3,juliuscaesar,1599 soon,3,juliuscaesar,1599 charge,3,juliuscaesar,1599 Fellow,3,juliuscaesar,1599 matters,3,juliuscaesar,1599 Whose,3,juliuscaesar,1599 toward,3,juliuscaesar,1599 fingers,3,juliuscaesar,1599 paper,3,juliuscaesar,1599 fools,3,juliuscaesar,1599 freedom,3,juliuscaesar,1599 visit,3,juliuscaesar,1599 sleep'st,3,juliuscaesar,1599 sit,3,juliuscaesar,1599 Get,3,juliuscaesar,1599 throng,3,juliuscaesar,1599 Aside,3,juliuscaesar,1599 disposed,3,juliuscaesar,1599 second,3,juliuscaesar,1599 mother,3,juliuscaesar,1599 GHOST,3,juliuscaesar,1599 amiss,3,juliuscaesar,1599 fight,3,juliuscaesar,1599 piece,3,juliuscaesar,1599 born,3,juliuscaesar,1599 Whilst,3,juliuscaesar,1599 sun,3,juliuscaesar,1599 above,3,juliuscaesar,1599 promise,3,juliuscaesar,1599 saucy,3,juliuscaesar,1599 Hence,3,juliuscaesar,1599 Though,3,juliuscaesar,1599 bold,3,juliuscaesar,1599 died,3,juliuscaesar,1599 desire,3,juliuscaesar,1599 steel,3,juliuscaesar,1599 There's,3,juliuscaesar,1599 parts,3,juliuscaesar,1599 Hold,3,juliuscaesar,1599 music,3,juliuscaesar,1599 neither,3,juliuscaesar,1599 among,3,juliuscaesar,1599 itself,3,juliuscaesar,1599 proof,3,juliuscaesar,1599 cruel,3,juliuscaesar,1599 brings,3,juliuscaesar,1599 stab,3,juliuscaesar,1599 wisdom,3,juliuscaesar,1599 sirs,3,juliuscaesar,1599 god,3,juliuscaesar,1599 Thunder,3,juliuscaesar,1599 bend,3,juliuscaesar,1599 children,3,juliuscaesar,1599 struck,3,juliuscaesar,1599 Dies,3,juliuscaesar,1599 prick'd,3,juliuscaesar,1599 traitors',3,juliuscaesar,1599 friendly,3,juliuscaesar,1599 conquest,3,juliuscaesar,1599 About,3,juliuscaesar,1599 rejoice,3,juliuscaesar,1599 turns,3,juliuscaesar,1599 immortal,3,juliuscaesar,1599 CAESAR's,3,juliuscaesar,1599 flatterers,3,juliuscaesar,1599 breast,3,juliuscaesar,1599 consider,3,juliuscaesar,1599 stood,3,juliuscaesar,1599 safe,3,juliuscaesar,1599 dwell,3,juliuscaesar,1599 pluck'd,3,juliuscaesar,1599 holiday,3,juliuscaesar,1599 Besides,3,juliuscaesar,1599 trash,3,juliuscaesar,1599 buried,3,juliuscaesar,1599 manner,3,juliuscaesar,1599 commend,3,juliuscaesar,1599 idle,3,juliuscaesar,1599 wherein,3,juliuscaesar,1599 lest,3,juliuscaesar,1599 greater,3,juliuscaesar,1599 hot,3,juliuscaesar,1599 graves,3,juliuscaesar,1599 hark,3,juliuscaesar,1599 Seeing,3,juliuscaesar,1599 conspiracy,3,juliuscaesar,1599 palm,3,juliuscaesar,1599 spur,3,juliuscaesar,1599 call'd,3,juliuscaesar,1599 proscription,3,juliuscaesar,1599 Under,3,juliuscaesar,1599 refused,3,juliuscaesar,1599 form,3,juliuscaesar,1599 knocks,3,juliuscaesar,1599 fiery,3,juliuscaesar,1599 Prepare,3,juliuscaesar,1599 stones,3,juliuscaesar,1599 bosom,3,juliuscaesar,1599 though,3,juliuscaesar,1599 proper,3,juliuscaesar,1599 awe,3,juliuscaesar,1599 images,3,juliuscaesar,1599 Sirrah,3,juliuscaesar,1599 Art,3,juliuscaesar,1599 room,3,juliuscaesar,1599 glories,3,juliuscaesar,1599 silence,3,juliuscaesar,1599 Popilius,3,juliuscaesar,1599 dangers,3,juliuscaesar,1599 strike,3,juliuscaesar,1599 From,3,juliuscaesar,1599 Sir,3,juliuscaesar,1599 shores,3,juliuscaesar,1599 mouth,3,juliuscaesar,1599 question,3,juliuscaesar,1599 stare,3,juliuscaesar,1599 there's,3,juliuscaesar,1599 permission,3,juliuscaesar,1599 knows,3,juliuscaesar,1599 ordinary,3,juliuscaesar,1599 Being,3,juliuscaesar,1599 trouble,3,juliuscaesar,1599 o'clock,3,juliuscaesar,1599 taste,3,juliuscaesar,1599 close,3,juliuscaesar,1599 affairs,3,juliuscaesar,1599 Friends,3,juliuscaesar,1599 oft,3,juliuscaesar,1599 beseech,3,juliuscaesar,1599 walls,3,juliuscaesar,1599 Thus,3,juliuscaesar,1599 crown'd,3,juliuscaesar,1599 rise,3,juliuscaesar,1599 receive,3,juliuscaesar,1599 ambition,3,juliuscaesar,1599 bleed,3,juliuscaesar,1599 rage,3,juliuscaesar,1599 danger,3,juliuscaesar,1599 dying,3,juliuscaesar,1599 villains,3,juliuscaesar,1599 happy,3,juliuscaesar,1599 enforced,3,juliuscaesar,1599 mettle,3,juliuscaesar,1599 conference,3,juliuscaesar,1599 consent,3,juliuscaesar,1599 drops,3,juliuscaesar,1599 hundred,3,juliuscaesar,1599 Make,3,juliuscaesar,1599 Till,3,juliuscaesar,1599 That's,3,juliuscaesar,1599 constancy,3,juliuscaesar,1599 fortune,3,juliuscaesar,1599 ride,3,juliuscaesar,1599 Boy,3,juliuscaesar,1599 answer'd,3,juliuscaesar,1599 depart,3,juliuscaesar,1599 lived,3,juliuscaesar,1599 kiss,3,juliuscaesar,1599 secrets,3,juliuscaesar,1599 fast,3,juliuscaesar,1599 hope,3,juliuscaesar,1599 Welcome,3,juliuscaesar,1599 man's,3,juliuscaesar,1599 thank,3,juliuscaesar,1599 Who's,3,juliuscaesar,1599 prithee,3,juliuscaesar,1599 bachelor,3,juliuscaesar,1599 Seek,3,juliuscaesar,1599 condition,3,juliuscaesar,1599 tidings,3,juliuscaesar,1599 sweet,3,juliuscaesar,1599 sound,3,juliuscaesar,1599 briefly,3,juliuscaesar,1599 Know,3,juliuscaesar,1599 entreat,3,juliuscaesar,1599 huge,3,juliuscaesar,1599 Cry,3,juliuscaesar,1599 led,3,juliuscaesar,1599 alas,3,juliuscaesar,1599 statue,3,juliuscaesar,1599 madam,3,juliuscaesar,1599 brow,3,juliuscaesar,1599 Nothing,3,juliuscaesar,1599 honesty,3,juliuscaesar,1599 write,3,juliuscaesar,1599 limbs,3,juliuscaesar,1599 construe,3,juliuscaesar,1599 Messenger,3,juliuscaesar,1599 evils,3,juliuscaesar,1599 thoughts,3,juliuscaesar,1599 Men,3,juliuscaesar,1599 thinking,3,juliuscaesar,1599 lips,3,juliuscaesar,1599 Away,3,juliuscaesar,1599 lion,3,juliuscaesar,1599 Indeed,3,juliuscaesar,1599 late,3,juliuscaesar,1599 May,3,juliuscaesar,1599 windows,3,juliuscaesar,1599 content,3,juliuscaesar,1599 Therein,3,juliuscaesar,1599 leads,3,juliuscaesar,1599 honour'd,3,juliuscaesar,1599 sudden,3,juliuscaesar,1599 slew,3,juliuscaesar,1599 success,3,juliuscaesar,1599 cross,3,juliuscaesar,1599 shame,3,juliuscaesar,1599 kind,3,juliuscaesar,1599 private,3,juliuscaesar,1599 order,3,juliuscaesar,1599 turn'd,3,juliuscaesar,1599 crowd,3,juliuscaesar,1599 women,3,juliuscaesar,1599 lady,3,juliuscaesar,1599 quality,4,juliuscaesar,1599 swords,4,juliuscaesar,1599 smiles,4,juliuscaesar,1599 red,4,juliuscaesar,1599 took,4,juliuscaesar,1599 Hear,4,juliuscaesar,1599 country,4,juliuscaesar,1599 business,4,juliuscaesar,1599 haste,4,juliuscaesar,1599 health,4,juliuscaesar,1599 truly,4,juliuscaesar,1599 Must,4,juliuscaesar,1599 while,4,juliuscaesar,1599 sight,4,juliuscaesar,1599 tears,4,juliuscaesar,1599 Would,4,juliuscaesar,1599 sad,4,juliuscaesar,1599 grown,4,juliuscaesar,1599 years,4,juliuscaesar,1599 noise,4,juliuscaesar,1599 Their,4,juliuscaesar,1599 looks,4,juliuscaesar,1599 faults,4,juliuscaesar,1599 doubt,4,juliuscaesar,1599 offence,4,juliuscaesar,1599 worse,4,juliuscaesar,1599 fault,4,juliuscaesar,1599 Pardon,4,juliuscaesar,1599 fearful,4,juliuscaesar,1599 Antonius,4,juliuscaesar,1599 noblest,4,juliuscaesar,1599 masters,4,juliuscaesar,1599 wind,4,juliuscaesar,1599 others,4,juliuscaesar,1599 prevent,4,juliuscaesar,1599 wise,4,juliuscaesar,1599 he's,4,juliuscaesar,1599 wherefore,4,juliuscaesar,1599 morning,4,juliuscaesar,1599 sign,4,juliuscaesar,1599 deeds,4,juliuscaesar,1599 Those,4,juliuscaesar,1599 denied,4,juliuscaesar,1599 On,4,juliuscaesar,1599 Ha,4,juliuscaesar,1599 beg,4,juliuscaesar,1599 pleasure,4,juliuscaesar,1599 Had,4,juliuscaesar,1599 monstrous,4,juliuscaesar,1599 heads,4,juliuscaesar,1599 gave,4,juliuscaesar,1599 burn,4,juliuscaesar,1599 wear,4,juliuscaesar,1599 farewell,4,juliuscaesar,1599 air,4,juliuscaesar,1599 long,4,juliuscaesar,1599 does,4,juliuscaesar,1599 speed,4,juliuscaesar,1599 move,4,juliuscaesar,1599 wisely,4,juliuscaesar,1599 age,4,juliuscaesar,1599 less,4,juliuscaesar,1599 lose,4,juliuscaesar,1599 ready,4,juliuscaesar,1599 grace,4,juliuscaesar,1599 Pompey,4,juliuscaesar,1599 speaks,4,juliuscaesar,1599 half,4,juliuscaesar,1599 round,4,juliuscaesar,1599 whether,4,juliuscaesar,1599 present,4,juliuscaesar,1599 foot,4,juliuscaesar,1599 dreadful,4,juliuscaesar,1599 Should,4,juliuscaesar,1599 hill,4,juliuscaesar,1599 almost,4,juliuscaesar,1599 powers,4,juliuscaesar,1599 See,4,juliuscaesar,1599 Some,4,juliuscaesar,1599 teeth,4,juliuscaesar,1599 knave,4,juliuscaesar,1599 already,4,juliuscaesar,1599 presently,4,juliuscaesar,1599 dream,4,juliuscaesar,1599 coward,4,juliuscaesar,1599 known,4,juliuscaesar,1599 number,4,juliuscaesar,1599 ceremonies,4,juliuscaesar,1599 living,4,juliuscaesar,1599 thine,4,juliuscaesar,1599 sake,4,juliuscaesar,1599 Run,4,juliuscaesar,1599 Say,4,juliuscaesar,1599 heavy,4,juliuscaesar,1599 war,4,juliuscaesar,1599 poet,4,juliuscaesar,1599 arms,4,juliuscaesar,1599 oath,4,juliuscaesar,1599 news,4,juliuscaesar,1599 Bid,4,juliuscaesar,1599 taken,4,juliuscaesar,1599 glad,4,juliuscaesar,1599 ground,4,juliuscaesar,1599 minds,4,juliuscaesar,1599 grant,4,juliuscaesar,1599 Fare,4,juliuscaesar,1599 Unto,4,juliuscaesar,1599 patient,4,juliuscaesar,1599 public,4,juliuscaesar,1599 feeble,4,juliuscaesar,1599 constant,4,juliuscaesar,1599 lay,4,juliuscaesar,1599 given,4,juliuscaesar,1599 flood,4,juliuscaesar,1599 gives,4,juliuscaesar,1599 legions,4,juliuscaesar,1599 shout,4,juliuscaesar,1599 Truly,4,juliuscaesar,1599 generals,4,juliuscaesar,1599 souls,4,juliuscaesar,1599 whilst,4,juliuscaesar,1599 bade,4,juliuscaesar,1599 Low,4,juliuscaesar,1599 purpose,4,juliuscaesar,1599 chanced,4,juliuscaesar,1599 triumph,4,juliuscaesar,1599 ear,4,juliuscaesar,1599 clouds,4,juliuscaesar,1599 straight,4,juliuscaesar,1599 Before,4,juliuscaesar,1599 nature,4,juliuscaesar,1599 dare,4,juliuscaesar,1599 behold,4,juliuscaesar,1599 without,4,juliuscaesar,1599 tempt,4,juliuscaesar,1599 shalt,4,juliuscaesar,1599 king,4,juliuscaesar,1599 Clitus,4,juliuscaesar,1599 times,5,juliuscaesar,1599 pity,5,juliuscaesar,1599 days,5,juliuscaesar,1599 speech,5,juliuscaesar,1599 Alas,5,juliuscaesar,1599 honours,5,juliuscaesar,1599 peace,5,juliuscaesar,1599 dagger,5,juliuscaesar,1599 offended,5,juliuscaesar,1599 Never,5,juliuscaesar,1599 Tell,5,juliuscaesar,1599 instrument,5,juliuscaesar,1599 press,5,juliuscaesar,1599 head,5,juliuscaesar,1599 call,5,juliuscaesar,1599 another,5,juliuscaesar,1599 she,5,juliuscaesar,1599 light,5,juliuscaesar,1599 suit,5,juliuscaesar,1599 worth,5,juliuscaesar,1599 ourselves,5,juliuscaesar,1599 heavens,5,juliuscaesar,1599 These,5,juliuscaesar,1599 taper,5,juliuscaesar,1599 wine,5,juliuscaesar,1599 soldier,5,juliuscaesar,1599 heaven,5,juliuscaesar,1599 conspirators,5,juliuscaesar,1599 spoke,5,juliuscaesar,1599 side,5,juliuscaesar,1599 Am,5,juliuscaesar,1599 mutiny,5,juliuscaesar,1599 smile,5,juliuscaesar,1599 Within,5,juliuscaesar,1599 since,5,juliuscaesar,1599 IV,5,juliuscaesar,1599 Let's,5,juliuscaesar,1599 ears,5,juliuscaesar,1599 Julius,5,juliuscaesar,1599 grief,5,juliuscaesar,1599 gown,5,juliuscaesar,1599 Tiber,5,juliuscaesar,1599 POPILIUS,5,juliuscaesar,1599 earth,5,juliuscaesar,1599 Yes,5,juliuscaesar,1599 resolved,5,juliuscaesar,1599 those,5,juliuscaesar,1599 Marcus,5,juliuscaesar,1599 thrice,5,juliuscaesar,1599 brought,5,juliuscaesar,1599 welcome,5,juliuscaesar,1599 course,5,juliuscaesar,1599 little,5,juliuscaesar,1599 alive,5,juliuscaesar,1599 Cato,5,juliuscaesar,1599 Hark,5,juliuscaesar,1599 Into,5,juliuscaesar,1599 through,5,juliuscaesar,1599 griefs,5,juliuscaesar,1599 PUBLIUS,5,juliuscaesar,1599 Flourish,5,juliuscaesar,1599 hide,5,juliuscaesar,1599 awhile,5,juliuscaesar,1599 several,5,juliuscaesar,1599 ere,5,juliuscaesar,1599 state,5,juliuscaesar,1599 need,5,juliuscaesar,1599 free,5,juliuscaesar,1599 opinion,5,juliuscaesar,1599 break,5,juliuscaesar,1599 fetch,5,juliuscaesar,1599 Well,5,juliuscaesar,1599 believe,5,juliuscaesar,1599 army,5,juliuscaesar,1599 Claudius,5,juliuscaesar,1599 angry,5,juliuscaesar,1599 cried,5,juliuscaesar,1599 wounds,5,juliuscaesar,1599 perceive,5,juliuscaesar,1599 wilt,5,juliuscaesar,1599 honest,5,juliuscaesar,1599 we'll,5,juliuscaesar,1599 seem,5,juliuscaesar,1599 Sardis,5,juliuscaesar,1599 blame,5,juliuscaesar,1599 goes,5,juliuscaesar,1599 sickness,5,juliuscaesar,1599 Lepidus,5,juliuscaesar,1599 Cassius',5,juliuscaesar,1599 kill,5,juliuscaesar,1599 woman,5,juliuscaesar,1599 market,5,juliuscaesar,1599 bondman,5,juliuscaesar,1599 V,6,juliuscaesar,1599 Nay,6,juliuscaesar,1599 Calpurnia,6,juliuscaesar,1599 pulpit,6,juliuscaesar,1599 pray,6,juliuscaesar,1599 under,6,juliuscaesar,1599 came,6,juliuscaesar,1599 DARDANIUS,6,juliuscaesar,1599 Fly,6,juliuscaesar,1599 wish,6,juliuscaesar,1599 voice,6,juliuscaesar,1599 stir,6,juliuscaesar,1599 patience,6,juliuscaesar,1599 pass,6,juliuscaesar,1599 yourselves,6,juliuscaesar,1599 gold,6,juliuscaesar,1599 valiant,6,juliuscaesar,1599 weep,6,juliuscaesar,1599 weak,6,juliuscaesar,1599 Like,6,juliuscaesar,1599 left,6,juliuscaesar,1599 redress,6,juliuscaesar,1599 endure,6,juliuscaesar,1599 ill,6,juliuscaesar,1599 loved,6,juliuscaesar,1599 Pompey's,6,juliuscaesar,1599 trade,6,juliuscaesar,1599 point,6,juliuscaesar,1599 Alarum,6,juliuscaesar,1599 right,6,juliuscaesar,1599 enemies,6,juliuscaesar,1599 new,6,juliuscaesar,1599 Hath,6,juliuscaesar,1599 far,6,juliuscaesar,1599 note,6,juliuscaesar,1599 none,6,juliuscaesar,1599 eye,6,juliuscaesar,1599 traitors,6,juliuscaesar,1599 Set,6,juliuscaesar,1599 Therefore,6,juliuscaesar,1599 didst,6,juliuscaesar,1599 mark,6,juliuscaesar,1599 over,6,juliuscaesar,1599 themselves,6,juliuscaesar,1599 found,6,juliuscaesar,1599 Ligarius,6,juliuscaesar,1599 went,6,juliuscaesar,1599 durst,6,juliuscaesar,1599 old,6,juliuscaesar,1599 'em,6,juliuscaesar,1599 fit,6,juliuscaesar,1599 ta'en,6,juliuscaesar,1599 base,6,juliuscaesar,1599 Volumnius,6,juliuscaesar,1599 pardon,6,juliuscaesar,1599 cut,6,juliuscaesar,1599 satisfied,6,juliuscaesar,1599 alone,6,juliuscaesar,1599 seek,6,juliuscaesar,1599 funeral,6,juliuscaesar,1599 hither,6,juliuscaesar,1599 together,6,juliuscaesar,1599 cold,6,juliuscaesar,1599 Another,6,juliuscaesar,1599 remember,6,juliuscaesar,1599 fashion,6,juliuscaesar,1599 virtue,6,juliuscaesar,1599 going,6,juliuscaesar,1599 cannot,6,juliuscaesar,1599 certain,6,juliuscaesar,1599 shake,6,juliuscaesar,1599 power,6,juliuscaesar,1599 thought,7,juliuscaesar,1599 Trebonius,7,juliuscaesar,1599 lies,7,juliuscaesar,1599 further,7,juliuscaesar,1599 nothing,7,juliuscaesar,1599 walk,7,juliuscaesar,1599 son,7,juliuscaesar,1599 Such,7,juliuscaesar,1599 Farewell,7,juliuscaesar,1599 Poet,7,juliuscaesar,1599 both,7,juliuscaesar,1599 His,7,juliuscaesar,1599 therefore,7,juliuscaesar,1599 VOLUMNIUS,7,juliuscaesar,1599 bed,7,juliuscaesar,1599 offered,7,juliuscaesar,1599 Or,7,juliuscaesar,1599 STRATO,7,juliuscaesar,1599 enterprise,7,juliuscaesar,1599 dear,7,juliuscaesar,1599 ides,7,juliuscaesar,1599 FLAVIUS,7,juliuscaesar,1599 senate,7,juliuscaesar,1599 CLAUDIUS,7,juliuscaesar,1599 lead,7,juliuscaesar,1599 high,7,juliuscaesar,1599 end,7,juliuscaesar,1599 letters,7,juliuscaesar,1599 Strato,7,juliuscaesar,1599 why,7,juliuscaesar,1599 only,7,juliuscaesar,1599 three,7,juliuscaesar,1599 even,7,juliuscaesar,1599 talk,7,juliuscaesar,1599 reason,7,juliuscaesar,1599 cry,7,juliuscaesar,1599 CATO,7,juliuscaesar,1599 poor,7,juliuscaesar,1599 spirits,7,juliuscaesar,1599 being,7,juliuscaesar,1599 respect,7,juliuscaesar,1599 CICERO,8,juliuscaesar,1599 rather,8,juliuscaesar,1599 appear,8,juliuscaesar,1599 saw,8,juliuscaesar,1599 Not,8,juliuscaesar,1599 against,8,juliuscaesar,1599 set,8,juliuscaesar,1599 vile,8,juliuscaesar,1599 turn,8,juliuscaesar,1599 bring,8,juliuscaesar,1599 directly,8,juliuscaesar,1599 III,8,juliuscaesar,1599 bad,8,juliuscaesar,1599 deed,8,juliuscaesar,1599 loves,8,juliuscaesar,1599 reasons,8,juliuscaesar,1599 hard,8,juliuscaesar,1599 ARTEMIDORUS,8,juliuscaesar,1599 change,8,juliuscaesar,1599 Lucilius,8,juliuscaesar,1599 indeed,8,juliuscaesar,1599 MARULLUS,8,juliuscaesar,1599 young,8,juliuscaesar,1599 CIMBER,8,juliuscaesar,1599 mind,8,juliuscaesar,1599 LEPIDUS,8,juliuscaesar,1599 Cicero,8,juliuscaesar,1599 get,8,juliuscaesar,1599 near,8,juliuscaesar,1599 heard,8,juliuscaesar,1599 please,8,juliuscaesar,1599 humour,8,juliuscaesar,1599 senators,8,juliuscaesar,1599 hour,8,juliuscaesar,1599 along,8,juliuscaesar,1599 battle,8,juliuscaesar,1599 sleep,8,juliuscaesar,1599 Decius,8,juliuscaesar,1599 street,8,juliuscaesar,1599 LIGARIUS,8,juliuscaesar,1599 two,8,juliuscaesar,1599 strange,8,juliuscaesar,1599 ambitious,8,juliuscaesar,1599 the,520,juliuscaesar,1599 Citizens,9,juliuscaesar,1599 sure,9,juliuscaesar,1599 enough,9,juliuscaesar,1599 METELLUS,9,juliuscaesar,1599 common,9,juliuscaesar,1599 after,9,juliuscaesar,1599 worthy,9,juliuscaesar,1599 hence,9,juliuscaesar,1599 CALPURNIA,9,juliuscaesar,1599 boy,9,juliuscaesar,1599 II,9,juliuscaesar,1599 means,9,juliuscaesar,1599 dost,9,juliuscaesar,1599 tongue,9,juliuscaesar,1599 Publius,9,juliuscaesar,1599 ye,9,juliuscaesar,1599 Than,9,juliuscaesar,1599 moved,9,juliuscaesar,1599 gentle,9,juliuscaesar,1599 THE,9,juliuscaesar,1599 yours,9,juliuscaesar,1599 Portia,9,juliuscaesar,1599 Look,9,juliuscaesar,1599 same,9,juliuscaesar,1599 Pindarus,9,juliuscaesar,1599 says,9,juliuscaesar,1599 'Tis,9,juliuscaesar,1599 work,9,juliuscaesar,1599 fly,9,juliuscaesar,1599 dangerous,9,juliuscaesar,1599 wife,9,juliuscaesar,1599 seen,9,juliuscaesar,1599 send,9,juliuscaesar,1599 Commoner,9,juliuscaesar,1599 last,9,juliuscaesar,1599 POET,9,juliuscaesar,1599 awake,9,juliuscaesar,1599 I,521,juliuscaesar,1599 answer,10,juliuscaesar,1599 Cimber,10,juliuscaesar,1599 Soldier,10,juliuscaesar,1599 full,10,juliuscaesar,1599 Nor,10,juliuscaesar,1599 fellow,10,juliuscaesar,1599 matter,10,juliuscaesar,1599 tent,10,juliuscaesar,1599 TREBONIUS,10,juliuscaesar,1599 gone,10,juliuscaesar,1599 people,10,juliuscaesar,1599 Speak,10,juliuscaesar,1599 been,10,juliuscaesar,1599 said,10,juliuscaesar,1599 Most,10,juliuscaesar,1599 field,10,juliuscaesar,1599 keep,10,juliuscaesar,1599 Brutus',10,juliuscaesar,1599 Metellus,10,juliuscaesar,1599 into,10,juliuscaesar,1599 general,10,juliuscaesar,1599 bloody,10,juliuscaesar,1599 still,10,juliuscaesar,1599 We'll,10,juliuscaesar,1599 Even,10,juliuscaesar,1599 hold,10,juliuscaesar,1599 VARRO,10,juliuscaesar,1599 unto,10,juliuscaesar,1599 strong,10,juliuscaesar,1599 use,10,juliuscaesar,1599 lie,10,juliuscaesar,1599 Thy,10,juliuscaesar,1599 enemy,10,juliuscaesar,1599 words,11,juliuscaesar,1599 PINDARUS,11,juliuscaesar,1599 mean,11,juliuscaesar,1599 sick,11,juliuscaesar,1599 her,11,juliuscaesar,1599 Go,11,juliuscaesar,1599 Peace,11,juliuscaesar,1599 bears,11,juliuscaesar,1599 before,11,juliuscaesar,1599 who,11,juliuscaesar,1599 own,11,juliuscaesar,1599 fall,11,juliuscaesar,1599 master,11,juliuscaesar,1599 streets,11,juliuscaesar,1599 hearts,11,juliuscaesar,1599 countrymen,11,juliuscaesar,1599 CLITUS,11,juliuscaesar,1599 March,11,juliuscaesar,1599 first,11,juliuscaesar,1599 crown,11,juliuscaesar,1599 run,12,juliuscaesar,1599 life,12,juliuscaesar,1599 Upon,12,juliuscaesar,1599 yourself,12,juliuscaesar,1599 Give,12,juliuscaesar,1599 brother,12,juliuscaesar,1599 fell,12,juliuscaesar,1599 within,12,juliuscaesar,1599 read,12,juliuscaesar,1599 rest,12,juliuscaesar,1599 else,12,juliuscaesar,1599 Do,12,juliuscaesar,1599 never,12,juliuscaesar,1599 We,12,juliuscaesar,1599 best,12,juliuscaesar,1599 show,12,juliuscaesar,1599 Your,12,juliuscaesar,1599 where,12,juliuscaesar,1599 Thou,12,juliuscaesar,1599 very,12,juliuscaesar,1599 I'll,12,juliuscaesar,1599 home,12,juliuscaesar,1599 might,12,juliuscaesar,1599 Philippi,13,juliuscaesar,1599 Our,13,juliuscaesar,1599 Stand,13,juliuscaesar,1599 stay,13,juliuscaesar,1599 bid,13,juliuscaesar,1599 Cinna,13,juliuscaesar,1599 Re,13,juliuscaesar,1599 Yet,13,juliuscaesar,1599 Caius,13,juliuscaesar,1599 hast,13,juliuscaesar,1599 Are,13,juliuscaesar,1599 way,13,juliuscaesar,1599 face,13,juliuscaesar,1599 back,13,juliuscaesar,1599 thus,13,juliuscaesar,1599 Did,13,juliuscaesar,1599 follow,13,juliuscaesar,1599 Will,14,juliuscaesar,1599 better,14,juliuscaesar,1599 honour,14,juliuscaesar,1599 enter,14,juliuscaesar,1599 'tis,14,juliuscaesar,1599 mighty,14,juliuscaesar,1599 many,14,juliuscaesar,1599 nor,14,juliuscaesar,1599 comes,14,juliuscaesar,1599 once,14,juliuscaesar,1599 morrow,14,juliuscaesar,1599 eyes,14,juliuscaesar,1599 live,14,juliuscaesar,1599 other,14,juliuscaesar,1599 Soothsayer,15,juliuscaesar,1599 body,15,juliuscaesar,1599 cause,15,juliuscaesar,1599 away,15,juliuscaesar,1599 sword,15,juliuscaesar,1599 name,15,juliuscaesar,1599 Be,15,juliuscaesar,1599 put,15,juliuscaesar,1599 dead,15,juliuscaesar,1599 hands,15,juliuscaesar,1599 how,15,juliuscaesar,1599 Shall,15,juliuscaesar,1599 himself,15,juliuscaesar,1599 meet,16,juliuscaesar,1599 honourable,16,juliuscaesar,1599 There,16,juliuscaesar,1599 about,16,juliuscaesar,1599 made,16,juliuscaesar,1599 things,16,juliuscaesar,1599 They,16,juliuscaesar,1599 ever,16,juliuscaesar,1599 spirit,16,juliuscaesar,1599 Romans,17,juliuscaesar,1599 Who,17,juliuscaesar,1599 Servant,17,juliuscaesar,1599 wrong,17,juliuscaesar,1599 Ay,17,juliuscaesar,1599 By,17,juliuscaesar,1599 DECIUS,17,juliuscaesar,1599 ho,17,juliuscaesar,1599 All,17,juliuscaesar,1599 could,17,juliuscaesar,1599 Fourth,17,juliuscaesar,1599 find,17,juliuscaesar,1599 Titinius,17,juliuscaesar,1599 Roman,17,juliuscaesar,1599 Where,17,juliuscaesar,1599 die,17,juliuscaesar,1599 Messala,18,juliuscaesar,1599 world,18,juliuscaesar,1599 Here,18,juliuscaesar,1599 TITINIUS,18,juliuscaesar,1599 Of,18,juliuscaesar,1599 can,18,juliuscaesar,1599 most,18,juliuscaesar,1599 part,18,juliuscaesar,1599 Octavius,18,juliuscaesar,1599 ACT,18,juliuscaesar,1599 myself,18,juliuscaesar,1599 Then,18,juliuscaesar,1599 Lucius,18,juliuscaesar,1599 house,18,juliuscaesar,1599 leave,18,juliuscaesar,1599 true,18,juliuscaesar,1599 ',19,juliuscaesar,1599 With,19,juliuscaesar,1599 LUCILIUS,19,juliuscaesar,1599 place,19,juliuscaesar,1599 How,19,juliuscaesar,1599 Have,19,juliuscaesar,1599 Third,19,juliuscaesar,1599 fire,19,juliuscaesar,1599 thing,19,juliuscaesar,1599 off,19,juliuscaesar,1599 Capitol,19,juliuscaesar,1599 till,19,juliuscaesar,1599 SCENE,19,juliuscaesar,1599 sir,20,juliuscaesar,1599 bear,20,juliuscaesar,1599 art,20,juliuscaesar,1599 JULIUS,20,juliuscaesar,1599 again,20,juliuscaesar,1599 mine,20,juliuscaesar,1599 word,20,juliuscaesar,1599 PORTIA,21,juliuscaesar,1599 My,21,juliuscaesar,1599 Is,21,juliuscaesar,1599 think,21,juliuscaesar,1599 stand,21,juliuscaesar,1599 take,21,juliuscaesar,1599 friends,22,juliuscaesar,1599 Now,22,juliuscaesar,1599 friend,22,juliuscaesar,1599 In,22,juliuscaesar,1599 Good,22,juliuscaesar,1599 look,22,juliuscaesar,1599 give,22,juliuscaesar,1599 which,23,juliuscaesar,1599 had,23,juliuscaesar,1599 blood,23,juliuscaesar,1599 done,23,juliuscaesar,1599 make,23,juliuscaesar,1599 This,23,juliuscaesar,1599 Which,24,juliuscaesar,1599 forth,24,juliuscaesar,1599 Casca,25,juliuscaesar,1599 Come,25,juliuscaesar,1599 No,25,juliuscaesar,1599 down,25,juliuscaesar,1599 OCTAVIUS,25,juliuscaesar,1599 gods,25,juliuscaesar,1599 any,26,juliuscaesar,1599 out,26,juliuscaesar,1599 Mark,26,juliuscaesar,1599 time,26,juliuscaesar,1599 great,26,juliuscaesar,1599 Exit,26,juliuscaesar,1599 Exeunt,27,juliuscaesar,1599 First,27,juliuscaesar,1599 heart,27,juliuscaesar,1599 Let,27,juliuscaesar,1599 When,27,juliuscaesar,1599 every,28,juliuscaesar,1599 fear,28,juliuscaesar,1599 CINNA,28,juliuscaesar,1599 too,28,juliuscaesar,1599 much,29,juliuscaesar,1599 doth,29,juliuscaesar,1599 yet,29,juliuscaesar,1599 Second,29,juliuscaesar,1599 hand,29,juliuscaesar,1599 hath,29,juliuscaesar,1599 MESSALA,29,juliuscaesar,1599 such,30,juliuscaesar,1599 So,30,juliuscaesar,1599 speak,30,juliuscaesar,1599 death,31,juliuscaesar,1599 It,31,juliuscaesar,1599 an,31,juliuscaesar,1599 must,32,juliuscaesar,1599 there,32,juliuscaesar,1599 like,33,juliuscaesar,1599 say,33,juliuscaesar,1599 hear,33,juliuscaesar,1599 see,33,juliuscaesar,1599 than,33,juliuscaesar,1599 these,33,juliuscaesar,1599 tell,33,juliuscaesar,1599 As,33,juliuscaesar,1599 go,33,juliuscaesar,1599 love,33,juliuscaesar,1599 more,33,juliuscaesar,1599 up,33,juliuscaesar,1599 one,33,juliuscaesar,1599 may,34,juliuscaesar,1599 if,35,juliuscaesar,1599 were,35,juliuscaesar,1599 A,36,juliuscaesar,1599 upon,36,juliuscaesar,1599 Why,36,juliuscaesar,1599 Caesar's,37,juliuscaesar,1599 or,37,juliuscaesar,1599 noble,37,juliuscaesar,1599 should,37,juliuscaesar,1599 some,38,juliuscaesar,1599 let,38,juliuscaesar,1599 night,40,juliuscaesar,1599 would,40,juliuscaesar,1599 when,40,juliuscaesar,1599 now,41,juliuscaesar,1599 LUCIUS,41,juliuscaesar,1599 here,42,juliuscaesar,1599 lord,42,juliuscaesar,1599 Enter,43,juliuscaesar,1599 Rome,43,juliuscaesar,1599 day,45,juliuscaesar,1599 thy,45,juliuscaesar,1599 from,46,juliuscaesar,1599 well,46,juliuscaesar,1599 they,47,juliuscaesar,1599 You,47,juliuscaesar,1599 CASCA,47,juliuscaesar,1599 He,48,juliuscaesar,1599 then,49,juliuscaesar,1599 If,49,juliuscaesar,1599 good,49,juliuscaesar,1599 For,50,juliuscaesar,1599 come,50,juliuscaesar,1599 am,52,juliuscaesar,1599 thee,54,juliuscaesar,1599 man,56,juliuscaesar,1599 at,57,juliuscaesar,1599 their,58,juliuscaesar,1599 them,61,juliuscaesar,1599 was,62,juliuscaesar,1599 men,62,juliuscaesar,1599 did,62,juliuscaesar,1599 What,62,juliuscaesar,1599 Antony,63,juliuscaesar,1599 us,63,juliuscaesar,1599 what,64,juliuscaesar,1599 ANTONY,65,juliuscaesar,1599 know,65,juliuscaesar,1599 no,68,juliuscaesar,1599 But,69,juliuscaesar,1599 O,70,juliuscaesar,1599 CAESAR,70,juliuscaesar,1599 Citizen,72,juliuscaesar,1599 Cassius,72,juliuscaesar,1599 our,75,juliuscaesar,1599 but,76,juliuscaesar,1599 To,77,juliuscaesar,1599 on,79,juliuscaesar,1599 by,83,juliuscaesar,1599 we,84,juliuscaesar,1599 The,84,juliuscaesar,1599 That,85,juliuscaesar,1599 you,344,juliuscaesar,1599 of,350,juliuscaesar,1599 all,95,juliuscaesar,1599 are,96,juliuscaesar,1599 as,102,juliuscaesar,1599 thou,104,juliuscaesar,1599 so,109,juliuscaesar,1599 shall,109,juliuscaesar,1599 your,118,juliuscaesar,1599 do,119,juliuscaesar,1599 to,380,juliuscaesar,1599 for,127,juliuscaesar,1599 have,128,juliuscaesar,1599 be,135,juliuscaesar,1599 Brutus,136,juliuscaesar,1599 with,139,juliuscaesar,1599 this,142,juliuscaesar,1599 he,145,juliuscaesar,1599 will,150,juliuscaesar,1599 his,151,juliuscaesar,1599 CASSIUS,153,juliuscaesar,1599 it,163,juliuscaesar,1599 him,165,juliuscaesar,1599 my,168,juliuscaesar,1599 and,431,juliuscaesar,1599 Caesar,182,juliuscaesar,1599 me,189,juliuscaesar,1599 that,200,juliuscaesar,1599 in,204,juliuscaesar,1599 And,206,juliuscaesar,1599 is,229,juliuscaesar,1599 a,230,juliuscaesar,1599 BRUTUS,235,juliuscaesar,1599 not,248,juliuscaesar,1599 attended,1,twelfthnight,1602 repaying,1,twelfthnight,1602 feel't,1,twelfthnight,1602 fear'st,1,twelfthnight,1602 'You,1,twelfthnight,1602 You're,1,twelfthnight,1602 'element,1,twelfthnight,1602 P's,1,twelfthnight,1602 alehouse,1,twelfthnight,1602 troubled,1,twelfthnight,1602 memorials,1,twelfthnight,1602 possibly,1,twelfthnight,1602 meet,1,twelfthnight,1602 niece's,1,twelfthnight,1602 asses,1,twelfthnight,1602 viewing,1,twelfthnight,1602 forbid,1,twelfthnight,1602 daws,1,twelfthnight,1602 tomb,1,twelfthnight,1602 'thought,1,twelfthnight,1602 willow,1,twelfthnight,1602 name's,1,twelfthnight,1602 Dutchman's,1,twelfthnight,1602 grew,1,twelfthnight,1602 Prove,1,twelfthnight,1602 injunction,1,twelfthnight,1602 fruits,1,twelfthnight,1602 reverberate,1,twelfthnight,1602 suffer,1,twelfthnight,1602 smiles,1,twelfthnight,1602 taking,1,twelfthnight,1602 profanation,1,twelfthnight,1602 unmuzzled,1,twelfthnight,1602 implacable,1,twelfthnight,1602 masterly,1,twelfthnight,1602 pestilence,1,twelfthnight,1602 basis,1,twelfthnight,1602 echo,1,twelfthnight,1602 darest,1,twelfthnight,1602 guilt,1,twelfthnight,1602 bespoke,1,twelfthnight,1602 apprehend,1,twelfthnight,1602 fools',1,twelfthnight,1602 for's,1,twelfthnight,1602 derives,1,twelfthnight,1602 advises,1,twelfthnight,1602 churlish,1,twelfthnight,1602 weary,1,twelfthnight,1602 garter'd,1,twelfthnight,1602 wears,1,twelfthnight,1602 generous,1,twelfthnight,1602 business,1,twelfthnight,1602 mores,1,twelfthnight,1602 twin,1,twelfthnight,1602 FORTUNATE,1,twelfthnight,1602 following,1,twelfthnight,1602 treasure,1,twelfthnight,1602 Journeys,1,twelfthnight,1602 alike,1,twelfthnight,1602 finished,1,twelfthnight,1602 peruse,1,twelfthnight,1602 advantage,1,twelfthnight,1602 royal,1,twelfthnight,1602 Fit,1,twelfthnight,1602 riddle,1,twelfthnight,1602 baffled,1,twelfthnight,1602 knitters,1,twelfthnight,1602 foolery,1,twelfthnight,1602 preparation,1,twelfthnight,1602 wren,1,twelfthnight,1602 bonds,1,twelfthnight,1602 'Besides,1,twelfthnight,1602 scent,1,twelfthnight,1602 suppose,1,twelfthnight,1602 counterfeits,1,twelfthnight,1602 doubtful,1,twelfthnight,1602 weave,1,twelfthnight,1602 apprehended,1,twelfthnight,1602 impressure,1,twelfthnight,1602 easily,1,twelfthnight,1602 express,1,twelfthnight,1602 waxen,1,twelfthnight,1602 speedy,1,twelfthnight,1602 held,1,twelfthnight,1602 fangs,1,twelfthnight,1602 Belong,1,twelfthnight,1602 monachum,1,twelfthnight,1602 violets,1,twelfthnight,1602 Stay,1,twelfthnight,1602 truly,1,twelfthnight,1602 dish,1,twelfthnight,1602 Phoenix,1,twelfthnight,1602 eight,1,twelfthnight,1602 jig,1,twelfthnight,1602 drowns,1,twelfthnight,1602 younger,1,twelfthnight,1602 'some,1,twelfthnight,1602 'Alas,1,twelfthnight,1602 midsummer,1,twelfthnight,1602 contract,1,twelfthnight,1602 clothes,1,twelfthnight,1602 accosted,1,twelfthnight,1602 care's,1,twelfthnight,1602 aptly,1,twelfthnight,1602 harbours,1,twelfthnight,1602 imitate,1,twelfthnight,1602 vain,1,twelfthnight,1602 mere,1,twelfthnight,1602 lodging,1,twelfthnight,1602 Cried,1,twelfthnight,1602 ruffian,1,twelfthnight,1602 assailant,1,twelfthnight,1602 comest,1,twelfthnight,1602 learn'd,1,twelfthnight,1602 honourable,1,twelfthnight,1602 hearted,1,twelfthnight,1602 offer,1,twelfthnight,1602 instrument,1,twelfthnight,1602 'Slid,1,twelfthnight,1602 lowly,1,twelfthnight,1602 impetuosity,1,twelfthnight,1602 commodity,1,twelfthnight,1602 Cries,1,twelfthnight,1602 rid,1,twelfthnight,1602 naked,1,twelfthnight,1602 unfriended,1,twelfthnight,1602 slander,1,twelfthnight,1602 blanks,1,twelfthnight,1602 uncourteous,1,twelfthnight,1602 dismount,1,twelfthnight,1602 sayings,1,twelfthnight,1602 although,1,twelfthnight,1602 fury,1,twelfthnight,1602 foamy,1,twelfthnight,1602 withal,1,twelfthnight,1602 underneath,1,twelfthnight,1602 Taint,1,twelfthnight,1602 nought,1,twelfthnight,1602 horrid,1,twelfthnight,1602 prey,1,twelfthnight,1602 pined,1,twelfthnight,1602 beauty's,1,twelfthnight,1602 terrible,1,twelfthnight,1602 befall,1,twelfthnight,1602 lackest,1,twelfthnight,1602 lively,1,twelfthnight,1602 cucullus,1,twelfthnight,1602 Assure,1,twelfthnight,1602 run,1,twelfthnight,1602 damned,1,twelfthnight,1602 malapert,1,twelfthnight,1602 lids,1,twelfthnight,1602 contrary,1,twelfthnight,1602 lief,1,twelfthnight,1602 Challenge,1,twelfthnight,1602 cheques,1,twelfthnight,1602 tyrannous,1,twelfthnight,1602 recreation,1,twelfthnight,1602 swear't,1,twelfthnight,1602 PERSONAE,1,twelfthnight,1602 cars,1,twelfthnight,1602 scathful,1,twelfthnight,1602 deplore,1,twelfthnight,1602 mute,1,twelfthnight,1602 clamorous,1,twelfthnight,1602 spare,1,twelfthnight,1602 baited,1,twelfthnight,1602 rub,1,twelfthnight,1602 subtractors,1,twelfthnight,1602 attempt,1,twelfthnight,1602 Carry,1,twelfthnight,1602 mistook,1,twelfthnight,1602 breach,1,twelfthnight,1602 Poor,1,twelfthnight,1602 beneath,1,twelfthnight,1602 strength,1,twelfthnight,1602 graces,1,twelfthnight,1602 Biddy,1,twelfthnight,1602 inconstant,1,twelfthnight,1602 seven,1,twelfthnight,1602 surfeit,1,twelfthnight,1602 giant,1,twelfthnight,1602 lacks,1,twelfthnight,1602 everything,1,twelfthnight,1602 feather,1,twelfthnight,1602 stock,1,twelfthnight,1602 drive,1,twelfthnight,1602 syllogism,1,twelfthnight,1602 Cataian,1,twelfthnight,1602 thousands,1,twelfthnight,1602 attracts,1,twelfthnight,1602 jets,1,twelfthnight,1602 receiving,1,twelfthnight,1602 relieve,1,twelfthnight,1602 sat,1,twelfthnight,1602 grown,1,twelfthnight,1602 combination,1,twelfthnight,1602 toss,1,twelfthnight,1602 dance,1,twelfthnight,1602 alphabetical,1,twelfthnight,1602 outside,1,twelfthnight,1602 fulsome,1,twelfthnight,1602 stream,1,twelfthnight,1602 Roderigo,1,twelfthnight,1602 inhabit,1,twelfthnight,1602 constantly,1,twelfthnight,1602 demure,1,twelfthnight,1602 purposely,1,twelfthnight,1602 fighter,1,twelfthnight,1602 thou'st,1,twelfthnight,1602 inventoried,1,twelfthnight,1602 bowers,1,twelfthnight,1602 corner,1,twelfthnight,1602 untangle,1,twelfthnight,1602 hoist,1,twelfthnight,1602 unfoldeth,1,twelfthnight,1602 dram,1,twelfthnight,1602 An't,1,twelfthnight,1602 incensed,1,twelfthnight,1602 clearstores,1,twelfthnight,1602 suburbs,1,twelfthnight,1602 broker,1,twelfthnight,1602 interchangement,1,twelfthnight,1602 Phrygia,1,twelfthnight,1602 villanously,1,twelfthnight,1602 Remember,1,twelfthnight,1602 deceiveable,1,twelfthnight,1602 concerns,1,twelfthnight,1602 cockatrices,1,twelfthnight,1602 Know'st,1,twelfthnight,1602 upshot,1,twelfthnight,1602 Only,1,twelfthnight,1602 hearing,1,twelfthnight,1602 voices,1,twelfthnight,1602 fingers,1,twelfthnight,1602 dogged,1,twelfthnight,1602 knaves,1,twelfthnight,1602 gross,1,twelfthnight,1602 pipe,1,twelfthnight,1602 Seal'd,1,twelfthnight,1602 shrewdly,1,twelfthnight,1602 furious,1,twelfthnight,1602 reliques,1,twelfthnight,1602 freedom,1,twelfthnight,1602 calamity,1,twelfthnight,1602 blabs,1,twelfthnight,1602 visit,1,twelfthnight,1602 Cross,1,twelfthnight,1602 gospels,1,twelfthnight,1602 overture,1,twelfthnight,1602 thrones,1,twelfthnight,1602 began,1,twelfthnight,1602 paltry,1,twelfthnight,1602 limits,1,twelfthnight,1602 unclasp'd,1,twelfthnight,1602 confirms,1,twelfthnight,1602 discovers,1,twelfthnight,1602 Confine,1,twelfthnight,1602 stealth,1,twelfthnight,1602 Perchance,1,twelfthnight,1602 deserve,1,twelfthnight,1602 concurs,1,twelfthnight,1602 Wit,1,twelfthnight,1602 seeking,1,twelfthnight,1602 gartering,1,twelfthnight,1602 Egyptians,1,twelfthnight,1602 embassy,1,twelfthnight,1602 sung,1,twelfthnight,1602 compliment,1,twelfthnight,1602 throned,1,twelfthnight,1602 incredulous,1,twelfthnight,1602 spheres,1,twelfthnight,1602 boat,1,twelfthnight,1602 perdy,1,twelfthnight,1602 history,1,twelfthnight,1602 intercepter,1,twelfthnight,1602 concealment,1,twelfthnight,1602 stands,1,twelfthnight,1602 recompensed,1,twelfthnight,1602 haggard,1,twelfthnight,1602 babble,1,twelfthnight,1602 imprison'd,1,twelfthnight,1602 impossible,1,twelfthnight,1602 brisk,1,twelfthnight,1602 'twere,1,twelfthnight,1602 'Wonder,1,twelfthnight,1602 penance,1,twelfthnight,1602 usurp'd,1,twelfthnight,1602 fleet,1,twelfthnight,1602 dispossess,1,twelfthnight,1602 deity,1,twelfthnight,1602 equinoctial,1,twelfthnight,1602 Egyptian,1,twelfthnight,1602 constitution,1,twelfthnight,1602 wall,1,twelfthnight,1602 sex,1,twelfthnight,1602 yeoman,1,twelfthnight,1602 favoured,1,twelfthnight,1602 shrill,1,twelfthnight,1602 Catch,1,twelfthnight,1602 deceived,1,twelfthnight,1602 Do't,1,twelfthnight,1602 roaming,1,twelfthnight,1602 personage,1,twelfthnight,1602 quits,1,twelfthnight,1602 unsure,1,twelfthnight,1602 peevish,1,twelfthnight,1602 disposed,1,twelfthnight,1602 'Pourquoi',1,twelfthnight,1602 nine,1,twelfthnight,1602 peril,1,twelfthnight,1602 altars,1,twelfthnight,1602 branched,1,twelfthnight,1602 twelfth,1,twelfthnight,1602 windy,1,twelfthnight,1602 delivers,1,twelfthnight,1602 Excellently,1,twelfthnight,1602 Such,1,twelfthnight,1602 earlier,1,twelfthnight,1602 murderer,1,twelfthnight,1602 follower,1,twelfthnight,1602 plenty,1,twelfthnight,1602 followed,1,twelfthnight,1602 unprofited,1,twelfthnight,1602 Was,1,twelfthnight,1602 misdemeanors,1,twelfthnight,1602 viol,1,twelfthnight,1602 'M,1,twelfthnight,1602 scout,1,twelfthnight,1602 interlude,1,twelfthnight,1602 kindly,1,twelfthnight,1602 hunter,1,twelfthnight,1602 maidhood,1,twelfthnight,1602 taunt,1,twelfthnight,1602 'Fare,1,twelfthnight,1602 second,1,twelfthnight,1602 deeply,1,twelfthnight,1602 study,1,twelfthnight,1602 deserts,1,twelfthnight,1602 level,1,twelfthnight,1602 groans,1,twelfthnight,1602 unmatchable,1,twelfthnight,1602 parish,1,twelfthnight,1602 sets,1,twelfthnight,1602 incites,1,twelfthnight,1602 mother,1,twelfthnight,1602 stuff,1,twelfthnight,1602 Confirm'd,1,twelfthnight,1602 thin,1,twelfthnight,1602 play'd,1,twelfthnight,1602 becomes,1,twelfthnight,1602 adverse,1,twelfthnight,1602 affect,1,twelfthnight,1602 sends,1,twelfthnight,1602 amiss,1,twelfthnight,1602 Hideth,1,twelfthnight,1602 Fear'st,1,twelfthnight,1602 induced,1,twelfthnight,1602 Merry,1,twelfthnight,1602 Gorboduc,1,twelfthnight,1602 skipping,1,twelfthnight,1602 thieves,1,twelfthnight,1602 minion,1,twelfthnight,1602 mellow,1,twelfthnight,1602 Feste,1,twelfthnight,1602 vile,1,twelfthnight,1602 reap,1,twelfthnight,1602 mocks,1,twelfthnight,1602 eating,1,twelfthnight,1602 turning,1,twelfthnight,1602 points,1,twelfthnight,1602 murmur,1,twelfthnight,1602 severs,1,twelfthnight,1602 monster,1,twelfthnight,1602 perverseness,1,twelfthnight,1602 charm'd,1,twelfthnight,1602 dropped,1,twelfthnight,1602 courtier,1,twelfthnight,1602 wive,1,twelfthnight,1602 ways,1,twelfthnight,1602 common,1,twelfthnight,1602 Ware,1,twelfthnight,1602 bore,1,twelfthnight,1602 consequently,1,twelfthnight,1602 consanguineous,1,twelfthnight,1602 kill'd,1,twelfthnight,1602 'Od's,1,twelfthnight,1602 direct,1,twelfthnight,1602 absence,1,twelfthnight,1602 Mayst,1,twelfthnight,1602 falls,1,twelfthnight,1602 runs,1,twelfthnight,1602 exceeding,1,twelfthnight,1602 actions,1,twelfthnight,1602 bewitched,1,twelfthnight,1602 encounter,1,twelfthnight,1602 commit,1,twelfthnight,1602 eldest,1,twelfthnight,1602 instance,1,twelfthnight,1602 austere,1,twelfthnight,1602 swiftness,1,twelfthnight,1602 flatterer,1,twelfthnight,1602 godliness,1,twelfthnight,1602 bout,1,twelfthnight,1602 worthy,1,twelfthnight,1602 pearl,1,twelfthnight,1602 saw't,1,twelfthnight,1602 coloured,1,twelfthnight,1602 Gentlewoman,1,twelfthnight,1602 mercies,1,twelfthnight,1602 elder,1,twelfthnight,1602 mitigation,1,twelfthnight,1602 sailed,1,twelfthnight,1602 reverence,1,twelfthnight,1602 fearful,1,twelfthnight,1602 feed,1,twelfthnight,1602 accent,1,twelfthnight,1602 feel,1,twelfthnight,1602 negotiate,1,twelfthnight,1602 barricadoes,1,twelfthnight,1602 noblest,1,twelfthnight,1602 plainly,1,twelfthnight,1602 wavering,1,twelfthnight,1602 galleys,1,twelfthnight,1602 relish,1,twelfthnight,1602 masters,1,twelfthnight,1602 blind,1,twelfthnight,1602 Vox,1,twelfthnight,1602 suffering,1,twelfthnight,1602 brine,1,twelfthnight,1602 venerable,1,twelfthnight,1602 conceal,1,twelfthnight,1602 sailor,1,twelfthnight,1602 whisper,1,twelfthnight,1602 intimate,1,twelfthnight,1602 Whereto,1,twelfthnight,1602 weather,1,twelfthnight,1602 affirmatives,1,twelfthnight,1602 speaking,1,twelfthnight,1602 rude,1,twelfthnight,1602 wing,1,twelfthnight,1602 wishes,1,twelfthnight,1602 wink,1,twelfthnight,1602 personated,1,twelfthnight,1602 prized,1,twelfthnight,1602 ceremony,1,twelfthnight,1602 putting,1,twelfthnight,1602 banged,1,twelfthnight,1602 bolts,1,twelfthnight,1602 Fly,1,twelfthnight,1602 conveniently,1,twelfthnight,1602 abjured,1,twelfthnight,1602 Notable,1,twelfthnight,1602 cuckold,1,twelfthnight,1602 nails,1,twelfthnight,1602 wins,1,twelfthnight,1602 distempered,1,twelfthnight,1602 caves,1,twelfthnight,1602 boiled,1,twelfthnight,1602 tender'd,1,twelfthnight,1602 Might,1,twelfthnight,1602 mirth,1,twelfthnight,1602 wardrobe,1,twelfthnight,1602 want,1,twelfthnight,1602 dedication,1,twelfthnight,1602 access,1,twelfthnight,1602 Taste,1,twelfthnight,1602 fruitless,1,twelfthnight,1602 goose,1,twelfthnight,1602 unsafe,1,twelfthnight,1602 Troth,1,twelfthnight,1602 dies,1,twelfthnight,1602 diet,1,twelfthnight,1602 ladyship's,1,twelfthnight,1602 wish,1,twelfthnight,1602 Cousin,1,twelfthnight,1602 witnesses,1,twelfthnight,1602 bold,1,twelfthnight,1602 carest,1,twelfthnight,1602 directly,1,twelfthnight,1602 Contemplation,1,twelfthnight,1602 usest,1,twelfthnight,1602 murder,1,twelfthnight,1602 gamboys,1,twelfthnight,1602 Fetch,1,twelfthnight,1602 beating,1,twelfthnight,1602 bidding,1,twelfthnight,1602 wars,1,twelfthnight,1602 pretty,1,twelfthnight,1602 Vulcan,1,twelfthnight,1602 othergates,1,twelfthnight,1602 tortured,1,twelfthnight,1602 befalls,1,twelfthnight,1602 lunatic,1,twelfthnight,1602 steep,1,twelfthnight,1602 fortified,1,twelfthnight,1602 steel,1,twelfthnight,1602 coats,1,twelfthnight,1602 distrust,1,twelfthnight,1602 ruled,1,twelfthnight,1602 alliance,1,twelfthnight,1602 manhood,1,twelfthnight,1602 upbraids,1,twelfthnight,1602 praised,1,twelfthnight,1602 veiled,1,twelfthnight,1602 tainting,1,twelfthnight,1602 overswear,1,twelfthnight,1602 Softly,1,twelfthnight,1602 aspect,1,twelfthnight,1602 masculine,1,twelfthnight,1602 nephew,1,twelfthnight,1602 senses,1,twelfthnight,1602 wherefore,1,twelfthnight,1602 mistaken,1,twelfthnight,1602 Receiveth,1,twelfthnight,1602 authority,1,twelfthnight,1602 Et,1,twelfthnight,1602 I',1,twelfthnight,1602 stir,1,twelfthnight,1602 solicit,1,twelfthnight,1602 cudgel,1,twelfthnight,1602 'But,1,twelfthnight,1602 peevishly,1,twelfthnight,1602 drown,1,twelfthnight,1602 Unguided,1,twelfthnight,1602 bounteously,1,twelfthnight,1602 Babylon,1,twelfthnight,1602 hap,1,twelfthnight,1602 Drew,1,twelfthnight,1602 While,1,twelfthnight,1602 overthrow,1,twelfthnight,1602 perspective,1,twelfthnight,1602 Pourquoi,1,twelfthnight,1602 Belike,1,twelfthnight,1602 leman,1,twelfthnight,1602 offend,1,twelfthnight,1602 serving,1,twelfthnight,1602 religious,1,twelfthnight,1602 measure,1,twelfthnight,1602 resemble,1,twelfthnight,1602 At,1,twelfthnight,1602 legitimate,1,twelfthnight,1602 'Twere,1,twelfthnight,1602 Possess,1,twelfthnight,1602 simulation,1,twelfthnight,1602 chapter,1,twelfthnight,1602 perfection,1,twelfthnight,1602 vexest,1,twelfthnight,1602 altogether,1,twelfthnight,1602 infection,1,twelfthnight,1602 complainest,1,twelfthnight,1602 tonight,1,twelfthnight,1602 Pigrogromitus,1,twelfthnight,1602 wronged,1,twelfthnight,1602 heresy,1,twelfthnight,1602 box,1,twelfthnight,1602 blows,1,twelfthnight,1602 Him,1,twelfthnight,1602 eternal,1,twelfthnight,1602 suffers,1,twelfthnight,1602 Those,1,twelfthnight,1602 languages,1,twelfthnight,1602 bawcock,1,twelfthnight,1602 among,1,twelfthnight,1602 Peg,1,twelfthnight,1602 La,1,twelfthnight,1602 Having,1,twelfthnight,1602 blent,1,twelfthnight,1602 Agueface,1,twelfthnight,1602 By'r,1,twelfthnight,1602 Lo,1,twelfthnight,1602 does't,1,twelfthnight,1602 bay,1,twelfthnight,1602 scurvy,1,twelfthnight,1602 hushes,1,twelfthnight,1602 Stand,1,twelfthnight,1602 lands,1,twelfthnight,1602 supporter,1,twelfthnight,1602 'Cousin,1,twelfthnight,1602 speakest,1,twelfthnight,1602 gossip,1,twelfthnight,1602 orbed,1,twelfthnight,1602 in's,1,twelfthnight,1602 kept,1,twelfthnight,1602 Albeit,1,twelfthnight,1602 canst,1,twelfthnight,1602 belike,1,twelfthnight,1602 ingrateful,1,twelfthnight,1602 strangest,1,twelfthnight,1602 creature,1,twelfthnight,1602 exceed,1,twelfthnight,1602 star,1,twelfthnight,1602 brings,1,twelfthnight,1602 tales,1,twelfthnight,1602 begun,1,twelfthnight,1602 Oh,1,twelfthnight,1602 shines,1,twelfthnight,1602 mellifluous,1,twelfthnight,1602 hie,1,twelfthnight,1602 Within,1,twelfthnight,1602 conceived,1,twelfthnight,1602 entertainest,1,twelfthnight,1602 motions,1,twelfthnight,1602 tear,1,twelfthnight,1602 Ha,1,twelfthnight,1602 flowers,1,twelfthnight,1602 approve,1,twelfthnight,1602 Refuse,1,twelfthnight,1602 finer,1,twelfthnight,1602 fatal,1,twelfthnight,1602 coystrill,1,twelfthnight,1602 fingers',1,twelfthnight,1602 feigned,1,twelfthnight,1602 convents,1,twelfthnight,1602 notorious,1,twelfthnight,1602 whole,1,twelfthnight,1602 prose,1,twelfthnight,1602 husbands,1,twelfthnight,1602 surely,1,twelfthnight,1602 killest,1,twelfthnight,1602 digest,1,twelfthnight,1602 politician,1,twelfthnight,1602 contracted,1,twelfthnight,1602 arrest,1,twelfthnight,1602 shillings,1,twelfthnight,1602 Let's,1,twelfthnight,1602 Unstaid,1,twelfthnight,1602 Jezebel,1,twelfthnight,1602 Had,1,twelfthnight,1602 pia,1,twelfthnight,1602 past,1,twelfthnight,1602 commendation,1,twelfthnight,1602 Has,1,twelfthnight,1602 pit,1,twelfthnight,1602 step,1,twelfthnight,1602 Troilus,1,twelfthnight,1602 display'd,1,twelfthnight,1602 glorious,1,twelfthnight,1602 yourselves,1,twelfthnight,1602 joinder,1,twelfthnight,1602 thighs,1,twelfthnight,1602 quantity,1,twelfthnight,1602 swarths,1,twelfthnight,1602 corrupter,1,twelfthnight,1602 heads,1,twelfthnight,1602 quiet,1,twelfthnight,1602 fetter,1,twelfthnight,1602 Adieu,1,twelfthnight,1602 courteous,1,twelfthnight,1602 sought,1,twelfthnight,1602 'Please,1,twelfthnight,1602 madmen,1,twelfthnight,1602 overfar,1,twelfthnight,1602 bulk,1,twelfthnight,1602 'we,1,twelfthnight,1602 Tillyvally,1,twelfthnight,1602 weep,1,twelfthnight,1602 sits,1,twelfthnight,1602 hills,1,twelfthnight,1602 thriftless,1,twelfthnight,1602 Receive,1,twelfthnight,1602 absent,1,twelfthnight,1602 zanies,1,twelfthnight,1602 metal,1,twelfthnight,1602 preserved,1,twelfthnight,1602 sooner,1,twelfthnight,1602 Jove's,1,twelfthnight,1602 control,1,twelfthnight,1602 schedules,1,twelfthnight,1602 belief,1,twelfthnight,1602 Present,1,twelfthnight,1602 miscarry,1,twelfthnight,1602 suffer'd,1,twelfthnight,1602 scoundrels,1,twelfthnight,1602 dove,1,twelfthnight,1602 MADLY,1,twelfthnight,1602 perdition,1,twelfthnight,1602 Youth's,1,twelfthnight,1602 Plague,1,twelfthnight,1602 burn,1,twelfthnight,1602 sorts,1,twelfthnight,1602 coffin,1,twelfthnight,1602 crush,1,twelfthnight,1602 cap,1,twelfthnight,1602 cowardship,1,twelfthnight,1602 corpse,1,twelfthnight,1602 struck,1,twelfthnight,1602 ornament,1,twelfthnight,1602 desirous,1,twelfthnight,1602 Unveiling,1,twelfthnight,1602 detraction,1,twelfthnight,1602 dote,1,twelfthnight,1602 learned,1,twelfthnight,1602 weak,1,twelfthnight,1602 celebration,1,twelfthnight,1602 bent,1,twelfthnight,1602 clause,1,twelfthnight,1602 comedian,1,twelfthnight,1602 canopied,1,twelfthnight,1602 craft,1,twelfthnight,1602 constellation,1,twelfthnight,1602 kindnesses,1,twelfthnight,1602 shadow,1,twelfthnight,1602 Titus,1,twelfthnight,1602 idleness,1,twelfthnight,1602 jealous,1,twelfthnight,1602 courtesies,1,twelfthnight,1602 sepulchre,1,twelfthnight,1602 gore,1,twelfthnight,1602 meanest,1,twelfthnight,1602 Dieu,1,twelfthnight,1602 hours',1,twelfthnight,1602 aqua,1,twelfthnight,1602 fee'd,1,twelfthnight,1602 tickled,1,twelfthnight,1602 curst,1,twelfthnight,1602 pacified,1,twelfthnight,1602 probation,1,twelfthnight,1602 persuasion,1,twelfthnight,1602 excites,1,twelfthnight,1602 'Remember,1,twelfthnight,1602 eater,1,twelfthnight,1602 jury,1,twelfthnight,1602 surfeiting,1,twelfthnight,1602 theme,1,twelfthnight,1602 dissembling,1,twelfthnight,1602 Inhabits,1,twelfthnight,1602 bum,1,twelfthnight,1602 bud,1,twelfthnight,1602 despite,1,twelfthnight,1602 unauspicious,1,twelfthnight,1602 beef,1,twelfthnight,1602 Above,1,twelfthnight,1602 used,1,twelfthnight,1602 disguise,1,twelfthnight,1602 vacancy,1,twelfthnight,1602 masques,1,twelfthnight,1602 About,1,twelfthnight,1602 'Odours,1,twelfthnight,1602 mollification,1,twelfthnight,1602 lifelings,1,twelfthnight,1602 poetical,1,twelfthnight,1602 sink,1,twelfthnight,1602 strip,1,twelfthnight,1602 Strengthen'd,1,twelfthnight,1602 jump,1,twelfthnight,1602 'Twas,1,twelfthnight,1602 nonpareil,1,twelfthnight,1602 Whither,1,twelfthnight,1602 quirk,1,twelfthnight,1602 pitch,1,twelfthnight,1602 adheres,1,twelfthnight,1602 turns,1,twelfthnight,1602 'Three,1,twelfthnight,1602 crowner,1,twelfthnight,1602 lately,1,twelfthnight,1602 headstrong,1,twelfthnight,1602 crowned,1,twelfthnight,1602 Both,1,twelfthnight,1602 oxen,1,twelfthnight,1602 organ,1,twelfthnight,1602 quite,1,twelfthnight,1602 Pox,1,twelfthnight,1602 solemn,1,twelfthnight,1602 dogs,1,twelfthnight,1602 store,1,twelfthnight,1602 stooping,1,twelfthnight,1602 Lips,1,twelfthnight,1602 deed,1,twelfthnight,1602 deem,1,twelfthnight,1602 sail,1,twelfthnight,1602 instant,1,twelfthnight,1602 unhospitable,1,twelfthnight,1602 stay'd,1,twelfthnight,1602 affection,1,twelfthnight,1602 'that,1,twelfthnight,1602 mood,1,twelfthnight,1602 wretch,1,twelfthnight,1602 twanged,1,twelfthnight,1602 passy,1,twelfthnight,1602 Nature's,1,twelfthnight,1602 betray,1,twelfthnight,1602 breast,1,twelfthnight,1602 Fortune,1,twelfthnight,1602 cloistress,1,twelfthnight,1602 resolute,1,twelfthnight,1602 snatch'd,1,twelfthnight,1602 consecrated,1,twelfthnight,1602 mole,1,twelfthnight,1602 tyrant,1,twelfthnight,1602 sage,1,twelfthnight,1602 satisfy,1,twelfthnight,1602 Fear,1,twelfthnight,1602 Pare,1,twelfthnight,1602 aid,1,twelfthnight,1602 de,1,twelfthnight,1602 SONG,1,twelfthnight,1602 fencing,1,twelfthnight,1602 consider,1,twelfthnight,1602 battery,1,twelfthnight,1602 sheep,1,twelfthnight,1602 prevented,1,twelfthnight,1602 Advise,1,twelfthnight,1602 stood,1,twelfthnight,1602 debt,1,twelfthnight,1602 Bless,1,twelfthnight,1602 yes,1,twelfthnight,1602 recovered,1,twelfthnight,1602 murderous,1,twelfthnight,1602 Curio,1,twelfthnight,1602 tongues,1,twelfthnight,1602 yew,1,twelfthnight,1602 Eve's,1,twelfthnight,1602 weigh'd,1,twelfthnight,1602 Past,1,twelfthnight,1602 swearing,1,twelfthnight,1602 dwell,1,twelfthnight,1602 driving,1,twelfthnight,1602 dwelt,1,twelfthnight,1602 propriety,1,twelfthnight,1602 gilt,1,twelfthnight,1602 expose,1,twelfthnight,1602 dubbed,1,twelfthnight,1602 radiant,1,twelfthnight,1602 Feed,1,twelfthnight,1602 opal,1,twelfthnight,1602 interim,1,twelfthnight,1602 Besides,1,twelfthnight,1602 played,1,twelfthnight,1602 gaskins,1,twelfthnight,1602 shrewishly,1,twelfthnight,1602 eloquent,1,twelfthnight,1602 thrive,1,twelfthnight,1602 lend,1,twelfthnight,1602 gall,1,twelfthnight,1602 doer,1,twelfthnight,1602 'Thrice,1,twelfthnight,1602 Mall's,1,twelfthnight,1602 lighter,1,twelfthnight,1602 sack,1,twelfthnight,1602 defence,1,twelfthnight,1602 restraint,1,twelfthnight,1602 nicely,1,twelfthnight,1602 cloyment,1,twelfthnight,1602 appeared,1,twelfthnight,1602 houses,1,twelfthnight,1602 cram,1,twelfthnight,1602 gentlewoman,1,twelfthnight,1602 edified,1,twelfthnight,1602 botch'd,1,twelfthnight,1602 ah,1,twelfthnight,1602 newly,1,twelfthnight,1602 fixed,1,twelfthnight,1602 forgotten,1,twelfthnight,1602 rouse,1,twelfthnight,1602 feast,1,twelfthnight,1602 idiot,1,twelfthnight,1602 portend,1,twelfthnight,1602 reins,1,twelfthnight,1602 commend,1,twelfthnight,1602 pursuit,1,twelfthnight,1602 approbation,1,twelfthnight,1602 biter,1,twelfthnight,1602 bodies,1,twelfthnight,1602 small,1,twelfthnight,1602 governs,1,twelfthnight,1602 plant,1,twelfthnight,1602 strain,1,twelfthnight,1602 Relieved,1,twelfthnight,1602 aside,1,twelfthnight,1602 crave,1,twelfthnight,1602 bawbling,1,twelfthnight,1602 Goes,1,twelfthnight,1602 wrangle,1,twelfthnight,1602 whereof,1,twelfthnight,1602 Fortune's,1,twelfthnight,1602 perpend,1,twelfthnight,1602 unfirm,1,twelfthnight,1602 teaching,1,twelfthnight,1602 Live,1,twelfthnight,1602 consonancy,1,twelfthnight,1602 Myself,1,twelfthnight,1602 negatives,1,twelfthnight,1602 comptible,1,twelfthnight,1602 quenching,1,twelfthnight,1602 India,1,twelfthnight,1602 accomplished,1,twelfthnight,1602 adorations,1,twelfthnight,1602 Begin,1,twelfthnight,1602 lover,1,twelfthnight,1602 Countess,1,twelfthnight,1602 begg'd,1,twelfthnight,1602 studied,1,twelfthnight,1602 sharply,1,twelfthnight,1602 stout,1,twelfthnight,1602 challenged,1,twelfthnight,1602 moon,1,twelfthnight,1602 loss,1,twelfthnight,1602 agone,1,twelfthnight,1602 Wouldst,1,twelfthnight,1602 commands,1,twelfthnight,1602 resolved,1,twelfthnight,1602 ample,1,twelfthnight,1602 semblance,1,twelfthnight,1602 dumbness,1,twelfthnight,1602 wherein,1,twelfthnight,1602 talkest,1,twelfthnight,1602 potent,1,twelfthnight,1602 unthought,1,twelfthnight,1602 loved,1,twelfthnight,1602 knot,1,twelfthnight,1602 spend,1,twelfthnight,1602 faithfull'st,1,twelfthnight,1602 squeak,1,twelfthnight,1602 wittily,1,twelfthnight,1602 blue,1,twelfthnight,1602 continent,1,twelfthnight,1602 removed,1,twelfthnight,1602 Grace,1,twelfthnight,1602 lets,1,twelfthnight,1602 bench,1,twelfthnight,1602 nuncio's,1,twelfthnight,1602 It's,1,twelfthnight,1602 mournest,1,twelfthnight,1602 westward,1,twelfthnight,1602 show'd,1,twelfthnight,1602 aussi,1,twelfthnight,1602 forgot,1,twelfthnight,1602 jocund,1,twelfthnight,1602 Calling,1,twelfthnight,1602 pure,1,twelfthnight,1602 bristle,1,twelfthnight,1602 Because,1,twelfthnight,1602 raineth,1,twelfthnight,1602 hot,1,twelfthnight,1602 harm,1,twelfthnight,1602 thrice,1,twelfthnight,1602 detests,1,twelfthnight,1602 Whence,1,twelfthnight,1602 Haply,1,twelfthnight,1602 havoc,1,twelfthnight,1602 plot,1,twelfthnight,1602 lapsed,1,twelfthnight,1602 executed,1,twelfthnight,1602 giddily,1,twelfthnight,1602 easy,1,twelfthnight,1602 straps,1,twelfthnight,1602 accounted,1,twelfthnight,1602 hare,1,twelfthnight,1602 ability,1,twelfthnight,1602 catcher,1,twelfthnight,1602 strangle,1,twelfthnight,1602 front,1,twelfthnight,1602 field,1,twelfthnight,1602 pistol,1,twelfthnight,1602 Smilest,1,twelfthnight,1602 December,1,twelfthnight,1602 reproves,1,twelfthnight,1602 hale,1,twelfthnight,1602 crow,1,twelfthnight,1602 cheveril,1,twelfthnight,1602 Diana's,1,twelfthnight,1602 exasperate,1,twelfthnight,1602 tinkers,1,twelfthnight,1602 verse,1,twelfthnight,1602 fowl,1,twelfthnight,1602 Call,1,twelfthnight,1602 pale,1,twelfthnight,1602 intended,1,twelfthnight,1602 palate,1,twelfthnight,1602 Read,1,twelfthnight,1602 impeticos,1,twelfthnight,1602 Brownist,1,twelfthnight,1602 spur,1,twelfthnight,1602 see't,1,twelfthnight,1602 Courage,1,twelfthnight,1602 'Let,1,twelfthnight,1602 trade,1,twelfthnight,1602 accost,1,twelfthnight,1602 appears,1,twelfthnight,1602 skilless,1,twelfthnight,1602 enchantment,1,twelfthnight,1602 surges,1,twelfthnight,1602 extravagancy,1,twelfthnight,1602 separate,1,twelfthnight,1602 pang,1,twelfthnight,1602 school,1,twelfthnight,1602 Prizes,1,twelfthnight,1602 Indies,1,twelfthnight,1602 secundo,1,twelfthnight,1602 swabber,1,twelfthnight,1602 applies,1,twelfthnight,1602 pluck,1,twelfthnight,1602 dealer,1,twelfthnight,1602 rudely,1,twelfthnight,1602 quarreller,1,twelfthnight,1602 Under,1,twelfthnight,1602 deaths,1,twelfthnight,1602 She's,1,twelfthnight,1602 brothers,1,twelfthnight,1602 prepare,1,twelfthnight,1602 nightly,1,twelfthnight,1602 purged,1,twelfthnight,1602 rack'd,1,twelfthnight,1602 shent,1,twelfthnight,1602 pair,1,twelfthnight,1602 ship,1,twelfthnight,1602 hangs,1,twelfthnight,1602 'Rain,1,twelfthnight,1602 soe'er,1,twelfthnight,1602 trunks,1,twelfthnight,1602 spin,1,twelfthnight,1602 Husband,1,twelfthnight,1602 'Youth,1,twelfthnight,1602 profound,1,twelfthnight,1602 minute's,1,twelfthnight,1602 strive,1,twelfthnight,1602 devise,1,twelfthnight,1602 pack,1,twelfthnight,1602 alive,1,twelfthnight,1602 bespeak,1,twelfthnight,1602 rings,1,twelfthnight,1602 concerning,1,twelfthnight,1602 consideration,1,twelfthnight,1602 fall'n,1,twelfthnight,1602 detested,1,twelfthnight,1602 improbable,1,twelfthnight,1602 rough,1,twelfthnight,1602 duke's,1,twelfthnight,1602 importance,1,twelfthnight,1602 food,1,twelfthnight,1602 bearer,1,twelfthnight,1602 yare,1,twelfthnight,1602 testimony,1,twelfthnight,1602 creatures,1,twelfthnight,1602 excess,1,twelfthnight,1602 overweening,1,twelfthnight,1602 fond,1,twelfthnight,1602 monument,1,twelfthnight,1602 maiden,1,twelfthnight,1602 fancies,1,twelfthnight,1602 rightly,1,twelfthnight,1602 error,1,twelfthnight,1602 fold,1,twelfthnight,1602 ingratitude,1,twelfthnight,1602 conclusions,1,twelfthnight,1602 Hob,1,twelfthnight,1602 testril,1,twelfthnight,1602 trice,1,twelfthnight,1602 chambermaid,1,twelfthnight,1602 jester,1,twelfthnight,1602 She'll,1,twelfthnight,1602 competitors,1,twelfthnight,1602 King,1,twelfthnight,1602 olive,1,twelfthnight,1602 furnish,1,twelfthnight,1602 bought,1,twelfthnight,1602 USED,1,twelfthnight,1602 unprizable,1,twelfthnight,1602 distinction,1,twelfthnight,1602 strangeness,1,twelfthnight,1602 sequel,1,twelfthnight,1602 theirs,1,twelfthnight,1602 Apt,1,twelfthnight,1602 rave,1,twelfthnight,1602 shuffled,1,twelfthnight,1602 Pursue,1,twelfthnight,1602 Sport,1,twelfthnight,1602 ministers,1,twelfthnight,1602 cheque,1,twelfthnight,1602 judgment,1,twelfthnight,1602 Capilet,1,twelfthnight,1602 commerce,1,twelfthnight,1602 visited,1,twelfthnight,1602 Ass,1,twelfthnight,1602 Elysium,1,twelfthnight,1602 recollected,1,twelfthnight,1602 sicken,1,twelfthnight,1602 longing,1,twelfthnight,1602 trial,1,twelfthnight,1602 ridiculous,1,twelfthnight,1602 markets,1,twelfthnight,1602 prevents,1,twelfthnight,1602 enjoy,1,twelfthnight,1602 willingly,1,twelfthnight,1602 Tartar,1,twelfthnight,1602 feign,1,twelfthnight,1602 howling,1,twelfthnight,1602 mads,1,twelfthnight,1602 prays,1,twelfthnight,1602 Castiliano,1,twelfthnight,1602 housekeeper,1,twelfthnight,1602 chantry,1,twelfthnight,1602 jaws,1,twelfthnight,1602 expenses,1,twelfthnight,1602 compact,1,twelfthnight,1602 surgere,1,twelfthnight,1602 Disguise,1,twelfthnight,1602 unchary,1,twelfthnight,1602 fat,1,twelfthnight,1602 yesterday,1,twelfthnight,1602 drawest,1,twelfthnight,1602 frenzy,1,twelfthnight,1602 roof,1,twelfthnight,1602 'Above,1,twelfthnight,1602 often,1,twelfthnight,1602 leap,1,twelfthnight,1602 room,1,twelfthnight,1602 nap,1,twelfthnight,1602 Kill,1,twelfthnight,1602 gratillity,1,twelfthnight,1602 whirligig,1,twelfthnight,1602 Open't,1,twelfthnight,1602 breathes,1,twelfthnight,1602 garments,1,twelfthnight,1602 equal,1,twelfthnight,1602 cohere,1,twelfthnight,1602 unhatched,1,twelfthnight,1602 trappings,1,twelfthnight,1602 Virtue,1,twelfthnight,1602 shameful,1,twelfthnight,1602 inure,1,twelfthnight,1602 tarry,1,twelfthnight,1602 brock,1,twelfthnight,1602 puzzled,1,twelfthnight,1602 rank,1,twelfthnight,1602 Against,1,twelfthnight,1602 empty,1,twelfthnight,1602 'Better,1,twelfthnight,1602 forehead,1,twelfthnight,1602 shouldst,1,twelfthnight,1602 breathed,1,twelfthnight,1602 mischief,1,twelfthnight,1602 guiltless,1,twelfthnight,1602 pedant,1,twelfthnight,1602 rascals,1,twelfthnight,1602 antique,1,twelfthnight,1602 'Cast,1,twelfthnight,1602 build,1,twelfthnight,1602 mountains,1,twelfthnight,1602 Foolery,1,twelfthnight,1602 fiction,1,twelfthnight,1602 protests,1,twelfthnight,1602 squash,1,twelfthnight,1602 motley,1,twelfthnight,1602 pollution,1,twelfthnight,1602 'Gainst,1,twelfthnight,1602 unknown,1,twelfthnight,1602 thinks,1,twelfthnight,1602 Else,1,twelfthnight,1602 Seven,1,twelfthnight,1602 number'd,1,twelfthnight,1602 Back,1,twelfthnight,1602 Madman,1,twelfthnight,1602 fraught,1,twelfthnight,1602 proceed,1,twelfthnight,1602 obscure,1,twelfthnight,1602 mutton,1,twelfthnight,1602 affectioned,1,twelfthnight,1602 county's,1,twelfthnight,1602 Bade,1,twelfthnight,1602 prodigal,1,twelfthnight,1602 acting,1,twelfthnight,1602 skittish,1,twelfthnight,1602 noon,1,twelfthnight,1602 lenten,1,twelfthnight,1602 clog,1,twelfthnight,1602 conceited,1,twelfthnight,1602 tickling,1,twelfthnight,1602 ungird,1,twelfthnight,1602 tended,1,twelfthnight,1602 bottle,1,twelfthnight,1602 disgraced,1,twelfthnight,1602 preach'd,1,twelfthnight,1602 velvet,1,twelfthnight,1602 leasing,1,twelfthnight,1602 churchman,1,twelfthnight,1602 candle,1,twelfthnight,1602 traffic's,1,twelfthnight,1602 pastime,1,twelfthnight,1602 bottom,1,twelfthnight,1602 spokest,1,twelfthnight,1602 admire,1,twelfthnight,1602 slain,1,twelfthnight,1602 chase,1,twelfthnight,1602 Lethe,1,twelfthnight,1602 strike,1,twelfthnight,1602 'Be,1,twelfthnight,1602 visage,1,twelfthnight,1602 alter,1,twelfthnight,1602 affections,1,twelfthnight,1602 Penthesilea,1,twelfthnight,1602 you'ld,1,twelfthnight,1602 begging,1,twelfthnight,1602 extracting,1,twelfthnight,1602 vainness,1,twelfthnight,1602 ignorant,1,twelfthnight,1602 misery,1,twelfthnight,1602 waylay,1,twelfthnight,1602 Approach,1,twelfthnight,1602 Therefore,1,twelfthnight,1602 dares,1,twelfthnight,1602 housewife,1,twelfthnight,1602 places,1,twelfthnight,1602 crammed,1,twelfthnight,1602 madman's,1,twelfthnight,1602 mouse,1,twelfthnight,1602 denay,1,twelfthnight,1602 Doth,1,twelfthnight,1602 wonder'd,1,twelfthnight,1602 besmear'd,1,twelfthnight,1602 utters,1,twelfthnight,1602 chant,1,twelfthnight,1602 firago,1,twelfthnight,1602 Dost,1,twelfthnight,1602 incensement,1,twelfthnight,1602 dirty,1,twelfthnight,1602 transparent,1,twelfthnight,1602 mourn,1,twelfthnight,1602 See,1,twelfthnight,1602 Sea,1,twelfthnight,1602 scab,1,twelfthnight,1602 Toby's,1,twelfthnight,1602 paced,1,twelfthnight,1602 strife,1,twelfthnight,1602 airs,1,twelfthnight,1602 lodge,1,twelfthnight,1602 other's,1,twelfthnight,1602 distaff,1,twelfthnight,1602 leaves,1,twelfthnight,1602 stark,1,twelfthnight,1602 sacrifice,1,twelfthnight,1602 penned,1,twelfthnight,1602 milk,1,twelfthnight,1602 fantastical,1,twelfthnight,1602 arrived,1,twelfthnight,1602 'diluculo,1,twelfthnight,1602 nob,1,twelfthnight,1602 singing,1,twelfthnight,1602 start,1,twelfthnight,1602 satisfaction,1,twelfthnight,1602 approaches,1,twelfthnight,1602 Makes,1,twelfthnight,1602 kisses,1,twelfthnight,1602 halting,1,twelfthnight,1602 range,1,twelfthnight,1602 postscript,1,twelfthnight,1602 another',1,twelfthnight,1602 Queubus,1,twelfthnight,1602 escape,1,twelfthnight,1602 Candy,1,twelfthnight,1602 beauties,1,twelfthnight,1602 mint,1,twelfthnight,1602 minx,1,twelfthnight,1602 expressure,1,twelfthnight,1602 didst,1,twelfthnight,1602 chain,1,twelfthnight,1602 reading,1,twelfthnight,1602 'gainst,1,twelfthnight,1602 midwife,1,twelfthnight,1602 obstacle,1,twelfthnight,1602 Could,1,twelfthnight,1602 Father,1,twelfthnight,1602 mast,1,twelfthnight,1602 partake,1,twelfthnight,1602 acquit,1,twelfthnight,1602 persuades,1,twelfthnight,1602 unsought,1,twelfthnight,1602 mark,1,twelfthnight,1602 deform'd,1,twelfthnight,1602 monsieur,1,twelfthnight,1602 Sot,1,twelfthnight,1602 shrew,1,twelfthnight,1602 injuries,1,twelfthnight,1602 pickle,1,twelfthnight,1602 slave,1,twelfthnight,1602 Marian,1,twelfthnight,1602 devils,1,twelfthnight,1602 veil,1,twelfthnight,1602 believing,1,twelfthnight,1602 flatter,1,twelfthnight,1602 'Go,1,twelfthnight,1602 craves,1,twelfthnight,1602 lubber,1,twelfthnight,1602 bibble,1,twelfthnight,1602 labour,1,twelfthnight,1602 enlarge,1,twelfthnight,1602 address,1,twelfthnight,1602 vinegar,1,twelfthnight,1602 chide,1,twelfthnight,1602 special,1,twelfthnight,1602 turkey,1,twelfthnight,1602 dissembled,1,twelfthnight,1602 benefit,1,twelfthnight,1602 higher,1,twelfthnight,1602 father's,1,twelfthnight,1602 'pregnant',1,twelfthnight,1602 abed,1,twelfthnight,1602 feelingly,1,twelfthnight,1602 borrow'd,1,twelfthnight,1602 smoke,1,twelfthnight,1602 marvel,1,twelfthnight,1602 gin,1,twelfthnight,1602 abandon'd,1,twelfthnight,1602 'She,1,twelfthnight,1602 findest,1,twelfthnight,1602 divorced,1,twelfthnight,1602 ingrate,1,twelfthnight,1602 chuck,1,twelfthnight,1602 grize,1,twelfthnight,1602 horrible,1,twelfthnight,1602 mockery,1,twelfthnight,1602 stake,1,twelfthnight,1602 firm,1,twelfthnight,1602 addicted,1,twelfthnight,1602 living,1,twelfthnight,1602 hermit,1,twelfthnight,1602 horribly,1,twelfthnight,1602 railing,1,twelfthnight,1602 behalf,1,twelfthnight,1602 proves,1,twelfthnight,1602 breed,1,twelfthnight,1602 knavery,1,twelfthnight,1602 Halloo,1,twelfthnight,1602 begged,1,twelfthnight,1602 passage,1,twelfthnight,1602 maids,1,twelfthnight,1602 beagle,1,twelfthnight,1602 renown,1,twelfthnight,1602 wi',1,twelfthnight,1602 Maria's,1,twelfthnight,1602 finder,1,twelfthnight,1602 wainropes,1,twelfthnight,1602 wrongs,1,twelfthnight,1602 gabble,1,twelfthnight,1602 sow'd,1,twelfthnight,1602 example,1,twelfthnight,1602 pound,1,twelfthnight,1602 contemned,1,twelfthnight,1602 'My,1,twelfthnight,1602 today,1,twelfthnight,1602 retire,1,twelfthnight,1602 former,1,twelfthnight,1602 twelvemonth,1,twelfthnight,1602 formed,1,twelfthnight,1602 Run,1,twelfthnight,1602 enters,1,twelfthnight,1602 odour,1,twelfthnight,1602 sorrow,1,twelfthnight,1602 staves's,1,twelfthnight,1602 Taking,1,twelfthnight,1602 curl,1,twelfthnight,1602 roughly,1,twelfthnight,1602 hurling,1,twelfthnight,1602 martial,1,twelfthnight,1602 occurrence,1,twelfthnight,1602 youngest,1,twelfthnight,1602 woes,1,twelfthnight,1602 knife,1,twelfthnight,1602 services,1,twelfthnight,1602 devour'd,1,twelfthnight,1602 sitting,1,twelfthnight,1602 Attested,1,twelfthnight,1602 banish'd,1,twelfthnight,1602 facit,1,twelfthnight,1602 measures,1,twelfthnight,1602 allay,1,twelfthnight,1602 pension,1,twelfthnight,1602 moment,1,twelfthnight,1602 bloodless,1,twelfthnight,1602 sonnet,1,twelfthnight,1602 protect,1,twelfthnight,1602 icicle,1,twelfthnight,1602 recover,1,twelfthnight,1602 bestow'd,1,twelfthnight,1602 decays,1,twelfthnight,1602 walks,1,twelfthnight,1602 kickshawses,1,twelfthnight,1602 dishonesty,1,twelfthnight,1602 frailty,1,twelfthnight,1602 saws,1,twelfthnight,1602 clock,1,twelfthnight,1602 trout,1,twelfthnight,1602 offending,1,twelfthnight,1602 Desire,1,twelfthnight,1602 healths,1,twelfthnight,1602 standing,1,twelfthnight,1602 filed,1,twelfthnight,1602 you're,1,twelfthnight,1602 subtle,1,twelfthnight,1602 continuance,1,twelfthnight,1602 flint,1,twelfthnight,1602 excellencies,1,twelfthnight,1602 idol,1,twelfthnight,1602 maidenhead,1,twelfthnight,1602 cantons,1,twelfthnight,1602 protection,1,twelfthnight,1602 crown'd,1,twelfthnight,1602 revolve,1,twelfthnight,1602 cockney,1,twelfthnight,1602 decreed,1,twelfthnight,1602 maid's,1,twelfthnight,1602 dust,1,twelfthnight,1602 Mercury,1,twelfthnight,1602 'Olivia,1,twelfthnight,1602 Think,1,twelfthnight,1602 sinews,1,twelfthnight,1602 quarrelling,1,twelfthnight,1602 Pistol,1,twelfthnight,1602 wax,1,twelfthnight,1602 cubiculo,1,twelfthnight,1602 stage,1,twelfthnight,1602 stitches,1,twelfthnight,1602 botcher,1,twelfthnight,1602 raven's,1,twelfthnight,1602 tailor,1,twelfthnight,1602 drives,1,twelfthnight,1602 balked,1,twelfthnight,1602 prevail,1,twelfthnight,1602 barbarous,1,twelfthnight,1602 receive,1,twelfthnight,1602 pilchards,1,twelfthnight,1602 'To,1,twelfthnight,1602 fancy's,1,twelfthnight,1602 audience,1,twelfthnight,1602 important,1,twelfthnight,1602 Fates,1,twelfthnight,1602 changeable,1,twelfthnight,1602 enraged,1,twelfthnight,1602 fervor,1,twelfthnight,1602 arts,1,twelfthnight,1602 fencer,1,twelfthnight,1602 blemish,1,twelfthnight,1602 herring,1,twelfthnight,1602 pride,1,twelfthnight,1602 maiden's,1,twelfthnight,1602 woos,1,twelfthnight,1602 dying,1,twelfthnight,1602 nightingales,1,twelfthnight,1602 bullets,1,twelfthnight,1602 ends,1,twelfthnight,1602 admitted,1,twelfthnight,1602 exalted,1,twelfthnight,1602 owl,1,twelfthnight,1602 split,1,twelfthnight,1602 FESTE,1,twelfthnight,1602 next,1,twelfthnight,1602 bells,1,twelfthnight,1602 Three,1,twelfthnight,1602 lullaby,1,twelfthnight,1602 discard,1,twelfthnight,1602 Throws,1,twelfthnight,1602 Monsieur,1,twelfthnight,1602 possess,1,twelfthnight,1602 damask,1,twelfthnight,1602 caught,1,twelfthnight,1602 Quinapalus,1,twelfthnight,1602 unfilled,1,twelfthnight,1602 ginger,1,twelfthnight,1602 news,1,twelfthnight,1602 adored,1,twelfthnight,1602 grossly,1,twelfthnight,1602 errest,1,twelfthnight,1602 grossness,1,twelfthnight,1602 vulgar,1,twelfthnight,1602 familiar,1,twelfthnight,1602 requite,1,twelfthnight,1602 'be,1,twelfthnight,1602 adores,1,twelfthnight,1602 serviteur,1,twelfthnight,1602 prompt,1,twelfthnight,1602 baseness,1,twelfthnight,1602 watery,1,twelfthnight,1602 served,1,twelfthnight,1602 Heaven,1,twelfthnight,1602 faced,1,twelfthnight,1602 validity,1,twelfthnight,1602 provident,1,twelfthnight,1602 charges,1,twelfthnight,1602 distractedly,1,twelfthnight,1602 poison,1,twelfthnight,1602 coffer,1,twelfthnight,1602 stainless,1,twelfthnight,1602 spleen,1,twelfthnight,1602 sways,1,twelfthnight,1602 womb,1,twelfthnight,1602 compass,1,twelfthnight,1602 Legion,1,twelfthnight,1602 lechery,1,twelfthnight,1602 enwraps,1,twelfthnight,1602 rail,1,twelfthnight,1602 supportance,1,twelfthnight,1602 herrings,1,twelfthnight,1602 rudeness,1,twelfthnight,1602 tuck,1,twelfthnight,1602 Misprision,1,twelfthnight,1602 barful,1,twelfthnight,1602 waters,1,twelfthnight,1602 wolf,1,twelfthnight,1602 grain,1,twelfthnight,1602 belie,1,twelfthnight,1602 harvest,1,twelfthnight,1602 serves,1,twelfthnight,1602 skills,1,twelfthnight,1602 wooer,1,twelfthnight,1602 marble,1,twelfthnight,1602 plumes,1,twelfthnight,1602 beguiled,1,twelfthnight,1602 disorders,1,twelfthnight,1602 whence,1,twelfthnight,1602 followers,1,twelfthnight,1602 dormouse,1,twelfthnight,1602 anatomy,1,twelfthnight,1602 heathen,1,twelfthnight,1602 glad,1,twelfthnight,1602 assail,1,twelfthnight,1602 evil,1,twelfthnight,1602 position,1,twelfthnight,1602 Sneck,1,twelfthnight,1602 Many,1,twelfthnight,1602 particle,1,twelfthnight,1602 practising,1,twelfthnight,1602 judge,1,twelfthnight,1602 doublet,1,twelfthnight,1602 giving,1,twelfthnight,1602 sportful,1,twelfthnight,1602 miracle,1,twelfthnight,1602 swearings,1,twelfthnight,1602 Vice,1,twelfthnight,1602 prattle,1,twelfthnight,1602 orb,1,twelfthnight,1602 fog,1,twelfthnight,1602 amends,1,twelfthnight,1602 distract,1,twelfthnight,1602 phrases,1,twelfthnight,1602 clearly,1,twelfthnight,1602 constancy,1,twelfthnight,1602 catechise,1,twelfthnight,1602 wert,1,twelfthnight,1602 estimable,1,twelfthnight,1602 lasting,1,twelfthnight,1602 darkly,1,twelfthnight,1602 cruell'st,1,twelfthnight,1602 methinks,1,twelfthnight,1602 silly,1,twelfthnight,1602 Yond,1,twelfthnight,1602 grand,1,twelfthnight,1602 returns,1,twelfthnight,1602 divulged,1,twelfthnight,1602 worm,1,twelfthnight,1602 votre,1,twelfthnight,1602 wickedness,1,twelfthnight,1602 threw,1,twelfthnight,1602 cuff,1,twelfthnight,1602 passing,1,twelfthnight,1602 duello,1,twelfthnight,1602 west,1,twelfthnight,1602 semblative,1,twelfthnight,1602 dancing,1,twelfthnight,1602 fie,1,twelfthnight,1602 pepper,1,twelfthnight,1602 unjust,1,twelfthnight,1602 endeavour,1,twelfthnight,1602 minute,1,twelfthnight,1602 Mark,1,twelfthnight,1602 scabbard,1,twelfthnight,1602 fine,1,twelfthnight,1602 vow,1,twelfthnight,1602 profit,1,twelfthnight,1602 Vapians,1,twelfthnight,1602 moderate,1,twelfthnight,1602 pleaser,1,twelfthnight,1602 Attend,1,twelfthnight,1602 spinsters,1,twelfthnight,1602 Boy,1,twelfthnight,1602 clad,1,twelfthnight,1602 cherry,1,twelfthnight,1602 savage,1,twelfthnight,1602 continue,1,twelfthnight,1602 contemplative,1,twelfthnight,1602 screws,1,twelfthnight,1602 handmaid,1,twelfthnight,1602 assume,1,twelfthnight,1602 any's,1,twelfthnight,1602 'that',1,twelfthnight,1602 Ramsey,1,twelfthnight,1602 coziers',1,twelfthnight,1602 pants,1,twelfthnight,1602 renegado,1,twelfthnight,1602 reprove,1,twelfthnight,1602 Plight,1,twelfthnight,1602 Lead,1,twelfthnight,1602 Taught,1,twelfthnight,1602 distemper,1,twelfthnight,1602 thereby,1,twelfthnight,1602 opened,1,twelfthnight,1602 thunder,1,twelfthnight,1602 'havior,1,twelfthnight,1602 exult,1,twelfthnight,1602 shown,1,twelfthnight,1602 wide,1,twelfthnight,1602 pocket,1,twelfthnight,1602 divers,1,twelfthnight,1602 lines,1,twelfthnight,1602 uncle,1,twelfthnight,1602 an't,1,twelfthnight,1602 vex,1,twelfthnight,1602 mater,1,twelfthnight,1602 prospect,1,twelfthnight,1602 betters,1,twelfthnight,1602 partly,1,twelfthnight,1602 Myrmidons,1,twelfthnight,1602 lived,1,twelfthnight,1602 whither,1,twelfthnight,1602 Stealing,1,twelfthnight,1602 UNHAPPY,1,twelfthnight,1602 increasing,1,twelfthnight,1602 base,1,twelfthnight,1602 strikes,1,twelfthnight,1602 Bolts,1,twelfthnight,1602 thanked,1,twelfthnight,1602 competent,1,twelfthnight,1602 regardance,1,twelfthnight,1602 strown,1,twelfthnight,1602 dialogue,1,twelfthnight,1602 deliver'd,1,twelfthnight,1602 fate,1,twelfthnight,1602 cock,1,twelfthnight,1602 bank,1,twelfthnight,1602 deliver't,1,twelfthnight,1602 dad,1,twelfthnight,1602 breasted,1,twelfthnight,1602 vitae,1,twelfthnight,1602 bounds,1,twelfthnight,1602 names,1,twelfthnight,1602 fast,1,twelfthnight,1602 named,1,twelfthnight,1602 boldly,1,twelfthnight,1602 fare,1,twelfthnight,1602 flock,1,twelfthnight,1602 Welcome,1,twelfthnight,1602 lights,1,twelfthnight,1602 Invites,1,twelfthnight,1602 talk,1,twelfthnight,1602 witchcraft,1,twelfthnight,1602 Fate,1,twelfthnight,1602 Prosper,1,twelfthnight,1602 bind,1,twelfthnight,1602 Prague,1,twelfthnight,1602 cup,1,twelfthnight,1602 otherwise,1,twelfthnight,1602 cub,1,twelfthnight,1602 convey,1,twelfthnight,1602 stroke,1,twelfthnight,1602 excepted,1,twelfthnight,1602 consists,1,twelfthnight,1602 carry,1,twelfthnight,1602 wild,1,twelfthnight,1602 reproof,1,twelfthnight,1602 Rather,1,twelfthnight,1602 Notorious,1,twelfthnight,1602 Every,1,twelfthnight,1602 creep,1,twelfthnight,1602 ought,1,twelfthnight,1602 holds,1,twelfthnight,1602 shore,1,twelfthnight,1602 pardon,1,twelfthnight,1602 accident,1,twelfthnight,1602 swears,1,twelfthnight,1602 bigger,1,twelfthnight,1602 bethought,1,twelfthnight,1602 hyperbolical,1,twelfthnight,1602 England,1,twelfthnight,1602 augmentation,1,twelfthnight,1602 Lay,1,twelfthnight,1602 fertile,1,twelfthnight,1602 baffle,1,twelfthnight,1602 green,1,twelfthnight,1602 unsuitable,1,twelfthnight,1602 greet,1,twelfthnight,1602 devout,1,twelfthnight,1602 hollow,1,twelfthnight,1602 cur,1,twelfthnight,1602 method,1,twelfthnight,1602 counterfeit,1,twelfthnight,1602 honest,1,twelfthnight,1602 loyal,1,twelfthnight,1602 abatement,1,twelfthnight,1602 revolt,1,twelfthnight,1602 asking,1,twelfthnight,1602 sinner,1,twelfthnight,1602 consist,1,twelfthnight,1602 condemn,1,twelfthnight,1602 flood,1,twelfthnight,1602 lives,1,twelfthnight,1602 tiny,1,twelfthnight,1602 writing,1,twelfthnight,1602 Bennet,1,twelfthnight,1602 virtues,1,twelfthnight,1602 lustrous,1,twelfthnight,1602 Arion,1,twelfthnight,1602 thou'ldst,1,twelfthnight,1602 blazon,1,twelfthnight,1602 notwithstanding,1,twelfthnight,1602 peascod,1,twelfthnight,1602 meditate,1,twelfthnight,1602 cleft,1,twelfthnight,1602 also,1,twelfthnight,1602 inevitable,1,twelfthnight,1602 have't,1,twelfthnight,1602 evident,1,twelfthnight,1602 seat,1,twelfthnight,1602 beset,1,twelfthnight,1602 o'erflourish'd,1,twelfthnight,1602 hunt,1,twelfthnight,1602 along,1,twelfthnight,1602 fourteen,1,twelfthnight,1602 offerings,1,twelfthnight,1602 copy,1,twelfthnight,1602 politicians,1,twelfthnight,1602 lying,1,twelfthnight,1602 attendance,1,twelfthnight,1602 Anne,1,twelfthnight,1602 always,1,twelfthnight,1602 Ungracious,1,twelfthnight,1602 bachelor,1,twelfthnight,1602 adieu,1,twelfthnight,1602 aloof,1,twelfthnight,1602 dolphin's,1,twelfthnight,1602 contagion,1,twelfthnight,1602 Primo,1,twelfthnight,1602 fadge,1,twelfthnight,1602 Pandarus,1,twelfthnight,1602 serviceable,1,twelfthnight,1602 Surprise,1,twelfthnight,1602 publish,1,twelfthnight,1602 thereto,1,twelfthnight,1602 cons,1,twelfthnight,1602 Seek,1,twelfthnight,1602 whipstock,1,twelfthnight,1602 plaintiff,1,twelfthnight,1602 aught,1,twelfthnight,1602 weaver,1,twelfthnight,1602 supplied,1,twelfthnight,1602 talking,1,twelfthnight,1602 presence,1,twelfthnight,1602 Gentleman,1,twelfthnight,1602 con,1,twelfthnight,1602 hounds,1,twelfthnight,1602 Lie,1,twelfthnight,1602 ended,1,twelfthnight,1602 coz,1,twelfthnight,1602 look'd,1,twelfthnight,1602 undertaker,1,twelfthnight,1602 camest,1,twelfthnight,1602 covetousness,1,twelfthnight,1602 sees,1,twelfthnight,1602 feigning,1,twelfthnight,1602 vessel,1,twelfthnight,1602 condition,1,twelfthnight,1602 prudent,1,twelfthnight,1602 liking,1,twelfthnight,1602 cost,1,twelfthnight,1602 shapes,1,twelfthnight,1602 fellows,1,twelfthnight,1602 Believe,1,twelfthnight,1602 True,1,twelfthnight,1602 staniel,1,twelfthnight,1602 hull,1,twelfthnight,1602 Dick,1,twelfthnight,1602 rascally,1,twelfthnight,1602 taffeta,1,twelfthnight,1602 usage,1,twelfthnight,1602 person,1,twelfthnight,1602 tertio,1,twelfthnight,1602 labelled,1,twelfthnight,1602 avoid,1,twelfthnight,1602 tree,1,twelfthnight,1602 Reveals,1,twelfthnight,1602 nights,1,twelfthnight,1602 therein,1,twelfthnight,1602 unsound,1,twelfthnight,1602 lovest,1,twelfthnight,1602 garde,1,twelfthnight,1602 jolly,1,twelfthnight,1602 glove,1,twelfthnight,1602 dislike,1,twelfthnight,1602 'There,1,twelfthnight,1602 recommended,1,twelfthnight,1602 gods,1,twelfthnight,1602 Trip,1,twelfthnight,1602 exceptions,1,twelfthnight,1602 Sowter,1,twelfthnight,1602 excellence,1,twelfthnight,1602 Close,1,twelfthnight,1602 Cry,1,twelfthnight,1602 Smiling,1,twelfthnight,1602 vulgo,1,twelfthnight,1602 Just,1,twelfthnight,1602 believes,1,twelfthnight,1602 aloud,1,twelfthnight,1602 Meantime,1,twelfthnight,1602 blank,1,twelfthnight,1602 whilst,1,twelfthnight,1602 'One,1,twelfthnight,1602 prison,1,twelfthnight,1602 pots,1,twelfthnight,1602 vouchsafed,1,twelfthnight,1602 mother's,1,twelfthnight,1602 Tiger,1,twelfthnight,1602 adds,1,twelfthnight,1602 grieves,1,twelfthnight,1602 'Farewell,1,twelfthnight,1602 skull,1,twelfthnight,1602 cold,1,twelfthnight,1602 Roman,1,twelfthnight,1602 genius,1,twelfthnight,1602 carriage,1,twelfthnight,1602 stable,1,twelfthnight,1602 formal,1,twelfthnight,1602 season,1,twelfthnight,1602 countryman,1,twelfthnight,1602 match,1,twelfthnight,1602 grizzle,1,twelfthnight,1602 Remain,1,twelfthnight,1602 laudable,1,twelfthnight,1602 champaign,1,twelfthnight,1602 affair,1,twelfthnight,1602 participate,1,twelfthnight,1602 nayword,1,twelfthnight,1602 Belzebub,1,twelfthnight,1602 Noah,1,twelfthnight,1602 metaphor,1,twelfthnight,1602 started,1,twelfthnight,1602 Rough,1,twelfthnight,1602 untie,1,twelfthnight,1602 Two,1,twelfthnight,1602 Fire,1,twelfthnight,1602 Tempests,1,twelfthnight,1602 thread,1,twelfthnight,1602 brow,1,twelfthnight,1602 slow,1,twelfthnight,1602 licence,1,twelfthnight,1602 'His,1,twelfthnight,1602 sheriff's,1,twelfthnight,1602 fustian,1,twelfthnight,1602 upbraid,1,twelfthnight,1602 quieter,1,twelfthnight,1602 Placed,1,twelfthnight,1602 Punish,1,twelfthnight,1602 three',1,twelfthnight,1602 honesty,1,twelfthnight,1602 map,1,twelfthnight,1602 spirits,1,twelfthnight,1602 limbs,1,twelfthnight,1602 starts,1,twelfthnight,1602 Dexterously,1,twelfthnight,1602 allied,1,twelfthnight,1602 betroth'd,1,twelfthnight,1602 dulcet,1,twelfthnight,1602 construe,1,twelfthnight,1602 Strachy,1,twelfthnight,1602 careful,1,twelfthnight,1602 Blame,1,twelfthnight,1602 quaffing,1,twelfthnight,1602 comfortable,1,twelfthnight,1602 conduct,1,twelfthnight,1602 gust,1,twelfthnight,1602 shackles,1,twelfthnight,1602 brabble,1,twelfthnight,1602 'Hey,1,twelfthnight,1602 caterwauling,1,twelfthnight,1602 doing,1,twelfthnight,1602 taxation,1,twelfthnight,1602 collier,1,twelfthnight,1602 Rudesby,1,twelfthnight,1602 met,1,twelfthnight,1602 Sooth,1,twelfthnight,1602 trip,1,twelfthnight,1602 travell'd,1,twelfthnight,1602 coranto,1,twelfthnight,1602 ounce,1,twelfthnight,1602 hardy,1,twelfthnight,1602 baily,1,twelfthnight,1602 According,1,twelfthnight,1602 Does,1,twelfthnight,1602 endue,1,twelfthnight,1602 meeting,1,twelfthnight,1602 crumbs,1,twelfthnight,1602 evils,1,twelfthnight,1602 Clock,1,twelfthnight,1602 abuse,1,twelfthnight,1602 determinate,1,twelfthnight,1602 ladies,1,twelfthnight,1602 gems,1,twelfthnight,1602 flea,1,twelfthnight,1602 bethink,1,twelfthnight,1602 ebony,1,twelfthnight,1602 eleven,1,twelfthnight,1602 quarrels,1,twelfthnight,1602 across,1,twelfthnight,1602 question's,1,twelfthnight,1602 henceforth,1,twelfthnight,1602 lion,1,twelfthnight,1602 'Madam,1,twelfthnight,1602 physic,1,twelfthnight,1602 homage,1,twelfthnight,1602 marriage,1,twelfthnight,1602 telling,1,twelfthnight,1602 dismiss,1,twelfthnight,1602 E'er,1,twelfthnight,1602 jesting,1,twelfthnight,1602 terror,1,twelfthnight,1602 carpet,1,twelfthnight,1602 lethargy,1,twelfthnight,1602 politic,1,twelfthnight,1602 phrase,1,twelfthnight,1602 revenges,1,twelfthnight,1602 niggardly,1,twelfthnight,1602 flax,1,twelfthnight,1602 fleshed,1,twelfthnight,1602 talents,1,twelfthnight,1602 Maintain,1,twelfthnight,1602 Greek,1,twelfthnight,1602 lath,1,twelfthnight,1602 limed,1,twelfthnight,1602 knight's,1,twelfthnight,1602 gravity,1,twelfthnight,1602 sleeping,1,twelfthnight,1602 shroud,1,twelfthnight,1602 maugre,1,twelfthnight,1602 manifests,1,twelfthnight,1602 countess,1,twelfthnight,1602 extent,1,twelfthnight,1602 sailors,1,twelfthnight,1602 extend,1,twelfthnight,1602 jade,1,twelfthnight,1602 list,1,twelfthnight,1602 whet,1,twelfthnight,1602 revenged,1,twelfthnight,1602 opportunity,1,twelfthnight,1602 suited,1,twelfthnight,1602 resembled,1,twelfthnight,1602 foreknowledge,1,twelfthnight,1602 bias,1,twelfthnight,1602 going,1,twelfthnight,1602 follow'd,1,twelfthnight,1602 windows,1,twelfthnight,1602 content,1,twelfthnight,1602 passages,1,twelfthnight,1602 simply,1,twelfthnight,1602 corruption,1,twelfthnight,1602 simple,1,twelfthnight,1602 sentence,1,twelfthnight,1602 uncurrent,1,twelfthnight,1602 spring,1,twelfthnight,1602 entrance,1,twelfthnight,1602 numbers,1,twelfthnight,1602 Priests,1,twelfthnight,1602 earned,1,twelfthnight,1602 denying,1,twelfthnight,1602 presage,1,twelfthnight,1602 payment,1,twelfthnight,1602 Conceal,1,twelfthnight,1602 shaft,1,twelfthnight,1602 brag,1,twelfthnight,1602 confirm,1,twelfthnight,1602 asleep,1,twelfthnight,1602 presupposed,1,twelfthnight,1602 somewhere,1,twelfthnight,1602 Whoe'er,1,twelfthnight,1602 transgresses,1,twelfthnight,1602 student,1,twelfthnight,1602 Gracious,1,twelfthnight,1602 honour's,1,twelfthnight,1602 Hung,1,twelfthnight,1602 however,1,twelfthnight,1602 Lest,1,twelfthnight,1602 frame,1,twelfthnight,1602 utensil,1,twelfthnight,1602 due,1,twelfthnight,1602 toe,1,twelfthnight,1602 dispatch,1,twelfthnight,1602 top,1,twelfthnight,1602 couplet,1,twelfthnight,1602 lamb,1,twelfthnight,1602 liest,1,twelfthnight,1602 reverend,1,twelfthnight,1602 sea's,1,twelfthnight,1602 DRAMATIS,1,twelfthnight,1602 slew,1,twelfthnight,1602 sinister,1,twelfthnight,1602 venom,1,twelfthnight,1602 rescue,1,twelfthnight,1602 behold,1,twelfthnight,1602 'vouchsafed,1,twelfthnight,1602 prerogative,1,twelfthnight,1602 tripping,1,twelfthnight,1602 grapple,1,twelfthnight,1602 sweeting,1,twelfthnight,1602 Bonos,1,twelfthnight,1602 clodpole,1,twelfthnight,1602 record,1,twelfthnight,1602 fence,1,twelfthnight,1602 cakes,1,twelfthnight,1602 tired,1,twelfthnight,1602 malignancy,1,twelfthnight,1602 reserve,1,twelfthnight,1602 incardinate,1,twelfthnight,1602 frail,1,twelfthnight,1602 smell,1,twelfthnight,1602 cabin,1,twelfthnight,1602 Daylight,1,twelfthnight,1602 disputes,1,twelfthnight,1602 'That,1,twelfthnight,1602 drown'd,1,twelfthnight,1602 Fair,1,twelfthnight,1602 boots,1,twelfthnight,1602 arbitrement,1,twelfthnight,1602 rubious,1,twelfthnight,1602 slip,1,twelfthnight,1602 tainted,1,twelfthnight,1602 Saying,1,twelfthnight,1602 mutual,1,twelfthnight,1602 soundly,1,twelfthnight,1602 amen,1,twelfthnight,1602 traytrip,1,twelfthnight,1602 buttery,1,twelfthnight,1602 remorse,1,twelfthnight,1602 justly,1,twelfthnight,1602 charity,1,twelfthnight,1602 cannon,1,twelfthnight,1602 manikin,1,twelfthnight,1602 given't,1,twelfthnight,1602 cooling,1,twelfthnight,1602 forbear,1,twelfthnight,1602 breathe,1,twelfthnight,1602 oaths,1,twelfthnight,1602 Kept,1,twelfthnight,1602 Lechery,1,twelfthnight,1602 triplex,1,twelfthnight,1602 doctrine,1,twelfthnight,1602 propertied,1,twelfthnight,1602 dallies,1,twelfthnight,1602 prompted,1,twelfthnight,1602 wouldst,1,twelfthnight,1602 order,1,twelfthnight,1602 dissemble,1,twelfthnight,1602 geck,1,twelfthnight,1602 durance,1,twelfthnight,1602 turn'd,1,twelfthnight,1602 panyn,1,twelfthnight,1602 sharp,1,twelfthnight,1602 Tut,1,twelfthnight,1602 summer,1,twelfthnight,1602 daughters,1,twelfthnight,1602 indignation,2,twelfthnight,1602 event,2,twelfthnight,1602 advanced,2,twelfthnight,1602 'is',2,twelfthnight,1602 grandam,2,twelfthnight,1602 brawl,2,twelfthnight,1602 quality,2,twelfthnight,1602 times,2,twelfthnight,1602 grey,2,twelfthnight,1602 Taurus,2,twelfthnight,1602 invisible,2,twelfthnight,1602 red,2,twelfthnight,1602 days,2,twelfthnight,1602 drop,2,twelfthnight,1602 country,2,twelfthnight,1602 forswear,2,twelfthnight,1602 possible,2,twelfthnight,1602 dagger,2,twelfthnight,1602 haste,2,twelfthnight,1602 bones,2,twelfthnight,1602 element,2,twelfthnight,1602 offended,2,twelfthnight,1602 rascal,2,twelfthnight,1602 Wilt,2,twelfthnight,1602 villain,2,twelfthnight,1602 cypress,2,twelfthnight,1602 jot,2,twelfthnight,1602 construction,2,twelfthnight,1602 Never,2,twelfthnight,1602 laughter,2,twelfthnight,1602 Beshrew,2,twelfthnight,1602 hanged,2,twelfthnight,1602 thirteen,2,twelfthnight,1602 throat,2,twelfthnight,1602 years',2,twelfthnight,1602 singularity,2,twelfthnight,1602 admirable,2,twelfthnight,1602 yonder,2,twelfthnight,1602 innocence,2,twelfthnight,1602 iron,2,twelfthnight,1602 Whom,2,twelfthnight,1602 case,2,twelfthnight,1602 early,2,twelfthnight,1602 Once,2,twelfthnight,1602 Sailors,2,twelfthnight,1602 extort,2,twelfthnight,1602 chin,2,twelfthnight,1602 soon,2,twelfthnight,1602 charge,2,twelfthnight,1602 birth,2,twelfthnight,1602 amazed,2,twelfthnight,1602 conscience,2,twelfthnight,1602 After,2,twelfthnight,1602 'What,2,twelfthnight,1602 bearing,2,twelfthnight,1602 betake,2,twelfthnight,1602 grows,2,twelfthnight,1602 gracious,2,twelfthnight,1602 boldness,2,twelfthnight,1602 injury,2,twelfthnight,1602 Much,2,twelfthnight,1602 heat,2,twelfthnight,1602 habits,2,twelfthnight,1602 function,2,twelfthnight,1602 possessed,2,twelfthnight,1602 revels,2,twelfthnight,1602 cheek,2,twelfthnight,1602 policy,2,twelfthnight,1602 hanging,2,twelfthnight,1602 officers,2,twelfthnight,1602 glass,2,twelfthnight,1602 kin,2,twelfthnight,1602 Messaline,2,twelfthnight,1602 view,2,twelfthnight,1602 hereafter,2,twelfthnight,1602 Duke,2,twelfthnight,1602 whatsoever,2,twelfthnight,1602 sit,2,twelfthnight,1602 returned,2,twelfthnight,1602 vice,2,twelfthnight,1602 Write,2,twelfthnight,1602 she'll,2,twelfthnight,1602 dimension,2,twelfthnight,1602 scorn,2,twelfthnight,1602 fell,2,twelfthnight,1602 yield,2,twelfthnight,1602 love's,2,twelfthnight,1602 sot,2,twelfthnight,1602 skill,2,twelfthnight,1602 'O,2,twelfthnight,1602 attends,2,twelfthnight,1602 beloved,2,twelfthnight,1602 looks,2,twelfthnight,1602 Music,2,twelfthnight,1602 faults,2,twelfthnight,1602 doubt,2,twelfthnight,1602 dally,2,twelfthnight,1602 indifferent,2,twelfthnight,1602 stuck,2,twelfthnight,1602 ourselves,2,twelfthnight,1602 These,2,twelfthnight,1602 redeem,2,twelfthnight,1602 piece,2,twelfthnight,1602 Our,2,twelfthnight,1602 give't,2,twelfthnight,1602 daughter,2,twelfthnight,1602 excellently,2,twelfthnight,1602 habit,2,twelfthnight,1602 civil,2,twelfthnight,1602 dearly,2,twelfthnight,1602 Pardon,2,twelfthnight,1602 Wherein,2,twelfthnight,1602 draught,2,twelfthnight,1602 OLIVIA'S,2,twelfthnight,1602 feet,2,twelfthnight,1602 desirest,2,twelfthnight,1602 saucy,2,twelfthnight,1602 malice,2,twelfthnight,1602 upon't,2,twelfthnight,1602 choose,2,twelfthnight,1602 wine,2,twelfthnight,1602 others,2,twelfthnight,1602 soldier,2,twelfthnight,1602 flesh,2,twelfthnight,1602 wished,2,twelfthnight,1602 usurp,2,twelfthnight,1602 hence,2,twelfthnight,1602 Musicians,2,twelfthnight,1602 seest,2,twelfthnight,1602 thrown,2,twelfthnight,1602 bond,2,twelfthnight,1602 breeding,2,twelfthnight,1602 rule,2,twelfthnight,1602 wash,2,twelfthnight,1602 wast,2,twelfthnight,1602 canary,2,twelfthnight,1602 spoke,2,twelfthnight,1602 infirmity,2,twelfthnight,1602 distraction,2,twelfthnight,1602 hungry,2,twelfthnight,1602 each,2,twelfthnight,1602 big,2,twelfthnight,1602 knowledge,2,twelfthnight,1602 chamber,2,twelfthnight,1602 unkind,2,twelfthnight,1602 discreet,2,twelfthnight,1602 commended,2,twelfthnight,1602 Ah,2,twelfthnight,1602 Am,2,twelfthnight,1602 stubborn,2,twelfthnight,1602 'accost',2,twelfthnight,1602 bow,2,twelfthnight,1602 loath,2,twelfthnight,1602 Whiles,2,twelfthnight,1602 shortly,2,twelfthnight,1602 hopes,2,twelfthnight,1602 pays,2,twelfthnight,1602 bar,2,twelfthnight,1602 Singing,2,twelfthnight,1602 gentleness,2,twelfthnight,1602 beautiful,2,twelfthnight,1602 denied,2,twelfthnight,1602 force,2,twelfthnight,1602 hid,2,twelfthnight,1602 finds,2,twelfthnight,1602 hit,2,twelfthnight,1602 Lucrece,2,twelfthnight,1602 bless,2,twelfthnight,1602 quick,2,twelfthnight,1602 denial,2,twelfthnight,1602 ears,2,twelfthnight,1602 devotion,2,twelfthnight,1602 nobly,2,twelfthnight,1602 god,2,twelfthnight,1602 gold,2,twelfthnight,1602 dressed,2,twelfthnight,1602 Thou'rt,2,twelfthnight,1602 gave,2,twelfthnight,1602 sorry,2,twelfthnight,1602 grief,2,twelfthnight,1602 mankind,2,twelfthnight,1602 drunkenness,2,twelfthnight,1602 bestowed,2,twelfthnight,1602 babbling,2,twelfthnight,1602 moreover,2,twelfthnight,1602 sustain,2,twelfthnight,1602 Speak,2,twelfthnight,1602 welkin,2,twelfthnight,1602 Saint,2,twelfthnight,1602 Put,2,twelfthnight,1602 farewell,2,twelfthnight,1602 'Shall,2,twelfthnight,1602 vows,2,twelfthnight,1602 Cressida,2,twelfthnight,1602 Enough,2,twelfthnight,1602 beds,2,twelfthnight,1602 savours,2,twelfthnight,1602 vous,2,twelfthnight,1602 north,2,twelfthnight,1602 begin,2,twelfthnight,1602 'Hold,2,twelfthnight,1602 sanctity,2,twelfthnight,1602 forgive,2,twelfthnight,1602 promised,2,twelfthnight,1602 Methought,2,twelfthnight,1602 gift,2,twelfthnight,1602 sixpence,2,twelfthnight,1602 Here's,2,twelfthnight,1602 sheet,2,twelfthnight,1602 wreck,2,twelfthnight,1602 Unless,2,twelfthnight,1602 plays,2,twelfthnight,1602 deal,2,twelfthnight,1602 dead,2,twelfthnight,1602 priest,2,twelfthnight,1602 ale,2,twelfthnight,1602 caper,2,twelfthnight,1602 amend,2,twelfthnight,1602 door,2,twelfthnight,1602 wonderful,2,twelfthnight,1602 board,2,twelfthnight,1602 attending,2,twelfthnight,1602 month,2,twelfthnight,1602 delay,2,twelfthnight,1602 wisely,2,twelfthnight,1602 necessity,2,twelfthnight,1602 thankful,2,twelfthnight,1602 idle,2,twelfthnight,1602 'Some,2,twelfthnight,1602 earth,2,twelfthnight,1602 scholar,2,twelfthnight,1602 age,2,twelfthnight,1602 loud,2,twelfthnight,1602 stoup,2,twelfthnight,1602 endure,2,twelfthnight,1602 add,2,twelfthnight,1602 lest,2,twelfthnight,1602 lose,2,twelfthnight,1602 twenty,2,twelfthnight,1602 beauteous,2,twelfthnight,1602 knew,2,twelfthnight,1602 swaggering,2,twelfthnight,1602 grace,2,twelfthnight,1602 reasons,2,twelfthnight,1602 hart,2,twelfthnight,1602 discourse,2,twelfthnight,1602 catches,2,twelfthnight,1602 outward,2,twelfthnight,1602 Pythagoras,2,twelfthnight,1602 round,2,twelfthnight,1602 Christian,2,twelfthnight,1602 shallow,2,twelfthnight,1602 husband's,2,twelfthnight,1602 weeds,2,twelfthnight,1602 brimstone,2,twelfthnight,1602 shut,2,twelfthnight,1602 thinkest,2,twelfthnight,1602 plain,2,twelfthnight,1602 foul,2,twelfthnight,1602 forty,2,twelfthnight,1602 excuse,2,twelfthnight,1602 stranger,2,twelfthnight,1602 paid,2,twelfthnight,1602 mended,2,twelfthnight,1602 frown,2,twelfthnight,1602 pace,2,twelfthnight,1602 curate,2,twelfthnight,1602 except,2,twelfthnight,1602 revenge,2,twelfthnight,1602 forms,2,twelfthnight,1602 mayst,2,twelfthnight,1602 Robin,2,twelfthnight,1602 secret,2,twelfthnight,1602 Hast,2,twelfthnight,1602 chance,2,twelfthnight,1602 thanks,2,twelfthnight,1602 deadly,2,twelfthnight,1602 touch,2,twelfthnight,1602 Satan,2,twelfthnight,1602 broke,2,twelfthnight,1602 new,2,twelfthnight,1602 here's,2,twelfthnight,1602 Into,2,twelfthnight,1602 Between,2,twelfthnight,1602 watch,2,twelfthnight,1602 lean,2,twelfthnight,1602 keeps,2,twelfthnight,1602 surgeon,2,twelfthnight,1602 'Slight,2,twelfthnight,1602 envy,2,twelfthnight,1602 action,2,twelfthnight,1602 apple,2,twelfthnight,1602 restore,2,twelfthnight,1602 entertainment,2,twelfthnight,1602 bears,2,twelfthnight,1602 tender,2,twelfthnight,1602 hide,2,twelfthnight,1602 year,2,twelfthnight,1602 feature,2,twelfthnight,1602 pregnant,2,twelfthnight,1602 Soft,2,twelfthnight,1602 admit,2,twelfthnight,1602 you'll,2,twelfthnight,1602 THE,2,twelfthnight,1602 U's,2,twelfthnight,1602 Set,2,twelfthnight,1602 C's,2,twelfthnight,1602 freely,2,twelfthnight,1602 ere,2,twelfthnight,1602 leaving,2,twelfthnight,1602 attire,2,twelfthnight,1602 high,2,twelfthnight,1602 Some,2,twelfthnight,1602 doors,2,twelfthnight,1602 towards,2,twelfthnight,1602 'If,2,twelfthnight,1602 non,2,twelfthnight,1602 conclusion,2,twelfthnight,1602 mightst,2,twelfthnight,1602 dowry,2,twelfthnight,1602 presently,2,twelfthnight,1602 'And,2,twelfthnight,1602 persuaded,2,twelfthnight,1602 Any,2,twelfthnight,1602 because,2,twelfthnight,1602 blow,2,twelfthnight,1602 gates,2,twelfthnight,1602 need,2,twelfthnight,1602 abhors,2,twelfthnight,1602 ordinary,2,twelfthnight,1602 number,2,twelfthnight,1602 Being,2,twelfthnight,1602 letters,2,twelfthnight,1602 trouble,2,twelfthnight,1602 division,2,twelfthnight,1602 sayest,2,twelfthnight,1602 desires,2,twelfthnight,1602 wrath,2,twelfthnight,1602 constrained,2,twelfthnight,1602 ones,2,twelfthnight,1602 altered,2,twelfthnight,1602 woodcock,2,twelfthnight,1602 close,2,twelfthnight,1602 affairs,2,twelfthnight,1602 AGUECHEEK,2,twelfthnight,1602 'No,2,twelfthnight,1602 neck,2,twelfthnight,1602 purchase,2,twelfthnight,1602 message,2,twelfthnight,1602 We'll,2,twelfthnight,1602 court,2,twelfthnight,1602 only,2,twelfthnight,1602 Sad,2,twelfthnight,1602 fetch,2,twelfthnight,1602 ducats,2,twelfthnight,1602 Dear,2,twelfthnight,1602 Say,2,twelfthnight,1602 Sure,2,twelfthnight,1602 ripe,2,twelfthnight,1602 negligence,2,twelfthnight,1602 called,2,twelfthnight,1602 Aguecheek,2,twelfthnight,1602 war,2,twelfthnight,1602 retention,2,twelfthnight,1602 intent,2,twelfthnight,1602 found,2,twelfthnight,1602 rage,2,twelfthnight,1602 wanton,2,twelfthnight,1602 T's,2,twelfthnight,1602 price,2,twelfthnight,1602 women's,2,twelfthnight,1602 pence,2,twelfthnight,1602 mettle,2,twelfthnight,1602 fun,2,twelfthnight,1602 anger,2,twelfthnight,1602 haply,2,twelfthnight,1602 waste,2,twelfthnight,1602 fox,2,twelfthnight,1602 authors,2,twelfthnight,1602 fill'd,2,twelfthnight,1602 gifts,2,twelfthnight,1602 compare,2,twelfthnight,1602 minister,2,twelfthnight,1602 perfections,2,twelfthnight,1602 character,2,twelfthnight,1602 yond,2,twelfthnight,1602 modesty,2,twelfthnight,1602 Till,2,twelfthnight,1602 grant,2,twelfthnight,1602 fame,2,twelfthnight,1602 notoriously,2,twelfthnight,1602 pleased,2,twelfthnight,1602 worn,2,twelfthnight,1602 colours,2,twelfthnight,1602 fly,2,twelfthnight,1602 roses,2,twelfthnight,1602 do't,2,twelfthnight,1602 skilful,2,twelfthnight,1602 flame,2,twelfthnight,1602 ne'er,2,twelfthnight,1602 lordship,2,twelfthnight,1602 contagious,2,twelfthnight,1602 meddle,2,twelfthnight,1602 ta'en,2,twelfthnight,1602 unfold,2,twelfthnight,1602 smooth,2,twelfthnight,1602 queen,2,twelfthnight,1602 depart,2,twelfthnight,1602 patient,2,twelfthnight,1602 meaning,2,twelfthnight,1602 odours,2,twelfthnight,1602 bird,2,twelfthnight,1602 kiss,2,twelfthnight,1602 tang,2,twelfthnight,1602 Very,2,twelfthnight,1602 surly,2,twelfthnight,1602 tall,2,twelfthnight,1602 lay,2,twelfthnight,1602 jests,2,twelfthnight,1602 rapier,2,twelfthnight,1602 Vent,2,twelfthnight,1602 None,2,twelfthnight,1602 giddy,2,twelfthnight,1602 request,2,twelfthnight,1602 argument,2,twelfthnight,1602 streets,2,twelfthnight,1602 Where's,2,twelfthnight,1602 Wherefore,2,twelfthnight,1602 seal,2,twelfthnight,1602 prayers,2,twelfthnight,1602 hearts,2,twelfthnight,1602 commission,2,twelfthnight,1602 elements,2,twelfthnight,1602 Sophy,2,twelfthnight,1602 suits,2,twelfthnight,1602 south,2,twelfthnight,1602 defend,2,twelfthnight,1602 courtesy,2,twelfthnight,1602 Mine,2,twelfthnight,1602 sound,2,twelfthnight,1602 pirate,2,twelfthnight,1602 thrust,2,twelfthnight,1602 cry,2,twelfthnight,1602 heels,2,twelfthnight,1602 curtain,2,twelfthnight,1602 Send,2,twelfthnight,1602 lovers,2,twelfthnight,1602 self,2,twelfthnight,1602 fairly,2,twelfthnight,1602 post,2,twelfthnight,1602 allowed,2,twelfthnight,1602 undo,2,twelfthnight,1602 slough,2,twelfthnight,1602 highest,2,twelfthnight,1602 protest,2,twelfthnight,1602 epistles,2,twelfthnight,1602 methought,2,twelfthnight,1602 bestow,2,twelfthnight,1602 lip,2,twelfthnight,1602 sleep,2,twelfthnight,1602 eat,2,twelfthnight,1602 spite,2,twelfthnight,1602 Signior,2,twelfthnight,1602 begins,2,twelfthnight,1602 straight,2,twelfthnight,1602 dealing,2,twelfthnight,1602 sovereign,2,twelfthnight,1602 employment,2,twelfthnight,1602 street,2,twelfthnight,1602 fashion,2,twelfthnight,1602 beguile,2,twelfthnight,1602 eunuch,2,twelfthnight,1602 credit,2,twelfthnight,1602 grounds,2,twelfthnight,1602 pranks,2,twelfthnight,1602 betimes,2,twelfthnight,1602 fright,2,twelfthnight,1602 baiting,2,twelfthnight,1602 divinity,2,twelfthnight,1602 gagged,2,twelfthnight,1602 You'll,2,twelfthnight,1602 respect,2,twelfthnight,1602 attend,2,twelfthnight,1602 confine,2,twelfthnight,1602 dare,2,twelfthnight,1602 Belch,2,twelfthnight,1602 lord's,2,twelfthnight,1602 toy,2,twelfthnight,1602 shine,2,twelfthnight,1602 Too,2,twelfthnight,1602 tempt,2,twelfthnight,1602 obedient,2,twelfthnight,1602 king,2,twelfthnight,1602 jealousy,2,twelfthnight,1602 take't,2,twelfthnight,1602 princess,2,twelfthnight,1602 crown,2,twelfthnight,1602 share,2,twelfthnight,1602 women,2,twelfthnight,1602 servant's,2,twelfthnight,1602 regard,3,twelfthnight,1602 ignorance,3,twelfthnight,1602 V,3,twelfthnight,1602 guard,3,twelfthnight,1602 fancy,3,twelfthnight,1602 double,3,twelfthnight,1602 writ,3,twelfthnight,1602 Fie,3,twelfthnight,1602 Olivia's,3,twelfthnight,1602 patched,3,twelfthnight,1602 tears,3,twelfthnight,1602 looked,3,twelfthnight,1602 laugh,3,twelfthnight,1602 calls,3,twelfthnight,1602 truth,3,twelfthnight,1602 Upon,3,twelfthnight,1602 pursue,3,twelfthnight,1602 mercy,3,twelfthnight,1602 plague,3,twelfthnight,1602 delivered,3,twelfthnight,1602 jest,3,twelfthnight,1602 circumstance,3,twelfthnight,1602 toward,3,twelfthnight,1602 golden,3,twelfthnight,1602 complexion,3,twelfthnight,1602 soft,3,twelfthnight,1602 Methinks,3,twelfthnight,1602 she's,3,twelfthnight,1602 sin,3,twelfthnight,1602 invention,3,twelfthnight,1602 saying,3,twelfthnight,1602 virtuous,3,twelfthnight,1602 embrace,3,twelfthnight,1602 son,3,twelfthnight,1602 'I,3,twelfthnight,1602 counsel,3,twelfthnight,1602 it's,3,twelfthnight,1602 fight,3,twelfthnight,1602 brain,3,twelfthnight,1602 turn,3,twelfthnight,1602 fault,3,twelfthnight,1602 terms,3,twelfthnight,1602 white,3,twelfthnight,1602 humble,3,twelfthnight,1602 brief,3,twelfthnight,1602 Accost,3,twelfthnight,1602 wind,3,twelfthnight,1602 youth's,3,twelfthnight,1602 seems,3,twelfthnight,1602 One,3,twelfthnight,1602 turned,3,twelfthnight,1602 sooth,3,twelfthnight,1602 coast,3,twelfthnight,1602 office,3,twelfthnight,1602 mistake,3,twelfthnight,1602 observe,3,twelfthnight,1602 book,3,twelfthnight,1602 parts,3,twelfthnight,1602 Faith,3,twelfthnight,1602 Elephant,3,twelfthnight,1602 His,3,twelfthnight,1602 patience,3,twelfthnight,1602 desperate,3,twelfthnight,1602 bad,3,twelfthnight,1602 pen,3,twelfthnight,1602 On,3,twelfthnight,1602 Her,3,twelfthnight,1602 wisdom,3,twelfthnight,1602 proud,3,twelfthnight,1602 obey,3,twelfthnight,1602 valiant,3,twelfthnight,1602 Prithee,3,twelfthnight,1602 kindness,3,twelfthnight,1602 orchard,3,twelfthnight,1602 wear,3,twelfthnight,1602 Save,3,twelfthnight,1602 jewel,3,twelfthnight,1602 travel,3,twelfthnight,1602 uses,3,twelfthnight,1602 confess,3,twelfthnight,1602 beat,3,twelfthnight,1602 stone,3,twelfthnight,1602 gait,3,twelfthnight,1602 husband,3,twelfthnight,1602 ay,3,twelfthnight,1602 cruelty,3,twelfthnight,1602 approach,3,twelfthnight,1602 item,3,twelfthnight,1602 puritan,3,twelfthnight,1602 hadst,3,twelfthnight,1602 Yes,3,twelfthnight,1602 defy,3,twelfthnight,1602 act,3,twelfthnight,1602 ready,3,twelfthnight,1602 hardly,3,twelfthnight,1602 brought,3,twelfthnight,1602 messenger,3,twelfthnight,1602 welcome,3,twelfthnight,1602 text,3,twelfthnight,1602 natural,3,twelfthnight,1602 drawn,3,twelfthnight,1602 city,3,twelfthnight,1602 midnight,3,twelfthnight,1602 form,3,twelfthnight,1602 delight,3,twelfthnight,1602 point,3,twelfthnight,1602 foot,3,twelfthnight,1602 proper,3,twelfthnight,1602 trick,3,twelfthnight,1602 enemies,3,twelfthnight,1602 behavior,3,twelfthnight,1602 lead,3,twelfthnight,1602 silence,3,twelfthnight,1602 Lords,3,twelfthnight,1602 rare,3,twelfthnight,1602 wonder,3,twelfthnight,1602 gently,3,twelfthnight,1602 Peace,3,twelfthnight,1602 sirrah,3,twelfthnight,1602 'By,3,twelfthnight,1602 From,3,twelfthnight,1602 arguments,3,twelfthnight,1602 mortal,3,twelfthnight,1602 vent,3,twelfthnight,1602 All,3,twelfthnight,1602 knows,3,twelfthnight,1602 known,3,twelfthnight,1602 obstruction,3,twelfthnight,1602 achieve,3,twelfthnight,1602 brains,3,twelfthnight,1602 thief,3,twelfthnight,1602 over,3,twelfthnight,1602 Were,3,twelfthnight,1602 taste,3,twelfthnight,1602 ORSINO's,3,twelfthnight,1602 salt,3,twelfthnight,1602 sides,3,twelfthnight,1602 five,3,twelfthnight,1602 persons,3,twelfthnight,1602 save,3,twelfthnight,1602 Can,3,twelfthnight,1602 duty,3,twelfthnight,1602 oath,3,twelfthnight,1602 themselves,3,twelfthnight,1602 assure,3,twelfthnight,1602 brother's,3,twelfthnight,1602 galliard,3,twelfthnight,1602 bounty,3,twelfthnight,1602 hair,3,twelfthnight,1602 duke,3,twelfthnight,1602 taken,3,twelfthnight,1602 owe,3,twelfthnight,1602 disposition,3,twelfthnight,1602 hideous,3,twelfthnight,1602 Make,3,twelfthnight,1602 ground,3,twelfthnight,1602 humour,3,twelfthnight,1602 palace,3,twelfthnight,1602 ride,3,twelfthnight,1602 allow,3,twelfthnight,1602 Sweet,3,twelfthnight,1602 fit,3,twelfthnight,1602 rich,3,twelfthnight,1602 safety,3,twelfthnight,1602 shows,3,twelfthnight,1602 herself,3,twelfthnight,1602 practise,3,twelfthnight,1602 perceive,3,twelfthnight,1602 waves,3,twelfthnight,1602 comfort,3,twelfthnight,1602 lad,3,twelfthnight,1602 law,3,twelfthnight,1602 constant,3,twelfthnight,1602 gentlemen,3,twelfthnight,1602 holy,3,twelfthnight,1602 clear,3,twelfthnight,1602 cut,3,twelfthnight,1602 follows,3,twelfthnight,1602 pangs,3,twelfthnight,1602 unto,3,twelfthnight,1602 favours,3,twelfthnight,1602 wife,3,twelfthnight,1602 low,3,twelfthnight,1602 drunk,3,twelfthnight,1602 seek,3,twelfthnight,1602 Truly,3,twelfthnight,1602 adore,3,twelfthnight,1602 modest,3,twelfthnight,1602 'twill,3,twelfthnight,1602 hours,3,twelfthnight,1602 entreat,3,twelfthnight,1602 parentage,3,twelfthnight,1602 capacity,3,twelfthnight,1602 barren,3,twelfthnight,1602 imagination,3,twelfthnight,1602 taint,3,twelfthnight,1602 least,3,twelfthnight,1602 smiling,3,twelfthnight,1602 Before,3,twelfthnight,1602 Away,3,twelfthnight,1602 virtue,3,twelfthnight,1602 May,3,twelfthnight,1602 appetite,3,twelfthnight,1602 assurance,3,twelfthnight,1602 witty,3,twelfthnight,1602 He's,3,twelfthnight,1602 bred,3,twelfthnight,1602 months,3,twelfthnight,1602 shake,3,twelfthnight,1602 pass'd,3,twelfthnight,1602 private,3,twelfthnight,1602 awake,3,twelfthnight,1602 shape,3,twelfthnight,1602 bide,3,twelfthnight,1602 undertake,3,twelfthnight,1602 e'er,3,twelfthnight,1602 o'er,4,twelfthnight,1602 pity,4,twelfthnight,1602 motion,4,twelfthnight,1602 woman's,4,twelfthnight,1602 mend,4,twelfthnight,1602 sighs,4,twelfthnight,1602 sight,4,twelfthnight,1602 appear,4,twelfthnight,1602 trust,4,twelfthnight,1602 scruple,4,twelfthnight,1602 cast,4,twelfthnight,1602 drew,4,twelfthnight,1602 black,4,twelfthnight,1602 merry,4,twelfthnight,1602 Aside,4,twelfthnight,1602 abused,4,twelfthnight,1602 deliver,4,twelfthnight,1602 sworn,4,twelfthnight,1602 Servant,4,twelfthnight,1602 Out,4,twelfthnight,1602 afraid,4,twelfthnight,1602 Officers,4,twelfthnight,1602 willing,4,twelfthnight,1602 sun,4,twelfthnight,1602 above,4,twelfthnight,1602 promise,4,twelfthnight,1602 false,4,twelfthnight,1602 know'st,4,twelfthnight,1602 Though,4,twelfthnight,1602 anon,4,twelfthnight,1602 died,4,twelfthnight,1602 sense,4,twelfthnight,1602 colour,4,twelfthnight,1602 sick,4,twelfthnight,1602 side,4,twelfthnight,1602 morning,4,twelfthnight,1602 manners,4,twelfthnight,1602 melancholy,4,twelfthnight,1602 steward,4,twelfthnight,1602 drinking,4,twelfthnight,1602 foes,4,twelfthnight,1602 scarce,4,twelfthnight,1602 neither,4,twelfthnight,1602 Still,4,twelfthnight,1602 itself,4,twelfthnight,1602 cruel,4,twelfthnight,1602 to't,4,twelfthnight,1602 Is't,4,twelfthnight,1602 gown,4,twelfthnight,1602 picture,4,twelfthnight,1602 breath,4,twelfthnight,1602 image,4,twelfthnight,1602 voyage,4,twelfthnight,1602 left,4,twelfthnight,1602 needs,4,twelfthnight,1602 ago,4,twelfthnight,1602 hands,4,twelfthnight,1602 wench,4,twelfthnight,1602 move,4,twelfthnight,1602 Second,4,twelfthnight,1602 lost,4,twelfthnight,1602 ill,4,twelfthnight,1602 speaks,4,twelfthnight,1602 call'd,4,twelfthnight,1602 acquaintance,4,twelfthnight,1602 ask,4,twelfthnight,1602 exquisite,4,twelfthnight,1602 hate,4,twelfthnight,1602 fiend,4,twelfthnight,1602 Art,4,twelfthnight,1602 notable,4,twelfthnight,1602 far,4,twelfthnight,1602 maid,4,twelfthnight,1602 report,4,twelfthnight,1602 nose,4,twelfthnight,1602 almost,4,twelfthnight,1602 'Thou,4,twelfthnight,1602 remedy,4,twelfthnight,1602 estate,4,twelfthnight,1602 Love,4,twelfthnight,1602 mouth,4,twelfthnight,1602 Look,4,twelfthnight,1602 stars,4,twelfthnight,1602 already,4,twelfthnight,1602 beggar,4,twelfthnight,1602 I'ld,4,twelfthnight,1602 let's,4,twelfthnight,1602 woo,4,twelfthnight,1602 fire,4,twelfthnight,1602 get,4,twelfthnight,1602 sake,4,twelfthnight,1602 throw,4,twelfthnight,1602 break,4,twelfthnight,1602 says,4,twelfthnight,1602 third,4,twelfthnight,1602 beseech,4,twelfthnight,1602 coxcomb,4,twelfthnight,1602 Priest,4,twelfthnight,1602 danger,4,twelfthnight,1602 serve,4,twelfthnight,1602 coming,4,twelfthnight,1602 happy,4,twelfthnight,1602 marry,4,twelfthnight,1602 what's,4,twelfthnight,1602 went,4,twelfthnight,1602 Even,4,twelfthnight,1602 Malvolio's,4,twelfthnight,1602 That's,4,twelfthnight,1602 tune,4,twelfthnight,1602 Mary,4,twelfthnight,1602 'em,4,twelfthnight,1602 married,4,twelfthnight,1602 answer'd,4,twelfthnight,1602 tabour,4,twelfthnight,1602 count's,4,twelfthnight,1602 gives,4,twelfthnight,1602 we'll,4,twelfthnight,1602 back,4,twelfthnight,1602 seem,4,twelfthnight,1602 drunken,4,twelfthnight,1602 Maria,4,twelfthnight,1602 return,4,twelfthnight,1602 alas,4,twelfthnight,1602 together,4,twelfthnight,1602 bade,4,twelfthnight,1602 goes,4,twelfthnight,1602 purpose,4,twelfthnight,1602 Nothing,4,twelfthnight,1602 servants,4,twelfthnight,1602 Since,4,twelfthnight,1602 Parson,4,twelfthnight,1602 lips,4,twelfthnight,1602 sometimes,4,twelfthnight,1602 recompense,4,twelfthnight,1602 besides,4,twelfthnight,1602 laid,4,twelfthnight,1602 dog,4,twelfthnight,1602 follow,4,twelfthnight,1602 perchance,4,twelfthnight,1602 certain,4,twelfthnight,1602 flower,4,twelfthnight,1602 uncivil,4,twelfthnight,1602 shame,4,twelfthnight,1602 command,4,twelfthnight,1602 kill,4,twelfthnight,1602 remembrance,4,twelfthnight,1602 lack,4,twelfthnight,1602 perhaps,4,twelfthnight,1602 die,4,twelfthnight,1602 sway,4,twelfthnight,1602 horse,5,twelfthnight,1602 hell,5,twelfthnight,1602 Tell,5,twelfthnight,1602 understand,5,twelfthnight,1602 under,5,twelfthnight,1602 saved,5,twelfthnight,1602 head,5,twelfthnight,1602 paper,5,twelfthnight,1602 further,5,twelfthnight,1602 Get,5,twelfthnight,1602 bound,5,twelfthnight,1602 light,5,twelfthnight,1602 'twas,5,twelfthnight,1602 Farewell,5,twelfthnight,1602 cause,5,twelfthnight,1602 offence,5,twelfthnight,1602 wrong,5,twelfthnight,1602 heavens,5,twelfthnight,1602 There,5,twelfthnight,1602 grow,5,twelfthnight,1602 heaven,5,twelfthnight,1602 rest,5,twelfthnight,1602 cunning,5,twelfthnight,1602 mean,5,twelfthnight,1602 pay,5,twelfthnight,1602 quarrel,5,twelfthnight,1602 hey,5,twelfthnight,1602 ladyship,5,twelfthnight,1602 proof,5,twelfthnight,1602 unless,5,twelfthnight,1602 means,5,twelfthnight,1602 sport,5,twelfthnight,1602 pass,5,twelfthnight,1602 behind,5,twelfthnight,1602 gone,5,twelfthnight,1602 madman,5,twelfthnight,1602 Viola,5,twelfthnight,1602 gate,5,twelfthnight,1602 air,5,twelfthnight,1602 cousin,5,twelfthnight,1602 less,5,twelfthnight,1602 hard,5,twelfthnight,1602 deny,5,twelfthnight,1602 four,5,twelfthnight,1602 forth,5,twelfthnight,1602 open,5,twelfthnight,1602 apt,5,twelfthnight,1602 dishonest,5,twelfthnight,1602 having,5,twelfthnight,1602 fooling,5,twelfthnight,1602 beard,5,twelfthnight,1602 garden,5,twelfthnight,1602 Lord,5,twelfthnight,1602 dream,5,twelfthnight,1602 same,5,twelfthnight,1602 grave,5,twelfthnight,1602 drowned,5,twelfthnight,1602 takes,5,twelfthnight,1602 opposite,5,twelfthnight,1602 contempt,5,twelfthnight,1602 work,5,twelfthnight,1602 company,5,twelfthnight,1602 Excellent,5,twelfthnight,1602 Fare,5,twelfthnight,1602 wilt,5,twelfthnight,1602 thank,5,twelfthnight,1602 liver,5,twelfthnight,1602 use,5,twelfthnight,1602 seen,5,twelfthnight,1602 souls,5,twelfthnight,1602 leg,5,twelfthnight,1602 Mistress,5,twelfthnight,1602 ear,5,twelfthnight,1602 write,5,twelfthnight,1602 makes,5,twelfthnight,1602 thoughts,5,twelfthnight,1602 last,5,twelfthnight,1602 gull,5,twelfthnight,1602 Sings,5,twelfthnight,1602 beauty,5,twelfthnight,1602 strange,5,twelfthnight,1602 spirit,5,twelfthnight,1602 enemy,5,twelfthnight,1602 M,6,twelfthnight,1602 speech,6,twelfthnight,1602 darkness,6,twelfthnight,1602 Would,6,twelfthnight,1602 purse,6,twelfthnight,1602 town,6,twelfthnight,1602 madness,6,twelfthnight,1602 came,6,twelfthnight,1602 Nor,6,twelfthnight,1602 warrant,6,twelfthnight,1602 suit,6,twelfthnight,1602 within,6,twelfthnight,1602 Attendants,6,twelfthnight,1602 worse,6,twelfthnight,1602 service,6,twelfthnight,1602 voice,6,twelfthnight,1602 There's,6,twelfthnight,1602 Hold,6,twelfthnight,1602 music,6,twelfthnight,1602 in't,6,twelfthnight,1602 pleasure,6,twelfthnight,1602 IV,6,twelfthnight,1602 bid,6,twelfthnight,1602 We,6,twelfthnight,1602 Like,6,twelfthnight,1602 sing,6,twelfthnight,1602 ha,6,twelfthnight,1602 manner,6,twelfthnight,1602 Master,6,twelfthnight,1602 loves,6,twelfthnight,1602 ink,6,twelfthnight,1602 half,6,twelfthnight,1602 More,6,twelfthnight,1602 praise,6,twelfthnight,1602 present,6,twelfthnight,1602 bosom,6,twelfthnight,1602 fresh,6,twelfthnight,1602 ye,6,twelfthnight,1602 Have,6,twelfthnight,1602 occasion,6,twelfthnight,1602 note,6,twelfthnight,1602 water,6,twelfthnight,1602 gentle,6,twelfthnight,1602 things,6,twelfthnight,1602 quickly,6,twelfthnight,1602 question,6,twelfthnight,1602 device,6,twelfthnight,1602 many,6,twelfthnight,1602 coward,6,twelfthnight,1602 free,6,twelfthnight,1602 opinion,6,twelfthnight,1602 near,6,twelfthnight,1602 ring,6,twelfthnight,1602 between,6,twelfthnight,1602 'Tis,6,twelfthnight,1602 Shall,6,twelfthnight,1602 rain,6,twelfthnight,1602 fall,6,twelfthnight,1602 kinsman,6,twelfthnight,1602 man's,6,twelfthnight,1602 thousand,6,twelfthnight,1602 given,6,twelfthnight,1602 home,6,twelfthnight,1602 Fool,6,twelfthnight,1602 strong,6,twelfthnight,1602 swear,6,twelfthnight,1602 captain,6,twelfthnight,1602 either,6,twelfthnight,1602 whom,6,twelfthnight,1602 Pray,6,twelfthnight,1602 send,6,twelfthnight,1602 lie,6,twelfthnight,1602 VALENTINE,6,twelfthnight,1602 remember,6,twelfthnight,1602 on't,6,twelfthnight,1602 Thy,6,twelfthnight,1602 Did,6,twelfthnight,1602 dark,6,twelfthnight,1602 catch,6,twelfthnight,1602 dry,6,twelfthnight,1602 Take,6,twelfthnight,1602 he'll,6,twelfthnight,1602 shalt,6,twelfthnight,1602 the,518,twelfthnight,1602 c,7,twelfthnight,1602 for't,7,twelfthnight,1602 mistress,7,twelfthnight,1602 help,7,twelfthnight,1602 thought,7,twelfthnight,1602 while,7,twelfthnight,1602 lies,7,twelfthnight,1602 become,7,twelfthnight,1602 sad,7,twelfthnight,1602 sure,7,twelfthnight,1602 full,7,twelfthnight,1602 fools,7,twelfthnight,1602 something,7,twelfthnight,1602 against,7,twelfthnight,1602 walk,7,twelfthnight,1602 worth,7,twelfthnight,1602 church,7,twelfthnight,1602 born,7,twelfthnight,1602 stay,7,twelfthnight,1602 Fabian,7,twelfthnight,1602 Which,7,twelfthnight,1602 challenge,7,twelfthnight,1602 whose,7,twelfthnight,1602 Or,7,twelfthnight,1602 people,7,twelfthnight,1602 degree,7,twelfthnight,1602 longer,7,twelfthnight,1602 Orsino,7,twelfthnight,1602 look,7,twelfthnight,1602 legs,7,twelfthnight,1602 long,7,twelfthnight,1602 lady's,7,twelfthnight,1602 those,7,twelfthnight,1602 hang,7,twelfthnight,1602 Lady,7,twelfthnight,1602 First,7,twelfthnight,1602 show,7,twelfthnight,1602 rogue,7,twelfthnight,1602 Are,7,twelfthnight,1602 right,7,twelfthnight,1602 Hath,7,twelfthnight,1602 Your,7,twelfthnight,1602 yours,7,twelfthnight,1602 foolish,7,twelfthnight,1602 They,7,twelfthnight,1602 Count,7,twelfthnight,1602 Then,7,twelfthnight,1602 once,7,twelfthnight,1602 thine,7,twelfthnight,1602 stand,7,twelfthnight,1602 count,7,twelfthnight,1602 fortune,7,twelfthnight,1602 folly,7,twelfthnight,1602 is't,7,twelfthnight,1602 troth,7,twelfthnight,1602 sent,7,twelfthnight,1602 master's,7,twelfthnight,1602 late,7,twelfthnight,1602 gartered,7,twelfthnight,1602 told,8,twelfthnight,1602 took,8,twelfthnight,1602 Orsino's,8,twelfthnight,1602 friends,8,twelfthnight,1602 care,8,twelfthnight,1602 yourself,8,twelfthnight,1602 years,8,twelfthnight,1602 Jove,8,twelfthnight,1602 another,8,twelfthnight,1602 honour,8,twelfthnight,1602 sword,8,twelfthnight,1602 friend,8,twelfthnight,1602 III,8,twelfthnight,1602 An,8,twelfthnight,1602 best,8,twelfthnight,1602 down,8,twelfthnight,1602 tongue,8,twelfthnight,1602 pains,8,twelfthnight,1602 servant,8,twelfthnight,1602 stockings,8,twelfthnight,1602 thyself,8,twelfthnight,1602 that's,8,twelfthnight,1602 valour,8,twelfthnight,1602 money,8,twelfthnight,1602 ass,8,twelfthnight,1602 Than,8,twelfthnight,1602 knave,8,twelfthnight,1602 end,8,twelfthnight,1602 bloody,8,twelfthnight,1602 who,8,twelfthnight,1602 oft,8,twelfthnight,1602 morrow,8,twelfthnight,1602 passion,8,twelfthnight,1602 hour,8,twelfthnight,1602 When,8,twelfthnight,1602 greatness,8,twelfthnight,1602 cross,8,twelfthnight,1602 himself,8,twelfthnight,1602 fortunes,8,twelfthnight,1602 Alas,9,twelfthnight,1602 pray,9,twelfthnight,1602 song,9,twelfthnight,1602 words,9,twelfthnight,1602 Not,9,twelfthnight,1602 death,9,twelfthnight,1602 about,9,twelfthnight,1602 OLIVIA's,9,twelfthnight,1602 wise,9,twelfthnight,1602 else,9,twelfthnight,1602 What's,9,twelfthnight,1602 Be,9,twelfthnight,1602 II,9,twelfthnight,1602 Is,9,twelfthnight,1602 prove,9,twelfthnight,1602 blood,9,twelfthnight,1602 Sebastian,9,twelfthnight,1602 noble,9,twelfthnight,1602 Yet,9,twelfthnight,1602 place,9,twelfthnight,1602 part,9,twelfthnight,1602 state,9,twelfthnight,1602 off,9,twelfthnight,1602 believe,9,twelfthnight,1602 master,9,twelfthnight,1602 hither,9,twelfthnight,1602 poor,9,twelfthnight,1602 first,9,twelfthnight,1602 Marry,9,twelfthnight,1602 father,9,twelfthnight,1602 without,9,twelfthnight,1602 draw,10,twelfthnight,1602 saw,10,twelfthnight,1602 Give,10,twelfthnight,1602 read,10,twelfthnight,1602 fear,10,twelfthnight,1602 both,10,twelfthnight,1602 desire,10,twelfthnight,1602 play,10,twelfthnight,1602 said,10,twelfthnight,1602 excellent,10,twelfthnight,1602 favour,10,twelfthnight,1602 bear,10,twelfthnight,1602 Madam,10,twelfthnight,1602 madonna,10,twelfthnight,1602 young,10,twelfthnight,1602 Antonio,10,twelfthnight,1602 heard,10,twelfthnight,1602 till,10,twelfthnight,1602 Officer,10,twelfthnight,1602 hope,10,twelfthnight,1602 yellow,10,twelfthnight,1602 alone,10,twelfthnight,1602 sister,10,twelfthnight,1602 being,10,twelfthnight,1602 live,10,twelfthnight,1602 hurt,10,twelfthnight,1602 kind,10,twelfthnight,1602 other,10,twelfthnight,1602 Will,11,twelfthnight,1602 rather,11,twelfthnight,1602 drink,11,twelfthnight,1602 set,11,twelfthnight,1602 sea,11,twelfthnight,1602 bring,11,twelfthnight,1602 wits,11,twelfthnight,1602 boy,11,twelfthnight,1602 smile,11,twelfthnight,1602 since,11,twelfthnight,1602 dost,11,twelfthnight,1602 Most,11,twelfthnight,1602 eye,11,twelfthnight,1602 Thou,11,twelfthnight,1602 mind,11,twelfthnight,1602 still,11,twelfthnight,1602 face,11,twelfthnight,1602 three,11,twelfthnight,1602 even,11,twelfthnight,1602 prithee,11,twelfthnight,1602 eyes,11,twelfthnight,1602 men,11,twelfthnight,1602 nature,11,twelfthnight,1602 woman,11,twelfthnight,1602 world,12,twelfthnight,1602 CURIO,12,twelfthnight,1602 Of,12,twelfthnight,1602 bed,12,twelfthnight,1602 doth,12,twelfthnight,1602 ho,12,twelfthnight,1602 little,12,twelfthnight,1602 hast,12,twelfthnight,1602 thing,12,twelfthnight,1602 why,12,twelfthnight,1602 Well,12,twelfthnight,1602 own,12,twelfthnight,1602 old,12,twelfthnight,1602 please,12,twelfthnight,1602 word,12,twelfthnight,1602 Illyria,12,twelfthnight,1602 answer,13,twelfthnight,1602 every,13,twelfthnight,1602 brother,13,twelfthnight,1602 hear,13,twelfthnight,1602 enough,13,twelfthnight,1602 after,13,twelfthnight,1602 Do,13,twelfthnight,1602 It,13,twelfthnight,1602 night,13,twelfthnight,1602 So,13,twelfthnight,1602 Reads,13,twelfthnight,1602 made,13,twelfthnight,1602 none,13,twelfthnight,1602 ever,13,twelfthnight,1602 find,13,twelfthnight,1602 Captain,13,twelfthnight,1602 Where,13,twelfthnight,1602 call,14,twelfthnight,1602 Who,14,twelfthnight,1602 Go,14,twelfthnight,1602 Re,14,twelfthnight,1602 God,14,twelfthnight,1602 devil,14,twelfthnight,1602 She,14,twelfthnight,1602 there's,14,twelfthnight,1602 wit,14,twelfthnight,1602 fair,14,twelfthnight,1602 Andrew,14,twelfthnight,1602 Now,15,twelfthnight,1602 name,15,twelfthnight,1602 By,15,twelfthnight,1602 therefore,15,twelfthnight,1602 their,15,twelfthnight,1602 dear,15,twelfthnight,1602 myself,15,twelfthnight,1602 thus,15,twelfthnight,1602 leave,15,twelfthnight,1602 Olivia,15,twelfthnight,1602 two,15,twelfthnight,1602 cannot,15,twelfthnight,1602 soul,16,twelfthnight,1602 nothing,16,twelfthnight,1602 been,16,twelfthnight,1602 us,16,twelfthnight,1602 up,16,twelfthnight,1602 keep,16,twelfthnight,1602 Topas,16,twelfthnight,1602 indeed,16,twelfthnight,1602 where,16,twelfthnight,1602 nor,16,twelfthnight,1602 before,16,twelfthnight,1602 could,16,twelfthnight,1602 way,16,twelfthnight,1602 day,16,twelfthnight,1602 reason,16,twelfthnight,1602 Let,16,twelfthnight,1602 hold,16,twelfthnight,1602 which,17,twelfthnight,1602 life,17,twelfthnight,1602 fellow,17,twelfthnight,1602 Here,17,twelfthnight,1602 matter,17,twelfthnight,1602 i',17,twelfthnight,1602 done,17,twelfthnight,1602 faith,17,twelfthnight,1602 into,17,twelfthnight,1602 niece,17,twelfthnight,1602 SIR,273,twelfthnight,1602 Nay,18,twelfthnight,1602 better,18,twelfthnight,1602 he's,18,twelfthnight,1602 As,18,twelfthnight,1602 enter,18,twelfthnight,1602 ACT,18,twelfthnight,1602 Cesario,18,twelfthnight,1602 sweet,18,twelfthnight,1602 NIGHT,19,twelfthnight,1602 has,19,twelfthnight,1602 o',19,twelfthnight,1602 TWELFTH,19,twelfthnight,1602 again,19,twelfthnight,1602 true,19,twelfthnight,1602 SCENE,19,twelfthnight,1602 away,20,twelfthnight,1602 With,20,twelfthnight,1602 letter,20,twelfthnight,1602 gentleman,20,twelfthnight,1602 Good,21,twelfthnight,1602 art,21,twelfthnight,1602 youth,21,twelfthnight,1602 This,21,twelfthnight,1602 mine,21,twelfthnight,1602 take,21,twelfthnight,1602 madam,21,twelfthnight,1602 might,21,twelfthnight,1602 Exeunt,22,twelfthnight,1602 put,22,twelfthnight,1602 does,22,twelfthnight,1602 most,22,twelfthnight,1602 though,22,twelfthnight,1602 knight,22,twelfthnight,1602 mad,22,twelfthnight,1602 peace,23,twelfthnight,1602 these,23,twelfthnight,1602 tell,23,twelfthnight,1602 Ay,23,twelfthnight,1602 In,23,twelfthnight,1602 speak,23,twelfthnight,1602 comes,23,twelfthnight,1602 Come,24,twelfthnight,1602 No,24,twelfthnight,1602 our,24,twelfthnight,1602 too,24,twelfthnight,1602 they,25,twelfthnight,1602 them,25,twelfthnight,1602 time,25,twelfthnight,1602 great,25,twelfthnight,1602 when,25,twelfthnight,1602 He,26,twelfthnight,1602 should,26,twelfthnight,1602 heart,26,twelfthnight,1602 never,27,twelfthnight,1602 'tis,27,twelfthnight,1602 You,27,twelfthnight,1602 How,27,twelfthnight,1602 any,28,twelfthnight,1602 must,29,twelfthnight,1602 give,29,twelfthnight,1602 hand,29,twelfthnight,1602 hath,29,twelfthnight,1602 Malvolio,29,twelfthnight,1602 For,30,twelfthnight,1602 yet,30,twelfthnight,1602 house,30,twelfthnight,1602 The,30,twelfthnight,1602 upon,31,twelfthnight,1602 had,31,twelfthnight,1602 Why,32,twelfthnight,1602 lord,32,twelfthnight,1602 how,32,twelfthnight,1602 ANTONIO,32,twelfthnight,1602 here,33,twelfthnight,1602 then,33,twelfthnight,1602 such,33,twelfthnight,1602 think,33,twelfthnight,1602 out,33,twelfthnight,1602 were,33,twelfthnight,1602 go,34,twelfthnight,1602 from,34,twelfthnight,1602 much,35,twelfthnight,1602 Toby,35,twelfthnight,1602 may,35,twelfthnight,1602 like,36,twelfthnight,1602 My,36,twelfthnight,1602 SEBASTIAN,37,twelfthnight,1602 Exit,37,twelfthnight,1602 there,39,twelfthnight,1602 If,39,twelfthnight,1602 can,39,twelfthnight,1602 very,39,twelfthnight,1602 did,39,twelfthnight,1602 was,40,twelfthnight,1602 see,41,twelfthnight,1602 some,42,twelfthnight,1602 than,42,twelfthnight,1602 To,42,twelfthnight,1602 or,43,twelfthnight,1602 we,43,twelfthnight,1602 say,44,twelfthnight,1602 make,45,twelfthnight,1602 my,302,twelfthnight,1602 A,47,twelfthnight,1602 all,47,twelfthnight,1602 an,47,twelfthnight,1602 Enter,47,twelfthnight,1602 come,47,twelfthnight,1602 know,49,twelfthnight,1602 fool,52,twelfthnight,1602 more,53,twelfthnight,1602 O,54,twelfthnight,1602 But,54,twelfthnight,1602 well,54,twelfthnight,1602 That,55,twelfthnight,1602 let,55,twelfthnight,1602 now,56,twelfthnight,1602 I'll,56,twelfthnight,1602 one,56,twelfthnight,1602 at,57,twelfthnight,1602 would,59,twelfthnight,1602 she,60,twelfthnight,1602 good,60,twelfthnight,1602 What,61,twelfthnight,1602 ',63,twelfthnight,1602 if,63,twelfthnight,1602 Sir,63,twelfthnight,1602 on,64,twelfthnight,1602 ORSINO,65,twelfthnight,1602 lady,65,twelfthnight,1602 what,66,twelfthnight,1602 FABIAN,67,twelfthnight,1602 DUKE,67,twelfthnight,1602 man,67,twelfthnight,1602 shall,68,twelfthnight,1602 by,70,twelfthnight,1602 love,77,twelfthnight,1602 are,77,twelfthnight,1602 MARIA,81,twelfthnight,1602 am,85,twelfthnight,1602 And,87,twelfthnight,1602 I,600,twelfthnight,1602 thee,90,twelfthnight,1602 her,95,twelfthnight,1602 MALVOLIO,98,twelfthnight,1602 no,98,twelfthnight,1602 do,100,twelfthnight,1602 thy,100,twelfthnight,1602 his,103,twelfthnight,1602 ANDREW,104,twelfthnight,1602 but,110,twelfthnight,1602 a,369,twelfthnight,1602 so,115,twelfthnight,1602 thou,116,twelfthnight,1602 to,372,twelfthnight,1602 sir,117,twelfthnight,1602 Clown,117,twelfthnight,1602 OLIVIA,128,twelfthnight,1602 he,128,twelfthnight,1602 as,129,twelfthnight,1602 have,132,twelfthnight,1602 VIOLA,135,twelfthnight,1602 of,400,twelfthnight,1602 will,145,twelfthnight,1602 this,151,twelfthnight,1602 with,156,twelfthnight,1602 for,157,twelfthnight,1602 you,416,twelfthnight,1602 your,165,twelfthnight,1602 BELCH,170,twelfthnight,1602 TOBY,170,twelfthnight,1602 and,436,twelfthnight,1602 it,182,twelfthnight,1602 be,194,twelfthnight,1602 him,197,twelfthnight,1602 that,218,twelfthnight,1602 not,219,twelfthnight,1602 is,232,twelfthnight,1602 in,236,twelfthnight,1602 me,241,twelfthnight,1602 brave,1,kinghenryviii,1612 attended,1,kinghenryviii,1612 holding,1,kinghenryviii,1612 augment,1,kinghenryviii,1612 Alencon,1,kinghenryviii,1612 event,1,kinghenryviii,1612 Cassado,1,kinghenryviii,1612 archbishop's,1,kinghenryviii,1612 timber,1,kinghenryviii,1612 Asher,1,kinghenryviii,1612 regard,1,kinghenryviii,1612 quality,1,kinghenryviii,1612 tomb,1,kinghenryviii,1612 sped,1,kinghenryviii,1612 ignorance,1,kinghenryviii,1612 womanish,1,kinghenryviii,1612 Winchester's,1,kinghenryviii,1612 drawing,1,kinghenryviii,1612 meek,1,kinghenryviii,1612 guard,1,kinghenryviii,1612 Stands,1,kinghenryviii,1612 Chamber,1,kinghenryviii,1612 Prove,1,kinghenryviii,1612 muster,1,kinghenryviii,1612 happier,1,kinghenryviii,1612 absolved,1,kinghenryviii,1612 m,1,kinghenryviii,1612 smiles,1,kinghenryviii,1612 red,1,kinghenryviii,1612 gallants,1,kinghenryviii,1612 Longer,1,kinghenryviii,1612 simony,1,kinghenryviii,1612 pestilence,1,kinghenryviii,1612 Proud,1,kinghenryviii,1612 calumnious,1,kinghenryviii,1612 extremity,1,kinghenryviii,1612 placeth,1,kinghenryviii,1612 drop,1,kinghenryviii,1612 tool,1,kinghenryviii,1612 embalm,1,kinghenryviii,1612 derived,1,kinghenryviii,1612 guilt,1,kinghenryviii,1612 dozens,1,kinghenryviii,1612 tops,1,kinghenryviii,1612 belongs,1,kinghenryviii,1612 leisure,1,kinghenryviii,1612 double,1,kinghenryviii,1612 necessities,1,kinghenryviii,1612 tremble,1,kinghenryviii,1612 Heat,1,kinghenryviii,1612 brass,1,kinghenryviii,1612 span,1,kinghenryviii,1612 coasts,1,kinghenryviii,1612 horse,1,kinghenryviii,1612 disturb,1,kinghenryviii,1612 haberdasher's,1,kinghenryviii,1612 Stay'd,1,kinghenryviii,1612 vizards,1,kinghenryviii,1612 lament,1,kinghenryviii,1612 hinder,1,kinghenryviii,1612 traitor's,1,kinghenryviii,1612 dives,1,kinghenryviii,1612 Digest,1,kinghenryviii,1612 travail,1,kinghenryviii,1612 Hearts,1,kinghenryviii,1612 New,1,kinghenryviii,1612 torn,1,kinghenryviii,1612 peruse,1,kinghenryviii,1612 reaches,1,kinghenryviii,1612 follies,1,kinghenryviii,1612 advantage,1,kinghenryviii,1612 ran,1,kinghenryviii,1612 Fit,1,kinghenryviii,1612 brown,1,kinghenryviii,1612 adding,1,kinghenryviii,1612 Whether,1,kinghenryviii,1612 honourably,1,kinghenryviii,1612 suspicious,1,kinghenryviii,1612 Springs,1,kinghenryviii,1612 implore,1,kinghenryviii,1612 hasty,1,kinghenryviii,1612 cannons,1,kinghenryviii,1612 dagger,1,kinghenryviii,1612 Affected,1,kinghenryviii,1612 village,1,kinghenryviii,1612 beadles,1,kinghenryviii,1612 purge,1,kinghenryviii,1612 element,1,kinghenryviii,1612 elect,1,kinghenryviii,1612 support,1,kinghenryviii,1612 obstinate,1,kinghenryviii,1612 outrun,1,kinghenryviii,1612 offended,1,kinghenryviii,1612 o'ertake,1,kinghenryviii,1612 Speedily,1,kinghenryviii,1612 shoulders,1,kinghenryviii,1612 offender,1,kinghenryviii,1612 publicly,1,kinghenryviii,1612 chiding,1,kinghenryviii,1612 Bear,1,kinghenryviii,1612 day's,1,kinghenryviii,1612 roar,1,kinghenryviii,1612 note's,1,kinghenryviii,1612 endless,1,kinghenryviii,1612 jot,1,kinghenryviii,1612 construction,1,kinghenryviii,1612 discourser,1,kinghenryviii,1612 commotion,1,kinghenryviii,1612 recited,1,kinghenryviii,1612 irresolute,1,kinghenryviii,1612 sleeps,1,kinghenryviii,1612 Belong,1,kinghenryviii,1612 whereupon,1,kinghenryviii,1612 moiety,1,kinghenryviii,1612 despised,1,kinghenryviii,1612 freed,1,kinghenryviii,1612 strengthen,1,kinghenryviii,1612 wife',1,kinghenryviii,1612 shunning,1,kinghenryviii,1612 entered,1,kinghenryviii,1612 flung,1,kinghenryviii,1612 innumerable,1,kinghenryviii,1612 eight,1,kinghenryviii,1612 mule,1,kinghenryviii,1612 Defacers,1,kinghenryviii,1612 miss'd,1,kinghenryviii,1612 Tell,1,kinghenryviii,1612 darkness,1,kinghenryviii,1612 painted,1,kinghenryviii,1612 chaplains,1,kinghenryviii,1612 clothes,1,kinghenryviii,1612 thorny,1,kinghenryviii,1612 Became,1,kinghenryviii,1612 groan,1,kinghenryviii,1612 Saving,1,kinghenryviii,1612 proceedings,1,kinghenryviii,1612 dropp'd,1,kinghenryviii,1612 violent,1,kinghenryviii,1612 PROLOGUE,1,kinghenryviii,1612 celestial,1,kinghenryviii,1612 bewailing,1,kinghenryviii,1612 vale,1,kinghenryviii,1612 disease,1,kinghenryviii,1612 prosperous,1,kinghenryviii,1612 Zeal,1,kinghenryviii,1612 toil,1,kinghenryviii,1612 Bevis,1,kinghenryviii,1612 monsieurs,1,kinghenryviii,1612 broom,1,kinghenryviii,1612 ravish'd,1,kinghenryviii,1612 grubb'd,1,kinghenryviii,1612 Beshrew,1,kinghenryviii,1612 lowly,1,kinghenryviii,1612 Far,1,kinghenryviii,1612 unmatch'd,1,kinghenryviii,1612 naked,1,kinghenryviii,1612 Wife,1,kinghenryviii,1612 hanged,1,kinghenryviii,1612 remark'd,1,kinghenryviii,1612 advance,1,kinghenryviii,1612 slander,1,kinghenryviii,1612 feeds,1,kinghenryviii,1612 allowance,1,kinghenryviii,1612 Carnarvonshire,1,kinghenryviii,1612 maintain,1,kinghenryviii,1612 its,1,kinghenryviii,1612 stretches,1,kinghenryviii,1612 teachers,1,kinghenryviii,1612 strangled,1,kinghenryviii,1612 signs,1,kinghenryviii,1612 sour,1,kinghenryviii,1612 horrid,1,kinghenryviii,1612 laugh,1,kinghenryviii,1612 jaded,1,kinghenryviii,1612 Daring,1,kinghenryviii,1612 worms,1,kinghenryviii,1612 calls,1,kinghenryviii,1612 Verily,1,kinghenryviii,1612 terrible,1,kinghenryviii,1612 murmurers,1,kinghenryviii,1612 loaden,1,kinghenryviii,1612 lively,1,kinghenryviii,1612 iron,1,kinghenryviii,1612 lewdness,1,kinghenryviii,1612 Paid,1,kinghenryviii,1612 stamp'd,1,kinghenryviii,1612 consulting,1,kinghenryviii,1612 tenements,1,kinghenryviii,1612 'Ego,1,kinghenryviii,1612 viva,1,kinghenryviii,1612 works,1,kinghenryviii,1612 abound,1,kinghenryviii,1612 Install'd,1,kinghenryviii,1612 wounded,1,kinghenryviii,1612 congee,1,kinghenryviii,1612 cheeks,1,kinghenryviii,1612 PERSONAE,1,kinghenryviii,1612 considering,1,kinghenryviii,1612 Incensed,1,kinghenryviii,1612 proclaim,1,kinghenryviii,1612 marshal,1,kinghenryviii,1612 rumor,1,kinghenryviii,1612 mingled,1,kinghenryviii,1612 crutch,1,kinghenryviii,1612 rub,1,kinghenryviii,1612 convented,1,kinghenryviii,1612 case,1,kinghenryviii,1612 early,1,kinghenryviii,1612 utter'd,1,kinghenryviii,1612 softly,1,kinghenryviii,1612 attempt,1,kinghenryviii,1612 song,1,kinghenryviii,1612 garment,1,kinghenryviii,1612 undoubtedly,1,kinghenryviii,1612 Pope,1,kinghenryviii,1612 spared,1,kinghenryviii,1612 unrecounted,1,kinghenryviii,1612 Fairly,1,kinghenryviii,1612 Over,1,kinghenryviii,1612 delivered,1,kinghenryviii,1612 reign,1,kinghenryviii,1612 order'd,1,kinghenryviii,1612 personally,1,kinghenryviii,1612 disdain,1,kinghenryviii,1612 Kinsmen,1,kinghenryviii,1612 giant,1,kinghenryviii,1612 land's,1,kinghenryviii,1612 bladders,1,kinghenryviii,1612 hulling,1,kinghenryviii,1612 feather,1,kinghenryviii,1612 Guynes,1,kinghenryviii,1612 drive,1,kinghenryviii,1612 thousands,1,kinghenryviii,1612 leaning,1,kinghenryviii,1612 matters,1,kinghenryviii,1612 sat,1,kinghenryviii,1612 Excuse,1,kinghenryviii,1612 combination,1,kinghenryviii,1612 founts,1,kinghenryviii,1612 ranking,1,kinghenryviii,1612 spice,1,kinghenryviii,1612 line,1,kinghenryviii,1612 demure,1,kinghenryviii,1612 countesses,1,kinghenryviii,1612 opposed,1,kinghenryviii,1612 shrouds,1,kinghenryviii,1612 willing'st,1,kinghenryviii,1612 corner,1,kinghenryviii,1612 outstare,1,kinghenryviii,1612 Orleans,1,kinghenryviii,1612 persuading,1,kinghenryviii,1612 incensed,1,kinghenryviii,1612 mind's,1,kinghenryviii,1612 Goodness,1,kinghenryviii,1612 suburbs,1,kinghenryviii,1612 Perforce,1,kinghenryviii,1612 sennet,1,kinghenryviii,1612 boldness,1,kinghenryviii,1612 succeeding,1,kinghenryviii,1612 Mercy,1,kinghenryviii,1612 enthroned,1,kinghenryviii,1612 trumpet,1,kinghenryviii,1612 sectary,1,kinghenryviii,1612 concerns,1,kinghenryviii,1612 action's,1,kinghenryviii,1612 camlet,1,kinghenryviii,1612 toward,1,kinghenryviii,1612 revels,1,kinghenryviii,1612 sparks,1,kinghenryviii,1612 drew,1,kinghenryviii,1612 sloth,1,kinghenryviii,1612 rewarded,1,kinghenryviii,1612 Ely,1,kinghenryviii,1612 lift,1,kinghenryviii,1612 policy,1,kinghenryviii,1612 town,1,kinghenryviii,1612 soil,1,kinghenryviii,1612 Meanwhile,1,kinghenryviii,1612 calm,1,kinghenryviii,1612 breaks,1,kinghenryviii,1612 stifled,1,kinghenryviii,1612 Chalks,1,kinghenryviii,1612 daring'st,1,kinghenryviii,1612 glass,1,kinghenryviii,1612 sixteen,1,kinghenryviii,1612 broiling,1,kinghenryviii,1612 marshalship,1,kinghenryviii,1612 noble's,1,kinghenryviii,1612 grievance,1,kinghenryviii,1612 teach,1,kinghenryviii,1612 soft,1,kinghenryviii,1612 Methinks,1,kinghenryviii,1612 riches,1,kinghenryviii,1612 Beside,1,kinghenryviii,1612 benefits,1,kinghenryviii,1612 stuffs,1,kinghenryviii,1612 visit,1,kinghenryviii,1612 lessen,1,kinghenryviii,1612 lordships',1,kinghenryviii,1612 amity,1,kinghenryviii,1612 becoming,1,kinghenryviii,1612 contribution,1,kinghenryviii,1612 began,1,kinghenryviii,1612 partner,1,kinghenryviii,1612 perjured,1,kinghenryviii,1612 BULLEN,1,kinghenryviii,1612 discovers,1,kinghenryviii,1612 unshaken,1,kinghenryviii,1612 blesses,1,kinghenryviii,1612 mounts,1,kinghenryviii,1612 madams,1,kinghenryviii,1612 Win,1,kinghenryviii,1612 decent,1,kinghenryviii,1612 she's,1,kinghenryviii,1612 seeking,1,kinghenryviii,1612 execution,1,kinghenryviii,1612 hereafter,1,kinghenryviii,1612 slightly,1,kinghenryviii,1612 Newly,1,kinghenryviii,1612 plains,1,kinghenryviii,1612 wherewithal,1,kinghenryviii,1612 attainder,1,kinghenryviii,1612 bombards,1,kinghenryviii,1612 clergy,1,kinghenryviii,1612 sung,1,kinghenryviii,1612 throned,1,kinghenryviii,1612 whatsoever,1,kinghenryviii,1612 speeches,1,kinghenryviii,1612 mincing,1,kinghenryviii,1612 Get,1,kinghenryviii,1612 faithfully,1,kinghenryviii,1612 conceive,1,kinghenryviii,1612 intercepted,1,kinghenryviii,1612 talker,1,kinghenryviii,1612 conception,1,kinghenryviii,1612 whoresons,1,kinghenryviii,1612 Sparing,1,kinghenryviii,1612 impossible,1,kinghenryviii,1612 aged,1,kinghenryviii,1612 friended,1,kinghenryviii,1612 accumulated,1,kinghenryviii,1612 informations,1,kinghenryviii,1612 clerks,1,kinghenryviii,1612 tenants,1,kinghenryviii,1612 noised,1,kinghenryviii,1612 agent,1,kinghenryviii,1612 tooth,1,kinghenryviii,1612 broach,1,kinghenryviii,1612 Pertaining,1,kinghenryviii,1612 coarse,1,kinghenryviii,1612 saying,1,kinghenryviii,1612 advertise,1,kinghenryviii,1612 monarch,1,kinghenryviii,1612 favourer,1,kinghenryviii,1612 Observe,1,kinghenryviii,1612 seals,1,kinghenryviii,1612 coronets,1,kinghenryviii,1612 carrying,1,kinghenryviii,1612 catching,1,kinghenryviii,1612 chronicles,1,kinghenryviii,1612 communication,1,kinghenryviii,1612 society,1,kinghenryviii,1612 ripening,1,kinghenryviii,1612 chronicler,1,kinghenryviii,1612 Deserves,1,kinghenryviii,1612 kneel'd,1,kinghenryviii,1612 audit,1,kinghenryviii,1612 churchmen's,1,kinghenryviii,1612 landed,1,kinghenryviii,1612 bitterly,1,kinghenryviii,1612 wedding,1,kinghenryviii,1612 Going,1,kinghenryviii,1612 illusions,1,kinghenryviii,1612 laying,1,kinghenryviii,1612 disposed,1,kinghenryviii,1612 ancestry,1,kinghenryviii,1612 pardons,1,kinghenryviii,1612 love's,1,kinghenryviii,1612 premises,1,kinghenryviii,1612 embrace,1,kinghenryviii,1612 earnestly,1,kinghenryviii,1612 Poultney,1,kinghenryviii,1612 Himself,1,kinghenryviii,1612 sow,1,kinghenryviii,1612 church,1,kinghenryviii,1612 charging,1,kinghenryviii,1612 Viscount,1,kinghenryviii,1612 summons,1,kinghenryviii,1612 scorn'd,1,kinghenryviii,1612 confident,1,kinghenryviii,1612 children's,1,kinghenryviii,1612 bringing,1,kinghenryviii,1612 plenty,1,kinghenryviii,1612 mantle,1,kinghenryviii,1612 nips,1,kinghenryviii,1612 looking,1,kinghenryviii,1612 'O,1,kinghenryviii,1612 enroll'd,1,kinghenryviii,1612 'T,1,kinghenryviii,1612 makings,1,kinghenryviii,1612 kindle,1,kinghenryviii,1612 usual,1,kinghenryviii,1612 Employ'd,1,kinghenryviii,1612 weakly,1,kinghenryviii,1612 attends,1,kinghenryviii,1612 juggle,1,kinghenryviii,1612 livers,1,kinghenryviii,1612 clothiers,1,kinghenryviii,1612 sued,1,kinghenryviii,1612 forthwith,1,kinghenryviii,1612 design,1,kinghenryviii,1612 acquainted,1,kinghenryviii,1612 disgrace,1,kinghenryviii,1612 permit,1,kinghenryviii,1612 study,1,kinghenryviii,1612 wages,1,kinghenryviii,1612 deserts,1,kinghenryviii,1612 archbishopric,1,kinghenryviii,1612 pitiful,1,kinghenryviii,1612 level,1,kinghenryviii,1612 parish,1,kinghenryviii,1612 faulty,1,kinghenryviii,1612 Doctor,1,kinghenryviii,1612 gripes,1,kinghenryviii,1612 examinations,1,kinghenryviii,1612 pieces,1,kinghenryviii,1612 mother,1,kinghenryviii,1612 thin,1,kinghenryviii,1612 play'd,1,kinghenryviii,1612 William,1,kinghenryviii,1612 illustrated,1,kinghenryviii,1612 becomes,1,kinghenryviii,1612 conjunction,1,kinghenryviii,1612 Toledo,1,kinghenryviii,1612 combustion,1,kinghenryviii,1612 foulness,1,kinghenryviii,1612 affect,1,kinghenryviii,1612 chamber's,1,kinghenryviii,1612 poverty,1,kinghenryviii,1612 carp'd,1,kinghenryviii,1612 otherwhere,1,kinghenryviii,1612 Authority,1,kinghenryviii,1612 indifferent,1,kinghenryviii,1612 apples,1,kinghenryviii,1612 ourselves,1,kinghenryviii,1612 esteem,1,kinghenryviii,1612 offence,1,kinghenryviii,1612 sharp'st,1,kinghenryviii,1612 merit,1,kinghenryviii,1612 sly,1,kinghenryviii,1612 wedged,1,kinghenryviii,1612 erga,1,kinghenryviii,1612 digestion,1,kinghenryviii,1612 guide,1,kinghenryviii,1612 breeches,1,kinghenryviii,1612 rung,1,kinghenryviii,1612 Learn,1,kinghenryviii,1612 vanish,1,kinghenryviii,1612 inspiration,1,kinghenryviii,1612 Item,1,kinghenryviii,1612 points,1,kinghenryviii,1612 conceit,1,kinghenryviii,1612 unloosed,1,kinghenryviii,1612 monster,1,kinghenryviii,1612 Unwilling,1,kinghenryviii,1612 ridden,1,kinghenryviii,1612 afraid,1,kinghenryviii,1612 Grow,1,kinghenryviii,1612 Be't,1,kinghenryviii,1612 guarded,1,kinghenryviii,1612 devoutly,1,kinghenryviii,1612 Officers,1,kinghenryviii,1612 led'st,1,kinghenryviii,1612 bore,1,kinghenryviii,1612 repentance,1,kinghenryviii,1612 moulded,1,kinghenryviii,1612 tempting,1,kinghenryviii,1612 Whereof,1,kinghenryviii,1612 figure,1,kinghenryviii,1612 habit,1,kinghenryviii,1612 shilling,1,kinghenryviii,1612 Equal,1,kinghenryviii,1612 direct,1,kinghenryviii,1612 Turn,1,kinghenryviii,1612 uncontemn'd,1,kinghenryviii,1612 absence,1,kinghenryviii,1612 reek,1,kinghenryviii,1612 reel,1,kinghenryviii,1612 Willing,1,kinghenryviii,1612 Weigh'd,1,kinghenryviii,1612 springhalt,1,kinghenryviii,1612 beggarly,1,kinghenryviii,1612 Language,1,kinghenryviii,1612 exceeding,1,kinghenryviii,1612 Cause,1,kinghenryviii,1612 Wish,1,kinghenryviii,1612 scold,1,kinghenryviii,1612 encounter,1,kinghenryviii,1612 ruminate,1,kinghenryviii,1612 seeks,1,kinghenryviii,1612 forfeiting,1,kinghenryviii,1612 commit,1,kinghenryviii,1612 cherish,1,kinghenryviii,1612 eldest,1,kinghenryviii,1612 tennis,1,kinghenryviii,1612 showers,1,kinghenryviii,1612 fruit,1,kinghenryviii,1612 stump,1,kinghenryviii,1612 household,1,kinghenryviii,1612 swiftness,1,kinghenryviii,1612 pearl,1,kinghenryviii,1612 thence,1,kinghenryviii,1612 memories,1,kinghenryviii,1612 sue,1,kinghenryviii,1612 model,1,kinghenryviii,1612 fortitude,1,kinghenryviii,1612 sum,1,kinghenryviii,1612 mercies,1,kinghenryviii,1612 vanity,1,kinghenryviii,1612 poorest,1,kinghenryviii,1612 companion,1,kinghenryviii,1612 fearful,1,kinghenryviii,1612 bowl,1,kinghenryviii,1612 spaniel,1,kinghenryviii,1612 promise,1,kinghenryviii,1612 punish,1,kinghenryviii,1612 infinite,1,kinghenryviii,1612 whoever,1,kinghenryviii,1612 saucy,1,kinghenryviii,1612 blind,1,kinghenryviii,1612 brief,1,kinghenryviii,1612 costly,1,kinghenryviii,1612 upon't,1,kinghenryviii,1612 Capucius,1,kinghenryviii,1612 putter,1,kinghenryviii,1612 Betwixt,1,kinghenryviii,1612 Perceive,1,kinghenryviii,1612 conceal,1,kinghenryviii,1612 whisper,1,kinghenryviii,1612 aim'st,1,kinghenryviii,1612 weather,1,kinghenryviii,1612 choose,1,kinghenryviii,1612 Bestow,1,kinghenryviii,1612 Fly,1,kinghenryviii,1612 Vouchsafe,1,kinghenryviii,1612 footboys,1,kinghenryviii,1612 Latin,1,kinghenryviii,1612 flesh,1,kinghenryviii,1612 from't,1,kinghenryviii,1612 shrink,1,kinghenryviii,1612 confession's,1,kinghenryviii,1612 wins,1,kinghenryviii,1612 baptism,1,kinghenryviii,1612 Allegiance,1,kinghenryviii,1612 rend,1,kinghenryviii,1612 wand,1,kinghenryviii,1612 certes,1,kinghenryviii,1612 mirth,1,kinghenryviii,1612 Abound,1,kinghenryviii,1612 expressly,1,kinghenryviii,1612 Lawrence,1,kinghenryviii,1612 steal,1,kinghenryviii,1612 access,1,kinghenryviii,1612 know'st,1,kinghenryviii,1612 Englishman,1,kinghenryviii,1612 hates,1,kinghenryviii,1612 aboded,1,kinghenryviii,1612 dies,1,kinghenryviii,1612 hated,1,kinghenryviii,1612 Unfit,1,kinghenryviii,1612 witnesses,1,kinghenryviii,1612 Dumb,1,kinghenryviii,1612 custom,1,kinghenryviii,1612 succeed,1,kinghenryviii,1612 imperious,1,kinghenryviii,1612 sooth,1,kinghenryviii,1612 Commotions,1,kinghenryviii,1612 devil's,1,kinghenryviii,1612 staying,1,kinghenryviii,1612 Fetch,1,kinghenryviii,1612 window,1,kinghenryviii,1612 rebellion,1,kinghenryviii,1612 incense,1,kinghenryviii,1612 breeding,1,kinghenryviii,1612 throughly,1,kinghenryviii,1612 brake,1,kinghenryviii,1612 join'd,1,kinghenryviii,1612 circumstances,1,kinghenryviii,1612 avow,1,kinghenryviii,1612 flowing,1,kinghenryviii,1612 steep,1,kinghenryviii,1612 steel,1,kinghenryviii,1612 ruled,1,kinghenryviii,1612 steer,1,kinghenryviii,1612 book,1,kinghenryviii,1612 Vaux,1,kinghenryviii,1612 Traduced,1,kinghenryviii,1612 colour,1,kinghenryviii,1612 verdict,1,kinghenryviii,1612 distraction,1,kinghenryviii,1612 intelligence,1,kinghenryviii,1612 'cum,1,kinghenryviii,1612 circlets,1,kinghenryviii,1612 offers,1,kinghenryviii,1612 deserves,1,kinghenryviii,1612 fairest,1,kinghenryviii,1612 conditions,1,kinghenryviii,1612 voce,1,kinghenryviii,1612 plainsong,1,kinghenryviii,1612 CANTERBURY,1,kinghenryviii,1612 privilegio,1,kinghenryviii,1612 big,1,kinghenryviii,1612 bitten,1,kinghenryviii,1612 mistakes,1,kinghenryviii,1612 muzzle,1,kinghenryviii,1612 'treasonous,1,kinghenryviii,1612 Drinks,1,kinghenryviii,1612 christenings,1,kinghenryviii,1612 preferr'd,1,kinghenryviii,1612 mistaken,1,kinghenryviii,1612 youths,1,kinghenryviii,1612 grievous,1,kinghenryviii,1612 training,1,kinghenryviii,1612 ha',1,kinghenryviii,1612 tumult,1,kinghenryviii,1612 I',1,kinghenryviii,1612 larder,1,kinghenryviii,1612 slaves,1,kinghenryviii,1612 cudgel,1,kinghenryviii,1612 merchants',1,kinghenryviii,1612 hap,1,kinghenryviii,1612 commended,1,kinghenryviii,1612 inducement,1,kinghenryviii,1612 Certainly,1,kinghenryviii,1612 backs,1,kinghenryviii,1612 snuff,1,kinghenryviii,1612 overthrow,1,kinghenryviii,1612 Sweetheart,1,kinghenryviii,1612 eminence,1,kinghenryviii,1612 crack,1,kinghenryviii,1612 foes,1,kinghenryviii,1612 Holy,1,kinghenryviii,1612 horseback,1,kinghenryviii,1612 refuse,1,kinghenryviii,1612 Sends,1,kinghenryviii,1612 measure,1,kinghenryviii,1612 delights,1,kinghenryviii,1612 foresaid,1,kinghenryviii,1612 promotion,1,kinghenryviii,1612 legitimate,1,kinghenryviii,1612 Possess,1,kinghenryviii,1612 twins,1,kinghenryviii,1612 unsettled,1,kinghenryviii,1612 pat,1,kinghenryviii,1612 spoil,1,kinghenryviii,1612 tonight,1,kinghenryviii,1612 quarrel,1,kinghenryviii,1612 Walks,1,kinghenryviii,1612 hang'd,1,kinghenryviii,1612 mutiny,1,kinghenryviii,1612 bow,1,kinghenryviii,1612 eternal,1,kinghenryviii,1612 govern,1,kinghenryviii,1612 strangers,1,kinghenryviii,1612 deeds,1,kinghenryviii,1612 singe,1,kinghenryviii,1612 Heap'd,1,kinghenryviii,1612 unnatural,1,kinghenryviii,1612 Sovereign,1,kinghenryviii,1612 praemunire,1,kinghenryviii,1612 unmanly,1,kinghenryviii,1612 pointed,1,kinghenryviii,1612 hitherto,1,kinghenryviii,1612 bad,1,kinghenryviii,1612 prone,1,kinghenryviii,1612 Me,1,kinghenryviii,1612 goodliest,1,kinghenryviii,1612 inclined,1,kinghenryviii,1612 revokement,1,kinghenryviii,1612 lands,1,kinghenryviii,1612 Samson,1,kinghenryviii,1612 proof,1,kinghenryviii,1612 ladyship,1,kinghenryviii,1612 kings,1,kinghenryviii,1612 gentleness,1,kinghenryviii,1612 speakest,1,kinghenryviii,1612 strangest,1,kinghenryviii,1612 star,1,kinghenryviii,1612 void,1,kinghenryviii,1612 denied,1,kinghenryviii,1612 defied,1,kinghenryviii,1612 brings,1,kinghenryviii,1612 Seventh,1,kinghenryviii,1612 be',1,kinghenryviii,1612 tales,1,kinghenryviii,1612 loyalties,1,kinghenryviii,1612 judging,1,kinghenryviii,1612 Spaniard,1,kinghenryviii,1612 to's,1,kinghenryviii,1612 as't,1,kinghenryviii,1612 hid,1,kinghenryviii,1612 innocent,1,kinghenryviii,1612 finds,1,kinghenryviii,1612 Denny,1,kinghenryviii,1612 Cornets,1,kinghenryviii,1612 conceived,1,kinghenryviii,1612 prophecies,1,kinghenryviii,1612 remainder,1,kinghenryviii,1612 motions,1,kinghenryviii,1612 enter'd,1,kinghenryviii,1612 buzz,1,kinghenryviii,1612 Exceeding,1,kinghenryviii,1612 House,1,kinghenryviii,1612 required,1,kinghenryviii,1612 retain'd,1,kinghenryviii,1612 Body,1,kinghenryviii,1612 approve,1,kinghenryviii,1612 Refuse,1,kinghenryviii,1612 pensively,1,kinghenryviii,1612 fines,1,kinghenryviii,1612 Ho,1,kinghenryviii,1612 requires,1,kinghenryviii,1612 notorious,1,kinghenryviii,1612 winnow'd,1,kinghenryviii,1612 Pronounce,1,kinghenryviii,1612 ANTHONY,1,kinghenryviii,1612 sickened,1,kinghenryviii,1612 bevy,1,kinghenryviii,1612 appoint,1,kinghenryviii,1612 quick,1,kinghenryviii,1612 scaring,1,kinghenryviii,1612 pinches,1,kinghenryviii,1612 annual,1,kinghenryviii,1612 nourishment,1,kinghenryviii,1612 sport,1,kinghenryviii,1612 noses,1,kinghenryviii,1612 pie,1,kinghenryviii,1612 buys,1,kinghenryviii,1612 troops,1,kinghenryviii,1612 earl,1,kinghenryviii,1612 rankness,1,kinghenryviii,1612 navy,1,kinghenryviii,1612 Is't,1,kinghenryviii,1612 display'd,1,kinghenryviii,1612 ague,1,kinghenryviii,1612 strew,1,kinghenryviii,1612 formerly,1,kinghenryviii,1612 riseth,1,kinghenryviii,1612 monstrous,1,kinghenryviii,1612 outlive,1,kinghenryviii,1612 Bohun,1,kinghenryviii,1612 Gone,1,kinghenryviii,1612 Seems,1,kinghenryviii,1612 groaning,1,kinghenryviii,1612 temple,1,kinghenryviii,1612 thereunto,1,kinghenryviii,1612 wringing,1,kinghenryviii,1612 titles,1,kinghenryviii,1612 warn'd,1,kinghenryviii,1612 precipice,1,kinghenryviii,1612 trimm'd,1,kinghenryviii,1612 Scholars,1,kinghenryviii,1612 reproaches,1,kinghenryviii,1612 royalty,1,kinghenryviii,1612 weed,1,kinghenryviii,1612 bulk,1,kinghenryviii,1612 challenge,1,kinghenryviii,1612 pleaded,1,kinghenryviii,1612 unhandled,1,kinghenryviii,1612 week,1,kinghenryviii,1612 proportion,1,kinghenryviii,1612 Mend,1,kinghenryviii,1612 hills,1,kinghenryviii,1612 Dance,1,kinghenryviii,1612 branded,1,kinghenryviii,1612 spotless,1,kinghenryviii,1612 busy,1,kinghenryviii,1612 Receive,1,kinghenryviii,1612 absent,1,kinghenryviii,1612 Drum,1,kinghenryviii,1612 Heard,1,kinghenryviii,1612 whereby,1,kinghenryviii,1612 metal,1,kinghenryviii,1612 sooner,1,kinghenryviii,1612 Guy,1,kinghenryviii,1612 gleaning,1,kinghenryviii,1612 suffer'd,1,kinghenryviii,1612 Melt,1,kinghenryviii,1612 dove,1,kinghenryviii,1612 bell,1,kinghenryviii,1612 Distinctly,1,kinghenryviii,1612 Emperor,1,kinghenryviii,1612 unfit,1,kinghenryviii,1612 Acquainted,1,kinghenryviii,1612 Plague,1,kinghenryviii,1612 gracefully,1,kinghenryviii,1612 Oxford,1,kinghenryviii,1612 cap,1,kinghenryviii,1612 struck,1,kinghenryviii,1612 arose,1,kinghenryviii,1612 Continual,1,kinghenryviii,1612 attention,1,kinghenryviii,1612 altar,1,kinghenryviii,1612 Surely,1,kinghenryviii,1612 shepherds,1,kinghenryviii,1612 dote,1,kinghenryviii,1612 tables,1,kinghenryviii,1612 furnished,1,kinghenryviii,1612 devised,1,kinghenryviii,1612 bolden'd,1,kinghenryviii,1612 weightier,1,kinghenryviii,1612 celebration,1,kinghenryviii,1612 woful,1,kinghenryviii,1612 wedlock,1,kinghenryviii,1612 treasons,1,kinghenryviii,1612 gall'd,1,kinghenryviii,1612 sustain,1,kinghenryviii,1612 shadow,1,kinghenryviii,1612 abbey,1,kinghenryviii,1612 Born,1,kinghenryviii,1612 Whitehall,1,kinghenryviii,1612 happen'd,1,kinghenryviii,1612 Didst,1,kinghenryviii,1612 gamester,1,kinghenryviii,1612 despise,1,kinghenryviii,1612 jury,1,kinghenryviii,1612 theme,1,kinghenryviii,1612 friendly,1,kinghenryviii,1612 Sing,1,kinghenryviii,1612 verity,1,kinghenryviii,1612 Tongues,1,kinghenryviii,1612 Patrum,1,kinghenryviii,1612 curse,1,kinghenryviii,1612 beget,1,kinghenryviii,1612 Press,1,kinghenryviii,1612 vows,1,kinghenryviii,1612 forgetful,1,kinghenryviii,1612 buy,1,kinghenryviii,1612 ORDER,1,kinghenryviii,1612 jurisdiction,1,kinghenryviii,1612 travel,1,kinghenryviii,1612 gather'd,1,kinghenryviii,1612 frowns,1,kinghenryviii,1612 tailors,1,kinghenryviii,1612 Lodged,1,kinghenryviii,1612 people's,1,kinghenryviii,1612 crack'd,1,kinghenryviii,1612 ambassadors,1,kinghenryviii,1612 Vain,1,kinghenryviii,1612 pains,1,kinghenryviii,1612 gate,1,kinghenryviii,1612 'Twas,1,kinghenryviii,1612 stretch,1,kinghenryviii,1612 moody,1,kinghenryviii,1612 hourly,1,kinghenryviii,1612 pitch,1,kinghenryviii,1612 remnants,1,kinghenryviii,1612 heap'd,1,kinghenryviii,1612 begs,1,kinghenryviii,1612 north,1,kinghenryviii,1612 footing,1,kinghenryviii,1612 pared,1,kinghenryviii,1612 hopeful,1,kinghenryviii,1612 piles,1,kinghenryviii,1612 spann'd,1,kinghenryviii,1612 holidame,1,kinghenryviii,1612 convey'd,1,kinghenryviii,1612 admirer,1,kinghenryviii,1612 Abusing,1,kinghenryviii,1612 quite,1,kinghenryviii,1612 river,1,kinghenryviii,1612 solemn,1,kinghenryviii,1612 store,1,kinghenryviii,1612 noted,1,kinghenryviii,1612 Stokesly,1,kinghenryviii,1612 storm,1,kinghenryviii,1612 deliverance,1,kinghenryviii,1612 childish,1,kinghenryviii,1612 deem,1,kinghenryviii,1612 departed,1,kinghenryviii,1612 virgin,1,kinghenryviii,1612 government,1,kinghenryviii,1612 'Tush,1,kinghenryviii,1612 affection,1,kinghenryviii,1612 'that,1,kinghenryviii,1612 plate,1,kinghenryviii,1612 wretch,1,kinghenryviii,1612 image,1,kinghenryviii,1612 Saba,1,kinghenryviii,1612 miles,1,kinghenryviii,1612 voyage,1,kinghenryviii,1612 Durst,1,kinghenryviii,1612 gallows,1,kinghenryviii,1612 continues,1,kinghenryviii,1612 gift,1,kinghenryviii,1612 emballing,1,kinghenryviii,1612 aid,1,kinghenryviii,1612 SONG,1,kinghenryviii,1612 stops,1,kinghenryviii,1612 Here's,1,kinghenryviii,1612 current,1,kinghenryviii,1612 painting,1,kinghenryviii,1612 beat,1,kinghenryviii,1612 violence,1,kinghenryviii,1612 unsolicited,1,kinghenryviii,1612 wreck,1,kinghenryviii,1612 Bless,1,kinghenryviii,1612 yes,1,kinghenryviii,1612 et,1,kinghenryviii,1612 Pass,1,kinghenryviii,1612 handsome,1,kinghenryviii,1612 ago,1,kinghenryviii,1612 Unless,1,kinghenryviii,1612 stone,1,kinghenryviii,1612 unworthy,1,kinghenryviii,1612 obligation,1,kinghenryviii,1612 gilt,1,kinghenryviii,1612 Revenge,1,kinghenryviii,1612 legatine,1,kinghenryviii,1612 gait,1,kinghenryviii,1612 vouchsafe,1,kinghenryviii,1612 worthily,1,kinghenryviii,1612 gild,1,kinghenryviii,1612 likely,1,kinghenryviii,1612 carders,1,kinghenryviii,1612 holiday,1,kinghenryviii,1612 nobleman,1,kinghenryviii,1612 Last,1,kinghenryviii,1612 truncheoners,1,kinghenryviii,1612 I've,1,kinghenryviii,1612 lighten,1,kinghenryviii,1612 makers,1,kinghenryviii,1612 suggestion,1,kinghenryviii,1612 lend,1,kinghenryviii,1612 lighted,1,kinghenryviii,1612 gall,1,kinghenryviii,1612 dwarfish,1,kinghenryviii,1612 destruction,1,kinghenryviii,1612 unwillingly,1,kinghenryviii,1612 forged,1,kinghenryviii,1612 accused,1,kinghenryviii,1612 stockings,1,kinghenryviii,1612 bounties,1,kinghenryviii,1612 generally,1,kinghenryviii,1612 treaty,1,kinghenryviii,1612 glistering,1,kinghenryviii,1612 by't,1,kinghenryviii,1612 by'r,1,kinghenryviii,1612 Doublets,1,kinghenryviii,1612 speed,1,kinghenryviii,1612 ale,1,kinghenryviii,1612 crab,1,kinghenryviii,1612 possess'd,1,kinghenryviii,1612 gentlewoman,1,kinghenryviii,1612 shed,1,kinghenryviii,1612 cruelty,1,kinghenryviii,1612 porters,1,kinghenryviii,1612 forget,1,kinghenryviii,1612 thyself,1,kinghenryviii,1612 bless'd,1,kinghenryviii,1612 correct,1,kinghenryviii,1612 feast,1,kinghenryviii,1612 prosper,1,kinghenryviii,1612 betray'd,1,kinghenryviii,1612 ask'd,1,kinghenryviii,1612 commend,1,kinghenryviii,1612 approbation,1,kinghenryviii,1612 railed,1,kinghenryviii,1612 rain'd,1,kinghenryviii,1612 bites,1,kinghenryviii,1612 bodies,1,kinghenryviii,1612 demi,1,kinghenryviii,1612 orphans',1,kinghenryviii,1612 region,1,kinghenryviii,1612 meteor,1,kinghenryviii,1612 unspotted,1,kinghenryviii,1612 Reach,1,kinghenryviii,1612 gladded,1,kinghenryviii,1612 grip'd,1,kinghenryviii,1612 legate,1,kinghenryviii,1612 whereof,1,kinghenryviii,1612 collected,1,kinghenryviii,1612 straying,1,kinghenryviii,1612 malignant,1,kinghenryviii,1612 reciprocally,1,kinghenryviii,1612 Live,1,kinghenryviii,1612 account,1,kinghenryviii,1612 Kildare's,1,kinghenryviii,1612 scholar,1,kinghenryviii,1612 regina,1,kinghenryviii,1612 Domestics,1,kinghenryviii,1612 India,1,kinghenryviii,1612 cloaks,1,kinghenryviii,1612 mightiness,1,kinghenryviii,1612 Marshalsea,1,kinghenryviii,1612 eminent,1,kinghenryviii,1612 value,1,kinghenryviii,1612 lackeys,1,kinghenryviii,1612 venturous,1,kinghenryviii,1612 lover,1,kinghenryviii,1612 spell,1,kinghenryviii,1612 studied,1,kinghenryviii,1612 stout,1,kinghenryviii,1612 challenged,1,kinghenryviii,1612 settled,1,kinghenryviii,1612 offer'd,1,kinghenryviii,1612 grooms,1,kinghenryviii,1612 superstitious,1,kinghenryviii,1612 ado,1,kinghenryviii,1612 parents,1,kinghenryviii,1612 humblest,1,kinghenryviii,1612 commands,1,kinghenryviii,1612 agony,1,kinghenryviii,1612 semblance,1,kinghenryviii,1612 lest,1,kinghenryviii,1612 angels',1,kinghenryviii,1612 potent,1,kinghenryviii,1612 strangers',1,kinghenryviii,1612 filling,1,kinghenryviii,1612 huntsman,1,kinghenryviii,1612 strains,1,kinghenryviii,1612 necessary,1,kinghenryviii,1612 feats,1,kinghenryviii,1612 smart,1,kinghenryviii,1612 bootless,1,kinghenryviii,1612 mischiefs,1,kinghenryviii,1612 statues,1,kinghenryviii,1612 forgot,1,kinghenryviii,1612 shoals,1,kinghenryviii,1612 untimely,1,kinghenryviii,1612 severing,1,kinghenryviii,1612 natures,1,kinghenryviii,1612 summers,1,kinghenryviii,1612 Guards,1,kinghenryviii,1612 wisest,1,kinghenryviii,1612 presume,1,kinghenryviii,1612 climb,1,kinghenryviii,1612 harm,1,kinghenryviii,1612 detests,1,kinghenryviii,1612 prescription,1,kinghenryviii,1612 graver,1,kinghenryviii,1612 gravel,1,kinghenryviii,1612 ornaments,1,kinghenryviii,1612 oppression,1,kinghenryviii,1612 cherubins,1,kinghenryviii,1612 fierce,1,kinghenryviii,1612 blamed,1,kinghenryviii,1612 scratch,1,kinghenryviii,1612 imprisonment,1,kinghenryviii,1612 Break,1,kinghenryviii,1612 front,1,kinghenryviii,1612 faints,1,kinghenryviii,1612 frighted,1,kinghenryviii,1612 isle,1,kinghenryviii,1612 spleeny,1,kinghenryviii,1612 string,1,kinghenryviii,1612 Kate,1,kinghenryviii,1612 popedom,1,kinghenryviii,1612 afford,1,kinghenryviii,1612 spells,1,kinghenryviii,1612 te,1,kinghenryviii,1612 beggar's,1,kinghenryviii,1612 cheveril,1,kinghenryviii,1612 earl's,1,kinghenryviii,1612 kingly,1,kinghenryviii,1612 suggests,1,kinghenryviii,1612 mysteries,1,kinghenryviii,1612 pale,1,kinghenryviii,1612 palm,1,kinghenryviii,1612 employ'd,1,kinghenryviii,1612 perform'd,1,kinghenryviii,1612 thrift,1,kinghenryviii,1612 Read,1,kinghenryviii,1612 spur,1,kinghenryviii,1612 Healthful,1,kinghenryviii,1612 trade,1,kinghenryviii,1612 Continue,1,kinghenryviii,1612 repeat,1,kinghenryviii,1612 Beware,1,kinghenryviii,1612 perform't,1,kinghenryviii,1612 liberty,1,kinghenryviii,1612 nobleness,1,kinghenryviii,1612 cited,1,kinghenryviii,1612 Full,1,kinghenryviii,1612 draws,1,kinghenryviii,1612 sincere,1,kinghenryviii,1612 mentis,1,kinghenryviii,1612 Restored,1,kinghenryviii,1612 purgation,1,kinghenryviii,1612 protects,1,kinghenryviii,1612 State,1,kinghenryviii,1612 monks,1,kinghenryviii,1612 reproved,1,kinghenryviii,1612 sweetest,1,kinghenryviii,1612 tract,1,kinghenryviii,1612 Salutes,1,kinghenryviii,1612 Induce,1,kinghenryviii,1612 provided,1,kinghenryviii,1612 During,1,kinghenryviii,1612 miscarried,1,kinghenryviii,1612 Indies,1,kinghenryviii,1612 potency,1,kinghenryviii,1612 pluck,1,kinghenryviii,1612 whether,1,kinghenryviii,1612 city,1,kinghenryviii,1612 expect,1,kinghenryviii,1612 pausingly,1,kinghenryviii,1612 brothers,1,kinghenryviii,1612 prepare,1,kinghenryviii,1612 'Clubs,1,kinghenryviii,1612 kingdoms,1,kinghenryviii,1612 considerings,1,kinghenryviii,1612 Commend,1,kinghenryviii,1612 drake,1,kinghenryviii,1612 dominions,1,kinghenryviii,1612 wastes,1,kinghenryviii,1612 courts,1,kinghenryviii,1612 neglect,1,kinghenryviii,1612 hangs,1,kinghenryviii,1612 paid,1,kinghenryviii,1612 wagging,1,kinghenryviii,1612 spit,1,kinghenryviii,1612 persuasions,1,kinghenryviii,1612 money,1,kinghenryviii,1612 fore,1,kinghenryviii,1612 acquire,1,kinghenryviii,1612 mock,1,kinghenryviii,1612 apt,1,kinghenryviii,1612 Prepare,1,kinghenryviii,1612 Asaph,1,kinghenryviii,1612 scatter,1,kinghenryviii,1612 strive,1,kinghenryviii,1612 attach,1,kinghenryviii,1612 foot,1,kinghenryviii,1612 Indian,1,kinghenryviii,1612 pack,1,kinghenryviii,1612 alive,1,kinghenryviii,1612 shot,1,kinghenryviii,1612 rogue,1,kinghenryviii,1612 hats,1,kinghenryviii,1612 fishes,1,kinghenryviii,1612 billows,1,kinghenryviii,1612 proper,1,kinghenryviii,1612 gentry,1,kinghenryviii,1612 consideration,1,kinghenryviii,1612 counsellors,1,kinghenryviii,1612 retainers,1,kinghenryviii,1612 rough,1,kinghenryviii,1612 rebell'd,1,kinghenryviii,1612 uproars,1,kinghenryviii,1612 Fell,1,kinghenryviii,1612 saints,1,kinghenryviii,1612 Arde,1,kinghenryviii,1612 prepared,1,kinghenryviii,1612 bearer,1,kinghenryviii,1612 revenge,1,kinghenryviii,1612 yard,1,kinghenryviii,1612 lousy,1,kinghenryviii,1612 Order,1,kinghenryviii,1612 creatures,1,kinghenryviii,1612 beneficial,1,kinghenryviii,1612 Weary,1,kinghenryviii,1612 push,1,kinghenryviii,1612 assistants,1,kinghenryviii,1612 inscribed,1,kinghenryviii,1612 monument,1,kinghenryviii,1612 rightly,1,kinghenryviii,1612 fold,1,kinghenryviii,1612 Breed,1,kinghenryviii,1612 havings,1,kinghenryviii,1612 She'll,1,kinghenryviii,1612 Short,1,kinghenryviii,1612 Strikes,1,kinghenryviii,1612 open't,1,kinghenryviii,1612 unthink,1,kinghenryviii,1612 bought,1,kinghenryviii,1612 undone,1,kinghenryviii,1612 Hark,1,kinghenryviii,1612 fee,1,kinghenryviii,1612 purchased,1,kinghenryviii,1612 Again,1,kinghenryviii,1612 mazed,1,kinghenryviii,1612 sweetly,1,kinghenryviii,1612 Sometimes,1,kinghenryviii,1612 manors,1,kinghenryviii,1612 naughty,1,kinghenryviii,1612 justify,1,kinghenryviii,1612 butcher's,1,kinghenryviii,1612 net,1,kinghenryviii,1612 maim'd,1,kinghenryviii,1612 flatteries,1,kinghenryviii,1612 daring,1,kinghenryviii,1612 deem'd,1,kinghenryviii,1612 mention,1,kinghenryviii,1612 ridiculous,1,kinghenryviii,1612 Dangers,1,kinghenryviii,1612 ceases,1,kinghenryviii,1612 Pertains,1,kinghenryviii,1612 Ask,1,kinghenryviii,1612 enjoy,1,kinghenryviii,1612 willingly,1,kinghenryviii,1612 Stood,1,kinghenryviii,1612 Hate,1,kinghenryviii,1612 beams,1,kinghenryviii,1612 guest,1,kinghenryviii,1612 thought's,1,kinghenryviii,1612 tastes,1,kinghenryviii,1612 here's,1,kinghenryviii,1612 Vergers,1,kinghenryviii,1612 Lucifer,1,kinghenryviii,1612 Stops,1,kinghenryviii,1612 superfluous,1,kinghenryviii,1612 Strangely,1,kinghenryviii,1612 height,1,kinghenryviii,1612 nobler,1,kinghenryviii,1612 humbleness,1,kinghenryviii,1612 Clotharius,1,kinghenryviii,1612 execute,1,kinghenryviii,1612 luck,1,kinghenryviii,1612 Shows,1,kinghenryviii,1612 meus',1,kinghenryviii,1612 rays,1,kinghenryviii,1612 lacking,1,kinghenryviii,1612 procession,1,kinghenryviii,1612 Comes,1,kinghenryviii,1612 often,1,kinghenryviii,1612 leap,1,kinghenryviii,1612 room,1,kinghenryviii,1612 WOLSEY's,1,kinghenryviii,1612 Collected,1,kinghenryviii,1612 long'd,1,kinghenryviii,1612 condemn'd,1,kinghenryviii,1612 Leap'd,1,kinghenryviii,1612 perceives,1,kinghenryviii,1612 Greenwich,1,kinghenryviii,1612 glories,1,kinghenryviii,1612 confederacy,1,kinghenryviii,1612 incomparable,1,kinghenryviii,1612 Beauty,1,kinghenryviii,1612 expected,1,kinghenryviii,1612 Become,1,kinghenryviii,1612 bedchamber,1,kinghenryviii,1612 inside,1,kinghenryviii,1612 maid,1,kinghenryviii,1612 consider'd,1,kinghenryviii,1612 tarry,1,kinghenryviii,1612 comptrollers,1,kinghenryviii,1612 Stafford,1,kinghenryviii,1612 carried,1,kinghenryviii,1612 embracement,1,kinghenryviii,1612 honey,1,kinghenryviii,1612 'Thus,1,kinghenryviii,1612 Spoke,1,kinghenryviii,1612 Leicester,1,kinghenryviii,1612 nations,1,kinghenryviii,1612 hill,1,kinghenryviii,1612 griefs,1,kinghenryviii,1612 panging,1,kinghenryviii,1612 rams,1,kinghenryviii,1612 Aldermen,1,kinghenryviii,1612 shouldst,1,kinghenryviii,1612 misfortunes,1,kinghenryviii,1612 barons,1,kinghenryviii,1612 session,1,kinghenryviii,1612 undeserver,1,kinghenryviii,1612 objections,1,kinghenryviii,1612 takest,1,kinghenryviii,1612 whitest,1,kinghenryviii,1612 clapp'd,1,kinghenryviii,1612 build,1,kinghenryviii,1612 assuredly,1,kinghenryviii,1612 rolling,1,kinghenryviii,1612 bores,1,kinghenryviii,1612 motley,1,kinghenryviii,1612 'Gainst,1,kinghenryviii,1612 Cranmer's,1,kinghenryviii,1612 darts,1,kinghenryviii,1612 repose,1,kinghenryviii,1612 flocks,1,kinghenryviii,1612 Hall,1,kinghenryviii,1612 thinks,1,kinghenryviii,1612 omit,1,kinghenryviii,1612 rooted,1,kinghenryviii,1612 meridian,1,kinghenryviii,1612 Richly,1,kinghenryviii,1612 martyr,1,kinghenryviii,1612 Banister,1,kinghenryviii,1612 contains,1,kinghenryviii,1612 furniture,1,kinghenryviii,1612 action,1,kinghenryviii,1612 gavest,1,kinghenryviii,1612 hire,1,kinghenryviii,1612 patents,1,kinghenryviii,1612 faculties,1,kinghenryviii,1612 halberds,1,kinghenryviii,1612 damage,1,kinghenryviii,1612 accusations,1,kinghenryviii,1612 QUEEN'S,1,kinghenryviii,1612 cedar,1,kinghenryviii,1612 Bade,1,kinghenryviii,1612 Show'd,1,kinghenryviii,1612 prodigal,1,kinghenryviii,1612 restore,1,kinghenryviii,1612 gently,1,kinghenryviii,1612 penny,1,kinghenryviii,1612 mounted,1,kinghenryviii,1612 Peace,1,kinghenryviii,1612 exhalation,1,kinghenryviii,1612 Urged,1,kinghenryviii,1612 juror,1,kinghenryviii,1612 Protect,1,kinghenryviii,1612 distribute,1,kinghenryviii,1612 pales,1,kinghenryviii,1612 deserving,1,kinghenryviii,1612 Bar,1,kinghenryviii,1612 Flourish,1,kinghenryviii,1612 Britain,1,kinghenryviii,1612 temperance,1,kinghenryviii,1612 disgraced,1,kinghenryviii,1612 schedule,1,kinghenryviii,1612 queens,1,kinghenryviii,1612 primer,1,kinghenryviii,1612 Pursued,1,kinghenryviii,1612 blew,1,kinghenryviii,1612 candle,1,kinghenryviii,1612 est,1,kinghenryviii,1612 tenor,1,kinghenryviii,1612 thinkings,1,kinghenryviii,1612 feature,1,kinghenryviii,1612 Beseeching,1,kinghenryviii,1612 Christians,1,kinghenryviii,1612 sirrah,1,kinghenryviii,1612 disciples,1,kinghenryviii,1612 Love,1,kinghenryviii,1612 mock'd,1,kinghenryviii,1612 personages,1,kinghenryviii,1612 'That's,1,kinghenryviii,1612 strike,1,kinghenryviii,1612 foreseeing,1,kinghenryviii,1612 furnace,1,kinghenryviii,1612 meditating,1,kinghenryviii,1612 excused,1,kinghenryviii,1612 Trace,1,kinghenryviii,1612 Flying,1,kinghenryviii,1612 Sit,1,kinghenryviii,1612 perused,1,kinghenryviii,1612 visage,1,kinghenryviii,1612 Bark,1,kinghenryviii,1612 alter,1,kinghenryviii,1612 Peep,1,kinghenryviii,1612 Embrace,1,kinghenryviii,1612 arguments,1,kinghenryviii,1612 affections,1,kinghenryviii,1612 stays,1,kinghenryviii,1612 garden,1,kinghenryviii,1612 mate,1,kinghenryviii,1612 quickly,1,kinghenryviii,1612 you'ld,1,kinghenryviii,1612 fornication,1,kinghenryviii,1612 begging,1,kinghenryviii,1612 Further,1,kinghenryviii,1612 perform,1,kinghenryviii,1612 paces,1,kinghenryviii,1612 chine,1,kinghenryviii,1612 hinder'd,1,kinghenryviii,1612 odious,1,kinghenryviii,1612 ignorant,1,kinghenryviii,1612 escapes,1,kinghenryviii,1612 misery,1,kinghenryviii,1612 unhappy,1,kinghenryviii,1612 intercession,1,kinghenryviii,1612 evermore,1,kinghenryviii,1612 dares,1,kinghenryviii,1612 Certain,1,kinghenryviii,1612 housewife,1,kinghenryviii,1612 masque,1,kinghenryviii,1612 anger's,1,kinghenryviii,1612 rejoicing,1,kinghenryviii,1612 indurance,1,kinghenryviii,1612 several,1,kinghenryviii,1612 uproar,1,kinghenryviii,1612 powers,1,kinghenryviii,1612 Health,1,kinghenryviii,1612 Flanders,1,kinghenryviii,1612 besmear'd,1,kinghenryviii,1612 Turns,1,kinghenryviii,1612 injustice,1,kinghenryviii,1612 placed,1,kinghenryviii,1612 recount,1,kinghenryviii,1612 mourn,1,kinghenryviii,1612 afflictions,1,kinghenryviii,1612 inform'd,1,kinghenryviii,1612 appointment,1,kinghenryviii,1612 err,1,kinghenryviii,1612 paced,1,kinghenryviii,1612 likewise,1,kinghenryviii,1612 rolls,1,kinghenryviii,1612 Free,1,kinghenryviii,1612 Foretold,1,kinghenryviii,1612 mortar,1,kinghenryviii,1612 realms,1,kinghenryviii,1612 arrived,1,kinghenryviii,1612 'If,1,kinghenryviii,1612 Long,1,kinghenryviii,1612 budded,1,kinghenryviii,1612 singing,1,kinghenryviii,1612 learnedly,1,kinghenryviii,1612 teeth,1,kinghenryviii,1612 discerner,1,kinghenryviii,1612 stars,1,kinghenryviii,1612 qualities,1,kinghenryviii,1612 approaches,1,kinghenryviii,1612 shield,1,kinghenryviii,1612 Choristers,1,kinghenryviii,1612 range,1,kinghenryviii,1612 purposes,1,kinghenryviii,1612 playfellows,1,kinghenryviii,1612 foul'st,1,kinghenryviii,1612 silenced,1,kinghenryviii,1612 crawl'd,1,kinghenryviii,1612 vent,1,kinghenryviii,1612 woven,1,kinghenryviii,1612 beads,1,kinghenryviii,1612 confidence,1,kinghenryviii,1612 keeper,1,kinghenryviii,1612 beggar,1,kinghenryviii,1612 bloody,1,kinghenryviii,1612 procure,1,kinghenryviii,1612 Grievous,1,kinghenryviii,1612 covent,1,kinghenryviii,1612 'gainst,1,kinghenryviii,1612 decline,1,kinghenryviii,1612 dearest,1,kinghenryviii,1612 'Do,1,kinghenryviii,1612 kissing,1,kinghenryviii,1612 dream,1,kinghenryviii,1612 proudest,1,kinghenryviii,1612 mars,1,kinghenryviii,1612 misdemean'd,1,kinghenryviii,1612 Limehouse,1,kinghenryviii,1612 afflicted,1,kinghenryviii,1612 slave,1,kinghenryviii,1612 Any,1,kinghenryviii,1612 furnish'd,1,kinghenryviii,1612 Crave,1,kinghenryviii,1612 Gave't,1,kinghenryviii,1612 because,1,kinghenryviii,1612 wot,1,kinghenryviii,1612 Ferdinand,1,kinghenryviii,1612 woo,1,kinghenryviii,1612 blow,1,kinghenryviii,1612 revengeful,1,kinghenryviii,1612 chaff,1,kinghenryviii,1612 vision,1,kinghenryviii,1612 adorned,1,kinghenryviii,1612 Invite,1,kinghenryviii,1612 beside,1,kinghenryviii,1612 shoulder,1,kinghenryviii,1612 brazier,1,kinghenryviii,1612 fret,1,kinghenryviii,1612 benefit,1,kinghenryviii,1612 fish,1,kinghenryviii,1612 'Te,1,kinghenryviii,1612 father's,1,kinghenryviii,1612 who'll,1,kinghenryviii,1612 holily,1,kinghenryviii,1612 plenteous,1,kinghenryviii,1612 Stubborn,1,kinghenryviii,1612 constable,1,kinghenryviii,1612 hypocrisy,1,kinghenryviii,1612 discharge,1,kinghenryviii,1612 naught,1,kinghenryviii,1612 ordinary,1,kinghenryviii,1612 heaviest,1,kinghenryviii,1612 whispering,1,kinghenryviii,1612 doubted,1,kinghenryviii,1612 warranted,1,kinghenryviii,1612 dainty,1,kinghenryviii,1612 privileged,1,kinghenryviii,1612 accusation,1,kinghenryviii,1612 allegiant,1,kinghenryviii,1612 Strand,1,kinghenryviii,1612 propp'd,1,kinghenryviii,1612 horrible,1,kinghenryviii,1612 oil,1,kinghenryviii,1612 Bosom,1,kinghenryviii,1612 desires,1,kinghenryviii,1612 Lofty,1,kinghenryviii,1612 ripeness,1,kinghenryviii,1612 Commanded,1,kinghenryviii,1612 unfolded,1,kinghenryviii,1612 wed,1,kinghenryviii,1612 forgiven,1,kinghenryviii,1612 o'clock,1,kinghenryviii,1612 web,1,kinghenryviii,1612 Avoid,1,kinghenryviii,1612 louder,1,kinghenryviii,1612 forego,1,kinghenryviii,1612 Confessor's,1,kinghenryviii,1612 knavery,1,kinghenryviii,1612 trembling,1,kinghenryviii,1612 passage,1,kinghenryviii,1612 tribulation,1,kinghenryviii,1612 maids,1,kinghenryviii,1612 troublesome,1,kinghenryviii,1612 'Twixt,1,kinghenryviii,1612 claims,1,kinghenryviii,1612 darkening,1,kinghenryviii,1612 Masquers,1,kinghenryviii,1612 sting,1,kinghenryviii,1612 stint,1,kinghenryviii,1612 They'll,1,kinghenryviii,1612 wrongs,1,kinghenryviii,1612 person's,1,kinghenryviii,1612 contemplation,1,kinghenryviii,1612 hoods,1,kinghenryviii,1612 gem,1,kinghenryviii,1612 thine,1,kinghenryviii,1612 pound,1,kinghenryviii,1612 'My,1,kinghenryviii,1612 neck,1,kinghenryviii,1612 Maid,1,kinghenryviii,1612 unhappily,1,kinghenryviii,1612 Forgetting,1,kinghenryviii,1612 dishonour,1,kinghenryviii,1612 O'ermount,1,kinghenryviii,1612 fits,1,kinghenryviii,1612 throw,1,kinghenryviii,1612 entreaties,1,kinghenryviii,1612 Look'd,1,kinghenryviii,1612 types,1,kinghenryviii,1612 throe,1,kinghenryviii,1612 stamp,1,kinghenryviii,1612 Witness,1,kinghenryviii,1612 enters,1,kinghenryviii,1612 capable,1,kinghenryviii,1612 scatters,1,kinghenryviii,1612 though't,1,kinghenryviii,1612 Peep'd,1,kinghenryviii,1612 provoke,1,kinghenryviii,1612 why,1,kinghenryviii,1612 Dread,1,kinghenryviii,1612 'Twill,1,kinghenryviii,1612 you've,1,kinghenryviii,1612 receipt,1,kinghenryviii,1612 footboy,1,kinghenryviii,1612 bawdy,1,kinghenryviii,1612 publish'd,1,kinghenryviii,1612 Clap,1,kinghenryviii,1612 Papers,1,kinghenryviii,1612 gladding,1,kinghenryviii,1612 curs,1,kinghenryviii,1612 hears,1,kinghenryviii,1612 fetch,1,kinghenryviii,1612 usurping,1,kinghenryviii,1612 prime,1,kinghenryviii,1612 comfortless,1,kinghenryviii,1612 THOMAS,1,kinghenryviii,1612 banish'd,1,kinghenryviii,1612 tractable,1,kinghenryviii,1612 marshal's,1,kinghenryviii,1612 gap,1,kinghenryviii,1612 Rochester,1,kinghenryviii,1612 Unmasking,1,kinghenryviii,1612 allegiance,1,kinghenryviii,1612 waking,1,kinghenryviii,1612 meaner,1,kinghenryviii,1612 protect,1,kinghenryviii,1612 posted,1,kinghenryviii,1612 CORONATION,1,kinghenryviii,1612 Hardly,1,kinghenryviii,1612 Beheld,1,kinghenryviii,1612 frailty,1,kinghenryviii,1612 happiest,1,kinghenryviii,1612 conjectures,1,kinghenryviii,1612 musicians,1,kinghenryviii,1612 grosser,1,kinghenryviii,1612 healths,1,kinghenryviii,1612 ripe,1,kinghenryviii,1612 choked,1,kinghenryviii,1612 Germany,1,kinghenryviii,1612 standing,1,kinghenryviii,1612 Shower'd,1,kinghenryviii,1612 They're,1,kinghenryviii,1612 negligence,1,kinghenryviii,1612 filed,1,kinghenryviii,1612 vouch,1,kinghenryviii,1612 remains,1,kinghenryviii,1612 distress'd,1,kinghenryviii,1612 subtle,1,kinghenryviii,1612 speeding,1,kinghenryviii,1612 Rose,1,kinghenryviii,1612 'Mong,1,kinghenryviii,1612 colt's,1,kinghenryviii,1612 fling,1,kinghenryviii,1612 O'ertopping,1,kinghenryviii,1612 unseal,1,kinghenryviii,1612 issues,1,kinghenryviii,1612 Dwell,1,kinghenryviii,1612 stiff,1,kinghenryviii,1612 tunes,1,kinghenryviii,1612 Ween,1,kinghenryviii,1612 earnest,1,kinghenryviii,1612 army,1,kinghenryviii,1612 mould,1,kinghenryviii,1612 Dunstable,1,kinghenryviii,1612 mounting,1,kinghenryviii,1612 Remove,1,kinghenryviii,1612 prevail,1,kinghenryviii,1612 hopeless,1,kinghenryviii,1612 preferments,1,kinghenryviii,1612 'To,1,kinghenryviii,1612 fancy's,1,kinghenryviii,1612 audience,1,kinghenryviii,1612 perforce,1,kinghenryviii,1612 Scruple,1,kinghenryviii,1612 intend,1,kinghenryviii,1612 opposing,1,kinghenryviii,1612 fellow's,1,kinghenryviii,1612 determines,1,kinghenryviii,1612 they'll,1,kinghenryviii,1612 rage,1,kinghenryviii,1612 Rex,1,kinghenryviii,1612 Ampthill,1,kinghenryviii,1612 serve,1,kinghenryviii,1612 bedfellow,1,kinghenryviii,1612 ANNE's,1,kinghenryviii,1612 covetous,1,kinghenryviii,1612 Knowing,1,kinghenryviii,1612 declare,1,kinghenryviii,1612 prick,1,kinghenryviii,1612 supper,1,kinghenryviii,1612 taxations,1,kinghenryviii,1612 women's,1,kinghenryviii,1612 multitude,1,kinghenryviii,1612 professors,1,kinghenryviii,1612 breakfast,1,kinghenryviii,1612 Physician,1,kinghenryviii,1612 Three,1,kinghenryviii,1612 flourish'd,1,kinghenryviii,1612 bounty,1,kinghenryviii,1612 Given,1,kinghenryviii,1612 ruins,1,kinghenryviii,1612 caught,1,kinghenryviii,1612 appliance,1,kinghenryviii,1612 Gives,1,kinghenryviii,1612 Sixth,1,kinghenryviii,1612 Chattels,1,kinghenryviii,1612 produced,1,kinghenryviii,1612 Egypt,1,kinghenryviii,1612 Infecting,1,kinghenryviii,1612 clinquant,1,kinghenryviii,1612 Pageants,1,kinghenryviii,1612 unwittingly,1,kinghenryviii,1612 agree,1,kinghenryviii,1612 dreams,1,kinghenryviii,1612 mettle,1,kinghenryviii,1612 rake,1,kinghenryviii,1612 surrender,1,kinghenryviii,1612 unpartial,1,kinghenryviii,1612 faithless,1,kinghenryviii,1612 estates,1,kinghenryviii,1612 exclamation,1,kinghenryviii,1612 slavery,1,kinghenryviii,1612 what's,1,kinghenryviii,1612 charges,1,kinghenryviii,1612 poison,1,kinghenryviii,1612 listening,1,kinghenryviii,1612 charged,1,kinghenryviii,1612 size,1,kinghenryviii,1612 wasps,1,kinghenryviii,1612 angel,1,kinghenryviii,1612 Commends,1,kinghenryviii,1612 vicious,1,kinghenryviii,1612 forfeit,1,kinghenryviii,1612 tamely,1,kinghenryviii,1612 roads,1,kinghenryviii,1612 killing,1,kinghenryviii,1612 Sharp,1,kinghenryviii,1612 hack'd,1,kinghenryviii,1612 womb,1,kinghenryviii,1612 keech,1,kinghenryviii,1612 Bourdeaux,1,kinghenryviii,1612 rail,1,kinghenryviii,1612 disposition,1,kinghenryviii,1612 unite,1,kinghenryviii,1612 dull,1,kinghenryviii,1612 Outworths,1,kinghenryviii,1612 perfidious,1,kinghenryviii,1612 yoke,1,kinghenryviii,1612 wolf,1,kinghenryviii,1612 grain,1,kinghenryviii,1612 drops,1,kinghenryviii,1612 fry,1,kinghenryviii,1612 serves,1,kinghenryviii,1612 unsatisfied,1,kinghenryviii,1612 waste,1,kinghenryviii,1612 marble,1,kinghenryviii,1612 masquers,1,kinghenryviii,1612 fox,1,kinghenryviii,1612 Forbear,1,kinghenryviii,1612 stepp'd,1,kinghenryviii,1612 stirs,1,kinghenryviii,1612 whence,1,kinghenryviii,1612 authors,1,kinghenryviii,1612 Deum,1,kinghenryviii,1612 fill'd,1,kinghenryviii,1612 Whispers,1,kinghenryviii,1612 heathen,1,kinghenryviii,1612 hideous,1,kinghenryviii,1612 contempt,1,kinghenryviii,1612 untruths,1,kinghenryviii,1612 heirs,1,kinghenryviii,1612 doubled,1,kinghenryviii,1612 create,1,kinghenryviii,1612 hunger,1,kinghenryviii,1612 emblems,1,kinghenryviii,1612 outgo,1,kinghenryviii,1612 Learned,1,kinghenryviii,1612 inkling,1,kinghenryviii,1612 examination,1,kinghenryviii,1612 wept,1,kinghenryviii,1612 diseases,1,kinghenryviii,1612 postures,1,kinghenryviii,1612 'fore,1,kinghenryviii,1612 blister'd,1,kinghenryviii,1612 Thither,1,kinghenryviii,1612 giving,1,kinghenryviii,1612 Promises,1,kinghenryviii,1612 constancy,1,kinghenryviii,1612 wander,1,kinghenryviii,1612 lump,1,kinghenryviii,1612 lasting,1,kinghenryviii,1612 Corruption,1,kinghenryviii,1612 grand,1,kinghenryviii,1612 quartered,1,kinghenryviii,1612 returns,1,kinghenryviii,1612 Dowager,1,kinghenryviii,1612 parcels,1,kinghenryviii,1612 earthy,1,kinghenryviii,1612 worn,1,kinghenryviii,1612 weavers,1,kinghenryviii,1612 righteous,1,kinghenryviii,1612 fly,1,kinghenryviii,1612 passing,1,kinghenryviii,1612 Malice,1,kinghenryviii,1612 caution,1,kinghenryviii,1612 Sweet,1,kinghenryviii,1612 Grievingly,1,kinghenryviii,1612 solicited,1,kinghenryviii,1612 they're,1,kinghenryviii,1612 perfect,1,kinghenryviii,1612 fine,1,kinghenryviii,1612 passion,1,kinghenryviii,1612 playhouse,1,kinghenryviii,1612 unfinish'd,1,kinghenryviii,1612 Shut,1,kinghenryviii,1612 swallow'd,1,kinghenryviii,1612 Moorfields,1,kinghenryviii,1612 separation,1,kinghenryviii,1612 wishing,1,kinghenryviii,1612 pleases,1,kinghenryviii,1612 Bow,1,kinghenryviii,1612 spinsters,1,kinghenryviii,1612 clad,1,kinghenryviii,1612 admiration,1,kinghenryviii,1612 Shone,1,kinghenryviii,1612 renouncing,1,kinghenryviii,1612 handmaid,1,kinghenryviii,1612 clap,1,kinghenryviii,1612 preservation,1,kinghenryviii,1612 friar,1,kinghenryviii,1612 reviled,1,kinghenryviii,1612 bark,1,kinghenryviii,1612 rebuke,1,kinghenryviii,1612 duties,1,kinghenryviii,1612 niggard,1,kinghenryviii,1612 minded,1,kinghenryviii,1612 thunder,1,kinghenryviii,1612 contagious,1,kinghenryviii,1612 shown,1,kinghenryviii,1612 clung,1,kinghenryviii,1612 worship,1,kinghenryviii,1612 arrogancy,1,kinghenryviii,1612 shows,1,kinghenryviii,1612 ratified,1,kinghenryviii,1612 unconsider'd,1,kinghenryviii,1612 arrogance,1,kinghenryviii,1612 fondness,1,kinghenryviii,1612 vex,1,kinghenryviii,1612 practise,1,kinghenryviii,1612 depart,1,kinghenryviii,1612 unsay't,1,kinghenryviii,1612 larks,1,kinghenryviii,1612 scenes,1,kinghenryviii,1612 Hereford,1,kinghenryviii,1612 wonted,1,kinghenryviii,1612 Judges,1,kinghenryviii,1612 meaning,1,kinghenryviii,1612 freshly,1,kinghenryviii,1612 Ferrara,1,kinghenryviii,1612 aunt,1,kinghenryviii,1612 public,1,kinghenryviii,1612 deliver'd,1,kinghenryviii,1612 adjourn,1,kinghenryviii,1612 friendship,1,kinghenryviii,1612 Arrested,1,kinghenryviii,1612 founder,1,kinghenryviii,1612 hallow'd,1,kinghenryviii,1612 Lutheran,1,kinghenryviii,1612 Very,1,kinghenryviii,1612 integritas,1,kinghenryviii,1612 tame,1,kinghenryviii,1612 rising,1,kinghenryviii,1612 dam,1,kinghenryviii,1612 Noise,1,kinghenryviii,1612 will'd,1,kinghenryviii,1612 strove,1,kinghenryviii,1612 large,1,kinghenryviii,1612 Each,1,kinghenryviii,1612 songs,1,kinghenryviii,1612 evidence,1,kinghenryviii,1612 Offers,1,kinghenryviii,1612 meets,1,kinghenryviii,1612 lights,1,kinghenryviii,1612 lag,1,kinghenryviii,1612 gallant,1,kinghenryviii,1612 ache,1,kinghenryviii,1612 buzzing,1,kinghenryviii,1612 officious,1,kinghenryviii,1612 tall,1,kinghenryviii,1612 creed,1,kinghenryviii,1612 Louvre,1,kinghenryviii,1612 Invited,1,kinghenryviii,1612 constant,1,kinghenryviii,1612 reckon'd,1,kinghenryviii,1612 witchcraft,1,kinghenryviii,1612 fruitful,1,kinghenryviii,1612 whatsoe'er,1,kinghenryviii,1612 fresher,1,kinghenryviii,1612 Appear,1,kinghenryviii,1612 memorised,1,kinghenryviii,1612 hatred,1,kinghenryviii,1612 sixth,1,kinghenryviii,1612 Worse,1,kinghenryviii,1612 entering,1,kinghenryviii,1612 asunder,1,kinghenryviii,1612 Rochford,1,kinghenryviii,1612 sights,1,kinghenryviii,1612 tangled,1,kinghenryviii,1612 pledge,1,kinghenryviii,1612 holds,1,kinghenryviii,1612 heresies,1,kinghenryviii,1612 shook,1,kinghenryviii,1612 shore,1,kinghenryviii,1612 getting,1,kinghenryviii,1612 Requires,1,kinghenryviii,1612 bigger,1,kinghenryviii,1612 'guilty,1,kinghenryviii,1612 chapel,1,kinghenryviii,1612 quit,1,kinghenryviii,1612 clean,1,kinghenryviii,1612 Remembrance,1,kinghenryviii,1612 portion,1,kinghenryviii,1612 perniciously,1,kinghenryviii,1612 waited,1,kinghenryviii,1612 gainsay,1,kinghenryviii,1612 hollow,1,kinghenryviii,1612 cur,1,kinghenryviii,1612 cut,1,kinghenryviii,1612 Arise,1,kinghenryviii,1612 gaping,1,kinghenryviii,1612 pangs,1,kinghenryviii,1612 counterfeit,1,kinghenryviii,1612 request,1,kinghenryviii,1612 foreskirt,1,kinghenryviii,1612 paved,1,kinghenryviii,1612 depth,1,kinghenryviii,1612 Arrest,1,kinghenryviii,1612 winter,1,kinghenryviii,1612 rabble,1,kinghenryviii,1612 forsooth,1,kinghenryviii,1612 flood,1,kinghenryviii,1612 Shipwreck'd,1,kinghenryviii,1612 besiege,1,kinghenryviii,1612 state's,1,kinghenryviii,1612 defeat,1,kinghenryviii,1612 NICHOLAS,1,kinghenryviii,1612 Wherefore,1,kinghenryviii,1612 resolution,1,kinghenryviii,1612 bits,1,kinghenryviii,1612 serenissima,1,kinghenryviii,1612 title's,1,kinghenryviii,1612 falsehood,1,kinghenryviii,1612 notwithstanding,1,kinghenryviii,1612 profits,1,kinghenryviii,1612 abilities,1,kinghenryviii,1612 Neglect,1,kinghenryviii,1612 vainly,1,kinghenryviii,1612 robes,1,kinghenryviii,1612 aspire,1,kinghenryviii,1612 CRANMER's,1,kinghenryviii,1612 cope,1,kinghenryviii,1612 manage,1,kinghenryviii,1612 prithee,1,kinghenryviii,1612 country's,1,kinghenryviii,1612 yellow,1,kinghenryviii,1612 abject,1,kinghenryviii,1612 hung,1,kinghenryviii,1612 perils,1,kinghenryviii,1612 lovely,1,kinghenryviii,1612 assembled,1,kinghenryviii,1612 lop,1,kinghenryviii,1612 contents,1,kinghenryviii,1612 attendance,1,kinghenryviii,1612 neglected,1,kinghenryviii,1612 comforting,1,kinghenryviii,1612 gossips,1,kinghenryviii,1612 fairer,1,kinghenryviii,1612 examples,1,kinghenryviii,1612 low,1,kinghenryviii,1612 startle,1,kinghenryviii,1612 ugly,1,kinghenryviii,1612 Prince,1,kinghenryviii,1612 easiness,1,kinghenryviii,1612 sect,1,kinghenryviii,1612 suits,1,kinghenryviii,1612 needful,1,kinghenryviii,1612 potently,1,kinghenryviii,1612 Seek,1,kinghenryviii,1612 primero,1,kinghenryviii,1612 stagger,1,kinghenryviii,1612 insolence,1,kinghenryviii,1612 'perceive,1,kinghenryviii,1612 heralds,1,kinghenryviii,1612 Clapp'd,1,kinghenryviii,1612 seem,1,kinghenryviii,1612 singular,1,kinghenryviii,1612 reap'd,1,kinghenryviii,1612 fights,1,kinghenryviii,1612 Fresher,1,kinghenryviii,1612 July,1,kinghenryviii,1612 Pursuivants,1,kinghenryviii,1612 cow,1,kinghenryviii,1612 Lie,1,kinghenryviii,1612 'twixt,1,kinghenryviii,1612 friendless,1,kinghenryviii,1612 courtesy,1,kinghenryviii,1612 undertakes,1,kinghenryviii,1612 vessel,1,kinghenryviii,1612 condition,1,kinghenryviii,1612 tells,1,kinghenryviii,1612 prudent,1,kinghenryviii,1612 period,1,kinghenryviii,1612 liking,1,kinghenryviii,1612 cost,1,kinghenryviii,1612 sweep,1,kinghenryviii,1612 tidings,1,kinghenryviii,1612 cramm'd,1,kinghenryviii,1612 True,1,kinghenryviii,1612 bowls,1,kinghenryviii,1612 vehemency,1,kinghenryviii,1612 setting,1,kinghenryviii,1612 censurers,1,kinghenryviii,1612 replied,1,kinghenryviii,1612 thrust,1,kinghenryviii,1612 Killing,1,kinghenryviii,1612 secrecy,1,kinghenryviii,1612 Upward,1,kinghenryviii,1612 nor's,1,kinghenryviii,1612 increase,1,kinghenryviii,1612 fireworks,1,kinghenryviii,1612 cord,1,kinghenryviii,1612 pestilent,1,kinghenryviii,1612 Obeying,1,kinghenryviii,1612 Abbey,1,kinghenryviii,1612 heels,1,kinghenryviii,1612 Repeat,1,kinghenryviii,1612 Northampton,1,kinghenryviii,1612 therein,1,kinghenryviii,1612 we're,1,kinghenryviii,1612 Bullen's,1,kinghenryviii,1612 stopped,1,kinghenryviii,1612 kindred,1,kinghenryviii,1612 tied,1,kinghenryviii,1612 Use,1,kinghenryviii,1612 apartment,1,kinghenryviii,1612 gods,1,kinghenryviii,1612 Taxation,1,kinghenryviii,1612 mirror,1,kinghenryviii,1612 switches,1,kinghenryviii,1612 Sent,1,kinghenryviii,1612 excellence,1,kinghenryviii,1612 Cry,1,kinghenryviii,1612 sell,1,kinghenryviii,1612 tide,1,kinghenryviii,1612 capacity,1,kinghenryviii,1612 Forthwith,1,kinghenryviii,1612 post,1,kinghenryviii,1612 whilst,1,kinghenryviii,1612 gloss,1,kinghenryviii,1612 oppose,1,kinghenryviii,1612 prison,1,kinghenryviii,1612 led,1,kinghenryviii,1612 reform'd,1,kinghenryviii,1612 Blomer,1,kinghenryviii,1612 porringer,1,kinghenryviii,1612 mother's,1,kinghenryviii,1612 reputed,1,kinghenryviii,1612 undo,1,kinghenryviii,1612 alas,1,kinghenryviii,1612 Self,1,kinghenryviii,1612 adds,1,kinghenryviii,1612 Ante,1,kinghenryviii,1612 Bayonne,1,kinghenryviii,1612 swell,1,kinghenryviii,1612 bade,1,kinghenryviii,1612 Admit,1,kinghenryviii,1612 air'd,1,kinghenryviii,1612 primest,1,kinghenryviii,1612 Power,1,kinghenryviii,1612 herald,1,kinghenryviii,1612 trap,1,kinghenryviii,1612 hedges,1,kinghenryviii,1612 Ta'en,1,kinghenryviii,1612 commonalty,1,kinghenryviii,1612 Countesses,1,kinghenryviii,1612 Fears,1,kinghenryviii,1612 highest,1,kinghenryviii,1612 methought,1,kinghenryviii,1612 sincerely,1,kinghenryviii,1612 lip,1,kinghenryviii,1612 crooked,1,kinghenryviii,1612 perk'd,1,kinghenryviii,1612 missed,1,kinghenryviii,1612 Montacute,1,kinghenryviii,1612 Heaven's,1,kinghenryviii,1612 heated,1,kinghenryviii,1612 unbounded,1,kinghenryviii,1612 Tanta,1,kinghenryviii,1612 triumph,1,kinghenryviii,1612 until,1,kinghenryviii,1612 trow,1,kinghenryviii,1612 sorely,1,kinghenryviii,1612 brow,1,kinghenryviii,1612 spider,1,kinghenryviii,1612 slow,1,kinghenryviii,1612 lordship's,1,kinghenryviii,1612 torch,1,kinghenryviii,1612 converting,1,kinghenryviii,1612 sleek,1,kinghenryviii,1612 effects,1,kinghenryviii,1612 colleges,1,kinghenryviii,1612 slumber,1,kinghenryviii,1612 persuade,1,kinghenryviii,1612 eat,1,kinghenryviii,1612 suitor,1,kinghenryviii,1612 Serve,1,kinghenryviii,1612 lays,1,kinghenryviii,1612 seated,1,kinghenryviii,1612 despairs,1,kinghenryviii,1612 Induced,1,kinghenryviii,1612 successors,1,kinghenryviii,1612 Divers,1,kinghenryviii,1612 debate,1,kinghenryviii,1612 evening,1,kinghenryviii,1612 treasonous,1,kinghenryviii,1612 targets,1,kinghenryviii,1612 sounder,1,kinghenryviii,1612 wands,1,kinghenryviii,1612 wearing,1,kinghenryviii,1612 fixeth,1,kinghenryviii,1612 sounded,1,kinghenryviii,1612 Kisses,1,kinghenryviii,1612 starts,1,kinghenryviii,1612 allied,1,kinghenryviii,1612 Greater,1,kinghenryviii,1612 careful,1,kinghenryviii,1612 spite,1,kinghenryviii,1612 disposing,1,kinghenryviii,1612 splitting,1,kinghenryviii,1612 spavin,1,kinghenryviii,1612 committing,1,kinghenryviii,1612 future,1,kinghenryviii,1612 Pepin,1,kinghenryviii,1612 pinked,1,kinghenryviii,1612 consequence,1,kinghenryviii,1612 smiling,1,kinghenryviii,1612 depths,1,kinghenryviii,1612 begins,1,kinghenryviii,1612 'Hath,1,kinghenryviii,1612 starve,1,kinghenryviii,1612 patient's,1,kinghenryviii,1612 Paris,1,kinghenryviii,1612 Another,1,kinghenryviii,1612 kindling,1,kinghenryviii,1612 compounded,1,kinghenryviii,1612 trusted,1,kinghenryviii,1612 warlike,1,kinghenryviii,1612 dealing,1,kinghenryviii,1612 Gregory,1,kinghenryviii,1612 headed,1,kinghenryviii,1612 swim,1,kinghenryviii,1612 seemly,1,kinghenryviii,1612 phoenix,1,kinghenryviii,1612 travell'd,1,kinghenryviii,1612 maker,1,kinghenryviii,1612 EPILOGUE,1,kinghenryviii,1612 pull'd,1,kinghenryviii,1612 tires,1,kinghenryviii,1612 fabulous,1,kinghenryviii,1612 EARL,1,kinghenryviii,1612 dye,1,kinghenryviii,1612 employment,1,kinghenryviii,1612 evils,1,kinghenryviii,1612 Limbo,1,kinghenryviii,1612 rights,1,kinghenryviii,1612 conformable,1,kinghenryviii,1612 rested,1,kinghenryviii,1612 determinate,1,kinghenryviii,1612 verified,1,kinghenryviii,1612 burnt,1,kinghenryviii,1612 confirmation,1,kinghenryviii,1612 unqueen'd,1,kinghenryviii,1612 fully,1,kinghenryviii,1612 body's,1,kinghenryviii,1612 envied,1,kinghenryviii,1612 flew,1,kinghenryviii,1612 Met,1,kinghenryviii,1612 debating,1,kinghenryviii,1612 county,1,kinghenryviii,1612 thinking,1,kinghenryviii,1612 attorney,1,kinghenryviii,1612 fashion,1,kinghenryviii,1612 punishment,1,kinghenryviii,1612 Deals,1,kinghenryviii,1612 rinsing,1,kinghenryviii,1612 pernicious,1,kinghenryviii,1612 quarrels,1,kinghenryviii,1612 wound,1,kinghenryviii,1612 bellied,1,kinghenryviii,1612 Andren,1,kinghenryviii,1612 wilder,1,kinghenryviii,1612 Abused,1,kinghenryviii,1612 Forsooth,1,kinghenryviii,1612 withdraw,1,kinghenryviii,1612 extortion,1,kinghenryviii,1612 harmony,1,kinghenryviii,1612 Orpheus,1,kinghenryviii,1612 musings,1,kinghenryviii,1612 inspired,1,kinghenryviii,1612 lion,1,kinghenryviii,1612 Amen,1,kinghenryviii,1612 lark,1,kinghenryviii,1612 contradicted,1,kinghenryviii,1612 Sleep,1,kinghenryviii,1612 Possession,1,kinghenryviii,1612 Dashing,1,kinghenryviii,1612 whiles,1,kinghenryviii,1612 sometimes,1,kinghenryviii,1612 Pierce,1,kinghenryviii,1612 issue's,1,kinghenryviii,1612 Respecting,1,kinghenryviii,1612 phrase,1,kinghenryviii,1612 peck,1,kinghenryviii,1612 Wherever,1,kinghenryviii,1612 Produce,1,kinghenryviii,1612 Door,1,kinghenryviii,1612 tenderness,1,kinghenryviii,1612 sheathe,1,kinghenryviii,1612 citizens,1,kinghenryviii,1612 knight's,1,kinghenryviii,1612 gravity,1,kinghenryviii,1612 copper,1,kinghenryviii,1612 fitness,1,kinghenryviii,1612 truant,1,kinghenryviii,1612 sleeping,1,kinghenryviii,1612 compel,1,kinghenryviii,1612 chooses,1,kinghenryviii,1612 Looking,1,kinghenryviii,1612 discontented,1,kinghenryviii,1612 importing,1,kinghenryviii,1612 baiting,1,kinghenryviii,1612 stretch'd,1,kinghenryviii,1612 extend,1,kinghenryviii,1612 gets,1,kinghenryviii,1612 Salisbury,1,kinghenryviii,1612 pagan,1,kinghenryviii,1612 whet,1,kinghenryviii,1612 harms,1,kinghenryviii,1612 revenged,1,kinghenryviii,1612 levied,1,kinghenryviii,1612 hurt,1,kinghenryviii,1612 were't,1,kinghenryviii,1612 justified,1,kinghenryviii,1612 Confessor,1,kinghenryviii,1612 Banish'd,1,kinghenryviii,1612 appetite,1,kinghenryviii,1612 Northumberland,1,kinghenryviii,1612 cordial,1,kinghenryviii,1612 fathom,1,kinghenryviii,1612 entreats,1,kinghenryviii,1612 mow,1,kinghenryviii,1612 passages,1,kinghenryviii,1612 leading,1,kinghenryviii,1612 corruption,1,kinghenryviii,1612 shade,1,kinghenryviii,1612 Death,1,kinghenryviii,1612 assurance,1,kinghenryviii,1612 simple,1,kinghenryviii,1612 Therein,1,kinghenryviii,1612 witty,1,kinghenryviii,1612 'This,1,kinghenryviii,1612 spring,1,kinghenryviii,1612 entrance,1,kinghenryviii,1612 cornets,1,kinghenryviii,1612 tardy,1,kinghenryviii,1612 widow,1,kinghenryviii,1612 Priests,1,kinghenryviii,1612 rises,1,kinghenryviii,1612 payment,1,kinghenryviii,1612 expense,1,kinghenryviii,1612 pattern,1,kinghenryviii,1612 judged,1,kinghenryviii,1612 Colbrand,1,kinghenryviii,1612 fail'd,1,kinghenryviii,1612 dog,1,kinghenryviii,1612 provide,1,kinghenryviii,1612 Arthur,1,kinghenryviii,1612 pebbles,1,kinghenryviii,1612 harsh,1,kinghenryviii,1612 confine,1,kinghenryviii,1612 mud,1,kinghenryviii,1612 honour's,1,kinghenryviii,1612 Hung,1,kinghenryviii,1612 Absolved,1,kinghenryviii,1612 KATHARINE's,1,kinghenryviii,1612 Lest,1,kinghenryviii,1612 ensued,1,kinghenryviii,1612 frame,1,kinghenryviii,1612 choicest,1,kinghenryviii,1612 Several,1,kinghenryviii,1612 sounding,1,kinghenryviii,1612 due,1,kinghenryviii,1612 Powle's,1,kinghenryviii,1612 liquor,1,kinghenryviii,1612 'Room,1,kinghenryviii,1612 Rich,1,kinghenryviii,1612 catch,1,kinghenryviii,1612 privily,1,kinghenryviii,1612 Londoners,1,kinghenryviii,1612 dispatch,1,kinghenryviii,1612 top,1,kinghenryviii,1612 fellowship,1,kinghenryviii,1612 dry,1,kinghenryviii,1612 great'st,1,kinghenryviii,1612 liest,1,kinghenryviii,1612 lame,1,kinghenryviii,1612 proclamation,1,kinghenryviii,1612 blossoms,1,kinghenryviii,1612 inter,1,kinghenryviii,1612 instantly,1,kinghenryviii,1612 months,1,kinghenryviii,1612 Bring,1,kinghenryviii,1612 DRAMATIS,1,kinghenryviii,1612 reverent,1,kinghenryviii,1612 sergeant,1,kinghenryviii,1612 dilatory,1,kinghenryviii,1612 princes',1,kinghenryviii,1612 til,1,kinghenryviii,1612 venom,1,kinghenryviii,1612 physician,1,kinghenryviii,1612 tip,1,kinghenryviii,1612 Touch,1,kinghenryviii,1612 vacant,1,kinghenryviii,1612 arraignment,1,kinghenryviii,1612 tripping,1,kinghenryviii,1612 Desires,1,kinghenryviii,1612 frankly,1,kinghenryviii,1612 usurper,1,kinghenryviii,1612 tendence,1,kinghenryviii,1612 Fail,1,kinghenryviii,1612 rewards,1,kinghenryviii,1612 ambitious,1,kinghenryviii,1612 obedient,1,kinghenryviii,1612 cakes,1,kinghenryviii,1612 trees,1,kinghenryviii,1612 wills,1,kinghenryviii,1612 stol'n,1,kinghenryviii,1612 Hitting,1,kinghenryviii,1612 dew,1,kinghenryviii,1612 Talk,1,kinghenryviii,1612 paragon'd,1,kinghenryviii,1612 wenches,1,kinghenryviii,1612 conclave,1,kinghenryviii,1612 press'd,1,kinghenryviii,1612 Carried,1,kinghenryviii,1612 holdeth,1,kinghenryviii,1612 tainted,1,kinghenryviii,1612 take't,1,kinghenryviii,1612 numberless,1,kinghenryviii,1612 pursuivants,1,kinghenryviii,1612 fullers,1,kinghenryviii,1612 say't,1,kinghenryviii,1612 dedicates,1,kinghenryviii,1612 kill,1,kinghenryviii,1612 justly,1,kinghenryviii,1612 shire,1,kinghenryviii,1612 repair,1,kinghenryviii,1612 bids,1,kinghenryviii,1612 avaunt,1,kinghenryviii,1612 lack,1,kinghenryviii,1612 shape,1,kinghenryviii,1612 intends,1,kinghenryviii,1612 Kept,1,kinghenryviii,1612 subjects',1,kinghenryviii,1612 doctrine,1,kinghenryviii,1612 Lovell's,1,kinghenryviii,1612 undertake,1,kinghenryviii,1612 dim,1,kinghenryviii,1612 chambers,1,kinghenryviii,1612 observing,1,kinghenryviii,1612 crowd,1,kinghenryviii,1612 exempt,1,kinghenryviii,1612 grounded,1,kinghenryviii,1612 Disdainful,1,kinghenryviii,1612 privity,1,kinghenryviii,1612 summer,1,kinghenryviii,1612 interpreters,1,kinghenryviii,1612 profession,2,kinghenryviii,1612 deputy,2,kinghenryviii,1612 troubles,2,kinghenryviii,1612 forbid,2,kinghenryviii,1612 staves,2,kinghenryviii,1612 grew,2,kinghenryviii,1612 ports,2,kinghenryviii,1612 rectify,2,kinghenryviii,1612 LORD,2,kinghenryviii,1612 groom,2,kinghenryviii,1612 fancy,2,kinghenryviii,1612 infant,2,kinghenryviii,1612 motion,2,kinghenryviii,1612 country,2,kinghenryviii,1612 dream'd,2,kinghenryviii,1612 weary,2,kinghenryviii,1612 wish'd,2,kinghenryviii,1612 complaints,2,kinghenryviii,1612 following,2,kinghenryviii,1612 possible,2,kinghenryviii,1612 reign'd,2,kinghenryviii,1612 treasure,2,kinghenryviii,1612 knell,2,kinghenryviii,1612 woman's,2,kinghenryviii,1612 lawful,2,kinghenryviii,1612 pitying,2,kinghenryviii,1612 lower,2,kinghenryviii,1612 zeal,2,kinghenryviii,1612 bones,2,kinghenryviii,1612 mend,2,kinghenryviii,1612 spoons,2,kinghenryviii,1612 Women,2,kinghenryviii,1612 rather,2,kinghenryviii,1612 bounteous,2,kinghenryviii,1612 vain,2,kinghenryviii,1612 spake,2,kinghenryviii,1612 Black,2,kinghenryviii,1612 sight,2,kinghenryviii,1612 honourable,2,kinghenryviii,1612 Held,2,kinghenryviii,1612 hearted,2,kinghenryviii,1612 richly,2,kinghenryviii,1612 drink,2,kinghenryviii,1612 Ere,2,kinghenryviii,1612 withal,2,kinghenryviii,1612 nought,2,kinghenryviii,1612 press,2,kinghenryviii,1612 lies,2,kinghenryviii,1612 bishops,2,kinghenryviii,1612 remain,2,kinghenryviii,1612 Pace,2,kinghenryviii,1612 demand,2,kinghenryviii,1612 agreed,2,kinghenryviii,1612 cast,2,kinghenryviii,1612 lustre,2,kinghenryviii,1612 Once,2,kinghenryviii,1612 performance,2,kinghenryviii,1612 soon,2,kinghenryviii,1612 amazed,2,kinghenryviii,1612 stock,2,kinghenryviii,1612 working,2,kinghenryviii,1612 fiddle,2,kinghenryviii,1612 sap,2,kinghenryviii,1612 flaw'd,2,kinghenryviii,1612 stream,2,kinghenryviii,1612 scarlet,2,kinghenryviii,1612 assembly,2,kinghenryviii,1612 crying,2,kinghenryviii,1612 lily,2,kinghenryviii,1612 Keep,2,kinghenryviii,1612 afterwards,2,kinghenryviii,1612 subjects,2,kinghenryviii,1612 Much,2,kinghenryviii,1612 habits,2,kinghenryviii,1612 function,2,kinghenryviii,1612 confessions,2,kinghenryviii,1612 cheer,2,kinghenryviii,1612 undoing,2,kinghenryviii,1612 wants,2,kinghenryviii,1612 voices,2,kinghenryviii,1612 golden,2,kinghenryviii,1612 Ambassador,2,kinghenryviii,1612 richer,2,kinghenryviii,1612 freedom,2,kinghenryviii,1612 wait,2,kinghenryviii,1612 visitation,2,kinghenryviii,1612 six,2,kinghenryviii,1612 suns,2,kinghenryviii,1612 customs,2,kinghenryviii,1612 warrant,2,kinghenryviii,1612 body,2,kinghenryviii,1612 'twere,2,kinghenryviii,1612 light,2,kinghenryviii,1612 laugh'd,2,kinghenryviii,1612 deceived,2,kinghenryviii,1612 wake,2,kinghenryviii,1612 blessedness,2,kinghenryviii,1612 cradle,2,kinghenryviii,1612 vine,2,kinghenryviii,1612 steps,2,kinghenryviii,1612 sworn,2,kinghenryviii,1612 'I,2,kinghenryviii,1612 countenance,2,kinghenryviii,1612 prejudice,2,kinghenryviii,1612 it's,2,kinghenryviii,1612 bow'd,2,kinghenryviii,1612 interview,2,kinghenryviii,1612 't,2,kinghenryviii,1612 Wait,2,kinghenryviii,1612 second,2,kinghenryviii,1612 beloved,2,kinghenryviii,1612 instruct,2,kinghenryviii,1612 wings,2,kinghenryviii,1612 Thanks,2,kinghenryviii,1612 stuff,2,kinghenryviii,1612 Spain,2,kinghenryviii,1612 Mayor,2,kinghenryviii,1612 appear'd,2,kinghenryviii,1612 taught,2,kinghenryviii,1612 worse,2,kinghenryviii,1612 felt,2,kinghenryviii,1612 fight,2,kinghenryviii,1612 Harry,2,kinghenryviii,1612 Guildford,2,kinghenryviii,1612 happen,2,kinghenryviii,1612 brain,2,kinghenryviii,1612 courtier,2,kinghenryviii,1612 shower,2,kinghenryviii,1612 born,2,kinghenryviii,1612 proceeded,2,kinghenryviii,1612 fault,2,kinghenryviii,1612 endeavours,2,kinghenryviii,1612 relate,2,kinghenryviii,1612 dearly,2,kinghenryviii,1612 white,2,kinghenryviii,1612 willing,2,kinghenryviii,1612 Wherein,2,kinghenryviii,1612 Leave,2,kinghenryviii,1612 Whilst,2,kinghenryviii,1612 complete,2,kinghenryviii,1612 reverence,2,kinghenryviii,1612 feet,2,kinghenryviii,1612 beaten,2,kinghenryviii,1612 temporal,2,kinghenryviii,1612 claim,2,kinghenryviii,1612 habited,2,kinghenryviii,1612 speaking,2,kinghenryviii,1612 wine,2,kinghenryviii,1612 Secretaries,2,kinghenryviii,1612 ceremony,2,kinghenryviii,1612 porter,2,kinghenryviii,1612 cuckold,2,kinghenryviii,1612 kneel,2,kinghenryviii,1612 ushered,2,kinghenryviii,1612 Might,2,kinghenryviii,1612 Dare,2,kinghenryviii,1612 edge,2,kinghenryviii,1612 directly,2,kinghenryviii,1612 stop,2,kinghenryviii,1612 wars,2,kinghenryviii,1612 merely,2,kinghenryviii,1612 bond,2,kinghenryviii,1612 doubts,2,kinghenryviii,1612 cunning,2,kinghenryviii,1612 rule,2,kinghenryviii,1612 stirr'd,2,kinghenryviii,1612 matter,2,kinghenryviii,1612 assent,2,kinghenryviii,1612 Follow,2,kinghenryviii,1612 menaced,2,kinghenryviii,1612 aspect,2,kinghenryviii,1612 urge,2,kinghenryviii,1612 nephew,2,kinghenryviii,1612 wherefore,2,kinghenryviii,1612 authority,2,kinghenryviii,1612 VIII's,2,kinghenryviii,1612 Place,2,kinghenryviii,1612 strongly,2,kinghenryviii,1612 pillars,2,kinghenryviii,1612 hat,2,kinghenryviii,1612 bestowing,2,kinghenryviii,1612 While,2,kinghenryviii,1612 commons,2,kinghenryviii,1612 sign,2,kinghenryviii,1612 granted,2,kinghenryviii,1612 flattery,2,kinghenryviii,1612 Am,2,kinghenryviii,1612 pay,2,kinghenryviii,1612 scarce,2,kinghenryviii,1612 chaste,2,kinghenryviii,1612 shortly,2,kinghenryviii,1612 desperate,2,kinghenryviii,1612 Chartreux,2,kinghenryviii,1612 doctors,2,kinghenryviii,1612 itself,2,kinghenryviii,1612 O',2,kinghenryviii,1612 bar,2,kinghenryviii,1612 Council,2,kinghenryviii,1612 kept,2,kinghenryviii,1612 canst,2,kinghenryviii,1612 gallery,2,kinghenryviii,1612 pitied,2,kinghenryviii,1612 tear,2,kinghenryviii,1612 Something,2,kinghenryviii,1612 sovereignty,2,kinghenryviii,1612 blest,2,kinghenryviii,1612 goods,2,kinghenryviii,1612 abbot,2,kinghenryviii,1612 Had,2,kinghenryviii,1612 Buckingham's,2,kinghenryviii,1612 ears,2,kinghenryviii,1612 changes,2,kinghenryviii,1612 yourselves,2,kinghenryviii,1612 godfather,2,kinghenryviii,1612 obey,2,kinghenryviii,1612 plants,2,kinghenryviii,1612 sits,2,kinghenryviii,1612 'the,2,kinghenryviii,1612 behind,2,kinghenryviii,1612 'Twould,2,kinghenryviii,1612 Yourself,2,kinghenryviii,1612 children,2,kinghenryviii,1612 SS,2,kinghenryviii,1612 argue,2,kinghenryviii,1612 tricks,2,kinghenryviii,1612 doth,2,kinghenryviii,1612 somewhat,2,kinghenryviii,1612 disperse,2,kinghenryviii,1612 Saint,2,kinghenryviii,1612 Put,2,kinghenryviii,1612 Said,2,kinghenryviii,1612 Above,2,kinghenryviii,1612 sins,2,kinghenryviii,1612 sing,2,kinghenryviii,1612 calling,2,kinghenryviii,1612 upper,2,kinghenryviii,1612 lately,2,kinghenryviii,1612 crowned,2,kinghenryviii,1612 chafed,2,kinghenryviii,1612 instant,2,kinghenryviii,1612 breath,2,kinghenryviii,1612 Cannot,2,kinghenryviii,1612 betray,2,kinghenryviii,1612 aim,2,kinghenryviii,1612 air,2,kinghenryviii,1612 excellent,2,kinghenryviii,1612 consider,2,kinghenryviii,1612 safe,2,kinghenryviii,1612 legs,2,kinghenryviii,1612 em,2,kinghenryviii,1612 weigh'd,2,kinghenryviii,1612 dwell,2,kinghenryviii,1612 liberal,2,kinghenryviii,1612 dignity,2,kinghenryviii,1612 seeing,2,kinghenryviii,1612 seeming,2,kinghenryviii,1612 touch'd,2,kinghenryviii,1612 lady's,2,kinghenryviii,1612 waits,2,kinghenryviii,1612 memory,2,kinghenryviii,1612 approach,2,kinghenryviii,1612 forgotten,2,kinghenryviii,1612 cured,2,kinghenryviii,1612 realm,2,kinghenryviii,1612 move,2,kinghenryviii,1612 board,2,kinghenryviii,1612 attending,2,kinghenryviii,1612 Concerning,2,kinghenryviii,1612 delay,2,kinghenryviii,1612 commendations,2,kinghenryviii,1612 utmost,2,kinghenryviii,1612 thankful,2,kinghenryviii,1612 teaching,2,kinghenryviii,1612 goodness',2,kinghenryviii,1612 studies,2,kinghenryviii,1612 caused,2,kinghenryviii,1612 temper,2,kinghenryviii,1612 age,2,kinghenryviii,1612 loud,2,kinghenryviii,1612 la,2,kinghenryviii,1612 moon,2,kinghenryviii,1612 add,2,kinghenryviii,1612 Ipswich,2,kinghenryviii,1612 partners,2,kinghenryviii,1612 respite,2,kinghenryviii,1612 journey,2,kinghenryviii,1612 pure,2,kinghenryviii,1612 Because,2,kinghenryviii,1612 men's,2,kinghenryviii,1612 Been,2,kinghenryviii,1612 graves,2,kinghenryviii,1612 plot,2,kinghenryviii,1612 attach'd,2,kinghenryviii,1612 field,2,kinghenryviii,1612 hall,2,kinghenryviii,1612 frost,2,kinghenryviii,1612 round,2,kinghenryviii,1612 Arms,2,kinghenryviii,1612 fashion'd,2,kinghenryviii,1612 hang,2,kinghenryviii,1612 plain,2,kinghenryviii,1612 foul,2,kinghenryviii,1612 drawn,2,kinghenryviii,1612 pang,2,kinghenryviii,1612 praise,2,kinghenryviii,1612 excuse,2,kinghenryviii,1612 acquaintance,2,kinghenryviii,1612 midnight,2,kinghenryviii,1612 abhor,2,kinghenryviii,1612 Deserve,2,kinghenryviii,1612 pain,2,kinghenryviii,1612 Laid,2,kinghenryviii,1612 wretchedness,2,kinghenryviii,1612 mayor,2,kinghenryviii,1612 heretic,2,kinghenryviii,1612 pace,2,kinghenryviii,1612 bosom,2,kinghenryviii,1612 faithful,2,kinghenryviii,1612 duke's,2,kinghenryviii,1612 Gilbert,2,kinghenryviii,1612 Eighth,2,kinghenryviii,1612 courses,2,kinghenryviii,1612 obey'd,2,kinghenryviii,1612 object,2,kinghenryviii,1612 girl,2,kinghenryviii,1612 dews,2,kinghenryviii,1612 maiden,2,kinghenryviii,1612 forms,2,kinghenryviii,1612 Men's,2,kinghenryviii,1612 open'd,2,kinghenryviii,1612 chance,2,kinghenryviii,1612 furnish,2,kinghenryviii,1612 knock,2,kinghenryviii,1612 Among,2,kinghenryviii,1612 exaction,2,kinghenryviii,1612 touch,2,kinghenryviii,1612 behavior,2,kinghenryviii,1612 longing,2,kinghenryviii,1612 precedent,2,kinghenryviii,1612 ventured,2,kinghenryviii,1612 contented,2,kinghenryviii,1612 whispers,2,kinghenryviii,1612 tried,2,kinghenryviii,1612 proofs,2,kinghenryviii,1612 godmother,2,kinghenryviii,1612 syllable,2,kinghenryviii,1612 peers,2,kinghenryviii,1612 nay,2,kinghenryviii,1612 Against,2,kinghenryviii,1612 carries,2,kinghenryviii,1612 empty,2,kinghenryviii,1612 rose,2,kinghenryviii,1612 guiltless,2,kinghenryviii,1612 rascals,2,kinghenryviii,1612 curtsies,2,kinghenryviii,1612 Ireland,2,kinghenryviii,1612 Lords,2,kinghenryviii,1612 marks,2,kinghenryviii,1612 rare,2,kinghenryviii,1612 disgraces,2,kinghenryviii,1612 sprung,2,kinghenryviii,1612 rate,2,kinghenryviii,1612 view'd,2,kinghenryviii,1612 below,2,kinghenryviii,1612 remedy,2,kinghenryviii,1612 spread,2,kinghenryviii,1612 ours,2,kinghenryviii,1612 hide,2,kinghenryviii,1612 kneels,2,kinghenryviii,1612 Presently,2,kinghenryviii,1612 substance,2,kinghenryviii,1612 coronal,2,kinghenryviii,1612 All's,2,kinghenryviii,1612 arise,2,kinghenryviii,1612 progress,2,kinghenryviii,1612 you'll,2,kinghenryviii,1612 Train,2,kinghenryviii,1612 awhile,2,kinghenryviii,1612 say'st,2,kinghenryviii,1612 famous,2,kinghenryviii,1612 Peck,2,kinghenryviii,1612 ensuing,2,kinghenryviii,1612 effect,2,kinghenryviii,1612 device,2,kinghenryviii,1612 mortal,2,kinghenryviii,1612 Richard,2,kinghenryviii,1612 sacrifice,2,kinghenryviii,1612 Maker,2,kinghenryviii,1612 kisses,2,kinghenryviii,1612 plead,2,kinghenryviii,1612 tempest,2,kinghenryviii,1612 purposed,2,kinghenryviii,1612 male,2,kinghenryviii,1612 wrought,2,kinghenryviii,1612 blush,2,kinghenryviii,1612 process,2,kinghenryviii,1612 belong,2,kinghenryviii,1612 Bearing,2,kinghenryviii,1612 chief,2,kinghenryviii,1612 Honour,2,kinghenryviii,1612 apartments,2,kinghenryviii,1612 oracle,2,kinghenryviii,1612 quoth,2,kinghenryviii,1612 brains,2,kinghenryviii,1612 greatest,2,kinghenryviii,1612 infect,2,kinghenryviii,1612 heaven's,2,kinghenryviii,1612 mountain,2,kinghenryviii,1612 arch,2,kinghenryviii,1612 brethren,2,kinghenryviii,1612 trifle,2,kinghenryviii,1612 number,2,kinghenryviii,1612 divorced,2,kinghenryviii,1612 trouble,2,kinghenryviii,1612 Giving,2,kinghenryviii,1612 Found,2,kinghenryviii,1612 Tied,2,kinghenryviii,1612 breed,2,kinghenryviii,1612 suspicion,2,kinghenryviii,1612 Pages,2,kinghenryviii,1612 duchess,2,kinghenryviii,1612 understanding,2,kinghenryviii,1612 former,2,kinghenryviii,1612 safely,2,kinghenryviii,1612 sides,2,kinghenryviii,1612 message,2,kinghenryviii,1612 privy,2,kinghenryviii,1612 stomach,2,kinghenryviii,1612 pretence,2,kinghenryviii,1612 Sad,2,kinghenryviii,1612 loving,2,kinghenryviii,1612 third,2,kinghenryviii,1612 allay,2,kinghenryviii,1612 hearers,2,kinghenryviii,1612 Sure,2,kinghenryviii,1612 count,2,kinghenryviii,1612 fulfill'd,2,kinghenryviii,1612 maidenhead,2,kinghenryviii,1612 protection,2,kinghenryviii,1612 humility,2,kinghenryviii,1612 heavy,2,kinghenryviii,1612 stick,2,kinghenryviii,1612 war,2,kinghenryviii,1612 staff,2,kinghenryviii,1612 oath,2,kinghenryviii,1612 solemnly,2,kinghenryviii,1612 wag,2,kinghenryviii,1612 sufferance,2,kinghenryviii,1612 brother's,2,kinghenryviii,1612 wanton,2,kinghenryviii,1612 dying,2,kinghenryviii,1612 proceeding,2,kinghenryviii,1612 pounds,2,kinghenryviii,1612 pence,2,kinghenryviii,1612 hair,2,kinghenryviii,1612 robb'd,2,kinghenryviii,1612 fix'd,2,kinghenryviii,1612 requite,2,kinghenryviii,1612 conference,2,kinghenryviii,1612 marry,2,kinghenryviii,1612 labour'd,2,kinghenryviii,1612 lute,2,kinghenryviii,1612 compass,2,kinghenryviii,1612 consent,2,kinghenryviii,1612 duly,2,kinghenryviii,1612 Nobles,2,kinghenryviii,1612 hundred,2,kinghenryviii,1612 angry,2,kinghenryviii,1612 gifts,2,kinghenryviii,1612 fain,2,kinghenryviii,1612 garlands,2,kinghenryviii,1612 ground,2,kinghenryviii,1612 minds,2,kinghenryviii,1612 they've,2,kinghenryviii,1612 cloth,2,kinghenryviii,1612 saint,2,kinghenryviii,1612 utterly,2,kinghenryviii,1612 foe,2,kinghenryviii,1612 cloud,2,kinghenryviii,1612 Proceed,2,kinghenryviii,1612 fame,2,kinghenryviii,1612 Elizabeth,2,kinghenryviii,1612 Collars,2,kinghenryviii,1612 dancing,2,kinghenryviii,1612 Mary,2,kinghenryviii,1612 minute,2,kinghenryviii,1612 Mark,2,kinghenryviii,1612 Lincoln,2,kinghenryviii,1612 profit,2,kinghenryviii,1612 rich,2,kinghenryviii,1612 fill,2,kinghenryviii,1612 Attend,2,kinghenryviii,1612 Boy,2,kinghenryviii,1612 cherry,2,kinghenryviii,1612 continue,2,kinghenryviii,1612 bare,2,kinghenryviii,1612 answer'd,2,kinghenryviii,1612 divers,2,kinghenryviii,1612 bite,2,kinghenryviii,1612 herself,2,kinghenryviii,1612 Friars,2,kinghenryviii,1612 perceive,2,kinghenryviii,1612 Thank,2,kinghenryviii,1612 patient,2,kinghenryviii,1612 Bullens,2,kinghenryviii,1612 truth's,2,kinghenryviii,1612 censure,2,kinghenryviii,1612 bird,2,kinghenryviii,1612 base,2,kinghenryviii,1612 Cinque,2,kinghenryviii,1612 mouth'd,2,kinghenryviii,1612 fate,2,kinghenryviii,1612 Abergavenny,2,kinghenryviii,1612 weakness,2,kinghenryviii,1612 named,2,kinghenryviii,1612 fare,2,kinghenryviii,1612 boldly,2,kinghenryviii,1612 coal,2,kinghenryviii,1612 complaint,2,kinghenryviii,1612 appearance,2,kinghenryviii,1612 stroke,2,kinghenryviii,1612 bays,2,kinghenryviii,1612 Every,2,kinghenryviii,1612 eagerly,2,kinghenryviii,1612 None,2,kinghenryviii,1612 Lay,2,kinghenryviii,1612 dozen,2,kinghenryviii,1612 fall'st,2,kinghenryviii,1612 Matter,2,kinghenryviii,1612 loyal,2,kinghenryviii,1612 asking,2,kinghenryviii,1612 horses,2,kinghenryviii,1612 gives,2,kinghenryviii,1612 choler,2,kinghenryviii,1612 convenient,2,kinghenryviii,1612 Envy,2,kinghenryviii,1612 always,2,kinghenryviii,1612 crept,2,kinghenryviii,1612 talking,2,kinghenryviii,1612 puppy,2,kinghenryviii,1612 look'd,2,kinghenryviii,1612 discretion,2,kinghenryviii,1612 values,2,kinghenryviii,1612 conclude,2,kinghenryviii,1612 Mine,2,kinghenryviii,1612 prophecy,2,kinghenryviii,1612 corn,2,kinghenryviii,1612 tree,2,kinghenryviii,1612 nights,2,kinghenryviii,1612 curtain,2,kinghenryviii,1612 dislike,2,kinghenryviii,1612 souls,2,kinghenryviii,1612 ravenous,2,kinghenryviii,1612 believed,2,kinghenryviii,1612 Edward,2,kinghenryviii,1612 send,2,kinghenryviii,1612 grieves,2,kinghenryviii,1612 nurse,2,kinghenryviii,1612 grieved,2,kinghenryviii,1612 carriage,2,kinghenryviii,1612 exactions,2,kinghenryviii,1612 fearing,2,kinghenryviii,1612 canopy,2,kinghenryviii,1612 bestow,2,kinghenryviii,1612 coin,2,kinghenryviii,1612 Two,2,kinghenryviii,1612 storms,2,kinghenryviii,1612 trod,2,kinghenryviii,1612 write,2,kinghenryviii,1612 lazy,2,kinghenryviii,1612 lordships,2,kinghenryviii,1612 However,2,kinghenryviii,1612 chaplain,2,kinghenryviii,1612 forced,2,kinghenryviii,1612 bishop,2,kinghenryviii,1612 straight,2,kinghenryviii,1612 taxation,2,kinghenryviii,1612 sister,2,kinghenryviii,1612 Spirits,2,kinghenryviii,1612 trim,2,kinghenryviii,1612 meeting,2,kinghenryviii,1612 choir,2,kinghenryviii,1612 reformation,2,kinghenryviii,1612 street,2,kinghenryviii,1612 burns,2,kinghenryviii,1612 pleasant,2,kinghenryviii,1612 merciful,2,kinghenryviii,1612 Great,2,kinghenryviii,1612 casts,2,kinghenryviii,1612 question'd,2,kinghenryviii,1612 on's,2,kinghenryviii,1612 pages,2,kinghenryviii,1612 terror,2,kinghenryviii,1612 Beseech,2,kinghenryviii,1612 credit,2,kinghenryviii,1612 pious,2,kinghenryviii,1612 besides,2,kinghenryviii,1612 list,2,kinghenryviii,1612 compell'd,2,kinghenryviii,1612 try,2,kinghenryviii,1612 shrewd,2,kinghenryviii,1612 packets,2,kinghenryviii,1612 alleged,2,kinghenryviii,1612 extremely,2,kinghenryviii,1612 judges,2,kinghenryviii,1612 You'ld,2,kinghenryviii,1612 asleep,2,kinghenryviii,1612 honour'd,2,kinghenryviii,1612 weigh,2,kinghenryviii,1612 commissions,2,kinghenryviii,1612 blessing,2,kinghenryviii,1612 shake,2,kinghenryviii,1612 shine,2,kinghenryviii,1612 vex'd,2,kinghenryviii,1612 Too,2,kinghenryviii,1612 commanding,2,kinghenryviii,1612 he'll,2,kinghenryviii,1612 frail,2,kinghenryviii,1612 speaker,2,kinghenryviii,1612 Fall,2,kinghenryviii,1612 'mongst,2,kinghenryviii,1612 Find,2,kinghenryviii,1612 e'er,2,kinghenryviii,1612 treason,3,kinghenryviii,1612 discharged,3,kinghenryviii,1612 meet,3,kinghenryviii,1612 advised,3,kinghenryviii,1612 vanities,3,kinghenryviii,1612 took,3,kinghenryviii,1612 John,3,kinghenryviii,1612 Hear,3,kinghenryviii,1612 heir,3,kinghenryviii,1612 mistress,3,kinghenryviii,1612 speech,3,kinghenryviii,1612 alike,3,kinghenryviii,1612 neighbours,3,kinghenryviii,1612 rock,3,kinghenryviii,1612 robe,3,kinghenryviii,1612 hell,3,kinghenryviii,1612 Either,3,kinghenryviii,1612 offer,3,kinghenryviii,1612 understand,3,kinghenryviii,1612 flow,3,kinghenryviii,1612 Page,3,kinghenryviii,1612 appeal,3,kinghenryviii,1612 innocence,3,kinghenryviii,1612 malicious,3,kinghenryviii,1612 trust,3,kinghenryviii,1612 breach,3,kinghenryviii,1612 practises,3,kinghenryviii,1612 slept,3,kinghenryviii,1612 ruin'd,3,kinghenryviii,1612 grown,3,kinghenryviii,1612 Give,3,kinghenryviii,1612 grows,3,kinghenryviii,1612 broken,3,kinghenryviii,1612 purse,3,kinghenryviii,1612 Remember,3,kinghenryviii,1612 hearing,3,kinghenryviii,1612 knaves,3,kinghenryviii,1612 Pembroke,3,kinghenryviii,1612 Beyond,3,kinghenryviii,1612 penance,3,kinghenryviii,1612 barge,3,kinghenryviii,1612 throng,3,kinghenryviii,1612 'twas,3,kinghenryviii,1612 forsake,3,kinghenryviii,1612 branches,3,kinghenryviii,1612 raised,3,kinghenryviii,1612 Music,3,kinghenryviii,1612 faults,3,kinghenryviii,1612 Attendants,3,kinghenryviii,1612 confessor,3,kinghenryviii,1612 common,3,kinghenryviii,1612 actions,3,kinghenryviii,1612 envious,3,kinghenryviii,1612 loose,3,kinghenryviii,1612 Bishops,3,kinghenryviii,1612 Here,3,kinghenryviii,1612 sword,3,kinghenryviii,1612 seems,3,kinghenryviii,1612 length,3,kinghenryviii,1612 want,3,kinghenryviii,1612 accuse,3,kinghenryviii,1612 ambassador,3,kinghenryviii,1612 observe,3,kinghenryviii,1612 bright,3,kinghenryviii,1612 Kimbolton,3,kinghenryviii,1612 sceptre,3,kinghenryviii,1612 Marquess,3,kinghenryviii,1612 bitter,3,kinghenryviii,1612 knowledge,3,kinghenryviii,1612 Faith,3,kinghenryviii,1612 stir,3,kinghenryviii,1612 steward,3,kinghenryviii,1612 utter,3,kinghenryviii,1612 religious,3,kinghenryviii,1612 Ah,3,kinghenryviii,1612 stubborn,3,kinghenryviii,1612 blown,3,kinghenryviii,1612 smile,3,kinghenryviii,1612 Lo,3,kinghenryviii,1612 cruel,3,kinghenryviii,1612 stay,3,kinghenryviii,1612 force,3,kinghenryviii,1612 ashes,3,kinghenryviii,1612 surely,3,kinghenryviii,1612 ease,3,kinghenryviii,1612 past,3,kinghenryviii,1612 nobility,3,kinghenryviii,1612 nobly,3,kinghenryviii,1612 sought,3,kinghenryviii,1612 grief,3,kinghenryviii,1612 salute,3,kinghenryviii,1612 difference,3,kinghenryviii,1612 petition,3,kinghenryviii,1612 beyond,3,kinghenryviii,1612 jewel,3,kinghenryviii,1612 amongst,3,kinghenryviii,1612 stronger,3,kinghenryviii,1612 sink,3,kinghenryviii,1612 Whither,3,kinghenryviii,1612 deep,3,kinghenryviii,1612 promised,3,kinghenryviii,1612 papers,3,kinghenryviii,1612 de,3,kinghenryviii,1612 gain,3,kinghenryviii,1612 succor,3,kinghenryviii,1612 consistory,3,kinghenryviii,1612 husband,3,kinghenryviii,1612 ay,3,kinghenryviii,1612 comforts,3,kinghenryviii,1612 offences,3,kinghenryviii,1612 endure,3,kinghenryviii,1612 loss,3,kinghenryviii,1612 Suffolk,3,kinghenryviii,1612 wherein,3,kinghenryviii,1612 removed,3,kinghenryviii,1612 greater,3,kinghenryviii,1612 It's,3,kinghenryviii,1612 show'd,3,kinghenryviii,1612 serious,3,kinghenryviii,1612 hot,3,kinghenryviii,1612 Came,3,kinghenryviii,1612 choice,3,kinghenryviii,1612 reasons,3,kinghenryviii,1612 axe,3,kinghenryviii,1612 Call,3,kinghenryviii,1612 Trumpets,3,kinghenryviii,1612 appears,3,kinghenryviii,1612 reach,3,kinghenryviii,1612 forty,3,kinghenryviii,1612 joyful,3,kinghenryviii,1612 She's,3,kinghenryviii,1612 weeps,3,kinghenryviii,1612 stranger,3,kinghenryviii,1612 return'd,3,kinghenryviii,1612 hate,3,kinghenryviii,1612 puts,3,kinghenryviii,1612 Cast,3,kinghenryviii,1612 fresh,3,kinghenryviii,1612 trick,3,kinghenryviii,1612 fed,3,kinghenryviii,1612 broke,3,kinghenryviii,1612 guess,3,kinghenryviii,1612 lead,3,kinghenryviii,1612 spoken,3,kinghenryviii,1612 Between,3,kinghenryviii,1612 opinions,3,kinghenryviii,1612 occasion,3,kinghenryviii,1612 equal,3,kinghenryviii,1612 freeze,3,kinghenryviii,1612 DUKE,3,kinghenryviii,1612 rank,3,kinghenryviii,1612 report,3,kinghenryviii,1612 silence,3,kinghenryviii,1612 Westminster,3,kinghenryviii,1612 distance,3,kinghenryviii,1612 Archbishop,3,kinghenryviii,1612 water,3,kinghenryviii,1612 nose,3,kinghenryviii,1612 almost,3,kinghenryviii,1612 wonder,3,kinghenryviii,1612 daily,3,kinghenryviii,1612 bears,3,kinghenryviii,1612 estate,3,kinghenryviii,1612 churchman,3,kinghenryviii,1612 year,3,kinghenryviii,1612 borne,3,kinghenryviii,1612 Campeius,3,kinghenryviii,1612 THE,3,kinghenryviii,1612 counsellor,3,kinghenryviii,1612 Therefore,3,kinghenryviii,1612 ere,3,kinghenryviii,1612 yours,3,kinghenryviii,1612 towards,3,kinghenryviii,1612 leaves,3,kinghenryviii,1612 reading,3,kinghenryviii,1612 presently,3,kinghenryviii,1612 mark,3,kinghenryviii,1612 thick,3,kinghenryviii,1612 quench,3,kinghenryviii,1612 coronet,3,kinghenryviii,1612 accompanied,3,kinghenryviii,1612 mistress',3,kinghenryviii,1612 example,3,kinghenryviii,1612 says,3,kinghenryviii,1612 knife,3,kinghenryviii,1612 happiness,3,kinghenryviii,1612 Saw,3,kinghenryviii,1612 Thus,3,kinghenryviii,1612 stage,3,kinghenryviii,1612 Car,3,kinghenryviii,1612 receive,3,kinghenryviii,1612 growing,3,kinghenryviii,1612 assure,3,kinghenryviii,1612 notice,3,kinghenryviii,1612 curses,3,kinghenryviii,1612 Bid,3,kinghenryviii,1612 served,3,kinghenryviii,1612 taken,3,kinghenryviii,1612 spleen,3,kinghenryviii,1612 falling,3,kinghenryviii,1612 Noble,3,kinghenryviii,1612 file,3,kinghenryviii,1612 minister,3,kinghenryviii,1612 grieve,3,kinghenryviii,1612 wholesome,3,kinghenryviii,1612 evil,3,kinghenryviii,1612 durst,3,kinghenryviii,1612 modesty,3,kinghenryviii,1612 methinks,3,kinghenryviii,1612 word,3,kinghenryviii,1612 fie,3,kinghenryviii,1612 offices,3,kinghenryviii,1612 safety,3,kinghenryviii,1612 particular,3,kinghenryviii,1612 Lead,3,kinghenryviii,1612 married,3,kinghenryviii,1612 fast,3,kinghenryviii,1612 accusers,3,kinghenryviii,1612 coat,3,kinghenryviii,1612 Scribes,3,kinghenryviii,1612 reason,3,kinghenryviii,1612 perish,3,kinghenryviii,1612 home,3,kinghenryviii,1612 Where's,3,kinghenryviii,1612 Scribe,3,kinghenryviii,1612 counsels,3,kinghenryviii,1612 favours,3,kinghenryviii,1612 satisfied,3,kinghenryviii,1612 packet,3,kinghenryviii,1612 sweat,3,kinghenryviii,1612 aught,3,kinghenryviii,1612 we'll,3,kinghenryviii,1612 seen,3,kinghenryviii,1612 either,3,kinghenryviii,1612 render,3,kinghenryviii,1612 fellows,3,kinghenryviii,1612 sacred,3,kinghenryviii,1612 heavenly,3,kinghenryviii,1612 modest,3,kinghenryviii,1612 loyalty,3,kinghenryviii,1612 Know,3,kinghenryviii,1612 blame,3,kinghenryviii,1612 Deliver,3,kinghenryviii,1612 hours,3,kinghenryviii,1612 Toward,3,kinghenryviii,1612 blushing,3,kinghenryviii,1612 fairly,3,kinghenryviii,1612 Noblemen,3,kinghenryviii,1612 sickness,3,kinghenryviii,1612 purpose,3,kinghenryviii,1612 meekness,3,kinghenryviii,1612 servants,3,kinghenryviii,1612 ear,3,kinghenryviii,1612 spirits,3,kinghenryviii,1612 alter'd,3,kinghenryviii,1612 taint,3,kinghenryviii,1612 pray'd,3,kinghenryviii,1612 abroad,3,kinghenryviii,1612 conduct,3,kinghenryviii,1612 Butts,3,kinghenryviii,1612 dread,3,kinghenryviii,1612 spiritual,3,kinghenryviii,1612 cardinals,3,kinghenryviii,1612 Marry,3,kinghenryviii,1612 thither,3,kinghenryviii,1612 mouths,3,kinghenryviii,1612 inventory,3,kinghenryviii,1612 confirm,3,kinghenryviii,1612 happily,3,kinghenryviii,1612 Did,3,kinghenryviii,1612 follow,3,kinghenryviii,1612 weight,3,kinghenryviii,1612 miseries,3,kinghenryviii,1612 Together,3,kinghenryviii,1612 wonders,3,kinghenryviii,1612 chancellor,3,kinghenryviii,1612 pass'd,3,kinghenryviii,1612 meditations,3,kinghenryviii,1612 Kneeling,3,kinghenryviii,1612 cross,3,kinghenryviii,1612 pronounce,3,kinghenryviii,1612 ten,3,kinghenryviii,1612 dowager,3,kinghenryviii,1612 enemy,3,kinghenryviii,1612 told,4,kinghenryviii,1612 parted,4,kinghenryviii,1612 c,4,kinghenryviii,1612 suffer,4,kinghenryviii,1612 fathers,4,kinghenryviii,1612 help,4,kinghenryviii,1612 health,4,kinghenryviii,1612 rod,4,kinghenryviii,1612 boys,4,kinghenryviii,1612 Stay,4,kinghenryviii,1612 single,4,kinghenryviii,1612 frowning,4,kinghenryviii,1612 mere,4,kinghenryviii,1612 prisoner,4,kinghenryviii,1612 while,4,kinghenryviii,1612 learn'd,4,kinghenryviii,1612 appear,4,kinghenryviii,1612 advise,4,kinghenryviii,1612 contrary,4,kinghenryviii,1612 scruple,4,kinghenryviii,1612 become,4,kinghenryviii,1612 years,4,kinghenryviii,1612 dance,4,kinghenryviii,1612 sorrows,4,kinghenryviii,1612 An't,4,kinghenryviii,1612 brother,4,kinghenryviii,1612 Only,4,kinghenryviii,1612 Nicholas,4,kinghenryviii,1612 noise,4,kinghenryviii,1612 blessed,4,kinghenryviii,1612 black,4,kinghenryviii,1612 view,4,kinghenryviii,1612 I'm,4,kinghenryviii,1612 enough,4,kinghenryviii,1612 walk,4,kinghenryviii,1612 Marchioness,4,kinghenryviii,1612 sea,4,kinghenryviii,1612 worth,4,kinghenryviii,1612 son,4,kinghenryviii,1612 dignities,4,kinghenryviii,1612 VAUX,4,kinghenryviii,1612 league,4,kinghenryviii,1612 received,4,kinghenryviii,1612 ante,4,kinghenryviii,1612 profess,4,kinghenryviii,1612 ways,4,kinghenryviii,1612 Sands,4,kinghenryviii,1612 Guard,4,kinghenryviii,1612 rude,4,kinghenryviii,1612 others,4,kinghenryviii,1612 wishes,4,kinghenryviii,1612 language,4,kinghenryviii,1612 Please,4,kinghenryviii,1612 hence,4,kinghenryviii,1612 died,4,kinghenryviii,1612 displeasure,4,kinghenryviii,1612 LINCOLN,4,kinghenryviii,1612 parts,4,kinghenryviii,1612 Bullen,4,kinghenryviii,1612 manners,4,kinghenryviii,1612 boy,4,kinghenryviii,1612 in't,4,kinghenryviii,1612 Her,4,kinghenryviii,1612 Within,4,kinghenryviii,1612 hit,4,kinghenryviii,1612 flowers,4,kinghenryviii,1612 means,4,kinghenryviii,1612 strangely,4,kinghenryviii,1612 bid,4,kinghenryviii,1612 Let's,4,kinghenryviii,1612 proud,4,kinghenryviii,1612 wear,4,kinghenryviii,1612 surveyor,4,kinghenryviii,1612 suddenly,4,kinghenryviii,1612 used,4,kinghenryviii,1612 About,4,kinghenryviii,1612 monk,4,kinghenryviii,1612 story,4,kinghenryviii,1612 deed,4,kinghenryviii,1612 confess,4,kinghenryviii,1612 breast,4,kinghenryviii,1612 promises,4,kinghenryviii,1612 tongues,4,kinghenryviii,1612 dead,4,kinghenryviii,1612 that's,4,kinghenryviii,1612 committed,4,kinghenryviii,1612 small,4,kinghenryviii,1612 Yea,4,kinghenryviii,1612 beholding,4,kinghenryviii,1612 less,4,kinghenryviii,1612 twenty,4,kinghenryviii,1612 act,4,kinghenryviii,1612 unmannerly,4,kinghenryviii,1612 speaks,4,kinghenryviii,1612 deny,4,kinghenryviii,1612 mighty,4,kinghenryviii,1612 ask,4,kinghenryviii,1612 fear'd,4,kinghenryviii,1612 fall'n,4,kinghenryviii,1612 secret,4,kinghenryviii,1612 root,4,kinghenryviii,1612 venture,4,kinghenryviii,1612 mischief,4,kinghenryviii,1612 mace,4,kinghenryviii,1612 things,4,kinghenryviii,1612 GUILDFORD,4,kinghenryviii,1612 learning,4,kinghenryviii,1612 places,4,kinghenryviii,1612 question,4,kinghenryviii,1612 Look,4,kinghenryviii,1612 chair,4,kinghenryviii,1612 Could,4,kinghenryviii,1612 woe,4,kinghenryviii,1612 labour,4,kinghenryviii,1612 need,4,kinghenryviii,1612 Being,4,kinghenryviii,1612 letters,4,kinghenryviii,1612 desired,4,kinghenryviii,1612 Hautboys,4,kinghenryviii,1612 Were,4,kinghenryviii,1612 get,4,kinghenryviii,1612 grave,4,kinghenryviii,1612 wit,4,kinghenryviii,1612 win,4,kinghenryviii,1612 persons,4,kinghenryviii,1612 break,4,kinghenryviii,1612 ring,4,kinghenryviii,1612 moment,4,kinghenryviii,1612 you're,4,kinghenryviii,1612 flourish,4,kinghenryviii,1612 Can,4,kinghenryviii,1612 between,4,kinghenryviii,1612 ambition,4,kinghenryviii,1612 themselves,4,kinghenryviii,1612 danger,4,kinghenryviii,1612 SIR,4,kinghenryviii,1612 Hopkins,4,kinghenryviii,1612 faces,4,kinghenryviii,1612 earthly,4,kinghenryviii,1612 Surrey,4,kinghenryviii,1612 foreign,4,kinghenryviii,1612 went,4,kinghenryviii,1612 Even,4,kinghenryviii,1612 guilty,4,kinghenryviii,1612 Many,4,kinghenryviii,1612 ta'en,4,kinghenryviii,1612 holiness,4,kinghenryviii,1612 wealth,4,kinghenryviii,1612 lived,4,kinghenryviii,1612 kiss,4,kinghenryviii,1612 man's,4,kinghenryviii,1612 Earl,4,kinghenryviii,1612 carry,4,kinghenryviii,1612 wild,4,kinghenryviii,1612 articles,4,kinghenryviii,1612 dangerous,4,kinghenryviii,1612 strong,4,kinghenryviii,1612 along,4,kinghenryviii,1612 seek,4,kinghenryviii,1612 troth,4,kinghenryviii,1612 Patience,4,kinghenryviii,1612 troop,4,kinghenryviii,1612 traitor,4,kinghenryviii,1612 Things,4,kinghenryviii,1612 entreat,4,kinghenryviii,1612 return,4,kinghenryviii,1612 cold,4,kinghenryviii,1612 pope,4,kinghenryviii,1612 laws,4,kinghenryviii,1612 mad,4,kinghenryviii,1612 limbs,4,kinghenryviii,1612 Dorset,4,kinghenryviii,1612 christening,4,kinghenryviii,1612 chosen,4,kinghenryviii,1612 Before,4,kinghenryviii,1612 Men,4,kinghenryviii,1612 liege,4,kinghenryviii,1612 physic,4,kinghenryviii,1612 moe,4,kinghenryviii,1612 content,4,kinghenryviii,1612 laid,4,kinghenryviii,1612 princely,4,kinghenryviii,1612 guests,4,kinghenryviii,1612 behold,4,kinghenryviii,1612 Christendom,4,kinghenryviii,1612 command,4,kinghenryviii,1612 spirit,4,kinghenryviii,1612 amen,4,kinghenryviii,1612 usher,4,kinghenryviii,1612 die,4,kinghenryviii,1612 sharp,4,kinghenryviii,1612 fortunes,4,kinghenryviii,1612 You're,5,kinghenryviii,1612 Duchess,5,kinghenryviii,1612 for't,5,kinghenryviii,1612 writ,5,kinghenryviii,1612 haste,5,kinghenryviii,1612 Never,5,kinghenryviii,1612 finger,5,kinghenryviii,1612 tears,5,kinghenryviii,1612 Crier,5,kinghenryviii,1612 weighty,5,kinghenryviii,1612 run,5,kinghenryviii,1612 Whom,5,kinghenryviii,1612 Sergeant,5,kinghenryviii,1612 spare,5,kinghenryviii,1612 mercy,5,kinghenryviii,1612 draw,5,kinghenryviii,1612 Whose,5,kinghenryviii,1612 stands,5,kinghenryviii,1612 sin,5,kinghenryviii,1612 virtuous,5,kinghenryviii,1612 suit,5,kinghenryviii,1612 Their,5,kinghenryviii,1612 Servant,5,kinghenryviii,1612 betwixt,5,kinghenryviii,1612 piece,5,kinghenryviii,1612 Gardiner,5,kinghenryviii,1612 humbly,5,kinghenryviii,1612 corrupt,5,kinghenryviii,1612 false,5,kinghenryviii,1612 wise,5,kinghenryviii,1612 ruin,5,kinghenryviii,1612 Though,5,kinghenryviii,1612 anon,5,kinghenryviii,1612 desire,5,kinghenryviii,1612 III,5,kinghenryviii,1612 Ay,5,kinghenryviii,1612 neither,5,kinghenryviii,1612 Still,5,kinghenryviii,1612 Stand,5,kinghenryviii,1612 OF,5,kinghenryviii,1612 creature,5,kinghenryviii,1612 IV,5,kinghenryviii,1612 Almost,5,kinghenryviii,1612 quiet,5,kinghenryviii,1612 weep,5,kinghenryviii,1612 Re,5,kinghenryviii,1612 farewell,5,kinghenryviii,1612 just,5,kinghenryviii,1612 longer,5,kinghenryviii,1612 Like,5,kinghenryviii,1612 yea,5,kinghenryviii,1612 stood,5,kinghenryviii,1612 look,5,kinghenryviii,1612 needs,5,kinghenryviii,1612 dear,5,kinghenryviii,1612 priest,5,kinghenryviii,1612 manner,5,kinghenryviii,1612 wench,5,kinghenryviii,1612 train,5,kinghenryviii,1612 load,5,kinghenryviii,1612 running,5,kinghenryviii,1612 easy,5,kinghenryviii,1612 hard,5,kinghenryviii,1612 Bishop,5,kinghenryviii,1612 prince,5,kinghenryviii,1612 forth,5,kinghenryviii,1612 fool,5,kinghenryviii,1612 banquet,5,kinghenryviii,1612 enemies,5,kinghenryviii,1612 having,5,kinghenryviii,1612 Should,5,kinghenryviii,1612 through,5,kinghenryviii,1612 main,5,kinghenryviii,1612 moved,5,kinghenryviii,1612 envy,5,kinghenryviii,1612 proceed,5,kinghenryviii,1612 tender,5,kinghenryviii,1612 coronation,5,kinghenryviii,1612 mouth,5,kinghenryviii,1612 Some,5,kinghenryviii,1612 issue,5,kinghenryviii,1612 let's,5,kinghenryviii,1612 fire,5,kinghenryviii,1612 close,5,kinghenryviii,1612 affairs,5,kinghenryviii,1612 opinion,5,kinghenryviii,1612 pomp,5,kinghenryviii,1612 oft,5,kinghenryviii,1612 sorrow,5,kinghenryviii,1612 morrow,5,kinghenryviii,1612 beseech,5,kinghenryviii,1612 integrity,5,kinghenryviii,1612 rise,5,kinghenryviii,1612 commanded,5,kinghenryviii,1612 garland,5,kinghenryviii,1612 pride,5,kinghenryviii,1612 forward,5,kinghenryviii,1612 ends,5,kinghenryviii,1612 chamberlain,5,kinghenryviii,1612 require,5,kinghenryviii,1612 Ever,5,kinghenryviii,1612 fail,5,kinghenryviii,1612 table,5,kinghenryviii,1612 cried,5,kinghenryviii,1612 Make,5,kinghenryviii,1612 pleased,5,kinghenryviii,1612 letter,5,kinghenryviii,1612 allow'd,5,kinghenryviii,1612 is't,5,kinghenryviii,1612 talk,5,kinghenryviii,1612 gentlemen,5,kinghenryviii,1612 short,5,kinghenryviii,1612 Who's,5,kinghenryviii,1612 seat,5,kinghenryviii,1612 swear,5,kinghenryviii,1612 Believe,5,kinghenryviii,1612 house,5,kinghenryviii,1612 'twill,5,kinghenryviii,1612 wretched,5,kinghenryviii,1612 self,5,kinghenryviii,1612 lie,5,kinghenryviii,1612 sleep,5,kinghenryviii,1612 queen's,5,kinghenryviii,1612 doing,5,kinghenryviii,1612 Messenger,5,kinghenryviii,1612 sovereign,5,kinghenryviii,1612 Since,5,kinghenryviii,1612 thoughts,5,kinghenryviii,1612 Without,5,kinghenryviii,1612 silver,5,kinghenryviii,1612 going,5,kinghenryviii,1612 follow'd,5,kinghenryviii,1612 You'll,5,kinghenryviii,1612 Thy,5,kinghenryviii,1612 attend,5,kinghenryviii,1612 He's,5,kinghenryviii,1612 Take,5,kinghenryviii,1612 PATIENCE,5,kinghenryviii,1612 kind,5,kinghenryviii,1612 heed,6,kinghenryviii,1612 days,6,kinghenryviii,1612 held,6,kinghenryviii,1612 truly,6,kinghenryviii,1612 angels,6,kinghenryviii,1612 although,6,kinghenryviii,1612 After,6,kinghenryviii,1612 gracious,6,kinghenryviii,1612 paper,6,kinghenryviii,1612 something,6,kinghenryviii,1612 bound,6,kinghenryviii,1612 deliver,6,kinghenryviii,1612 Such,6,kinghenryviii,1612 Farewell,6,kinghenryviii,1612 within,6,kinghenryviii,1612 looks,6,kinghenryviii,1612 worst,6,kinghenryviii,1612 wrong,6,kinghenryviii,1612 falls,6,kinghenryviii,1612 humble,6,kinghenryviii,1612 title,6,kinghenryviii,1612 voice,6,kinghenryviii,1612 spoke,6,kinghenryviii,1612 morning,6,kinghenryviii,1612 What's,6,kinghenryviii,1612 therefore,6,kinghenryviii,1612 hopes,6,kinghenryviii,1612 in's,6,kinghenryviii,1612 wisdom,6,kinghenryviii,1612 since,6,kinghenryviii,1612 Ha,6,kinghenryviii,1612 bed,6,kinghenryviii,1612 prove,6,kinghenryviii,1612 Charles,6,kinghenryviii,1612 Prithee,6,kinghenryviii,1612 Speak,6,kinghenryviii,1612 ha,6,kinghenryviii,1612 earth,6,kinghenryviii,1612 lose,6,kinghenryviii,1612 four,6,kinghenryviii,1612 course,6,kinghenryviii,1612 open,6,kinghenryviii,1612 Under,6,kinghenryviii,1612 art,6,kinghenryviii,1612 hast,6,kinghenryviii,1612 King,6,kinghenryviii,1612 few,6,kinghenryviii,1612 note,6,kinghenryviii,1612 Garter,6,kinghenryviii,1612 freely,6,kinghenryviii,1612 child,6,kinghenryviii,1612 general,6,kinghenryviii,1612 there's,6,kinghenryviii,1612 cure,6,kinghenryviii,1612 save,6,kinghenryviii,1612 burthen,6,kinghenryviii,1612 believe,6,kinghenryviii,1612 coming,6,kinghenryviii,1612 anger,6,kinghenryviii,1612 That's,6,kinghenryviii,1612 secretary,6,kinghenryviii,1612 fortune,6,kinghenryviii,1612 company,6,kinghenryviii,1612 even,6,kinghenryviii,1612 palace,6,kinghenryviii,1612 trumpets,6,kinghenryviii,1612 pardon,6,kinghenryviii,1612 clear,6,kinghenryviii,1612 virtues,6,kinghenryviii,1612 Anne,6,kinghenryviii,1612 use,6,kinghenryviii,1612 whom,6,kinghenryviii,1612 Gentlemen,6,kinghenryviii,1612 hither,6,kinghenryviii,1612 goes,6,kinghenryviii,1612 least,6,kinghenryviii,1612 remember,6,kinghenryviii,1612 Does,6,kinghenryviii,1612 Secretary,6,kinghenryviii,1612 on't,6,kinghenryviii,1612 beauty,6,kinghenryviii,1612 respect,6,kinghenryviii,1612 shame,6,kinghenryviii,1612 princess,6,kinghenryviii,1612 V,7,kinghenryviii,1612 joy,7,kinghenryviii,1612 Cardinal,7,kinghenryviii,1612 pleasures,7,kinghenryviii,1612 Nor,7,kinghenryviii,1612 deserve,7,kinghenryviii,1612 Norfolk,7,kinghenryviii,1612 turn,7,kinghenryviii,1612 daughter,7,kinghenryviii,1612 worthy,7,kinghenryviii,1612 grow,7,kinghenryviii,1612 One,7,kinghenryviii,1612 rest,7,kinghenryviii,1612 office,7,kinghenryviii,1612 Ladies,7,kinghenryviii,1612 Do,7,kinghenryviii,1612 he's,7,kinghenryviii,1612 Those,7,kinghenryviii,1612 to't,7,kinghenryviii,1612 On,7,kinghenryviii,1612 whole,7,kinghenryviii,1612 CAPUCIUS,7,kinghenryviii,1612 Has,7,kinghenryviii,1612 heads,7,kinghenryviii,1612 blood,7,kinghenryviii,1612 gold,7,kinghenryviii,1612 got,7,kinghenryviii,1612 learned,7,kinghenryviii,1612 weak,7,kinghenryviii,1612 people,7,kinghenryviii,1612 BUTTS,7,kinghenryviii,1612 Both,7,kinghenryviii,1612 God's,7,kinghenryviii,1612 servant,7,kinghenryviii,1612 fears,7,kinghenryviii,1612 loves,7,kinghenryviii,1612 lost,7,kinghenryviii,1612 ill,7,kinghenryviii,1612 knew,7,kinghenryviii,1612 ready,7,kinghenryviii,1612 Christian,7,kinghenryviii,1612 call'd,7,kinghenryviii,1612 DOCTOR,7,kinghenryviii,1612 Are,7,kinghenryviii,1612 judgment,7,kinghenryviii,1612 Hath,7,kinghenryviii,1612 faith,7,kinghenryviii,1612 majesty,7,kinghenryviii,1612 blessings,7,kinghenryviii,1612 already,7,kinghenryviii,1612 knows,7,kinghenryviii,1612 over,7,kinghenryviii,1612 free,7,kinghenryviii,1612 Made,7,kinghenryviii,1612 sake,7,kinghenryviii,1612 Say,7,kinghenryviii,1612 able,7,kinghenryviii,1612 arms,7,kinghenryviii,1612 face,7,kinghenryviii,1612 news,7,kinghenryviii,1612 takes,7,kinghenryviii,1612 Till,7,kinghenryviii,1612 three,7,kinghenryviii,1612 work,7,kinghenryviii,1612 fit,7,kinghenryviii,1612 ne'er,7,kinghenryviii,1612 lordship,7,kinghenryviii,1612 emperor,7,kinghenryviii,1612 Henry,7,kinghenryviii,1612 unto,7,kinghenryviii,1612 seal,7,kinghenryviii,1612 alone,7,kinghenryviii,1612 presence,7,kinghenryviii,1612 divorce,7,kinghenryviii,1612 sound,7,kinghenryviii,1612 cry,7,kinghenryviii,1612 met,7,kinghenryviii,1612 heartily,7,kinghenryviii,1612 Cranmer,7,kinghenryviii,1612 Where,7,kinghenryviii,1612 sudden,7,kinghenryviii,1612 charity,7,kinghenryviii,1612 crown,7,kinghenryviii,1612 order,7,kinghenryviii,1612 Lovell,8,kinghenryviii,1612 answer,8,kinghenryviii,1612 o'er,8,kinghenryviii,1612 Keeper,8,kinghenryviii,1612 honours,8,kinghenryviii,1612 thought,8,kinghenryviii,1612 cardinal's,8,kinghenryviii,1612 Must,8,kinghenryviii,1612 charge,8,kinghenryviii,1612 sad,8,kinghenryviii,1612 call,8,kinghenryviii,1612 another,8,kinghenryviii,1612 merry,8,kinghenryviii,1612 read,8,kinghenryviii,1612 France,8,kinghenryviii,1612 princes,8,kinghenryviii,1612 sun,8,kinghenryviii,1612 above,8,kinghenryviii,1612 music,8,kinghenryviii,1612 patience,8,kinghenryviii,1612 among,8,kinghenryviii,1612 archbishop,8,kinghenryviii,1612 Go,8,kinghenryviii,1612 meant,8,kinghenryviii,1612 bless,8,kinghenryviii,1612 BRANDON,8,kinghenryviii,1612 sorry,8,kinghenryviii,1612 whose,8,kinghenryviii,1612 gone,8,kinghenryviii,1612 hands,8,kinghenryviii,1612 Wolsey,8,kinghenryviii,1612 devil,8,kinghenryviii,1612 keep,8,kinghenryviii,1612 show,8,kinghenryviii,1612 though,8,kinghenryviii,1612 thanks,8,kinghenryviii,1612 Into,8,kinghenryviii,1612 Thou,8,kinghenryviii,1612 Queen,8,kinghenryviii,1612 York,8,kinghenryviii,1612 London,8,kinghenryviii,1612 judge,8,kinghenryviii,1612 hearts,8,kinghenryviii,1612 eyes,8,kinghenryviii,1612 honesty,8,kinghenryviii,1612 marriage,8,kinghenryviii,1612 strange,8,kinghenryviii,1612 witness,8,kinghenryviii,1612 land,8,kinghenryviii,1612 greatness,8,kinghenryviii,1612 obedience,8,kinghenryviii,1612 times,9,kinghenryviii,1612 Alas,9,kinghenryviii,1612 graces,9,kinghenryviii,1612 came,9,kinghenryviii,1612 death,9,kinghenryviii,1612 DENNY,9,kinghenryviii,1612 subject,9,kinghenryviii,1612 doubt,9,kinghenryviii,1612 both,9,kinghenryviii,1612 bring,9,kinghenryviii,1612 Tower,9,kinghenryviii,1612 sick,9,kinghenryviii,1612 II,9,kinghenryviii,1612 enter,9,kinghenryviii,1612 Katharine,9,kinghenryviii,1612 ABERGAVENNY,9,kinghenryviii,1612 forgive,9,kinghenryviii,1612 loved,9,kinghenryviii,1612 Than,9,kinghenryviii,1612 trial,9,kinghenryviii,1612 justice,9,kinghenryviii,1612 Madam,9,kinghenryviii,1612 eye,9,kinghenryviii,1612 young,9,kinghenryviii,1612 known,9,kinghenryviii,1612 thing,9,kinghenryviii,1612 off,9,kinghenryviii,1612 only,9,kinghenryviii,1612 Well,9,kinghenryviii,1612 duty,9,kinghenryviii,1612 happy,9,kinghenryviii,1612 glad,9,kinghenryviii,1612 comfort,9,kinghenryviii,1612 gentleman,9,kinghenryviii,1612 thousand,9,kinghenryviii,1612 given,9,kinghenryviii,1612 hold,9,kinghenryviii,1612 follows,9,kinghenryviii,1612 Winchester,9,kinghenryviii,1612 English,9,kinghenryviii,1612 glory,9,kinghenryviii,1612 Man,9,kinghenryviii,1612 virtue,9,kinghenryviii,1612 certain,9,kinghenryviii,1612 Upon,10,kinghenryviii,1612 care,10,kinghenryviii,1612 Come,10,kinghenryviii,1612 nothing,10,kinghenryviii,1612 set,10,kinghenryviii,1612 counsel,10,kinghenryviii,1612 mean,10,kinghenryviii,1612 French,10,kinghenryviii,1612 side,10,kinghenryviii,1612 night,10,kinghenryviii,1612 favour,10,kinghenryviii,1612 Yet,10,kinghenryviii,1612 brought,10,kinghenryviii,1612 welcome,10,kinghenryviii,1612 point,10,kinghenryviii,1612 gentle,10,kinghenryviii,1612 myself,10,kinghenryviii,1612 comes,10,kinghenryviii,1612 Griffith,10,kinghenryviii,1612 Rome,10,kinghenryviii,1612 ones,10,kinghenryviii,1612 living,10,kinghenryviii,1612 heard,10,kinghenryviii,1612 found,10,kinghenryviii,1612 till,10,kinghenryviii,1612 law,10,kinghenryviii,1612 lay,10,kinghenryviii,1612 wife,10,kinghenryviii,1612 commission,10,kinghenryviii,1612 goodness,10,kinghenryviii,1612 private,10,kinghenryviii,1612 women,10,kinghenryviii,1612 highness',11,kinghenryviii,1612 saw,11,kinghenryviii,1612 sure,11,kinghenryviii,1612 Why,11,kinghenryviii,1612 sit,11,kinghenryviii,1612 fell,11,kinghenryviii,1612 These,11,kinghenryviii,1612 Our,11,kinghenryviii,1612 service,11,kinghenryviii,1612 bold,11,kinghenryviii,1612 pass,11,kinghenryviii,1612 down,11,kinghenryviii,1612 Ye,11,kinghenryviii,1612 left,11,kinghenryviii,1612 does,11,kinghenryviii,1612 Most,11,kinghenryviii,1612 half,11,kinghenryviii,1612 right,11,kinghenryviii,1612 From,11,kinghenryviii,1612 very,11,kinghenryviii,1612 mind,11,kinghenryviii,1612 Third,11,kinghenryviii,1612 same,11,kinghenryviii,1612 Heaven,11,kinghenryviii,1612 holy,11,kinghenryviii,1612 kingdom,11,kinghenryviii,1612 back,11,kinghenryviii,1612 sweet,11,kinghenryviii,1612 together,11,kinghenryviii,1612 Chancellor,11,kinghenryviii,1612 nature,11,kinghenryviii,1612 without,11,kinghenryviii,1612 might,11,kinghenryviii,1612 power,11,kinghenryviii,1612 pity,12,kinghenryviii,1612 Nay,12,kinghenryviii,1612 Will,12,kinghenryviii,1612 yourself,12,kinghenryviii,1612 fellow,12,kinghenryviii,1612 feel,12,kinghenryviii,1612 wish,12,kinghenryviii,1612 There's,12,kinghenryviii,1612 gave,12,kinghenryviii,1612 Surveyor,12,kinghenryviii,1612 part,12,kinghenryviii,1612 More,12,kinghenryviii,1612 new,12,kinghenryviii,1612 none,12,kinghenryviii,1612 near,12,kinghenryviii,1612 hope,12,kinghenryviii,1612 England,12,kinghenryviii,1612 Canterbury,12,kinghenryviii,1612 honest,12,kinghenryviii,1612 reverend,12,kinghenryviii,1612 friends,13,kinghenryviii,1612 bearing,13,kinghenryviii,1612 words,13,kinghenryviii,1612 Duke,13,kinghenryviii,1612 council,13,kinghenryviii,1612 Was,13,kinghenryviii,1612 away,13,kinghenryviii,1612 malice,13,kinghenryviii,1612 chamber,13,kinghenryviii,1612 put,13,kinghenryviii,1612 said,13,kinghenryviii,1612 door,13,kinghenryviii,1612 present,13,kinghenryviii,1612 Porter,13,kinghenryviii,1612 nor,13,kinghenryviii,1612 next,13,kinghenryviii,1612 Shall,13,kinghenryviii,1612 prayers,13,kinghenryviii,1612 live,13,kinghenryviii,1612 himself,13,kinghenryviii,1612 Buckingham,14,kinghenryviii,1612 under,14,kinghenryviii,1612 head,14,kinghenryviii,1612 Out,14,kinghenryviii,1612 after,14,kinghenryviii,1612 each,14,kinghenryviii,1612 At,14,kinghenryviii,1612 An,14,kinghenryviii,1612 play,14,kinghenryviii,1612 tongue,14,kinghenryviii,1612 indeed,14,kinghenryviii,1612 fall,14,kinghenryviii,1612 old,14,kinghenryviii,1612 hour,14,kinghenryviii,1612 makes,14,kinghenryviii,1612 last,14,kinghenryviii,1612 being,14,kinghenryviii,1612 father,14,kinghenryviii,1612 May,14,kinghenryviii,1612 further,15,kinghenryviii,1612 better,15,kinghenryviii,1612 about,15,kinghenryviii,1612 else,15,kinghenryviii,1612 name,15,kinghenryviii,1612 pleasure,15,kinghenryviii,1612 She,15,kinghenryviii,1612 end,15,kinghenryviii,1612 stand,15,kinghenryviii,1612 thank,15,kinghenryviii,1612 ladies,15,kinghenryviii,1612 royal,16,kinghenryviii,1612 friend,16,kinghenryviii,1612 hath,16,kinghenryviii,1612 high,16,kinghenryviii,1612 still,16,kinghenryviii,1612 duke,16,kinghenryviii,1612 Pray,16,kinghenryviii,1612 person,16,kinghenryviii,1612 madam,16,kinghenryviii,1612 late,16,kinghenryviii,1612 Exit,16,kinghenryviii,1612 thou,17,kinghenryviii,1612 Aside,17,kinghenryviii,1612 Be,17,kinghenryviii,1612 Good,17,kinghenryviii,1612 best,17,kinghenryviii,1612 i',17,kinghenryviii,1612 go,17,kinghenryviii,1612 Cromwell,17,kinghenryviii,1612 ACT,17,kinghenryviii,1612 Then,17,kinghenryviii,1612 GRIFFITH,17,kinghenryviii,1612 When,17,kinghenryviii,1612 Would,18,kinghenryviii,1612 Who,18,kinghenryviii,1612 thee,18,kinghenryviii,1612 Or,18,kinghenryviii,1612 been,18,kinghenryviii,1612 bear,18,kinghenryviii,1612 sent,18,kinghenryviii,1612 first,18,kinghenryviii,1612 true,18,kinghenryviii,1612 cannot,18,kinghenryviii,1612 dare,18,kinghenryviii,1612 SCENE,18,kinghenryviii,1612 soul,19,kinghenryviii,1612 world,19,kinghenryviii,1612 Thomas,19,kinghenryviii,1612 Old,19,kinghenryviii,1612 Which,19,kinghenryviii,1612 any,19,kinghenryviii,1612 Yes,19,kinghenryviii,1612 hand,19,kinghenryviii,1612 court,19,kinghenryviii,1612 ',20,kinghenryviii,1612 peace,20,kinghenryviii,1612 every,20,kinghenryviii,1612 full,20,kinghenryviii,1612 Now,20,kinghenryviii,1612 cause,20,kinghenryviii,1612 tell,20,kinghenryviii,1612 CAMPEIUS,20,kinghenryviii,1612 many,20,kinghenryviii,1612 once,20,kinghenryviii,1612 could,20,kinghenryviii,1612 heart,20,kinghenryviii,1612 poor,20,kinghenryviii,1612 woman,20,kinghenryviii,1612 Not,21,kinghenryviii,1612 done,21,kinghenryviii,1612 into,21,kinghenryviii,1612 All,21,kinghenryviii,1612 who,21,kinghenryviii,1612 master,21,kinghenryviii,1612 There,22,kinghenryviii,1612 fear,22,kinghenryviii,1612 far,22,kinghenryviii,1612 SANDS,22,kinghenryviii,1612 please,22,kinghenryviii,1612 other,22,kinghenryviii,1612 truth,23,kinghenryviii,1612 We,23,kinghenryviii,1612 love,23,kinghenryviii,1612 find,23,kinghenryviii,1612 day,23,kinghenryviii,1612 Let,23,kinghenryviii,1612 conscience,24,kinghenryviii,1612 long,24,kinghenryviii,1612 fair,24,kinghenryviii,1612 hear,25,kinghenryviii,1612 No,25,kinghenryviii,1612 It,25,kinghenryviii,1612 Exeunt,25,kinghenryviii,1612 place,25,kinghenryviii,1612 up,25,kinghenryviii,1612 own,25,kinghenryviii,1612 thus,25,kinghenryviii,1612 life,26,kinghenryviii,1612 against,26,kinghenryviii,1612 CROMWELL,26,kinghenryviii,1612 God,26,kinghenryviii,1612 ANNE,26,kinghenryviii,1612 those,26,kinghenryviii,1612 Lady,26,kinghenryviii,1612 again,26,kinghenryviii,1612 lady,26,kinghenryviii,1612 pray,27,kinghenryviii,1612 highness,27,kinghenryviii,1612 how,27,kinghenryviii,1612 state,27,kinghenryviii,1612 thy,27,kinghenryviii,1612 some,28,kinghenryviii,1612 never,28,kinghenryviii,1612 made,28,kinghenryviii,1612 Have,28,kinghenryviii,1612 Your,28,kinghenryviii,1612 CRANMER,28,kinghenryviii,1612 before,28,kinghenryviii,1612 time,28,kinghenryviii,1612 let,28,kinghenryviii,1612 With,29,kinghenryviii,1612 o',29,kinghenryviii,1612 give,29,kinghenryviii,1612 GARDINER,29,kinghenryviii,1612 way,29,kinghenryviii,1612 leave,29,kinghenryviii,1612 men,29,kinghenryviii,1612 SURREY,30,kinghenryviii,1612 where,30,kinghenryviii,1612 them,31,kinghenryviii,1612 So,31,kinghenryviii,1612 Lord,31,kinghenryviii,1612 mine,31,kinghenryviii,1612 'Tis,31,kinghenryviii,1612 O,32,kinghenryviii,1612 business,32,kinghenryviii,1612 can,32,kinghenryviii,1612 little,32,kinghenryviii,1612 two,32,kinghenryviii,1612 'tis,33,kinghenryviii,1612 speak,33,kinghenryviii,1612 BUCKINGHAM,33,kinghenryviii,1612 LOVELL,33,kinghenryviii,1612 queen,33,kinghenryviii,1612 take,33,kinghenryviii,1612 when,33,kinghenryviii,1612 king's,34,kinghenryviii,1612 His,34,kinghenryviii,1612 think,34,kinghenryviii,1612 were,34,kinghenryviii,1612 By,35,kinghenryviii,1612 They,35,kinghenryviii,1612 I'll,35,kinghenryviii,1612 come,35,kinghenryviii,1612 sir,36,kinghenryviii,1612 heaven,36,kinghenryviii,1612 here,37,kinghenryviii,1612 she,37,kinghenryviii,1612 If,37,kinghenryviii,1612 Is,37,kinghenryviii,1612 most,37,kinghenryviii,1612 How,37,kinghenryviii,1612 lords,37,kinghenryviii,1612 there,38,kinghenryviii,1612 should,38,kinghenryviii,1612 see,39,kinghenryviii,1612 these,39,kinghenryviii,1612 Second,39,kinghenryviii,1612 make,39,kinghenryviii,1612 and,551,kinghenryviii,1612 an,40,kinghenryviii,1612 upon,41,kinghenryviii,1612 say,41,kinghenryviii,1612 than,41,kinghenryviii,1612 has,41,kinghenryviii,1612 us,41,kinghenryviii,1612 did,41,kinghenryviii,1612 then,42,kinghenryviii,1612 cardinal,42,kinghenryviii,1612 First,42,kinghenryviii,1612 much,43,kinghenryviii,1612 well,43,kinghenryviii,1612 honour,44,kinghenryviii,1612 noble,44,kinghenryviii,1612 if,44,kinghenryviii,1612 Sir,44,kinghenryviii,1612 great,44,kinghenryviii,1612 QUEEN,44,kinghenryviii,1612 ever,45,kinghenryviii,1612 SUFFOLK,45,kinghenryviii,1612 my,301,kinghenryviii,1612 such,46,kinghenryviii,1612 had,46,kinghenryviii,1612 In,46,kinghenryviii,1612 or,46,kinghenryviii,1612 Enter,46,kinghenryviii,1612 out,46,kinghenryviii,1612 like,47,kinghenryviii,1612 He,48,kinghenryviii,1612 yet,48,kinghenryviii,1612 too,48,kinghenryviii,1612 must,49,kinghenryviii,1612 I,561,kinghenryviii,1612 grace,51,kinghenryviii,1612 What,51,kinghenryviii,1612 But,52,kinghenryviii,1612 Chamberlain,53,kinghenryviii,1612 This,53,kinghenryviii,1612 may,53,kinghenryviii,1612 As,55,kinghenryviii,1612 we,56,kinghenryviii,1612 Of,58,kinghenryviii,1612 know,58,kinghenryviii,1612 one,60,kinghenryviii,1612 KATHARINE,61,kinghenryviii,1612 man,61,kinghenryviii,1612 what,61,kinghenryviii,1612 NORFOLK,62,kinghenryviii,1612 For,63,kinghenryviii,1612 am,64,kinghenryviii,1612 our,64,kinghenryviii,1612 'em,64,kinghenryviii,1612 ye,66,kinghenryviii,1612 do,67,kinghenryviii,1612 more,67,kinghenryviii,1612 would,67,kinghenryviii,1612 which,68,kinghenryviii,1612 at,68,kinghenryviii,1612 their,70,kinghenryviii,1612 My,71,kinghenryviii,1612 You,73,kinghenryviii,1612 was,75,kinghenryviii,1612 they,76,kinghenryviii,1612 no,76,kinghenryviii,1612 now,78,kinghenryviii,1612 on,79,kinghenryviii,1612 A,81,kinghenryviii,1612 but,82,kinghenryviii,1612 from,82,kinghenryviii,1612 will,88,kinghenryviii,1612 you,344,kinghenryviii,1612 by,91,kinghenryviii,1612 That,92,kinghenryviii,1612 Gentleman,93,kinghenryviii,1612 king,94,kinghenryviii,1612 lord,97,kinghenryviii,1612 shall,97,kinghenryviii,1612 so,98,kinghenryviii,1612 WOLSEY,100,kinghenryviii,1612 good,102,kinghenryviii,1612 as,109,kinghenryviii,1612 her,114,kinghenryviii,1612 VIII,118,kinghenryviii,1612 KING,121,kinghenryviii,1612 CARDINAL,121,kinghenryviii,1612 HENRY,122,kinghenryviii,1612 are,125,kinghenryviii,1612 a,382,kinghenryviii,1612 To,138,kinghenryviii,1612 all,138,kinghenryviii,1612 for,150,kinghenryviii,1612 he,153,kinghenryviii,1612 is,156,kinghenryviii,1612 with,160,kinghenryviii,1612 it,162,kinghenryviii,1612 have,164,kinghenryviii,1612 be,169,kinghenryviii,1612 not,171,kinghenryviii,1612 And,186,kinghenryviii,1612 him,196,kinghenryviii,1612 this,202,kinghenryviii,1612 The,204,kinghenryviii,1612 to,473,kinghenryviii,1612 of,477,kinghenryviii,1612 the,738,kinghenryviii,1612 that,232,kinghenryviii,1612 his,234,kinghenryviii,1612 me,235,kinghenryviii,1612 your,242,kinghenryviii,1612 in,255,kinghenryviii,1612 brave,1,kingrichardii,1595 fealty,1,kingrichardii,1595 indignation,1,kingrichardii,1595 champions,1,kingrichardii,1595 'all,1,kingrichardii,1595 kerns,1,kingrichardii,1595 generation,1,kingrichardii,1595 alehouse,1,kingrichardii,1595 Recover,1,kingrichardii,1595 Francis,1,kingrichardii,1595 parchment,1,kingrichardii,1595 unrestrained,1,kingrichardii,1595 rushing,1,kingrichardii,1595 effeminate,1,kingrichardii,1595 clouded,1,kingrichardii,1595 resignation,1,kingrichardii,1595 moral,1,kingrichardii,1595 chairs,1,kingrichardii,1595 ignorance,1,kingrichardii,1595 imaginary,1,kingrichardii,1595 blemish'd,1,kingrichardii,1595 drawing,1,kingrichardii,1595 Quick,1,kingrichardii,1595 advised,1,kingrichardii,1595 Wanting,1,kingrichardii,1595 Prove,1,kingrichardii,1595 happier,1,kingrichardii,1595 glazed,1,kingrichardii,1595 formally,1,kingrichardii,1595 lamentable,1,kingrichardii,1595 c,1,kingrichardii,1595 fruits,1,kingrichardii,1595 Cicester,1,kingrichardii,1595 ports,1,kingrichardii,1595 rebukes,1,kingrichardii,1595 red,1,kingrichardii,1595 safeguard,1,kingrichardii,1595 groom,1,kingrichardii,1595 Proud,1,kingrichardii,1595 advice,1,kingrichardii,1595 extremity,1,kingrichardii,1595 vanities,1,kingrichardii,1595 jar,1,kingrichardii,1595 composition,1,kingrichardii,1595 derived,1,kingrichardii,1595 doubly,1,kingrichardii,1595 fathers,1,kingrichardii,1595 mightiest,1,kingrichardii,1595 unrest,1,kingrichardii,1595 yielding,1,kingrichardii,1595 barbed,1,kingrichardii,1595 Hear,1,kingrichardii,1595 Pity,1,kingrichardii,1595 resist,1,kingrichardii,1595 country,1,kingrichardii,1595 forswear,1,kingrichardii,1595 tremble,1,kingrichardii,1595 sickliness,1,kingrichardii,1595 common'st,1,kingrichardii,1595 brass,1,kingrichardii,1595 treasury,1,kingrichardii,1595 writ,1,kingrichardii,1595 inveterate,1,kingrichardii,1595 raw,1,kingrichardii,1595 prophet,1,kingrichardii,1595 planted,1,kingrichardii,1595 bewasted,1,kingrichardii,1595 reign'd,1,kingrichardii,1595 treasure,1,kingrichardii,1595 stately,1,kingrichardii,1595 espy,1,kingrichardii,1595 hinder,1,kingrichardii,1595 peasant,1,kingrichardii,1595 woman's,1,kingrichardii,1595 wicked,1,kingrichardii,1595 entire,1,kingrichardii,1595 tore,1,kingrichardii,1595 brows,1,kingrichardii,1595 lawful,1,kingrichardii,1595 Whether,1,kingrichardii,1595 Writ,1,kingrichardii,1595 hasty,1,kingrichardii,1595 baffled,1,kingrichardii,1595 longs,1,kingrichardii,1595 Forgiveness,1,kingrichardii,1595 hollowness,1,kingrichardii,1595 ascends,1,kingrichardii,1595 purge,1,kingrichardii,1595 sterling,1,kingrichardii,1595 Thieves,1,kingrichardii,1595 breathless,1,kingrichardii,1595 elect,1,kingrichardii,1595 rot,1,kingrichardii,1595 robs,1,kingrichardii,1595 searching,1,kingrichardii,1595 bonds,1,kingrichardii,1595 respect'st,1,kingrichardii,1595 assured,1,kingrichardii,1595 row,1,kingrichardii,1595 shoulders,1,kingrichardii,1595 rod,1,kingrichardii,1595 suppose,1,kingrichardii,1595 branch,1,kingrichardii,1595 heart's,1,kingrichardii,1595 impeach'd,1,kingrichardii,1595 stopp'd,1,kingrichardii,1595 rents,1,kingrichardii,1595 roan,1,kingrichardii,1595 assistance,1,kingrichardii,1595 proclaim'd,1,kingrichardii,1595 easily,1,kingrichardii,1595 butchers,1,kingrichardii,1595 hush'd,1,kingrichardii,1595 brands,1,kingrichardii,1595 waxen,1,kingrichardii,1595 boys,1,kingrichardii,1595 Strives,1,kingrichardii,1595 craftsmen,1,kingrichardii,1595 melt,1,kingrichardii,1595 reserved,1,kingrichardii,1595 discoursed,1,kingrichardii,1595 whereupon,1,kingrichardii,1595 furthest,1,kingrichardii,1595 violets,1,kingrichardii,1595 grandsire's,1,kingrichardii,1595 York's,1,kingrichardii,1595 freer,1,kingrichardii,1595 frowning,1,kingrichardii,1595 suppliant,1,kingrichardii,1595 Measure,1,kingrichardii,1595 Allowing,1,kingrichardii,1595 Meaning,1,kingrichardii,1595 Neptune,1,kingrichardii,1595 joint,1,kingrichardii,1595 'Come,1,kingrichardii,1595 finger,1,kingrichardii,1595 Despite,1,kingrichardii,1595 Disclaiming,1,kingrichardii,1595 herb,1,kingrichardii,1595 sullens,1,kingrichardii,1595 theatre,1,kingrichardii,1595 violent,1,kingrichardii,1595 nameless,1,kingrichardii,1595 decay,1,kingrichardii,1595 Either,1,kingrichardii,1595 Black,1,kingrichardii,1595 cometh,1,kingrichardii,1595 chest,1,kingrichardii,1595 defensive,1,kingrichardii,1595 security,1,kingrichardii,1595 grim,1,kingrichardii,1595 Help,1,kingrichardii,1595 prosperous,1,kingrichardii,1595 gorgeous,1,kingrichardii,1595 utterance,1,kingrichardii,1595 Beshrew,1,kingrichardii,1595 dive,1,kingrichardii,1595 paradise,1,kingrichardii,1595 lowly,1,kingrichardii,1595 adversary,1,kingrichardii,1595 Wife,1,kingrichardii,1595 angels,1,kingrichardii,1595 forbidden,1,kingrichardii,1595 sugar,1,kingrichardii,1595 blanks,1,kingrichardii,1595 succession,1,kingrichardii,1595 understand,1,kingrichardii,1595 havens,1,kingrichardii,1595 Snakes,1,kingrichardii,1595 exactly,1,kingrichardii,1595 fury,1,kingrichardii,1595 drink,1,kingrichardii,1595 cowardice,1,kingrichardii,1595 louring,1,kingrichardii,1595 laugh,1,kingrichardii,1595 worms,1,kingrichardii,1595 teachest,1,kingrichardii,1595 innocency,1,kingrichardii,1595 calls,1,kingrichardii,1595 Provided,1,kingrichardii,1595 miscall,1,kingrichardii,1595 jades,1,kingrichardii,1595 Port,1,kingrichardii,1595 Dispose,1,kingrichardii,1595 terrible,1,kingrichardii,1595 Snatching,1,kingrichardii,1595 rug,1,kingrichardii,1595 blinding,1,kingrichardii,1595 iron,1,kingrichardii,1595 Post,1,kingrichardii,1595 ancestors,1,kingrichardii,1595 yearn'd,1,kingrichardii,1595 dismissed,1,kingrichardii,1595 trust,1,kingrichardii,1595 contrary,1,kingrichardii,1595 works,1,kingrichardii,1595 stews,1,kingrichardii,1595 Unlikely,1,kingrichardii,1595 lief,1,kingrichardii,1595 joys,1,kingrichardii,1595 wounded,1,kingrichardii,1595 Stephen,1,kingrichardii,1595 impute,1,kingrichardii,1595 springing,1,kingrichardii,1595 goest,1,kingrichardii,1595 unwilling,1,kingrichardii,1595 PERSONAE,1,kingrichardii,1595 wither,1,kingrichardii,1595 Light,1,kingrichardii,1595 Eve,1,kingrichardii,1595 demand,1,kingrichardii,1595 agreed,1,kingrichardii,1595 clamorous,1,kingrichardii,1595 'Thanks,1,kingrichardii,1595 cloister,1,kingrichardii,1595 spare,1,kingrichardii,1595 couched,1,kingrichardii,1595 cool'd,1,kingrichardii,1595 lightning,1,kingrichardii,1595 argued,1,kingrichardii,1595 Prevent,1,kingrichardii,1595 case,1,kingrichardii,1595 walking,1,kingrichardii,1595 cheapest,1,kingrichardii,1595 Alps,1,kingrichardii,1595 liar,1,kingrichardii,1595 Proportionable,1,kingrichardii,1595 mistook,1,kingrichardii,1595 terrestrial,1,kingrichardii,1595 downfall,1,kingrichardii,1595 Over,1,kingrichardii,1595 almsman's,1,kingrichardii,1595 personally,1,kingrichardii,1595 ire,1,kingrichardii,1595 preys,1,kingrichardii,1595 graced,1,kingrichardii,1595 surfeit,1,kingrichardii,1595 blinds,1,kingrichardii,1595 wander'd,1,kingrichardii,1595 pins,1,kingrichardii,1595 camp,1,kingrichardii,1595 Fellow,1,kingrichardii,1595 sadly,1,kingrichardii,1595 guards,1,kingrichardii,1595 drive,1,kingrichardii,1595 pine,1,kingrichardii,1595 Bloody,1,kingrichardii,1595 confusion,1,kingrichardii,1595 thousands,1,kingrichardii,1595 sold,1,kingrichardii,1595 misgovern'd,1,kingrichardii,1595 unjustly,1,kingrichardii,1595 sap,1,kingrichardii,1595 befits,1,kingrichardii,1595 saw,1,kingrichardii,1595 stream,1,kingrichardii,1595 scarlet,1,kingrichardii,1595 inhabit,1,kingrichardii,1595 resign'd,1,kingrichardii,1595 voiced,1,kingrichardii,1595 atone,1,kingrichardii,1595 Caesar's,1,kingrichardii,1595 lime,1,kingrichardii,1595 limb,1,kingrichardii,1595 Keep,1,kingrichardii,1595 horror,1,kingrichardii,1595 thundering,1,kingrichardii,1595 End,1,kingrichardii,1595 succeeding,1,kingrichardii,1595 posts,1,kingrichardii,1595 Remember,1,kingrichardii,1595 patent,1,kingrichardii,1595 deceiveable,1,kingrichardii,1595 heat,1,kingrichardii,1595 toward,1,kingrichardii,1595 shivers,1,kingrichardii,1595 Woe,1,kingrichardii,1595 Ourself,1,kingrichardii,1595 enemy's,1,kingrichardii,1595 sure,1,kingrichardii,1595 contrive,1,kingrichardii,1595 seemeth,1,kingrichardii,1595 wants,1,kingrichardii,1595 Gardeners,1,kingrichardii,1595 voices,1,kingrichardii,1595 policy,1,kingrichardii,1595 town,1,kingrichardii,1595 soil,1,kingrichardii,1595 demands,1,kingrichardii,1595 breaks,1,kingrichardii,1595 remiss,1,kingrichardii,1595 Yield,1,kingrichardii,1595 sprightfully,1,kingrichardii,1595 making,1,kingrichardii,1595 falcon's,1,kingrichardii,1595 beseem,1,kingrichardii,1595 likeness,1,kingrichardii,1595 chains,1,kingrichardii,1595 gelded,1,kingrichardii,1595 wantons,1,kingrichardii,1595 Pale,1,kingrichardii,1595 soft,1,kingrichardii,1595 noise,1,kingrichardii,1595 riches,1,kingrichardii,1595 freedom,1,kingrichardii,1595 calamity,1,kingrichardii,1595 covering,1,kingrichardii,1595 wait,1,kingrichardii,1595 widow's,1,kingrichardii,1595 mann'd,1,kingrichardii,1595 Adopts,1,kingrichardii,1595 'King,1,kingrichardii,1595 moving,1,kingrichardii,1595 Gentle,1,kingrichardii,1595 unwillingness,1,kingrichardii,1595 groats,1,kingrichardii,1595 imprese,1,kingrichardii,1595 disorderly,1,kingrichardii,1595 sinful,1,kingrichardii,1595 shamed,1,kingrichardii,1595 awed,1,kingrichardii,1595 hereafter,1,kingrichardii,1595 Swell'st,1,kingrichardii,1595 wherewithal,1,kingrichardii,1595 attainder,1,kingrichardii,1595 Off,1,kingrichardii,1595 epitaphs,1,kingrichardii,1595 amazing,1,kingrichardii,1595 wilderness,1,kingrichardii,1595 sums,1,kingrichardii,1595 grassy,1,kingrichardii,1595 sprays,1,kingrichardii,1595 vial,1,kingrichardii,1595 bondslave,1,kingrichardii,1595 Comprising,1,kingrichardii,1595 robbing,1,kingrichardii,1595 key,1,kingrichardii,1595 purses,1,kingrichardii,1595 II's,1,kingrichardii,1595 Change,1,kingrichardii,1595 usurp'd,1,kingrichardii,1595 think'st,1,kingrichardii,1595 bastard,1,kingrichardii,1595 saddle,1,kingrichardii,1595 imitation,1,kingrichardii,1595 tooth,1,kingrichardii,1595 scowl,1,kingrichardii,1595 walk,1,kingrichardii,1595 saying,1,kingrichardii,1595 shrill,1,kingrichardii,1595 flying,1,kingrichardii,1595 seals,1,kingrichardii,1595 wake,1,kingrichardii,1595 Write,1,kingrichardii,1595 reposeth,1,kingrichardii,1595 landed,1,kingrichardii,1595 inhabitable,1,kingrichardii,1595 chronicled,1,kingrichardii,1595 wedding,1,kingrichardii,1595 bitterly,1,kingrichardii,1595 lions,1,kingrichardii,1595 Mean,1,kingrichardii,1595 disposed,1,kingrichardii,1595 abused,1,kingrichardii,1595 Thinking,1,kingrichardii,1595 spy,1,kingrichardii,1595 love's,1,kingrichardii,1595 actor,1,kingrichardii,1595 council,1,kingrichardii,1595 birds,1,kingrichardii,1595 favourites,1,kingrichardii,1595 Pleads,1,kingrichardii,1595 embrace,1,kingrichardii,1595 cradle,1,kingrichardii,1595 frosty,1,kingrichardii,1595 whosoever,1,kingrichardii,1595 murdered,1,kingrichardii,1595 summons,1,kingrichardii,1595 skill,1,kingrichardii,1595 Merely,1,kingrichardii,1595 murderer,1,kingrichardii,1595 children's,1,kingrichardii,1595 fashions,1,kingrichardii,1595 hammer,1,kingrichardii,1595 looking,1,kingrichardii,1595 viol,1,kingrichardii,1595 Esteem,1,kingrichardii,1595 cropp'd,1,kingrichardii,1595 darted,1,kingrichardii,1595 stern,1,kingrichardii,1595 Bordeaux,1,kingrichardii,1595 forthwith,1,kingrichardii,1595 intitle,1,kingrichardii,1595 fearless,1,kingrichardii,1595 pointing,1,kingrichardii,1595 prophet's,1,kingrichardii,1595 testament,1,kingrichardii,1595 second,1,kingrichardii,1595 recanting,1,kingrichardii,1595 pitiful,1,kingrichardii,1595 Setting,1,kingrichardii,1595 Defiance,1,kingrichardii,1595 chamber'd,1,kingrichardii,1595 Thanks,1,kingrichardii,1595 league,1,kingrichardii,1595 wade,1,kingrichardii,1595 horses',1,kingrichardii,1595 pieces,1,kingrichardii,1595 stuff,1,kingrichardii,1595 dearth,1,kingrichardii,1595 thin,1,kingrichardii,1595 release,1,kingrichardii,1595 adverse,1,kingrichardii,1595 awful,1,kingrichardii,1595 sends,1,kingrichardii,1595 amiss,1,kingrichardii,1595 'Pardon',1,kingrichardii,1595 indifferent,1,kingrichardii,1595 unreverent,1,kingrichardii,1595 swelling,1,kingrichardii,1595 declining,1,kingrichardii,1595 thieves,1,kingrichardii,1595 rear,1,kingrichardii,1595 shriek,1,kingrichardii,1595 Beaumond,1,kingrichardii,1595 offence,1,kingrichardii,1595 gaoler,1,kingrichardii,1595 vile,1,kingrichardii,1595 reap,1,kingrichardii,1595 Peruse,1,kingrichardii,1595 unavoided,1,kingrichardii,1595 Needs,1,kingrichardii,1595 sly,1,kingrichardii,1595 mocks,1,kingrichardii,1595 felt,1,kingrichardii,1595 digestion,1,kingrichardii,1595 eating,1,kingrichardii,1595 goblets,1,kingrichardii,1595 Bretagne,1,kingrichardii,1595 beseeming,1,kingrichardii,1595 Learn,1,kingrichardii,1595 vanish,1,kingrichardii,1595 Wast,1,kingrichardii,1595 points,1,kingrichardii,1595 happen,1,kingrichardii,1595 brain,1,kingrichardii,1595 piece,1,kingrichardii,1595 uncles,1,kingrichardii,1595 compassion,1,kingrichardii,1595 rush'd,1,kingrichardii,1595 tormentors,1,kingrichardii,1595 standeth,1,kingrichardii,1595 Shorten,1,kingrichardii,1595 physician's,1,kingrichardii,1595 head's,1,kingrichardii,1595 consequently,1,kingrichardii,1595 estimate,1,kingrichardii,1595 figure,1,kingrichardii,1595 Whereof,1,kingrichardii,1595 kill'd,1,kingrichardii,1595 prosecute,1,kingrichardii,1595 Destinies,1,kingrichardii,1595 stomach'd,1,kingrichardii,1595 Wars,1,kingrichardii,1595 runs,1,kingrichardii,1595 infidels,1,kingrichardii,1595 showest,1,kingrichardii,1595 noblesse,1,kingrichardii,1595 encounter,1,kingrichardii,1595 loose,1,kingrichardii,1595 Broke,1,kingrichardii,1595 Wooing,1,kingrichardii,1595 Sound,1,kingrichardii,1595 mark'd,1,kingrichardii,1595 taper,1,kingrichardii,1595 pageant,1,kingrichardii,1595 bestrid,1,kingrichardii,1595 cries,1,kingrichardii,1595 physicians,1,kingrichardii,1595 speechless,1,kingrichardii,1595 Report,1,kingrichardii,1595 ruth,1,kingrichardii,1595 unbroke,1,kingrichardii,1595 brace,1,kingrichardii,1595 Wipe,1,kingrichardii,1595 distrain'd,1,kingrichardii,1595 feed,1,kingrichardii,1595 accent,1,kingrichardii,1595 rust,1,kingrichardii,1595 Caucasus,1,kingrichardii,1595 Tradition,1,kingrichardii,1595 promise,1,kingrichardii,1595 bows,1,kingrichardii,1595 impartial,1,kingrichardii,1595 humbly,1,kingrichardii,1595 cleave,1,kingrichardii,1595 wavering,1,kingrichardii,1595 descend,1,kingrichardii,1595 claim,1,kingrichardii,1595 flourishing,1,kingrichardii,1595 Behind,1,kingrichardii,1595 lances,1,kingrichardii,1595 accept,1,kingrichardii,1595 conceal,1,kingrichardii,1595 camel,1,kingrichardii,1595 whisper,1,kingrichardii,1595 torturer,1,kingrichardii,1595 weather,1,kingrichardii,1595 wing,1,kingrichardii,1595 soars,1,kingrichardii,1595 patrimony,1,kingrichardii,1595 wink,1,kingrichardii,1595 parliament,1,kingrichardii,1595 mothers',1,kingrichardii,1595 shrink,1,kingrichardii,1595 Hence,1,kingrichardii,1595 nails,1,kingrichardii,1595 language,1,kingrichardii,1595 kneel,1,kingrichardii,1595 strong'st,1,kingrichardii,1595 Might,1,kingrichardii,1595 seems,1,kingrichardii,1595 executioner,1,kingrichardii,1595 steal,1,kingrichardii,1595 edge,1,kingrichardii,1595 strew'd,1,kingrichardii,1595 doom'd,1,kingrichardii,1595 dearer,1,kingrichardii,1595 ensign,1,kingrichardii,1595 lack'st,1,kingrichardii,1595 roundly,1,kingrichardii,1595 ruin,1,kingrichardii,1595 king'd,1,kingrichardii,1595 go'st,1,kingrichardii,1595 immaculate,1,kingrichardii,1595 seest,1,kingrichardii,1595 servile,1,kingrichardii,1595 fortress,1,kingrichardii,1595 compromise,1,kingrichardii,1595 grating,1,kingrichardii,1595 HOTSPUR,1,kingrichardii,1595 murder,1,kingrichardii,1595 eagle,1,kingrichardii,1595 portal,1,kingrichardii,1595 cormorant,1,kingrichardii,1595 Mounted,1,kingrichardii,1595 sooth,1,kingrichardii,1595 Despair,1,kingrichardii,1595 property,1,kingrichardii,1595 vials,1,kingrichardii,1595 sense,1,kingrichardii,1595 pierce,1,kingrichardii,1595 harming,1,kingrichardii,1595 torment'st,1,kingrichardii,1595 bidding,1,kingrichardii,1595 ungracious,1,kingrichardii,1595 harbour,1,kingrichardii,1595 stocks,1,kingrichardii,1595 merely,1,kingrichardii,1595 pretty,1,kingrichardii,1595 breeding,1,kingrichardii,1595 doubts,1,kingrichardii,1595 cunning,1,kingrichardii,1595 timeless,1,kingrichardii,1595 bone,1,kingrichardii,1595 meat,1,kingrichardii,1595 melted,1,kingrichardii,1595 boot,1,kingrichardii,1595 mistake,1,kingrichardii,1595 steed,1,kingrichardii,1595 tortured,1,kingrichardii,1595 lunatic,1,kingrichardii,1595 spakest,1,kingrichardii,1595 prodigy,1,kingrichardii,1595 coats,1,kingrichardii,1595 manual,1,kingrichardii,1595 ruled,1,kingrichardii,1595 wits,1,kingrichardii,1595 rubbish,1,kingrichardii,1595 observe,1,kingrichardii,1595 shedding,1,kingrichardii,1595 plaints,1,kingrichardii,1595 boon,1,kingrichardii,1595 Englishmen,1,kingrichardii,1595 tend,1,kingrichardii,1595 parts,1,kingrichardii,1595 spoke,1,kingrichardii,1595 digg'd,1,kingrichardii,1595 created,1,kingrichardii,1595 praises,1,kingrichardii,1595 wayward,1,kingrichardii,1595 sympathy,1,kingrichardii,1595 verdict,1,kingrichardii,1595 judgement,1,kingrichardii,1595 Draw,1,kingrichardii,1595 Wherewith,1,kingrichardii,1595 hungry,1,kingrichardii,1595 objects,1,kingrichardii,1595 Depress'd,1,kingrichardii,1595 foolhardy,1,kingrichardii,1595 everlastingly,1,kingrichardii,1595 conquer,1,kingrichardii,1595 fairest,1,kingrichardii,1595 Do,1,kingrichardii,1595 shorten,1,kingrichardii,1595 he's,1,kingrichardii,1595 foil,1,kingrichardii,1595 urge,1,kingrichardii,1595 big,1,kingrichardii,1595 bills,1,kingrichardii,1595 mistakes,1,kingrichardii,1595 knowledge,1,kingrichardii,1595 scandal,1,kingrichardii,1595 rival,1,kingrichardii,1595 warder,1,kingrichardii,1595 Faith,1,kingrichardii,1595 conspirator,1,kingrichardii,1595 appointments,1,kingrichardii,1595 stumble,1,kingrichardii,1595 life's,1,kingrichardii,1595 palmer's,1,kingrichardii,1595 contrived,1,kingrichardii,1595 leased,1,kingrichardii,1595 solicit,1,kingrichardii,1595 Fear'd,1,kingrichardii,1595 Wrath,1,kingrichardii,1595 alarms,1,kingrichardii,1595 falter,1,kingrichardii,1595 drown,1,kingrichardii,1595 Takes,1,kingrichardii,1595 statutes,1,kingrichardii,1595 sequence,1,kingrichardii,1595 enjoy'd,1,kingrichardii,1595 shooting,1,kingrichardii,1595 melancholy,1,kingrichardii,1595 underbearing,1,kingrichardii,1595 benevolences,1,kingrichardii,1595 steward,1,kingrichardii,1595 surest,1,kingrichardii,1595 hap,1,kingrichardii,1595 Presuming,1,kingrichardii,1595 drinking,1,kingrichardii,1595 rusty,1,kingrichardii,1595 backs,1,kingrichardii,1595 burthenous,1,kingrichardii,1595 overthrow,1,kingrichardii,1595 'pardon,1,kingrichardii,1595 climate,1,kingrichardii,1595 Phaethon,1,kingrichardii,1595 Holy,1,kingrichardii,1595 sift,1,kingrichardii,1595 rivers,1,kingrichardii,1595 gotten,1,kingrichardii,1595 overflow,1,kingrichardii,1595 sigh,1,kingrichardii,1595 streams,1,kingrichardii,1595 Windsor,1,kingrichardii,1595 religious,1,kingrichardii,1595 kneeling,1,kingrichardii,1595 flatters,1,kingrichardii,1595 paw,1,kingrichardii,1595 infection,1,kingrichardii,1595 stubborn,1,kingrichardii,1595 Reproach,1,kingrichardii,1595 rankle,1,kingrichardii,1595 scarce,1,kingrichardii,1595 Hie,1,kingrichardii,1595 slander's,1,kingrichardii,1595 loath,1,kingrichardii,1595 manure,1,kingrichardii,1595 deeds,1,kingrichardii,1595 Treason,1,kingrichardii,1595 refined,1,kingrichardii,1595 vigour,1,kingrichardii,1595 adversaries,1,kingrichardii,1595 desperate,1,kingrichardii,1595 assault,1,kingrichardii,1595 doctors,1,kingrichardii,1595 blown,1,kingrichardii,1595 lanceth,1,kingrichardii,1595 Having,1,kingrichardii,1595 Depose,1,kingrichardii,1595 spots,1,kingrichardii,1595 plough'd,1,kingrichardii,1595 neighbours',1,kingrichardii,1595 career,1,kingrichardii,1595 hopes,1,kingrichardii,1595 GARDENER,1,kingrichardii,1595 Nature,1,kingrichardii,1595 siege,1,kingrichardii,1595 pays,1,kingrichardii,1595 blots,1,kingrichardii,1595 subscribe,1,kingrichardii,1595 Says,1,kingrichardii,1595 listen,1,kingrichardii,1595 belike,1,kingrichardii,1595 star,1,kingrichardii,1595 brings,1,kingrichardii,1595 fantastic,1,kingrichardii,1595 studying,1,kingrichardii,1595 pitied,1,kingrichardii,1595 force,1,kingrichardii,1595 Standing,1,kingrichardii,1595 finds,1,kingrichardii,1595 innocent,1,kingrichardii,1595 helmet,1,kingrichardii,1595 Bareheaded,1,kingrichardii,1595 enter'd,1,kingrichardii,1595 ashes,1,kingrichardii,1595 remainder,1,kingrichardii,1595 inherits,1,kingrichardii,1595 ague's,1,kingrichardii,1595 Ha,1,kingrichardii,1595 piteous,1,kingrichardii,1595 upturned,1,kingrichardii,1595 approve,1,kingrichardii,1595 Ho,1,kingrichardii,1595 sovereignty,1,kingrichardii,1595 blest,1,kingrichardii,1595 fined,1,kingrichardii,1595 unfurnish'd,1,kingrichardii,1595 surely,1,kingrichardii,1595 Mann'd,1,kingrichardii,1595 ambush,1,kingrichardii,1595 ruffians,1,kingrichardii,1595 tribute,1,kingrichardii,1595 meteors,1,kingrichardii,1595 sacrificing,1,kingrichardii,1595 untruth,1,kingrichardii,1595 neuter,1,kingrichardii,1595 abbot,1,kingrichardii,1595 dateless,1,kingrichardii,1595 added,1,kingrichardii,1595 revolting,1,kingrichardii,1595 casements,1,kingrichardii,1595 adder,1,kingrichardii,1595 impregnable,1,kingrichardii,1595 condemned,1,kingrichardii,1595 hides,1,kingrichardii,1595 pin,1,kingrichardii,1595 pit,1,kingrichardii,1595 hopest,1,kingrichardii,1595 Divides,1,kingrichardii,1595 covenant,1,kingrichardii,1595 temples,1,kingrichardii,1595 Up,1,kingrichardii,1595 clogging,1,kingrichardii,1595 ague,1,kingrichardii,1595 strew,1,kingrichardii,1595 Mary's,1,kingrichardii,1595 VI,1,kingrichardii,1595 Welsh,1,kingrichardii,1595 stinging,1,kingrichardii,1595 devotion,1,kingrichardii,1595 crushing,1,kingrichardii,1595 Julius,1,kingrichardii,1595 wallow,1,kingrichardii,1595 sire,1,kingrichardii,1595 begot,1,kingrichardii,1595 badges,1,kingrichardii,1595 obey,1,kingrichardii,1595 Seely,1,kingrichardii,1595 ridges,1,kingrichardii,1595 boundeth,1,kingrichardii,1595 extinct,1,kingrichardii,1595 god,1,kingrichardii,1595 trimm'd,1,kingrichardii,1595 Transform'd,1,kingrichardii,1595 annoyance,1,kingrichardii,1595 plants,1,kingrichardii,1595 moons,1,kingrichardii,1595 madmen,1,kingrichardii,1595 dolour,1,kingrichardii,1595 valiant,1,kingrichardii,1595 weed,1,kingrichardii,1595 thorn,1,kingrichardii,1595 divide,1,kingrichardii,1595 Gaunt's,1,kingrichardii,1595 tossing,1,kingrichardii,1595 challenge,1,kingrichardii,1595 Frighting,1,kingrichardii,1595 postern,1,kingrichardii,1595 hills,1,kingrichardii,1595 Adding,1,kingrichardii,1595 spotless,1,kingrichardii,1595 thriftless,1,kingrichardii,1595 Receive,1,kingrichardii,1595 stray,1,kingrichardii,1595 metal,1,kingrichardii,1595 rebel,1,kingrichardii,1595 fields,1,kingrichardii,1595 imagine,1,kingrichardii,1595 bury,1,kingrichardii,1595 suffer'd,1,kingrichardii,1595 Suddenly,1,kingrichardii,1595 whoso,1,kingrichardii,1595 difference,1,kingrichardii,1595 salute,1,kingrichardii,1595 bell,1,kingrichardii,1595 immediately,1,kingrichardii,1595 scruples,1,kingrichardii,1595 hermitage,1,kingrichardii,1595 labour's,1,kingrichardii,1595 struck,1,kingrichardii,1595 Consuming,1,kingrichardii,1595 awaked,1,kingrichardii,1595 tell'st,1,kingrichardii,1595 attention,1,kingrichardii,1595 sounds,1,kingrichardii,1595 argue,1,kingrichardii,1595 Excepting,1,kingrichardii,1595 moreover,1,kingrichardii,1595 immediate,1,kingrichardii,1595 devised,1,kingrichardii,1595 surmounts,1,kingrichardii,1595 beadsmen,1,kingrichardii,1595 latest,1,kingrichardii,1595 wear,1,kingrichardii,1595 parle,1,kingrichardii,1595 complot,1,kingrichardii,1595 gall'd,1,kingrichardii,1595 disperse,1,kingrichardii,1595 parks,1,kingrichardii,1595 Lies,1,kingrichardii,1595 chopping,1,kingrichardii,1595 Put,1,kingrichardii,1595 Plays,1,kingrichardii,1595 dumbly,1,kingrichardii,1595 Lascivious,1,kingrichardii,1595 Dies,1,kingrichardii,1595 Drawing,1,kingrichardii,1595 bended,1,kingrichardii,1595 Watching,1,kingrichardii,1595 embassage,1,kingrichardii,1595 Dared,1,kingrichardii,1595 antic,1,kingrichardii,1595 transport,1,kingrichardii,1595 Didst,1,kingrichardii,1595 hereof,1,kingrichardii,1595 furbish,1,kingrichardii,1595 traitors',1,kingrichardii,1595 royally,1,kingrichardii,1595 conquest,1,kingrichardii,1595 conjuration,1,kingrichardii,1595 Rain'd,1,kingrichardii,1595 beget,1,kingrichardii,1595 taxes,1,kingrichardii,1595 vows,1,kingrichardii,1595 nettles,1,kingrichardii,1595 discomfort,1,kingrichardii,1595 buy,1,kingrichardii,1595 Ye,1,kingrichardii,1595 Controlling,1,kingrichardii,1595 submission,1,kingrichardii,1595 vassal,1,kingrichardii,1595 Urge,1,kingrichardii,1595 preserve,1,kingrichardii,1595 child's,1,kingrichardii,1595 regenerate,1,kingrichardii,1595 longer,1,kingrichardii,1595 gown,1,kingrichardii,1595 About,1,kingrichardii,1595 Tends,1,kingrichardii,1595 scraping,1,kingrichardii,1595 beds,1,kingrichardii,1595 stories,1,kingrichardii,1595 Welshman,1,kingrichardii,1595 unkiss,1,kingrichardii,1595 hourly,1,kingrichardii,1595 pitch,1,kingrichardii,1595 grace's,1,kingrichardii,1595 twigs,1,kingrichardii,1595 begs,1,kingrichardii,1595 footing,1,kingrichardii,1595 turns,1,kingrichardii,1595 grandsire,1,kingrichardii,1595 orderly,1,kingrichardii,1595 tapp'd,1,kingrichardii,1595 immortal,1,kingrichardii,1595 woefullest,1,kingrichardii,1595 uplifted,1,kingrichardii,1595 crowned,1,kingrichardii,1595 Dashes,1,kingrichardii,1595 afoot,1,kingrichardii,1595 inheritance,1,kingrichardii,1595 Name,1,kingrichardii,1595 Accomplish'd,1,kingrichardii,1595 unstooping,1,kingrichardii,1595 Attending,1,kingrichardii,1595 envy's,1,kingrichardii,1595 flatterest,1,kingrichardii,1595 store,1,kingrichardii,1595 Land,1,kingrichardii,1595 entertain,1,kingrichardii,1595 storm,1,kingrichardii,1595 stooping,1,kingrichardii,1595 story,1,kingrichardii,1595 deem,1,kingrichardii,1595 MARSHAL,1,kingrichardii,1595 thrusteth,1,kingrichardii,1595 government,1,kingrichardii,1595 stay'd,1,kingrichardii,1595 forgive,1,kingrichardii,1595 promised,1,kingrichardii,1595 wretch,1,kingrichardii,1595 underprop,1,kingrichardii,1595 Commit'st,1,kingrichardii,1595 voyage,1,kingrichardii,1595 paste,1,kingrichardii,1595 expedience,1,kingrichardii,1595 crossly,1,kingrichardii,1595 Norfolk's,1,kingrichardii,1595 embraced,1,kingrichardii,1595 Mock,1,kingrichardii,1595 raise,1,kingrichardii,1595 Saracens,1,kingrichardii,1595 Bores,1,kingrichardii,1595 aid,1,kingrichardii,1595 burial,1,kingrichardii,1595 repent,1,kingrichardii,1595 forbids,1,kingrichardii,1595 moans,1,kingrichardii,1595 Eden,1,kingrichardii,1595 dangling,1,kingrichardii,1595 lineal,1,kingrichardii,1595 sheer,1,kingrichardii,1595 deck,1,kingrichardii,1595 stood,1,kingrichardii,1595 colts,1,kingrichardii,1595 debt,1,kingrichardii,1595 needs,1,kingrichardii,1595 sleepest,1,kingrichardii,1595 Making,1,kingrichardii,1595 taverns,1,kingrichardii,1595 gain,1,kingrichardii,1595 succor,1,kingrichardii,1595 rightful,1,kingrichardii,1595 laments,1,kingrichardii,1595 Imp,1,kingrichardii,1595 yew,1,kingrichardii,1595 ago,1,kingrichardii,1595 Jewry,1,kingrichardii,1595 weigh'd,1,kingrichardii,1595 Necessity,1,kingrichardii,1595 dwell,1,kingrichardii,1595 whereon,1,kingrichardii,1595 Beggar,1,kingrichardii,1595 sureties,1,kingrichardii,1595 caitiff,1,kingrichardii,1595 gilt,1,kingrichardii,1595 moveables,1,kingrichardii,1595 walled,1,kingrichardii,1595 victory,1,kingrichardii,1595 priest,1,kingrichardii,1595 Feed,1,kingrichardii,1595 seeing,1,kingrichardii,1595 gild,1,kingrichardii,1595 lent,1,kingrichardii,1595 holiday,1,kingrichardii,1595 accuser,1,kingrichardii,1595 enforce,1,kingrichardii,1595 does,1,kingrichardii,1595 rainy,1,kingrichardii,1595 destruction,1,kingrichardii,1595 forged,1,kingrichardii,1595 accused,1,kingrichardii,1595 haught,1,kingrichardii,1595 affrighted,1,kingrichardii,1595 defence,1,kingrichardii,1595 generally,1,kingrichardii,1595 glistering,1,kingrichardii,1595 nicely,1,kingrichardii,1595 incaged,1,kingrichardii,1595 vauntingly,1,kingrichardii,1595 regalia,1,kingrichardii,1595 approach,1,kingrichardii,1595 Enforce,1,kingrichardii,1595 Cherish,1,kingrichardii,1595 wench,1,kingrichardii,1595 crosses,1,kingrichardii,1595 humours,1,kingrichardii,1595 fixed,1,kingrichardii,1595 rouse,1,kingrichardii,1595 correct,1,kingrichardii,1595 prosper,1,kingrichardii,1595 reins,1,kingrichardii,1595 attending,1,kingrichardii,1595 barbarism,1,kingrichardii,1595 committed,1,kingrichardii,1595 spreading,1,kingrichardii,1595 bites,1,kingrichardii,1595 month,1,kingrichardii,1595 delay,1,kingrichardii,1595 demi,1,kingrichardii,1595 draymen,1,kingrichardii,1595 abstains,1,kingrichardii,1595 crave,1,kingrichardii,1595 roused,1,kingrichardii,1595 wrinkles,1,kingrichardii,1595 curbs,1,kingrichardii,1595 misbegotten,1,kingrichardii,1595 sharper,1,kingrichardii,1595 Royally,1,kingrichardii,1595 abide,1,kingrichardii,1595 idle,1,kingrichardii,1595 Live,1,kingrichardii,1595 hoard,1,kingrichardii,1595 account,1,kingrichardii,1595 Edmund,1,kingrichardii,1595 attendant,1,kingrichardii,1595 lour,1,kingrichardii,1595 look'st,1,kingrichardii,1595 quenching,1,kingrichardii,1595 temper,1,kingrichardii,1595 caused,1,kingrichardii,1595 carved,1,kingrichardii,1595 crimes,1,kingrichardii,1595 value,1,kingrichardii,1595 train,1,kingrichardii,1595 Divine,1,kingrichardii,1595 enmity,1,kingrichardii,1595 carver,1,kingrichardii,1595 loves,1,kingrichardii,1595 inn,1,kingrichardii,1595 pursues,1,kingrichardii,1595 remembering,1,kingrichardii,1595 offences,1,kingrichardii,1595 Renowned,1,kingrichardii,1595 sweetened,1,kingrichardii,1595 warms,1,kingrichardii,1595 le,1,kingrichardii,1595 settled,1,kingrichardii,1595 offer'd,1,kingrichardii,1595 endure,1,kingrichardii,1595 challenger,1,kingrichardii,1595 levy,1,kingrichardii,1595 ado,1,kingrichardii,1595 moon,1,kingrichardii,1595 commands,1,kingrichardii,1595 laboured,1,kingrichardii,1595 Yes,1,kingrichardii,1595 add,1,kingrichardii,1595 beholding,1,kingrichardii,1595 ho,1,kingrichardii,1595 resolved,1,kingrichardii,1595 lest,1,kingrichardii,1595 celebrate,1,kingrichardii,1595 vice's,1,kingrichardii,1595 Breathe,1,kingrichardii,1595 loved,1,kingrichardii,1595 filling,1,kingrichardii,1595 defy,1,kingrichardii,1595 Grace,1,kingrichardii,1595 act,1,kingrichardii,1595 beauteous,1,kingrichardii,1595 confessing,1,kingrichardii,1595 kings',1,kingrichardii,1595 serious,1,kingrichardii,1595 nimbly,1,kingrichardii,1595 attain,1,kingrichardii,1595 expiration,1,kingrichardii,1595 gardeners,1,kingrichardii,1595 jocund,1,kingrichardii,1595 untimely,1,kingrichardii,1595 reads,1,kingrichardii,1595 pure,1,kingrichardii,1595 summers,1,kingrichardii,1595 loam,1,kingrichardii,1595 kindred's,1,kingrichardii,1595 incontinent,1,kingrichardii,1595 harp,1,kingrichardii,1595 wasteful,1,kingrichardii,1595 warm'd,1,kingrichardii,1595 tenderly,1,kingrichardii,1595 easy,1,kingrichardii,1595 kills,1,kingrichardii,1595 discourse,1,kingrichardii,1595 puny,1,kingrichardii,1595 Jack,1,kingrichardii,1595 enfranchisement,1,kingrichardii,1595 pathway,1,kingrichardii,1595 Brought,1,kingrichardii,1595 howe'er,1,kingrichardii,1595 unlook'd,1,kingrichardii,1595 plume,1,kingrichardii,1595 suggested,1,kingrichardii,1595 cozening,1,kingrichardii,1595 caverns,1,kingrichardii,1595 peering,1,kingrichardii,1595 Stirr'd,1,kingrichardii,1595 isle,1,kingrichardii,1595 string,1,kingrichardii,1595 transgressing,1,kingrichardii,1595 EDMUND,1,kingrichardii,1595 December,1,kingrichardii,1595 aye,1,kingrichardii,1595 lewd,1,kingrichardii,1595 afford,1,kingrichardii,1595 Nimble,1,kingrichardii,1595 affects,1,kingrichardii,1595 frown'd,1,kingrichardii,1595 Bishop,1,kingrichardii,1595 sinks,1,kingrichardii,1595 half,1,kingrichardii,1595 poorly,1,kingrichardii,1595 owls,1,kingrichardii,1595 crop,1,kingrichardii,1595 expiring,1,kingrichardii,1595 Complotted,1,kingrichardii,1595 signify,1,kingrichardii,1595 submit,1,kingrichardii,1595 nation,1,kingrichardii,1595 helpful,1,kingrichardii,1595 fashion'd,1,kingrichardii,1595 noisome,1,kingrichardii,1595 perform'd,1,kingrichardii,1595 Read,1,kingrichardii,1595 husband's,1,kingrichardii,1595 digressing,1,kingrichardii,1595 call'd,1,kingrichardii,1595 trade,1,kingrichardii,1595 redoubled,1,kingrichardii,1595 signal,1,kingrichardii,1595 repeat,1,kingrichardii,1595 hang,1,kingrichardii,1595 lengthen,1,kingrichardii,1595 lanes,1,kingrichardii,1595 ladder,1,kingrichardii,1595 track,1,kingrichardii,1595 forty,1,kingrichardii,1595 joyful,1,kingrichardii,1595 sweetest,1,kingrichardii,1595 Cain,1,kingrichardii,1595 spotted,1,kingrichardii,1595 excuse,1,kingrichardii,1595 combating,1,kingrichardii,1595 governor,1,kingrichardii,1595 whether,1,kingrichardii,1595 casque,1,kingrichardii,1595 Under,1,kingrichardii,1595 deaths,1,kingrichardii,1595 majesty's,1,kingrichardii,1595 weeps,1,kingrichardii,1595 Razed,1,kingrichardii,1595 eased,1,kingrichardii,1595 spears,1,kingrichardii,1595 vipers,1,kingrichardii,1595 castle's,1,kingrichardii,1595 subject's,1,kingrichardii,1595 Commend,1,kingrichardii,1595 Tendering,1,kingrichardii,1595 confederate,1,kingrichardii,1595 harder,1,kingrichardii,1595 dominions,1,kingrichardii,1595 stricken,1,kingrichardii,1595 delight,1,kingrichardii,1595 heaviness,1,kingrichardii,1595 winter's,1,kingrichardii,1595 southern,1,kingrichardii,1595 plotted,1,kingrichardii,1595 extremest,1,kingrichardii,1595 diest,1,kingrichardii,1595 outrage,1,kingrichardii,1595 Ascend,1,kingrichardii,1595 empties,1,kingrichardii,1595 emptier,1,kingrichardii,1595 chastise,1,kingrichardii,1595 forsworn,1,kingrichardii,1595 engaol'd,1,kingrichardii,1595 appeals,1,kingrichardii,1595 attach,1,kingrichardii,1595 Ramston,1,kingrichardii,1595 revell'd,1,kingrichardii,1595 uncurse,1,kingrichardii,1595 pace,1,kingrichardii,1595 Stays,1,kingrichardii,1595 fear'd,1,kingrichardii,1595 dreadful,1,kingrichardii,1595 dismal,1,kingrichardii,1595 executors,1,kingrichardii,1595 Cast,1,kingrichardii,1595 insatiate,1,kingrichardii,1595 awe,1,kingrichardii,1595 font,1,kingrichardii,1595 fall'n,1,kingrichardii,1595 graved,1,kingrichardii,1595 Anointed,1,kingrichardii,1595 flatter'd,1,kingrichardii,1595 Fell,1,kingrichardii,1595 Bereft,1,kingrichardii,1595 moat,1,kingrichardii,1595 contain,1,kingrichardii,1595 saints,1,kingrichardii,1595 Small,1,kingrichardii,1595 Discharge,1,kingrichardii,1595 courses,1,kingrichardii,1595 Order,1,kingrichardii,1595 ass,1,kingrichardii,1595 Abraham,1,kingrichardii,1595 object,1,kingrichardii,1595 Pierced,1,kingrichardii,1595 overweening,1,kingrichardii,1595 Attendant,1,kingrichardii,1595 appeareth,1,kingrichardii,1595 rightly,1,kingrichardii,1595 beards,1,kingrichardii,1595 begets,1,kingrichardii,1595 fold,1,kingrichardii,1595 humour'd,1,kingrichardii,1595 Exeter,1,kingrichardii,1595 White,1,kingrichardii,1595 betide,1,kingrichardii,1595 Obedience,1,kingrichardii,1595 beggars,1,kingrichardii,1595 Arm,1,kingrichardii,1595 chance,1,kingrichardii,1595 Awhile,1,kingrichardii,1595 Kind,1,kingrichardii,1595 passengers,1,kingrichardii,1595 furnish,1,kingrichardii,1595 havior,1,kingrichardii,1595 sprinkle,1,kingrichardii,1595 fell'd,1,kingrichardii,1595 boughs,1,kingrichardii,1595 inquire,1,kingrichardii,1595 partial,1,kingrichardii,1595 Sirrah,1,kingrichardii,1595 fed,1,kingrichardii,1595 Again,1,kingrichardii,1595 grinning,1,kingrichardii,1595 cheque,1,kingrichardii,1595 lurking,1,kingrichardii,1595 sweetly,1,kingrichardii,1595 manors,1,kingrichardii,1595 flatteries,1,kingrichardii,1595 partialize,1,kingrichardii,1595 wooing,1,kingrichardii,1595 sicker,1,kingrichardii,1595 gnarling,1,kingrichardii,1595 Stoop,1,kingrichardii,1595 purple,1,kingrichardii,1595 Little,1,kingrichardii,1595 Ask,1,kingrichardii,1595 guess,1,kingrichardii,1595 beams,1,kingrichardii,1595 kindled,1,kingrichardii,1595 mads,1,kingrichardii,1595 prays,1,kingrichardii,1595 needle's,1,kingrichardii,1595 precedent,1,kingrichardii,1595 lead,1,kingrichardii,1595 Cover,1,kingrichardii,1595 spoken,1,kingrichardii,1595 leaf,1,kingrichardii,1595 capital,1,kingrichardii,1595 superfluous,1,kingrichardii,1595 fooling,1,kingrichardii,1595 consumed,1,kingrichardii,1595 height,1,kingrichardii,1595 unthrifts,1,kingrichardii,1595 Into,1,kingrichardii,1595 unthrifty,1,kingrichardii,1595 apprenticehood,1,kingrichardii,1595 Comfort's,1,kingrichardii,1595 Suggest,1,kingrichardii,1595 aggravate,1,kingrichardii,1595 George,1,kingrichardii,1595 execute,1,kingrichardii,1595 yesterday,1,kingrichardii,1595 Shows,1,kingrichardii,1595 borrow,1,kingrichardii,1595 Lament,1,kingrichardii,1595 often,1,kingrichardii,1595 elected,1,kingrichardii,1595 opinions,1,kingrichardii,1595 raze,1,kingrichardii,1595 leap,1,kingrichardii,1595 tediousness,1,kingrichardii,1595 repeals,1,kingrichardii,1595 Seymour,1,kingrichardii,1595 Dishonourable,1,kingrichardii,1595 long'd,1,kingrichardii,1595 Sun,1,kingrichardii,1595 firmness,1,kingrichardii,1595 keeps,1,kingrichardii,1595 glories,1,kingrichardii,1595 equal,1,kingrichardii,1595 breeds,1,kingrichardii,1595 maim,1,kingrichardii,1595 moved,1,kingrichardii,1595 Virtue,1,kingrichardii,1595 obscene,1,kingrichardii,1595 shameful,1,kingrichardii,1595 maid,1,kingrichardii,1595 Sluiced,1,kingrichardii,1595 prescribe,1,kingrichardii,1595 permitted,1,kingrichardii,1595 administer,1,kingrichardii,1595 Neglected,1,kingrichardii,1595 Ten,1,kingrichardii,1595 report,1,kingrichardii,1595 redoubted,1,kingrichardii,1595 apprehension,1,kingrichardii,1595 misfortunes,1,kingrichardii,1595 Armies,1,kingrichardii,1595 breathed,1,kingrichardii,1595 rose,1,kingrichardii,1595 clamour,1,kingrichardii,1595 chivalrous,1,kingrichardii,1595 broad,1,kingrichardii,1595 faction,1,kingrichardii,1595 Archbishop,1,kingrichardii,1595 built,1,kingrichardii,1595 note,1,kingrichardii,1595 Aim'd,1,kingrichardii,1595 Better,1,kingrichardii,1595 prosperity,1,kingrichardii,1595 darts,1,kingrichardii,1595 repose,1,kingrichardii,1595 fourth,1,kingrichardii,1595 Hall,1,kingrichardii,1595 clergyman,1,kingrichardii,1595 hangeth,1,kingrichardii,1595 Wilds,1,kingrichardii,1595 Richly,1,kingrichardii,1595 lodgings,1,kingrichardii,1595 marks,1,kingrichardii,1595 contains,1,kingrichardii,1595 penury,1,kingrichardii,1595 toil'd,1,kingrichardii,1595 daintiness,1,kingrichardii,1595 castles,1,kingrichardii,1595 obscure,1,kingrichardii,1595 patents,1,kingrichardii,1595 Committed,1,kingrichardii,1595 intellect,1,kingrichardii,1595 unstringed,1,kingrichardii,1595 presages,1,kingrichardii,1595 accusations,1,kingrichardii,1595 beats,1,kingrichardii,1595 Strive,1,kingrichardii,1595 dress,1,kingrichardii,1595 scale,1,kingrichardii,1595 clog,1,kingrichardii,1595 proudly,1,kingrichardii,1595 givest,1,kingrichardii,1595 subjected,1,kingrichardii,1595 guides,1,kingrichardii,1595 Bad,1,kingrichardii,1595 paths,1,kingrichardii,1595 deserving,1,kingrichardii,1595 below,1,kingrichardii,1595 cloy,1,kingrichardii,1595 daintiest,1,kingrichardii,1595 clergymen,1,kingrichardii,1595 disgraced,1,kingrichardii,1595 lance's,1,kingrichardii,1595 shineth,1,kingrichardii,1595 rash,1,kingrichardii,1595 brazen,1,kingrichardii,1595 bears,1,kingrichardii,1595 courtship,1,kingrichardii,1595 estate,1,kingrichardii,1595 oppresseth,1,kingrichardii,1595 knots,1,kingrichardii,1595 companions,1,kingrichardii,1595 blew,1,kingrichardii,1595 lustiest,1,kingrichardii,1595 year,1,kingrichardii,1595 kneels,1,kingrichardii,1595 Spurr'd,1,kingrichardii,1595 dukes,1,kingrichardii,1595 Weak,1,kingrichardii,1595 dangers,1,kingrichardii,1595 glasses,1,kingrichardii,1595 She,1,kingrichardii,1595 lingers,1,kingrichardii,1595 chase,1,kingrichardii,1595 pastures',1,kingrichardii,1595 stares,1,kingrichardii,1595 drunkenly,1,kingrichardii,1595 Barkloughly,1,kingrichardii,1595 visage,1,kingrichardii,1595 perused,1,kingrichardii,1595 alter,1,kingrichardii,1595 Embrace,1,kingrichardii,1595 narrow,1,kingrichardii,1595 O'erthrows,1,kingrichardii,1595 shores,1,kingrichardii,1595 desiring,1,kingrichardii,1595 Further,1,kingrichardii,1595 perform,1,kingrichardii,1595 staggers,1,kingrichardii,1595 exiled,1,kingrichardii,1595 springs,1,kingrichardii,1595 Set,1,kingrichardii,1595 misery,1,kingrichardii,1595 unhappy,1,kingrichardii,1595 forest,1,kingrichardii,1595 places,1,kingrichardii,1595 awhile,1,kingrichardii,1595 powers,1,kingrichardii,1595 cloak,1,kingrichardii,1595 leaving,1,kingrichardii,1595 Turns,1,kingrichardii,1595 injustice,1,kingrichardii,1595 shivering,1,kingrichardii,1595 Dost,1,kingrichardii,1595 tutor,1,kingrichardii,1595 Lambert's,1,kingrichardii,1595 compassionate,1,kingrichardii,1595 ensuing,1,kingrichardii,1595 Pilates,1,kingrichardii,1595 Convey,1,kingrichardii,1595 inky,1,kingrichardii,1595 general,1,kingrichardii,1595 sigh'd,1,kingrichardii,1595 wistly,1,kingrichardii,1595 discontent,1,kingrichardii,1595 effect,1,kingrichardii,1595 dissolution,1,kingrichardii,1595 set'st,1,kingrichardii,1595 Evermore,1,kingrichardii,1595 strife,1,kingrichardii,1595 lodge,1,kingrichardii,1595 duty's,1,kingrichardii,1595 distaff,1,kingrichardii,1595 Free,1,kingrichardii,1595 Rode,1,kingrichardii,1595 blessings,1,kingrichardii,1595 elsewhere,1,kingrichardii,1595 Destruction,1,kingrichardii,1595 arrived,1,kingrichardii,1595 Drums,1,kingrichardii,1595 Long,1,kingrichardii,1595 singing,1,kingrichardii,1595 listen'd,1,kingrichardii,1595 disdain'd,1,kingrichardii,1595 plaining,1,kingrichardii,1595 'Is,1,kingrichardii,1595 monarchize,1,kingrichardii,1595 'It,1,kingrichardii,1595 knave,1,kingrichardii,1595 flinty,1,kingrichardii,1595 range,1,kingrichardii,1595 spill'd,1,kingrichardii,1595 robbers,1,kingrichardii,1595 Mark'd,1,kingrichardii,1595 scepter'd,1,kingrichardii,1595 watches,1,kingrichardii,1595 return'st,1,kingrichardii,1595 man',1,kingrichardii,1595 beads,1,kingrichardii,1595 confidence,1,kingrichardii,1595 process,1,kingrichardii,1595 bloods,1,kingrichardii,1595 Queen,1,kingrichardii,1595 belong,1,kingrichardii,1595 midwife,1,kingrichardii,1595 skin,1,kingrichardii,1595 concord,1,kingrichardii,1595 Bearing,1,kingrichardii,1595 contradiction,1,kingrichardii,1595 kissing,1,kingrichardii,1595 dream,1,kingrichardii,1595 Revolt,1,kingrichardii,1595 ranks,1,kingrichardii,1595 employments,1,kingrichardii,1595 injuries,1,kingrichardii,1595 crimson,1,kingrichardii,1595 fountain,1,kingrichardii,1595 Son,1,kingrichardii,1595 penitence,1,kingrichardii,1595 furnish'd,1,kingrichardii,1595 misled,1,kingrichardii,1595 habiliments,1,kingrichardii,1595 forsook,1,kingrichardii,1595 Discomfortable,1,kingrichardii,1595 quoth,1,kingrichardii,1595 believing,1,kingrichardii,1595 Joy,1,kingrichardii,1595 ripen,1,kingrichardii,1595 inch,1,kingrichardii,1595 adorned,1,kingrichardii,1595 craves,1,kingrichardii,1595 greatest,1,kingrichardii,1595 fertility,1,kingrichardii,1595 weaken'd,1,kingrichardii,1595 beside,1,kingrichardii,1595 shoulder,1,kingrichardii,1595 special,1,kingrichardii,1595 heaven's,1,kingrichardii,1595 thief,1,kingrichardii,1595 miss,1,kingrichardii,1595 abet,1,kingrichardii,1595 benefit,1,kingrichardii,1595 threatening,1,kingrichardii,1595 captive,1,kingrichardii,1595 Eating,1,kingrichardii,1595 hypocrisy,1,kingrichardii,1595 discharge,1,kingrichardii,1595 Forces,1,kingrichardii,1595 apart,1,kingrichardii,1595 Whatever,1,kingrichardii,1595 divorced,1,kingrichardii,1595 seat's,1,kingrichardii,1595 mockery,1,kingrichardii,1595 appellants,1,kingrichardii,1595 Choose,1,kingrichardii,1595 oil,1,kingrichardii,1595 trouble,1,kingrichardii,1595 division,1,kingrichardii,1595 Perhaps,1,kingrichardii,1595 fills,1,kingrichardii,1595 firm,1,kingrichardii,1595 ones,1,kingrichardii,1595 Devouring,1,kingrichardii,1595 apish,1,kingrichardii,1595 Found,1,kingrichardii,1595 Wert,1,kingrichardii,1595 bequeath,1,kingrichardii,1595 behalf,1,kingrichardii,1595 lecture,1,kingrichardii,1595 lengthen'd,1,kingrichardii,1595 deny'st,1,kingrichardii,1595 Awaked,1,kingrichardii,1595 Coming,1,kingrichardii,1595 close,1,kingrichardii,1595 pause,1,kingrichardii,1595 suspicion,1,kingrichardii,1595 Landlord,1,kingrichardii,1595 Rainold,1,kingrichardii,1595 accomplish'd,1,kingrichardii,1595 They'll,1,kingrichardii,1595 unfeeling,1,kingrichardii,1595 duchess,1,kingrichardii,1595 windows',1,kingrichardii,1595 stale,1,kingrichardii,1595 salt,1,kingrichardii,1595 pound,1,kingrichardii,1595 carefully,1,kingrichardii,1595 retire,1,kingrichardii,1595 former,1,kingrichardii,1595 purchase,1,kingrichardii,1595 Bespake,1,kingrichardii,1595 safely,1,kingrichardii,1595 Rue,1,kingrichardii,1595 Confess,1,kingrichardii,1595 Deep,1,kingrichardii,1595 fostered,1,kingrichardii,1595 five,1,kingrichardii,1595 desolate,1,kingrichardii,1595 restful,1,kingrichardii,1595 persons,1,kingrichardii,1595 message,1,kingrichardii,1595 where'er,1,kingrichardii,1595 arrival,1,kingrichardii,1595 hateful,1,kingrichardii,1595 visits,1,kingrichardii,1595 redemption,1,kingrichardii,1595 'Twill,1,kingrichardii,1595 bands,1,kingrichardii,1595 herbs,1,kingrichardii,1595 receipt,1,kingrichardii,1595 LANCASTER'S,1,kingrichardii,1595 courser's,1,kingrichardii,1595 offenders',1,kingrichardii,1595 reacheth,1,kingrichardii,1595 envying,1,kingrichardii,1595 tumultuous,1,kingrichardii,1595 curs,1,kingrichardii,1595 Procure,1,kingrichardii,1595 ring,1,kingrichardii,1595 usurping,1,kingrichardii,1595 prime,1,kingrichardii,1595 sitting,1,kingrichardii,1595 thrives,1,kingrichardii,1595 bondage,1,kingrichardii,1595 steel'd,1,kingrichardii,1595 Disbursed,1,kingrichardii,1595 riot,1,kingrichardii,1595 detain'd,1,kingrichardii,1595 Venice,1,kingrichardii,1595 hearers,1,kingrichardii,1595 hoofs,1,kingrichardii,1595 Ere't,1,kingrichardii,1595 flight,1,kingrichardii,1595 musicians,1,kingrichardii,1595 residence,1,kingrichardii,1595 choked,1,kingrichardii,1595 rebellious,1,kingrichardii,1595 integrity,1,kingrichardii,1595 perspectives,1,kingrichardii,1595 Golgotha,1,kingrichardii,1595 Blunt,1,kingrichardii,1595 flint,1,kingrichardii,1595 decrees,1,kingrichardii,1595 venom'd,1,kingrichardii,1595 humility,1,kingrichardii,1595 issues,1,kingrichardii,1595 called,1,kingrichardii,1595 stiff,1,kingrichardii,1595 'The,1,kingrichardii,1595 unhappied,1,kingrichardii,1595 earnest,1,kingrichardii,1595 stage,1,kingrichardii,1595 Weep,1,kingrichardii,1595 mould,1,kingrichardii,1595 driven,1,kingrichardii,1595 able,1,kingrichardii,1595 tuned,1,kingrichardii,1595 withstood,1,kingrichardii,1595 prevail,1,kingrichardii,1595 hopeless,1,kingrichardii,1595 between,1,kingrichardii,1595 Woodstock's,1,kingrichardii,1595 ambition,1,kingrichardii,1595 departing,1,kingrichardii,1595 solemnly,1,kingrichardii,1595 Where'er,1,kingrichardii,1595 bleed,1,kingrichardii,1595 trueborn,1,kingrichardii,1595 intend,1,kingrichardii,1595 untrodden,1,kingrichardii,1595 handle,1,kingrichardii,1595 wood,1,kingrichardii,1595 dugs,1,kingrichardii,1595 groan'd,1,kingrichardii,1595 Brittany,1,kingrichardii,1595 greetings,1,kingrichardii,1595 uncle's,1,kingrichardii,1595 bereft,1,kingrichardii,1595 Princes,1,kingrichardii,1595 prick,1,kingrichardii,1595 supper,1,kingrichardii,1595 return',1,kingrichardii,1595 villains,1,kingrichardii,1595 taxations,1,kingrichardii,1595 forfend,1,kingrichardii,1595 exclaims,1,kingrichardii,1595 women's,1,kingrichardii,1595 unpossible,1,kingrichardii,1595 Scorns,1,kingrichardii,1595 Sister,1,kingrichardii,1595 witted,1,kingrichardii,1595 bucket,1,kingrichardii,1595 more's,1,kingrichardii,1595 stoop'd,1,kingrichardii,1595 Norbery,1,kingrichardii,1595 resounding,1,kingrichardii,1595 hail,1,kingrichardii,1595 Banish,1,kingrichardii,1595 intermix'd,1,kingrichardii,1595 Shalt,1,kingrichardii,1595 London's,1,kingrichardii,1595 familiar,1,kingrichardii,1595 gladly,1,kingrichardii,1595 faces,1,kingrichardii,1595 blotted,1,kingrichardii,1595 surrender,1,kingrichardii,1595 ransom,1,kingrichardii,1595 watery,1,kingrichardii,1595 muddy,1,kingrichardii,1595 takes,1,kingrichardii,1595 dissolved,1,kingrichardii,1595 betid,1,kingrichardii,1595 mustering,1,kingrichardii,1595 'pardonne,1,kingrichardii,1595 taken,1,kingrichardii,1595 conference,1,kingrichardii,1595 Witnessing,1,kingrichardii,1595 purest,1,kingrichardii,1595 Hail,1,kingrichardii,1595 rotten,1,kingrichardii,1595 Threw,1,kingrichardii,1595 angel,1,kingrichardii,1595 inform,1,kingrichardii,1595 unpleased,1,kingrichardii,1595 killing,1,kingrichardii,1595 Robert,1,kingrichardii,1595 tatter'd,1,kingrichardii,1595 hack'd,1,kingrichardii,1595 conveyers,1,kingrichardii,1595 Swarming,1,kingrichardii,1595 inclination,1,kingrichardii,1595 rebellion's,1,kingrichardii,1595 owe,1,kingrichardii,1595 rail,1,kingrichardii,1595 supportance,1,kingrichardii,1595 supply,1,kingrichardii,1595 disposition,1,kingrichardii,1595 lineaments,1,kingrichardii,1595 chidest,1,kingrichardii,1595 Cobham,1,kingrichardii,1595 duly,1,kingrichardii,1595 supple,1,kingrichardii,1595 Expedient,1,kingrichardii,1595 waters,1,kingrichardii,1595 shortens,1,kingrichardii,1595 Saddle,1,kingrichardii,1595 yoke,1,kingrichardii,1595 farther,1,kingrichardii,1595 belie,1,kingrichardii,1595 drops,1,kingrichardii,1595 Nobles,1,kingrichardii,1595 Amongst,1,kingrichardii,1595 pagans,1,kingrichardii,1595 beguiled,1,kingrichardii,1595 angry,1,kingrichardii,1595 antipodes,1,kingrichardii,1595 Dispark'd,1,kingrichardii,1595 wrong'd,1,kingrichardii,1595 cover,1,kingrichardii,1595 Noble,1,kingrichardii,1595 travelling,1,kingrichardii,1595 survey'd,1,kingrichardii,1595 prevention,1,kingrichardii,1595 appeall'd,1,kingrichardii,1595 Strike,1,kingrichardii,1595 contempt,1,kingrichardii,1595 heirs,1,kingrichardii,1595 sails,1,kingrichardii,1595 doubled,1,kingrichardii,1595 create,1,kingrichardii,1595 fretted,1,kingrichardii,1595 Swear,1,kingrichardii,1595 durst,1,kingrichardii,1595 tongueless,1,kingrichardii,1595 yond,1,kingrichardii,1595 Time,1,kingrichardii,1595 tuft,1,kingrichardii,1595 Thither,1,kingrichardii,1595 desert,1,kingrichardii,1595 lendings,1,kingrichardii,1595 Condemns,1,kingrichardii,1595 That's,1,kingrichardii,1595 crystal,1,kingrichardii,1595 prattle,1,kingrichardii,1595 article,1,kingrichardii,1595 Hadst,1,kingrichardii,1595 palsy,1,kingrichardii,1595 lasting,1,kingrichardii,1595 Spur,1,kingrichardii,1595 silly,1,kingrichardii,1595 tenement,1,kingrichardii,1595 grand,1,kingrichardii,1595 Runs,1,kingrichardii,1595 work,1,kingrichardii,1595 spilling,1,kingrichardii,1595 worn,1,kingrichardii,1595 wit's,1,kingrichardii,1595 discover,1,kingrichardii,1595 tune,1,kingrichardii,1595 Deposing,1,kingrichardii,1595 clerk,1,kingrichardii,1595 fighting,1,kingrichardii,1595 lodged,1,kingrichardii,1595 west,1,kingrichardii,1595 brandish,1,kingrichardii,1595 clay,1,kingrichardii,1595 unjust,1,kingrichardii,1595 minute,1,kingrichardii,1595 fit,1,kingrichardii,1595 Mark,1,kingrichardii,1595 Sorrow,1,kingrichardii,1595 impeach,1,kingrichardii,1595 offices,1,kingrichardii,1595 delectable,1,kingrichardii,1595 Doing,1,kingrichardii,1595 fill,1,kingrichardii,1595 Desolate,1,kingrichardii,1595 Boy,1,kingrichardii,1595 woods,1,kingrichardii,1595 clad,1,kingrichardii,1595 safety,1,kingrichardii,1595 engaged,1,kingrichardii,1595 clap,1,kingrichardii,1595 'why,1,kingrichardii,1595 external,1,kingrichardii,1595 folly,1,kingrichardii,1595 rehearse,1,kingrichardii,1595 Beats,1,kingrichardii,1595 Redeem,1,kingrichardii,1595 married,1,kingrichardii,1595 bark,1,kingrichardii,1595 thereby,1,kingrichardii,1595 leopards,1,kingrichardii,1595 Near,1,kingrichardii,1595 thunder,1,kingrichardii,1595 defending,1,kingrichardii,1595 ostentation,1,kingrichardii,1595 bite,1,kingrichardii,1595 kill'st,1,kingrichardii,1595 herself,1,kingrichardii,1595 Cotswold,1,kingrichardii,1595 poison'd,1,kingrichardii,1595 unstaid,1,kingrichardii,1595 smooth,1,kingrichardii,1595 depart,1,kingrichardii,1595 beware,1,kingrichardii,1595 larks,1,kingrichardii,1595 Thank,1,kingrichardii,1595 foaming,1,kingrichardii,1595 warr'd,1,kingrichardii,1595 portcullis'd,1,kingrichardii,1595 wives,1,kingrichardii,1595 lived,1,kingrichardii,1595 whither,1,kingrichardii,1595 Drinking,1,kingrichardii,1595 Glad,1,kingrichardii,1595 watch'd,1,kingrichardii,1595 gilded,1,kingrichardii,1595 dastard,1,kingrichardii,1595 Four,1,kingrichardii,1595 unbegot,1,kingrichardii,1595 bird,1,kingrichardii,1595 prophesy,1,kingrichardii,1595 Cut,1,kingrichardii,1595 Stable,1,kingrichardii,1595 forefather,1,kingrichardii,1595 parasite,1,kingrichardii,1595 Wednesday,1,kingrichardii,1595 bank,1,kingrichardii,1595 prophets,1,kingrichardii,1595 motive,1,kingrichardii,1595 will't,1,kingrichardii,1595 Containing,1,kingrichardii,1595 disfigured,1,kingrichardii,1595 steed's,1,kingrichardii,1595 weakness,1,kingrichardii,1595 insulting,1,kingrichardii,1595 rising,1,kingrichardii,1595 fare,1,kingrichardii,1595 blaze,1,kingrichardii,1595 mischance,1,kingrichardii,1595 feeble,1,kingrichardii,1595 lights,1,kingrichardii,1595 author,1,kingrichardii,1595 soul's,1,kingrichardii,1595 gallant,1,kingrichardii,1595 coal,1,kingrichardii,1595 tall,1,kingrichardii,1595 GLOUCESTER,1,kingrichardii,1595 holloa'd,1,kingrichardii,1595 falsely,1,kingrichardii,1595 folks,1,kingrichardii,1595 bind,1,kingrichardii,1595 fresher,1,kingrichardii,1595 otherwise,1,kingrichardii,1595 brotherhood,1,kingrichardii,1595 Worst,1,kingrichardii,1595 stroke,1,kingrichardii,1595 perish,1,kingrichardii,1595 provoked,1,kingrichardii,1595 Fiend,1,kingrichardii,1595 wild,1,kingrichardii,1595 undeaf,1,kingrichardii,1595 greets,1,kingrichardii,1595 sights,1,kingrichardii,1595 trumpets',1,kingrichardii,1595 occident,1,kingrichardii,1595 ought,1,kingrichardii,1595 pledge,1,kingrichardii,1595 forbearance,1,kingrichardii,1595 bigger,1,kingrichardii,1595 quit,1,kingrichardii,1595 Canterbury,1,kingrichardii,1595 carts,1,kingrichardii,1595 holp,1,kingrichardii,1595 clean,1,kingrichardii,1595 None,1,kingrichardii,1595 Lay,1,kingrichardii,1595 hole,1,kingrichardii,1595 appellant's,1,kingrichardii,1595 articles,1,kingrichardii,1595 dozen,1,kingrichardii,1595 populous,1,kingrichardii,1595 firmament,1,kingrichardii,1595 greet,1,kingrichardii,1595 frequent,1,kingrichardii,1595 master,1,kingrichardii,1595 proclaimed,1,kingrichardii,1595 stand'st,1,kingrichardii,1595 helmets,1,kingrichardii,1595 ripens,1,kingrichardii,1595 Although,1,kingrichardii,1595 honest,1,kingrichardii,1595 feasts,1,kingrichardii,1595 counterfeit,1,kingrichardii,1595 ripest,1,kingrichardii,1595 undeck,1,kingrichardii,1595 oyster,1,kingrichardii,1595 argument,1,kingrichardii,1595 revolt,1,kingrichardii,1595 untuned,1,kingrichardii,1595 cheerly,1,kingrichardii,1595 spurring,1,kingrichardii,1595 winter,1,kingrichardii,1595 unsay,1,kingrichardii,1595 streets,1,kingrichardii,1595 read'st,1,kingrichardii,1595 feeding,1,kingrichardii,1595 Bennet,1,kingrichardii,1595 eagle's,1,kingrichardii,1595 resolution,1,kingrichardii,1595 Wherefore,1,kingrichardii,1595 Waterton,1,kingrichardii,1595 Awake,1,kingrichardii,1595 misinterpret,1,kingrichardii,1595 Appointed,1,kingrichardii,1595 falsehood,1,kingrichardii,1595 gives,1,kingrichardii,1595 giver,1,kingrichardii,1595 choler,1,kingrichardii,1595 notwithstanding,1,kingrichardii,1595 'Fair,1,kingrichardii,1595 gaited,1,kingrichardii,1595 intents,1,kingrichardii,1595 Inquire,1,kingrichardii,1595 Intended,1,kingrichardii,1595 Vex,1,kingrichardii,1595 also,1,kingrichardii,1595 bawd,1,kingrichardii,1595 approved,1,kingrichardii,1595 soil's,1,kingrichardii,1595 seas,1,kingrichardii,1595 Troy,1,kingrichardii,1595 pronouncing,1,kingrichardii,1595 sunshine,1,kingrichardii,1595 combatants,1,kingrichardii,1595 elements,1,kingrichardii,1595 cheerful,1,kingrichardii,1595 feeder,1,kingrichardii,1595 disdained,1,kingrichardii,1595 lop,1,kingrichardii,1595 contents,1,kingrichardii,1595 endowments,1,kingrichardii,1595 Erpingham,1,kingrichardii,1595 winged,1,kingrichardii,1595 neglected,1,kingrichardii,1595 favour'd,1,kingrichardii,1595 breasts,1,kingrichardii,1595 lot,1,kingrichardii,1595 eyed,1,kingrichardii,1595 acts,1,kingrichardii,1595 delightful,1,kingrichardii,1595 drunk,1,kingrichardii,1595 letting,1,kingrichardii,1595 'never,1,kingrichardii,1595 decree,1,kingrichardii,1595 goodness,1,kingrichardii,1595 Seek,1,kingrichardii,1595 Seen,1,kingrichardii,1595 weep'st,1,kingrichardii,1595 drums,1,kingrichardii,1595 fights,1,kingrichardii,1595 troth,1,kingrichardii,1595 either,1,kingrichardii,1595 Judases,1,kingrichardii,1595 weaved,1,kingrichardii,1595 cousins,1,kingrichardii,1595 Hallowmas,1,kingrichardii,1595 Jesu,1,kingrichardii,1595 unkindness,1,kingrichardii,1595 cousin',1,kingrichardii,1595 faded,1,kingrichardii,1595 Comest,1,kingrichardii,1595 'Jesu,1,kingrichardii,1595 understood,1,kingrichardii,1595 undertakes,1,kingrichardii,1595 sees,1,kingrichardii,1595 conclude,1,kingrichardii,1595 pricks,1,kingrichardii,1595 tells,1,kingrichardii,1595 render,1,kingrichardii,1595 shapes,1,kingrichardii,1595 Patience,1,kingrichardii,1595 Believe,1,kingrichardii,1595 crest,1,kingrichardii,1595 bowls,1,kingrichardii,1595 troop,1,kingrichardii,1595 setting,1,kingrichardii,1595 bedrench,1,kingrichardii,1595 chasing,1,kingrichardii,1595 lightens,1,kingrichardii,1595 changing,1,kingrichardii,1595 whate'er,1,kingrichardii,1595 Brocas,1,kingrichardii,1595 heavenly,1,kingrichardii,1595 gasping,1,kingrichardii,1595 fathers',1,kingrichardii,1595 cased,1,kingrichardii,1595 Camest,1,kingrichardii,1595 downward,1,kingrichardii,1595 gathering,1,kingrichardii,1595 heels,1,kingrichardii,1595 greedy,1,kingrichardii,1595 trembles,1,kingrichardii,1595 entreat,1,kingrichardii,1595 bait,1,kingrichardii,1595 wretched,1,kingrichardii,1595 glove,1,kingrichardii,1595 tied,1,kingrichardii,1595 prayer,1,kingrichardii,1595 miscreant,1,kingrichardii,1595 secure,1,kingrichardii,1595 jouncing,1,kingrichardii,1595 ravel,1,kingrichardii,1595 Heralds,1,kingrichardii,1595 fairly,1,kingrichardii,1595 mirror,1,kingrichardii,1595 furrow,1,kingrichardii,1595 ravenous,1,kingrichardii,1595 Cry,1,kingrichardii,1595 tide,1,kingrichardii,1595 ball,1,kingrichardii,1595 blank,1,kingrichardii,1595 apricocks,1,kingrichardii,1595 oppose,1,kingrichardii,1595 leg,1,kingrichardii,1595 led,1,kingrichardii,1595 Streaming,1,kingrichardii,1595 undo,1,kingrichardii,1595 alas,1,kingrichardii,1595 ghosts,1,kingrichardii,1595 adds,1,kingrichardii,1595 grieves,1,kingrichardii,1595 o'erpower'd,1,kingrichardii,1595 Glendower,1,kingrichardii,1595 'Farewell,1,kingrichardii,1595 skull,1,kingrichardii,1595 remedies,1,kingrichardii,1595 Power,1,kingrichardii,1595 Limps,1,kingrichardii,1595 exactions,1,kingrichardii,1595 stable,1,kingrichardii,1595 seized,1,kingrichardii,1595 Rage,1,kingrichardii,1595 hedges,1,kingrichardii,1595 match,1,kingrichardii,1595 descending,1,kingrichardii,1595 mournings,1,kingrichardii,1595 bonnet,1,kingrichardii,1595 spiders,1,kingrichardii,1595 buckets,1,kingrichardii,1595 drooping,1,kingrichardii,1595 crooked,1,kingrichardii,1595 master's,1,kingrichardii,1595 seem'st,1,kingrichardii,1595 nature's,1,kingrichardii,1595 stormy,1,kingrichardii,1595 Quoint,1,kingrichardii,1595 threat,1,kingrichardii,1595 'grace,1,kingrichardii,1595 trow,1,kingrichardii,1595 thread,1,kingrichardii,1595 uglier,1,kingrichardii,1595 laws,1,kingrichardii,1595 commons',1,kingrichardii,1595 trod,1,kingrichardii,1595 choke,1,kingrichardii,1595 endured,1,kingrichardii,1595 Adam's,1,kingrichardii,1595 rancour,1,kingrichardii,1595 sympathize,1,kingrichardii,1595 imagery,1,kingrichardii,1595 buzzed,1,kingrichardii,1595 imagination,1,kingrichardii,1595 queen's,1,kingrichardii,1595 Enfranchisement,1,kingrichardii,1595 map,1,kingrichardii,1595 write,1,kingrichardii,1595 cloudy,1,kingrichardii,1595 spirits,1,kingrichardii,1595 Parle,1,kingrichardii,1595 alter'd,1,kingrichardii,1595 limbs,1,kingrichardii,1595 barr'd,1,kingrichardii,1595 lagging,1,kingrichardii,1595 gains,1,kingrichardii,1595 volume,1,kingrichardii,1595 Greater,1,kingrichardii,1595 pray'd,1,kingrichardii,1595 dial's,1,kingrichardii,1595 least,1,kingrichardii,1595 However,1,kingrichardii,1595 careful,1,kingrichardii,1595 Strong,1,kingrichardii,1595 spite,1,kingrichardii,1595 abroad,1,kingrichardii,1595 comfortable,1,kingrichardii,1595 Towards,1,kingrichardii,1595 balance,1,kingrichardii,1595 blindfold,1,kingrichardii,1595 revolted,1,kingrichardii,1595 future,1,kingrichardii,1595 rheum,1,kingrichardii,1595 seldom,1,kingrichardii,1595 consequence,1,kingrichardii,1595 smiling,1,kingrichardii,1595 rapier's,1,kingrichardii,1595 bishop,1,kingrichardii,1595 justs,1,kingrichardii,1595 Blanc,1,kingrichardii,1595 begins,1,kingrichardii,1595 unfelt,1,kingrichardii,1595 Namely,1,kingrichardii,1595 forces,1,kingrichardii,1595 posting,1,kingrichardii,1595 steeds,1,kingrichardii,1595 fester'd,1,kingrichardii,1595 lease,1,kingrichardii,1595 doing,1,kingrichardii,1595 Dogs,1,kingrichardii,1595 Messenger,1,kingrichardii,1595 inferior,1,kingrichardii,1595 warlike,1,kingrichardii,1595 brooch,1,kingrichardii,1595 headed,1,kingrichardii,1595 lofty,1,kingrichardii,1595 defendant,1,kingrichardii,1595 glose,1,kingrichardii,1595 hardy,1,kingrichardii,1595 erected,1,kingrichardii,1595 foretell,1,kingrichardii,1595 Rise,1,kingrichardii,1595 tires,1,kingrichardii,1595 murder'd,1,kingrichardii,1595 victor's,1,kingrichardii,1595 street,1,kingrichardii,1595 Ours,1,kingrichardii,1595 determinate,1,kingrichardii,1595 beholders,1,kingrichardii,1595 burnt,1,kingrichardii,1595 supplant,1,kingrichardii,1595 murder's,1,kingrichardii,1595 whit,1,kingrichardii,1595 pleasant,1,kingrichardii,1595 limit,1,kingrichardii,1595 pompous,1,kingrichardii,1595 body's,1,kingrichardii,1595 battlements,1,kingrichardii,1595 breathest,1,kingrichardii,1595 heartily,1,kingrichardii,1595 powerful,1,kingrichardii,1595 Currents,1,kingrichardii,1595 disburden'd,1,kingrichardii,1595 incision,1,kingrichardii,1595 journeyman,1,kingrichardii,1595 bethink,1,kingrichardii,1595 Tears,1,kingrichardii,1595 quarrels,1,kingrichardii,1595 'farewell',1,kingrichardii,1595 inspired,1,kingrichardii,1595 vagabond,1,kingrichardii,1595 caroused,1,kingrichardii,1595 enjoying,1,kingrichardii,1595 Amen,1,kingrichardii,1595 homage,1,kingrichardii,1595 beguile,1,kingrichardii,1595 short'st,1,kingrichardii,1595 Pilate,1,kingrichardii,1595 substitutes,1,kingrichardii,1595 telling,1,kingrichardii,1595 wearisome,1,kingrichardii,1595 Rescued,1,kingrichardii,1595 carpet,1,kingrichardii,1595 Infusing,1,kingrichardii,1595 unseasonable,1,kingrichardii,1595 directions,1,kingrichardii,1595 Pierce,1,kingrichardii,1595 credit,1,kingrichardii,1595 plucks,1,kingrichardii,1595 fasting,1,kingrichardii,1595 inherit,1,kingrichardii,1595 tut,1,kingrichardii,1595 spilt,1,kingrichardii,1595 attendants,1,kingrichardii,1595 eastern,1,kingrichardii,1595 unhorse,1,kingrichardii,1595 beauty,1,kingrichardii,1595 Looking,1,kingrichardii,1595 brooks,1,kingrichardii,1595 territories,1,kingrichardii,1595 suspect,1,kingrichardii,1595 discontented,1,kingrichardii,1595 dishonour's,1,kingrichardii,1595 customary,1,kingrichardii,1595 lining,1,kingrichardii,1595 peer,1,kingrichardii,1595 Without,1,kingrichardii,1595 besides,1,kingrichardii,1595 jade,1,kingrichardii,1595 urging,1,kingrichardii,1595 list,1,kingrichardii,1595 levied,1,kingrichardii,1595 hurl,1,kingrichardii,1595 breaking,1,kingrichardii,1595 skulls,1,kingrichardii,1595 eighteen,1,kingrichardii,1595 Banish'd,1,kingrichardii,1595 appetite,1,kingrichardii,1595 villages,1,kingrichardii,1595 ragged,1,kingrichardii,1595 strange,1,kingrichardii,1595 pelting,1,kingrichardii,1595 venge,1,kingrichardii,1595 bias,1,kingrichardii,1595 unpleasing,1,kingrichardii,1595 pardoning,1,kingrichardii,1595 moi,1,kingrichardii,1595 moe,1,kingrichardii,1595 Justice,1,kingrichardii,1595 severely,1,kingrichardii,1595 defiled,1,kingrichardii,1595 leading,1,kingrichardii,1595 corruption,1,kingrichardii,1595 Unpeopled,1,kingrichardii,1595 dwells,1,kingrichardii,1595 shrewd,1,kingrichardii,1595 wildly,1,kingrichardii,1595 silent,1,kingrichardii,1595 Death,1,kingrichardii,1595 date,1,kingrichardii,1595 forgiveness,1,kingrichardii,1595 entrance,1,kingrichardii,1595 tardy,1,kingrichardii,1595 Teaching,1,kingrichardii,1595 proffer'd,1,kingrichardii,1595 reply,1,kingrichardii,1595 Broken,1,kingrichardii,1595 cleansing,1,kingrichardii,1595 careless,1,kingrichardii,1595 Mount,1,kingrichardii,1595 confirm,1,kingrichardii,1595 wrathful,1,kingrichardii,1595 bray,1,kingrichardii,1595 provide,1,kingrichardii,1595 honour'd,1,kingrichardii,1595 substitute,1,kingrichardii,1595 Scoffing,1,kingrichardii,1595 happily,1,kingrichardii,1595 swallow,1,kingrichardii,1595 Disorder,1,kingrichardii,1595 Courageously,1,kingrichardii,1595 PIERCE,1,kingrichardii,1595 scalps,1,kingrichardii,1595 cracking,1,kingrichardii,1595 Rouse,1,kingrichardii,1595 liquor,1,kingrichardii,1595 whencesoever,1,kingrichardii,1595 hairless,1,kingrichardii,1595 unrightful,1,kingrichardii,1595 rocky,1,kingrichardii,1595 Rich,1,kingrichardii,1595 broking,1,kingrichardii,1595 oceans,1,kingrichardii,1595 weighs,1,kingrichardii,1595 metres,1,kingrichardii,1595 pelican,1,kingrichardii,1595 Observed,1,kingrichardii,1595 blessing,1,kingrichardii,1595 bedew,1,kingrichardii,1595 dispatch,1,kingrichardii,1595 Abel's,1,kingrichardii,1595 uncontroll'd,1,kingrichardii,1595 globe,1,kingrichardii,1595 injurious,1,kingrichardii,1595 bred,1,kingrichardii,1595 lamb,1,kingrichardii,1595 reverend,1,kingrichardii,1595 admonition,1,kingrichardii,1595 wonders,1,kingrichardii,1595 months,1,kingrichardii,1595 resting,1,kingrichardii,1595 DRAMATIS,1,kingrichardii,1595 omnipotent,1,kingrichardii,1595 lamp,1,kingrichardii,1595 slew,1,kingrichardii,1595 Until,1,kingrichardii,1595 lieth,1,kingrichardii,1595 gored,1,kingrichardii,1595 tie,1,kingrichardii,1595 shake,1,kingrichardii,1595 shine,1,kingrichardii,1595 physician,1,kingrichardii,1595 Teach,1,kingrichardii,1595 gazed,1,kingrichardii,1595 upstart,1,kingrichardii,1595 uncivil,1,kingrichardii,1595 largess,1,kingrichardii,1595 Left,1,kingrichardii,1595 ambitious,1,kingrichardii,1595 obtain,1,kingrichardii,1595 entreated,1,kingrichardii,1595 divided,1,kingrichardii,1595 wills,1,kingrichardii,1595 ascend,1,kingrichardii,1595 frail,1,kingrichardii,1595 dew,1,kingrichardii,1595 Parliament,1,kingrichardii,1595 pill'd,1,kingrichardii,1595 sourest,1,kingrichardii,1595 Fair,1,kingrichardii,1595 plated,1,kingrichardii,1595 Direct,1,kingrichardii,1595 figured,1,kingrichardii,1595 reconcile,1,kingrichardii,1595 Barely,1,kingrichardii,1595 tread'st,1,kingrichardii,1595 pronounce,1,kingrichardii,1595 Finds,1,kingrichardii,1595 toads,1,kingrichardii,1595 exchequer,1,kingrichardii,1595 bier,1,kingrichardii,1595 earth's,1,kingrichardii,1595 rounds,1,kingrichardii,1595 haunted,1,kingrichardii,1595 charity,1,kingrichardii,1595 Kent,1,kingrichardii,1595 forbear,1,kingrichardii,1595 stables,1,kingrichardii,1595 parley,1,kingrichardii,1595 neighbour,1,kingrichardii,1595 Find,1,kingrichardii,1595 oaths,1,kingrichardii,1595 shape,1,kingrichardii,1595 Bound,1,kingrichardii,1595 farewells,1,kingrichardii,1595 graft'st,1,kingrichardii,1595 Words,1,kingrichardii,1595 Suppose,1,kingrichardii,1595 Distinguish,1,kingrichardii,1595 dim,1,kingrichardii,1595 sands,1,kingrichardii,1595 share,1,kingrichardii,1595 usurped,1,kingrichardii,1595 ships,1,kingrichardii,1595 sharp,1,kingrichardii,1595 Tut,1,kingrichardii,1595 women,1,kingrichardii,1595 fortunes,1,kingrichardii,1595 sway,1,kingrichardii,1595 lady,1,kingrichardii,1595 insinuate,1,kingrichardii,1595 clapping,1,kingrichardii,1595 stringless,1,kingrichardii,1595 Grows,1,kingrichardii,1595 attended,2,kingrichardii,1595 befal,2,kingrichardii,1595 kingdom's,2,kingrichardii,1595 degenerate,2,kingrichardii,1595 regard,2,kingrichardii,1595 lusty,2,kingrichardii,1595 tomb,2,kingrichardii,1595 Stands,2,kingrichardii,1595 swords,2,kingrichardii,1595 muster,2,kingrichardii,1595 suffer,2,kingrichardii,1595 taking,2,kingrichardii,1595 pestilence,2,kingrichardii,1595 drop,2,kingrichardii,1595 infant,2,kingrichardii,1595 verge,2,kingrichardii,1595 tops,2,kingrichardii,1595 leisure,2,kingrichardii,1595 Comfort,2,kingrichardii,1595 business,2,kingrichardii,1595 lament,2,kingrichardii,1595 brittle,2,kingrichardii,1595 Join,2,kingrichardii,1595 torn,2,kingrichardii,1595 follies,2,kingrichardii,1595 female,2,kingrichardii,1595 lower,2,kingrichardii,1595 rode,2,kingrichardii,1595 zeal,2,kingrichardii,1595 support,2,kingrichardii,1595 rob,2,kingrichardii,1595 mend,2,kingrichardii,1595 scene,2,kingrichardii,1595 Wilt,2,kingrichardii,1595 Doubly,2,kingrichardii,1595 endless,2,kingrichardii,1595 Never,2,kingrichardii,1595 dire,2,kingrichardii,1595 despised,2,kingrichardii,1595 dish,2,kingrichardii,1595 eight,2,kingrichardii,1595 slaughter'd,2,kingrichardii,1595 painted,2,kingrichardii,1595 pardon'd,2,kingrichardii,1595 Must,2,kingrichardii,1595 prisoner,2,kingrichardii,1595 drum,2,kingrichardii,1595 fought,2,kingrichardii,1595 summer's,2,kingrichardii,1595 appear,2,kingrichardii,1595 shelter,2,kingrichardii,1595 Ere,2,kingrichardii,1595 withal,2,kingrichardii,1595 signs,2,kingrichardii,1595 yonder,2,kingrichardii,1595 sort,2,kingrichardii,1595 rue,2,kingrichardii,1595 consorted,2,kingrichardii,1595 run,2,kingrichardii,1595 odds,2,kingrichardii,1595 sore,2,kingrichardii,1595 'stand,2,kingrichardii,1595 remain,2,kingrichardii,1595 Whom,2,kingrichardii,1595 cheeks,2,kingrichardii,1595 cast,2,kingrichardii,1595 coffers,2,kingrichardii,1595 Poor,2,kingrichardii,1595 plague,2,kingrichardii,1595 bending,2,kingrichardii,1595 Forget,2,kingrichardii,1595 birth,2,kingrichardii,1595 amazed,2,kingrichardii,1595 jest,2,kingrichardii,1595 yourself,2,kingrichardii,1595 ruin'd,2,kingrichardii,1595 grown,2,kingrichardii,1595 unking'd,2,kingrichardii,1595 broken,2,kingrichardii,1595 afterwards,2,kingrichardii,1595 trumpet,2,kingrichardii,1595 awry,2,kingrichardii,1595 sparks,2,kingrichardii,1595 cheek,2,kingrichardii,1595 dissolve,2,kingrichardii,1595 calm,2,kingrichardii,1595 pines,2,kingrichardii,1595 gross,2,kingrichardii,1595 officers,2,kingrichardii,1595 rider,2,kingrichardii,1595 Worcester,2,kingrichardii,1595 rites,2,kingrichardii,1595 complexion,2,kingrichardii,1595 Methinks,2,kingrichardii,1595 blessed,2,kingrichardii,1595 Thoughts,2,kingrichardii,1595 she,2,kingrichardii,1595 something,2,kingrichardii,1595 limits,2,kingrichardii,1595 execution,2,kingrichardii,1595 Mistake,2,kingrichardii,1595 deeper,2,kingrichardii,1595 warrant,2,kingrichardii,1595 aged,2,kingrichardii,1595 ages,2,kingrichardii,1595 wall,2,kingrichardii,1595 merry,2,kingrichardii,1595 rubs,2,kingrichardii,1595 'twas,2,kingrichardii,1595 YORK's,2,kingrichardii,1595 suit,2,kingrichardii,1595 fell,2,kingrichardii,1595 yield,2,kingrichardii,1595 livest,2,kingrichardii,1595 deliver,2,kingrichardii,1595 braving,2,kingrichardii,1595 shades,2,kingrichardii,1595 Withdraw,2,kingrichardii,1595 Such,2,kingrichardii,1595 confident,2,kingrichardii,1595 shipp'd,2,kingrichardii,1595 apparent,2,kingrichardii,1595 'I,2,kingrichardii,1595 Their,2,kingrichardii,1595 livery,2,kingrichardii,1595 design,2,kingrichardii,1595 permit,2,kingrichardii,1595 Music,2,kingrichardii,1595 suck,2,kingrichardii,1595 taught,2,kingrichardii,1595 merit,2,kingrichardii,1595 heavens,2,kingrichardii,1595 turning,2,kingrichardii,1595 snow,2,kingrichardii,1595 cousin's,2,kingrichardii,1595 fellow,2,kingrichardii,1595 ways,2,kingrichardii,1595 differences,2,kingrichardii,1595 reversion,2,kingrichardii,1595 civil,2,kingrichardii,1595 direct,2,kingrichardii,1595 absence,2,kingrichardii,1595 falls,2,kingrichardii,1595 envious,2,kingrichardii,1595 terms,2,kingrichardii,1595 showers,2,kingrichardii,1595 flatterer,2,kingrichardii,1595 worthy,2,kingrichardii,1595 Wherein,2,kingrichardii,1595 humble,2,kingrichardii,1595 abundant,2,kingrichardii,1595 elder,2,kingrichardii,1595 vanity,2,kingrichardii,1595 companion,2,kingrichardii,1595 slavish,2,kingrichardii,1595 descent,2,kingrichardii,1595 suffering,2,kingrichardii,1595 choose,2,kingrichardii,1595 prevent,2,kingrichardii,1595 usurp,2,kingrichardii,1595 Taste,2,kingrichardii,1595 Englishman,2,kingrichardii,1595 know'st,2,kingrichardii,1595 dies,2,kingrichardii,1595 died,2,kingrichardii,1595 accuse,2,kingrichardii,1595 Fetch,2,kingrichardii,1595 northern,2,kingrichardii,1595 rebellion,2,kingrichardii,1595 coast,2,kingrichardii,1595 LANGLEY,2,kingrichardii,1595 join'd,2,kingrichardii,1595 desire,2,kingrichardii,1595 woe's,2,kingrichardii,1595 uneven,2,kingrichardii,1595 gripe,2,kingrichardii,1595 intelligence,2,kingrichardii,1595 tending,2,kingrichardii,1595 aspect,2,kingrichardii,1595 bitter,2,kingrichardii,1595 wherefore,2,kingrichardii,1595 stir,2,kingrichardii,1595 slaves,2,kingrichardii,1595 manners,2,kingrichardii,1595 appeach,2,kingrichardii,1595 strongly,2,kingrichardii,1595 While,2,kingrichardii,1595 wanting,2,kingrichardii,1595 Draws,2,kingrichardii,1595 sign,2,kingrichardii,1595 destroying,2,kingrichardii,1595 refuse,2,kingrichardii,1595 altogether,2,kingrichardii,1595 Am,2,kingrichardii,1595 mutiny,2,kingrichardii,1595 neither,2,kingrichardii,1595 therefore,2,kingrichardii,1595 youthful,2,kingrichardii,1595 bow,2,kingrichardii,1595 Him,2,kingrichardii,1595 shortly,2,kingrichardii,1595 lance,2,kingrichardii,1595 Lo,2,kingrichardii,1595 Me,2,kingrichardii,1595 Stand,2,kingrichardii,1595 proof,2,kingrichardii,1595 arbitrate,2,kingrichardii,1595 greatly,2,kingrichardii,1595 creature,2,kingrichardii,1595 tales,2,kingrichardii,1595 begun,2,kingrichardii,1595 hid,2,kingrichardii,1595 changed,2,kingrichardii,1595 fatal,2,kingrichardii,1595 pleasure,2,kingrichardii,1595 whole,2,kingrichardii,1595 fortune's,2,kingrichardii,1595 deserved,2,kingrichardii,1595 goods,2,kingrichardii,1595 ease,2,kingrichardii,1595 arrest,2,kingrichardii,1595 wither'd,2,kingrichardii,1595 revenue,2,kingrichardii,1595 treachery,2,kingrichardii,1595 step,2,kingrichardii,1595 revenues,2,kingrichardii,1595 sought,2,kingrichardii,1595 gold,2,kingrichardii,1595 Rutland,2,kingrichardii,1595 royalty,2,kingrichardii,1595 wrinkle,2,kingrichardii,1595 tongue's,2,kingrichardii,1595 proportion,2,kingrichardii,1595 Open,2,kingrichardii,1595 absent,2,kingrichardii,1595 behind,2,kingrichardii,1595 burn,2,kingrichardii,1595 coffin,2,kingrichardii,1595 breathing,2,kingrichardii,1595 prisoners,2,kingrichardii,1595 somewhat,2,kingrichardii,1595 bent,2,kingrichardii,1595 craft,2,kingrichardii,1595 Saint,2,kingrichardii,1595 exile,2,kingrichardii,1595 sepulchre,2,kingrichardii,1595 afore,2,kingrichardii,1595 serpent,2,kingrichardii,1595 jewel,2,kingrichardii,1595 nearness,2,kingrichardii,1595 curse,2,kingrichardii,1595 Showing,2,kingrichardii,1595 swift,2,kingrichardii,1595 attorneys,2,kingrichardii,1595 herein,2,kingrichardii,1595 inforced,2,kingrichardii,1595 travel,2,kingrichardii,1595 divine,2,kingrichardii,1595 crack'd,2,kingrichardii,1595 ensue,2,kingrichardii,1595 Whither,2,kingrichardii,1595 vantage,2,kingrichardii,1595 north,2,kingrichardii,1595 lately,2,kingrichardii,1595 crowns,2,kingrichardii,1595 tower,2,kingrichardii,1595 solemn,2,kingrichardii,1595 plate,2,kingrichardii,1595 miles,2,kingrichardii,1595 ha,2,kingrichardii,1595 confess,2,kingrichardii,1595 Soldiers,2,kingrichardii,1595 favour,2,kingrichardii,1595 jewels,2,kingrichardii,1595 Part,2,kingrichardii,1595 Ill,2,kingrichardii,1595 wreck,2,kingrichardii,1595 stoop,2,kingrichardii,1595 legs,2,kingrichardii,1595 stone,2,kingrichardii,1595 deal,2,kingrichardii,1595 liberal,2,kingrichardii,1595 deaf,2,kingrichardii,1595 worthily,2,kingrichardii,1595 Return,2,kingrichardii,1595 stain'd,2,kingrichardii,1595 lend,2,kingrichardii,1595 redress,2,kingrichardii,1595 ay,2,kingrichardii,1595 shed,2,kingrichardii,1595 manner,2,kingrichardii,1595 forget,2,kingrichardii,1595 ah,2,kingrichardii,1595 dried,2,kingrichardii,1595 feast,2,kingrichardii,1595 that's,2,kingrichardii,1595 move,2,kingrichardii,1595 commend,2,kingrichardii,1595 Persuades,2,kingrichardii,1595 bodies,2,kingrichardii,1595 plant,2,kingrichardii,1595 crew,2,kingrichardii,1595 necessity,2,kingrichardii,1595 idly,2,kingrichardii,1595 twofold,2,kingrichardii,1595 sometime,2,kingrichardii,1595 Myself,2,kingrichardii,1595 begg'd,2,kingrichardii,1595 causes,2,kingrichardii,1595 interchangeably,2,kingrichardii,1595 achieved,2,kingrichardii,1595 Servants,2,kingrichardii,1595 wherein,2,kingrichardii,1595 devil,2,kingrichardii,1595 apparel,2,kingrichardii,1595 greater,2,kingrichardii,1595 blood's,2,kingrichardii,1595 harm,2,kingrichardii,1595 events,2,kingrichardii,1595 basely,2,kingrichardii,1595 hardly,2,kingrichardii,1595 reasons,2,kingrichardii,1595 clime,2,kingrichardii,1595 oppression,2,kingrichardii,1595 axe,2,kingrichardii,1595 outward,2,kingrichardii,1595 Most,2,kingrichardii,1595 field,2,kingrichardii,1595 conspiracy,2,kingrichardii,1595 senseless,2,kingrichardii,1595 employ'd,2,kingrichardii,1595 faintly,2,kingrichardii,1595 reach,2,kingrichardii,1595 plain,2,kingrichardii,1595 drawn,2,kingrichardii,1595 course,2,kingrichardii,1595 vengeance,2,kingrichardii,1595 prepare,2,kingrichardii,1595 deposing,2,kingrichardii,1595 pair,2,kingrichardii,1595 hangs,2,kingrichardii,1595 return'd,2,kingrichardii,1595 wasted,2,kingrichardii,1595 wretchedness,2,kingrichardii,1595 owes,2,kingrichardii,1595 strive,2,kingrichardii,1595 twain,2,kingrichardii,1595 stones,2,kingrichardii,1595 alive,2,kingrichardii,1595 fool,2,kingrichardii,1595 worldly,2,kingrichardii,1595 faithful,2,kingrichardii,1595 detested,2,kingrichardii,1595 food,2,kingrichardii,1595 prepared,2,kingrichardii,1595 girl,2,kingrichardii,1595 fresh,2,kingrichardii,1595 mayst,2,kingrichardii,1595 secret,2,kingrichardii,1595 Hast,2,kingrichardii,1595 thanks,2,kingrichardii,1595 forerun,2,kingrichardii,1595 theirs,2,kingrichardii,1595 complices,2,kingrichardii,1595 daring,2,kingrichardii,1595 enjoy,2,kingrichardii,1595 roof,2,kingrichardii,1595 lean,2,kingrichardii,1595 Comes,2,kingrichardii,1595 restored,2,kingrichardii,1595 room,2,kingrichardii,1595 condemn'd,2,kingrichardii,1595 perceives,2,kingrichardii,1595 securely,2,kingrichardii,1595 helping,2,kingrichardii,1595 peers,2,kingrichardii,1595 Keeps,2,kingrichardii,1595 empty,2,kingrichardii,1595 dress'd,2,kingrichardii,1595 shouldst,2,kingrichardii,1595 silence,2,kingrichardii,1595 takest,2,kingrichardii,1595 retired,2,kingrichardii,1595 triumphant,2,kingrichardii,1595 'Gainst,2,kingrichardii,1595 envy,2,kingrichardii,1595 proceed,2,kingrichardii,1595 prodigal,2,kingrichardii,1595 gently,2,kingrichardii,1595 unwieldy,2,kingrichardii,1595 daily,2,kingrichardii,1595 faint,2,kingrichardii,1595 ours,2,kingrichardii,1595 Six,2,kingrichardii,1595 hide,2,kingrichardii,1595 Love,2,kingrichardii,1595 Base,2,kingrichardii,1595 disloyal,2,kingrichardii,1595 wandering,2,kingrichardii,1595 Down,2,kingrichardii,1595 coronation,2,kingrichardii,1595 Add,2,kingrichardii,1595 Pluck'd,2,kingrichardii,1595 Darest,2,kingrichardii,1595 charters,2,kingrichardii,1595 several,2,kingrichardii,1595 Turks,2,kingrichardii,1595 Flint,2,kingrichardii,1595 say'st,2,kingrichardii,1595 famous,2,kingrichardii,1595 mourn,2,kingrichardii,1595 See,2,kingrichardii,1595 spurs,2,kingrichardii,1595 mild,2,kingrichardii,1595 fares,2,kingrichardii,1595 stride,2,kingrichardii,1595 teeth,2,kingrichardii,1595 stars,2,kingrichardii,1595 strict,2,kingrichardii,1595 Makes,2,kingrichardii,1595 dared,2,kingrichardii,1595 foolish,2,kingrichardii,1595 mildly,2,kingrichardii,1595 wrought,2,kingrichardii,1595 keeper,2,kingrichardii,1595 didst,2,kingrichardii,1595 'gainst,2,kingrichardii,1595 there's,2,kingrichardii,1595 son's,2,kingrichardii,1595 issue,2,kingrichardii,1595 because,2,kingrichardii,1595 designs,2,kingrichardii,1595 revengeful,2,kingrichardii,1595 minutes,2,kingrichardii,1595 labour,2,kingrichardii,1595 Being,2,kingrichardii,1595 possession,2,kingrichardii,1595 forego,2,kingrichardii,1595 headlong,2,kingrichardii,1595 breed,2,kingrichardii,1595 dissolute,2,kingrichardii,1595 same,2,kingrichardii,1595 trembling,2,kingrichardii,1595 Italy,2,kingrichardii,1595 sting,2,kingrichardii,1595 murders,2,kingrichardii,1595 leanness,2,kingrichardii,1595 Twice,2,kingrichardii,1595 enters,2,kingrichardii,1595 confines,2,kingrichardii,1595 cure,2,kingrichardii,1595 fetch,2,kingrichardii,1595 gay,2,kingrichardii,1595 allegiance,2,kingrichardii,1595 Dear,2,kingrichardii,1595 clock,2,kingrichardii,1595 ripe,2,kingrichardii,1595 count,2,kingrichardii,1595 remains,2,kingrichardii,1595 refuge,2,kingrichardii,1595 champion,2,kingrichardii,1595 Thine,2,kingrichardii,1595 burthen,2,kingrichardii,1595 chastisement,2,kingrichardii,1595 signories,2,kingrichardii,1595 believe,2,kingrichardii,1595 Throw,2,kingrichardii,1595 mounting,2,kingrichardii,1595 trusty,2,kingrichardii,1595 perforce,2,kingrichardii,1595 growing,2,kingrichardii,1595 kinsmen,2,kingrichardii,1595 wont,2,kingrichardii,1595 complain,2,kingrichardii,1595 Three,2,kingrichardii,1595 cursed,2,kingrichardii,1595 bounty,2,kingrichardii,1595 possess,2,kingrichardii,1595 sweets,2,kingrichardii,1595 Gives,2,kingrichardii,1595 numbering,2,kingrichardii,1595 what's,2,kingrichardii,1595 earthly,2,kingrichardii,1595 Surrey,2,kingrichardii,1595 foreign,2,kingrichardii,1595 compass,2,kingrichardii,1595 rain,2,kingrichardii,1595 caterpillars,2,kingrichardii,1595 dull,2,kingrichardii,1595 raged,2,kingrichardii,1595 serves,2,kingrichardii,1595 went,2,kingrichardii,1595 whence,2,kingrichardii,1595 grass,2,kingrichardii,1595 compare,2,kingrichardii,1595 minister,2,kingrichardii,1595 grieve,2,kingrichardii,1595 violate,2,kingrichardii,1595 cried,2,kingrichardii,1595 Many,2,kingrichardii,1595 giving,2,kingrichardii,1595 grant,2,kingrichardii,1595 swells,2,kingrichardii,1595 surnamed,2,kingrichardii,1595 misfortune,2,kingrichardii,1595 returns,2,kingrichardii,1595 ride,2,kingrichardii,1595 Mars,2,kingrichardii,1595 vow,2,kingrichardii,1595 profit,2,kingrichardii,1595 rich,2,kingrichardii,1595 Scroop,2,kingrichardii,1595 ribs,2,kingrichardii,1595 bare,2,kingrichardii,1595 lordship,2,kingrichardii,1595 Unto,2,kingrichardii,1595 shows,2,kingrichardii,1595 unfold,2,kingrichardii,1595 vex,2,kingrichardii,1595 butcher,2,kingrichardii,1595 Barbary,2,kingrichardii,1595 wrongfully,2,kingrichardii,1595 meaning,2,kingrichardii,1595 strikes,2,kingrichardii,1595 slanderous,2,kingrichardii,1595 band,2,kingrichardii,1595 tame,2,kingrichardii,1595 names,2,kingrichardii,1595 hating,2,kingrichardii,1595 Each,2,kingrichardii,1595 is't,2,kingrichardii,1595 lap,2,kingrichardii,1595 coat,2,kingrichardii,1595 man's,2,kingrichardii,1595 departure,2,kingrichardii,1595 convey,2,kingrichardii,1595 trample,2,kingrichardii,1595 holds,2,kingrichardii,1595 shook,2,kingrichardii,1595 shore,2,kingrichardii,1595 swears,2,kingrichardii,1595 peaceful,2,kingrichardii,1595 green,2,kingrichardii,1595 pupil,2,kingrichardii,1595 fires,2,kingrichardii,1595 commonwealth,2,kingrichardii,1595 seal,2,kingrichardii,1595 favours,2,kingrichardii,1595 glittering,2,kingrichardii,1595 soil'd,2,kingrichardii,1595 always,2,kingrichardii,1595 inward,2,kingrichardii,1595 sceptre's,2,kingrichardii,1595 Prince,2,kingrichardii,1595 captain,2,kingrichardii,1595 Right,2,kingrichardii,1595 trespass,2,kingrichardii,1595 'twixt,2,kingrichardii,1595 courtesy,2,kingrichardii,1595 divorce,2,kingrichardii,1595 condition,2,kingrichardii,1595 battle,2,kingrichardii,1595 aspiring,2,kingrichardii,1595 corn,2,kingrichardii,1595 thrust,2,kingrichardii,1595 Pray,2,kingrichardii,1595 Gentlemen,2,kingrichardii,1595 assign,2,kingrichardii,1595 avoid,2,kingrichardii,1595 nights,2,kingrichardii,1595 loyalty,2,kingrichardii,1595 regal,2,kingrichardii,1595 Things,2,kingrichardii,1595 Judas,2,kingrichardii,1595 beheld,2,kingrichardii,1595 blushing,2,kingrichardii,1595 enrich'd,2,kingrichardii,1595 according,2,kingrichardii,1595 Sent,2,kingrichardii,1595 'God,2,kingrichardii,1595 bleeding,2,kingrichardii,1595 prison,2,kingrichardii,1595 mother's,2,kingrichardii,1595 converts,2,kingrichardii,1595 greeting,2,kingrichardii,1595 stewardship,2,kingrichardii,1595 fearing,2,kingrichardii,1595 sickness,2,kingrichardii,1595 protest,2,kingrichardii,1595 triumphs,2,kingrichardii,1595 March,2,kingrichardii,1595 ceremonious,2,kingrichardii,1595 until,2,kingrichardii,1595 Two,2,kingrichardii,1595 brow,2,kingrichardii,1595 slow,2,kingrichardii,1595 storms,2,kingrichardii,1595 frantic,2,kingrichardii,1595 sleep,2,kingrichardii,1595 servants,2,kingrichardii,1595 eat,2,kingrichardii,1595 mad,2,kingrichardii,1595 sounded,2,kingrichardii,1595 debase,2,kingrichardii,1595 conduct,2,kingrichardii,1595 sister,2,kingrichardii,1595 met,2,kingrichardii,1595 meeting,2,kingrichardii,1595 Except,2,kingrichardii,1595 ladies,2,kingrichardii,1595 Men,2,kingrichardii,1595 Great,2,kingrichardii,1595 lips,2,kingrichardii,1595 harmony,2,kingrichardii,1595 marriage,2,kingrichardii,1595 Marry,2,kingrichardii,1595 terror,2,kingrichardii,1595 Kneels,2,kingrichardii,1595 thither,2,kingrichardii,1595 virtue,2,kingrichardii,1595 highway,2,kingrichardii,1595 betimes,2,kingrichardii,1595 recompense,2,kingrichardii,1595 windows,2,kingrichardii,1595 passages,2,kingrichardii,1595 mouths,2,kingrichardii,1595 witness,2,kingrichardii,1595 judged,2,kingrichardii,1595 dog,2,kingrichardii,1595 respect,2,kingrichardii,1595 attend,2,kingrichardii,1595 harsh,2,kingrichardii,1595 dark,2,kingrichardii,1595 boisterous,2,kingrichardii,1595 due,2,kingrichardii,1595 sudden,2,kingrichardii,1595 destroy,2,kingrichardii,1595 dry,2,kingrichardii,1595 Engage,2,kingrichardii,1595 Bring,2,kingrichardii,1595 regent,2,kingrichardii,1595 armed,2,kingrichardii,1595 pass'd,2,kingrichardii,1595 record,2,kingrichardii,1595 tired,2,kingrichardii,1595 cross,2,kingrichardii,1595 'Have,2,kingrichardii,1595 private,2,kingrichardii,1595 press'd,2,kingrichardii,1595 teeming,2,kingrichardii,1595 spirit,2,kingrichardii,1595 Fall,2,kingrichardii,1595 remembrance,2,kingrichardii,1595 repair,2,kingrichardii,1595 'mongst,2,kingrichardii,1595 flattering,2,kingrichardii,1595 tread,2,kingrichardii,1595 subjects',2,kingrichardii,1595 chivalry,2,kingrichardii,1595 e'er,2,kingrichardii,1595 shock,2,kingrichardii,1595 summer,2,kingrichardii,1595 in,258,kingrichardii,1595 deputy,3,kingrichardii,1595 o'er,3,kingrichardii,1595 parted,3,kingrichardii,1595 smiles,3,kingrichardii,1595 reputation,3,kingrichardii,1595 guilt,3,kingrichardii,1595 double,3,kingrichardii,1595 Alas,3,kingrichardii,1595 depose,3,kingrichardii,1595 shadows,3,kingrichardii,1595 advantage,3,kingrichardii,1595 unborn,3,kingrichardii,1595 Villain,3,kingrichardii,1595 bones,3,kingrichardii,1595 health,3,kingrichardii,1595 held,3,kingrichardii,1595 truly,3,kingrichardii,1595 Christ,3,kingrichardii,1595 groan,3,kingrichardii,1595 learn'd,3,kingrichardii,1595 honourable,3,kingrichardii,1595 hearted,3,kingrichardii,1595 instrument,3,kingrichardii,1595 naked,3,kingrichardii,1595 slander,3,kingrichardii,1595 maintain,3,kingrichardii,1595 throat,3,kingrichardii,1595 nought,3,kingrichardii,1595 Gloucester,3,kingrichardii,1595 Once,3,kingrichardii,1595 strength,3,kingrichardii,1595 conscience,3,kingrichardii,1595 bearing,3,kingrichardii,1595 dance,3,kingrichardii,1595 Ely,3,kingrichardii,1595 hearing,3,kingrichardii,1595 teach,3,kingrichardii,1595 regreet,3,kingrichardii,1595 visit,3,kingrichardii,1595 lesser,3,kingrichardii,1595 view,3,kingrichardii,1595 six,3,kingrichardii,1595 sir,3,kingrichardii,1595 'twere,3,kingrichardii,1595 eager,3,kingrichardii,1595 ourself,3,kingrichardii,1595 beasts,3,kingrichardii,1595 worth,3,kingrichardii,1595 branches,3,kingrichardii,1595 disgrace,3,kingrichardii,1595 commends,3,kingrichardii,1595 sky,3,kingrichardii,1595 sets,3,kingrichardii,1595 doubt,3,kingrichardii,1595 betwixt,3,kingrichardii,1595 scope,3,kingrichardii,1595 ourselves,3,kingrichardii,1595 received,3,kingrichardii,1595 conceit,3,kingrichardii,1595 twelve,3,kingrichardii,1595 Officers,3,kingrichardii,1595 Pardon,3,kingrichardii,1595 fruit,3,kingrichardii,1595 willing,3,kingrichardii,1595 about,3,kingrichardii,1595 above,3,kingrichardii,1595 feel,3,kingrichardii,1595 feet,3,kingrichardii,1595 Pomfret,3,kingrichardii,1595 malice,3,kingrichardii,1595 ancient,3,kingrichardii,1595 Whereto,3,kingrichardii,1595 Old,3,kingrichardii,1595 Guard,3,kingrichardii,1595 speaking,3,kingrichardii,1595 wind,3,kingrichardii,1595 Tower,3,kingrichardii,1595 thrown,3,kingrichardii,1595 seem'd,3,kingrichardii,1595 world's,3,kingrichardii,1595 stop,3,kingrichardii,1595 bond,3,kingrichardii,1595 book,3,kingrichardii,1595 bright,3,kingrichardii,1595 party,3,kingrichardii,1595 grievous,3,kingrichardii,1595 Hold,3,kingrichardii,1595 foes,3,kingrichardii,1595 Gloucestershire,3,kingrichardii,1595 granted,3,kingrichardii,1595 Ay,3,kingrichardii,1595 pay,3,kingrichardii,1595 bay,3,kingrichardii,1595 denied,3,kingrichardii,1595 Her,3,kingrichardii,1595 House,3,kingrichardii,1595 flowers,3,kingrichardii,1595 unruly,3,kingrichardii,1595 east,3,kingrichardii,1595 past,3,kingrichardii,1595 glorious,3,kingrichardii,1595 yourselves,3,kingrichardii,1595 quiet,3,kingrichardii,1595 sits,3,kingrichardii,1595 Re,3,kingrichardii,1595 sacrament,3,kingrichardii,1595 Carlisle,3,kingrichardii,1595 Welshmen,3,kingrichardii,1595 degree,3,kingrichardii,1595 begin,3,kingrichardii,1595 quite,3,kingrichardii,1595 Irish,3,kingrichardii,1595 flatterers,3,kingrichardii,1595 Fear,3,kingrichardii,1595 current,3,kingrichardii,1595 safe,3,kingrichardii,1595 tongues,3,kingrichardii,1595 pluck'd,3,kingrichardii,1595 thrive,3,kingrichardii,1595 boast,3,kingrichardii,1595 husband,3,kingrichardii,1595 yields,3,kingrichardii,1595 speed,3,kingrichardii,1595 possess'd,3,kingrichardii,1595 privilege,3,kingrichardii,1595 disorder'd,3,kingrichardii,1595 damn'd,3,kingrichardii,1595 Second,3,kingrichardii,1595 aside,3,kingrichardii,1595 o',3,kingrichardii,1595 spend,3,kingrichardii,1595 ready,3,kingrichardii,1595 thrice,3,kingrichardii,1595 graves,3,kingrichardii,1595 fierce,3,kingrichardii,1595 speaks,3,kingrichardii,1595 kingly,3,kingrichardii,1595 weeds,3,kingrichardii,1595 spur,3,kingrichardii,1595 deny,3,kingrichardii,1595 four,3,kingrichardii,1595 mighty,3,kingrichardii,1595 form,3,kingrichardii,1595 ask,3,kingrichardii,1595 stranger,3,kingrichardii,1595 fiery,3,kingrichardii,1595 spit,3,kingrichardii,1595 money,3,kingrichardii,1595 spear,3,kingrichardii,1595 mock,3,kingrichardii,1595 devise,3,kingrichardii,1595 yielded,3,kingrichardii,1595 except,3,kingrichardii,1595 revenge,3,kingrichardii,1595 armour,3,kingrichardii,1595 deadly,3,kingrichardii,1595 few,3,kingrichardii,1595 guest,3,kingrichardii,1595 march,3,kingrichardii,1595 watch,3,kingrichardii,1595 frozen,3,kingrichardii,1595 heavier,3,kingrichardii,1595 nay,3,kingrichardii,1595 faith,3,kingrichardii,1595 Peace,3,kingrichardii,1595 Alack,3,kingrichardii,1595 substance,3,kingrichardii,1595 strike,3,kingrichardii,1595 High,3,kingrichardii,1595 parting,3,kingrichardii,1595 dares,3,kingrichardii,1595 Doth,3,kingrichardii,1595 child,3,kingrichardii,1595 yours,3,kingrichardii,1595 other's,3,kingrichardii,1595 leaves,3,kingrichardii,1595 tempest,3,kingrichardii,1595 already,3,kingrichardii,1595 beggar,3,kingrichardii,1595 known,3,kingrichardii,1595 slave,3,kingrichardii,1595 won,3,kingrichardii,1595 number,3,kingrichardii,1595 Made,3,kingrichardii,1595 stain,3,kingrichardii,1595 affairs,3,kingrichardii,1595 pomp,3,kingrichardii,1595 dishonour,3,kingrichardii,1595 bread,3,kingrichardii,1595 woes,3,kingrichardii,1595 happiness,3,kingrichardii,1595 upright,3,kingrichardii,1595 unseen,3,kingrichardii,1595 death's,3,kingrichardii,1595 knightly,3,kingrichardii,1595 Ross,3,kingrichardii,1595 flourish,3,kingrichardii,1595 staff,3,kingrichardii,1595 themselves,3,kingrichardii,1595 brother's,3,kingrichardii,1595 wanton,3,kingrichardii,1595 ends,3,kingrichardii,1595 Bid,3,kingrichardii,1595 poison,3,kingrichardii,1595 fondly,3,kingrichardii,1595 knight,3,kingrichardii,1595 consent,3,kingrichardii,1595 waste,3,kingrichardii,1595 hundred,3,kingrichardii,1595 followers,3,kingrichardii,1595 Show,3,kingrichardii,1595 wholesome,3,kingrichardii,1595 dispersed,3,kingrichardii,1595 dispatch'd,3,kingrichardii,1595 judge,3,kingrichardii,1595 wander,3,kingrichardii,1595 methinks,3,kingrichardii,1595 woeful,3,kingrichardii,1595 pleased,3,kingrichardii,1595 colours,3,kingrichardii,1595 company,3,kingrichardii,1595 dancing,3,kingrichardii,1595 allow,3,kingrichardii,1595 Calais,3,kingrichardii,1595 ta'en,3,kingrichardii,1595 Willoughby,3,kingrichardii,1595 fawn,3,kingrichardii,1595 Fitzwater,3,kingrichardii,1595 destroy'd,3,kingrichardii,1595 balm,3,kingrichardii,1595 farm,3,kingrichardii,1595 arm'd,3,kingrichardii,1595 knighthood,3,kingrichardii,1595 reason,3,kingrichardii,1595 holy,3,kingrichardii,1595 task,3,kingrichardii,1595 wife,3,kingrichardii,1595 manage,3,kingrichardii,1595 along,3,kingrichardii,1595 alone,3,kingrichardii,1595 adieu,3,kingrichardii,1595 low,3,kingrichardii,1595 use,3,kingrichardii,1595 we'll,3,kingrichardii,1595 aught,3,kingrichardii,1595 seek,3,kingrichardii,1595 feeling,3,kingrichardii,1595 Through,3,kingrichardii,1595 kindred,3,kingrichardii,1595 bankrupt,3,kingrichardii,1595 grieved,3,kingrichardii,1595 winters,3,kingrichardii,1595 sullen,3,kingrichardii,1595 barren,3,kingrichardii,1595 Plashy,3,kingrichardii,1595 confound,3,kingrichardii,1595 dread,3,kingrichardii,1595 treacherous,3,kingrichardii,1595 thinking,3,kingrichardii,1595 Away,3,kingrichardii,1595 pernicious,3,kingrichardii,1595 lion,3,kingrichardii,1595 sometimes,3,kingrichardii,1595 sleeping,3,kingrichardii,1595 fright,3,kingrichardii,1595 silver,3,kingrichardii,1595 content,3,kingrichardii,1595 urged,3,kingrichardii,1595 try,3,kingrichardii,1595 appellant,3,kingrichardii,1595 honour's,3,kingrichardii,1595 weight,3,kingrichardii,1595 lord's,3,kingrichardii,1595 longest,3,kingrichardii,1595 behold,3,kingrichardii,1595 flower,3,kingrichardii,1595 Too,3,kingrichardii,1595 order,3,kingrichardii,1595 told,4,kingrichardii,1595 forbid,4,kingrichardii,1595 darest,4,kingrichardii,1595 speech,4,kingrichardii,1595 traitor's,4,kingrichardii,1595 alack,4,kingrichardii,1595 resign,4,kingrichardii,1595 Stay,4,kingrichardii,1595 spake,4,kingrichardii,1595 sighs,4,kingrichardii,1595 rid,4,kingrichardii,1595 although,4,kingrichardii,1595 marshal,4,kingrichardii,1595 mercy,4,kingrichardii,1595 charge,4,kingrichardii,1595 After,4,kingrichardii,1595 pilgrimage,4,kingrichardii,1595 Bristol,4,kingrichardii,1595 lift,4,kingrichardii,1595 golden,4,kingrichardii,1595 paper,4,kingrichardii,1595 wail,4,kingrichardii,1595 kin,4,kingrichardii,1595 deserve,4,kingrichardii,1595 Exton,4,kingrichardii,1595 bound,4,kingrichardii,1595 steps,4,kingrichardii,1595 Was,4,kingrichardii,1595 groans,4,kingrichardii,1595 common,4,kingrichardii,1595 BERKELEY,4,kingrichardii,1595 household,4,kingrichardii,1595 sue,4,kingrichardii,1595 model,4,kingrichardii,1595 fearful,4,kingrichardii,1595 brief,4,kingrichardii,1595 bring,4,kingrichardii,1595 length,4,kingrichardii,1595 wise,4,kingrichardii,1595 Ladies,4,kingrichardii,1595 French,4,kingrichardii,1595 sceptre,4,kingrichardii,1595 each,4,kingrichardii,1595 measure,4,kingrichardii,1595 quarrel,4,kingrichardii,1595 music,4,kingrichardii,1595 blows,4,kingrichardii,1595 bad,4,kingrichardii,1595 kept,4,kingrichardii,1595 pawn,4,kingrichardii,1595 beg,4,kingrichardii,1595 sport,4,kingrichardii,1595 ears,4,kingrichardii,1595 best,4,kingrichardii,1595 bend,4,kingrichardii,1595 yon,4,kingrichardii,1595 weak,4,kingrichardii,1595 Save,4,kingrichardii,1595 people,4,kingrichardii,1595 shadow,4,kingrichardii,1595 put,4,kingrichardii,1595 twice,4,kingrichardii,1595 just,4,kingrichardii,1595 tedious,4,kingrichardii,1595 sins,4,kingrichardii,1595 pains,4,kingrichardii,1595 sing,4,kingrichardii,1595 anointed,4,kingrichardii,1595 beat,4,kingrichardii,1595 Unless,4,kingrichardii,1595 Besides,4,kingrichardii,1595 door,4,kingrichardii,1595 doom,4,kingrichardii,1595 whereof,4,kingrichardii,1595 loss,4,kingrichardii,1595 place,4,kingrichardii,1595 Because,4,kingrichardii,1595 brought,4,kingrichardii,1595 repeal'd,4,kingrichardii,1595 foot,4,kingrichardii,1595 rough,4,kingrichardii,1595 fond,4,kingrichardii,1595 enemies,4,kingrichardii,1595 root,4,kingrichardii,1595 nobles,4,kingrichardii,1595 contented,4,kingrichardii,1595 griefs,4,kingrichardii,1595 indeed,4,kingrichardii,1595 Flourish,4,kingrichardii,1595 things,4,kingrichardii,1595 traitors,4,kingrichardii,1595 slain,4,kingrichardii,1595 borne,4,kingrichardii,1595 mount,4,kingrichardii,1595 quickly,4,kingrichardii,1595 freely,4,kingrichardii,1595 Look,4,kingrichardii,1595 towards,4,kingrichardii,1595 soldiers,4,kingrichardii,1595 mark,4,kingrichardii,1595 knows,4,kingrichardii,1595 blot,4,kingrichardii,1595 wot,4,kingrichardii,1595 letters,4,kingrichardii,1595 taste,4,kingrichardii,1595 passage,4,kingrichardii,1595 get,4,kingrichardii,1595 neck,4,kingrichardii,1595 sake,4,kingrichardii,1595 win,4,kingrichardii,1595 We'll,4,kingrichardii,1595 only,4,kingrichardii,1595 morrow,4,kingrichardii,1595 Percy,4,kingrichardii,1595 England's,4,kingrichardii,1595 Think,4,kingrichardii,1595 Coventry,4,kingrichardii,1595 rise,4,kingrichardii,1595 danger,4,kingrichardii,1595 forward,4,kingrichardii,1595 coming,4,kingrichardii,1595 joints,4,kingrichardii,1595 faced,4,kingrichardii,1595 womb,4,kingrichardii,1595 royalties,4,kingrichardii,1595 Bolingbroke's,4,kingrichardii,1595 Make,4,kingrichardii,1595 kinsman,4,kingrichardii,1595 fly,4,kingrichardii,1595 Sweet,4,kingrichardii,1595 aunt,4,kingrichardii,1595 Derby,4,kingrichardii,1595 boldly,4,kingrichardii,1595 trumpets,4,kingrichardii,1595 gentlemen,4,kingrichardii,1595 given,4,kingrichardii,1595 hold,4,kingrichardii,1595 cut,4,kingrichardii,1595 writing,4,kingrichardii,1595 satisfied,4,kingrichardii,1595 kingdom,4,kingrichardii,1595 seem,4,kingrichardii,1595 cry,4,kingrichardii,1595 therein,4,kingrichardii,1595 countrymen,4,kingrichardii,1595 self,4,kingrichardii,1595 post,4,kingrichardii,1595 together,4,kingrichardii,1595 cold,4,kingrichardii,1595 nurse,4,kingrichardii,1595 goes,4,kingrichardii,1595 purpose,4,kingrichardii,1595 triumph,4,kingrichardii,1595 clouds,4,kingrichardii,1595 heinous,4,kingrichardii,1595 correction,4,kingrichardii,1595 recreant,4,kingrichardii,1595 wound,4,kingrichardii,1595 Salisbury,4,kingrichardii,1595 rebels,4,kingrichardii,1595 laid,4,kingrichardii,1595 princely,4,kingrichardii,1595 Lest,4,kingrichardii,1595 venom,4,kingrichardii,1595 command,4,kingrichardii,1595 amen,4,kingrichardii,1595 wouldst,4,kingrichardii,1595 Ravenspurgh,5,kingrichardii,1595 highness',5,kingrichardii,1595 rather,5,kingrichardii,1595 Tell,5,kingrichardii,1595 sight,5,kingrichardii,1595 offer,5,kingrichardii,1595 appeal,5,kingrichardii,1595 seven,5,kingrichardii,1595 highness,5,kingrichardii,1595 black,5,kingrichardii,1595 sin,5,kingrichardii,1595 enough,5,kingrichardii,1595 sea,5,kingrichardii,1595 counsel,5,kingrichardii,1595 Attendants,5,kingrichardii,1595 worst,5,kingrichardii,1595 born,5,kingrichardii,1595 reverence,5,kingrichardii,1595 rude,5,kingrichardii,1595 flesh,5,kingrichardii,1595 knees,5,kingrichardii,1595 One,5,kingrichardii,1595 want,5,kingrichardii,1595 SURREY,5,kingrichardii,1595 wish,5,kingrichardii,1595 mean,5,kingrichardii,1595 steel,5,kingrichardii,1595 commons,5,kingrichardii,1595 patience,5,kingrichardii,1595 lands,5,kingrichardii,1595 canst,5,kingrichardii,1595 Wales,5,kingrichardii,1595 despair,5,kingrichardii,1595 Let's,5,kingrichardii,1595 play,5,kingrichardii,1595 Had,5,kingrichardii,1595 gave,5,kingrichardii,1595 weep,5,kingrichardii,1595 children,5,kingrichardii,1595 treasons,5,kingrichardii,1595 Like,5,kingrichardii,1595 Both,5,kingrichardii,1595 deed,5,kingrichardii,1595 air,5,kingrichardii,1595 buried,5,kingrichardii,1595 thyself,5,kingrichardii,1595 banish,5,kingrichardii,1595 lost,5,kingrichardii,1595 lose,5,kingrichardii,1595 forgot,5,kingrichardii,1595 men's,5,kingrichardii,1595 hot,5,kingrichardii,1595 valour,5,kingrichardii,1595 Christian,5,kingrichardii,1595 Call,5,kingrichardii,1595 gaunt,5,kingrichardii,1595 First,5,kingrichardii,1595 present,5,kingrichardii,1595 native,5,kingrichardii,1595 touch,5,kingrichardii,1595 change,5,kingrichardii,1595 justice,5,kingrichardii,1595 tender,5,kingrichardii,1595 garden,5,kingrichardii,1595 Therefore,5,kingrichardii,1595 precious,5,kingrichardii,1595 mortal,5,kingrichardii,1595 bloody,5,kingrichardii,1595 Uncle,5,kingrichardii,1595 sovereign's,5,kingrichardii,1595 presently,5,kingrichardii,1595 coward,5,kingrichardii,1595 let's,5,kingrichardii,1595 flatter,5,kingrichardii,1595 need,5,kingrichardii,1595 free,5,kingrichardii,1595 thing,5,kingrichardii,1595 says,5,kingrichardii,1595 loving,5,kingrichardii,1595 walls,5,kingrichardii,1595 Thus,5,kingrichardii,1595 found,5,kingrichardii,1595 dying,5,kingrichardii,1595 serve,5,kingrichardii,1595 profane,5,kingrichardii,1595 cares,5,kingrichardii,1595 three,5,kingrichardii,1595 wounds,5,kingrichardii,1595 lists,5,kingrichardii,1595 patient,5,kingrichardii,1595 hour,5,kingrichardii,1595 deliver'd,5,kingrichardii,1595 fast,5,kingrichardii,1595 large,5,kingrichardii,1595 Welcome,5,kingrichardii,1595 tale,5,kingrichardii,1595 wilt,5,kingrichardii,1595 dangerous,5,kingrichardii,1595 hollow,5,kingrichardii,1595 loyal,5,kingrichardii,1595 country's,5,kingrichardii,1595 seat,5,kingrichardii,1595 swear,5,kingrichardii,1595 Mine,5,kingrichardii,1595 tidings,5,kingrichardii,1595 'pardon',5,kingrichardii,1595 house,5,kingrichardii,1595 whilst,5,kingrichardii,1595 return,5,kingrichardii,1595 sorrow's,5,kingrichardii,1595 straight,5,kingrichardii,1595 Captain,5,kingrichardii,1595 rights,5,kingrichardii,1595 spring,5,kingrichardii,1595 dare,5,kingrichardii,1595 trees,5,kingrichardii,1595 ten,5,kingrichardii,1595 kill,5,kingrichardii,1595 bids,5,kingrichardii,1595 times,6,kingrichardii,1595 John,6,kingrichardii,1595 heir,6,kingrichardii,1595 weary,6,kingrichardii,1595 help,6,kingrichardii,1595 villain,6,kingrichardii,1595 vain,6,kingrichardii,1595 while,6,kingrichardii,1595 comest,6,kingrichardii,1595 Would,6,kingrichardii,1595 become,6,kingrichardii,1595 soon,6,kingrichardii,1595 sons,6,kingrichardii,1595 subjects,6,kingrichardii,1595 glass,6,kingrichardii,1595 came,6,kingrichardii,1595 further,6,kingrichardii,1595 stands,6,kingrichardii,1595 body,6,kingrichardii,1595 Berkeley,6,kingrichardii,1595 mother,6,kingrichardii,1595 read,6,kingrichardii,1595 wrong,6,kingrichardii,1595 France,6,kingrichardii,1595 fault,6,kingrichardii,1595 after,6,kingrichardii,1595 sword,6,kingrichardii,1595 others,6,kingrichardii,1595 title,6,kingrichardii,1595 bold,6,kingrichardii,1595 friend,6,kingrichardii,1595 wars,6,kingrichardii,1595 office,6,kingrichardii,1595 Ah,6,kingrichardii,1595 An,6,kingrichardii,1595 boy,6,kingrichardii,1595 bed,6,kingrichardii,1595 IV,6,kingrichardii,1595 whose,6,kingrichardii,1595 deep,6,kingrichardii,1595 breast,6,kingrichardii,1595 left,6,kingrichardii,1595 Bagot,6,kingrichardii,1595 realm,6,kingrichardii,1595 small,6,kingrichardii,1595 Yea,6,kingrichardii,1595 less,6,kingrichardii,1595 twenty,6,kingrichardii,1595 plot,6,kingrichardii,1595 open,6,kingrichardii,1595 pain,6,kingrichardii,1595 point,6,kingrichardii,1595 broke,6,kingrichardii,1595 Madam,6,kingrichardii,1595 Westminster,6,kingrichardii,1595 Mowbray's,6,kingrichardii,1595 youth,6,kingrichardii,1595 over,6,kingrichardii,1595 could,6,kingrichardii,1595 Were,6,kingrichardii,1595 beseech,6,kingrichardii,1595 heard,6,kingrichardii,1595 Say,6,kingrichardii,1595 dust,6,kingrichardii,1595 Can,6,kingrichardii,1595 pride,6,kingrichardii,1595 seize,6,kingrichardii,1595 guilty,6,kingrichardii,1595 foe,6,kingrichardii,1595 palace,6,kingrichardii,1595 find,6,kingrichardii,1595 talk,6,kingrichardii,1595 law,6,kingrichardii,1595 Let,6,kingrichardii,1595 strong,6,kingrichardii,1595 prayers,6,kingrichardii,1595 look'd,6,kingrichardii,1595 Wiltshire,6,kingrichardii,1595 learn,6,kingrichardii,1595 Green,6,kingrichardii,1595 liest,6,kingrichardii,1595 shalt,6,kingrichardii,1595 might,6,kingrichardii,1595 boots,6,kingrichardii,1595 enemy,6,kingrichardii,1595 V,7,kingrichardii,1595 Nay,7,kingrichardii,1595 Keeper,7,kingrichardii,1595 haste,7,kingrichardii,1595 hell,7,kingrichardii,1595 another,7,kingrichardii,1595 better,7,kingrichardii,1595 throne,7,kingrichardii,1595 sworn,7,kingrichardii,1595 worse,7,kingrichardii,1595 These,7,kingrichardii,1595 turn,7,kingrichardii,1595 grow,7,kingrichardii,1595 service,7,kingrichardii,1595 hence,7,kingrichardii,1595 wash,7,kingrichardii,1595 sick,7,kingrichardii,1595 side,7,kingrichardii,1595 At,7,kingrichardii,1595 Gloucester's,7,kingrichardii,1595 kings,7,kingrichardii,1595 Within,7,kingrichardii,1595 since,7,kingrichardii,1595 tear,7,kingrichardii,1595 means,7,kingrichardii,1595 Good,7,kingrichardii,1595 Oxford,7,kingrichardii,1595 Speak,7,kingrichardii,1595 spent,7,kingrichardii,1595 hard,7,kingrichardii,1595 water,7,kingrichardii,1595 Sir,7,kingrichardii,1595 mouth,7,kingrichardii,1595 Some,7,kingrichardii,1595 end,7,kingrichardii,1595 All,7,kingrichardii,1595 father's,7,kingrichardii,1595 Hereford's,7,kingrichardii,1595 wrongs,7,kingrichardii,1595 rage,7,kingrichardii,1595 next,7,kingrichardii,1595 wert,7,kingrichardii,1595 kiss,7,kingrichardii,1595 gentleman,7,kingrichardii,1595 Earl,7,kingrichardii,1595 thank,7,kingrichardii,1595 Herald,7,kingrichardii,1595 SALISBURY,7,kingrichardii,1595 Abbot,7,kingrichardii,1595 seen,7,kingrichardii,1595 whom,7,kingrichardii,1595 person,7,kingrichardii,1595 sent,7,kingrichardii,1595 madam,7,kingrichardii,1595 Groom,7,kingrichardii,1595 glory,7,kingrichardii,1595 fled,7,kingrichardii,1595 May,7,kingrichardii,1595 sentence,7,kingrichardii,1595 Did,7,kingrichardii,1595 without,7,kingrichardii,1595 kind,7,kingrichardii,1595 Edward's,7,kingrichardii,1595 woman,7,kingrichardii,1595 breathe,7,kingrichardii,1595 treason,8,kingrichardii,1595 pity,8,kingrichardii,1595 Will,8,kingrichardii,1595 pray,8,kingrichardii,1595 sour,8,kingrichardii,1595 under,8,kingrichardii,1595 truth,8,kingrichardii,1595 Upon,8,kingrichardii,1595 Whose,8,kingrichardii,1595 Farewell,8,kingrichardii,1595 within,8,kingrichardii,1595 There,8,kingrichardii,1595 Whilst,8,kingrichardii,1595 sun,8,kingrichardii,1595 Though,8,kingrichardii,1595 Cousin,8,kingrichardii,1595 III,8,kingrichardii,1595 said,8,kingrichardii,1595 bear,8,kingrichardii,1595 Gardener,8,kingrichardii,1595 knee,8,kingrichardii,1595 welcome,8,kingrichardii,1595 Lady,8,kingrichardii,1595 prince,8,kingrichardii,1595 pluck,8,kingrichardii,1595 Are,8,kingrichardii,1595 Should,8,kingrichardii,1595 Ireland,8,kingrichardii,1595 living,8,kingrichardii,1595 break,8,kingrichardii,1595 save,8,kingrichardii,1595 Even,8,kingrichardii,1595 even,8,kingrichardii,1595 ne'er,8,kingrichardii,1595 comfort,8,kingrichardii,1595 Henry,8,kingrichardii,1595 short,8,kingrichardii,1595 hearts,8,kingrichardii,1595 sacred,8,kingrichardii,1595 English,8,kingrichardii,1595 Bushy,8,kingrichardii,1595 remember,8,kingrichardii,1595 EARL,8,kingrichardii,1595 Before,8,kingrichardii,1595 Take,8,kingrichardii,1595 days,9,kingrichardii,1595 every,9,kingrichardii,1595 Richard's,9,kingrichardii,1595 Give,9,kingrichardii,1595 light,9,kingrichardii,1595 king's,9,kingrichardii,1595 matter,9,kingrichardii,1595 stay,9,kingrichardii,1595 enter,9,kingrichardii,1595 bid,9,kingrichardii,1595 heads,9,kingrichardii,1595 age,9,kingrichardii,1595 trial,9,kingrichardii,1595 deposed,9,kingrichardii,1595 STEPHEN,9,kingrichardii,1595 They,9,kingrichardii,1595 fire,9,kingrichardii,1595 why,9,kingrichardii,1595 oath,9,kingrichardii,1595 FITZWATER,9,kingrichardii,1595 fortune,9,kingrichardii,1595 please,9,kingrichardii,1595 till,9,kingrichardii,1595 lay,9,kingrichardii,1595 unto,9,kingrichardii,1595 SCROOP,9,kingrichardii,1595 sound,9,kingrichardii,1595 hours,9,kingrichardii,1595 send,9,kingrichardii,1595 poor,9,kingrichardii,1595 late,9,kingrichardii,1595 meet,10,kingrichardii,1595 thought,10,kingrichardii,1595 sad,10,kingrichardii,1595 Not,10,kingrichardii,1595 sit,10,kingrichardii,1595 else,10,kingrichardii,1595 night,10,kingrichardii,1595 part,10,kingrichardii,1595 pale,10,kingrichardii,1595 More,10,kingrichardii,1595 arm,10,kingrichardii,1595 none,10,kingrichardii,1595 mind,10,kingrichardii,1595 think,10,kingrichardii,1595 near,10,kingrichardii,1595 thine,10,kingrichardii,1595 banishment,10,kingrichardii,1595 court,10,kingrichardii,1595 Well,10,kingrichardii,1595 SIR,10,kingrichardii,1595 news,10,kingrichardii,1595 duke,10,kingrichardii,1595 weeping,10,kingrichardii,1595 London,10,kingrichardii,1595 Till,10,kingrichardii,1595 fall,10,kingrichardii,1595 queen,10,kingrichardii,1595 ear,10,kingrichardii,1595 answer,11,kingrichardii,1595 horse,11,kingrichardii,1595 brother,11,kingrichardii,1595 Thomas,11,kingrichardii,1595 call,11,kingrichardii,1595 Nor,11,kingrichardii,1595 Who,11,kingrichardii,1595 subject,11,kingrichardii,1595 looks,11,kingrichardii,1595 Here,11,kingrichardii,1595 false,11,kingrichardii,1595 tell,11,kingrichardii,1595 itself,11,kingrichardii,1595 On,11,kingrichardii,1595 farewell,11,kingrichardii,1595 ill,11,kingrichardii,1595 bosom,11,kingrichardii,1595 through,11,kingrichardii,1595 into,11,kingrichardii,1595 young,11,kingrichardii,1595 very,11,kingrichardii,1595 grave,11,kingrichardii,1595 throw,11,kingrichardii,1595 EXTON,11,kingrichardii,1595 ever,11,kingrichardii,1595 home,11,kingrichardii,1595 presence,11,kingrichardii,1595 makes,11,kingrichardii,1595 sovereign,11,kingrichardii,1595 Since,11,kingrichardii,1595 two,11,kingrichardii,1595 Exit,11,kingrichardii,1595 gracious,12,kingrichardii,1595 Be,12,kingrichardii,1595 gone,12,kingrichardii,1595 dost,12,kingrichardii,1595 God's,12,kingrichardii,1595 done,12,kingrichardii,1595 BISHOP,12,kingrichardii,1595 Yet,12,kingrichardii,1595 keep,12,kingrichardii,1595 foul,12,kingrichardii,1595 WILLOUGHBY,12,kingrichardii,1595 though,12,kingrichardii,1595 new,12,kingrichardii,1595 lords,12,kingrichardii,1595 Lords,12,kingrichardii,1595 once,12,kingrichardii,1595 before,12,kingrichardii,1595 duty,12,kingrichardii,1595 'Tis,12,kingrichardii,1595 base,12,kingrichardii,1595 CARLISLE,12,kingrichardii,1595 lives,12,kingrichardii,1595 defend,12,kingrichardii,1595 souls,12,kingrichardii,1595 lie,12,kingrichardii,1595 thoughts,12,kingrichardii,1595 joy,13,kingrichardii,1595 care,13,kingrichardii,1595 hear,13,kingrichardii,1595 Harry,13,kingrichardii,1595 prove,13,kingrichardii,1595 gage,13,kingrichardii,1595 hate,13,kingrichardii,1595 show,13,kingrichardii,1595 right,13,kingrichardii,1595 Hath,13,kingrichardii,1595 Have,13,kingrichardii,1595 gentle,13,kingrichardii,1595 ere,13,kingrichardii,1595 nor,13,kingrichardii,1595 ground,13,kingrichardii,1595 back,13,kingrichardii,1595 BAGOT,13,kingrichardii,1595 first,13,kingrichardii,1595 being,13,kingrichardii,1595 father,13,kingrichardii,1595 Northumberland,13,kingrichardii,1595 die,13,kingrichardii,1595 Come,14,kingrichardii,1595 cause,14,kingrichardii,1595 fight,14,kingrichardii,1595 Our,14,kingrichardii,1595 rest,14,kingrichardii,1595 Go,14,kingrichardii,1595 proud,14,kingrichardii,1595 Marshal,14,kingrichardii,1595 look,14,kingrichardii,1595 dear,14,kingrichardii,1595 any,14,kingrichardii,1595 forth,14,kingrichardii,1595 Than,14,kingrichardii,1595 Your,14,kingrichardii,1595 Mowbray,14,kingrichardii,1595 still,14,kingrichardii,1595 stand,14,kingrichardii,1595 heavy,14,kingrichardii,1595 war,14,kingrichardii,1595 happy,14,kingrichardii,1595 hither,14,kingrichardii,1595 When,14,kingrichardii,1595 shame,14,kingrichardii,1595 years,15,kingrichardii,1595 full,15,kingrichardii,1595 Servant,15,kingrichardii,1595 Lancaster,15,kingrichardii,1595 'tis,15,kingrichardii,1595 most,15,kingrichardii,1595 those,15,kingrichardii,1595 ROSS,15,kingrichardii,1595 castle,15,kingrichardii,1595 eye,15,kingrichardii,1595 many,15,kingrichardii,1595 comes,15,kingrichardii,1595 England,15,kingrichardii,1595 sweet,15,kingrichardii,1595 Thy,15,kingrichardii,1595 peace,16,kingrichardii,1595 lies,16,kingrichardii,1595 MOWBRAY,16,kingrichardii,1595 By,16,kingrichardii,1595 long,16,kingrichardii,1595 dead,16,kingrichardii,1595 From,16,kingrichardii,1595 high,16,kingrichardii,1595 THOMAS,16,kingrichardii,1595 banish'd,16,kingrichardii,1595 hope,16,kingrichardii,1595 thousand,16,kingrichardii,1595 pardon,16,kingrichardii,1595 himself,16,kingrichardii,1595 tears,17,kingrichardii,1595 GREEN,17,kingrichardii,1595 friends,17,kingrichardii,1595 words,17,kingrichardii,1595 No,17,kingrichardii,1595 been,17,kingrichardii,1595 breath,17,kingrichardii,1595 hast,17,kingrichardii,1595 far,17,kingrichardii,1595 Thou,17,kingrichardii,1595 woe,17,kingrichardii,1595 state,17,kingrichardii,1595 eyes,17,kingrichardii,1595 power,17,kingrichardii,1595 other,17,kingrichardii,1595 world,18,kingrichardii,1595 against,18,kingrichardii,1595 such,18,kingrichardii,1595 where,18,kingrichardii,1595 leave,18,kingrichardii,1595 cannot,18,kingrichardii,1595 both,19,kingrichardii,1595 honour,19,kingrichardii,1595 hands,19,kingrichardii,1595 grace,19,kingrichardii,1595 Gaunt,19,kingrichardii,1595 little,19,kingrichardii,1595 Against,19,kingrichardii,1595 ACT,19,kingrichardii,1595 word,19,kingrichardii,1595 great,19,kingrichardii,1595 traitor,19,kingrichardii,1595 last,19,kingrichardii,1595 Aumerle,20,kingrichardii,1595 much,20,kingrichardii,1595 BUSHY,20,kingrichardii,1595 Why,20,kingrichardii,1595 set,20,kingrichardii,1595 Norfolk,20,kingrichardii,1595 It,20,kingrichardii,1595 can,20,kingrichardii,1595 You,20,kingrichardii,1595 give,20,kingrichardii,1595 made,20,kingrichardii,1595 Shall,20,kingrichardii,1595 liege,20,kingrichardii,1595 Where,20,kingrichardii,1595 SCENE,20,kingrichardii,1595 ',21,kingrichardii,1595 her,21,kingrichardii,1595 We,21,kingrichardii,1595 PERCY,21,kingrichardii,1595 How,21,kingrichardii,1595 sorrow,21,kingrichardii,1595 arms,21,kingrichardii,1595 York,21,kingrichardii,1595 old,21,kingrichardii,1595 take,21,kingrichardii,1595 crown,21,kingrichardii,1595 head,22,kingrichardii,1595 Now,22,kingrichardii,1595 fear,22,kingrichardii,1595 again,22,kingrichardii,1595 who,22,kingrichardii,1595 off,22,kingrichardii,1595 live,22,kingrichardii,1595 royal,23,kingrichardii,1595 away,23,kingrichardii,1595 never,23,kingrichardii,1595 If,23,kingrichardii,1595 go,23,kingrichardii,1595 King,23,kingrichardii,1595 thus,23,kingrichardii,1595 majesty,24,kingrichardii,1595 myself,24,kingrichardii,1595 Then,24,kingrichardii,1595 soul,25,kingrichardii,1595 nothing,25,kingrichardii,1595 He,25,kingrichardii,1595 face,25,kingrichardii,1595 were,25,kingrichardii,1595 Hereford,25,kingrichardii,1595 which,26,kingrichardii,1595 down,26,kingrichardii,1595 Or,26,kingrichardii,1595 tongue,26,kingrichardii,1595 an,26,kingrichardii,1595 how,26,kingrichardii,1595 art,26,kingrichardii,1595 own,26,kingrichardii,1595 uncle,26,kingrichardii,1595 when,26,kingrichardii,1595 than,27,kingrichardii,1595 these,27,kingrichardii,1595 Exeunt,27,kingrichardii,1595 grief,27,kingrichardii,1595 So,27,kingrichardii,1595 speak,27,kingrichardii,1595 This,27,kingrichardii,1595 I'll,27,kingrichardii,1595 way,27,kingrichardii,1595 name,28,kingrichardii,1595 His,28,kingrichardii,1595 should,28,kingrichardii,1595 land,28,kingrichardii,1595 heaven,29,kingrichardii,1595 doth,29,kingrichardii,1595 earth,29,kingrichardii,1595 know,29,kingrichardii,1595 fair,29,kingrichardii,1595 true,29,kingrichardii,1595 son,30,kingrichardii,1595 then,30,kingrichardii,1595 Is,30,kingrichardii,1595 cousin,30,kingrichardii,1595 out,30,kingrichardii,1595 day,30,kingrichardii,1595 man,30,kingrichardii,1595 did,30,kingrichardii,1595 Duke,31,kingrichardii,1595 Of,31,kingrichardii,1595 noble,31,kingrichardii,1595 life,32,kingrichardii,1595 love,32,kingrichardii,1595 Richard,32,kingrichardii,1595 well,32,kingrichardii,1595 them,33,kingrichardii,1595 up,33,kingrichardii,1595 GAUNT,34,kingrichardii,1595 had,34,kingrichardii,1595 hand,34,kingrichardii,1595 JOHN,34,kingrichardii,1595 or,35,kingrichardii,1595 one,35,kingrichardii,1595 QUEEN,35,kingrichardii,1595 too,35,kingrichardii,1595 there,36,kingrichardii,1595 men,36,kingrichardii,1595 some,37,kingrichardii,1595 if,37,kingrichardii,1595 Lord,37,kingrichardii,1595 In,38,kingrichardii,1595 yet,38,kingrichardii,1595 now,38,kingrichardii,1595 mine,38,kingrichardii,1595 was,38,kingrichardii,1595 time,38,kingrichardii,1595 A,39,kingrichardii,1595 O,39,kingrichardii,1595 DUCHESS,39,kingrichardii,1595 would,39,kingrichardii,1595 death,40,kingrichardii,1595 see,40,kingrichardii,1595 us,40,kingrichardii,1595 heart,40,kingrichardii,1595 LORD,41,kingrichardii,1595 like,41,kingrichardii,1595 blood,41,kingrichardii,1595 am,41,kingrichardii,1595 more,41,kingrichardii,1595 come,41,kingrichardii,1595 may,41,kingrichardii,1595 upon,42,kingrichardii,1595 say,43,kingrichardii,1595 With,45,kingrichardii,1595 Which,45,kingrichardii,1595 Bolingbroke,45,kingrichardii,1595 good,46,kingrichardii,1595 let,46,kingrichardii,1595 What,46,kingrichardii,1595 must,48,kingrichardii,1595 NORTHUMBERLAND,49,kingrichardii,1595 As,49,kingrichardii,1595 make,49,kingrichardii,1595 they,50,kingrichardii,1595 AUMERLE,51,kingrichardii,1595 God,52,kingrichardii,1595 Enter,52,kingrichardii,1595 at,55,kingrichardii,1595 hath,55,kingrichardii,1595 here,56,kingrichardii,1595 For,62,kingrichardii,1595 their,62,kingrichardii,1595 lord,62,kingrichardii,1595 what,65,kingrichardii,1595 But,70,kingrichardii,1595 by,76,kingrichardii,1595 are,76,kingrichardii,1595 My,77,kingrichardii,1595 no,78,kingrichardii,1595 on,79,kingrichardii,1595 but,80,kingrichardii,1595 from,80,kingrichardii,1595 shall,82,kingrichardii,1595 do,84,kingrichardii,1595 we,84,kingrichardii,1595 That,85,kingrichardii,1595 thee,88,kingrichardii,1595 will,89,kingrichardii,1595 as,92,kingrichardii,1595 YORK,98,kingrichardii,1595 all,100,kingrichardii,1595 so,100,kingrichardii,1595 the,612,kingrichardii,1595 BOLINGBROKE,101,kingrichardii,1595 your,112,kingrichardii,1595 him,114,kingrichardii,1595 king,114,kingrichardii,1595 he,116,kingrichardii,1595 our,116,kingrichardii,1595 have,119,kingrichardii,1595 To,120,kingrichardii,1595 HENRY,122,kingrichardii,1595 DUKE,125,kingrichardii,1595 KING,134,kingrichardii,1595 RICHARD,134,kingrichardii,1595 for,134,kingrichardii,1595 my,390,kingrichardii,1595 The,136,kingrichardii,1595 II,137,kingrichardii,1595 you,142,kingrichardii,1595 it,144,kingrichardii,1595 this,145,kingrichardii,1595 be,157,kingrichardii,1595 thou,160,kingrichardii,1595 thy,160,kingrichardii,1595 me,171,kingrichardii,1595 not,196,kingrichardii,1595 that,197,kingrichardii,1595 with,199,kingrichardii,1595 to,457,kingrichardii,1595 his,207,kingrichardii,1595 I,467,kingrichardii,1595 OF,214,kingrichardii,1595 is,223,kingrichardii,1595 of,487,kingrichardii,1595 and,494,kingrichardii,1595 And,249,kingrichardii,1595 a,255,kingrichardii,1595 brave,1,rapeoflucrece,1609 cheque'd,1,rapeoflucrece,1609 dimm'd,1,rapeoflucrece,1609 holding,1,rapeoflucrece,1609 affords,1,rapeoflucrece,1609 discharged,1,rapeoflucrece,1609 Onward,1,rapeoflucrece,1609 'You,1,rapeoflucrece,1609 event,1,rapeoflucrece,1609 degenerate,1,rapeoflucrece,1609 household's,1,rapeoflucrece,1609 galled,1,rapeoflucrece,1609 armies,1,rapeoflucrece,1609 uncontrolled,1,rapeoflucrece,1609 seducing,1,rapeoflucrece,1609 violated,1,rapeoflucrece,1609 retiring,1,rapeoflucrece,1609 clouded,1,rapeoflucrece,1609 relier,1,rapeoflucrece,1609 uttering,1,rapeoflucrece,1609 vastly,1,rapeoflucrece,1609 dreadfully,1,rapeoflucrece,1609 scraps,1,rapeoflucrece,1609 imaginary,1,rapeoflucrece,1609 blemish'd,1,rapeoflucrece,1609 Quick,1,rapeoflucrece,1609 meek,1,rapeoflucrece,1609 advised,1,rapeoflucrece,1609 guard,1,rapeoflucrece,1609 swords,1,rapeoflucrece,1609 smiled,1,rapeoflucrece,1609 meed,1,rapeoflucrece,1609 Wanting,1,rapeoflucrece,1609 muster,1,rapeoflucrece,1609 invisible,1,rapeoflucrece,1609 suffer,1,rapeoflucrece,1609 address'd,1,rapeoflucrece,1609 join,1,rapeoflucrece,1609 days,1,rapeoflucrece,1609 blurr'd,1,rapeoflucrece,1609 cockatrice',1,rapeoflucrece,1609 advice,1,rapeoflucrece,1609 lips',1,rapeoflucrece,1609 fancy,1,rapeoflucrece,1609 extremity,1,rapeoflucrece,1609 easing,1,rapeoflucrece,1609 vanities,1,rapeoflucrece,1609 tool,1,rapeoflucrece,1609 infant,1,rapeoflucrece,1609 pretended,1,rapeoflucrece,1609 afar,1,rapeoflucrece,1609 Blue,1,rapeoflucrece,1609 cureless,1,rapeoflucrece,1609 interchange,1,rapeoflucrece,1609 derived,1,rapeoflucrece,1609 unrest,1,rapeoflucrece,1609 direful,1,rapeoflucrece,1609 leisure,1,rapeoflucrece,1609 quenchless,1,rapeoflucrece,1609 double,1,rapeoflucrece,1609 country,1,rapeoflucrece,1609 speech,1,rapeoflucrece,1609 contradict,1,rapeoflucrece,1609 Devise,1,rapeoflucrece,1609 wears,1,rapeoflucrece,1609 Burying,1,rapeoflucrece,1609 bereaves,1,rapeoflucrece,1609 raw,1,rapeoflucrece,1609 Troy's,1,rapeoflucrece,1609 horse,1,rapeoflucrece,1609 unicorn,1,rapeoflucrece,1609 discord,1,rapeoflucrece,1609 following,1,rapeoflucrece,1609 Alas,1,rapeoflucrece,1609 abominations,1,rapeoflucrece,1609 lament,1,rapeoflucrece,1609 stately,1,rapeoflucrece,1609 traitor's,1,rapeoflucrece,1609 knell,1,rapeoflucrece,1609 obtain'd,1,rapeoflucrece,1609 spends,1,rapeoflucrece,1609 shapeless,1,rapeoflucrece,1609 travail,1,rapeoflucrece,1609 torn,1,rapeoflucrece,1609 ran,1,rapeoflucrece,1609 ram,1,rapeoflucrece,1609 tore,1,rapeoflucrece,1609 brows,1,rapeoflucrece,1609 plagued,1,rapeoflucrece,1609 pitying,1,rapeoflucrece,1609 Whether,1,rapeoflucrece,1609 peculiar,1,rapeoflucrece,1609 Writ,1,rapeoflucrece,1609 yieldings,1,rapeoflucrece,1609 hasty,1,rapeoflucrece,1609 sympathized,1,rapeoflucrece,1609 longs,1,rapeoflucrece,1609 bones,1,rapeoflucrece,1609 boned,1,rapeoflucrece,1609 purge,1,rapeoflucrece,1609 element,1,rapeoflucrece,1609 exploits,1,rapeoflucrece,1609 rascal,1,rapeoflucrece,1609 assured,1,rapeoflucrece,1609 suppose,1,rapeoflucrece,1609 lendeth,1,rapeoflucrece,1609 counterfeits,1,rapeoflucrece,1609 heart's,1,rapeoflucrece,1609 steals,1,rapeoflucrece,1609 damps,1,rapeoflucrece,1609 stopp'd,1,rapeoflucrece,1609 Wilt,1,rapeoflucrece,1609 triumphing,1,rapeoflucrece,1609 dotes,1,rapeoflucrece,1609 Beat,1,rapeoflucrece,1609 space,1,rapeoflucrece,1609 neighbour's,1,rapeoflucrece,1609 villain,1,rapeoflucrece,1609 testy,1,rapeoflucrece,1609 devouring,1,rapeoflucrece,1609 endless,1,rapeoflucrece,1609 discourses,1,rapeoflucrece,1609 doted,1,rapeoflucrece,1609 cranny,1,rapeoflucrece,1609 melt,1,rapeoflucrece,1609 Grim,1,rapeoflucrece,1609 held,1,rapeoflucrece,1609 copesmate,1,rapeoflucrece,1609 dire,1,rapeoflucrece,1609 wailing,1,rapeoflucrece,1609 Venus',1,rapeoflucrece,1609 blustering,1,rapeoflucrece,1609 moiety,1,rapeoflucrece,1609 freed,1,rapeoflucrece,1609 truly,1,rapeoflucrece,1609 wife',1,rapeoflucrece,1609 duteous,1,rapeoflucrece,1609 piety,1,rapeoflucrece,1609 exceeds,1,rapeoflucrece,1609 starteth,1,rapeoflucrece,1609 miss'd,1,rapeoflucrece,1609 fumes,1,rapeoflucrece,1609 drowns,1,rapeoflucrece,1609 thorns,1,rapeoflucrece,1609 sneaped,1,rapeoflucrece,1609 wreaths,1,rapeoflucrece,1609 joint,1,rapeoflucrece,1609 palmers',1,rapeoflucrece,1609 'Come,1,rapeoflucrece,1609 care's,1,rapeoflucrece,1609 finger,1,rapeoflucrece,1609 plunging,1,rapeoflucrece,1609 Cooling,1,rapeoflucrece,1609 governess,1,rapeoflucrece,1609 wherewith,1,rapeoflucrece,1609 nameless,1,rapeoflucrece,1609 impurity,1,rapeoflucrece,1609 purer,1,rapeoflucrece,1609 chest,1,rapeoflucrece,1609 unwholesome,1,rapeoflucrece,1609 learn'd,1,rapeoflucrece,1609 Held,1,rapeoflucrece,1609 brood,1,rapeoflucrece,1609 Far,1,rapeoflucrece,1609 demeanor,1,rapeoflucrece,1609 fought,1,rapeoflucrece,1609 rid,1,rapeoflucrece,1609 naked,1,rapeoflucrece,1609 countermand,1,rapeoflucrece,1609 advance,1,rapeoflucrece,1609 slander,1,rapeoflucrece,1609 replenish,1,rapeoflucrece,1609 wield,1,rapeoflucrece,1609 flow,1,rapeoflucrece,1609 cave,1,rapeoflucrece,1609 lamentations,1,rapeoflucrece,1609 Helen's,1,rapeoflucrece,1609 drink,1,rapeoflucrece,1609 underneath,1,rapeoflucrece,1609 sour,1,rapeoflucrece,1609 laugh,1,rapeoflucrece,1609 worms,1,rapeoflucrece,1609 obscurely,1,rapeoflucrece,1609 innocence,1,rapeoflucrece,1609 baits,1,rapeoflucrece,1609 ravish,1,rapeoflucrece,1609 Wrapp'd,1,rapeoflucrece,1609 sort,1,rapeoflucrece,1609 lively,1,rapeoflucrece,1609 reproach's,1,rapeoflucrece,1609 strumpet,1,rapeoflucrece,1609 Pain,1,rapeoflucrece,1609 consorted,1,rapeoflucrece,1609 run,1,rapeoflucrece,1609 iron,1,rapeoflucrece,1609 absolute,1,rapeoflucrece,1609 Post,1,rapeoflucrece,1609 pick,1,rapeoflucrece,1609 unlived,1,rapeoflucrece,1609 contrary,1,rapeoflucrece,1609 Began,1,rapeoflucrece,1609 works,1,rapeoflucrece,1609 pleadeth,1,rapeoflucrece,1609 wing'd,1,rapeoflucrece,1609 pry'st,1,rapeoflucrece,1609 entice,1,rapeoflucrece,1609 wounded,1,rapeoflucrece,1609 become,1,rapeoflucrece,1609 requiring,1,rapeoflucrece,1609 curious,1,rapeoflucrece,1609 unwilling,1,rapeoflucrece,1609 spare,1,rapeoflucrece,1609 insurrection,1,rapeoflucrece,1609 mingled,1,rapeoflucrece,1609 Relish,1,rapeoflucrece,1609 Unlock'd,1,rapeoflucrece,1609 attempt,1,rapeoflucrece,1609 coffers,1,rapeoflucrece,1609 impure,1,rapeoflucrece,1609 unconquered,1,rapeoflucrece,1609 mistook,1,rapeoflucrece,1609 exhaled,1,rapeoflucrece,1609 pleasing,1,rapeoflucrece,1609 Once,1,rapeoflucrece,1609 obloquy,1,rapeoflucrece,1609 'Mis,1,rapeoflucrece,1609 interrupted,1,rapeoflucrece,1609 agrees,1,rapeoflucrece,1609 stoops,1,rapeoflucrece,1609 accidental,1,rapeoflucrece,1609 cramps,1,rapeoflucrece,1609 stirring,1,rapeoflucrece,1609 practised,1,rapeoflucrece,1609 mercy,1,rapeoflucrece,1609 passions,1,rapeoflucrece,1609 chid,1,rapeoflucrece,1609 graces,1,rapeoflucrece,1609 alarm,1,rapeoflucrece,1609 darksome,1,rapeoflucrece,1609 martyr'd,1,rapeoflucrece,1609 gloomy,1,rapeoflucrece,1609 cisterns,1,rapeoflucrece,1609 birth,1,rapeoflucrece,1609 mischances,1,rapeoflucrece,1609 everything,1,rapeoflucrece,1609 conscience,1,rapeoflucrece,1609 stock,1,rapeoflucrece,1609 wordless,1,rapeoflucrece,1609 Frantic,1,rapeoflucrece,1609 faultful,1,rapeoflucrece,1609 unresisted,1,rapeoflucrece,1609 behests,1,rapeoflucrece,1609 unjustly,1,rapeoflucrece,1609 befall'n,1,rapeoflucrece,1609 grown,1,rapeoflucrece,1609 founts,1,rapeoflucrece,1609 Birds,1,rapeoflucrece,1609 Swift,1,rapeoflucrece,1609 stream,1,rapeoflucrece,1609 scarlet,1,rapeoflucrece,1609 lilies,1,rapeoflucrece,1609 Give,1,rapeoflucrece,1609 grows,1,rapeoflucrece,1609 line,1,rapeoflucrece,1609 dreadeth,1,rapeoflucrece,1609 hour's,1,rapeoflucrece,1609 Jove,1,rapeoflucrece,1609 bathe,1,rapeoflucrece,1609 demure,1,rapeoflucrece,1609 circumstance,1,rapeoflucrece,1609 hammer'd,1,rapeoflucrece,1609 smothering,1,rapeoflucrece,1609 bottomless,1,rapeoflucrece,1609 Blind,1,rapeoflucrece,1609 crying,1,rapeoflucrece,1609 broken,1,rapeoflucrece,1609 amended,1,rapeoflucrece,1609 'Yea,1,rapeoflucrece,1609 Cheeks,1,rapeoflucrece,1609 brother,1,rapeoflucrece,1609 Keep,1,rapeoflucrece,1609 Knights,1,rapeoflucrece,1609 End,1,rapeoflucrece,1609 succeeding,1,rapeoflucrece,1609 subjects,1,rapeoflucrece,1609 trumpet,1,rapeoflucrece,1609 Much,1,rapeoflucrece,1609 Won,1,rapeoflucrece,1609 possessed,1,rapeoflucrece,1609 revels,1,rapeoflucrece,1609 sparks,1,rapeoflucrece,1609 Intending,1,rapeoflucrece,1609 contrive,1,rapeoflucrece,1609 offenders,1,rapeoflucrece,1609 wants,1,rapeoflucrece,1609 soften,1,rapeoflucrece,1609 hearing,1,rapeoflucrece,1609 Entombs,1,rapeoflucrece,1609 wound'st,1,rapeoflucrece,1609 babes,1,rapeoflucrece,1609 repetition,1,rapeoflucrece,1609 shadow'd,1,rapeoflucrece,1609 construes,1,rapeoflucrece,1609 nests,1,rapeoflucrece,1609 hanging,1,rapeoflucrece,1609 betrays,1,rapeoflucrece,1609 Argued,1,rapeoflucrece,1609 falcon's,1,rapeoflucrece,1609 sluggard,1,rapeoflucrece,1609 Puffs,1,rapeoflucrece,1609 congealed,1,rapeoflucrece,1609 infringed,1,rapeoflucrece,1609 beseem,1,rapeoflucrece,1609 likeness,1,rapeoflucrece,1609 wrong'st,1,rapeoflucrece,1609 wantons,1,rapeoflucrece,1609 faiths,1,rapeoflucrece,1609 Pale,1,rapeoflucrece,1609 stalks,1,rapeoflucrece,1609 contrite,1,rapeoflucrece,1609 enacted,1,rapeoflucrece,1609 transgressions,1,rapeoflucrece,1609 deprive,1,rapeoflucrece,1609 assail'd,1,rapeoflucrece,1609 quiver'st,1,rapeoflucrece,1609 purity,1,rapeoflucrece,1609 visit,1,rapeoflucrece,1609 toss'd,1,rapeoflucrece,1609 Slack'd,1,rapeoflucrece,1609 Thoughts,1,rapeoflucrece,1609 Busy,1,rapeoflucrece,1609 partner,1,rapeoflucrece,1609 bounding,1,rapeoflucrece,1609 perjured,1,rapeoflucrece,1609 batter,1,rapeoflucrece,1609 anatomized,1,rapeoflucrece,1609 further,1,rapeoflucrece,1609 parling,1,rapeoflucrece,1609 ladies',1,rapeoflucrece,1609 Comparing,1,rapeoflucrece,1609 discovery,1,rapeoflucrece,1609 antics,1,rapeoflucrece,1609 weaker,1,rapeoflucrece,1609 customs,1,rapeoflucrece,1609 shames,1,rapeoflucrece,1609 departs,1,rapeoflucrece,1609 sung,1,rapeoflucrece,1609 sit,1,rapeoflucrece,1609 wilderness,1,rapeoflucrece,1609 deeper,1,rapeoflucrece,1609 fleece,1,rapeoflucrece,1609 imprison'd,1,rapeoflucrece,1609 violently,1,rapeoflucrece,1609 Cancell'd,1,rapeoflucrece,1609 striking,1,rapeoflucrece,1609 ken,1,rapeoflucrece,1609 'twere,1,rapeoflucrece,1609 diapason,1,rapeoflucrece,1609 greeteth,1,rapeoflucrece,1609 key,1,rapeoflucrece,1609 tenants,1,rapeoflucrece,1609 Stuff,1,rapeoflucrece,1609 fleet,1,rapeoflucrece,1609 bastard,1,rapeoflucrece,1609 deprived,1,rapeoflucrece,1609 assails,1,rapeoflucrece,1609 invention,1,rapeoflucrece,1609 sex,1,rapeoflucrece,1609 vice,1,rapeoflucrece,1609 chain'd,1,rapeoflucrece,1609 reproving,1,rapeoflucrece,1609 mocking,1,rapeoflucrece,1609 coals,1,rapeoflucrece,1609 Pawn'd,1,rapeoflucrece,1609 Gazing,1,rapeoflucrece,1609 vaporous,1,rapeoflucrece,1609 society,1,rapeoflucrece,1609 throng,1,rapeoflucrece,1609 throne,1,rapeoflucrece,1609 abused,1,rapeoflucrece,1609 frosts,1,rapeoflucrece,1609 spy,1,rapeoflucrece,1609 cleanly,1,rapeoflucrece,1609 forsake,1,rapeoflucrece,1609 actor,1,rapeoflucrece,1609 WILLIAM,1,rapeoflucrece,1609 vanisheth,1,rapeoflucrece,1609 livest,1,rapeoflucrece,1609 confirmed,1,rapeoflucrece,1609 Pleads,1,rapeoflucrece,1609 branches,1,rapeoflucrece,1609 uncheerful,1,rapeoflucrece,1609 crannies,1,rapeoflucrece,1609 hearsed,1,rapeoflucrece,1609 windy,1,rapeoflucrece,1609 vine,1,rapeoflucrece,1609 delivers,1,rapeoflucrece,1609 avails,1,rapeoflucrece,1609 uncertainly,1,rapeoflucrece,1609 murdered,1,rapeoflucrece,1609 steps,1,rapeoflucrece,1609 sod,1,rapeoflucrece,1609 salve,1,rapeoflucrece,1609 forbiddings,1,rapeoflucrece,1609 experienced,1,rapeoflucrece,1609 leisurely,1,rapeoflucrece,1609 sworn,1,rapeoflucrece,1609 'a,1,rapeoflucrece,1609 moralize,1,rapeoflucrece,1609 plenty,1,rapeoflucrece,1609 mantle,1,rapeoflucrece,1609 looking,1,rapeoflucrece,1609 Was,1,rapeoflucrece,1609 compelled,1,rapeoflucrece,1609 counsel,1,rapeoflucrece,1609 countenance,1,rapeoflucrece,1609 deflower,1,rapeoflucrece,1609 weakly,1,rapeoflucrece,1609 attends,1,rapeoflucrece,1609 speedeth,1,rapeoflucrece,1609 gazeth,1,rapeoflucrece,1609 kindly,1,rapeoflucrece,1609 bow'd,1,rapeoflucrece,1609 cloy'd,1,rapeoflucrece,1609 forthwith,1,rapeoflucrece,1609 bashful,1,rapeoflucrece,1609 design,1,rapeoflucrece,1609 qualified,1,rapeoflucrece,1609 testament,1,rapeoflucrece,1609 acquainted,1,rapeoflucrece,1609 permit,1,rapeoflucrece,1609 'Few,1,rapeoflucrece,1609 firmly,1,rapeoflucrece,1609 woodman,1,rapeoflucrece,1609 chat,1,rapeoflucrece,1609 beloved,1,rapeoflucrece,1609 commends,1,rapeoflucrece,1609 pitiful,1,rapeoflucrece,1609 Covers,1,rapeoflucrece,1609 lambs,1,rapeoflucrece,1609 Blushing,1,rapeoflucrece,1609 controlled,1,rapeoflucrece,1609 merciless,1,rapeoflucrece,1609 dally,1,rapeoflucrece,1609 play'd,1,rapeoflucrece,1609 suck'd,1,rapeoflucrece,1609 awaketh,1,rapeoflucrece,1609 Authority,1,rapeoflucrece,1609 cheers,1,rapeoflucrece,1609 tuning,1,rapeoflucrece,1609 thieves,1,rapeoflucrece,1609 shriek,1,rapeoflucrece,1609 ensnared,1,rapeoflucrece,1609 suppress'd,1,rapeoflucrece,1609 everlasting,1,rapeoflucrece,1609 sly,1,rapeoflucrece,1609 felt,1,rapeoflucrece,1609 digestion,1,rapeoflucrece,1609 Tereus,1,rapeoflucrece,1609 barns,1,rapeoflucrece,1609 guide,1,rapeoflucrece,1609 compound,1,rapeoflucrece,1609 intrude,1,rapeoflucrece,1609 Offer,1,rapeoflucrece,1609 lingering,1,rapeoflucrece,1609 debtors,1,rapeoflucrece,1609 conceit,1,rapeoflucrece,1609 brain,1,rapeoflucrece,1609 Superbus,1,rapeoflucrece,1609 questioned,1,rapeoflucrece,1609 winks,1,rapeoflucrece,1609 confounded,1,rapeoflucrece,1609 enchained,1,rapeoflucrece,1609 charm'd,1,rapeoflucrece,1609 guarded,1,rapeoflucrece,1609 Life's,1,rapeoflucrece,1609 burneth,1,rapeoflucrece,1609 common,1,rapeoflucrece,1609 respecting,1,rapeoflucrece,1609 beldam's,1,rapeoflucrece,1609 scowls,1,rapeoflucrece,1609 bliss,1,rapeoflucrece,1609 grates,1,rapeoflucrece,1609 king's,1,rapeoflucrece,1609 purify,1,rapeoflucrece,1609 plots,1,rapeoflucrece,1609 orts,1,rapeoflucrece,1609 runs,1,rapeoflucrece,1609 terms,1,rapeoflucrece,1609 arbitrators,1,rapeoflucrece,1609 instance,1,rapeoflucrece,1609 showers,1,rapeoflucrece,1609 fruit,1,rapeoflucrece,1609 willing,1,rapeoflucrece,1609 pearl,1,rapeoflucrece,1609 'Look,1,rapeoflucrece,1609 'Tween,1,rapeoflucrece,1609 disports,1,rapeoflucrece,1609 princes,1,rapeoflucrece,1609 sue,1,rapeoflucrece,1609 minority,1,rapeoflucrece,1609 speechless,1,rapeoflucrece,1609 illiterate,1,rapeoflucrece,1609 perplex'd,1,rapeoflucrece,1609 circles,1,rapeoflucrece,1609 fearful,1,rapeoflucrece,1609 feed,1,rapeoflucrece,1609 accent,1,rapeoflucrece,1609 Servius,1,rapeoflucrece,1609 rein,1,rapeoflucrece,1609 cease,1,rapeoflucrece,1609 promise,1,rapeoflucrece,1609 beaten,1,rapeoflucrece,1609 grow,1,rapeoflucrece,1609 swore,1,rapeoflucrece,1609 dial,1,rapeoflucrece,1609 brine,1,rapeoflucrece,1609 baser,1,rapeoflucrece,1609 unperceived,1,rapeoflucrece,1609 ancient,1,rapeoflucrece,1609 'Now,1,rapeoflucrece,1609 weather,1,rapeoflucrece,1609 Old,1,rapeoflucrece,1609 passion's,1,rapeoflucrece,1609 'Nor,1,rapeoflucrece,1609 rude,1,rapeoflucrece,1609 claws,1,rapeoflucrece,1609 Suggested,1,rapeoflucrece,1609 mothers',1,rapeoflucrece,1609 Retire,1,rapeoflucrece,1609 shrine,1,rapeoflucrece,1609 ward,1,rapeoflucrece,1609 cavil,1,rapeoflucrece,1609 bechance,1,rapeoflucrece,1609 kneel,1,rapeoflucrece,1609 monarchs,1,rapeoflucrece,1609 cuckoos,1,rapeoflucrece,1609 tiger,1,rapeoflucrece,1609 Might,1,rapeoflucrece,1609 dedicate,1,rapeoflucrece,1609 night's,1,rapeoflucrece,1609 'point'st,1,rapeoflucrece,1609 knees,1,rapeoflucrece,1609 expressly,1,rapeoflucrece,1609 battle's,1,rapeoflucrece,1609 peasants,1,rapeoflucrece,1609 steal,1,rapeoflucrece,1609 entertained,1,rapeoflucrece,1609 edge,1,rapeoflucrece,1609 Tantalus,1,rapeoflucrece,1609 Eater,1,rapeoflucrece,1609 hates,1,rapeoflucrece,1609 hated,1,rapeoflucrece,1609 detriment,1,rapeoflucrece,1609 ruin,1,rapeoflucrece,1609 'she,1,rapeoflucrece,1609 servile,1,rapeoflucrece,1609 died,1,rapeoflucrece,1609 portal,1,rapeoflucrece,1609 eddy,1,rapeoflucrece,1609 Despair,1,rapeoflucrece,1609 staying,1,rapeoflucrece,1609 heraldry,1,rapeoflucrece,1609 northern,1,rapeoflucrece,1609 Pyrrhus,1,rapeoflucrece,1609 window,1,rapeoflucrece,1609 revolving,1,rapeoflucrece,1609 hatch,1,rapeoflucrece,1609 shrub's,1,rapeoflucrece,1609 bidding,1,rapeoflucrece,1609 parching,1,rapeoflucrece,1609 incense,1,rapeoflucrece,1609 beldam,1,rapeoflucrece,1609 harbour,1,rapeoflucrece,1609 pitch'd,1,rapeoflucrece,1609 wars,1,rapeoflucrece,1609 bond,1,rapeoflucrece,1609 during,1,rapeoflucrece,1609 cunning,1,rapeoflucrece,1609 timeless,1,rapeoflucrece,1609 wash,1,rapeoflucrece,1609 shuts,1,rapeoflucrece,1609 wasp,1,rapeoflucrece,1609 circumstances,1,rapeoflucrece,1609 matter,1,rapeoflucrece,1609 steep,1,rapeoflucrece,1609 'these,1,rapeoflucrece,1609 book,1,rapeoflucrece,1609 plaints,1,rapeoflucrece,1609 inordinate,1,rapeoflucrece,1609 praised,1,rapeoflucrece,1609 unrecalling,1,rapeoflucrece,1609 infirmity,1,rapeoflucrece,1609 sceptre,1,rapeoflucrece,1609 praises,1,rapeoflucrece,1609 wayward,1,rapeoflucrece,1609 sympathy,1,rapeoflucrece,1609 Draw,1,rapeoflucrece,1609 objects,1,rapeoflucrece,1609 aspect,1,rapeoflucrece,1609 Pausing,1,rapeoflucrece,1609 feather'd,1,rapeoflucrece,1609 bin,1,rapeoflucrece,1609 Tullius,1,rapeoflucrece,1609 grievous,1,rapeoflucrece,1609 conspirator,1,rapeoflucrece,1609 unadvised,1,rapeoflucrece,1609 tumult,1,rapeoflucrece,1609 bastardy,1,rapeoflucrece,1609 stir,1,rapeoflucrece,1609 Harmless,1,rapeoflucrece,1609 forbade,1,rapeoflucrece,1609 margents,1,rapeoflucrece,1609 manners,1,rapeoflucrece,1609 Wrath,1,rapeoflucrece,1609 mortality,1,rapeoflucrece,1609 Leaving,1,rapeoflucrece,1609 enjoy'd,1,rapeoflucrece,1609 breakers,1,rapeoflucrece,1609 strongly,1,rapeoflucrece,1609 commended,1,rapeoflucrece,1609 hap,1,rapeoflucrece,1609 enchanting,1,rapeoflucrece,1609 Faint,1,rapeoflucrece,1609 resembling,1,rapeoflucrece,1609 fords,1,rapeoflucrece,1609 Foretell,1,rapeoflucrece,1609 thoughted,1,rapeoflucrece,1609 rivers,1,rapeoflucrece,1609 utter,1,rapeoflucrece,1609 discern,1,rapeoflucrece,1609 distinguish,1,rapeoflucrece,1609 slaketh,1,rapeoflucrece,1609 resemble,1,rapeoflucrece,1609 Vast,1,rapeoflucrece,1609 Ay,1,rapeoflucrece,1609 balls,1,rapeoflucrece,1609 Lucretia's,1,rapeoflucrece,1609 flatters,1,rapeoflucrece,1609 pilot,1,rapeoflucrece,1609 altogether,1,rapeoflucrece,1609 infection,1,rapeoflucrece,1609 pay,1,rapeoflucrece,1609 orators,1,rapeoflucrece,1609 meads,1,rapeoflucrece,1609 slander's,1,rapeoflucrece,1609 youthful,1,rapeoflucrece,1609 shaming,1,rapeoflucrece,1609 wronger,1,rapeoflucrece,1609 eternal,1,rapeoflucrece,1609 spurn'st,1,rapeoflucrece,1609 Throwing,1,rapeoflucrece,1609 knowing,1,rapeoflucrece,1609 govern,1,rapeoflucrece,1609 antiquities,1,rapeoflucrece,1609 alarum,1,rapeoflucrece,1609 shortly,1,rapeoflucrece,1609 wash'd,1,rapeoflucrece,1609 reason's,1,rapeoflucrece,1609 inventions,1,rapeoflucrece,1609 among,1,rapeoflucrece,1609 assault,1,rapeoflucrece,1609 spoil'd,1,rapeoflucrece,1609 encompass'd,1,rapeoflucrece,1609 ban,1,rapeoflucrece,1609 'Think,1,rapeoflucrece,1609 hopes,1,rapeoflucrece,1609 Lo,1,rapeoflucrece,1609 pointed,1,rapeoflucrece,1609 prone,1,rapeoflucrece,1609 sensible,1,rapeoflucrece,1609 inclined,1,rapeoflucrece,1609 gratis,1,rapeoflucrece,1609 foam,1,rapeoflucrece,1609 lands,1,rapeoflucrece,1609 plea,1,rapeoflucrece,1609 cruel,1,rapeoflucrece,1609 unless,1,rapeoflucrece,1609 doves,1,rapeoflucrece,1609 canst,1,rapeoflucrece,1609 creature,1,rapeoflucrece,1609 exceed,1,rapeoflucrece,1609 bubbling,1,rapeoflucrece,1609 be',1,rapeoflucrece,1609 fouler,1,rapeoflucrece,1609 tales,1,rapeoflucrece,1609 joyless,1,rapeoflucrece,1609 pen,1,rapeoflucrece,1609 diligence,1,rapeoflucrece,1609 affection's,1,rapeoflucrece,1609 untutored,1,rapeoflucrece,1609 type,1,rapeoflucrece,1609 ashes,1,rapeoflucrece,1609 flowers,1,rapeoflucrece,1609 beg,1,rapeoflucrece,1609 souring,1,rapeoflucrece,1609 fatal,1,rapeoflucrece,1609 vanquished,1,rapeoflucrece,1609 enter,1,rapeoflucrece,1609 ills,1,rapeoflucrece,1609 notorious,1,rapeoflucrece,1609 damm'd,1,rapeoflucrece,1609 owner,1,rapeoflucrece,1609 ambush,1,rapeoflucrece,1609 ensconced,1,rapeoflucrece,1609 quick,1,rapeoflucrece,1609 tribute,1,rapeoflucrece,1609 arrest,1,rapeoflucrece,1609 bruised,1,rapeoflucrece,1609 wither'd,1,rapeoflucrece,1609 bid,1,rapeoflucrece,1609 despair,1,rapeoflucrece,1609 sluices,1,rapeoflucrece,1609 Had,1,rapeoflucrece,1609 sport,1,rapeoflucrece,1609 adder,1,rapeoflucrece,1609 Replies,1,rapeoflucrece,1609 mermaid,1,rapeoflucrece,1609 buys,1,rapeoflucrece,1609 troops,1,rapeoflucrece,1609 hides,1,rapeoflucrece,1609 unmatched,1,rapeoflucrece,1609 Troilus,1,rapeoflucrece,1609 display'd,1,rapeoflucrece,1609 nice,1,rapeoflucrece,1609 yourselves,1,rapeoflucrece,1609 meritorious,1,rapeoflucrece,1609 tumbled,1,rapeoflucrece,1609 polluted,1,rapeoflucrece,1609 nobly,1,rapeoflucrece,1609 curled,1,rapeoflucrece,1609 feareth,1,rapeoflucrece,1609 kiss'd,1,rapeoflucrece,1609 ridges,1,rapeoflucrece,1609 incest,1,rapeoflucrece,1609 boundeth,1,rapeoflucrece,1609 titles,1,rapeoflucrece,1609 surprise,1,rapeoflucrece,1609 useless,1,rapeoflucrece,1609 strifes,1,rapeoflucrece,1609 depending,1,rapeoflucrece,1609 weed,1,rapeoflucrece,1609 dumps,1,rapeoflucrece,1609 thorn,1,rapeoflucrece,1609 divide,1,rapeoflucrece,1609 lurk',1,rapeoflucrece,1609 bulk,1,rapeoflucrece,1609 challenge,1,rapeoflucrece,1609 espied,1,rapeoflucrece,1609 sorry,1,rapeoflucrece,1609 week,1,rapeoflucrece,1609 hills,1,rapeoflucrece,1609 'Reward,1,rapeoflucrece,1609 straw,1,rapeoflucrece,1609 spotless,1,rapeoflucrece,1609 bend,1,rapeoflucrece,1609 busy,1,rapeoflucrece,1609 tyrannize,1,rapeoflucrece,1609 leadeth,1,rapeoflucrece,1609 bush,1,rapeoflucrece,1609 untold,1,rapeoflucrece,1609 rouseth,1,rapeoflucrece,1609 strived,1,rapeoflucrece,1609 belied,1,rapeoflucrece,1609 fields,1,rapeoflucrece,1609 eclipsed,1,rapeoflucrece,1609 worshipper,1,rapeoflucrece,1609 Melt,1,rapeoflucrece,1609 dove,1,rapeoflucrece,1609 Sits,1,rapeoflucrece,1609 bell,1,rapeoflucrece,1609 abstaining,1,rapeoflucrece,1609 goodly,1,rapeoflucrece,1609 sorts,1,rapeoflucrece,1609 cat,1,rapeoflucrece,1609 Beating,1,rapeoflucrece,1609 TO,1,rapeoflucrece,1609 reeking,1,rapeoflucrece,1609 homely,1,rapeoflucrece,1609 tricks,1,rapeoflucrece,1609 strives,1,rapeoflucrece,1609 shepherds,1,rapeoflucrece,1609 'Lucrece,1,rapeoflucrece,1609 dote,1,rapeoflucrece,1609 couch,1,rapeoflucrece,1609 learned,1,rapeoflucrece,1609 wedlock,1,rapeoflucrece,1609 wear,1,rapeoflucrece,1609 canopied,1,rapeoflucrece,1609 craft,1,rapeoflucrece,1609 'on,1,rapeoflucrece,1609 Life,1,rapeoflucrece,1609 quill,1,rapeoflucrece,1609 beyond,1,rapeoflucrece,1609 sustain,1,rapeoflucrece,1609 modestly,1,rapeoflucrece,1609 buildings,1,rapeoflucrece,1609 Lies,1,rapeoflucrece,1609 Braving,1,rapeoflucrece,1609 welkin,1,rapeoflucrece,1609 disdainfully,1,rapeoflucrece,1609 jealous,1,rapeoflucrece,1609 invective,1,rapeoflucrece,1609 tempts,1,rapeoflucrece,1609 legacy,1,rapeoflucrece,1609 disbursed,1,rapeoflucrece,1609 serpent,1,rapeoflucrece,1609 twice,1,rapeoflucrece,1609 healeth,1,rapeoflucrece,1609 brinish,1,rapeoflucrece,1609 persuasion,1,rapeoflucrece,1609 Nestor's,1,rapeoflucrece,1609 lust's,1,rapeoflucrece,1609 despise,1,rapeoflucrece,1609 'no,1,rapeoflucrece,1609 extreme,1,rapeoflucrece,1609 theme,1,rapeoflucrece,1609 Holds,1,rapeoflucrece,1609 royally,1,rapeoflucrece,1609 ruinate,1,rapeoflucrece,1609 vaulty,1,rapeoflucrece,1609 beforehand,1,rapeoflucrece,1609 sentinel,1,rapeoflucrece,1609 badge,1,rapeoflucrece,1609 Showing,1,rapeoflucrece,1609 vows,1,rapeoflucrece,1609 buy,1,rapeoflucrece,1609 Ajax,1,rapeoflucrece,1609 amongst,1,rapeoflucrece,1609 used,1,rapeoflucrece,1609 disguise,1,rapeoflucrece,1609 cruelly,1,rapeoflucrece,1609 hovering,1,rapeoflucrece,1609 bees,1,rapeoflucrece,1609 longer,1,rapeoflucrece,1609 wheresoe'er,1,rapeoflucrece,1609 people's,1,rapeoflucrece,1609 lurks,1,rapeoflucrece,1609 sins,1,rapeoflucrece,1609 proportion'd,1,rapeoflucrece,1609 shifts,1,rapeoflucrece,1609 stronger,1,rapeoflucrece,1609 enterprise,1,rapeoflucrece,1609 paint,1,rapeoflucrece,1609 jump,1,rapeoflucrece,1609 hisses,1,rapeoflucrece,1609 stories,1,rapeoflucrece,1609 unstain'd,1,rapeoflucrece,1609 hourly,1,rapeoflucrece,1609 immortality,1,rapeoflucrece,1609 audacity,1,rapeoflucrece,1609 vantage,1,rapeoflucrece,1609 wolves',1,rapeoflucrece,1609 sharing,1,rapeoflucrece,1609 mists,1,rapeoflucrece,1609 comprehend,1,rapeoflucrece,1609 resort,1,rapeoflucrece,1609 acceptance,1,rapeoflucrece,1609 beginning,1,rapeoflucrece,1609 destitute,1,rapeoflucrece,1609 o'ergrown,1,rapeoflucrece,1609 pearly,1,rapeoflucrece,1609 opens,1,rapeoflucrece,1609 pillage,1,rapeoflucrece,1609 Revealing,1,rapeoflucrece,1609 quite,1,rapeoflucrece,1609 pearls,1,rapeoflucrece,1609 God,1,rapeoflucrece,1609 clients,1,rapeoflucrece,1609 solemn,1,rapeoflucrece,1609 noted,1,rapeoflucrece,1609 storm,1,rapeoflucrece,1609 eagles,1,rapeoflucrece,1609 'Fool,1,rapeoflucrece,1609 panting,1,rapeoflucrece,1609 departed,1,rapeoflucrece,1609 deer,1,rapeoflucrece,1609 affection,1,rapeoflucrece,1609 'that,1,rapeoflucrece,1609 eloquence,1,rapeoflucrece,1609 unpractised,1,rapeoflucrece,1609 clear'd,1,rapeoflucrece,1609 Fortune,1,rapeoflucrece,1609 underprop,1,rapeoflucrece,1609 sheds,1,rapeoflucrece,1609 torments,1,rapeoflucrece,1609 keeping,1,rapeoflucrece,1609 puddle,1,rapeoflucrece,1609 consecrated,1,rapeoflucrece,1609 yea,1,rapeoflucrece,1609 tyrant,1,rapeoflucrece,1609 Mock,1,rapeoflucrece,1609 satisfy,1,rapeoflucrece,1609 Fear,1,rapeoflucrece,1609 servant,1,rapeoflucrece,1609 faster,1,rapeoflucrece,1609 current,1,rapeoflucrece,1609 loop,1,rapeoflucrece,1609 deck,1,rapeoflucrece,1609 sheet,1,rapeoflucrece,1609 beat,1,rapeoflucrece,1609 Making,1,rapeoflucrece,1609 stoop,1,rapeoflucrece,1609 rightful,1,rapeoflucrece,1609 murderous,1,rapeoflucrece,1609 laments,1,rapeoflucrece,1609 tongued,1,rapeoflucrece,1609 newer,1,rapeoflucrece,1609 beak,1,rapeoflucrece,1609 tongues,1,rapeoflucrece,1609 notes,1,rapeoflucrece,1609 Unless,1,rapeoflucrece,1609 dwell,1,rapeoflucrece,1609 leader's,1,rapeoflucrece,1609 unworthy,1,rapeoflucrece,1609 disturbed,1,rapeoflucrece,1609 plays,1,rapeoflucrece,1609 excelleth,1,rapeoflucrece,1609 spinning,1,rapeoflucrece,1609 Revenge,1,rapeoflucrece,1609 profaned,1,rapeoflucrece,1609 vouchsafe,1,rapeoflucrece,1609 dignity,1,rapeoflucrece,1609 deaf,1,rapeoflucrece,1609 commanders,1,rapeoflucrece,1609 seeing,1,rapeoflucrece,1609 gild,1,rapeoflucrece,1609 daunts,1,rapeoflucrece,1609 co,1,rapeoflucrece,1609 continual,1,rapeoflucrece,1609 seeming,1,rapeoflucrece,1609 lighted,1,rapeoflucrece,1609 rhymes,1,rapeoflucrece,1609 redress,1,rapeoflucrece,1609 victors,1,rapeoflucrece,1609 doer,1,rapeoflucrece,1609 gall,1,rapeoflucrece,1609 waist,1,rapeoflucrece,1609 oppressor,1,rapeoflucrece,1609 touch'd,1,rapeoflucrece,1609 stole,1,rapeoflucrece,1609 lady's,1,rapeoflucrece,1609 waits,1,rapeoflucrece,1609 restrains,1,rapeoflucrece,1609 You,1,rapeoflucrece,1609 ay,1,rapeoflucrece,1609 yields,1,rapeoflucrece,1609 vaunt,1,rapeoflucrece,1609 relenting,1,rapeoflucrece,1609 maketh,1,rapeoflucrece,1609 possess'd,1,rapeoflucrece,1609 shed,1,rapeoflucrece,1609 privilege,1,rapeoflucrece,1609 defends,1,rapeoflucrece,1609 rains,1,rapeoflucrece,1609 Pluto,1,rapeoflucrece,1609 growth,1,rapeoflucrece,1609 newly,1,rapeoflucrece,1609 enclosed,1,rapeoflucrece,1609 supreme,1,rapeoflucrece,1609 wench,1,rapeoflucrece,1609 onset,1,rapeoflucrece,1609 piercing,1,rapeoflucrece,1609 unsheathed,1,rapeoflucrece,1609 fixed,1,rapeoflucrece,1609 rouse,1,rapeoflucrece,1609 cured,1,rapeoflucrece,1609 sugar'd,1,rapeoflucrece,1609 move,1,rapeoflucrece,1609 commend,1,rapeoflucrece,1609 encloses,1,rapeoflucrece,1609 delay,1,rapeoflucrece,1609 tragedies,1,rapeoflucrece,1609 small,1,rapeoflucrece,1609 'this,1,rapeoflucrece,1609 crew,1,rapeoflucrece,1609 unspotted,1,rapeoflucrece,1609 unfruitful,1,rapeoflucrece,1609 strait,1,rapeoflucrece,1609 aside,1,rapeoflucrece,1609 crave,1,rapeoflucrece,1609 'cannot',1,rapeoflucrece,1609 publisher,1,rapeoflucrece,1609 mote,1,rapeoflucrece,1609 engraven,1,rapeoflucrece,1609 outrageous,1,rapeoflucrece,1609 wrinkled,1,rapeoflucrece,1609 Fortune's,1,rapeoflucrece,1609 abettor,1,rapeoflucrece,1609 delicious,1,rapeoflucrece,1609 idle,1,rapeoflucrece,1609 Unprofitable,1,rapeoflucrece,1609 Lays,1,rapeoflucrece,1609 'Where,1,rapeoflucrece,1609 auspicious,1,rapeoflucrece,1609 stows,1,rapeoflucrece,1609 sufficed,1,rapeoflucrece,1609 look'st,1,rapeoflucrece,1609 Publius,1,rapeoflucrece,1609 caused,1,rapeoflucrece,1609 instigate,1,rapeoflucrece,1609 crimes,1,rapeoflucrece,1609 morn,1,rapeoflucrece,1609 noble,1,rapeoflucrece,1609 enmity,1,rapeoflucrece,1609 loves,1,rapeoflucrece,1609 scornful,1,rapeoflucrece,1609 pursues,1,rapeoflucrece,1609 glance,1,rapeoflucrece,1609 hoarsely,1,rapeoflucrece,1609 ink,1,rapeoflucrece,1609 endure,1,rapeoflucrece,1609 quittal,1,rapeoflucrece,1609 grooms,1,rapeoflucrece,1609 Yea,1,rapeoflucrece,1609 Staring,1,rapeoflucrece,1609 blur,1,rapeoflucrece,1609 add,1,rapeoflucrece,1609 Hindering,1,rapeoflucrece,1609 gleam'd,1,rapeoflucrece,1609 partners,1,rapeoflucrece,1609 bewray'd,1,rapeoflucrece,1609 cipher'd,1,rapeoflucrece,1609 lest,1,rapeoflucrece,1609 twinkling,1,rapeoflucrece,1609 swains,1,rapeoflucrece,1609 tames,1,rapeoflucrece,1609 loved,1,rapeoflucrece,1609 filling,1,rapeoflucrece,1609 abusing,1,rapeoflucrece,1609 Grace,1,rapeoflucrece,1609 straggling,1,rapeoflucrece,1609 wails,1,rapeoflucrece,1609 lets,1,rapeoflucrece,1609 beauteous,1,rapeoflucrece,1609 sightless,1,rapeoflucrece,1609 slaughterhouse,1,rapeoflucrece,1609 decks,1,rapeoflucrece,1609 boding,1,rapeoflucrece,1609 strand,1,rapeoflucrece,1609 nimble,1,rapeoflucrece,1609 knew,1,rapeoflucrece,1609 Whoever,1,rapeoflucrece,1609 ready,1,rapeoflucrece,1609 encouraging,1,rapeoflucrece,1609 spot,1,rapeoflucrece,1609 show'd,1,rapeoflucrece,1609 kings',1,rapeoflucrece,1609 subornation,1,rapeoflucrece,1609 pain'd,1,rapeoflucrece,1609 knee,1,rapeoflucrece,1609 minstrels,1,rapeoflucrece,1609 jocund,1,rapeoflucrece,1609 digression,1,rapeoflucrece,1609 climb,1,rapeoflucrece,1609 accents,1,rapeoflucrece,1609 basely,1,rapeoflucrece,1609 valour,1,rapeoflucrece,1609 Seeing,1,rapeoflucrece,1609 Haply,1,rapeoflucrece,1609 ornaments,1,rapeoflucrece,1609 accounted,1,rapeoflucrece,1609 kills,1,rapeoflucrece,1609 unlook'd,1,rapeoflucrece,1609 Proving,1,rapeoflucrece,1609 Advice,1,rapeoflucrece,1609 faints,1,rapeoflucrece,1609 incline,1,rapeoflucrece,1609 frighted,1,rapeoflucrece,1609 orphan,1,rapeoflucrece,1609 keen,1,rapeoflucrece,1609 remember'd,1,rapeoflucrece,1609 afford,1,rapeoflucrece,1609 frost,1,rapeoflucrece,1609 crow,1,rapeoflucrece,1609 half,1,rapeoflucrece,1609 askance,1,rapeoflucrece,1609 messenger,1,rapeoflucrece,1609 labouring,1,rapeoflucrece,1609 poorly,1,rapeoflucrece,1609 friendship's,1,rapeoflucrece,1609 beggar's,1,rapeoflucrece,1609 froth,1,rapeoflucrece,1609 knit,1,rapeoflucrece,1609 nearer,1,rapeoflucrece,1609 character'd,1,rapeoflucrece,1609 quills,1,rapeoflucrece,1609 dispensation,1,rapeoflucrece,1609 wormwood,1,rapeoflucrece,1609 'Tarquin,1,rapeoflucrece,1609 repeal,1,rapeoflucrece,1609 faintly,1,rapeoflucrece,1609 plantest,1,rapeoflucrece,1609 reprobate,1,rapeoflucrece,1609 strings,1,rapeoflucrece,1609 repeat,1,rapeoflucrece,1609 rushes,1,rapeoflucrece,1609 t',1,rapeoflucrece,1609 Swelling,1,rapeoflucrece,1609 appears,1,rapeoflucrece,1609 Full,1,rapeoflucrece,1609 deny,1,rapeoflucrece,1609 cited,1,rapeoflucrece,1609 consuls,1,rapeoflucrece,1609 Losing,1,rapeoflucrece,1609 descried,1,rapeoflucrece,1609 Pyrrhus',1,rapeoflucrece,1609 secrecies,1,rapeoflucrece,1609 dwell'd,1,rapeoflucrece,1609 foggy,1,rapeoflucrece,1609 Brings,1,rapeoflucrece,1609 momentary,1,rapeoflucrece,1609 halt,1,rapeoflucrece,1609 During,1,rapeoflucrece,1609 marching,1,rapeoflucrece,1609 Extinguishing,1,rapeoflucrece,1609 acquaintance,1,rapeoflucrece,1609 pluck,1,rapeoflucrece,1609 smoothness,1,rapeoflucrece,1609 expect,1,rapeoflucrece,1609 constrain'd,1,rapeoflucrece,1609 midnight,1,rapeoflucrece,1609 majesty's,1,rapeoflucrece,1609 Untimely,1,rapeoflucrece,1609 arm,1,rapeoflucrece,1609 ravens',1,rapeoflucrece,1609 form,1,rapeoflucrece,1609 prepare,1,rapeoflucrece,1609 bathes,1,rapeoflucrece,1609 Pure,1,rapeoflucrece,1609 hawk,1,rapeoflucrece,1609 harden,1,rapeoflucrece,1609 neglect,1,rapeoflucrece,1609 executest,1,rapeoflucrece,1609 hangs,1,rapeoflucrece,1609 fiery,1,rapeoflucrece,1609 Plot,1,rapeoflucrece,1609 removing,1,rapeoflucrece,1609 Tender,1,rapeoflucrece,1609 outrage,1,rapeoflucrece,1609 wretchedness,1,rapeoflucrece,1609 Ajax',1,rapeoflucrece,1609 hum,1,rapeoflucrece,1609 spear,1,rapeoflucrece,1609 Cave,1,rapeoflucrece,1609 coverlet,1,rapeoflucrece,1609 heartens,1,rapeoflucrece,1609 minute's,1,rapeoflucrece,1609 Borne,1,rapeoflucrece,1609 scatter,1,rapeoflucrece,1609 point,1,rapeoflucrece,1609 strive,1,rapeoflucrece,1609 deceitful,1,rapeoflucrece,1609 entertain'd,1,rapeoflucrece,1609 'nights,1,rapeoflucrece,1609 owed,1,rapeoflucrece,1609 lode,1,rapeoflucrece,1609 pace,1,rapeoflucrece,1609 forlorn,1,rapeoflucrece,1609 bosom,1,rapeoflucrece,1609 pack,1,rapeoflucrece,1609 alive,1,rapeoflucrece,1609 shot,1,rapeoflucrece,1609 puts,1,rapeoflucrece,1609 priceless,1,rapeoflucrece,1609 combat,1,rapeoflucrece,1609 rings,1,rapeoflucrece,1609 yielded,1,rapeoflucrece,1609 fear's,1,rapeoflucrece,1609 winking,1,rapeoflucrece,1609 bragg'd,1,rapeoflucrece,1609 awe,1,rapeoflucrece,1609 gentry,1,rapeoflucrece,1609 chastity,1,rapeoflucrece,1609 frets,1,rapeoflucrece,1609 HONORABLE,1,rapeoflucrece,1609 flatter'd,1,rapeoflucrece,1609 vowed,1,rapeoflucrece,1609 gaudy,1,rapeoflucrece,1609 food,1,rapeoflucrece,1609 images,1,rapeoflucrece,1609 tyranny,1,rapeoflucrece,1609 Pawning,1,rapeoflucrece,1609 Small,1,rapeoflucrece,1609 fainted,1,rapeoflucrece,1609 absolution,1,rapeoflucrece,1609 excess,1,rapeoflucrece,1609 'without,1,rapeoflucrece,1609 push,1,rapeoflucrece,1609 hapless,1,rapeoflucrece,1609 avouched,1,rapeoflucrece,1609 monument,1,rapeoflucrece,1609 forms,1,rapeoflucrece,1609 Men's,1,rapeoflucrece,1609 physiognomy,1,rapeoflucrece,1609 dewy,1,rapeoflucrece,1609 begets,1,rapeoflucrece,1609 armour,1,rapeoflucrece,1609 applied,1,rapeoflucrece,1609 poorer,1,rapeoflucrece,1609 Than,1,rapeoflucrece,1609 Hast,1,rapeoflucrece,1609 open'd,1,rapeoflucrece,1609 Short,1,rapeoflucrece,1609 roll,1,rapeoflucrece,1609 threads,1,rapeoflucrece,1609 'Shameful,1,rapeoflucrece,1609 bought,1,rapeoflucrece,1609 few,1,rapeoflucrece,1609 fee,1,rapeoflucrece,1609 rave,1,rapeoflucrece,1609 superiors,1,rapeoflucrece,1609 cheque,1,rapeoflucrece,1609 lurking,1,rapeoflucrece,1609 chides,1,rapeoflucrece,1609 wildfire,1,rapeoflucrece,1609 dishevell'd,1,rapeoflucrece,1609 Circles,1,rapeoflucrece,1609 behavior,1,rapeoflucrece,1609 daring,1,rapeoflucrece,1609 brain's,1,rapeoflucrece,1609 token,1,rapeoflucrece,1609 globes,1,rapeoflucrece,1609 purified,1,rapeoflucrece,1609 delighting,1,rapeoflucrece,1609 demanded,1,rapeoflucrece,1609 purple,1,rapeoflucrece,1609 hazard,1,rapeoflucrece,1609 mayest,1,rapeoflucrece,1609 Little,1,rapeoflucrece,1609 enjoy,1,rapeoflucrece,1609 Tichfield,1,rapeoflucrece,1609 including,1,rapeoflucrece,1609 guess,1,rapeoflucrece,1609 beams,1,rapeoflucrece,1609 crops,1,rapeoflucrece,1609 thought's,1,rapeoflucrece,1609 precedent,1,rapeoflucrece,1609 consumes,1,rapeoflucrece,1609 scapes,1,rapeoflucrece,1609 superfluous,1,rapeoflucrece,1609 compact,1,rapeoflucrece,1609 march,1,rapeoflucrece,1609 height,1,rapeoflucrece,1609 Between,1,rapeoflucrece,1609 infamies,1,rapeoflucrece,1609 triumph'd,1,rapeoflucrece,1609 fat,1,rapeoflucrece,1609 display,1,rapeoflucrece,1609 Shows,1,rapeoflucrece,1609 frenzy,1,rapeoflucrece,1609 lean,1,rapeoflucrece,1609 Comes,1,rapeoflucrece,1609 warble,1,rapeoflucrece,1609 leap,1,rapeoflucrece,1609 occasion,1,rapeoflucrece,1609 Kill,1,rapeoflucrece,1609 tried,1,rapeoflucrece,1609 discolour'd,1,rapeoflucrece,1609 frozen,1,rapeoflucrece,1609 Your,1,rapeoflucrece,1609 RIGHT,1,rapeoflucrece,1609 tries,1,rapeoflucrece,1609 rigol,1,rapeoflucrece,1609 hoards,1,rapeoflucrece,1609 incomparable,1,rapeoflucrece,1609 pencill'd,1,rapeoflucrece,1609 Beauty,1,rapeoflucrece,1609 equal,1,rapeoflucrece,1609 destiny,1,rapeoflucrece,1609 securely,1,rapeoflucrece,1609 stell'd,1,rapeoflucrece,1609 Become,1,rapeoflucrece,1609 peers,1,rapeoflucrece,1609 rigor,1,rapeoflucrece,1609 swallowing,1,rapeoflucrece,1609 unloose,1,rapeoflucrece,1609 suffrages,1,rapeoflucrece,1609 daisy,1,rapeoflucrece,1609 'Thus,1,rapeoflucrece,1609 astonish'd,1,rapeoflucrece,1609 errors,1,rapeoflucrece,1609 hind,1,rapeoflucrece,1609 Neglected,1,rapeoflucrece,1609 carrier,1,rapeoflucrece,1609 shrunk,1,rapeoflucrece,1609 scorch,1,rapeoflucrece,1609 rosy,1,rapeoflucrece,1609 griefs,1,rapeoflucrece,1609 guile',1,rapeoflucrece,1609 forehead,1,rapeoflucrece,1609 'arise,1,rapeoflucrece,1609 blackest,1,rapeoflucrece,1609 imparteth,1,rapeoflucrece,1609 alabaster,1,rapeoflucrece,1609 undeserved,1,rapeoflucrece,1609 idiots,1,rapeoflucrece,1609 mischief,1,rapeoflucrece,1609 lifeless,1,rapeoflucrece,1609 indeed,1,rapeoflucrece,1609 freezing,1,rapeoflucrece,1609 express'd,1,rapeoflucrece,1609 mountains,1,rapeoflucrece,1609 retires,1,rapeoflucrece,1609 hild,1,rapeoflucrece,1609 pollution,1,rapeoflucrece,1609 assays,1,rapeoflucrece,1609 premeditate,1,rapeoflucrece,1609 o'erflows,1,rapeoflucrece,1609 nose,1,rapeoflucrece,1609 Assail'd,1,rapeoflucrece,1609 HENRY,1,rapeoflucrece,1609 Paying,1,rapeoflucrece,1609 reflects,1,rapeoflucrece,1609 Back,1,rapeoflucrece,1609 beast,1,rapeoflucrece,1609 sparing,1,rapeoflucrece,1609 unacted,1,rapeoflucrece,1609 wakes,1,rapeoflucrece,1609 proceed,1,rapeoflucrece,1609 workman,1,rapeoflucrece,1609 strucken,1,rapeoflucrece,1609 gavest,1,rapeoflucrece,1609 saucily,1,rapeoflucrece,1609 doleful,1,rapeoflucrece,1609 scroll,1,rapeoflucrece,1609 'Courageous,1,rapeoflucrece,1609 cedar,1,rapeoflucrece,1609 roll'd,1,rapeoflucrece,1609 beats,1,rapeoflucrece,1609 prodigal,1,rapeoflucrece,1609 conquer'd,1,rapeoflucrece,1609 locks,1,rapeoflucrece,1609 unstained,1,rapeoflucrece,1609 exclaiming,1,rapeoflucrece,1609 guides,1,rapeoflucrece,1609 shaking,1,rapeoflucrece,1609 spright,1,rapeoflucrece,1609 curtains,1,rapeoflucrece,1609 conceited,1,rapeoflucrece,1609 below,1,rapeoflucrece,1609 mildness,1,rapeoflucrece,1609 tickling,1,rapeoflucrece,1609 temperance,1,rapeoflucrece,1609 daily,1,rapeoflucrece,1609 Achilles',1,rapeoflucrece,1609 schedule,1,rapeoflucrece,1609 remedy,1,rapeoflucrece,1609 beard,1,rapeoflucrece,1609 clothe,1,rapeoflucrece,1609 tigers,1,rapeoflucrece,1609 spread,1,rapeoflucrece,1609 faint,1,rapeoflucrece,1609 wildness,1,rapeoflucrece,1609 'She's,1,rapeoflucrece,1609 companions,1,rapeoflucrece,1609 traitors,1,rapeoflucrece,1609 tenor,1,rapeoflucrece,1609 excuse's,1,rapeoflucrece,1609 castaway,1,rapeoflucrece,1609 chaos,1,rapeoflucrece,1609 'At,1,rapeoflucrece,1609 'As,1,rapeoflucrece,1609 Seasoning,1,rapeoflucrece,1609 descended,1,rapeoflucrece,1609 bottom,1,rapeoflucrece,1609 Weak,1,rapeoflucrece,1609 hies,1,rapeoflucrece,1609 chaps,1,rapeoflucrece,1609 Base,1,rapeoflucrece,1609 smoothing,1,rapeoflucrece,1609 debaters,1,rapeoflucrece,1609 Soft,1,rapeoflucrece,1609 easeth,1,rapeoflucrece,1609 stares,1,rapeoflucrece,1609 strike,1,rapeoflucrece,1609 posterity,1,rapeoflucrece,1609 furnace,1,rapeoflucrece,1609 Fearing,1,rapeoflucrece,1609 Bare,1,rapeoflucrece,1609 citizen,1,rapeoflucrece,1609 perused,1,rapeoflucrece,1609 mount,1,rapeoflucrece,1609 Promise,1,rapeoflucrece,1609 sticks,1,rapeoflucrece,1609 towering,1,rapeoflucrece,1609 stays,1,rapeoflucrece,1609 mate,1,rapeoflucrece,1609 bequeath'd,1,rapeoflucrece,1609 arise,1,rapeoflucrece,1609 thrall,1,rapeoflucrece,1609 paces,1,rapeoflucrece,1609 Add,1,rapeoflucrece,1609 springs,1,rapeoflucrece,1609 unhappy,1,rapeoflucrece,1609 overseen,1,rapeoflucrece,1609 Therefore,1,rapeoflucrece,1609 gouts,1,rapeoflucrece,1609 places,1,rapeoflucrece,1609 ensnare,1,rapeoflucrece,1609 rejoicing,1,rapeoflucrece,1609 'Time's,1,rapeoflucrece,1609 uproar,1,rapeoflucrece,1609 mouse,1,rapeoflucrece,1609 splendor,1,rapeoflucrece,1609 Health,1,rapeoflucrece,1609 Thyself,1,rapeoflucrece,1609 utters,1,rapeoflucrece,1609 maze,1,rapeoflucrece,1609 'Show,1,rapeoflucrece,1609 Turns,1,rapeoflucrece,1609 injustice,1,rapeoflucrece,1609 gripe's,1,rapeoflucrece,1609 tutor,1,rapeoflucrece,1609 compassionate,1,rapeoflucrece,1609 contraries,1,rapeoflucrece,1609 mourn,1,rapeoflucrece,1609 Distress,1,rapeoflucrece,1609 Immodestly,1,rapeoflucrece,1609 wistly,1,rapeoflucrece,1609 gorged,1,rapeoflucrece,1609 effect,1,rapeoflucrece,1609 spurn,1,rapeoflucrece,1609 embracing,1,rapeoflucrece,1609 device,1,rapeoflucrece,1609 dissolution,1,rapeoflucrece,1609 set'st,1,rapeoflucrece,1609 admits,1,rapeoflucrece,1609 very,1,rapeoflucrece,1609 doors,1,rapeoflucrece,1609 expired,1,rapeoflucrece,1609 likewise,1,rapeoflucrece,1609 mindful,1,rapeoflucrece,1609 work'st,1,rapeoflucrece,1609 ringing,1,rapeoflucrece,1609 boasted,1,rapeoflucrece,1609 augmenting,1,rapeoflucrece,1609 arrived,1,rapeoflucrece,1609 charitable,1,rapeoflucrece,1609 plaining,1,rapeoflucrece,1609 teeth,1,rapeoflucrece,1609 start,1,rapeoflucrece,1609 prize,1,rapeoflucrece,1609 conclusion,1,rapeoflucrece,1609 shield,1,rapeoflucrece,1609 dirge,1,rapeoflucrece,1609 venturing,1,rapeoflucrece,1609 filth,1,rapeoflucrece,1609 beautify,1,rapeoflucrece,1609 spill'd,1,rapeoflucrece,1609 tempest,1,rapeoflucrece,1609 Thin,1,rapeoflucrece,1609 bosoms,1,rapeoflucrece,1609 Feeble,1,rapeoflucrece,1609 foolish,1,rapeoflucrece,1609 blinded,1,rapeoflucrece,1609 smother,1,rapeoflucrece,1609 Longing,1,rapeoflucrece,1609 readily,1,rapeoflucrece,1609 beauties,1,rapeoflucrece,1609 vent,1,rapeoflucrece,1609 rests,1,rapeoflucrece,1609 already,1,rapeoflucrece,1609 wrought,1,rapeoflucrece,1609 didst,1,rapeoflucrece,1609 dowry,1,rapeoflucrece,1609 treacherously,1,rapeoflucrece,1609 shame's,1,rapeoflucrece,1609 handmaids,1,rapeoflucrece,1609 Urging,1,rapeoflucrece,1609 belong,1,rapeoflucrece,1609 'gainst,1,rapeoflucrece,1609 stabbed,1,rapeoflucrece,1609 Could,1,rapeoflucrece,1609 mask,1,rapeoflucrece,1609 skin,1,rapeoflucrece,1609 shrubs,1,rapeoflucrece,1609 distain,1,rapeoflucrece,1609 uncouth,1,rapeoflucrece,1609 there's,1,rapeoflucrece,1609 Bearing,1,rapeoflucrece,1609 kissing,1,rapeoflucrece,1609 misgoverning,1,rapeoflucrece,1609 son's,1,rapeoflucrece,1609 crimson,1,rapeoflucrece,1609 known,1,rapeoflucrece,1609 folly's,1,rapeoflucrece,1609 devils,1,rapeoflucrece,1609 conduits,1,rapeoflucrece,1609 misled,1,rapeoflucrece,1609 vein,1,rapeoflucrece,1609 mire,1,rapeoflucrece,1609 forsook,1,rapeoflucrece,1609 because,1,rapeoflucrece,1609 wot,1,rapeoflucrece,1609 controls,1,rapeoflucrece,1609 quote,1,rapeoflucrece,1609 Amazedly,1,rapeoflucrece,1609 leaden,1,rapeoflucrece,1609 won,1,rapeoflucrece,1609 revengeful,1,rapeoflucrece,1609 minutes,1,rapeoflucrece,1609 'Go,1,rapeoflucrece,1609 craves,1,rapeoflucrece,1609 entombed,1,rapeoflucrece,1609 bushes,1,rapeoflucrece,1609 abridgement,1,rapeoflucrece,1609 infect,1,rapeoflucrece,1609 oak's,1,rapeoflucrece,1609 face's,1,rapeoflucrece,1609 need,1,rapeoflucrece,1609 mountain,1,rapeoflucrece,1609 arch,1,rapeoflucrece,1609 fret,1,rapeoflucrece,1609 harden'd,1,rapeoflucrece,1609 seal'd,1,rapeoflucrece,1609 'Disturb,1,rapeoflucrece,1609 threatening,1,rapeoflucrece,1609 'All,1,rapeoflucrece,1609 father's,1,rapeoflucrece,1609 over,1,rapeoflucrece,1609 search,1,rapeoflucrece,1609 boll'n,1,rapeoflucrece,1609 crimeful,1,rapeoflucrece,1609 snare,1,rapeoflucrece,1609 discharge,1,rapeoflucrece,1609 despitefully,1,rapeoflucrece,1609 whispering,1,rapeoflucrece,1609 worthless,1,rapeoflucrece,1609 Made,1,rapeoflucrece,1609 'She,1,rapeoflucrece,1609 casket,1,rapeoflucrece,1609 one's,1,rapeoflucrece,1609 disguised,1,rapeoflucrece,1609 wet,1,rapeoflucrece,1609 Reckoning,1,rapeoflucrece,1609 thorough,1,rapeoflucrece,1609 maintain'd,1,rapeoflucrece,1609 ploughman,1,rapeoflucrece,1609 wrath,1,rapeoflucrece,1609 desired,1,rapeoflucrece,1609 Were,1,rapeoflucrece,1609 bear'st,1,rapeoflucrece,1609 Lending,1,rapeoflucrece,1609 ceaseless,1,rapeoflucrece,1609 jeering,1,rapeoflucrece,1609 forego,1,rapeoflucrece,1609 Begrimed,1,rapeoflucrece,1609 breed,1,rapeoflucrece,1609 headlong,1,rapeoflucrece,1609 granteth,1,rapeoflucrece,1609 Respect,1,rapeoflucrece,1609 Italy,1,rapeoflucrece,1609 almighty,1,rapeoflucrece,1609 Coming,1,rapeoflucrece,1609 suspicion,1,rapeoflucrece,1609 affairs,1,rapeoflucrece,1609 dignified,1,rapeoflucrece,1609 passage,1,rapeoflucrece,1609 maids,1,rapeoflucrece,1609 pensiveness,1,rapeoflucrece,1609 opinion,1,rapeoflucrece,1609 reposed,1,rapeoflucrece,1609 acclamation,1,rapeoflucrece,1609 claims,1,rapeoflucrece,1609 despairing,1,rapeoflucrece,1609 wrongs,1,rapeoflucrece,1609 ARGUMENT,1,rapeoflucrece,1609 prescience,1,rapeoflucrece,1609 murders,1,rapeoflucrece,1609 knife's,1,rapeoflucrece,1609 example,1,rapeoflucrece,1609 odd,1,rapeoflucrece,1609 'No,1,rapeoflucrece,1609 stale,1,rapeoflucrece,1609 Instead,1,rapeoflucrece,1609 unhappily,1,rapeoflucrece,1609 blushes,1,rapeoflucrece,1609 purchase,1,rapeoflucrece,1609 smoky,1,rapeoflucrece,1609 banishment,1,rapeoflucrece,1609 breathings,1,rapeoflucrece,1609 fits,1,rapeoflucrece,1609 stamp,1,rapeoflucrece,1609 enters,1,rapeoflucrece,1609 whirlwinds,1,rapeoflucrece,1609 win,1,rapeoflucrece,1609 Unapt,1,rapeoflucrece,1609 off,1,rapeoflucrece,1609 proposed,1,rapeoflucrece,1609 arrival,1,rapeoflucrece,1609 'Lo,1,rapeoflucrece,1609 Dread,1,rapeoflucrece,1609 falls',1,rapeoflucrece,1609 curb,1,rapeoflucrece,1609 receipt,1,rapeoflucrece,1609 cloister'd,1,rapeoflucrece,1609 martial,1,rapeoflucrece,1609 hears,1,rapeoflucrece,1609 notary,1,rapeoflucrece,1609 welfare,1,rapeoflucrece,1609 fortress'd,1,rapeoflucrece,1609 detest,1,rapeoflucrece,1609 prime,1,rapeoflucrece,1609 devour'd,1,rapeoflucrece,1609 traffic,1,rapeoflucrece,1609 thrives,1,rapeoflucrece,1609 Well,1,rapeoflucrece,1609 gan,1,rapeoflucrece,1609 obeys,1,rapeoflucrece,1609 humanity,1,rapeoflucrece,1609 creation,1,rapeoflucrece,1609 Throng,1,rapeoflucrece,1609 Rushing,1,rapeoflucrece,1609 bloodless,1,rapeoflucrece,1609 fawneth,1,rapeoflucrece,1609 meaner,1,rapeoflucrece,1609 closet,1,rapeoflucrece,1609 pioner,1,rapeoflucrece,1609 posted,1,rapeoflucrece,1609 interprets,1,rapeoflucrece,1609 decays,1,rapeoflucrece,1609 walks,1,rapeoflucrece,1609 closed,1,rapeoflucrece,1609 Dear,1,rapeoflucrece,1609 Drunken,1,rapeoflucrece,1609 hearers,1,rapeoflucrece,1609 'Unruly,1,rapeoflucrece,1609 AEtna,1,rapeoflucrece,1609 Speed,1,rapeoflucrece,1609 back'd,1,rapeoflucrece,1609 falcon,1,rapeoflucrece,1609 choked,1,rapeoflucrece,1609 standing,1,rapeoflucrece,1609 negligence,1,rapeoflucrece,1609 distress'd,1,rapeoflucrece,1609 Enchanted,1,rapeoflucrece,1609 fulfill'd,1,rapeoflucrece,1609 unmask,1,rapeoflucrece,1609 adulterate,1,rapeoflucrece,1609 refuge,1,rapeoflucrece,1609 nursest,1,rapeoflucrece,1609 patiently,1,rapeoflucrece,1609 torture,1,rapeoflucrece,1609 trance,1,rapeoflucrece,1609 thwarting,1,rapeoflucrece,1609 Thine,1,rapeoflucrece,1609 resolving,1,rapeoflucrece,1609 glassy,1,rapeoflucrece,1609 owner's,1,rapeoflucrece,1609 deems,1,rapeoflucrece,1609 likes,1,rapeoflucrece,1609 hooks,1,rapeoflucrece,1609 Shed,1,rapeoflucrece,1609 earnest,1,rapeoflucrece,1609 wax,1,rapeoflucrece,1609 smeared,1,rapeoflucrece,1609 army,1,rapeoflucrece,1609 'Thy,1,rapeoflucrece,1609 tuned,1,rapeoflucrece,1609 actors,1,rapeoflucrece,1609 drives,1,rapeoflucrece,1609 fancy's,1,rapeoflucrece,1609 perforce,1,rapeoflucrece,1609 ursurper,1,rapeoflucrece,1609 growing,1,rapeoflucrece,1609 Forced,1,rapeoflucrece,1609 girdle,1,rapeoflucrece,1609 enraged,1,rapeoflucrece,1609 graceless,1,rapeoflucrece,1609 Corrupted,1,rapeoflucrece,1609 Hiding,1,rapeoflucrece,1609 kinsmen,1,rapeoflucrece,1609 danger,1,rapeoflucrece,1609 Extremity,1,rapeoflucrece,1609 forward,1,rapeoflucrece,1609 resistance,1,rapeoflucrece,1609 imposition,1,rapeoflucrece,1609 serve,1,rapeoflucrece,1609 bereft,1,rapeoflucrece,1609 'do,1,rapeoflucrece,1609 dazzleth,1,rapeoflucrece,1609 Lucius,1,rapeoflucrece,1609 wont,1,rapeoflucrece,1609 prick,1,rapeoflucrece,1609 owl,1,rapeoflucrece,1609 emulation,1,rapeoflucrece,1609 exclaims,1,rapeoflucrece,1609 wheel,1,rapeoflucrece,1609 next,1,rapeoflucrece,1609 bells,1,rapeoflucrece,1609 Muster,1,rapeoflucrece,1609 threats,1,rapeoflucrece,1609 Three,1,rapeoflucrece,1609 effecting,1,rapeoflucrece,1609 owls',1,rapeoflucrece,1609 plausibly,1,rapeoflucrece,1609 ruins,1,rapeoflucrece,1609 Shame,1,rapeoflucrece,1609 'by,1,rapeoflucrece,1609 sweets,1,rapeoflucrece,1609 news,1,rapeoflucrece,1609 adored,1,rapeoflucrece,1609 Obdurate,1,rapeoflucrece,1609 Gives,1,rapeoflucrece,1609 mightily,1,rapeoflucrece,1609 Shalt,1,rapeoflucrece,1609 fix'd,1,rapeoflucrece,1609 drone,1,rapeoflucrece,1609 Greece,1,rapeoflucrece,1609 dreams,1,rapeoflucrece,1609 blotted,1,rapeoflucrece,1609 seize,1,rapeoflucrece,1609 darken,1,rapeoflucrece,1609 oblivion,1,rapeoflucrece,1609 joints,1,rapeoflucrece,1609 served,1,rapeoflucrece,1609 rages,1,rapeoflucrece,1609 dissolved,1,rapeoflucrece,1609 honoured,1,rapeoflucrece,1609 mustering,1,rapeoflucrece,1609 rotted,1,rapeoflucrece,1609 pamphlet,1,rapeoflucrece,1609 graff,1,rapeoflucrece,1609 exclamation,1,rapeoflucrece,1609 pining,1,rapeoflucrece,1609 what's,1,rapeoflucrece,1609 earthly,1,rapeoflucrece,1609 poison,1,rapeoflucrece,1609 Swell,1,rapeoflucrece,1609 fondly,1,rapeoflucrece,1609 'Unless,1,rapeoflucrece,1609 anger,1,rapeoflucrece,1609 Sharp,1,rapeoflucrece,1609 labour'd,1,rapeoflucrece,1609 devoted,1,rapeoflucrece,1609 Rude,1,rapeoflucrece,1609 inured,1,rapeoflucrece,1609 opposite,1,rapeoflucrece,1609 lechers,1,rapeoflucrece,1609 Coucheth,1,rapeoflucrece,1609 inclination,1,rapeoflucrece,1609 compass,1,rapeoflucrece,1609 wondrous,1,rapeoflucrece,1609 smiteth,1,rapeoflucrece,1609 pitchy,1,rapeoflucrece,1609 rain,1,rapeoflucrece,1609 nest,1,rapeoflucrece,1609 invocations,1,rapeoflucrece,1609 Shape,1,rapeoflucrece,1609 unity,1,rapeoflucrece,1609 views,1,rapeoflucrece,1609 harvest,1,rapeoflucrece,1609 waste,1,rapeoflucrece,1609 suspecteth,1,rapeoflucrece,1609 stoutly,1,rapeoflucrece,1609 authors,1,rapeoflucrece,1609 whence,1,rapeoflucrece,1609 cover,1,rapeoflucrece,1609 fill'd,1,rapeoflucrece,1609 covet,1,rapeoflucrece,1609 appaid,1,rapeoflucrece,1609 grass,1,rapeoflucrece,1609 hideous,1,rapeoflucrece,1609 displacest,1,rapeoflucrece,1609 hunger,1,rapeoflucrece,1609 violate,1,rapeoflucrece,1609 weakling,1,rapeoflucrece,1609 vomit,1,rapeoflucrece,1609 cried,1,rapeoflucrece,1609 durst,1,rapeoflucrece,1609 'if,1,rapeoflucrece,1609 cloth,1,rapeoflucrece,1609 messengers,1,rapeoflucrece,1609 weapons,1,rapeoflucrece,1609 WRIOTHESLY,1,rapeoflucrece,1609 giving,1,rapeoflucrece,1609 Phrygian,1,rapeoflucrece,1609 Afflict,1,rapeoflucrece,1609 complain'd,1,rapeoflucrece,1609 desert,1,rapeoflucrece,1609 crystal,1,rapeoflucrece,1609 Grossly,1,rapeoflucrece,1609 victor,1,rapeoflucrece,1609 amends,1,rapeoflucrece,1609 unpeopled,1,rapeoflucrece,1609 sin's,1,rapeoflucrece,1609 wilful,1,rapeoflucrece,1609 'alack,1,rapeoflucrece,1609 wander,1,rapeoflucrece,1609 grant,1,rapeoflucrece,1609 blow'st,1,rapeoflucrece,1609 surcease,1,rapeoflucrece,1609 answers,1,rapeoflucrece,1609 swells,1,rapeoflucrece,1609 surnamed,1,rapeoflucrece,1609 kinsman,1,rapeoflucrece,1609 misfortune,1,rapeoflucrece,1609 woeful,1,rapeoflucrece,1609 Cozening,1,rapeoflucrece,1609 pleased,1,rapeoflucrece,1609 spilling,1,rapeoflucrece,1609 Capitol,1,rapeoflucrece,1609 Whereupon,1,rapeoflucrece,1609 threw,1,rapeoflucrece,1609 fighting,1,rapeoflucrece,1609 Wagg'd,1,rapeoflucrece,1609 skilful,1,rapeoflucrece,1609 clay,1,rapeoflucrece,1609 dancing,1,rapeoflucrece,1609 allow,1,rapeoflucrece,1609 Sweet,1,rapeoflucrece,1609 flame,1,rapeoflucrece,1609 fit,1,rapeoflucrece,1609 galls,1,rapeoflucrece,1609 fix,1,rapeoflucrece,1609 grape,1,rapeoflucrece,1609 wets,1,rapeoflucrece,1609 solicited,1,rapeoflucrece,1609 perfect,1,rapeoflucrece,1609 fine,1,rapeoflucrece,1609 lordly,1,rapeoflucrece,1609 profit,1,rapeoflucrece,1609 swallow'd,1,rapeoflucrece,1609 stains,1,rapeoflucrece,1609 stream'd,1,rapeoflucrece,1609 clad,1,rapeoflucrece,1609 admiration,1,rapeoflucrece,1609 progenitors,1,rapeoflucrece,1609 lean'd,1,rapeoflucrece,1609 purloin'd,1,rapeoflucrece,1609 channel,1,rapeoflucrece,1609 decay'd,1,rapeoflucrece,1609 'Daughter,1,rapeoflucrece,1609 Dardan,1,rapeoflucrece,1609 duties,1,rapeoflucrece,1609 niggard,1,rapeoflucrece,1609 sundry,1,rapeoflucrece,1609 mansion,1,rapeoflucrece,1609 Southampton,1,rapeoflucrece,1609 ta'en,1,rapeoflucrece,1609 Receives,1,rapeoflucrece,1609 reek'd,1,rapeoflucrece,1609 wide,1,rapeoflucrece,1609 dispatcheth,1,rapeoflucrece,1609 lines,1,rapeoflucrece,1609 linen,1,rapeoflucrece,1609 patient,1,rapeoflucrece,1609 wonted,1,rapeoflucrece,1609 waves,1,rapeoflucrece,1609 bars,1,rapeoflucrece,1609 Knit,1,rapeoflucrece,1609 meaning,1,rapeoflucrece,1609 register,1,rapeoflucrece,1609 incur,1,rapeoflucrece,1609 waved,1,rapeoflucrece,1609 comfort,1,rapeoflucrece,1609 grisly,1,rapeoflucrece,1609 Answer'd,1,rapeoflucrece,1609 marcheth,1,rapeoflucrece,1609 fate,1,rapeoflucrece,1609 observance,1,rapeoflucrece,1609 band,1,rapeoflucrece,1609 'Well,1,rapeoflucrece,1609 invasion,1,rapeoflucrece,1609 plaits,1,rapeoflucrece,1609 flames,1,rapeoflucrece,1609 balm,1,rapeoflucrece,1609 bedrid,1,rapeoflucrece,1609 annexed,1,rapeoflucrece,1609 'chaste',1,rapeoflucrece,1609 will's,1,rapeoflucrece,1609 wings',1,rapeoflucrece,1609 tame,1,rapeoflucrece,1609 subjection,1,rapeoflucrece,1609 insulting,1,rapeoflucrece,1609 determining,1,rapeoflucrece,1609 evidence,1,rapeoflucrece,1609 dismay'd,1,rapeoflucrece,1609 drinks,1,rapeoflucrece,1609 feeble,1,rapeoflucrece,1609 mischance,1,rapeoflucrece,1609 author,1,rapeoflucrece,1609 ache,1,rapeoflucrece,1609 coat,1,rapeoflucrece,1609 constant,1,rapeoflucrece,1609 griping,1,rapeoflucrece,1609 inflamed,1,rapeoflucrece,1609 welcomed,1,rapeoflucrece,1609 arm'd,1,rapeoflucrece,1609 mediators,1,rapeoflucrece,1609 fruitful,1,rapeoflucrece,1609 aloft,1,rapeoflucrece,1609 drumming,1,rapeoflucrece,1609 Earl,1,rapeoflucrece,1609 convey,1,rapeoflucrece,1609 comprehends,1,rapeoflucrece,1609 perish,1,rapeoflucrece,1609 folds,1,rapeoflucrece,1609 Worse,1,rapeoflucrece,1609 Mingling,1,rapeoflucrece,1609 Griped,1,rapeoflucrece,1609 carry,1,rapeoflucrece,1609 torment,1,rapeoflucrece,1609 mothers,1,rapeoflucrece,1609 reproof,1,rapeoflucrece,1609 Rather,1,rapeoflucrece,1609 alms,1,rapeoflucrece,1609 greets,1,rapeoflucrece,1609 accomplishment,1,rapeoflucrece,1609 'Woe,1,rapeoflucrece,1609 thaw'd,1,rapeoflucrece,1609 eyeballs,1,rapeoflucrece,1609 holds,1,rapeoflucrece,1609 foresight,1,rapeoflucrece,1609 concludes,1,rapeoflucrece,1609 swears,1,rapeoflucrece,1609 aspects,1,rapeoflucrece,1609 compacted,1,rapeoflucrece,1609 dexterity,1,rapeoflucrece,1609 melody,1,rapeoflucrece,1609 hole,1,rapeoflucrece,1609 Truth,1,rapeoflucrece,1609 green,1,rapeoflucrece,1609 outcry,1,rapeoflucrece,1609 hollow,1,rapeoflucrece,1609 lackey,1,rapeoflucrece,1609 giddy,1,rapeoflucrece,1609 partially,1,rapeoflucrece,1609 devour,1,rapeoflucrece,1609 follows,1,rapeoflucrece,1609 gaping,1,rapeoflucrece,1609 counterfeit,1,rapeoflucrece,1609 dimpled,1,rapeoflucrece,1609 smear,1,rapeoflucrece,1609 schools,1,rapeoflucrece,1609 peerless,1,rapeoflucrece,1609 family,1,rapeoflucrece,1609 cowards,1,rapeoflucrece,1609 sunder,1,rapeoflucrece,1609 argument,1,rapeoflucrece,1609 untuned,1,rapeoflucrece,1609 assist,1,rapeoflucrece,1609 tire,1,rapeoflucrece,1609 arrive,1,rapeoflucrece,1609 seeded,1,rapeoflucrece,1609 liver,1,rapeoflucrece,1609 streets,1,rapeoflucrece,1609 besiege,1,rapeoflucrece,1609 state',1,rapeoflucrece,1609 waning,1,rapeoflucrece,1609 virtues,1,rapeoflucrece,1609 sparrows',1,rapeoflucrece,1609 smilingly,1,rapeoflucrece,1609 seal,1,rapeoflucrece,1609 falsehood,1,rapeoflucrece,1609 'Fair,1,rapeoflucrece,1609 Lends,1,rapeoflucrece,1609 aspire,1,rapeoflucrece,1609 Anon,1,rapeoflucrece,1609 master'd,1,rapeoflucrece,1609 satisfied,1,rapeoflucrece,1609 thronging,1,rapeoflucrece,1609 beset,1,rapeoflucrece,1609 hunt,1,rapeoflucrece,1609 glittering,1,rapeoflucrece,1609 disdained,1,rapeoflucrece,1609 vexation,1,rapeoflucrece,1609 recall'd,1,rapeoflucrece,1609 contents,1,rapeoflucrece,1609 dishonoured,1,rapeoflucrece,1609 wasting,1,rapeoflucrece,1609 Narcissus,1,rapeoflucrece,1609 SHAKESPEARE,1,rapeoflucrece,1609 chastity's,1,rapeoflucrece,1609 sours,1,rapeoflucrece,1609 lighteth,1,rapeoflucrece,1609 winged,1,rapeoflucrece,1609 drenched,1,rapeoflucrece,1609 favour'd,1,rapeoflucrece,1609 Beaten,1,rapeoflucrece,1609 blade,1,rapeoflucrece,1609 lot,1,rapeoflucrece,1609 fault's,1,rapeoflucrece,1609 adorn,1,rapeoflucrece,1609 remission,1,rapeoflucrece,1609 babe,1,rapeoflucrece,1609 sinking,1,rapeoflucrece,1609 kingdom,1,rapeoflucrece,1609 Wildly,1,rapeoflucrece,1609 decree,1,rapeoflucrece,1609 publish,1,rapeoflucrece,1609 crept,1,rapeoflucrece,1609 offspring,1,rapeoflucrece,1609 'Out,1,rapeoflucrece,1609 oppress'd,1,rapeoflucrece,1609 pronounced,1,rapeoflucrece,1609 Nestor,1,rapeoflucrece,1609 aught,1,rapeoflucrece,1609 feathers,1,rapeoflucrece,1609 singular,1,rapeoflucrece,1609 rock'd,1,rapeoflucrece,1609 fights,1,rapeoflucrece,1609 skill'd,1,rapeoflucrece,1609 adore,1,rapeoflucrece,1609 overslipp'd,1,rapeoflucrece,1609 harmful,1,rapeoflucrece,1609 dividing,1,rapeoflucrece,1609 meantime,1,rapeoflucrece,1609 coy,1,rapeoflucrece,1609 conclude,1,rapeoflucrece,1609 pricks,1,rapeoflucrece,1609 tells,1,rapeoflucrece,1609 Unwholesome,1,rapeoflucrece,1609 vehement,1,rapeoflucrece,1609 cost,1,rapeoflucrece,1609 shapes,1,rapeoflucrece,1609 render,1,rapeoflucrece,1609 tidings,1,rapeoflucrece,1609 shapen,1,rapeoflucrece,1609 Patience,1,rapeoflucrece,1609 battle,1,rapeoflucrece,1609 thereof,1,rapeoflucrece,1609 hound,1,rapeoflucrece,1609 debated,1,rapeoflucrece,1609 Debate,1,rapeoflucrece,1609 forgeries,1,rapeoflucrece,1609 pattern'd,1,rapeoflucrece,1609 Wilder,1,rapeoflucrece,1609 mix'd,1,rapeoflucrece,1609 crest,1,rapeoflucrece,1609 aspiring,1,rapeoflucrece,1609 thereon,1,rapeoflucrece,1609 Speaking,1,rapeoflucrece,1609 corn,1,rapeoflucrece,1609 replied,1,rapeoflucrece,1609 marking,1,rapeoflucrece,1609 cabinet,1,rapeoflucrece,1609 espoused,1,rapeoflucrece,1609 secrecy,1,rapeoflucrece,1609 audaciously,1,rapeoflucrece,1609 sacred,1,rapeoflucrece,1609 threshold,1,rapeoflucrece,1609 expecting,1,rapeoflucrece,1609 confirm'd,1,rapeoflucrece,1609 sportive,1,rapeoflucrece,1609 person,1,rapeoflucrece,1609 heavenly,1,rapeoflucrece,1609 blazed,1,rapeoflucrece,1609 excessive,1,rapeoflucrece,1609 purl'd,1,rapeoflucrece,1609 income,1,rapeoflucrece,1609 nights,1,rapeoflucrece,1609 Know,1,rapeoflucrece,1609 amending,1,rapeoflucrece,1609 wretches,1,rapeoflucrece,1609 greedy,1,rapeoflucrece,1609 revelling,1,rapeoflucrece,1609 curtain,1,rapeoflucrece,1609 heedfully,1,rapeoflucrece,1609 replies,1,rapeoflucrece,1609 suffice,1,rapeoflucrece,1609 prayer,1,rapeoflucrece,1609 remove,1,rapeoflucrece,1609 Chastity,1,rapeoflucrece,1609 trances,1,rapeoflucrece,1609 according,1,rapeoflucrece,1609 chastest,1,rapeoflucrece,1609 mirror,1,rapeoflucrece,1609 remorseless,1,rapeoflucrece,1609 sell,1,rapeoflucrece,1609 penetrable,1,rapeoflucrece,1609 vulture,1,rapeoflucrece,1609 balk,1,rapeoflucrece,1609 see'st,1,rapeoflucrece,1609 predecease,1,rapeoflucrece,1609 leg,1,rapeoflucrece,1609 'Were,1,rapeoflucrece,1609 led,1,rapeoflucrece,1609 rainbows,1,rapeoflucrece,1609 roaring,1,rapeoflucrece,1609 folded,1,rapeoflucrece,1609 entomb,1,rapeoflucrece,1609 alas,1,rapeoflucrece,1609 adds,1,rapeoflucrece,1609 grieves,1,rapeoflucrece,1609 sent,1,rapeoflucrece,1609 talk'd,1,rapeoflucrece,1609 converts,1,rapeoflucrece,1609 deceive,1,rapeoflucrece,1609 Feast,1,rapeoflucrece,1609 herald,1,rapeoflucrece,1609 seized,1,rapeoflucrece,1609 barren,1,rapeoflucrece,1609 fearing,1,rapeoflucrece,1609 cavils,1,rapeoflucrece,1609 suppliant's,1,rapeoflucrece,1609 allotted,1,rapeoflucrece,1609 blast,1,rapeoflucrece,1609 'your,1,rapeoflucrece,1609 convert,1,rapeoflucrece,1609 inflict,1,rapeoflucrece,1609 attendeth,1,rapeoflucrece,1609 black'st,1,rapeoflucrece,1609 champaign,1,rapeoflucrece,1609 couple,1,rapeoflucrece,1609 Outruns,1,rapeoflucrece,1609 crooked,1,rapeoflucrece,1609 glows,1,rapeoflucrece,1609 pipes,1,rapeoflucrece,1609 first,1,rapeoflucrece,1609 nature's,1,rapeoflucrece,1609 stormy,1,rapeoflucrece,1609 principal,1,rapeoflucrece,1609 Immaculate,1,rapeoflucrece,1609 credulous,1,rapeoflucrece,1609 lordship's,1,rapeoflucrece,1609 endured,1,rapeoflucrece,1609 descant'st,1,rapeoflucrece,1609 faltering,1,rapeoflucrece,1609 servants,1,rapeoflucrece,1609 fowls,1,rapeoflucrece,1609 perpetually,1,rapeoflucrece,1609 slumber,1,rapeoflucrece,1609 seated,1,rapeoflucrece,1609 imagination,1,rapeoflucrece,1609 petty,1,rapeoflucrece,1609 write,1,rapeoflucrece,1609 commits,1,rapeoflucrece,1609 evening,1,rapeoflucrece,1609 barr'd,1,rapeoflucrece,1609 lagging,1,rapeoflucrece,1609 reedy,1,rapeoflucrece,1609 heinous,1,rapeoflucrece,1609 panteth,1,rapeoflucrece,1609 revealed,1,rapeoflucrece,1609 comfortable,1,rapeoflucrece,1609 afeard,1,rapeoflucrece,1609 conduct,1,rapeoflucrece,1609 hostess,1,rapeoflucrece,1609 sells,1,rapeoflucrece,1609 smiling,1,rapeoflucrece,1609 trustless,1,rapeoflucrece,1609 azure,1,rapeoflucrece,1609 vices,1,rapeoflucrece,1609 gust,1,rapeoflucrece,1609 unfelt,1,rapeoflucrece,1609 gush,1,rapeoflucrece,1609 Grieving,1,rapeoflucrece,1609 'Her,1,rapeoflucrece,1609 Paris,1,rapeoflucrece,1609 'Hast,1,rapeoflucrece,1609 Continuance,1,rapeoflucrece,1609 Wounding,1,rapeoflucrece,1609 enforcement,1,rapeoflucrece,1609 'Make,1,rapeoflucrece,1609 warlike,1,rapeoflucrece,1609 defaced,1,rapeoflucrece,1609 dealing,1,rapeoflucrece,1609 island,1,rapeoflucrece,1609 swimmer,1,rapeoflucrece,1609 renews,1,rapeoflucrece,1609 lofty,1,rapeoflucrece,1609 vents,1,rapeoflucrece,1609 devours,1,rapeoflucrece,1609 wickedly,1,rapeoflucrece,1609 evils,1,rapeoflucrece,1609 rights,1,rapeoflucrece,1609 Before,1,rapeoflucrece,1609 intending,1,rapeoflucrece,1609 lectures,1,rapeoflucrece,1609 scornfully,1,rapeoflucrece,1609 'Mine,1,rapeoflucrece,1609 burns,1,rapeoflucrece,1609 whiter,1,rapeoflucrece,1609 murder's,1,rapeoflucrece,1609 intituled,1,rapeoflucrece,1609 shivered,1,rapeoflucrece,1609 pleasant,1,rapeoflucrece,1609 conjures,1,rapeoflucrece,1609 assuage,1,rapeoflucrece,1609 Gnats,1,rapeoflucrece,1609 limit,1,rapeoflucrece,1609 ladies,1,rapeoflucrece,1609 debtor,1,rapeoflucrece,1609 body's,1,rapeoflucrece,1609 recreant,1,rapeoflucrece,1609 Basely,1,rapeoflucrece,1609 ravished,1,rapeoflucrece,1609 Met,1,rapeoflucrece,1609 Great,1,rapeoflucrece,1609 debating,1,rapeoflucrece,1609 extolled,1,rapeoflucrece,1609 Junius,1,rapeoflucrece,1609 Away,1,rapeoflucrece,1609 'Had,1,rapeoflucrece,1609 fashion,1,rapeoflucrece,1609 uncleanness,1,rapeoflucrece,1609 hastily,1,rapeoflucrece,1609 went',1,rapeoflucrece,1609 Tears,1,rapeoflucrece,1609 across,1,rapeoflucrece,1609 ransack'd,1,rapeoflucrece,1609 remaining,1,rapeoflucrece,1609 'his,1,rapeoflucrece,1609 marigolds,1,rapeoflucrece,1609 Orpheus,1,rapeoflucrece,1609 banner,1,rapeoflucrece,1609 'Madam,1,rapeoflucrece,1609 physic,1,rapeoflucrece,1609 pages,1,rapeoflucrece,1609 marriage,1,rapeoflucrece,1609 whiles,1,rapeoflucrece,1609 sometimes,1,rapeoflucrece,1609 sporting,1,rapeoflucrece,1609 putrified,1,rapeoflucrece,1609 lengthened,1,rapeoflucrece,1609 sepulchred,1,rapeoflucrece,1609 fraud,1,rapeoflucrece,1609 nativity,1,rapeoflucrece,1609 unseasonable,1,rapeoflucrece,1609 vestal,1,rapeoflucrece,1609 gulf,1,rapeoflucrece,1609 servitors,1,rapeoflucrece,1609 fleeting,1,rapeoflucrece,1609 Mar,1,rapeoflucrece,1609 spill,1,rapeoflucrece,1609 unbent,1,rapeoflucrece,1609 unwisely,1,rapeoflucrece,1609 eastern,1,rapeoflucrece,1609 limed,1,rapeoflucrece,1609 adjunct,1,rapeoflucrece,1609 Rolling,1,rapeoflucrece,1609 Charging,1,rapeoflucrece,1609 withdrew,1,rapeoflucrece,1609 dishonour'd,1,rapeoflucrece,1609 brooks,1,rapeoflucrece,1609 seemed,1,rapeoflucrece,1609 muffled,1,rapeoflucrece,1609 peer,1,rapeoflucrece,1609 Without,1,rapeoflucrece,1609 jade,1,rapeoflucrece,1609 shelves,1,rapeoflucrece,1609 list,1,rapeoflucrece,1609 human,1,rapeoflucrece,1609 April,1,rapeoflucrece,1609 Disdain,1,rapeoflucrece,1609 apologies,1,rapeoflucrece,1609 ragged,1,rapeoflucrece,1609 strange,1,rapeoflucrece,1609 venge,1,rapeoflucrece,1609 cell,1,rapeoflucrece,1609 'he',1,rapeoflucrece,1609 Justice,1,rapeoflucrece,1609 content,1,rapeoflucrece,1609 urged,1,rapeoflucrece,1609 leading,1,rapeoflucrece,1609 mot,1,rapeoflucrece,1609 simple,1,rapeoflucrece,1609 weasels,1,rapeoflucrece,1609 entrance,1,rapeoflucrece,1609 smarts,1,rapeoflucrece,1609 Teaching,1,rapeoflucrece,1609 numbers,1,rapeoflucrece,1609 widow,1,rapeoflucrece,1609 shady,1,rapeoflucrece,1609 swounds,1,rapeoflucrece,1609 painter's,1,rapeoflucrece,1609 payment,1,rapeoflucrece,1609 moisten'd,1,rapeoflucrece,1609 Valerius,1,rapeoflucrece,1609 strengthless,1,rapeoflucrece,1609 lain,1,rapeoflucrece,1609 dash,1,rapeoflucrece,1609 needeth,1,rapeoflucrece,1609 wounding,1,rapeoflucrece,1609 pattern,1,rapeoflucrece,1609 doe,1,rapeoflucrece,1609 dog,1,rapeoflucrece,1609 Brand,1,rapeoflucrece,1609 remain'd,1,rapeoflucrece,1609 oversee,1,rapeoflucrece,1609 honour'd,1,rapeoflucrece,1609 pelt,1,rapeoflucrece,1609 mud,1,rapeoflucrece,1609 swallow,1,rapeoflucrece,1609 honour's,1,rapeoflucrece,1609 smother'st,1,rapeoflucrece,1609 wail'd,1,rapeoflucrece,1609 Dim,1,rapeoflucrece,1609 Lest,1,rapeoflucrece,1609 scalps,1,rapeoflucrece,1609 taught'st,1,rapeoflucrece,1609 puddle's,1,rapeoflucrece,1609 embers,1,rapeoflucrece,1609 due,1,rapeoflucrece,1609 ensues,1,rapeoflucrece,1609 weight,1,rapeoflucrece,1609 sudden,1,rapeoflucrece,1609 rocky,1,rapeoflucrece,1609 catch,1,rapeoflucrece,1609 land,1,rapeoflucrece,1609 pens,1,rapeoflucrece,1609 lank,1,rapeoflucrece,1609 privily,1,rapeoflucrece,1609 toy,1,rapeoflucrece,1609 hoping,1,rapeoflucrece,1609 rocks,1,rapeoflucrece,1609 another's,1,rapeoflucrece,1609 hotly,1,rapeoflucrece,1609 fellowship,1,rapeoflucrece,1609 transgressed,1,rapeoflucrece,1609 court'sies,1,rapeoflucrece,1609 'Such,1,rapeoflucrece,1609 Threatening,1,rapeoflucrece,1609 lame,1,rapeoflucrece,1609 reverend,1,rapeoflucrece,1609 months,1,rapeoflucrece,1609 Until,1,rapeoflucrece,1609 success,1,rapeoflucrece,1609 leap'd,1,rapeoflucrece,1609 shift,1,rapeoflucrece,1609 tie,1,rapeoflucrece,1609 shake,1,rapeoflucrece,1609 guests,1,rapeoflucrece,1609 physician,1,rapeoflucrece,1609 Teach,1,rapeoflucrece,1609 dank,1,rapeoflucrece,1609 'Awake,1,rapeoflucrece,1609 Mud,1,rapeoflucrece,1609 Left,1,rapeoflucrece,1609 flows,1,rapeoflucrece,1609 ambitious,1,rapeoflucrece,1609 record,1,rapeoflucrece,1609 fence,1,rapeoflucrece,1609 frail,1,rapeoflucrece,1609 Affection,1,rapeoflucrece,1609 smell,1,rapeoflucrece,1609 pirates,1,rapeoflucrece,1609 hospitality,1,rapeoflucrece,1609 dale,1,rapeoflucrece,1609 'Have,1,rapeoflucrece,1609 convertite,1,rapeoflucrece,1609 'That,1,rapeoflucrece,1609 drown'd,1,rapeoflucrece,1609 boundless,1,rapeoflucrece,1609 jealousy,1,rapeoflucrece,1609 Hateful,1,rapeoflucrece,1609 mourner,1,rapeoflucrece,1609 Unmask,1,rapeoflucrece,1609 obtaining,1,rapeoflucrece,1609 Saying,1,rapeoflucrece,1609 princess,1,rapeoflucrece,1609 FROM,1,rapeoflucrece,1609 Devours,1,rapeoflucrece,1609 spirit,1,rapeoflucrece,1609 toads,1,rapeoflucrece,1609 inveigh,1,rapeoflucrece,1609 ten,1,rapeoflucrece,1609 remorse,1,rapeoflucrece,1609 spectacle,1,rapeoflucrece,1609 False,1,rapeoflucrece,1609 cannon,1,rapeoflucrece,1609 Smoking,1,rapeoflucrece,1609 pineth,1,rapeoflucrece,1609 woman,1,rapeoflucrece,1609 parley,1,rapeoflucrece,1609 sneaking,1,rapeoflucrece,1609 increaseful,1,rapeoflucrece,1609 bateless,1,rapeoflucrece,1609 obedience,1,rapeoflucrece,1609 oaths,1,rapeoflucrece,1609 flattering,1,rapeoflucrece,1609 avaunt,1,rapeoflucrece,1609 'Tarquin',1,rapeoflucrece,1609 throng'd,1,rapeoflucrece,1609 Betray'd,1,rapeoflucrece,1609 tread,1,rapeoflucrece,1609 bewitch'd,1,rapeoflucrece,1609 unsounded,1,rapeoflucrece,1609 coped,1,rapeoflucrece,1609 subjects',1,rapeoflucrece,1609 breaths,1,rapeoflucrece,1609 Baron,1,rapeoflucrece,1609 coin'd,1,rapeoflucrece,1609 sobbing,1,rapeoflucrece,1609 chivalry,1,rapeoflucrece,1609 crown,1,rapeoflucrece,1609 sands,1,rapeoflucrece,1609 dallied,1,rapeoflucrece,1609 wouldst,1,rapeoflucrece,1609 esteemed,1,rapeoflucrece,1609 turn'd,1,rapeoflucrece,1609 Huge,1,rapeoflucrece,1609 'They,1,rapeoflucrece,1609 cedar's,1,rapeoflucrece,1609 steadfast,1,rapeoflucrece,1609 vanish'd,1,rapeoflucrece,1609 fortunes,1,rapeoflucrece,1609 summer,1,rapeoflucrece,1609 forgery,1,rapeoflucrece,1609 daughters,1,rapeoflucrece,1609 grant'st,1,rapeoflucrece,1609 unnoted,1,rapeoflucrece,1609 surmise,2,rapeoflucrece,1609 pleading,2,rapeoflucrece,1609 meet,2,rapeoflucrece,1609 lamentable,2,rapeoflucrece,1609 Sextus,2,rapeoflucrece,1609 darest,2,rapeoflucrece,1609 reputation,2,rapeoflucrece,1609 Lucretia,2,rapeoflucrece,1609 motion,2,rapeoflucrece,1609 yielding,2,rapeoflucrece,1609 Romans,2,rapeoflucrece,1609 tremble,2,rapeoflucrece,1609 wicked,2,rapeoflucrece,1609 peace,2,rapeoflucrece,1609 express,2,rapeoflucrece,1609 speedy,2,rapeoflucrece,1609 clears,2,rapeoflucrece,1609 poisonous,2,rapeoflucrece,1609 pray,2,rapeoflucrece,1609 Must,2,rapeoflucrece,1609 groan,2,rapeoflucrece,1609 imitate,2,rapeoflucrece,1609 violent,2,rapeoflucrece,1609 languishment,2,rapeoflucrece,1609 coral,2,rapeoflucrece,1609 Black,2,rapeoflucrece,1609 Whereat,2,rapeoflucrece,1609 prisoner,2,rapeoflucrece,1609 honourable,2,rapeoflucrece,1609 Simois',2,rapeoflucrece,1609 fury,2,rapeoflucrece,1609 declined,2,rapeoflucrece,1609 appeal,2,rapeoflucrece,1609 withal,2,rapeoflucrece,1609 signs,2,rapeoflucrece,1609 nought,2,rapeoflucrece,1609 calls,2,rapeoflucrece,1609 press,2,rapeoflucrece,1609 heedful,2,rapeoflucrece,1609 stamp'd,2,rapeoflucrece,1609 trust,2,rapeoflucrece,1609 Would,2,rapeoflucrece,1609 wither,2,rapeoflucrece,1609 care,2,rapeoflucrece,1609 mute,2,rapeoflucrece,1609 Night's,2,rapeoflucrece,1609 early,2,rapeoflucrece,1609 softly,2,rapeoflucrece,1609 breach,2,rapeoflucrece,1609 plague,2,rapeoflucrece,1609 chin,2,rapeoflucrece,1609 reign,2,rapeoflucrece,1609 charge,2,rapeoflucrece,1609 sons,2,rapeoflucrece,1609 surfeit,2,rapeoflucrece,1609 amazed,2,rapeoflucrece,1609 spied,2,rapeoflucrece,1609 draw,2,rapeoflucrece,1609 camp,2,rapeoflucrece,1609 spies,2,rapeoflucrece,1609 pine,2,rapeoflucrece,1609 'Yet,2,rapeoflucrece,1609 confusion,2,rapeoflucrece,1609 grove,2,rapeoflucrece,1609 sap,2,rapeoflucrece,1609 betake,2,rapeoflucrece,1609 sorrows,2,rapeoflucrece,1609 pilgrimage,2,rapeoflucrece,1609 lily,2,rapeoflucrece,1609 proceeds,2,rapeoflucrece,1609 plight,2,rapeoflucrece,1609 Only,2,rapeoflucrece,1609 cheek,2,rapeoflucrece,1609 policy,2,rapeoflucrece,1609 calm,2,rapeoflucrece,1609 gross,2,rapeoflucrece,1609 paper,2,rapeoflucrece,1609 breaks,2,rapeoflucrece,1609 Yield,2,rapeoflucrece,1609 finding,2,rapeoflucrece,1609 teach,2,rapeoflucrece,1609 soft,2,rapeoflucrece,1609 noise,2,rapeoflucrece,1609 wail,2,rapeoflucrece,1609 something,2,rapeoflucrece,1609 Perchance,2,rapeoflucrece,1609 pillow,2,rapeoflucrece,1609 shamed,2,rapeoflucrece,1609 hereafter,2,rapeoflucrece,1609 suns,2,rapeoflucrece,1609 sheathed,2,rapeoflucrece,1609 march'd,2,rapeoflucrece,1609 sing'st,2,rapeoflucrece,1609 stands,2,rapeoflucrece,1609 warrant,2,rapeoflucrece,1609 aged,2,rapeoflucrece,1609 eager,2,rapeoflucrece,1609 sustaining,2,rapeoflucrece,1609 wall,2,rapeoflucrece,1609 virtuous,2,rapeoflucrece,1609 'When,2,rapeoflucrece,1609 slaughter,2,rapeoflucrece,1609 deceit,2,rapeoflucrece,1609 suit,2,rapeoflucrece,1609 beasts,2,rapeoflucrece,1609 embrace,2,rapeoflucrece,1609 worth,2,rapeoflucrece,1609 Himself,2,rapeoflucrece,1609 children's,2,rapeoflucrece,1609 winds,2,rapeoflucrece,1609 melting,2,rapeoflucrece,1609 pollute,2,rapeoflucrece,1609 stern,2,rapeoflucrece,1609 livery,2,rapeoflucrece,1609 within,2,rapeoflucrece,1609 either's,2,rapeoflucrece,1609 mother,2,rapeoflucrece,1609 worst,2,rapeoflucrece,1609 heavens,2,rapeoflucrece,1609 piece,2,rapeoflucrece,1609 turn,2,rapeoflucrece,1609 There,2,rapeoflucrece,1609 chased,2,rapeoflucrece,1609 worlds,2,rapeoflucrece,1609 habit,2,rapeoflucrece,1609 quake,2,rapeoflucrece,1609 seeks,2,rapeoflucrece,1609 cherish,2,rapeoflucrece,1609 latch,2,rapeoflucrece,1609 Wherein,2,rapeoflucrece,1609 humble,2,rapeoflucrece,1609 feel,2,rapeoflucrece,1609 slavish,2,rapeoflucrece,1609 circled,2,rapeoflucrece,1609 flaming,2,rapeoflucrece,1609 claim,2,rapeoflucrece,1609 brief,2,rapeoflucrece,1609 sword,2,rapeoflucrece,1609 protestation,2,rapeoflucrece,1609 others,2,rapeoflucrece,1609 wink,2,rapeoflucrece,1609 prevent,2,rapeoflucrece,1609 flesh,2,rapeoflucrece,1609 attired,2,rapeoflucrece,1609 sack'd,2,rapeoflucrece,1609 mirth,2,rapeoflucrece,1609 length,2,rapeoflucrece,1609 hence,2,rapeoflucrece,1609 dearer,2,rapeoflucrece,1609 wipe,2,rapeoflucrece,1609 heaved,2,rapeoflucrece,1609 wise,2,rapeoflucrece,1609 world's,2,rapeoflucrece,1609 beating,2,rapeoflucrece,1609 voice,2,rapeoflucrece,1609 distress,2,rapeoflucrece,1609 steel,2,rapeoflucrece,1609 wast,2,rapeoflucrece,1609 tent,2,rapeoflucrece,1609 conquer,2,rapeoflucrece,1609 Do,2,rapeoflucrece,1609 grief's,2,rapeoflucrece,1609 slaves,2,rapeoflucrece,1609 orator,2,rapeoflucrece,1609 sigh,2,rapeoflucrece,1609 streams,2,rapeoflucrece,1609 oratory,2,rapeoflucrece,1609 perfection,2,rapeoflucrece,1609 spoil,2,rapeoflucrece,1609 Reproach,2,rapeoflucrece,1609 wronged,2,rapeoflucrece,1609 mutiny,2,rapeoflucrece,1609 scarce,2,rapeoflucrece,1609 bow,2,rapeoflucrece,1609 blown,2,rapeoflucrece,1609 smile,2,rapeoflucrece,1609 Having,2,rapeoflucrece,1609 spots,2,rapeoflucrece,1609 imagined,2,rapeoflucrece,1609 siege,2,rapeoflucrece,1609 pays,2,rapeoflucrece,1609 Philomel,2,rapeoflucrece,1609 eternity,2,rapeoflucrece,1609 turrets,2,rapeoflucrece,1609 ravishment,2,rapeoflucrece,1609 star,2,rapeoflucrece,1609 contending,2,rapeoflucrece,1609 begun,2,rapeoflucrece,1609 hie,2,rapeoflucrece,1609 since,2,rapeoflucrece,1609 changed,2,rapeoflucrece,1609 piteous,2,rapeoflucrece,1609 bee,2,rapeoflucrece,1609 kinds,2,rapeoflucrece,1609 sovereignty,2,rapeoflucrece,1609 'With,2,rapeoflucrece,1609 ease,2,rapeoflucrece,1609 denial,2,rapeoflucrece,1609 glorious,2,rapeoflucrece,1609 heads,2,rapeoflucrece,1609 sire,2,rapeoflucrece,1609 quiet,2,rapeoflucrece,1609 temple,2,rapeoflucrece,1609 corrupted,2,rapeoflucrece,1609 theft,2,rapeoflucrece,1609 god,2,rapeoflucrece,1609 best,2,rapeoflucrece,1609 gold,2,rapeoflucrece,1609 dolour,2,rapeoflucrece,1609 morning's,2,rapeoflucrece,1609 rebel,2,rapeoflucrece,1609 control,2,rapeoflucrece,1609 children,2,rapeoflucrece,1609 struck,2,rapeoflucrece,1609 attention,2,rapeoflucrece,1609 gaze,2,rapeoflucrece,1609 shadow,2,rapeoflucrece,1609 cancell'd,2,rapeoflucrece,1609 monuments,2,rapeoflucrece,1609 suddenly,2,rapeoflucrece,1609 put,2,rapeoflucrece,1609 jewel,2,rapeoflucrece,1609 just,2,rapeoflucrece,1609 'Shall,2,rapeoflucrece,1609 tedious,2,rapeoflucrece,1609 conquest,2,rapeoflucrece,1609 bud,2,rapeoflucrece,1609 vassal,2,rapeoflucrece,1609 been,2,rapeoflucrece,1609 About,2,rapeoflucrece,1609 admired,2,rapeoflucrece,1609 ensue,2,rapeoflucrece,1609 gate,2,rapeoflucrece,1609 sing,2,rapeoflucrece,1609 moody,2,rapeoflucrece,1609 fulfil,2,rapeoflucrece,1609 misty,2,rapeoflucrece,1609 Both,2,rapeoflucrece,1609 jointly,2,rapeoflucrece,1609 noblemen,2,rapeoflucrece,1609 childish,2,rapeoflucrece,1609 government,2,rapeoflucrece,1609 concealing,2,rapeoflucrece,1609 stay'd,2,rapeoflucrece,1609 mood,2,rapeoflucrece,1609 gage,2,rapeoflucrece,1609 betray,2,rapeoflucrece,1609 sage,2,rapeoflucrece,1609 painting,2,rapeoflucrece,1609 sable,2,rapeoflucrece,1609 debt,2,rapeoflucrece,1609 wreck,2,rapeoflucrece,1609 stone,2,rapeoflucrece,1609 any,2,rapeoflucrece,1609 gait,2,rapeoflucrece,1609 victory,2,rapeoflucrece,1609 engirt,2,rapeoflucrece,1609 pluck'd,2,rapeoflucrece,1609 hands,2,rapeoflucrece,1609 lends,2,rapeoflucrece,1609 makest,2,rapeoflucrece,1609 manner,2,rapeoflucrece,1609 crosses,2,rapeoflucrece,1609 pursuit,2,rapeoflucrece,1609 committed,2,rapeoflucrece,1609 lo,2,rapeoflucrece,1609 strain,2,rapeoflucrece,1609 wrinkles,2,rapeoflucrece,1609 sometime,2,rapeoflucrece,1609 carved,2,rapeoflucrece,1609 offences,2,rapeoflucrece,1609 moon,2,rapeoflucrece,1609 loss,2,rapeoflucrece,1609 beholding,2,rapeoflucrece,1609 Grief,2,rapeoflucrece,1609 less,2,rapeoflucrece,1609 spend,2,rapeoflucrece,1609 lock'd,2,rapeoflucrece,1609 forgot,2,rapeoflucrece,1609 clamours,2,rapeoflucrece,1609 men's,2,rapeoflucrece,1609 load,2,rapeoflucrece,1609 murder'st,2,rapeoflucrece,1609 scratch,2,rapeoflucrece,1609 outward,2,rapeoflucrece,1609 us,2,rapeoflucrece,1609 lewd,2,rapeoflucrece,1609 welcome,2,rapeoflucrece,1609 senseless,2,rapeoflucrece,1609 fowl,2,rapeoflucrece,1609 impression,2,rapeoflucrece,1609 More,2,rapeoflucrece,1609 'can,2,rapeoflucrece,1609 weeds,2,rapeoflucrece,1609 rifled,2,rapeoflucrece,1609 hang,2,rapeoflucrece,1609 shun,2,rapeoflucrece,1609 mighty,2,rapeoflucrece,1609 praise,2,rapeoflucrece,1609 spotted,2,rapeoflucrece,1609 rudely,2,rapeoflucrece,1609 Ulysses,2,rapeoflucrece,1609 Under,2,rapeoflucrece,1609 heartless,2,rapeoflucrece,1609 'Dear,2,rapeoflucrece,1609 abhor,2,rapeoflucrece,1609 fort,2,rapeoflucrece,1609 nightly,2,rapeoflucrece,1609 harder,2,rapeoflucrece,1609 urgeth,2,rapeoflucrece,1609 pair,2,rapeoflucrece,1609 heaviness,2,rapeoflucrece,1609 shakes,2,rapeoflucrece,1609 twain,2,rapeoflucrece,1609 fool,2,rapeoflucrece,1609 prepares,2,rapeoflucrece,1609 object,2,rapeoflucrece,1609 girl,2,rapeoflucrece,1609 fresh,2,rapeoflucrece,1609 maiden,2,rapeoflucrece,1609 ebbs,2,rapeoflucrece,1609 fold,2,rapeoflucrece,1609 hive,2,rapeoflucrece,1609 chance,2,rapeoflucrece,1609 colour'd,2,rapeoflucrece,1609 fed,2,rapeoflucrece,1609 touch,2,rapeoflucrece,1609 sweetly,2,rapeoflucrece,1609 enemies,2,rapeoflucrece,1609 Stone,2,rapeoflucrece,1609 trial,2,rapeoflucrece,1609 guest,2,rapeoflucrece,1609 cipher,2,rapeoflucrece,1609 prays,2,rapeoflucrece,1609 change,2,rapeoflucrece,1609 moves,2,rapeoflucrece,1609 Into,2,rapeoflucrece,1609 borrow,2,rapeoflucrece,1609 justice,2,rapeoflucrece,1609 ashy,2,rapeoflucrece,1609 smother'd,2,rapeoflucrece,1609 breathes,2,rapeoflucrece,1609 Virtue,2,rapeoflucrece,1609 breathed,2,rapeoflucrece,1609 needle,2,rapeoflucrece,1609 couldst,2,rapeoflucrece,1609 built,2,rapeoflucrece,1609 note,2,rapeoflucrece,1609 rape,2,rapeoflucrece,1609 repose,2,rapeoflucrece,1609 midst,2,rapeoflucrece,1609 envy,2,rapeoflucrece,1609 marks,2,rapeoflucrece,1609 almost,2,rapeoflucrece,1609 wonder,2,rapeoflucrece,1609 peel'd,2,rapeoflucrece,1609 restless,2,rapeoflucrece,1609 scale,2,rapeoflucrece,1609 noon,2,rapeoflucrece,1609 rate,2,rapeoflucrece,1609 view'd,2,rapeoflucrece,1609 vapours,2,rapeoflucrece,1609 majesty,2,rapeoflucrece,1609 disgraced,2,rapeoflucrece,1609 tender,2,rapeoflucrece,1609 estate,2,rapeoflucrece,1609 scar,2,rapeoflucrece,1609 Collatinus',2,rapeoflucrece,1609 Love,2,rapeoflucrece,1609 dangers,2,rapeoflucrece,1609 wandering,2,rapeoflucrece,1609 chase,2,rapeoflucrece,1609 annoy,2,rapeoflucrece,1609 young,2,rapeoflucrece,1609 alter,2,rapeoflucrece,1609 Sin,2,rapeoflucrece,1609 charm,2,rapeoflucrece,1609 exiled,2,rapeoflucrece,1609 dares,2,rapeoflucrece,1609 accessary,2,rapeoflucrece,1609 several,2,rapeoflucrece,1609 powers,2,rapeoflucrece,1609 cloak,2,rapeoflucrece,1609 precious,2,rapeoflucrece,1609 discontent,2,rapeoflucrece,1609 Look,2,rapeoflucrece,1609 'He,2,rapeoflucrece,1609 other's,2,rapeoflucrece,1609 'If,2,rapeoflucrece,1609 bleeds,2,rapeoflucrece,1609 'It,2,rapeoflucrece,1609 plead,2,rapeoflucrece,1609 towers,2,rapeoflucrece,1609 beggar,2,rapeoflucrece,1609 misdeeds,2,rapeoflucrece,1609 ghastly,2,rapeoflucrece,1609 presently,2,rapeoflucrece,1609 acquit,2,rapeoflucrece,1609 comes,2,rapeoflucrece,1609 Tarquins,2,rapeoflucrece,1609 thick,2,rapeoflucrece,1609 issue,2,rapeoflucrece,1609 Trojan,2,rapeoflucrece,1609 greatest,2,rapeoflucrece,1609 painful,2,rapeoflucrece,1609 chide,2,rapeoflucrece,1609 heaven's,2,rapeoflucrece,1609 mist,2,rapeoflucrece,1609 higher,2,rapeoflucrece,1609 captive,2,rapeoflucrece,1609 feelingly,2,rapeoflucrece,1609 thievish,2,rapeoflucrece,1609 accompanied,2,rapeoflucrece,1609 borrow'd,2,rapeoflucrece,1609 impiety,2,rapeoflucrece,1609 mistress',2,rapeoflucrece,1609 possession,2,rapeoflucrece,1609 pause,2,rapeoflucrece,1609 winding,2,rapeoflucrece,1609 flies,2,rapeoflucrece,1609 salt,2,rapeoflucrece,1609 repentant,2,rapeoflucrece,1609 Deep,2,rapeoflucrece,1609 Begins,2,rapeoflucrece,1609 Sad,2,rapeoflucrece,1609 happiness,2,rapeoflucrece,1609 loving,2,rapeoflucrece,1609 moment,2,rapeoflucrece,1609 heard,2,rapeoflucrece,1609 flight,2,rapeoflucrece,1609 walls,2,rapeoflucrece,1609 death's,2,rapeoflucrece,1609 save,2,rapeoflucrece,1609 flint,2,rapeoflucrece,1609 dust,2,rapeoflucrece,1609 blasts,2,rapeoflucrece,1609 tunes,2,rapeoflucrece,1609 stage,2,rapeoflucrece,1609 Can,2,rapeoflucrece,1609 rise,2,rapeoflucrece,1609 heave,2,rapeoflucrece,1609 hopeless,2,rapeoflucrece,1609 stealeth,2,rapeoflucrece,1609 intent,2,rapeoflucrece,1609 ambition,2,rapeoflucrece,1609 bleed,2,rapeoflucrece,1609 found,2,rapeoflucrece,1609 blemish,2,rapeoflucrece,1609 supper,2,rapeoflucrece,1609 coming,2,rapeoflucrece,1609 complain,2,rapeoflucrece,1609 women's,2,rapeoflucrece,1609 cursed,2,rapeoflucrece,1609 survive,2,rapeoflucrece,1609 robb'd,2,rapeoflucrece,1609 fact,2,rapeoflucrece,1609 Bid,2,rapeoflucrece,1609 rotten,2,rapeoflucrece,1609 virtue's,2,rapeoflucrece,1609 killing,2,rapeoflucrece,1609 womb,2,rapeoflucrece,1609 owe,2,rapeoflucrece,1609 rail,2,rapeoflucrece,1609 disposition,2,rapeoflucrece,1609 yoke,2,rapeoflucrece,1609 wolf,2,rapeoflucrece,1609 lurk,2,rapeoflucrece,1609 serves,2,rapeoflucrece,1609 sober,2,rapeoflucrece,1609 ope,2,rapeoflucrece,1609 went,2,rapeoflucrece,1609 mightier,2,rapeoflucrece,1609 compare,2,rapeoflucrece,1609 dispersed,2,rapeoflucrece,1609 lustful,2,rapeoflucrece,1609 Many,2,rapeoflucrece,1609 judge,2,rapeoflucrece,1609 modesty,2,rapeoflucrece,1609 delays,2,rapeoflucrece,1609 saint,2,rapeoflucrece,1609 fortune,2,rapeoflucrece,1609 humour,2,rapeoflucrece,1609 worm,2,rapeoflucrece,1609 worn,2,rapeoflucrece,1609 wore,2,rapeoflucrece,1609 lodged,2,rapeoflucrece,1609 unjust,2,rapeoflucrece,1609 minute,2,rapeoflucrece,1609 fill,2,rapeoflucrece,1609 Imagine,2,rapeoflucrece,1609 bark,2,rapeoflucrece,1609 lordship,2,rapeoflucrece,1609 bare,2,rapeoflucrece,1609 host,2,rapeoflucrece,1609 unfold,2,rapeoflucrece,1609 poison'd,2,rapeoflucrece,1609 queen,2,rapeoflucrece,1609 madly,2,rapeoflucrece,1609 lived,2,rapeoflucrece,1609 bird,2,rapeoflucrece,1609 public,2,rapeoflucrece,1609 slanderous,2,rapeoflucrece,1609 kiss,2,rapeoflucrece,1609 creeps,2,rapeoflucrece,1609 soul's,2,rapeoflucrece,1609 coal,2,rapeoflucrece,1609 wrapp'd,2,rapeoflucrece,1609 holes,2,rapeoflucrece,1609 wild,2,rapeoflucrece,1609 sights,2,rapeoflucrece,1609 shoot,2,rapeoflucrece,1609 creep,2,rapeoflucrece,1609 shore,2,rapeoflucrece,1609 defect,2,rapeoflucrece,1609 honest,2,rapeoflucrece,1609 request,2,rapeoflucrece,1609 besieged,2,rapeoflucrece,1609 controll'd,2,rapeoflucrece,1609 winter,2,rapeoflucrece,1609 wondering,2,rapeoflucrece,1609 prayers,2,rapeoflucrece,1609 complaining,2,rapeoflucrece,1609 seat,2,rapeoflucrece,1609 sweat,2,rapeoflucrece,1609 captain,2,rapeoflucrece,1609 seem,2,rapeoflucrece,1609 defend,2,rapeoflucrece,1609 ended,2,rapeoflucrece,1609 look'd,2,rapeoflucrece,1609 wrack,2,rapeoflucrece,1609 others',2,rapeoflucrece,1609 peeping,2,rapeoflucrece,1609 period,2,rapeoflucrece,1609 liking,2,rapeoflucrece,1609 Mine,2,rapeoflucrece,1609 abomination,2,rapeoflucrece,1609 vassals,2,rapeoflucrece,1609 thrust,2,rapeoflucrece,1609 wearied,2,rapeoflucrece,1609 cry,2,rapeoflucrece,1609 house,2,rapeoflucrece,1609 affright,2,rapeoflucrece,1609 eyne,2,rapeoflucrece,1609 therein,2,rapeoflucrece,1609 huge,2,rapeoflucrece,1609 extremes,2,rapeoflucrece,1609 bankrupt,2,rapeoflucrece,1609 Self,2,rapeoflucrece,1609 together,2,rapeoflucrece,1609 season,2,rapeoflucrece,1609 hiding,2,rapeoflucrece,1609 attaint,2,rapeoflucrece,1609 merchant,2,rapeoflucrece,1609 gaining,2,rapeoflucrece,1609 seem'st,2,rapeoflucrece,1609 lie,2,rapeoflucrece,1609 lawn,2,rapeoflucrece,1609 threat,2,rapeoflucrece,1609 triumph,2,rapeoflucrece,1609 laws,2,rapeoflucrece,1609 storms,2,rapeoflucrece,1609 persuade,2,rapeoflucrece,1609 eat,2,rapeoflucrece,1609 feasting,2,rapeoflucrece,1609 batter'd,2,rapeoflucrece,1609 honesty,2,rapeoflucrece,1609 map,2,rapeoflucrece,1609 debate,2,rapeoflucrece,1609 cloudy,2,rapeoflucrece,1609 clouds,2,rapeoflucrece,1609 confound,2,rapeoflucrece,1609 starts,2,rapeoflucrece,1609 perjury,2,rapeoflucrece,1609 least,2,rapeoflucrece,1609 spite,2,rapeoflucrece,1609 Quoth,2,rapeoflucrece,1609 Ilion,2,rapeoflucrece,1609 learn,2,rapeoflucrece,1609 Another,2,rapeoflucrece,1609 dread,2,rapeoflucrece,1609 form'd,2,rapeoflucrece,1609 impious,2,rapeoflucrece,1609 Sometime,2,rapeoflucrece,1609 glory,2,rapeoflucrece,1609 lamenting,2,rapeoflucrece,1609 meeting,2,rapeoflucrece,1609 sovereign,2,rapeoflucrece,1609 burnt,2,rapeoflucrece,1609 ravisher,2,rapeoflucrece,1609 lightless,2,rapeoflucrece,1609 lion,2,rapeoflucrece,1609 untainted,2,rapeoflucrece,1609 laud,2,rapeoflucrece,1609 peep,2,rapeoflucrece,1609 Hecuba,2,rapeoflucrece,1609 weariness,2,rapeoflucrece,1609 appetite,2,rapeoflucrece,1609 nature,2,rapeoflucrece,1609 Th',2,rapeoflucrece,1609 moe,2,rapeoflucrece,1609 forestall,2,rapeoflucrece,1609 shade,2,rapeoflucrece,1609 silent,2,rapeoflucrece,1609 sentence,2,rapeoflucrece,1609 laid,2,rapeoflucrece,1609 sprite,2,rapeoflucrece,1609 injurious,2,rapeoflucrece,1609 dry,2,rapeoflucrece,1609 Swearing,2,rapeoflucrece,1609 slew,2,rapeoflucrece,1609 certain,2,rapeoflucrece,1609 venom,2,rapeoflucrece,1609 burden,2,rapeoflucrece,1609 armed,2,rapeoflucrece,1609 Sinon's,2,rapeoflucrece,1609 obtain,2,rapeoflucrece,1609 stol'n,2,rapeoflucrece,1609 kind,2,rapeoflucrece,1609 'How,2,rapeoflucrece,1609 command,2,rapeoflucrece,1609 shifting,2,rapeoflucrece,1609 surviving,2,rapeoflucrece,1609 Conceit,2,rapeoflucrece,1609 daughter',2,rapeoflucrece,1609 justly,2,rapeoflucrece,1609 wanteth,2,rapeoflucrece,1609 Hector,2,rapeoflucrece,1609 blush'd,2,rapeoflucrece,1609 enemy,2,rapeoflucrece,1609 ending,2,rapeoflucrece,1609 lady,2,rapeoflucrece,1609 swan,2,rapeoflucrece,1609 troubled,3,rapeoflucrece,1609 told,3,rapeoflucrece,1609 answer,3,rapeoflucrece,1609 Time's,3,rapeoflucrece,1609 regard,3,rapeoflucrece,1609 quality,3,rapeoflucrece,1609 taking,3,rapeoflucrece,1609 drop,3,rapeoflucrece,1609 mistress,3,rapeoflucrece,1609 shadows,3,rapeoflucrece,1609 lawful,3,rapeoflucrece,1609 waxen,3,rapeoflucrece,1609 sleeps,3,rapeoflucrece,1609 slaughter'd,3,rapeoflucrece,1609 grim,3,rapeoflucrece,1609 instrument,3,rapeoflucrece,1609 beauty's,3,rapeoflucrece,1609 sore,3,rapeoflucrece,1609 Upon,3,rapeoflucrece,1609 case,3,rapeoflucrece,1609 worser,3,rapeoflucrece,1609 strength,3,rapeoflucrece,1609 sadly,3,rapeoflucrece,1609 'What,3,rapeoflucrece,1609 bearing,3,rapeoflucrece,1609 beholds,3,rapeoflucrece,1609 confounds,3,rapeoflucrece,1609 drew,3,rapeoflucrece,1609 cheer,3,rapeoflucrece,1609 pines,3,rapeoflucrece,1609 call,3,rapeoflucrece,1609 fools,3,rapeoflucrece,1609 LUCRECE,3,rapeoflucrece,1609 veins,3,rapeoflucrece,1609 Not,3,rapeoflucrece,1609 blessed,3,rapeoflucrece,1609 wait,3,rapeoflucrece,1609 lesser,3,rapeoflucrece,1609 Why,3,rapeoflucrece,1609 ocean,3,rapeoflucrece,1609 bound,3,rapeoflucrece,1609 merry,3,rapeoflucrece,1609 scorn,3,rapeoflucrece,1609 yield,3,rapeoflucrece,1609 abuses,3,rapeoflucrece,1609 wings,3,rapeoflucrece,1609 league,3,rapeoflucrece,1609 swelling,3,rapeoflucrece,1609 skies,3,rapeoflucrece,1609 unhallow'd,3,rapeoflucrece,1609 born,3,rapeoflucrece,1609 falls,3,rapeoflucrece,1609 worthy,3,rapeoflucrece,1609 bring,3,rapeoflucrece,1609 nails,3,rapeoflucrece,1609 One,3,rapeoflucrece,1609 harmless,3,rapeoflucrece,1609 wish,3,rapeoflucrece,1609 throws,3,rapeoflucrece,1609 sense,3,rapeoflucrece,1609 stop,3,rapeoflucrece,1609 pretty,3,rapeoflucrece,1609 office,3,rapeoflucrece,1609 wits,3,rapeoflucrece,1609 creeping,3,rapeoflucrece,1609 manly,3,rapeoflucrece,1609 bitter,3,rapeoflucrece,1609 scandal,3,rapeoflucrece,1609 morning,3,rapeoflucrece,1609 drown,3,rapeoflucrece,1609 foes,3,rapeoflucrece,1609 An,3,rapeoflucrece,1609 mistrust,3,rapeoflucrece,1609 neither,3,rapeoflucrece,1609 Be,3,rapeoflucrece,1609 blows,3,rapeoflucrece,1609 Those,3,rapeoflucrece,1609 desperate,3,rapeoflucrece,1609 bad,3,rapeoflucrece,1609 OF,3,rapeoflucrece,1609 Within,3,rapeoflucrece,1609 means,3,rapeoflucrece,1609 pleasure,3,rapeoflucrece,1609 It,3,rapeoflucrece,1609 prove,3,rapeoflucrece,1609 iniquity,3,rapeoflucrece,1609 We,3,rapeoflucrece,1609 behind,3,rapeoflucrece,1609 sounds,3,rapeoflucrece,1609 dost,3,rapeoflucrece,1609 Save,3,rapeoflucrece,1609 people,3,rapeoflucrece,1609 'Poor,3,rapeoflucrece,1609 curse,3,rapeoflucrece,1609 despite,3,rapeoflucrece,1609 divine,3,rapeoflucrece,1609 picture,3,rapeoflucrece,1609 turns,3,rapeoflucrece,1609 store,3,rapeoflucrece,1609 story,3,rapeoflucrece,1609 wiped,3,rapeoflucrece,1609 aim,3,rapeoflucrece,1609 air,3,rapeoflucrece,1609 go,3,rapeoflucrece,1609 aid,3,rapeoflucrece,1609 stops,3,rapeoflucrece,1609 defame,3,rapeoflucrece,1609 Besides,3,rapeoflucrece,1609 boast,3,rapeoflucrece,1609 thyself,3,rapeoflucrece,1609 whereof,3,rapeoflucrece,1609 abide,3,rapeoflucrece,1609 Myself,3,rapeoflucrece,1609 lose,3,rapeoflucrece,1609 blue,3,rapeoflucrece,1609 grace,3,rapeoflucrece,1609 harm,3,rapeoflucrece,1609 brought,3,rapeoflucrece,1609 hard,3,rapeoflucrece,1609 speaks,3,rapeoflucrece,1609 field,3,rapeoflucrece,1609 call'd,3,rapeoflucrece,1609 'Let,3,rapeoflucrece,1609 plain,3,rapeoflucrece,1609 drawn,3,rapeoflucrece,1609 RAPE,3,rapeoflucrece,1609 school,3,rapeoflucrece,1609 perpetual,3,rapeoflucrece,1609 First,3,rapeoflucrece,1609 city,3,rapeoflucrece,1609 ask,3,rapeoflucrece,1609 stranger,3,rapeoflucrece,1609 mock,3,rapeoflucrece,1609 stones,3,rapeoflucrece,1609 rough,3,rapeoflucrece,1609 moan,3,rapeoflucrece,1609 hast,3,rapeoflucrece,1609 creatures,3,rapeoflucrece,1609 Stood,3,rapeoflucrece,1609 Hath,3,rapeoflucrece,1609 kindled,3,rapeoflucrece,1609 having,3,rapeoflucrece,1609 watch,3,rapeoflucrece,1609 often,3,rapeoflucrece,1609 moved,3,rapeoflucrece,1609 shameful,3,rapeoflucrece,1609 honey,3,rapeoflucrece,1609 Against,3,rapeoflucrece,1609 rose,3,rapeoflucrece,1609 guiltless,3,rapeoflucrece,1609 helpless,3,rapeoflucrece,1609 unknown,3,rapeoflucrece,1609 advisedly,3,rapeoflucrece,1609 action,3,rapeoflucrece,1609 Show'd,3,rapeoflucrece,1609 into,3,rapeoflucrece,1609 blunt,3,rapeoflucrece,1609 ours,3,rapeoflucrece,1609 slain,3,rapeoflucrece,1609 excuses,3,rapeoflucrece,1609 Tarquinius,3,rapeoflucrece,1609 Doth,3,rapeoflucrece,1609 yours,3,rapeoflucrece,1609 general,3,rapeoflucrece,1609 leaves,3,rapeoflucrece,1609 'In,3,rapeoflucrece,1609 stars,3,rapeoflucrece,1609 myself,3,rapeoflucrece,1609 blush,3,rapeoflucrece,1609 coward,3,rapeoflucrece,1609 mark,3,rapeoflucrece,1609 fountain,3,rapeoflucrece,1609 Honour,3,rapeoflucrece,1609 quench,3,rapeoflucrece,1609 flatter,3,rapeoflucrece,1609 labour,3,rapeoflucrece,1609 free,3,rapeoflucrece,1609 Being,3,rapeoflucrece,1609 banks,3,rapeoflucrece,1609 close,3,rapeoflucrece,1609 stained,3,rapeoflucrece,1609 sting,3,rapeoflucrece,1609 retire,3,rapeoflucrece,1609 cure,3,rapeoflucrece,1609 says,3,rapeoflucrece,1609 morrow,3,rapeoflucrece,1609 waking,3,rapeoflucrece,1609 remains,3,rapeoflucrece,1609 Collatium,3,rapeoflucrece,1609 war,3,rapeoflucrece,1609 wanton,3,rapeoflucrece,1609 happy,3,rapeoflucrece,1609 hair,3,rapeoflucrece,1609 watery,3,rapeoflucrece,1609 faced,3,rapeoflucrece,1609 listening,3,rapeoflucrece,1609 consent,3,rapeoflucrece,1609 dull,3,rapeoflucrece,1609 marble,3,rapeoflucrece,1609 beguiled,3,rapeoflucrece,1609 ground,3,rapeoflucrece,1609 Ardea,3,rapeoflucrece,1609 lasting,3,rapeoflucrece,1609 Greeks,3,rapeoflucrece,1609 silly,3,rapeoflucrece,1609 letter,3,rapeoflucrece,1609 tune,3,rapeoflucrece,1609 company,3,rapeoflucrece,1609 roses,3,rapeoflucrece,1609 word,3,rapeoflucrece,1609 gazing,3,rapeoflucrece,1609 passion,3,rapeoflucrece,1609 ne'er,3,rapeoflucrece,1609 folly,3,rapeoflucrece,1609 Unto,3,rapeoflucrece,1609 shows,3,rapeoflucrece,1609 reproach,3,rapeoflucrece,1609 lights,3,rapeoflucrece,1609 tale,3,rapeoflucrece,1609 man's,3,rapeoflucrece,1609 knighthood,3,rapeoflucrece,1609 raining,3,rapeoflucrece,1609 home,3,rapeoflucrece,1609 holy,3,rapeoflucrece,1609 fires,3,rapeoflucrece,1609 loyal,3,rapeoflucrece,1609 lives,3,rapeoflucrece,1609 resolution,3,rapeoflucrece,1609 Day,3,rapeoflucrece,1609 task,3,rapeoflucrece,1609 bawd,3,rapeoflucrece,1609 interest,3,rapeoflucrece,1609 breasts,3,rapeoflucrece,1609 ugly,3,rapeoflucrece,1609 use,3,rapeoflucrece,1609 seen,3,rapeoflucrece,1609 troth,3,rapeoflucrece,1609 feeling,3,rapeoflucrece,1609 True,3,rapeoflucrece,1609 traitor,3,rapeoflucrece,1609 Collatine's,3,rapeoflucrece,1609 dispense,3,rapeoflucrece,1609 glove,3,rapeoflucrece,1609 beheld,3,rapeoflucrece,1609 gods,3,rapeoflucrece,1609 post,3,rapeoflucrece,1609 bleeding,3,rapeoflucrece,1609 hither,3,rapeoflucrece,1609 Lucretius,3,rapeoflucrece,1609 effects,3,rapeoflucrece,1609 seldom,3,rapeoflucrece,1609 begins,3,rapeoflucrece,1609 mourning,3,rapeoflucrece,1609 terror,3,rapeoflucrece,1609 sleeping,3,rapeoflucrece,1609 fright,3,rapeoflucrece,1609 harms,3,rapeoflucrece,1609 revenged,3,rapeoflucrece,1609 defiled,3,rapeoflucrece,1609 'This,3,rapeoflucrece,1609 date,3,rapeoflucrece,1609 respect,3,rapeoflucrece,1609 attend,3,rapeoflucrece,1609 princely,3,rapeoflucrece,1609 disputation,3,rapeoflucrece,1609 destroy,3,rapeoflucrece,1609 ivory,3,rapeoflucrece,1609 lamb,3,rapeoflucrece,1609 flower,3,rapeoflucrece,1609 tired,3,rapeoflucrece,1609 cross,3,rapeoflucrece,1609 dew,3,rapeoflucrece,1609 tainted,3,rapeoflucrece,1609 earth's,3,rapeoflucrece,1609 shape,3,rapeoflucrece,1609 th',3,rapeoflucrece,1609 women,3,rapeoflucrece,1609 times,4,rapeoflucrece,1609 took,4,rapeoflucrece,1609 darkness,4,rapeoflucrece,1609 decay,4,rapeoflucrece,1609 feeds,4,rapeoflucrece,1609 appear,4,rapeoflucrece,1609 Ere,4,rapeoflucrece,1609 under,4,rapeoflucrece,1609 prey,4,rapeoflucrece,1609 truth,4,rapeoflucrece,1609 world,4,rapeoflucrece,1609 friends,4,rapeoflucrece,1609 loathsome,4,rapeoflucrece,1609 soon,4,rapeoflucrece,1609 disdain,4,rapeoflucrece,1609 heat,4,rapeoflucrece,1609 full,4,rapeoflucrece,1609 began,4,rapeoflucrece,1609 view,4,rapeoflucrece,1609 better,4,rapeoflucrece,1609 wake,4,rapeoflucrece,1609 sea,4,rapeoflucrece,1609 fell,4,rapeoflucrece,1609 love's,4,rapeoflucrece,1609 birds,4,rapeoflucrece,1609 son,4,rapeoflucrece,1609 sky,4,rapeoflucrece,1609 sets,4,rapeoflucrece,1609 faults,4,rapeoflucrece,1609 These,4,rapeoflucrece,1609 snow,4,rapeoflucrece,1609 crime,4,rapeoflucrece,1609 daughter,4,rapeoflucrece,1609 loathed,4,rapeoflucrece,1609 blind,4,rapeoflucrece,1609 want,4,rapeoflucrece,1609 'For,4,rapeoflucrece,1609 dies,4,rapeoflucrece,1609 murder,4,rapeoflucrece,1609 mean,4,rapeoflucrece,1609 sick,4,rapeoflucrece,1609 'But,4,rapeoflucrece,1609 burning,4,rapeoflucrece,1609 Priam's,4,rapeoflucrece,1609 patience,4,rapeoflucrece,1609 deeds,4,rapeoflucrece,1609 On,4,rapeoflucrece,1609 hid,4,rapeoflucrece,1609 whole,4,rapeoflucrece,1609 sought,4,rapeoflucrece,1609 sits,4,rapeoflucrece,1609 gone,4,rapeoflucrece,1609 burn,4,rapeoflucrece,1609 'my,4,rapeoflucrece,1609 swift,4,rapeoflucrece,1609 begin,4,rapeoflucrece,1609 entertain,4,rapeoflucrece,1609 moans,4,rapeoflucrece,1609 left,4,rapeoflucrece,1609 stood,4,rapeoflucrece,1609 Guilty,4,rapeoflucrece,1609 lent,4,rapeoflucrece,1609 lend,4,rapeoflucrece,1609 am,4,rapeoflucrece,1609 door,4,rapeoflucrece,1609 doom,4,rapeoflucrece,1609 fears,4,rapeoflucrece,1609 earth,4,rapeoflucrece,1609 semblance,4,rapeoflucrece,1609 wherein,4,rapeoflucrece,1609 spent,4,rapeoflucrece,1609 untimely,4,rapeoflucrece,1609 shallow,4,rapeoflucrece,1609 course,4,rapeoflucrece,1609 hate,4,rapeoflucrece,1609 fear'd,4,rapeoflucrece,1609 dreadful,4,rapeoflucrece,1609 Are,4,rapeoflucrece,1609 deadly,4,rapeoflucrece,1609 root,4,rapeoflucrece,1609 Have,4,rapeoflucrece,1609 breeds,4,rapeoflucrece,1609 lords,4,rapeoflucrece,1609 thinks,4,rapeoflucrece,1609 rash,4,rapeoflucrece,1609 bears,4,rapeoflucrece,1609 youth,4,rapeoflucrece,1609 mortal,4,rapeoflucrece,1609 fares,4,rapeoflucrece,1609 bloody,4,rapeoflucrece,1609 All,4,rapeoflucrece,1609 dream,4,rapeoflucrece,1609 knows,4,rapeoflucrece,1609 blow,4,rapeoflucrece,1609 thief,4,rapeoflucrece,1609 smoke,4,rapeoflucrece,1609 living,4,rapeoflucrece,1609 bequeath,4,rapeoflucrece,1609 taste,4,rapeoflucrece,1609 get,4,rapeoflucrece,1609 grave,4,rapeoflucrece,1609 dishonour,4,rapeoflucrece,1609 hateful,4,rapeoflucrece,1609 only,4,rapeoflucrece,1609 falchion,4,rapeoflucrece,1609 Desire,4,rapeoflucrece,1609 subtle,4,rapeoflucrece,1609 between,4,rapeoflucrece,1609 'To,4,rapeoflucrece,1609 possess,4,rapeoflucrece,1609 enforced,4,rapeoflucrece,1609 drops,4,rapeoflucrece,1609 angry,4,rapeoflucrece,1609 minds,4,rapeoflucrece,1609 Time,4,rapeoflucrece,1609 fall,4,rapeoflucrece,1609 even,4,rapeoflucrece,1609 vow,4,rapeoflucrece,1609 wealth,4,rapeoflucrece,1609 Each,4,rapeoflucrece,1609 talk,4,rapeoflucrece,1609 take,4,rapeoflucrece,1609 reason,4,rapeoflucrece,1609 short,4,rapeoflucrece,1609 hearts,4,rapeoflucrece,1609 alone,4,rapeoflucrece,1609 inward,4,rapeoflucrece,1609 swear,4,rapeoflucrece,1609 either,4,rapeoflucrece,1609 supposed,4,rapeoflucrece,1609 sees,4,rapeoflucrece,1609 sound,4,rapeoflucrece,1609 Through,4,rapeoflucrece,1609 souls,4,rapeoflucrece,1609 blushing,4,rapeoflucrece,1609 tide,4,rapeoflucrece,1609 return,4,rapeoflucrece,1609 prison,4,rapeoflucrece,1609 nurse,4,rapeoflucrece,1609 sorrow's,4,rapeoflucrece,1609 purpose,4,rapeoflucrece,1609 brow,4,rapeoflucrece,1609 ear,4,rapeoflucrece,1609 leave,4,rapeoflucrece,1609 mad,4,rapeoflucrece,1609 straight,4,rapeoflucrece,1609 abuse,4,rapeoflucrece,1609 Lust,4,rapeoflucrece,1609 books,4,rapeoflucrece,1609 bred,4,rapeoflucrece,1609 gazed,4,rapeoflucrece,1609 without,4,rapeoflucrece,1609 private,4,rapeoflucrece,1609 doting,4,rapeoflucrece,1609 'Then,4,rapeoflucrece,1609 sharp,4,rapeoflucrece,1609 Brutus,5,rapeoflucrece,1609 groom,5,rapeoflucrece,1609 guilt,5,rapeoflucrece,1609 weary,5,rapeoflucrece,1609 writ,5,rapeoflucrece,1609 treasure,5,rapeoflucrece,1609 hell,5,rapeoflucrece,1609 sight,5,rapeoflucrece,1609 remain,5,rapeoflucrece,1609 saw,5,rapeoflucrece,1609 glass,5,rapeoflucrece,1609 nothing,5,rapeoflucrece,1609 'I,5,rapeoflucrece,1609 cause,5,rapeoflucrece,1609 disgrace,5,rapeoflucrece,1609 read,5,rapeoflucrece,1609 offence,5,rapeoflucrece,1609 about,5,rapeoflucrece,1609 shining,5,rapeoflucrece,1609 wind,5,rapeoflucrece,1609 seems,5,rapeoflucrece,1609 Though,5,rapeoflucrece,1609 bold,5,rapeoflucrece,1609 else,5,rapeoflucrece,1609 side,5,rapeoflucrece,1609 chamber,5,rapeoflucrece,1609 chaste,5,rapeoflucrece,1609 itself,5,rapeoflucrece,1609 kept,5,rapeoflucrece,1609 stay,5,rapeoflucrece,1609 force,5,rapeoflucrece,1609 finds,5,rapeoflucrece,1609 past,5,rapeoflucrece,1609 ears,5,rapeoflucrece,1609 gave,5,rapeoflucrece,1609 most,5,rapeoflucrece,1609 lost,5,rapeoflucrece,1609 devil,5,rapeoflucrece,1609 keep,5,rapeoflucrece,1609 round,5,rapeoflucrece,1609 husband's,5,rapeoflucrece,1609 pain,5,rapeoflucrece,1609 speak,5,rapeoflucrece,1609 foot,5,rapeoflucrece,1609 revenge,5,rapeoflucrece,1609 hide,5,rapeoflucrece,1609 THE,5,rapeoflucrece,1609 ranks,5,rapeoflucrece,1609 'And,5,rapeoflucrece,1609 think,5,rapeoflucrece,1609 'My,5,rapeoflucrece,1609 sake,5,rapeoflucrece,1609 wit,5,rapeoflucrece,1609 oft,5,rapeoflucrece,1609 break,5,rapeoflucrece,1609 unseen,5,rapeoflucrece,1609 Thus,5,rapeoflucrece,1609 duty,5,rapeoflucrece,1609 oath,5,rapeoflucrece,1609 'Tis,5,rapeoflucrece,1609 dying,5,rapeoflucrece,1609 faces,5,rapeoflucrece,1609 weeping,5,rapeoflucrece,1609 dumb,5,rapeoflucrece,1609 evil,5,rapeoflucrece,1609 cares,5,rapeoflucrece,1609 cloud,5,rapeoflucrece,1609 work,5,rapeoflucrece,1609 fast,5,rapeoflucrece,1609 hope,5,rapeoflucrece,1609 thousand,5,rapeoflucrece,1609 hold,5,rapeoflucrece,1609 wilt,5,rapeoflucrece,1609 flood,5,rapeoflucrece,1609 low,5,rapeoflucrece,1609 Sinon,5,rapeoflucrece,1609 modest,5,rapeoflucrece,1609 hours,5,rapeoflucrece,1609 goes,5,rapeoflucrece,1609 torch,5,rapeoflucrece,1609 sleep,5,rapeoflucrece,1609 forced,5,rapeoflucrece,1609 Since,5,rapeoflucrece,1609 lips,5,rapeoflucrece,1609 May,5,rapeoflucrece,1609 two,5,rapeoflucrece,1609 slay,5,rapeoflucrece,1609 dark,5,rapeoflucrece,1609 bids,5,rapeoflucrece,1609 treason,6,rapeoflucrece,1609 pity,6,rapeoflucrece,1609 haste,6,rapeoflucrece,1609 painter,6,rapeoflucrece,1609 painted,6,rapeoflucrece,1609 vain,6,rapeoflucrece,1609 Collatinus,6,rapeoflucrece,1609 another,6,rapeoflucrece,1609 Now,6,rapeoflucrece,1609 groans,6,rapeoflucrece,1609 vile,6,rapeoflucrece,1609 kill'd,6,rapeoflucrece,1609 thence,6,rapeoflucrece,1609 cries,6,rapeoflucrece,1609 sun,6,rapeoflucrece,1609 life's,6,rapeoflucrece,1609 therefore,6,rapeoflucrece,1609 down,6,rapeoflucrece,1609 'tis,6,rapeoflucrece,1609 gain,6,rapeoflucrece,1609 stain'd,6,rapeoflucrece,1609 act,6,rapeoflucrece,1609 hot,6,rapeoflucrece,1609 weeps,6,rapeoflucrece,1609 present,6,rapeoflucrece,1609 fond,6,rapeoflucrece,1609 How,6,rapeoflucrece,1609 secret,6,rapeoflucrece,1609 right,6,rapeoflucrece,1609 new,6,rapeoflucrece,1609 water,6,rapeoflucrece,1609 none,6,rapeoflucrece,1609 'Thou,6,rapeoflucrece,1609 things,6,rapeoflucrece,1609 child,6,rapeoflucrece,1609 strife,6,rapeoflucrece,1609 blot,6,rapeoflucrece,1609 slave,6,rapeoflucrece,1609 'So,6,rapeoflucrece,1609 trembling,6,rapeoflucrece,1609 same,6,rapeoflucrece,1609 stand,6,rapeoflucrece,1609 Shall,6,rapeoflucrece,1609 takes,6,rapeoflucrece,1609 Make,6,rapeoflucrece,1609 rich,6,rapeoflucrece,1609 hour,6,rapeoflucrece,1609 law,6,rapeoflucrece,1609 Priam,6,rapeoflucrece,1609 clear,6,rapeoflucrece,1609 unto,6,rapeoflucrece,1609 'Why,6,rapeoflucrece,1609 seek,6,rapeoflucrece,1609 trespass,6,rapeoflucrece,1609 whom,6,rapeoflucrece,1609 self,6,rapeoflucrece,1609 Opportunity,6,rapeoflucrece,1609 wound,6,rapeoflucrece,1609 late,6,rapeoflucrece,1609 spring,6,rapeoflucrece,1609 dame,6,rapeoflucrece,1609 power,6,rapeoflucrece,1609 dim,6,rapeoflucrece,1609 infamy,7,rapeoflucrece,1609 sighs,7,rapeoflucrece,1609 Poor,7,rapeoflucrece,1609 came,7,rapeoflucrece,1609 skill,7,rapeoflucrece,1609 Their,7,rapeoflucrece,1609 fight,7,rapeoflucrece,1609 after,7,rapeoflucrece,1609 While,7,rapeoflucrece,1609 kings,7,rapeoflucrece,1609 breath,7,rapeoflucrece,1609 image,7,rapeoflucrece,1609 breast,7,rapeoflucrece,1609 look,7,rapeoflucrece,1609 speed,7,rapeoflucrece,1609 age,7,rapeoflucrece,1609 place,7,rapeoflucrece,1609 excuse,7,rapeoflucrece,1609 open,7,rapeoflucrece,1609 delight,7,rapeoflucrece,1609 though,7,rapeoflucrece,1609 far,7,rapeoflucrece,1609 maid,7,rapeoflucrece,1609 gentle,7,rapeoflucrece,1609 Some,7,rapeoflucrece,1609 mild,7,rapeoflucrece,1609 many,7,rapeoflucrece,1609 state,7,rapeoflucrece,1609 why,7,rapeoflucrece,1609 'The,7,rapeoflucrece,1609 way,7,rapeoflucrece,1609 wounds,7,rapeoflucrece,1609 find,7,rapeoflucrece,1609 till,7,rapeoflucrece,1609 base,7,rapeoflucrece,1609 lay,7,rapeoflucrece,1609 great,7,rapeoflucrece,1609 gives,7,rapeoflucrece,1609 back,7,rapeoflucrece,1609 blame,7,rapeoflucrece,1609 slow,7,rapeoflucrece,1609 shalt,7,rapeoflucrece,1609 o'er,8,rapeoflucrece,1609 Will,8,rapeoflucrece,1609 joy,8,rapeoflucrece,1609 cheeks,8,rapeoflucrece,1609 say,8,rapeoflucrece,1609 golden,8,rapeoflucrece,1609 Nor,8,rapeoflucrece,1609 Such,8,rapeoflucrece,1609 fault,8,rapeoflucrece,1609 heaven,8,rapeoflucrece,1609 rest,8,rapeoflucrece,1609 bright,8,rapeoflucrece,1609 colour,8,rapeoflucrece,1609 these,8,rapeoflucrece,1609 each,8,rapeoflucrece,1609 tear,8,rapeoflucrece,1609 proud,8,rapeoflucrece,1609 weep,8,rapeoflucrece,1609 you,8,rapeoflucrece,1609 Like,8,rapeoflucrece,1609 Night,8,rapeoflucrece,1609 end,8,rapeoflucrece,1609 They,8,rapeoflucrece,1609 I'll,8,rapeoflucrece,1609 once,8,rapeoflucrece,1609 stain,8,rapeoflucrece,1609 who,8,rapeoflucrece,1609 heavy,8,rapeoflucrece,1609 arms,8,rapeoflucrece,1609 themselves,8,rapeoflucrece,1609 Even,8,rapeoflucrece,1609 foe,8,rapeoflucrece,1609 fly,8,rapeoflucrece,1609 ever,8,rapeoflucrece,1609 herself,8,rapeoflucrece,1609 wretched,8,rapeoflucrece,1609 cold,8,rapeoflucrece,1609 Roman,8,rapeoflucrece,1609 last,8,rapeoflucrece,1609 virtue,8,rapeoflucrece,1609 silver,8,rapeoflucrece,1609 king,8,rapeoflucrece,1609 help,9,rapeoflucrece,1609 while,9,rapeoflucrece,1609 head,9,rapeoflucrece,1609 set,9,rapeoflucrece,1609 wrong,9,rapeoflucrece,1609 seem'd,9,rapeoflucrece,1609 tell,9,rapeoflucrece,1609 Is,9,rapeoflucrece,1609 your,9,rapeoflucrece,1609 whose,9,rapeoflucrece,1609 said,9,rapeoflucrece,1609 husband,9,rapeoflucrece,1609 know,9,rapeoflucrece,1609 greater,9,rapeoflucrece,1609 part,9,rapeoflucrece,1609 pale,9,rapeoflucrece,1609 high,9,rapeoflucrece,1609 before,9,rapeoflucrece,1609 knife,9,rapeoflucrece,1609 rage,9,rapeoflucrece,1609 pride,9,rapeoflucrece,1609 our,9,rapeoflucrece,1609 guilty,9,rapeoflucrece,1609 day,9,rapeoflucrece,1609 strong,9,rapeoflucrece,1609 man,9,rapeoflucrece,1609 men,9,rapeoflucrece,1609 thoughts,9,rapeoflucrece,1609 kill,9,rapeoflucrece,1609 much,10,rapeoflucrece,1609 here,10,rapeoflucrece,1609 soul,10,rapeoflucrece,1609 Whose,10,rapeoflucrece,1609 hear,10,rapeoflucrece,1609 against,10,rapeoflucrece,1609 both,10,rapeoflucrece,1609 friend,10,rapeoflucrece,1609 name,10,rapeoflucrece,1609 No,10,rapeoflucrece,1609 deed,10,rapeoflucrece,1609 dear,10,rapeoflucrece,1609 made,10,rapeoflucrece,1609 ere,10,rapeoflucrece,1609 again,10,rapeoflucrece,1609 nor,10,rapeoflucrece,1609 Rome,10,rapeoflucrece,1609 well,10,rapeoflucrece,1609 fame,10,rapeoflucrece,1609 Troy,10,rapeoflucrece,1609 come,10,rapeoflucrece,1609 makes,10,rapeoflucrece,1609 father,10,rapeoflucrece,1609 Where,10,rapeoflucrece,1609 thought,11,rapeoflucrece,1609 black,11,rapeoflucrece,1609 body,11,rapeoflucrece,1609 looks,11,rapeoflucrece,1609 Here,11,rapeoflucrece,1609 At,11,rapeoflucrece,1609 Yet,11,rapeoflucrece,1609 Till,11,rapeoflucrece,1609 true,11,rapeoflucrece,1609 behold,11,rapeoflucrece,1609 Tarquin's,11,rapeoflucrece,1609 away,12,rapeoflucrece,1609 good,12,rapeoflucrece,1609 weak,12,rapeoflucrece,1609 done,12,rapeoflucrece,1609 forth,12,rapeoflucrece,1609 little,12,rapeoflucrece,1609 show,12,rapeoflucrece,1609 through,12,rapeoflucrece,1609 mind,12,rapeoflucrece,1609 could,12,rapeoflucrece,1609 fire,12,rapeoflucrece,1609 old,12,rapeoflucrece,1609 thus,12,rapeoflucrece,1609 cannot,12,rapeoflucrece,1609 upon,13,rapeoflucrece,1609 lies,13,rapeoflucrece,1609 Lucrece',13,rapeoflucrece,1609 lord,13,rapeoflucrece,1609 deep,13,rapeoflucrece,1609 long,13,rapeoflucrece,1609 those,13,rapeoflucrece,1609 ill,13,rapeoflucrece,1609 thine,13,rapeoflucrece,1609 thing,13,rapeoflucrece,1609 woes,13,rapeoflucrece,1609 white,14,rapeoflucrece,1609 never,14,rapeoflucrece,1609 bed,14,rapeoflucrece,1609 If,14,rapeoflucrece,1609 tongue,14,rapeoflucrece,1609 dead,14,rapeoflucrece,1609 love,14,rapeoflucrece,1609 give,14,rapeoflucrece,1609 art,14,rapeoflucrece,1609 From,14,rapeoflucrece,1609 Let,14,rapeoflucrece,1609 wife,14,rapeoflucrece,1609 sweet,14,rapeoflucrece,1609 himself,14,rapeoflucrece,1609 other,14,rapeoflucrece,1609 red,15,rapeoflucrece,1609 must,15,rapeoflucrece,1609 sin,15,rapeoflucrece,1609 desire,15,rapeoflucrece,1609 yet,15,rapeoflucrece,1609 Then,15,rapeoflucrece,1609 live,15,rapeoflucrece,1609 What,15,rapeoflucrece,1609 die,15,rapeoflucrece,1609 'O,16,rapeoflucrece,1609 false,16,rapeoflucrece,1609 can,16,rapeoflucrece,1609 bear,16,rapeoflucrece,1609 how,16,rapeoflucrece,1609 we,16,rapeoflucrece,1609 were,16,rapeoflucrece,1609 beauty,16,rapeoflucrece,1609 too,16,rapeoflucrece,1609 might,16,rapeoflucrece,1609 every,17,rapeoflucrece,1609 honour,17,rapeoflucrece,1609 now,17,rapeoflucrece,1609 Thy,17,rapeoflucrece,1609 A,18,rapeoflucrece,1609 Of,18,rapeoflucrece,1609 blood,18,rapeoflucrece,1609 grief,18,rapeoflucrece,1609 an,18,rapeoflucrece,1609 pure,18,rapeoflucrece,1609 lust,18,rapeoflucrece,1609 out,18,rapeoflucrece,1609 let,18,rapeoflucrece,1609 tears,19,rapeoflucrece,1609 sad,19,rapeoflucrece,1609 words,19,rapeoflucrece,1609 By,19,rapeoflucrece,1609 Thou,19,rapeoflucrece,1609 woe,19,rapeoflucrece,1609 O,20,rapeoflucrece,1609 fear,20,rapeoflucrece,1609 there,20,rapeoflucrece,1609 Or,20,rapeoflucrece,1609 where,20,rapeoflucrece,1609 own,20,rapeoflucrece,1609 when,20,rapeoflucrece,1609 than,21,rapeoflucrece,1609 face,21,rapeoflucrece,1609 poor,21,rapeoflucrece,1609 being,21,rapeoflucrece,1609 life,22,rapeoflucrece,1609 light,22,rapeoflucrece,1609 see,22,rapeoflucrece,1609 then,22,rapeoflucrece,1609 had,22,rapeoflucrece,1609 Collatine,22,rapeoflucrece,1609 foul,22,rapeoflucrece,1609 mine,22,rapeoflucrece,1609 sorrow,22,rapeoflucrece,1609 heart,22,rapeoflucrece,1609 may,22,rapeoflucrece,1609 would,22,rapeoflucrece,1609 some,23,rapeoflucrece,1609 His,23,rapeoflucrece,1609 Tarquin,23,rapeoflucrece,1609 if,23,rapeoflucrece,1609 This,23,rapeoflucrece,1609 quoth,23,rapeoflucrece,1609 Who,24,rapeoflucrece,1609 He,24,rapeoflucrece,1609 Lucrece,24,rapeoflucrece,1609 up,24,rapeoflucrece,1609 hand,24,rapeoflucrece,1609 My,25,rapeoflucrece,1609 So,26,rapeoflucrece,1609 or,26,rapeoflucrece,1609 She,26,rapeoflucrece,1609 shall,26,rapeoflucrece,1609 With,27,rapeoflucrece,1609 what,27,rapeoflucrece,1609 When,27,rapeoflucrece,1609 them,28,rapeoflucrece,1609 do,28,rapeoflucrece,1609 death,29,rapeoflucrece,1609 As,29,rapeoflucrece,1609 night,29,rapeoflucrece,1609 make,29,rapeoflucrece,1609 fair,29,rapeoflucrece,1609 time,29,rapeoflucrece,1609 such,30,rapeoflucrece,1609 In,30,rapeoflucrece,1609 more,30,rapeoflucrece,1609 shame,30,rapeoflucrece,1609 should,31,rapeoflucrece,1609 Her,32,rapeoflucrece,1609 eye,33,rapeoflucrece,1609 are,34,rapeoflucrece,1609 hath,34,rapeoflucrece,1609 still,34,rapeoflucrece,1609 at,35,rapeoflucrece,1609 Which,36,rapeoflucrece,1609 which,37,rapeoflucrece,1609 like,37,rapeoflucrece,1609 was,37,rapeoflucrece,1609 one,37,rapeoflucrece,1609 did,38,rapeoflucrece,1609 have,39,rapeoflucrece,1609 on,40,rapeoflucrece,1609 thee,41,rapeoflucrece,1609 eyes,43,rapeoflucrece,1609 but,44,rapeoflucrece,1609 as,44,rapeoflucrece,1609 no,49,rapeoflucrece,1609 For,51,rapeoflucrece,1609 me,51,rapeoflucrece,1609 they,54,rapeoflucrece,1609 to,310,rapeoflucrece,1609 all,55,rapeoflucrece,1609 will,56,rapeoflucrece,1609 But,60,rapeoflucrece,1609 That,64,rapeoflucrece,1609 doth,66,rapeoflucrece,1609 from,67,rapeoflucrece,1609 ',69,rapeoflucrece,1609 thou,71,rapeoflucrece,1609 by,73,rapeoflucrece,1609 him,76,rapeoflucrece,1609 so,79,rapeoflucrece,1609 for,79,rapeoflucrece,1609 it,84,rapeoflucrece,1609 be,86,rapeoflucrece,1609 not,87,rapeoflucrece,1609 this,92,rapeoflucrece,1609 I,95,rapeoflucrece,1609 she,95,rapeoflucrece,1609 To,95,rapeoflucrece,1609 their,96,rapeoflucrece,1609 The,96,rapeoflucrece,1609 thy,97,rapeoflucrece,1609 is,105,rapeoflucrece,1609 he,112,rapeoflucrece,1609 my,129,rapeoflucrece,1609 a,167,rapeoflucrece,1609 And,170,rapeoflucrece,1609 the,433,rapeoflucrece,1609 that,178,rapeoflucrece,1609 her,182,rapeoflucrece,1609 with,191,rapeoflucrece,1609 his,219,rapeoflucrece,1609 in,224,rapeoflucrece,1609 of,243,rapeoflucrece,1609 and,245,rapeoflucrece,1609 forfeits,1,timonofathens,1607 plagues,1,timonofathens,1607 profession,1,timonofathens,1607 affords,1,timonofathens,1607 discharged,1,timonofathens,1607 You're,1,timonofathens,1607 event,1,timonofathens,1607 leak'd,1,timonofathens,1607 neighbouring,1,timonofathens,1607 generation,1,timonofathens,1607 steads,1,timonofathens,1607 mangy,1,timonofathens,1607 regard,1,timonofathens,1607 Choler,1,timonofathens,1607 forbid,1,timonofathens,1607 instruments,1,timonofathens,1607 moral,1,timonofathens,1607 chairs,1,timonofathens,1607 ignorance,1,timonofathens,1607 relief,1,timonofathens,1607 meek,1,timonofathens,1607 encertain,1,timonofathens,1607 guard,1,timonofathens,1607 meed,1,timonofathens,1607 guise,1,timonofathens,1607 suffer,1,timonofathens,1607 taking,1,timonofathens,1607 livedst,1,timonofathens,1607 ports,1,timonofathens,1607 profess'd,1,timonofathens,1607 'ira,1,timonofathens,1607 extremity,1,timonofathens,1607 basin,1,timonofathens,1607 consumption,1,timonofathens,1607 dined,1,timonofathens,1607 afar,1,timonofathens,1607 Assurance,1,timonofathens,1607 lamely,1,timonofathens,1607 reputation,1,timonofathens,1607 derived,1,timonofathens,1607 feed'st,1,timonofathens,1607 Teem,1,timonofathens,1607 verge,1,timonofathens,1607 assay,1,timonofathens,1607 advises,1,timonofathens,1607 Hear,1,timonofathens,1607 churlish,1,timonofathens,1607 Pity,1,timonofathens,1607 rank'd,1,timonofathens,1607 truer,1,timonofathens,1607 necessities,1,timonofathens,1607 levity's,1,timonofathens,1607 forswear,1,timonofathens,1607 adoring,1,timonofathens,1607 span,1,timonofathens,1607 scouring,1,timonofathens,1607 writ,1,timonofathens,1607 unicorn,1,timonofathens,1607 lawyer's,1,timonofathens,1607 possible,1,timonofathens,1607 especially,1,timonofathens,1607 knell,1,timonofathens,1607 Tear,1,timonofathens,1607 Trouble,1,timonofathens,1607 woman's,1,timonofathens,1607 travail,1,timonofathens,1607 excrement,1,timonofathens,1607 Join,1,timonofathens,1607 torn,1,timonofathens,1607 flush,1,timonofathens,1607 rag,1,timonofathens,1607 honours,1,timonofathens,1607 royal,1,timonofathens,1607 Fit,1,timonofathens,1607 exhaust,1,timonofathens,1607 unscarr'd,1,timonofathens,1607 Lucullus',1,timonofathens,1607 jacks,1,timonofathens,1607 rode,1,timonofathens,1607 Convert,1,timonofathens,1607 depraved,1,timonofathens,1607 breathless,1,timonofathens,1607 foolery,1,timonofathens,1607 support,1,timonofathens,1607 depraves,1,timonofathens,1607 assured,1,timonofathens,1607 unbolt,1,timonofathens,1607 rob,1,timonofathens,1607 rod,1,timonofathens,1607 suppose,1,timonofathens,1607 matron,1,timonofathens,1607 interpreter,1,timonofathens,1607 heart's,1,timonofathens,1607 Wilt,1,timonofathens,1607 embalms,1,timonofathens,1607 uncovered,1,timonofathens,1607 assistance,1,timonofathens,1607 joy,1,timonofathens,1607 Women,1,timonofathens,1607 easily,1,timonofathens,1607 whips,1,timonofathens,1607 simpler,1,timonofathens,1607 reside,1,timonofathens,1607 jot,1,timonofathens,1607 speedy,1,timonofathens,1607 dips,1,timonofathens,1607 held,1,timonofathens,1607 Never,1,timonofathens,1607 sleeps,1,timonofathens,1607 spade,1,timonofathens,1607 windpipe's,1,timonofathens,1607 sometime't,1,timonofathens,1607 dish,1,timonofathens,1607 mess,1,timonofathens,1607 flung,1,timonofathens,1607 poisonous,1,timonofathens,1607 dependants,1,timonofathens,1607 Hortensius,1,timonofathens,1607 singly,1,timonofathens,1607 sleepy,1,timonofathens,1607 Neptune,1,timonofathens,1607 trump,1,timonofathens,1607 Plutus,1,timonofathens,1607 joint,1,timonofathens,1607 contract,1,timonofathens,1607 clothes,1,timonofathens,1607 finger,1,timonofathens,1607 plainer,1,timonofathens,1607 aptly,1,timonofathens,1607 decay,1,timonofathens,1607 Either,1,timonofathens,1607 Whereat,1,timonofathens,1607 security,1,timonofathens,1607 Shouldst,1,timonofathens,1607 prisoner,1,timonofathens,1607 lutes,1,timonofathens,1607 prosperous,1,timonofathens,1607 aprons,1,timonofathens,1607 comest,1,timonofathens,1607 learn'd,1,timonofathens,1607 equall'd,1,timonofathens,1607 rumour,1,timonofathens,1607 dive,1,timonofathens,1607 hearted,1,timonofathens,1607 offer,1,timonofathens,1607 properer,1,timonofathens,1607 Cries,1,timonofathens,1607 rid,1,timonofathens,1607 Amazon,1,timonofathens,1607 hanged,1,timonofathens,1607 advance,1,timonofathens,1607 thirteen,1,timonofathens,1607 succession,1,timonofathens,1607 maintain,1,timonofathens,1607 lick,1,timonofathens,1607 although,1,timonofathens,1607 derive,1,timonofathens,1607 withal,1,timonofathens,1607 cowardice,1,timonofathens,1607 terribly,1,timonofathens,1607 horrid,1,timonofathens,1607 alighted,1,timonofathens,1607 beckon'd,1,timonofathens,1607 commence,1,timonofathens,1607 terrible,1,timonofathens,1607 innocence,1,timonofathens,1607 lackest,1,timonofathens,1607 foals,1,timonofathens,1607 patron,1,timonofathens,1607 ditches,1,timonofathens,1607 Rotten,1,timonofathens,1607 lively,1,timonofathens,1607 worshipp'd,1,timonofathens,1607 iron,1,timonofathens,1607 absolute,1,timonofathens,1607 smooth'd,1,timonofathens,1607 kinder,1,timonofathens,1607 works,1,timonofathens,1607 enfranchised,1,timonofathens,1607 cheques,1,timonofathens,1607 PERSONAE,1,timonofathens,1607 wither,1,timonofathens,1607 proclaim,1,timonofathens,1607 demand,1,timonofathens,1607 saved,1,timonofathens,1607 crutch,1,timonofathens,1607 case,1,timonofathens,1607 Flow,1,timonofathens,1607 untirable,1,timonofathens,1607 argues,1,timonofathens,1607 weepest,1,timonofathens,1607 Prompted,1,timonofathens,1607 mistook,1,timonofathens,1607 lustre,1,timonofathens,1607 beneath,1,timonofathens,1607 Earth,1,timonofathens,1607 passions,1,timonofathens,1607 reign,1,timonofathens,1607 chid,1,timonofathens,1607 fracted,1,timonofathens,1607 whittle,1,timonofathens,1607 seven,1,timonofathens,1607 shrinks,1,timonofathens,1607 repays,1,timonofathens,1607 surfeit,1,timonofathens,1607 thievery,1,timonofathens,1607 birth,1,timonofathens,1607 lacks,1,timonofathens,1607 bates,1,timonofathens,1607 land's,1,timonofathens,1607 sad,1,timonofathens,1607 brothel,1,timonofathens,1607 thank'd,1,timonofathens,1607 wander'd,1,timonofathens,1607 After,1,timonofathens,1607 camp,1,timonofathens,1607 friend's,1,timonofathens,1607 can't,1,timonofathens,1607 drive,1,timonofathens,1607 slept,1,timonofathens,1607 enemies',1,timonofathens,1607 whirlwind,1,timonofathens,1607 Bloody,1,timonofathens,1607 ruin'd,1,timonofathens,1607 thousands,1,timonofathens,1607 sold,1,timonofathens,1607 matters,1,timonofathens,1607 relieve,1,timonofathens,1607 happened,1,timonofathens,1607 saw,1,timonofathens,1607 outside,1,timonofathens,1607 scarlet,1,timonofathens,1607 assembly,1,timonofathens,1607 Jove,1,timonofathens,1607 atone,1,timonofathens,1607 pill,1,timonofathens,1607 thou'st,1,timonofathens,1607 baths,1,timonofathens,1607 dram,1,timonofathens,1607 persuading,1,timonofathens,1607 endow'd,1,timonofathens,1607 remotion,1,timonofathens,1607 gracious,1,timonofathens,1607 mind's,1,timonofathens,1607 broken,1,timonofathens,1607 Ye're,1,timonofathens,1607 Provokes,1,timonofathens,1607 overcome,1,timonofathens,1607 traffics,1,timonofathens,1607 corse,1,timonofathens,1607 honestly,1,timonofathens,1607 heat,1,timonofathens,1607 heal,1,timonofathens,1607 Gramercies,1,timonofathens,1607 visitors,1,timonofathens,1607 pursy,1,timonofathens,1607 Only,1,timonofathens,1607 cheek,1,timonofathens,1607 exactest,1,timonofathens,1607 discontentedly,1,timonofathens,1607 policy,1,timonofathens,1607 babes,1,timonofathens,1607 golden,1,timonofathens,1607 soil,1,timonofathens,1607 demands,1,timonofathens,1607 paper,1,timonofathens,1607 Yield,1,timonofathens,1607 glass,1,timonofathens,1607 Traffic's,1,timonofathens,1607 deities,1,timonofathens,1607 sixteen,1,timonofathens,1607 likeness,1,timonofathens,1607 resumes,1,timonofathens,1607 Importune,1,timonofathens,1607 teach,1,timonofathens,1607 Smells,1,timonofathens,1607 richer,1,timonofathens,1607 wafts,1,timonofathens,1607 benefits,1,timonofathens,1607 nutriment,1,timonofathens,1607 backwardly,1,timonofathens,1607 freedom,1,timonofathens,1607 purity,1,timonofathens,1607 Misanthropos,1,timonofathens,1607 lesser,1,timonofathens,1607 toss'd,1,timonofathens,1607 Senate,1,timonofathens,1607 boar,1,timonofathens,1607 slippery,1,timonofathens,1607 asked,1,timonofathens,1607 believe't,1,timonofathens,1607 visitation,1,timonofathens,1607 moving,1,timonofathens,1607 companies,1,timonofathens,1607 counterpoise,1,timonofathens,1607 lobbies,1,timonofathens,1607 solidares,1,timonofathens,1607 riotous,1,timonofathens,1607 stealth,1,timonofathens,1607 discovery,1,timonofathens,1607 owners,1,timonofathens,1607 Perchance,1,timonofathens,1607 deserve,1,timonofathens,1607 godheads,1,timonofathens,1607 seeking,1,timonofathens,1607 lasts,1,timonofathens,1607 Mistake,1,timonofathens,1607 Newly,1,timonofathens,1607 flashes,1,timonofathens,1607 suns,1,timonofathens,1607 customs,1,timonofathens,1607 cherubim,1,timonofathens,1607 throned,1,timonofathens,1607 I'd,1,timonofathens,1607 afflict,1,timonofathens,1607 quickening,1,timonofathens,1607 Wrought,1,timonofathens,1607 faithfully,1,timonofathens,1607 returned,1,timonofathens,1607 conception,1,timonofathens,1607 body,1,timonofathens,1607 antidotes,1,timonofathens,1607 courtly,1,timonofathens,1607 wrench,1,timonofathens,1607 thou't,1,timonofathens,1607 purses,1,timonofathens,1607 ages,1,timonofathens,1607 opulency,1,timonofathens,1607 think'st,1,timonofathens,1607 german,1,timonofathens,1607 noised,1,timonofathens,1607 jeweller,1,timonofathens,1607 dispossess,1,timonofathens,1607 broach,1,timonofathens,1607 Dues,1,timonofathens,1607 felon,1,timonofathens,1607 walk,1,timonofathens,1607 saying,1,timonofathens,1607 illustrious,1,timonofathens,1607 thatch,1,timonofathens,1607 Apemantus',1,timonofathens,1607 mocking,1,timonofathens,1607 Deserved,1,timonofathens,1607 throngs,1,timonofathens,1607 deceives,1,timonofathens,1607 'When,1,timonofathens,1607 touches,1,timonofathens,1607 famish'd,1,timonofathens,1607 throne,1,timonofathens,1607 suit,1,timonofathens,1607 scorn,1,timonofathens,1607 snatches,1,timonofathens,1607 spy,1,timonofathens,1607 observances,1,timonofathens,1607 concern,1,timonofathens,1607 forsake,1,timonofathens,1607 score,1,timonofathens,1607 peril,1,timonofathens,1607 cradle,1,timonofathens,1607 suitable,1,timonofathens,1607 sow,1,timonofathens,1607 son,1,timonofathens,1607 skill,1,timonofathens,1607 Candied,1,timonofathens,1607 raised,1,timonofathens,1607 plenty,1,timonofathens,1607 unhoused,1,timonofathens,1607 Common,1,timonofathens,1607 looking,1,timonofathens,1607 where's,1,timonofathens,1607 'I,1,timonofathens,1607 dividant,1,timonofathens,1607 dignities,1,timonofathens,1607 exceptless,1,timonofathens,1607 attends,1,timonofathens,1607 Magic,1,timonofathens,1607 Flinty,1,timonofathens,1607 's,1,timonofathens,1607 livery,1,timonofathens,1607 testament,1,timonofathens,1607 acquainted,1,timonofathens,1607 second,1,timonofathens,1607 middle,1,timonofathens,1607 hunted,1,timonofathens,1607 wages,1,timonofathens,1607 level,1,timonofathens,1607 instruct,1,timonofathens,1607 groans,1,timonofathens,1607 Other,1,timonofathens,1607 suck,1,timonofathens,1607 yonder's,1,timonofathens,1607 mother,1,timonofathens,1607 thin,1,timonofathens,1607 bridge,1,timonofathens,1607 Cripple,1,timonofathens,1607 quittance,1,timonofathens,1607 Athenian's,1,timonofathens,1607 sends,1,timonofathens,1607 throes,1,timonofathens,1607 poverty,1,timonofathens,1607 cheers,1,timonofathens,1607 bray'd,1,timonofathens,1607 satiety,1,timonofathens,1607 declining,1,timonofathens,1607 minion,1,timonofathens,1607 offence,1,timonofathens,1607 diligent,1,timonofathens,1607 vile,1,timonofathens,1607 everlasting,1,timonofathens,1607 Immortal,1,timonofathens,1607 tapsters,1,timonofathens,1607 heavens,1,timonofathens,1607 guide,1,timonofathens,1607 recoverable,1,timonofathens,1607 fight,1,timonofathens,1607 passes,1,timonofathens,1607 hautboys,1,timonofathens,1607 readiest,1,timonofathens,1607 snow,1,timonofathens,1607 receives,1,timonofathens,1607 points,1,timonofathens,1607 unkindly,1,timonofathens,1607 monster,1,timonofathens,1607 unclew,1,timonofathens,1607 compassion,1,timonofathens,1607 enforcedly,1,timonofathens,1607 Settlest,1,timonofathens,1607 courtier,1,timonofathens,1607 Be't,1,timonofathens,1607 shower,1,timonofathens,1607 twelve,1,timonofathens,1607 ways,1,timonofathens,1607 Officers,1,timonofathens,1607 give't,1,timonofathens,1607 bore,1,timonofathens,1607 loathes,1,timonofathens,1607 estimate,1,timonofathens,1607 imported,1,timonofathens,1607 figure,1,timonofathens,1607 Owe,1,timonofathens,1607 personate,1,timonofathens,1607 civil,1,timonofathens,1607 proceeded,1,timonofathens,1607 accepts,1,timonofathens,1607 comely,1,timonofathens,1607 direct,1,timonofathens,1607 absence,1,timonofathens,1607 Whereon,1,timonofathens,1607 draughts,1,timonofathens,1607 Willing,1,timonofathens,1607 encounter'd,1,timonofathens,1607 'ldst,1,timonofathens,1607 exceeding,1,timonofathens,1607 loathed,1,timonofathens,1607 Flavius,1,timonofathens,1607 cashiered,1,timonofathens,1607 abhorr'd,1,timonofathens,1607 confer,1,timonofathens,1607 coil's,1,timonofathens,1607 commit,1,timonofathens,1607 cherish,1,timonofathens,1607 virgin's,1,timonofathens,1607 Sound,1,timonofathens,1607 Pardon,1,timonofathens,1607 expedition,1,timonofathens,1607 showers,1,timonofathens,1607 austere,1,timonofathens,1607 willing,1,timonofathens,1607 master',1,timonofathens,1607 flattered,1,timonofathens,1607 thaw,1,timonofathens,1607 Whilst,1,timonofathens,1607 crossing,1,timonofathens,1607 sue,1,timonofathens,1607 physicians,1,timonofathens,1607 govern'd,1,timonofathens,1607 Buried,1,timonofathens,1607 uncharged,1,timonofathens,1607 elder,1,timonofathens,1607 vanity,1,timonofathens,1607 companion,1,timonofathens,1607 reverence,1,timonofathens,1607 fearful,1,timonofathens,1607 bride,1,timonofathens,1607 painfully,1,timonofathens,1607 Want,1,timonofathens,1607 thing's,1,timonofathens,1607 accompanying,1,timonofathens,1607 fees,1,timonofathens,1607 Spare,1,timonofathens,1607 cleave,1,timonofathens,1607 grow,1,timonofathens,1607 directed,1,timonofathens,1607 descend,1,timonofathens,1607 brief,1,timonofathens,1607 neighbourhood,1,timonofathens,1607 suffering,1,timonofathens,1607 baser,1,timonofathens,1607 brink,1,timonofathens,1607 ancient,1,timonofathens,1607 Banishment,1,timonofathens,1607 captainship,1,timonofathens,1607 wind,1,timonofathens,1607 rude,1,timonofathens,1607 wing,1,timonofathens,1607 wishes,1,timonofathens,1607 wink,1,timonofathens,1607 prevent,1,timonofathens,1607 prized,1,timonofathens,1607 redeem'd,1,timonofathens,1607 porter,1,timonofathens,1607 putting,1,timonofathens,1607 professions,1,timonofathens,1607 Fly,1,timonofathens,1607 soldier,1,timonofathens,1607 rejoices,1,timonofathens,1607 humidity,1,timonofathens,1607 coins,1,timonofathens,1607 vestments,1,timonofathens,1607 wished,1,timonofathens,1607 language,1,timonofathens,1607 moneys,1,timonofathens,1607 sphere,1,timonofathens,1607 rarely,1,timonofathens,1607 Might,1,timonofathens,1607 Blow,1,timonofathens,1607 night's,1,timonofathens,1607 spital,1,timonofathens,1607 seems,1,timonofathens,1607 latter,1,timonofathens,1607 length,1,timonofathens,1607 knees,1,timonofathens,1607 Contain,1,timonofathens,1607 usury,1,timonofathens,1607 expressly,1,timonofathens,1607 peasants,1,timonofathens,1607 clamourous,1,timonofathens,1607 crisp,1,timonofathens,1607 Duty,1,timonofathens,1607 dedication,1,timonofathens,1607 wipe,1,timonofathens,1607 Suspect,1,timonofathens,1607 Taste,1,timonofathens,1607 trifles,1,timonofathens,1607 puff'd,1,timonofathens,1607 renew,1,timonofathens,1607 requests,1,timonofathens,1607 seest,1,timonofathens,1607 died,1,timonofathens,1607 abhorr'dst,1,timonofathens,1607 approachers,1,timonofathens,1607 thrown,1,timonofathens,1607 displeasure,1,timonofathens,1607 pierce,1,timonofathens,1607 window,1,timonofathens,1607 world's,1,timonofathens,1607 penurious,1,timonofathens,1607 bidding,1,timonofathens,1607 malady,1,timonofathens,1607 harbour,1,timonofathens,1607 pitch'd,1,timonofathens,1607 wars,1,timonofathens,1607 crouching,1,timonofathens,1607 breeding,1,timonofathens,1607 Throng'd,1,timonofathens,1607 Burn,1,timonofathens,1607 melted,1,timonofathens,1607 distress,1,timonofathens,1607 dich,1,timonofathens,1607 gesture,1,timonofathens,1607 wits,1,timonofathens,1607 roofs,1,timonofathens,1607 book,1,timonofathens,1607 seethe,1,timonofathens,1607 marrow,1,timonofathens,1607 manhood,1,timonofathens,1607 Supply,1,timonofathens,1607 bright,1,timonofathens,1607 gramercy,1,timonofathens,1607 framed,1,timonofathens,1607 feeders,1,timonofathens,1607 uncheque'd,1,timonofathens,1607 Draw,1,timonofathens,1607 objects,1,timonofathens,1607 hungry,1,timonofathens,1607 rioter,1,timonofathens,1607 conquer,1,timonofathens,1607 respectively,1,timonofathens,1607 fairest,1,timonofathens,1607 aspect,1,timonofathens,1607 sprinkles,1,timonofathens,1607 big,1,timonofathens,1607 senses,1,timonofathens,1607 shorter,1,timonofathens,1607 wherefore,1,timonofathens,1607 drove,1,timonofathens,1607 sacrificial,1,timonofathens,1607 preferr'd,1,timonofathens,1607 regardfully,1,timonofathens,1607 life's,1,timonofathens,1607 chamber,1,timonofathens,1607 stir,1,timonofathens,1607 sequence,1,timonofathens,1607 unkind,1,timonofathens,1607 Leaving,1,timonofathens,1607 bountifully,1,timonofathens,1607 Hold,1,timonofathens,1607 hap,1,timonofathens,1607 visible,1,timonofathens,1607 hat,1,timonofathens,1607 backs,1,timonofathens,1607 contumelious,1,timonofathens,1607 wanting,1,timonofathens,1607 measure,1,timonofathens,1607 resemble,1,timonofathens,1607 'Twere,1,timonofathens,1607 flattery,1,timonofathens,1607 perfection,1,timonofathens,1607 infection,1,timonofathens,1607 Am,1,timonofathens,1607 showing,1,timonofathens,1607 activity,1,timonofathens,1607 leech,1,timonofathens,1607 Walks,1,timonofathens,1607 transformation,1,timonofathens,1607 scarce,1,timonofathens,1607 motives,1,timonofathens,1607 box,1,timonofathens,1607 boy,1,timonofathens,1607 grise,1,timonofathens,1607 strangers,1,timonofathens,1607 knowing,1,timonofathens,1607 traversed,1,timonofathens,1607 hew,1,timonofathens,1607 hem,1,timonofathens,1607 La,1,timonofathens,1607 Having,1,timonofathens,1607 spots,1,timonofathens,1607 Play,1,timonofathens,1607 Drink,1,timonofathens,1607 unmanly,1,timonofathens,1607 inclined,1,timonofathens,1607 bay,1,timonofathens,1607 harlot,1,timonofathens,1607 siege,1,timonofathens,1607 perfume,1,timonofathens,1607 pays,1,timonofathens,1607 Matrons,1,timonofathens,1607 Ceremony,1,timonofathens,1607 Woods,1,timonofathens,1607 cruel,1,timonofathens,1607 creature,1,timonofathens,1607 beautiful,1,timonofathens,1607 star,1,timonofathens,1607 exceed,1,timonofathens,1607 void,1,timonofathens,1607 conflicting,1,timonofathens,1607 stab,1,timonofathens,1607 Decline,1,timonofathens,1607 sings,1,timonofathens,1607 Derive,1,timonofathens,1607 pawn,1,timonofathens,1607 hid,1,timonofathens,1607 finds,1,timonofathens,1607 Asses,1,timonofathens,1607 wisdom,1,timonofathens,1607 conceived,1,timonofathens,1607 oathable,1,timonofathens,1607 remainder,1,timonofathens,1607 personating,1,timonofathens,1607 hit,1,timonofathens,1607 Something,1,timonofathens,1607 Loaden,1,timonofathens,1607 beg,1,timonofathens,1607 Raise,1,timonofathens,1607 requires,1,timonofathens,1607 unruly,1,timonofathens,1607 blest,1,timonofathens,1607 rigg'st,1,timonofathens,1607 Religious,1,timonofathens,1607 surely,1,timonofathens,1607 ruffians,1,timonofathens,1607 Piety,1,timonofathens,1607 denial,1,timonofathens,1607 than's,1,timonofathens,1607 added,1,timonofathens,1607 play,1,timonofathens,1607 sport,1,timonofathens,1607 adder,1,timonofathens,1607 buys,1,timonofathens,1607 troops,1,timonofathens,1607 meals,1,timonofathens,1607 unmatched,1,timonofathens,1607 pox,1,timonofathens,1607 Scarce,1,timonofathens,1607 VI,1,timonofathens,1607 matches,1,timonofathens,1607 misbegot,1,timonofathens,1607 Gold,1,timonofathens,1607 nobly,1,timonofathens,1607 Lights,1,timonofathens,1607 shunn'd,1,timonofathens,1607 allure,1,timonofathens,1607 temple,1,timonofathens,1607 obey,1,timonofathens,1607 fashionable,1,timonofathens,1607 ulcerous,1,timonofathens,1607 Retires,1,timonofathens,1607 Forgive,1,timonofathens,1607 bums,1,timonofathens,1607 liquorish,1,timonofathens,1607 whisperings,1,timonofathens,1607 mountain's,1,timonofathens,1607 resolves,1,timonofathens,1607 minstrelsy,1,timonofathens,1607 Thou'rt,1,timonofathens,1607 bulk,1,timonofathens,1607 abides,1,timonofathens,1607 Drum,1,timonofathens,1607 whereby,1,timonofathens,1607 canker,1,timonofathens,1607 metal,1,timonofathens,1607 bush,1,timonofathens,1607 days',1,timonofathens,1607 Present,1,timonofathens,1607 bury,1,timonofathens,1607 prolong,1,timonofathens,1607 suffer'd,1,timonofathens,1607 whoso,1,timonofathens,1607 sorts,1,timonofathens,1607 covetously,1,timonofathens,1607 presentment,1,timonofathens,1607 children,1,timonofathens,1607 saw'st,1,timonofathens,1607 struck,1,timonofathens,1607 reeking,1,timonofathens,1607 Consuming,1,timonofathens,1607 bankrupts,1,timonofathens,1607 awaked,1,timonofathens,1607 desirous,1,timonofathens,1607 erection,1,timonofathens,1607 accounts,1,timonofathens,1607 Surely,1,timonofathens,1607 friends',1,timonofathens,1607 strives,1,timonofathens,1607 Slink,1,timonofathens,1607 immediate,1,timonofathens,1607 hungerly,1,timonofathens,1607 devised,1,timonofathens,1607 weightier,1,timonofathens,1607 learned,1,timonofathens,1607 weak,1,timonofathens,1607 weal,1,timonofathens,1607 latest,1,timonofathens,1607 kindnesses,1,timonofathens,1607 Breath,1,timonofathens,1607 Entreat,1,timonofathens,1607 infectious,1,timonofathens,1607 Behold,1,timonofathens,1607 Labouring,1,timonofathens,1607 Doubled,1,timonofathens,1607 sustain,1,timonofathens,1607 gum,1,timonofathens,1607 Happier,1,timonofathens,1607 buildings,1,timonofathens,1607 planetary,1,timonofathens,1607 equals,1,timonofathens,1607 Plays,1,timonofathens,1607 plough,1,timonofathens,1607 Phrynia,1,timonofathens,1607 gore,1,timonofathens,1607 Tucket,1,timonofathens,1607 usurers,1,timonofathens,1607 Prescribe,1,timonofathens,1607 cauterizing,1,timonofathens,1607 twice,1,timonofathens,1607 persuasion,1,timonofathens,1607 gaol,1,timonofathens,1607 silk,1,timonofathens,1607 tedious,1,timonofathens,1607 degree,1,timonofathens,1607 apprehendest,1,timonofathens,1607 vaults,1,timonofathens,1607 swift,1,timonofathens,1607 likest,1,timonofathens,1607 vows,1,timonofathens,1607 mystery,1,timonofathens,1607 towardly,1,timonofathens,1607 Above,1,timonofathens,1607 preserve,1,timonofathens,1607 cruelly,1,timonofathens,1607 Enough,1,timonofathens,1607 admired,1,timonofathens,1607 swine,1,timonofathens,1607 couch'd,1,timonofathens,1607 sins,1,timonofathens,1607 Toad,1,timonofathens,1607 gate,1,timonofathens,1607 Uncover,1,timonofathens,1607 'Twas,1,timonofathens,1607 harlots,1,timonofathens,1607 beds,1,timonofathens,1607 Translates,1,timonofathens,1607 sister's,1,timonofathens,1607 Whither,1,timonofathens,1607 ashamed,1,timonofathens,1607 religions,1,timonofathens,1607 immortal,1,timonofathens,1607 lately,1,timonofathens,1607 resort,1,timonofathens,1607 trades,1,timonofathens,1607 hurts,1,timonofathens,1607 opens,1,timonofathens,1607 begin,1,timonofathens,1607 Name,1,timonofathens,1607 chafes,1,timonofathens,1607 uses,1,timonofathens,1607 arrogant,1,timonofathens,1607 noted,1,timonofathens,1607 storm,1,timonofathens,1607 Lips,1,timonofathens,1607 singles,1,timonofathens,1607 affection,1,timonofathens,1607 promised,1,timonofathens,1607 courier,1,timonofathens,1607 harness,1,timonofathens,1607 mood,1,timonofathens,1607 plate,1,timonofathens,1607 papers,1,timonofathens,1607 betray,1,timonofathens,1607 clear'd,1,timonofathens,1607 voyage,1,timonofathens,1607 impossibilities,1,timonofathens,1607 keeping,1,timonofathens,1607 consecrated,1,timonofathens,1607 doit,1,timonofathens,1607 repent,1,timonofathens,1607 faster,1,timonofathens,1607 Best,1,timonofathens,1607 consider,1,timonofathens,1607 current,1,timonofathens,1607 deck,1,timonofathens,1607 truest,1,timonofathens,1607 wreck,1,timonofathens,1607 stool,1,timonofathens,1607 gain,1,timonofathens,1607 captains',1,timonofathens,1607 tongues,1,timonofathens,1607 Pass,1,timonofathens,1607 notes,1,timonofathens,1607 ago,1,timonofathens,1607 caitiff,1,timonofathens,1607 gilt,1,timonofathens,1607 expose,1,timonofathens,1607 Scorn'dst,1,timonofathens,1607 liberal,1,timonofathens,1607 gait,1,timonofathens,1607 deaf,1,timonofathens,1607 worthily,1,timonofathens,1607 likely,1,timonofathens,1607 befriend,1,timonofathens,1607 Pays,1,timonofathens,1607 interim,1,timonofathens,1607 Teems,1,timonofathens,1607 Besides,1,timonofathens,1607 Return,1,timonofathens,1607 redress,1,timonofathens,1607 icy,1,timonofathens,1607 Plagues,1,timonofathens,1607 husband,1,timonofathens,1607 accused,1,timonofathens,1607 sects,1,timonofathens,1607 sack,1,timonofathens,1607 laughing,1,timonofathens,1607 Hyperion's,1,timonofathens,1607 bluster,1,timonofathens,1607 generally,1,timonofathens,1607 ice,1,timonofathens,1607 'Here,1,timonofathens,1607 outrunnest,1,timonofathens,1607 buried,1,timonofathens,1607 paintings,1,timonofathens,1607 makest,1,timonofathens,1607 comforts,1,timonofathens,1607 speed,1,timonofathens,1607 trusters',1,timonofathens,1607 Pawn,1,timonofathens,1607 memory,1,timonofathens,1607 au,1,timonofathens,1607 reckon,1,timonofathens,1607 slips,1,timonofathens,1607 clasp'd,1,timonofathens,1607 mindless,1,timonofathens,1607 botch'd,1,timonofathens,1607 sciatica,1,timonofathens,1607 fourscore,1,timonofathens,1607 newly,1,timonofathens,1607 bless'd,1,timonofathens,1607 ardent,1,timonofathens,1607 rumours,1,timonofathens,1607 sugar'd,1,timonofathens,1607 move,1,timonofathens,1607 approbation,1,timonofathens,1607 Yonder,1,timonofathens,1607 month,1,timonofathens,1607 crossed,1,timonofathens,1607 commendations,1,timonofathens,1607 wisely,1,timonofathens,1607 Others,1,timonofathens,1607 strait,1,timonofathens,1607 crave,1,timonofathens,1607 idly,1,timonofathens,1607 wrinkles,1,timonofathens,1607 gluttonous,1,timonofathens,1607 eyeless,1,timonofathens,1607 wrinkled,1,timonofathens,1607 requesting,1,timonofathens,1607 rampired,1,timonofathens,1607 Lays,1,timonofathens,1607 route,1,timonofathens,1607 Reads,1,timonofathens,1607 milky,1,timonofathens,1607 dog's,1,timonofathens,1607 Infects,1,timonofathens,1607 Ready,1,timonofathens,1607 temper,1,timonofathens,1607 crimes,1,timonofathens,1607 'twould,1,timonofathens,1607 applauding,1,timonofathens,1607 lover,1,timonofathens,1607 Hostilius,1,timonofathens,1607 stout,1,timonofathens,1607 loud,1,timonofathens,1607 shrilly,1,timonofathens,1607 offer'd,1,timonofathens,1607 Friendship's,1,timonofathens,1607 Yea,1,timonofathens,1607 alteration,1,timonofathens,1607 loss,1,timonofathens,1607 Wouldst,1,timonofathens,1607 'bove,1,timonofathens,1607 commands,1,timonofathens,1607 drift,1,timonofathens,1607 add,1,timonofathens,1607 dragons,1,timonofathens,1607 ample,1,timonofathens,1607 curl'd,1,timonofathens,1607 dumbness,1,timonofathens,1607 lest,1,timonofathens,1607 talkest,1,timonofathens,1607 potent,1,timonofathens,1607 dispose,1,timonofathens,1607 expel,1,timonofathens,1607 devil,1,timonofathens,1607 filling,1,timonofathens,1607 knot,1,timonofathens,1607 disport,1,timonofathens,1607 blue,1,timonofathens,1607 hostile,1,timonofathens,1607 greases,1,timonofathens,1607 necessary,1,timonofathens,1607 act,1,timonofathens,1607 straggling,1,timonofathens,1607 natured,1,timonofathens,1607 greater,1,timonofathens,1607 ready,1,timonofathens,1607 outrages,1,timonofathens,1607 Creep,1,timonofathens,1607 Admirable,1,timonofathens,1607 castigate,1,timonofathens,1607 serious,1,timonofathens,1607 tyrants,1,timonofathens,1607 attain,1,timonofathens,1607 journey,1,timonofathens,1607 triumphers,1,timonofathens,1607 benefactors,1,timonofathens,1607 oppressing,1,timonofathens,1607 Because,1,timonofathens,1607 incontinent,1,timonofathens,1607 toad,1,timonofathens,1607 load,1,timonofathens,1607 briers,1,timonofathens,1607 paps,1,timonofathens,1607 Came,1,timonofathens,1607 climb,1,timonofathens,1607 thrice,1,timonofathens,1607 killed,1,timonofathens,1607 wasteful,1,timonofathens,1607 graves,1,timonofathens,1607 Whence,1,timonofathens,1607 Seeing,1,timonofathens,1607 executed,1,timonofathens,1607 fierce,1,timonofathens,1607 slide,1,timonofathens,1607 axe,1,timonofathens,1607 Break,1,timonofathens,1607 weeks,1,timonofathens,1607 wards,1,timonofathens,1607 remember'd,1,timonofathens,1607 englutted,1,timonofathens,1607 afford,1,timonofathens,1607 hug,1,timonofathens,1607 manifold,1,timonofathens,1607 messenger,1,timonofathens,1607 crop,1,timonofathens,1607 knit,1,timonofathens,1607 senseless,1,timonofathens,1607 basest,1,timonofathens,1607 impression,1,timonofathens,1607 mysteries,1,timonofathens,1607 pale,1,timonofathens,1607 palm,1,timonofathens,1607 fashion'd,1,timonofathens,1607 employ'd,1,timonofathens,1607 thrift,1,timonofathens,1607 palate,1,timonofathens,1607 killer,1,timonofathens,1607 spur,1,timonofathens,1607 call'd,1,timonofathens,1607 treads,1,timonofathens,1607 interpret,1,timonofathens,1607 t',1,timonofathens,1607 appears,1,timonofathens,1607 consume,1,timonofathens,1607 Lady,1,timonofathens,1607 nobleness,1,timonofathens,1607 reach,1,timonofathens,1607 frequents,1,timonofathens,1607 Full,1,timonofathens,1607 thinkest,1,timonofathens,1607 plain,1,timonofathens,1607 surges,1,timonofathens,1607 feasted,1,timonofathens,1607 beweep,1,timonofathens,1607 pant,1,timonofathens,1607 joyful,1,timonofathens,1607 remembrances,1,timonofathens,1607 tract,1,timonofathens,1607 mighty,1,timonofathens,1607 halt,1,timonofathens,1607 perpetual,1,timonofathens,1607 pluck,1,timonofathens,1607 Push,1,timonofathens,1607 whether,1,timonofathens,1607 expect,1,timonofathens,1607 Under,1,timonofathens,1607 disfurnish,1,timonofathens,1607 She's,1,timonofathens,1607 kingdoms,1,timonofathens,1607 charmed,1,timonofathens,1607 Hug,1,timonofathens,1607 pain,1,timonofathens,1607 hangs,1,timonofathens,1607 Laid,1,timonofathens,1607 return'd,1,timonofathens,1607 winter's,1,timonofathens,1607 spit,1,timonofathens,1607 signet,1,timonofathens,1607 extremest,1,timonofathens,1607 mended,1,timonofathens,1607 trunks,1,timonofathens,1607 wretchedness,1,timonofathens,1607 apt,1,timonofathens,1607 exquisite,1,timonofathens,1607 point,1,timonofathens,1607 strive,1,timonofathens,1607 shakes,1,timonofathens,1607 howsoe'er,1,timonofathens,1607 owed,1,timonofathens,1607 Feign'd,1,timonofathens,1607 pack,1,timonofathens,1607 fear'd,1,timonofathens,1607 Interprets,1,timonofathens,1607 puts,1,timonofathens,1607 except,1,timonofathens,1607 awe,1,timonofathens,1607 consideration,1,timonofathens,1607 detested,1,timonofathens,1607 flatter'd,1,timonofathens,1607 Fell,1,timonofathens,1607 monstrousness,1,timonofathens,1607 braggarts,1,timonofathens,1607 companionship,1,timonofathens,1607 contain,1,timonofathens,1607 saints,1,timonofathens,1607 bearer,1,timonofathens,1607 unthrift,1,timonofathens,1607 excess,1,timonofathens,1607 outsides,1,timonofathens,1607 courser,1,timonofathens,1607 froze,1,timonofathens,1607 fresh,1,timonofathens,1607 rear'd,1,timonofathens,1607 unkindest,1,timonofathens,1607 Hoy,1,timonofathens,1607 monument,1,timonofathens,1607 beards,1,timonofathens,1607 hatest,1,timonofathens,1607 lock,1,timonofathens,1607 brevis,1,timonofathens,1607 fold,1,timonofathens,1607 alchemist,1,timonofathens,1607 armour,1,timonofathens,1607 mental,1,timonofathens,1607 poorer,1,timonofathens,1607 ceremoniously,1,timonofathens,1607 rother's,1,timonofathens,1607 Care,1,timonofathens,1607 hive,1,timonofathens,1607 Obedience,1,timonofathens,1607 Hast,1,timonofathens,1607 parents',1,timonofathens,1607 apperil,1,timonofathens,1607 lukewarm,1,timonofathens,1607 chance,1,timonofathens,1607 workmen,1,timonofathens,1607 olive,1,timonofathens,1607 attraction,1,timonofathens,1607 Kind,1,timonofathens,1607 ceased,1,timonofathens,1607 knock,1,timonofathens,1607 sprinkle,1,timonofathens,1607 boughs,1,timonofathens,1607 trick,1,timonofathens,1607 inquire,1,timonofathens,1607 Among,1,timonofathens,1607 Courteous,1,timonofathens,1607 glib,1,timonofathens,1607 hits,1,timonofathens,1607 paradox,1,timonofathens,1607 native,1,timonofathens,1607 Hard,1,timonofathens,1607 sweetly,1,timonofathens,1607 comparing,1,timonofathens,1607 Acknowledge,1,timonofathens,1607 varnish'd,1,timonofathens,1607 turncoats,1,timonofathens,1607 brain's,1,timonofathens,1607 token,1,timonofathens,1607 longing,1,timonofathens,1607 trial,1,timonofathens,1607 comfort'st,1,timonofathens,1607 baboon,1,timonofathens,1607 brain'd,1,timonofathens,1607 rivals,1,timonofathens,1607 slays,1,timonofathens,1607 Ask,1,timonofathens,1607 willingly,1,timonofathens,1607 superscription,1,timonofathens,1607 Hate,1,timonofathens,1607 beams,1,timonofathens,1607 hinge,1,timonofathens,1607 guest,1,timonofathens,1607 scolds,1,timonofathens,1607 fatterers,1,timonofathens,1607 moves,1,timonofathens,1607 doubtfully,1,timonofathens,1607 precedent,1,timonofathens,1607 spoken,1,timonofathens,1607 leaf,1,timonofathens,1607 Philotus,1,timonofathens,1607 height,1,timonofathens,1607 nobles,1,timonofathens,1607 witch,1,timonofathens,1607 Should,1,timonofathens,1607 births,1,timonofathens,1607 nods,1,timonofathens,1607 comma,1,timonofathens,1607 rarity,1,timonofathens,1607 Shows,1,timonofathens,1607 lean,1,timonofathens,1607 particularly,1,timonofathens,1607 delicate,1,timonofathens,1607 fitly,1,timonofathens,1607 Sevenfold,1,timonofathens,1607 leas,1,timonofathens,1607 render'd,1,timonofathens,1607 tried,1,timonofathens,1607 Sun,1,timonofathens,1607 glories,1,timonofathens,1607 Twinn'd,1,timonofathens,1607 incomparable,1,timonofathens,1607 pencill'd,1,timonofathens,1607 equal,1,timonofathens,1607 Pours,1,timonofathens,1607 Herself's,1,timonofathens,1607 point'st,1,timonofathens,1607 outlived,1,timonofathens,1607 carries,1,timonofathens,1607 shrunk,1,timonofathens,1607 nations,1,timonofathens,1607 unluckily,1,timonofathens,1607 apprehension,1,timonofathens,1607 Infect,1,timonofathens,1607 prisons,1,timonofathens,1607 rose,1,timonofathens,1607 rascals,1,timonofathens,1607 silence,1,timonofathens,1607 Knock,1,timonofathens,1607 express'd,1,timonofathens,1607 riding,1,timonofathens,1607 fiction,1,timonofathens,1607 faith,1,timonofathens,1607 Better,1,timonofathens,1607 thinks,1,timonofathens,1607 square,1,timonofathens,1607 nose,1,timonofathens,1607 envy,1,timonofathens,1607 Crack,1,timonofathens,1607 workman,1,timonofathens,1607 gavest,1,timonofathens,1607 levell'd,1,timonofathens,1607 seriously,1,timonofathens,1607 forfeited,1,timonofathens,1607 Henceforth,1,timonofathens,1607 hips,1,timonofathens,1607 Undone,1,timonofathens,1607 beats,1,timonofathens,1607 Security,1,timonofathens,1607 corporate,1,timonofathens,1607 conquer'd,1,timonofathens,1607 gently,1,timonofathens,1607 Peace,1,timonofathens,1607 dulness,1,timonofathens,1607 societies,1,timonofathens,1607 Believe't,1,timonofathens,1607 now's,1,timonofathens,1607 girdlest,1,timonofathens,1607 allows,1,timonofathens,1607 knewest,1,timonofathens,1607 vapours,1,timonofathens,1607 Coupled,1,timonofathens,1607 vantages,1,timonofathens,1607 donation,1,timonofathens,1607 disgraced,1,timonofathens,1607 slipp'd,1,timonofathens,1607 beard,1,timonofathens,1607 tigers,1,timonofathens,1607 spread,1,timonofathens,1607 limited,1,timonofathens,1607 traitors,1,timonofathens,1607 maws,1,timonofathens,1607 hide,1,timonofathens,1607 est,1,timonofathens,1607 year,1,timonofathens,1607 banners,1,timonofathens,1607 Alack,1,timonofathens,1607 ewer,1,timonofathens,1607 disclaim'st,1,timonofathens,1607 observed,1,timonofathens,1607 furor,1,timonofathens,1607 Tables,1,timonofathens,1607 burthens,1,timonofathens,1607 spokest,1,timonofathens,1607 behave,1,timonofathens,1607 slain,1,timonofathens,1607 broader,1,timonofathens,1607 jutting,1,timonofathens,1607 Soft,1,timonofathens,1607 Down,1,timonofathens,1607 exposed,1,timonofathens,1607 thankless,1,timonofathens,1607 chickens,1,timonofathens,1607 foresee,1,timonofathens,1607 Spurns,1,timonofathens,1607 visage,1,timonofathens,1607 learning,1,timonofathens,1607 Transformed,1,timonofathens,1607 Promise,1,timonofathens,1607 sticks,1,timonofathens,1607 quickly,1,timonofathens,1607 Rascals,1,timonofathens,1607 Royal,1,timonofathens,1607 you'll,1,timonofathens,1607 parting,1,timonofathens,1607 Slave,1,timonofathens,1607 springs,1,timonofathens,1607 Periods,1,timonofathens,1607 Approach,1,timonofathens,1607 Certain,1,timonofathens,1607 housewife,1,timonofathens,1607 forest,1,timonofathens,1607 places,1,timonofathens,1607 shall's,1,timonofathens,1607 awhile,1,timonofathens,1607 oblique,1,timonofathens,1607 gouty,1,timonofathens,1607 quarter,1,timonofathens,1607 sawest,1,timonofathens,1607 Degrees,1,timonofathens,1607 Doth,1,timonofathens,1607 Instruction,1,timonofathens,1607 leaving,1,timonofathens,1607 child,1,timonofathens,1607 mistresses,1,timonofathens,1607 grateful,1,timonofathens,1607 unusual,1,timonofathens,1607 question,1,timonofathens,1607 placed,1,timonofathens,1607 contraries,1,timonofathens,1607 discontent,1,timonofathens,1607 effect,1,timonofathens,1607 device,1,timonofathens,1607 strife,1,timonofathens,1607 likewise,1,timonofathens,1607 towards,1,timonofathens,1607 confluence,1,timonofathens,1607 blessings,1,timonofathens,1607 Destruction,1,timonofathens,1607 mile,1,timonofathens,1607 realms,1,timonofathens,1607 mild,1,timonofathens,1607 exchange,1,timonofathens,1607 wiser,1,timonofathens,1607 nod,1,timonofathens,1607 qualities,1,timonofathens,1607 prize,1,timonofathens,1607 meddlers,1,timonofathens,1607 approaches,1,timonofathens,1607 plead,1,timonofathens,1607 purposes,1,timonofathens,1607 bosoms,1,timonofathens,1607 enriched,1,timonofathens,1607 towers,1,timonofathens,1607 robbers,1,timonofathens,1607 redeem'st,1,timonofathens,1607 silenced,1,timonofathens,1607 seashore,1,timonofathens,1607 mutter,1,timonofathens,1607 dregs,1,timonofathens,1607 merrily,1,timonofathens,1607 confidence,1,timonofathens,1607 outgoes,1,timonofathens,1607 Promising,1,timonofathens,1607 blush,1,timonofathens,1607 wrought,1,timonofathens,1607 keeper,1,timonofathens,1607 bloods,1,timonofathens,1607 belong,1,timonofathens,1607 Could,1,timonofathens,1607 courage,1,timonofathens,1607 mass,1,timonofathens,1607 mast,1,timonofathens,1607 villanous,1,timonofathens,1607 tenth,1,timonofathens,1607 chief,1,timonofathens,1607 throughout,1,timonofathens,1607 Halts,1,timonofathens,1607 dream,1,timonofathens,1607 ranks,1,timonofathens,1607 injuries,1,timonofathens,1607 Sow,1,timonofathens,1607 raiment,1,timonofathens,1607 Son,1,timonofathens,1607 blot,1,timonofathens,1607 devils,1,timonofathens,1607 issue,1,timonofathens,1607 Weigh,1,timonofathens,1607 Thee,1,timonofathens,1607 forsook,1,timonofathens,1607 Crust,1,timonofathens,1607 Alcibiades',1,timonofathens,1607 infinitely,1,timonofathens,1607 Joy,1,timonofathens,1607 won,1,timonofathens,1607 craves,1,timonofathens,1607 Attempts,1,timonofathens,1607 tides,1,timonofathens,1607 Robs,1,timonofathens,1607 Allow'd,1,timonofathens,1607 dropping,1,timonofathens,1607 special,1,timonofathens,1607 heaven's,1,timonofathens,1607 arch,1,timonofathens,1607 benefit,1,timonofathens,1607 composture,1,timonofathens,1607 seal'd,1,timonofathens,1607 threatening,1,timonofathens,1607 father's,1,timonofathens,1607 balsam,1,timonofathens,1607 Eating,1,timonofathens,1607 missing,1,timonofathens,1607 bleak,1,timonofathens,1607 snare,1,timonofathens,1607 trifle,1,timonofathens,1607 heaviest,1,timonofathens,1607 apart,1,timonofathens,1607 marvel,1,timonofathens,1607 cheeked,1,timonofathens,1607 greediness,1,timonofathens,1607 impiety,1,timonofathens,1607 horrible,1,timonofathens,1607 oil,1,timonofathens,1607 blasted,1,timonofathens,1607 desires,1,timonofathens,1607 Giving,1,timonofathens,1607 compounds,1,timonofathens,1607 wed,1,timonofathens,1607 forgiven,1,timonofathens,1607 ones,1,timonofathens,1607 Hautboys,1,timonofathens,1607 stain,1,timonofathens,1607 Feasts,1,timonofathens,1607 sans,1,timonofathens,1607 Wert,1,timonofathens,1607 breed,1,timonofathens,1607 deny'st,1,timonofathens,1607 oaks,1,timonofathens,1607 Sempronius',1,timonofathens,1607 Coming,1,timonofathens,1607 passage,1,timonofathens,1607 maids,1,timonofathens,1607 opinion,1,timonofathens,1607 'Twixt,1,timonofathens,1607 semblable,1,timonofathens,1607 stint,1,timonofathens,1607 repugnancy,1,timonofathens,1607 fevers,1,timonofathens,1607 merits,1,timonofathens,1607 'No,1,timonofathens,1607 rogues,1,timonofathens,1607 inferr'd,1,timonofathens,1607 neck,1,timonofathens,1607 Maid,1,timonofathens,1607 Forgetting,1,timonofathens,1607 dishonour,1,timonofathens,1607 vines,1,timonofathens,1607 Denied,1,timonofathens,1607 fragment,1,timonofathens,1607 stamp,1,timonofathens,1607 amplest,1,timonofathens,1607 disdains,1,timonofathens,1607 oft,1,timonofathens,1607 message,1,timonofathens,1607 We'll,1,timonofathens,1607 Confounded,1,timonofathens,1607 proposed,1,timonofathens,1607 hateful,1,timonofathens,1607 operant,1,timonofathens,1607 stomach,1,timonofathens,1607 curb,1,timonofathens,1607 cross'd,1,timonofathens,1607 Bowing,1,timonofathens,1607 bread,1,timonofathens,1607 detestable,1,timonofathens,1607 swath,1,timonofathens,1607 youngest,1,timonofathens,1607 says,1,timonofathens,1607 bawds,1,timonofathens,1607 Creditors,1,timonofathens,1607 services,1,timonofathens,1607 retentive,1,timonofathens,1607 loving,1,timonofathens,1607 third,1,timonofathens,1607 upright,1,timonofathens,1607 binds,1,timonofathens,1607 traffic,1,timonofathens,1607 sitting,1,timonofathens,1607 banish'd,1,timonofathens,1607 holier,1,timonofathens,1607 abandon,1,timonofathens,1607 Recanting,1,timonofathens,1607 pours,1,timonofathens,1607 moment,1,timonofathens,1607 trenchant,1,timonofathens,1607 influence,1,timonofathens,1607 sermon,1,timonofathens,1607 addressing,1,timonofathens,1607 bestow'd,1,timonofathens,1607 walks,1,timonofathens,1607 handed,1,timonofathens,1607 oak,1,timonofathens,1607 corner'd,1,timonofathens,1607 reverend'st,1,timonofathens,1607 'mong,1,timonofathens,1607 files,1,timonofathens,1607 heaps,1,timonofathens,1607 Rogue,1,timonofathens,1607 differ,1,timonofathens,1607 healths,1,timonofathens,1607 residence,1,timonofathens,1607 Ducks,1,timonofathens,1607 ripe,1,timonofathens,1607 Subdues,1,timonofathens,1607 standing,1,timonofathens,1607 They're,1,timonofathens,1607 save,1,timonofathens,1607 count,1,timonofathens,1607 fragile,1,timonofathens,1607 refuge,1,timonofathens,1607 insculpture,1,timonofathens,1607 flint,1,timonofathens,1607 licentious,1,timonofathens,1607 venom'd,1,timonofathens,1607 protection,1,timonofathens,1607 unaptness,1,timonofathens,1607 Drowns,1,timonofathens,1607 liked,1,timonofathens,1607 Dian's,1,timonofathens,1607 copies,1,timonofathens,1607 forerunner,1,timonofathens,1607 'We,1,timonofathens,1607 dust,1,timonofathens,1607 called,1,timonofathens,1607 procreation,1,timonofathens,1607 mountant,1,timonofathens,1607 Hereafter,1,timonofathens,1607 quarrelling,1,timonofathens,1607 profitably,1,timonofathens,1607 Throw,1,timonofathens,1607 flourish,1,timonofathens,1607 spacious,1,timonofathens,1607 duty,1,timonofathens,1607 Cap,1,timonofathens,1607 Worthy,1,timonofathens,1607 trusts,1,timonofathens,1607 Unwisely,1,timonofathens,1607 arms,1,timonofathens,1607 confectionary,1,timonofathens,1607 drives,1,timonofathens,1607 between,1,timonofathens,1607 unpeaceable,1,timonofathens,1607 intent,1,timonofathens,1607 oath,1,timonofathens,1607 bleed,1,timonofathens,1607 girdle,1,timonofathens,1607 Expecting,1,timonofathens,1607 shudders,1,timonofathens,1607 danger,1,timonofathens,1607 forward,1,timonofathens,1607 Immediate,1,timonofathens,1607 extoll'd,1,timonofathens,1607 rags,1,timonofathens,1607 dying,1,timonofathens,1607 bereft,1,timonofathens,1607 Eats,1,timonofathens,1607 covetous,1,timonofathens,1607 admitted,1,timonofathens,1607 apace,1,timonofathens,1607 peradventure,1,timonofathens,1607 vessels,1,timonofathens,1607 wont,1,timonofathens,1607 supper,1,timonofathens,1607 warmth,1,timonofathens,1607 women's,1,timonofathens,1607 Outlives,1,timonofathens,1607 counterfeit'st,1,timonofathens,1607 threats,1,timonofathens,1607 Consumptions,1,timonofathens,1607 chamberlain,1,timonofathens,1607 caught,1,timonofathens,1607 Warr'st,1,timonofathens,1607 detention,1,timonofathens,1607 irons,1,timonofathens,1607 newt,1,timonofathens,1607 adored,1,timonofathens,1607 cull,1,timonofathens,1607 discover'd,1,timonofathens,1607 mightily,1,timonofathens,1607 fact,1,timonofathens,1607 raging,1,timonofathens,1607 Rid,1,timonofathens,1607 unctuous,1,timonofathens,1607 husbandry,1,timonofathens,1607 prompt,1,timonofathens,1607 agree,1,timonofathens,1607 bruit,1,timonofathens,1607 baseness,1,timonofathens,1607 Abroad,1,timonofathens,1607 dreamt,1,timonofathens,1607 mettle,1,timonofathens,1607 thankfulness,1,timonofathens,1607 Bid,1,timonofathens,1607 joints,1,timonofathens,1607 ransom,1,timonofathens,1607 worships,1,timonofathens,1607 rages,1,timonofathens,1607 faced,1,timonofathens,1607 estates,1,timonofathens,1607 marry,1,timonofathens,1607 reports,1,timonofathens,1607 purest,1,timonofathens,1607 demonstrate,1,timonofathens,1607 put'st,1,timonofathens,1607 Touches,1,timonofathens,1607 size,1,timonofathens,1607 fife,1,timonofathens,1607 coffer,1,timonofathens,1607 vicious,1,timonofathens,1607 passive,1,timonofathens,1607 courteously,1,timonofathens,1607 require,1,timonofathens,1607 spleen,1,timonofathens,1607 killing,1,timonofathens,1607 god's,1,timonofathens,1607 opposite,1,timonofathens,1607 sways,1,timonofathens,1607 knight,1,timonofathens,1607 tubs,1,timonofathens,1607 leisures,1,timonofathens,1607 dull,1,timonofathens,1607 supple,1,timonofathens,1607 virtuously,1,timonofathens,1607 wooer,1,timonofathens,1607 waste,1,timonofathens,1607 Reciting,1,timonofathens,1607 ope,1,timonofathens,1607 falling,1,timonofathens,1607 solder'st,1,timonofathens,1607 went,1,timonofathens,1607 discontents,1,timonofathens,1607 whence,1,timonofathens,1607 unfortunate,1,timonofathens,1607 fill'd,1,timonofathens,1607 'ld,1,timonofathens,1607 watching,1,timonofathens,1607 satire,1,timonofathens,1607 mince,1,timonofathens,1607 Senator's,1,timonofathens,1607 grass,1,timonofathens,1607 compare,1,timonofathens,1607 Show,1,timonofathens,1607 fain,1,timonofathens,1607 Rob,1,timonofathens,1607 'll,1,timonofathens,1607 hunger,1,timonofathens,1607 inwardly,1,timonofathens,1607 bruise,1,timonofathens,1607 flatter'st,1,timonofathens,1607 ground,1,timonofathens,1607 wanted,1,timonofathens,1607 character,1,timonofathens,1607 Time,1,timonofathens,1607 diseased,1,timonofathens,1607 judge,1,timonofathens,1607 giving,1,timonofathens,1607 modesty,1,timonofathens,1607 stolen,1,timonofathens,1607 covered,1,timonofathens,1607 flatterer's,1,timonofathens,1607 diamonds,1,timonofathens,1607 decimation,1,timonofathens,1607 unlearn'd,1,timonofathens,1607 cares,1,timonofathens,1607 orb,1,timonofathens,1607 embossed,1,timonofathens,1607 sin's,1,timonofathens,1607 Hadst,1,timonofathens,1607 affable,1,timonofathens,1607 quell,1,timonofathens,1607 Supported,1,timonofathens,1607 swells,1,timonofathens,1607 churl,1,timonofathens,1607 gratulate,1,timonofathens,1607 race,1,timonofathens,1607 withstanding,1,timonofathens,1607 scorns,1,timonofathens,1607 worm,1,timonofathens,1607 endeared,1,timonofathens,1607 curiosity,1,timonofathens,1607 letter,1,timonofathens,1607 multiplying,1,timonofathens,1607 righteous,1,timonofathens,1607 fang,1,timonofathens,1607 do't,1,timonofathens,1607 brush,1,timonofathens,1607 dancing,1,timonofathens,1607 Mars,1,timonofathens,1607 'Commend,1,timonofathens,1607 flame,1,timonofathens,1607 minute,1,timonofathens,1607 Mark,1,timonofathens,1607 offices,1,timonofathens,1607 grape,1,timonofathens,1607 perfect,1,timonofathens,1607 fine,1,timonofathens,1607 profit,1,timonofathens,1607 stains,1,timonofathens,1607 moderate,1,timonofathens,1607 pleases,1,timonofathens,1607 Attend,1,timonofathens,1607 unagreeable,1,timonofathens,1607 savage,1,timonofathens,1607 continue,1,timonofathens,1607 engaged,1,timonofathens,1607 assume,1,timonofathens,1607 damnation,1,timonofathens,1607 oozes,1,timonofathens,1607 blister,1,timonofathens,1607 folly,1,timonofathens,1607 Domestic,1,timonofathens,1607 Beats,1,timonofathens,1607 Taught,1,timonofathens,1607 Near,1,timonofathens,1607 niggard,1,timonofathens,1607 wide,1,timonofathens,1607 Unto,1,timonofathens,1607 divers,1,timonofathens,1607 lined,1,timonofathens,1607 fawn,1,timonofathens,1607 Byzantium,1,timonofathens,1607 ye're,1,timonofathens,1607 vex,1,timonofathens,1607 chiefly,1,timonofathens,1607 mates,1,timonofathens,1607 betters,1,timonofathens,1607 importunacy,1,timonofathens,1607 yells,1,timonofathens,1607 turbulent,1,timonofathens,1607 bate,1,timonofathens,1607 Beast,1,timonofathens,1607 bars,1,timonofathens,1607 meaning,1,timonofathens,1607 gilded,1,timonofathens,1607 Four,1,timonofathens,1607 wax'd,1,timonofathens,1607 predominate,1,timonofathens,1607 dispraise,1,timonofathens,1607 dialogue,1,timonofathens,1607 morsels,1,timonofathens,1607 votarist,1,timonofathens,1607 droplets,1,timonofathens,1607 cock,1,timonofathens,1607 band,1,timonofathens,1607 flamen,1,timonofathens,1607 balm,1,timonofathens,1607 Striving,1,timonofathens,1607 bounds,1,timonofathens,1607 quillets,1,timonofathens,1607 trapp'd,1,timonofathens,1607 prefer,1,timonofathens,1607 softness,1,timonofathens,1607 named,1,timonofathens,1607 bill,1,timonofathens,1607 Welcome,1,timonofathens,1607 feeble,1,timonofathens,1607 shepherd,1,timonofathens,1607 lag,1,timonofathens,1607 ache,1,timonofathens,1607 tale,1,timonofathens,1607 talk,1,timonofathens,1607 bans,1,timonofathens,1607 Hymen's,1,timonofathens,1607 source,1,timonofathens,1607 affliction,1,timonofathens,1607 welcomes,1,timonofathens,1607 fruitful,1,timonofathens,1607 parasites,1,timonofathens,1607 sufficient,1,timonofathens,1607 wappen'd,1,timonofathens,1607 unwise,1,timonofathens,1607 shops,1,timonofathens,1607 Worse,1,timonofathens,1607 Rascal,1,timonofathens,1607 torment,1,timonofathens,1607 carry,1,timonofathens,1607 tutors,1,timonofathens,1607 reproof,1,timonofathens,1607 mothers,1,timonofathens,1607 Rather,1,timonofathens,1607 ingeniously,1,timonofathens,1607 sights,1,timonofathens,1607 wreakful,1,timonofathens,1607 recorded,1,timonofathens,1607 Speaks,1,timonofathens,1607 holds,1,timonofathens,1607 shook,1,timonofathens,1607 empire,1,timonofathens,1607 quit,1,timonofathens,1607 Attends,1,timonofathens,1607 virgins,1,timonofathens,1607 short,1,timonofathens,1607 clean,1,timonofathens,1607 victories,1,timonofathens,1607 None,1,timonofathens,1607 contentless,1,timonofathens,1607 unmeasurable,1,timonofathens,1607 fertile,1,timonofathens,1607 greyhounds,1,timonofathens,1607 dozen,1,timonofathens,1607 green,1,timonofathens,1607 virginity,1,timonofathens,1607 stand'st,1,timonofathens,1607 lards,1,timonofathens,1607 implements,1,timonofathens,1607 Lives,1,timonofathens,1607 follows,1,timonofathens,1607 Although,1,timonofathens,1607 pangs,1,timonofathens,1607 Who's,1,timonofathens,1607 spices,1,timonofathens,1607 dimpled,1,timonofathens,1607 schools,1,timonofathens,1607 Aches,1,timonofathens,1607 request,1,timonofathens,1607 moulten,1,timonofathens,1607 revolt,1,timonofathens,1607 sinner,1,timonofathens,1607 cheerly,1,timonofathens,1607 spurring,1,timonofathens,1607 presents,1,timonofathens,1607 depth,1,timonofathens,1607 condemn,1,timonofathens,1607 arrive,1,timonofathens,1607 commonwealth,1,timonofathens,1607 state's,1,timonofathens,1607 defeat,1,timonofathens,1607 agues,1,timonofathens,1607 Where's,1,timonofathens,1607 manslaughter,1,timonofathens,1607 writing,1,timonofathens,1607 bits,1,timonofathens,1607 want'st,1,timonofathens,1607 borrowing,1,timonofathens,1607 falsehood,1,timonofathens,1607 giver,1,timonofathens,1607 Call'st,1,timonofathens,1607 inherited,1,timonofathens,1607 thou'ldst,1,timonofathens,1607 provision,1,timonofathens,1607 'nothing,1,timonofathens,1607 vainly,1,timonofathens,1607 also,1,timonofathens,1607 country's,1,timonofathens,1607 hung,1,timonofathens,1607 ignobly,1,timonofathens,1607 seat,1,timonofathens,1607 betraying,1,timonofathens,1607 perfumes,1,timonofathens,1607 glittering,1,timonofathens,1607 elements,1,timonofathens,1607 Entomb'd,1,timonofathens,1607 cool,1,timonofathens,1607 cook,1,timonofathens,1607 attendance,1,timonofathens,1607 restraining,1,timonofathens,1607 continuate,1,timonofathens,1607 Corinth,1,timonofathens,1607 fairer,1,timonofathens,1607 sweat,1,timonofathens,1607 deepest,1,timonofathens,1607 trophies,1,timonofathens,1607 fault's,1,timonofathens,1607 fractions,1,timonofathens,1607 Surprise,1,timonofathens,1607 reckoning,1,timonofathens,1607 Seek,1,timonofathens,1607 oppress'd,1,timonofathens,1607 insolence,1,timonofathens,1607 pronounced,1,timonofathens,1607 drums,1,timonofathens,1607 talking,1,timonofathens,1607 feeling,1,timonofathens,1607 cog,1,timonofathens,1607 Debts,1,timonofathens,1607 defend,1,timonofathens,1607 bounty's,1,timonofathens,1607 tithed,1,timonofathens,1607 con,1,timonofathens,1607 supposed,1,timonofathens,1607 unkindness,1,timonofathens,1607 auditors,1,timonofathens,1607 courtesy,1,timonofathens,1607 distasteful,1,timonofathens,1607 others',1,timonofathens,1607 divorce,1,timonofathens,1607 sees,1,timonofathens,1607 pick'd,1,timonofathens,1607 lug,1,timonofathens,1607 drunken,1,timonofathens,1607 vessel,1,timonofathens,1607 condition,1,timonofathens,1607 differing,1,timonofathens,1607 sweep,1,timonofathens,1607 cumber,1,timonofathens,1607 battle,1,timonofathens,1607 Believe,1,timonofathens,1607 berries,1,timonofathens,1607 shaped,1,timonofathens,1607 expectation,1,timonofathens,1607 pregnantly,1,timonofathens,1607 arrant,1,timonofathens,1607 thrust,1,timonofathens,1607 zeals,1,timonofathens,1607 regular,1,timonofathens,1607 needless,1,timonofathens,1607 sluts,1,timonofathens,1607 sacred,1,timonofathens,1607 cry,1,timonofathens,1607 indisposition,1,timonofathens,1607 Gentlemen,1,timonofathens,1607 monkey,1,timonofathens,1607 dispense,1,timonofathens,1607 heavenly,1,timonofathens,1607 pledges,1,timonofathens,1607 blazed,1,timonofathens,1607 He'll,1,timonofathens,1607 'twill,1,timonofathens,1607 therein,1,timonofathens,1607 Things,1,timonofathens,1607 drugs,1,timonofathens,1607 tiring,1,timonofathens,1607 slender,1,timonofathens,1607 Toward,1,timonofathens,1607 huge,1,timonofathens,1607 destroyers,1,timonofathens,1607 kindred,1,timonofathens,1607 inviting,1,timonofathens,1607 caudle,1,timonofathens,1607 tide,1,timonofathens,1607 moon's,1,timonofathens,1607 believes,1,timonofathens,1607 Trumpet,1,timonofathens,1607 uncertain,1,timonofathens,1607 smit,1,timonofathens,1607 cases,1,timonofathens,1607 Graves,1,timonofathens,1607 bald,1,timonofathens,1607 gloss,1,timonofathens,1607 oppose,1,timonofathens,1607 Traffic,1,timonofathens,1607 work'd,1,timonofathens,1607 prison,1,timonofathens,1607 Rain,1,timonofathens,1607 Moves,1,timonofathens,1607 nakedness,1,timonofathens,1607 mated,1,timonofathens,1607 beached,1,timonofathens,1607 mother's,1,timonofathens,1607 undo,1,timonofathens,1607 alas,1,timonofathens,1607 grieves,1,timonofathens,1607 villainies,1,timonofathens,1607 swell,1,timonofathens,1607 shoots,1,timonofathens,1607 becks,1,timonofathens,1607 canons,1,timonofathens,1607 grieved,1,timonofathens,1607 Feast,1,timonofathens,1607 greeting,1,timonofathens,1607 carriage,1,timonofathens,1607 sorrow'd,1,timonofathens,1607 plunge,1,timonofathens,1607 seized,1,timonofathens,1607 sullen,1,timonofathens,1607 calamities,1,timonofathens,1607 countryman,1,timonofathens,1607 highest,1,timonofathens,1607 aches,1,timonofathens,1607 convert,1,timonofathens,1607 safer,1,timonofathens,1607 bestow,1,timonofathens,1607 patchery,1,timonofathens,1607 moss'd,1,timonofathens,1607 nature's,1,timonofathens,1607 ebb,1,timonofathens,1607 threat,1,timonofathens,1607 Doors,1,timonofathens,1607 trod,1,timonofathens,1607 sleep,1,timonofathens,1607 borrowed,1,timonofathens,1607 senator,1,timonofathens,1607 feasting,1,timonofathens,1607 imagination,1,timonofathens,1607 Itches,1,timonofathens,1607 write,1,timonofathens,1607 limbs,1,timonofathens,1607 sounded,1,timonofathens,1607 nourish'd,1,timonofathens,1607 pray'd,1,timonofathens,1607 viced,1,timonofathens,1607 'scape,1,timonofathens,1607 mine's,1,timonofathens,1607 pasture,1,timonofathens,1607 propagate,1,timonofathens,1607 smiling,1,timonofathens,1607 forced,1,timonofathens,1607 strides,1,timonofathens,1607 gust,1,timonofathens,1607 begins,1,timonofathens,1607 learn,1,timonofathens,1607 burst,1,timonofathens,1607 starve,1,timonofathens,1607 doing,1,timonofathens,1607 straight,1,timonofathens,1607 compounded,1,timonofathens,1607 poesy,1,timonofathens,1607 viler,1,timonofathens,1607 warlike,1,timonofathens,1607 dealing,1,timonofathens,1607 lofty,1,timonofathens,1607 phoenix,1,timonofathens,1607 livelier,1,timonofathens,1607 Captain,1,timonofathens,1607 whelped,1,timonofathens,1607 upward,1,timonofathens,1607 Always,1,timonofathens,1607 readiness,1,timonofathens,1607 erected,1,timonofathens,1607 plunged,1,timonofathens,1607 meeting,1,timonofathens,1607 stirrup,1,timonofathens,1607 pitifully,1,timonofathens,1607 sovereign,1,timonofathens,1607 ruinous,1,timonofathens,1607 employment,1,timonofathens,1607 evils,1,timonofathens,1607 familiars,1,timonofathens,1607 intending,1,timonofathens,1607 Since,1,timonofathens,1607 Ours,1,timonofathens,1607 abuse,1,timonofathens,1607 pleasant,1,timonofathens,1607 fully,1,timonofathens,1607 mocked,1,timonofathens,1607 Painting,1,timonofathens,1607 fled,1,timonofathens,1607 Voiced,1,timonofathens,1607 swound,1,timonofathens,1607 fashion,1,timonofathens,1607 pomps,1,timonofathens,1607 Pity's,1,timonofathens,1607 Thrive,1,timonofathens,1607 spills,1,timonofathens,1607 remaining,1,timonofathens,1607 forfeiture,1,timonofathens,1607 henceforth,1,timonofathens,1607 strokes,1,timonofathens,1607 bellies,1,timonofathens,1607 physic,1,timonofathens,1607 visitations,1,timonofathens,1607 harshly,1,timonofathens,1607 forgetfulness,1,timonofathens,1607 marriage,1,timonofathens,1607 beguile,1,timonofathens,1607 beagles,1,timonofathens,1607 reliances,1,timonofathens,1607 blains,1,timonofathens,1607 Marry,1,timonofathens,1607 carper,1,timonofathens,1607 fever,1,timonofathens,1607 gull,1,timonofathens,1607 Beseech,1,timonofathens,1607 Wherever,1,timonofathens,1607 flat,1,timonofathens,1607 evilly,1,timonofathens,1607 pious,1,timonofathens,1607 liquid,1,timonofathens,1607 Maintain,1,timonofathens,1607 tub,1,timonofathens,1607 lawyer,1,timonofathens,1607 Eat,1,timonofathens,1607 Looking,1,timonofathens,1607 severally,1,timonofathens,1607 discontented,1,timonofathens,1607 Secure,1,timonofathens,1607 besides,1,timonofathens,1607 extend,1,timonofathens,1607 April,1,timonofathens,1607 breaking,1,timonofathens,1607 spilth,1,timonofathens,1607 bribed,1,timonofathens,1607 briber,1,timonofathens,1607 Lust,1,timonofathens,1607 carelessly,1,timonofathens,1607 entreaty,1,timonofathens,1607 books,1,timonofathens,1607 plough'st,1,timonofathens,1607 moe,1,timonofathens,1607 defiler,1,timonofathens,1607 outstretch'd,1,timonofathens,1607 entreats,1,timonofathens,1607 limping,1,timonofathens,1607 urged,1,timonofathens,1607 defiled,1,timonofathens,1607 conflict,1,timonofathens,1607 rebels,1,timonofathens,1607 silent,1,timonofathens,1607 'This,1,timonofathens,1607 omitt'st,1,timonofathens,1607 mouths,1,timonofathens,1607 date,1,timonofathens,1607 hired,1,timonofathens,1607 widow,1,timonofathens,1607 reply,1,timonofathens,1607 recanter,1,timonofathens,1607 extremely,1,timonofathens,1607 You'll,1,timonofathens,1607 jurors,1,timonofathens,1607 Ensear,1,timonofathens,1607 confirm,1,timonofathens,1607 pillows,1,timonofathens,1607 destined,1,timonofathens,1607 Did,1,timonofathens,1607 losses,1,timonofathens,1607 pelf,1,timonofathens,1607 famish,1,timonofathens,1607 Washes,1,timonofathens,1607 boisterous,1,timonofathens,1607 Lest,1,timonofathens,1607 precepts,1,timonofathens,1607 miseries,1,timonofathens,1607 Together,1,timonofathens,1607 condition'd,1,timonofathens,1607 ivory,1,timonofathens,1607 dispatch,1,timonofathens,1607 another's,1,timonofathens,1607 top,1,timonofathens,1607 fellowship,1,timonofathens,1607 court'sies,1,timonofathens,1607 scarcity,1,timonofathens,1607 lamb,1,timonofathens,1607 sea's,1,timonofathens,1607 instantly,1,timonofathens,1607 months,1,timonofathens,1607 travail'd,1,timonofathens,1607 DRAMATIS,1,timonofathens,1607 shift,1,timonofathens,1607 spangled,1,timonofathens,1607 physician,1,timonofathens,1607 Keeping,1,timonofathens,1607 dotage,1,timonofathens,1607 vacant,1,timonofathens,1607 burden,1,timonofathens,1607 undergo,1,timonofathens,1607 shins,1,timonofathens,1607 filths,1,timonofathens,1607 leans,1,timonofathens,1607 commanding,1,timonofathens,1607 frankly,1,timonofathens,1607 duller,1,timonofathens,1607 pass'd,1,timonofathens,1607 caked,1,timonofathens,1607 rewards,1,timonofathens,1607 marbled,1,timonofathens,1607 gnaw,1,timonofathens,1607 flows,1,timonofathens,1607 obedient,1,timonofathens,1607 record,1,timonofathens,1607 fence,1,timonofathens,1607 he'll,1,timonofathens,1607 trees,1,timonofathens,1607 divided,1,timonofathens,1607 smell,1,timonofathens,1607 shame,1,timonofathens,1607 gorge,1,timonofathens,1607 encountered,1,timonofathens,1607 king,1,timonofathens,1607 private,1,timonofathens,1607 drown'd,1,timonofathens,1607 Dry,1,timonofathens,1607 boundless,1,timonofathens,1607 Large,1,timonofathens,1607 slip,1,timonofathens,1607 numberless,1,timonofathens,1607 Wrong,1,timonofathens,1607 conceptious,1,timonofathens,1607 emboldens,1,timonofathens,1607 belonged,1,timonofathens,1607 Fall,1,timonofathens,1607 remorse,1,timonofathens,1607 earth's,1,timonofathens,1607 justly,1,timonofathens,1607 done't,1,timonofathens,1607 caitiffs,1,timonofathens,1607 trifling,1,timonofathens,1607 Honest,1,timonofathens,1607 Indifferent,1,timonofathens,1607 dedicated,1,timonofathens,1607 remembrance,1,timonofathens,1607 parley,1,timonofathens,1607 Humbly,1,timonofathens,1607 neighbour,1,timonofathens,1607 unremoveably,1,timonofathens,1607 shirt,1,timonofathens,1607 flattering,1,timonofathens,1607 oaths,1,timonofathens,1607 properties,1,timonofathens,1607 hangman,1,timonofathens,1607 shape,1,timonofathens,1607 throng'd,1,timonofathens,1607 Paint,1,timonofathens,1607 hunting,1,timonofathens,1607 endear'd,1,timonofathens,1607 Engenders,1,timonofathens,1607 dip,1,timonofathens,1607 dissemble,1,timonofathens,1607 esteemed,1,timonofathens,1607 chambers,1,timonofathens,1607 Fill,1,timonofathens,1607 exempt,1,timonofathens,1607 draw'st,1,timonofathens,1607 sharp,1,timonofathens,1607 woo'd,1,timonofathens,1607 monsters,1,timonofathens,1607 degrees,1,timonofathens,1607 wondrously,1,timonofathens,1607 Confound,1,timonofathens,1607 lady,1,timonofathens,1607 grant'st,1,timonofathens,1607 unnoted,1,timonofathens,1607 brave,2,timonofathens,1607 heed,2,timonofathens,1607 tomb,2,timonofathens,1607 c,2,timonofathens,1607 join,2,timonofathens,1607 smiles,2,timonofathens,1607 infected,2,timonofathens,1607 description,2,timonofathens,1607 motion,2,timonofathens,1607 belongs,2,timonofathens,1607 heir,2,timonofathens,1607 country,2,timonofathens,1607 weary,2,timonofathens,1607 wears,2,timonofathens,1607 wish'd,2,timonofathens,1607 following,2,timonofathens,1607 factions,2,timonofathens,1607 villain's,2,timonofathens,1607 haste,2,timonofathens,1607 zeal,2,timonofathens,1607 thankfully,2,timonofathens,1607 bones,2,timonofathens,1607 offended,2,timonofathens,1607 rascal,2,timonofathens,1607 bonds,2,timonofathens,1607 express,2,timonofathens,1607 painter,2,timonofathens,1607 laughter,2,timonofathens,1607 warning,2,timonofathens,1607 truly,2,timonofathens,1607 painted,2,timonofathens,1607 imitate,2,timonofathens,1607 disease,2,timonofathens,1607 sight,2,timonofathens,1607 brook,2,timonofathens,1607 tears,2,timonofathens,1607 feeds,2,timonofathens,1607 appear,2,timonofathens,1607 its,2,timonofathens,1607 throat,2,timonofathens,1607 nought,2,timonofathens,1607 sour,2,timonofathens,1607 laugh,2,timonofathens,1607 damned,2,timonofathens,1607 truth,2,timonofathens,1607 contrary,2,timonofathens,1607 remain,2,timonofathens,1607 rated,2,timonofathens,1607 performance,2,timonofathens,1607 vast,2,timonofathens,1607 soon,2,timonofathens,1607 charge,2,timonofathens,1607 sons,2,timonofathens,1607 feather,2,timonofathens,1607 sadly,2,timonofathens,1607 yourself,2,timonofathens,1607 bearing,2,timonofathens,1607 stream,2,timonofathens,1607 opposed,2,timonofathens,1607 caps,2,timonofathens,1607 Keep,2,timonofathens,1607 Digging,2,timonofathens,1607 heap,2,timonofathens,1607 hearing,2,timonofathens,1607 madness,2,timonofathens,1607 hanging,2,timonofathens,1607 making,2,timonofathens,1607 riches,2,timonofathens,1607 blessed,2,timonofathens,1607 visit,2,timonofathens,1607 kin,2,timonofathens,1607 something,2,timonofathens,1607 Amazons,2,timonofathens,1607 six,2,timonofathens,1607 conceive,2,timonofathens,1607 warrant,2,timonofathens,1607 merry,2,timonofathens,1607 'twas,2,timonofathens,1607 nine,2,timonofathens,1607 Such,2,timonofathens,1607 sworn,2,timonofathens,1607 Farewell,2,timonofathens,1607 subject,2,timonofathens,1607 Was,2,timonofathens,1607 admittance,2,timonofathens,1607 kindly,2,timonofathens,1607 Heavens,2,timonofathens,1607 deserts,2,timonofathens,1607 pieces,2,timonofathens,1607 stuff,2,timonofathens,1607 scope,2,timonofathens,1607 stuck,2,timonofathens,1607 felt,2,timonofathens,1607 showed,2,timonofathens,1607 conceit,2,timonofathens,1607 crime,2,timonofathens,1607 Whereof,2,timonofathens,1607 seeks,2,timonofathens,1607 humble,2,timonofathens,1607 about,2,timonofathens,1607 draught,2,timonofathens,1607 brace,2,timonofathens,1607 complete,2,timonofathens,1607 sauce,2,timonofathens,1607 noblest,2,timonofathens,1607 humbly,2,timonofathens,1607 malice,2,timonofathens,1607 upon't,2,timonofathens,1607 speaking,2,timonofathens,1607 choose,2,timonofathens,1607 Vouchsafe,2,timonofathens,1607 flesh,2,timonofathens,1607 from't,2,timonofathens,1607 Hence,2,timonofathens,1607 know'st,2,timonofathens,1607 diet,2,timonofathens,1607 bold,2,timonofathens,1607 eagle,2,timonofathens,1607 sense,2,timonofathens,1607 warm,2,timonofathens,1607 pretty,2,timonofathens,1607 merely,2,timonofathens,1607 bond,2,timonofathens,1607 cunning,2,timonofathens,1607 bone,2,timonofathens,1607 mistake,2,timonofathens,1607 matter,2,timonofathens,1607 Sempronius,2,timonofathens,1607 praised,2,timonofathens,1607 Follow,2,timonofathens,1607 deserves,2,timonofathens,1607 conditions,2,timonofathens,1607 authority,2,timonofathens,1607 morning,2,timonofathens,1607 drown,2,timonofathens,1607 melancholy,2,timonofathens,1607 While,2,timonofathens,1607 offend,2,timonofathens,1607 sores,2,timonofathens,1607 Ah,2,timonofathens,1607 altogether,2,timonofathens,1607 fool's,2,timonofathens,1607 blows,2,timonofathens,1607 Throwing,2,timonofathens,1607 desperate,2,timonofathens,1607 Still,2,timonofathens,1607 smile,2,timonofathens,1607 bad,2,timonofathens,1607 foam,2,timonofathens,1607 proof,2,timonofathens,1607 ingrateful,2,timonofathens,1607 Answer,2,timonofathens,1607 brings,2,timonofathens,1607 force,2,timonofathens,1607 bed,2,timonofathens,1607 Ho,2,timonofathens,1607 feigned,2,timonofathens,1607 quick,2,timonofathens,1607 ease,2,timonofathens,1607 pate,2,timonofathens,1607 abhorred,2,timonofathens,1607 quantity,2,timonofathens,1607 sire,2,timonofathens,1607 doubting,2,timonofathens,1607 theft,2,timonofathens,1607 priests,2,timonofathens,1607 sits,2,timonofathens,1607 goodly,2,timonofathens,1607 burn,2,timonofathens,1607 tendance,2,timonofathens,1607 madman,2,timonofathens,1607 sounds,2,timonofathens,1607 Save,2,timonofathens,1607 Strange,2,timonofathens,1607 people,2,timonofathens,1607 shadow,2,timonofathens,1607 Titus,2,timonofathens,1607 farewell,2,timonofathens,1607 friendly,2,timonofathens,1607 conquest,2,timonofathens,1607 buy,2,timonofathens,1607 amongst,2,timonofathens,1607 gown,2,timonofathens,1607 sink,2,timonofathens,1607 paint,2,timonofathens,1607 picture,2,timonofathens,1607 turns,2,timonofathens,1607 crowns,2,timonofathens,1607 entertain,2,timonofathens,1607 failing,2,timonofathens,1607 banqueting,2,timonofathens,1607 deep,2,timonofathens,1607 flatterers,2,timonofathens,1607 confess,2,timonofathens,1607 breast,2,timonofathens,1607 promises,2,timonofathens,1607 artificial,2,timonofathens,1607 yea,2,timonofathens,1607 aid,2,timonofathens,1607 favour,2,timonofathens,1607 painting,2,timonofathens,1607 legs,2,timonofathens,1607 time's,2,timonofathens,1607 enforce,2,timonofathens,1607 destruction,2,timonofathens,1607 touch'd,2,timonofathens,1607 bounties,2,timonofathens,1607 defence,2,timonofathens,1607 usurer,2,timonofathens,1607 game,2,timonofathens,1607 manner,2,timonofathens,1607 forget,2,timonofathens,1607 banished,2,timonofathens,1607 attending,2,timonofathens,1607 commend,2,timonofathens,1607 fears,2,timonofathens,1607 small,2,timonofathens,1607 aside,2,timonofathens,1607 banish,2,timonofathens,1607 whereof,2,timonofathens,1607 Fortune's,2,timonofathens,1607 idle,2,timonofathens,1607 Myself,2,timonofathens,1607 value,2,timonofathens,1607 endure,2,timonofathens,1607 speak'st,2,timonofathens,1607 playing,2,timonofathens,1607 all's,2,timonofathens,1607 lose,2,timonofathens,1607 bench,2,timonofathens,1607 pure,2,timonofathens,1607 hot,2,timonofathens,1607 sun's,2,timonofathens,1607 hardly,2,timonofathens,1607 hard,2,timonofathens,1607 Freely,2,timonofathens,1607 field,2,timonofathens,1607 aye,2,timonofathens,1607 round,2,timonofathens,1607 beggar's,2,timonofathens,1607 froth,2,timonofathens,1607 signify,2,timonofathens,1607 verse,2,timonofathens,1607 see't,2,timonofathens,1607 trade,2,timonofathens,1607 Trumpets,2,timonofathens,1607 Pluck,2,timonofathens,1607 liberty,2,timonofathens,1607 deny,2,timonofathens,1607 spotted,2,timonofathens,1607 excuse,2,timonofathens,1607 page,2,timonofathens,1607 rashness,2,timonofathens,1607 occasions,2,timonofathens,1607 form,2,timonofathens,1607 prepare,2,timonofathens,1607 abhor,2,timonofathens,1607 stones,2,timonofathens,1607 fishes,2,timonofathens,1607 fall'n,2,timonofathens,1607 rough,2,timonofathens,1607 revenge,2,timonofathens,1607 fond,2,timonofathens,1607 nearest,2,timonofathens,1607 beggars,2,timonofathens,1607 furnish,2,timonofathens,1607 theirs,2,timonofathens,1607 few,2,timonofathens,1607 bountiful,2,timonofathens,1607 tasted,2,timonofathens,1607 Imprison'd,2,timonofathens,1607 prays,2,timonofathens,1607 trumpet's,2,timonofathens,1607 through,2,timonofathens,1607 Lucilius,2,timonofathens,1607 breeds,2,timonofathens,1607 moved,2,timonofathens,1607 maid,2,timonofathens,1607 nay,2,timonofathens,1607 hill,2,timonofathens,1607 Canst,2,timonofathens,1607 breathed,2,timonofathens,1607 mischief,2,timonofathens,1607 rapt,2,timonofathens,1607 retired,2,timonofathens,1607 build,2,timonofathens,1607 couldst,2,timonofathens,1607 retires,2,timonofathens,1607 note,2,timonofathens,1607 prosperity,2,timonofathens,1607 sending,2,timonofathens,1607 Else,2,timonofathens,1607 trencher,2,timonofathens,1607 eye,2,timonofathens,1607 scald,2,timonofathens,1607 givest,2,timonofathens,1607 sprung,2,timonofathens,1607 Religion,2,timonofathens,1607 sirrah,2,timonofathens,1607 Love,2,timonofathens,1607 mock'd,2,timonofathens,1607 She,2,timonofathens,1607 mount,2,timonofathens,1607 perform,2,timonofathens,1607 presented,2,timonofathens,1607 freely,2,timonofathens,1607 powers,2,timonofathens,1607 precious,2,timonofathens,1607 afflictions,2,timonofathens,1607 spurn,2,timonofathens,1607 other's,2,timonofathens,1607 leaves,2,timonofathens,1607 milk,2,timonofathens,1607 Long,2,timonofathens,1607 charitable,2,timonofathens,1607 soldiers,2,timonofathens,1607 strict,2,timonofathens,1607 Grant,2,timonofathens,1607 leopard,2,timonofathens,1607 mask,2,timonofathens,1607 skip,2,timonofathens,1607 mark,2,timonofathens,1607 coward,2,timonofathens,1607 Honour,2,timonofathens,1607 oracle,2,timonofathens,1607 mire,2,timonofathens,1607 Strangers,2,timonofathens,1607 woo,2,timonofathens,1607 brains,2,timonofathens,1607 usurers',2,timonofathens,1607 infect,2,timonofathens,1607 medlar,2,timonofathens,1607 number,2,timonofathens,1607 usuring,2,timonofathens,1607 smoke,2,timonofathens,1607 Being,2,timonofathens,1607 letters,2,timonofathens,1607 casket,2,timonofathens,1607 Descend,2,timonofathens,1607 mistress',2,timonofathens,1607 Offering,2,timonofathens,1607 thorough,2,timonofathens,1607 wealthy,2,timonofathens,1607 behalf,2,timonofathens,1607 slight,2,timonofathens,1607 proved,2,timonofathens,1607 example,2,timonofathens,1607 purchase,2,timonofathens,1607 wit,2,timonofathens,1607 sides,2,timonofathens,1607 sorrow,2,timonofathens,1607 cure,2,timonofathens,1607 different,2,timonofathens,1607 Dead,2,timonofathens,1607 dinner's,2,timonofathens,1607 city's,2,timonofathens,1607 flight,2,timonofathens,1607 you're,2,timonofathens,1607 remains,2,timonofathens,1607 subtle,2,timonofathens,1607 heavy,2,timonofathens,1607 able,2,timonofathens,1607 rise,2,timonofathens,1607 receive,2,timonofathens,1607 ambition,2,timonofathens,1607 sufferance,2,timonofathens,1607 pride,2,timonofathens,1607 ends,2,timonofathens,1607 breakfast,2,timonofathens,1607 Throws,2,timonofathens,1607 cursed,2,timonofathens,1607 Shame,2,timonofathens,1607 curses,2,timonofathens,1607 news,2,timonofathens,1607 Banish,2,timonofathens,1607 fix'd,2,timonofathens,1607 honoured,2,timonofathens,1607 what's,2,timonofathens,1607 Hail,2,timonofathens,1607 weeping,2,timonofathens,1607 labour'd,2,timonofathens,1607 consent,2,timonofathens,1607 wolf,2,timonofathens,1607 drops,2,timonofathens,1607 serves,2,timonofathens,1607 sober,2,timonofathens,1607 stepp'd,2,timonofathens,1607 hundred,2,timonofathens,1607 cover,2,timonofathens,1607 Ever,2,timonofathens,1607 fail,2,timonofathens,1607 Even,2,timonofathens,1607 glad,2,timonofathens,1607 Strike,2,timonofathens,1607 minister,2,timonofathens,1607 wept,2,timonofathens,1607 yond,2,timonofathens,1607 dates,2,timonofathens,1607 foe,2,timonofathens,1607 cloud,2,timonofathens,1607 methinks,2,timonofathens,1607 pleased,2,timonofathens,1607 fit,2,timonofathens,1607 Excellent,2,timonofathens,1607 dues,2,timonofathens,1607 passion,2,timonofathens,1607 safety,2,timonofathens,1607 Caphis,2,timonofathens,1607 lascivious,2,timonofathens,1607 bark,2,timonofathens,1607 mansion,2,timonofathens,1607 shown,2,timonofathens,1607 worship,2,timonofathens,1607 surge,2,timonofathens,1607 smooth,2,timonofathens,1607 depart,2,timonofathens,1607 lived,2,timonofathens,1607 Cut,2,timonofathens,1607 fate,2,timonofathens,1607 kiss,2,timonofathens,1607 ye've,2,timonofathens,1607 drinks,2,timonofathens,1607 lights,2,timonofathens,1607 is't,2,timonofathens,1607 lap,2,timonofathens,1607 stroke,2,timonofathens,1607 wild,2,timonofathens,1607 Every,2,timonofathens,1607 incident,2,timonofathens,1607 pardon,2,timonofathens,1607 home,2,timonofathens,1607 holy,2,timonofathens,1607 hollow,2,timonofathens,1607 feasts,2,timonofathens,1607 counterfeit,2,timonofathens,1607 flood,2,timonofathens,1607 Wherefore,2,timonofathens,1607 virtues,2,timonofathens,1607 marrows,2,timonofathens,1607 yellow,2,timonofathens,1607 hunt,2,timonofathens,1607 along,2,timonofathens,1607 ugly,2,timonofathens,1607 states,2,timonofathens,1607 Right,2,timonofathens,1607 knowest,2,timonofathens,1607 seem,2,timonofathens,1607 Serving,2,timonofathens,1607 Lie,2,timonofathens,1607 cost,2,timonofathens,1607 shapes,2,timonofathens,1607 Lacedaemon,2,timonofathens,1607 confounding,2,timonofathens,1607 tree,2,timonofathens,1607 nights,2,timonofathens,1607 Know,2,timonofathens,1607 blame,2,timonofathens,1607 entreat,2,timonofathens,1607 glove,2,timonofathens,1607 countrymen,2,timonofathens,1607 sell,2,timonofathens,1607 distracted,2,timonofathens,1607 whilst,2,timonofathens,1607 bleeding,2,timonofathens,1607 season,2,timonofathens,1607 protest,2,timonofathens,1607 purpose,2,timonofathens,1607 March,2,timonofathens,1607 invite,2,timonofathens,1607 merchant,2,timonofathens,1607 Hearing,2,timonofathens,1607 lordship's,2,timonofathens,1607 choke,2,timonofathens,1607 ear,2,timonofathens,1607 suitor,2,timonofathens,1607 mar,2,timonofathens,1607 wearing,2,timonofathens,1607 least,2,timonofathens,1607 comfortable,2,timonofathens,1607 future,2,timonofathens,1607 reward,2,timonofathens,1607 remember,2,timonofathens,1607 Does,2,timonofathens,1607 conjured,2,timonofathens,1607 whip,2,timonofathens,1607 thoughts,2,timonofathens,1607 Great,2,timonofathens,1607 thinking,2,timonofathens,1607 confess'd,2,timonofathens,1607 politic,2,timonofathens,1607 revenges,2,timonofathens,1607 credit,2,timonofathens,1607 gules,2,timonofathens,1607 thither,2,timonofathens,1607 keepers,2,timonofathens,1607 sleeping,2,timonofathens,1607 TIMON's,2,timonofathens,1607 muffled,2,timonofathens,1607 Without,2,timonofathens,1607 human,2,timonofathens,1607 Lend,2,timonofathens,1607 going,2,timonofathens,1607 follow'd,2,timonofathens,1607 content,2,timonofathens,1607 importunate,2,timonofathens,1607 Moe,2,timonofathens,1607 payment,2,timonofathens,1607 expense,2,timonofathens,1607 laid,2,timonofathens,1607 respect,2,timonofathens,1607 invites,2,timonofathens,1607 provide,2,timonofathens,1607 attend,2,timonofathens,1607 hoar,2,timonofathens,1607 swallow,2,timonofathens,1607 frame,2,timonofathens,1607 reverend,2,timonofathens,1607 whores,2,timonofathens,1607 filthy,2,timonofathens,1607 behold,2,timonofathens,1607 damn,2,timonofathens,1607 quietly,2,timonofathens,1607 reserve,2,timonofathens,1607 wills,2,timonofathens,1607 figures,2,timonofathens,1607 take't,2,timonofathens,1607 whoremaster,2,timonofathens,1607 charity,2,timonofathens,1607 repair,2,timonofathens,1607 breathe,2,timonofathens,1607 Find,2,timonofathens,1607 share,2,timonofathens,1607 e'er,2,timonofathens,1607 turn'd,2,timonofathens,1607 enemy,2,timonofathens,1607 ungrateful,2,timonofathens,1607 summer,2,timonofathens,1607 o'er,3,timonofathens,1607 villany,3,timonofathens,1607 quality,3,timonofathens,1607 took,3,timonofathens,1607 Alas,3,timonofathens,1607 treasure,3,timonofathens,1607 alike,3,timonofathens,1607 Fie,3,timonofathens,1607 wicked,3,timonofathens,1607 dine,3,timonofathens,1607 rot,3,timonofathens,1607 epitaph,3,timonofathens,1607 despised,3,timonofathens,1607 single,3,timonofathens,1607 Tell,3,timonofathens,1607 naked,3,timonofathens,1607 Ere,3,timonofathens,1607 sort,3,timonofathens,1607 lies,3,timonofathens,1607 pleasures,3,timonofathens,1607 spare,3,timonofathens,1607 cast,3,timonofathens,1607 Poor,3,timonofathens,1607 mercy,3,timonofathens,1607 conscience,3,timonofathens,1607 draw,3,timonofathens,1607 dance,3,timonofathens,1607 brother,3,timonofathens,1607 purse,3,timonofathens,1607 Much,3,timonofathens,1607 cheer,3,timonofathens,1607 wants,3,timonofathens,1607 town,3,timonofathens,1607 gross,3,timonofathens,1607 soft,3,timonofathens,1607 black,3,timonofathens,1607 I'm,3,timonofathens,1607 aged,3,timonofathens,1607 'twere,3,timonofathens,1607 bastard,3,timonofathens,1607 wall,3,timonofathens,1607 virtuous,3,timonofathens,1607 society,3,timonofathens,1607 fell,3,timonofathens,1607 yield,3,timonofathens,1607 birds,3,timonofathens,1607 embrace,3,timonofathens,1607 knives,3,timonofathens,1607 Music,3,timonofathens,1607 affect,3,timonofathens,1607 worse,3,timonofathens,1607 accursed,3,timonofathens,1607 wrong,3,timonofathens,1607 Out,3,timonofathens,1607 daughter,3,timonofathens,1607 habit,3,timonofathens,1607 fault,3,timonofathens,1607 white,3,timonofathens,1607 sum,3,timonofathens,1607 feel,3,timonofathens,1607 cease,3,timonofathens,1607 infinite,3,timonofathens,1607 'Faith,3,timonofathens,1607 title,3,timonofathens,1607 hence,3,timonofathens,1607 dies,3,timonofathens,1607 hated,3,timonofathens,1607 Though,3,timonofathens,1607 anon,3,timonofathens,1607 stop,3,timonofathens,1607 voice,3,timonofathens,1607 office,3,timonofathens,1607 desire,3,timonofathens,1607 spoke,3,timonofathens,1607 urge,3,timonofathens,1607 bills,3,timonofathens,1607 music,3,timonofathens,1607 hang'd,3,timonofathens,1607 neither,3,timonofathens,1607 deeds,3,timonofathens,1607 Those,3,timonofathens,1607 shortly,3,timonofathens,1607 lands,3,timonofathens,1607 canst,3,timonofathens,1607 to't,3,timonofathens,1607 Within,3,timonofathens,1607 since,3,timonofathens,1607 pleasure,3,timonofathens,1607 Let's,3,timonofathens,1607 Doubt,3,timonofathens,1607 Is't,3,timonofathens,1607 monstrous,3,timonofathens,1607 prove,3,timonofathens,1607 heads,3,timonofathens,1607 sooner,3,timonofathens,1607 behind,3,timonofathens,1607 got,3,timonofathens,1607 beyond,3,timonofathens,1607 pains,3,timonofathens,1607 dogs,3,timonofathens,1607 deed,3,timonofathens,1607 Soldiers,3,timonofathens,1607 excellent,3,timonofathens,1607 deal,3,timonofathens,1607 lend,3,timonofathens,1607 approach,3,timonofathens,1607 necessity,3,timonofathens,1607 Live,3,timonofathens,1607 account,3,timonofathens,1607 sometime,3,timonofathens,1607 miserable,3,timonofathens,1607 la,3,timonofathens,1607 moon,3,timonofathens,1607 lost,3,timonofathens,1607 loved,3,timonofathens,1607 spend,3,timonofathens,1607 harm,3,timonofathens,1607 hall,3,timonofathens,1607 nearer,3,timonofathens,1607 Call,3,timonofathens,1607 natural,3,timonofathens,1607 hang,3,timonofathens,1607 shut,3,timonofathens,1607 foul,3,timonofathens,1607 provided,3,timonofathens,1607 arm,3,timonofathens,1607 brothers,3,timonofathens,1607 ask,3,timonofathens,1607 paid,3,timonofathens,1607 hum,3,timonofathens,1607 entertain'd,3,timonofathens,1607 food,3,timonofathens,1607 creatures,3,timonofathens,1607 banquet,3,timonofathens,1607 undone,3,timonofathens,1607 judgment,3,timonofathens,1607 flatteries,3,timonofathens,1607 having,3,timonofathens,1607 here's,3,timonofathens,1607 change,3,timonofathens,1607 justice,3,timonofathens,1607 keeps,3,timonofathens,1607 Against,3,timonofathens,1607 report,3,timonofathens,1607 almost,3,timonofathens,1607 wonder,3,timonofathens,1607 prodigal,3,timonofathens,1607 daily,3,timonofathens,1607 entertainment,3,timonofathens,1607 tender,3,timonofathens,1607 faint,3,timonofathens,1607 wolves,3,timonofathens,1607 Set,3,timonofathens,1607 mouth,3,timonofathens,1607 dares,3,timonofathens,1607 cloak,3,timonofathens,1607 See,3,timonofathens,1607 mightst,3,timonofathens,1607 end,3,timonofathens,1607 already,3,timonofathens,1607 didst,3,timonofathens,1607 hereditary,3,timonofathens,1607 'gainst,3,timonofathens,1607 dearest,3,timonofathens,1607 presently,3,timonofathens,1607 knows,3,timonofathens,1607 because,3,timonofathens,1607 flatter,3,timonofathens,1607 greatest,3,timonofathens,1607 gates,3,timonofathens,1607 plenteous,3,timonofathens,1607 trouble,3,timonofathens,1607 wrath,3,timonofathens,1607 taste,3,timonofathens,1607 get,3,timonofathens,1607 salt,3,timonofathens,1607 sake,3,timonofathens,1607 former,3,timonofathens,1607 pomp,3,timonofathens,1607 throw,3,timonofathens,1607 humanity,3,timonofathens,1607 beastly,3,timonofathens,1607 riot,3,timonofathens,1607 crown'd,3,timonofathens,1607 Think,3,timonofathens,1607 earnest,3,timonofathens,1607 wax,3,timonofathens,1607 poet,3,timonofathens,1607 rage,3,timonofathens,1607 face,3,timonofathens,1607 leprosy,3,timonofathens,1607 next,3,timonofathens,1607 Three,3,timonofathens,1607 requite,3,timonofathens,1607 faces,3,timonofathens,1607 takes,3,timonofathens,1607 womb,3,timonofathens,1607 lust,3,timonofathens,1607 rail,3,timonofathens,1607 fox,3,timonofathens,1607 Noble,3,timonofathens,1607 Many,3,timonofathens,1607 diseases,3,timonofathens,1607 minds,3,timonofathens,1607 grant,3,timonofathens,1607 humour,3,timonofathens,1607 returns,3,timonofathens,1607 wounds,3,timonofathens,1607 fly,3,timonofathens,1607 fie,3,timonofathens,1607 fill,3,timonofathens,1607 particular,3,timonofathens,1607 bare,3,timonofathens,1607 shows,3,timonofathens,1607 perceive,3,timonofathens,1607 hour,3,timonofathens,1607 comfort,3,timonofathens,1607 public,3,timonofathens,1607 fast,3,timonofathens,1607 Each,3,timonofathens,1607 reason,3,timonofathens,1607 greet,3,timonofathens,1607 dangerous,3,timonofathens,1607 argument,3,timonofathens,1607 winter,3,timonofathens,1607 horses,3,timonofathens,1607 gives,3,timonofathens,1607 bawd,3,timonofathens,1607 interest,3,timonofathens,1607 waiting,3,timonofathens,1607 swear,3,timonofathens,1607 babe,3,timonofathens,1607 goodness,3,timonofathens,1607 seek,3,timonofathens,1607 Ne'er,3,timonofathens,1607 render,3,timonofathens,1607 True,3,timonofathens,1607 setting,3,timonofathens,1607 heels,3,timonofathens,1607 hours,3,timonofathens,1607 self,3,timonofathens,1607 fairly,3,timonofathens,1607 sickness,3,timonofathens,1607 lip,3,timonofathens,1607 coin,3,timonofathens,1607 honesty,3,timonofathens,1607 spirits,3,timonofathens,1607 spite,3,timonofathens,1607 Five,3,timonofathens,1607 ladies,3,timonofathens,1607 lips,3,timonofathens,1607 Amen,3,timonofathens,1607 E'en,3,timonofathens,1607 suspect,3,timonofathens,1607 recompense,3,timonofathens,1607 silver,3,timonofathens,1607 honour'd,3,timonofathens,1607 dare,3,timonofathens,1607 follow,3,timonofathens,1607 weigh,3,timonofathens,1607 Rich,3,timonofathens,1607 land,3,timonofathens,1607 Timandra,3,timonofathens,1607 bred,3,timonofathens,1607 liest,3,timonofathens,1607 shake,3,timonofathens,1607 shine,3,timonofathens,1607 Take,3,timonofathens,1607 creditors,3,timonofathens,1607 command,3,timonofathens,1607 woman,3,timonofathens,1607 'mongst,3,timonofathens,1607 th',3,timonofathens,1607 mistress,4,timonofathens,1607 business,4,timonofathens,1607 thought,4,timonofathens,1607 Stay,4,timonofathens,1607 bounteous,4,timonofathens,1607 mere,4,timonofathens,1607 understand,4,timonofathens,1607 under,4,timonofathens,1607 thou'lt,4,timonofathens,1607 odds,4,timonofathens,1607 trust,4,timonofathens,1607 become,4,timonofathens,1607 confusion,4,timonofathens,1607 grows,4,timonofathens,1607 toward,4,timonofathens,1607 came,4,timonofathens,1607 wait,4,timonofathens,1607 further,4,timonofathens,1607 sums,4,timonofathens,1607 bound,4,timonofathens,1607 light,4,timonofathens,1607 counsel,4,timonofathens,1607 within,4,timonofathens,1607 cause,4,timonofathens,1607 looks,4,timonofathens,1607 doubt,4,timonofathens,1607 Attendants,4,timonofathens,1607 amiss,4,timonofathens,1607 read,4,timonofathens,1607 ourselves,4,timonofathens,1607 received,4,timonofathens,1607 roots,4,timonofathens,1607 fellow,4,timonofathens,1607 accept,4,timonofathens,1607 steal,4,timonofathens,1607 mean,4,timonofathens,1607 observe,4,timonofathens,1607 parts,4,timonofathens,1607 ha',4,timonofathens,1607 manners,4,timonofathens,1607 What's,4,timonofathens,1607 foes,4,timonofathens,1607 therefore,4,timonofathens,1607 in't,4,timonofathens,1607 kept,4,timonofathens,1607 dinner,4,timonofathens,1607 bless,4,timonofathens,1607 whole,4,timonofathens,1607 Had,4,timonofathens,1607 past,4,timonofathens,1607 god,4,timonofathens,1607 weep,4,timonofathens,1607 grief,4,timonofathens,1607 Prithee,4,timonofathens,1607 kindness,4,timonofathens,1607 fifty,4,timonofathens,1607 Put,4,timonofathens,1607 tongue,4,timonofathens,1607 Like,4,timonofathens,1607 i',4,timonofathens,1607 Fortune,4,timonofathens,1607 servant,4,timonofathens,1607 jewels,4,timonofathens,1607 age,4,timonofathens,1607 ho,4,timonofathens,1607 spent,4,timonofathens,1607 ill,4,timonofathens,1607 knew,4,timonofathens,1607 knee,4,timonofathens,1607 natures,4,timonofathens,1607 brought,4,timonofathens,1607 speaks,4,timonofathens,1607 course,4,timonofathens,1607 Commend,4,timonofathens,1607 foot,4,timonofathens,1607 bosom,4,timonofathens,1607 alive,4,timonofathens,1607 rogue,4,timonofathens,1607 ingratitude,4,timonofathens,1607 hazard,4,timonofathens,1607 broke,4,timonofathens,1607 new,4,timonofathens,1607 empty,4,timonofathens,1607 gentle,4,timonofathens,1607 Hang,4,timonofathens,1607 Athenians,4,timonofathens,1607 ours,4,timonofathens,1607 strike,4,timonofathens,1607 Isidore,4,timonofathens,1607 philosopher,4,timonofathens,1607 Some,4,timonofathens,1607 knave,4,timonofathens,1607 I'ld,4,timonofathens,1607 SEMPRONIUS,4,timonofathens,1607 labour,4,timonofathens,1607 over,4,timonofathens,1607 close,4,timonofathens,1607 wrongs,4,timonofathens,1607 flies,4,timonofathens,1607 thing,4,timonofathens,1607 break,4,timonofathens,1607 happiness,4,timonofathens,1607 heard,4,timonofathens,1607 believe,4,timonofathens,1607 Can,4,timonofathens,1607 found,4,timonofathens,1607 coming,4,timonofathens,1607 Fourth,4,timonofathens,1607 served,4,timonofathens,1607 LUCIUS,4,timonofathens,1607 anger,4,timonofathens,1607 angry,4,timonofathens,1607 table,4,timonofathens,1607 That's,4,timonofathens,1607 Fare,4,timonofathens,1607 lay,4,timonofathens,1607 given,4,timonofathens,1607 clear,4,timonofathens,1607 dishes,4,timonofathens,1607 cut,4,timonofathens,1607 strong,4,timonofathens,1607 lives,4,timonofathens,1607 alone,4,timonofathens,1607 always,4,timonofathens,1607 we'll,4,timonofathens,1607 Mine,4,timonofathens,1607 laws,4,timonofathens,1607 Nothing,4,timonofathens,1607 seldom,4,timonofathens,1607 met,4,timonofathens,1607 glory,4,timonofathens,1607 Away,4,timonofathens,1607 lion,4,timonofathens,1607 father,4,timonofathens,1607 try,4,timonofathens,1607 witness,4,timonofathens,1607 due,4,timonofathens,1607 catch,4,timonofathens,1607 Bring,4,timonofathens,1607 women,4,timonofathens,1607 VENTIDIUS,5,timonofathens,1607 V,5,timonofathens,1607 times,5,timonofathens,1607 help,5,timonofathens,1607 villain,5,timonofathens,1607 flow,5,timonofathens,1607 Soldier,5,timonofathens,1607 Give,5,timonofathens,1607 thou'rt,5,timonofathens,1607 another,5,timonofathens,1607 Now,5,timonofathens,1607 Methinks,5,timonofathens,1607 sea,5,timonofathens,1607 Their,5,timonofathens,1607 beloved,5,timonofathens,1607 faults,5,timonofathens,1607 These,5,timonofathens,1607 both,5,timonofathens,1607 flatterer,5,timonofathens,1607 sun,5,timonofathens,1607 feed,5,timonofathens,1607 heaven,5,timonofathens,1607 wise,5,timonofathens,1607 rest,5,timonofathens,1607 Ladies,5,timonofathens,1607 wast,5,timonofathens,1607 Ha,5,timonofathens,1607 IV,5,timonofathens,1607 ears,5,timonofathens,1607 night,5,timonofathens,1607 valiant,5,timonofathens,1607 gave,5,timonofathens,1607 sorry,5,timonofathens,1607 Or,5,timonofathens,1607 cap,5,timonofathens,1607 Speak,5,timonofathens,1607 just,5,timonofathens,1607 curse,5,timonofathens,1607 quite,5,timonofathens,1607 said,5,timonofathens,1607 gift,5,timonofathens,1607 beat,5,timonofathens,1607 debt,5,timonofathens,1607 stone,5,timonofathens,1607 thrive,5,timonofathens,1607 hands,5,timonofathens,1607 strain,5,timonofathens,1607 Yet,5,timonofathens,1607 twenty,5,timonofathens,1607 forgot,5,timonofathens,1607 praise,5,timonofathens,1607 open,5,timonofathens,1607 owes,5,timonofathens,1607 though,5,timonofathens,1607 ass,5,timonofathens,1607 ye,5,timonofathens,1607 touch,5,timonofathens,1607 Art,5,timonofathens,1607 Into,5,timonofathens,1607 far,5,timonofathens,1607 often,5,timonofathens,1607 griefs,5,timonofathens,1607 shouldst,5,timonofathens,1607 below,5,timonofathens,1607 bears,5,timonofathens,1607 young,5,timonofathens,1607 misery,5,timonofathens,1607 Therefore,5,timonofathens,1607 doors,5,timonofathens,1607 known,5,timonofathens,1607 fire,5,timonofathens,1607 Were,5,timonofathens,1607 morrow,5,timonofathens,1607 Varro,5,timonofathens,1607 Thus,5,timonofathens,1607 happy,5,timonofathens,1607 throats,5,timonofathens,1607 supply,5,timonofathens,1607 gifts,5,timonofathens,1607 contempt,5,timonofathens,1607 Till,5,timonofathens,1607 base,5,timonofathens,1607 large,5,timonofathens,1607 fare,5,timonofathens,1607 gentlemen,5,timonofathens,1607 Isidore's,5,timonofathens,1607 low,5,timonofathens,1607 sweet,5,timonofathens,1607 sound,5,timonofathens,1607 Pray,5,timonofathens,1607 wretched,5,timonofathens,1607 hither,5,timonofathens,1607 master's,5,timonofathens,1607 lie,5,timonofathens,1607 mad,5,timonofathens,1607 Before,5,timonofathens,1607 Men,5,timonofathens,1607 on't,5,timonofathens,1607 virtue,5,timonofathens,1607 strange,5,timonofathens,1607 He's,5,timonofathens,1607 lack,5,timonofathens,1607 told,6,timonofathens,1607 debts,6,timonofathens,1607 for't,6,timonofathens,1607 horse,6,timonofathens,1607 Must,6,timonofathens,1607 drum,6,timonofathens,1607 fury,6,timonofathens,1607 soul,6,timonofathens,1607 Whom,6,timonofathens,1607 head,6,timonofathens,1607 sure,6,timonofathens,1607 sit,6,timonofathens,1607 sin,6,timonofathens,1607 Get,6,timonofathens,1607 beasts,6,timonofathens,1607 worth,6,timonofathens,1607 worst,6,timonofathens,1607 There,6,timonofathens,1607 above,6,timonofathens,1607 promise,6,timonofathens,1607 masters,6,timonofathens,1607 wine,6,timonofathens,1607 Please,6,timonofathens,1607 else,6,timonofathens,1607 At,6,timonofathens,1607 name,6,timonofathens,1607 An,6,timonofathens,1607 pass,6,timonofathens,1607 Re,6,timonofathens,1607 instant,6,timonofathens,1607 earth,6,timonofathens,1607 loves,6,timonofathens,1607 hadst,6,timonofathens,1607 less,6,timonofathens,1607 grace,6,timonofathens,1607 men's,6,timonofathens,1607 valour,6,timonofathens,1607 half,6,timonofathens,1607 More,6,timonofathens,1607 city,6,timonofathens,1607 enemies,6,timonofathens,1607 borrow,6,timonofathens,1607 room,6,timonofathens,1607 occasion,6,timonofathens,1607 indeed,6,timonofathens,1607 Sir,6,timonofathens,1607 youth,6,timonofathens,1607 several,6,timonofathens,1607 ere,6,timonofathens,1607 Dost,6,timonofathens,1607 high,6,timonofathens,1607 Look,6,timonofathens,1607 there's,6,timonofathens,1607 slave,6,timonofathens,1607 let's,6,timonofathens,1607 beseech,6,timonofathens,1607 walls,6,timonofathens,1607 Lucius,6,timonofathens,1607 villains,6,timonofathens,1607 Shall,6,timonofathens,1607 poison,6,timonofathens,1607 please,6,timonofathens,1607 find,6,timonofathens,1607 woods,6,timonofathens,1607 thank,6,timonofathens,1607 prithee,6,timonofathens,1607 Ventidius,6,timonofathens,1607 captain,6,timonofathens,1607 goes,6,timonofathens,1607 servants,6,timonofathens,1607 May,6,timonofathens,1607 e'en,6,timonofathens,1607 meet,7,timonofathens,1607 peace,7,timonofathens,1607 Will,7,timonofathens,1607 mend,7,timonofathens,1607 vain,7,timonofathens,1607 Page,7,timonofathens,1607 care,7,timonofathens,1607 Lucullus,7,timonofathens,1607 full,7,timonofathens,1607 fools,7,timonofathens,1607 Cupid,7,timonofathens,1607 piece,7,timonofathens,1607 turn,7,timonofathens,1607 born,7,timonofathens,1607 after,7,timonofathens,1607 others,7,timonofathens,1607 wish,7,timonofathens,1607 sick,7,timonofathens,1607 slaves,7,timonofathens,1607 pay,7,timonofathens,1607 itself,7,timonofathens,1607 On,7,timonofathens,1607 II,7,timonofathens,1607 proud,7,timonofathens,1607 yourselves,7,timonofathens,1607 whore,7,timonofathens,1607 wear,7,timonofathens,1607 Here's,7,timonofathens,1607 dear,7,timonofathens,1607 dead,7,timonofathens,1607 that's,7,timonofathens,1607 senate,7,timonofathens,1607 Than,7,timonofathens,1607 thanks,7,timonofathens,1607 things,7,timonofathens,1607 estate,7,timonofathens,1607 yours,7,timonofathens,1607 state,7,timonofathens,1607 thief,7,timonofathens,1607 need,7,timonofathens,1607 living,7,timonofathens,1607 near,7,timonofathens,1607 five,7,timonofathens,1607 stand,7,timonofathens,1607 why,7,timonofathens,1607 way,7,timonofathens,1607 themselves,7,timonofathens,1607 till,7,timonofathens,1607 friendship,7,timonofathens,1607 hope,7,timonofathens,1607 man's,7,timonofathens,1607 unto,7,timonofathens,1607 together,7,timonofathens,1607 cold,7,timonofathens,1607 PHRYNIA,7,timonofathens,1607 leave,7,timonofathens,1607 confound,7,timonofathens,1607 makes,7,timonofathens,1607 last,7,timonofathens,1607 being,7,timonofathens,1607 Flaminius,7,timonofathens,1607 Where,7,timonofathens,1607 lord's,7,timonofathens,1607 certain,7,timonofathens,1607 without,7,timonofathens,1607 spirit,7,timonofathens,1607 Banditti,7,timonofathens,1607 kill,7,timonofathens,1607 ',8,timonofathens,1607 pity,8,timonofathens,1607 Nay,8,timonofathens,1607 days,8,timonofathens,1607 health,8,timonofathens,1607 rather,8,timonofathens,1607 drink,8,timonofathens,1607 knaves,8,timonofathens,1607 she,8,timonofathens,1607 death,8,timonofathens,1607 Our,8,timonofathens,1607 service,8,timonofathens,1607 sword,8,timonofathens,1607 bring,8,timonofathens,1607 By,8,timonofathens,1607 denied,8,timonofathens,1607 Has,8,timonofathens,1607 jewel,8,timonofathens,1607 air,8,timonofathens,1607 left,8,timonofathens,1607 LUCULLUS,8,timonofathens,1607 any,8,timonofathens,1607 place,8,timonofathens,1607 Servilius,8,timonofathens,1607 hand,8,timonofathens,1607 PHILOTUS,8,timonofathens,1607 Are,8,timonofathens,1607 right,8,timonofathens,1607 root,8,timonofathens,1607 mind,8,timonofathens,1607 beggar,8,timonofathens,1607 once,8,timonofathens,1607 same,8,timonofathens,1607 Well,8,timonofathens,1607 bounty,8,timonofathens,1607 HORTENSIUS,8,timonofathens,1607 old,8,timonofathens,1607 three,8,timonofathens,1607 work,8,timonofathens,1607 company,8,timonofathens,1607 word,8,timonofathens,1607 even,8,timonofathens,1607 senators,8,timonofathens,1607 law,8,timonofathens,1607 seen,8,timonofathens,1607 fellows,8,timonofathens,1607 return,8,timonofathens,1607 send,8,timonofathens,1607 late,8,timonofathens,1607 shalt,8,timonofathens,1607 die,8,timonofathens,1607 pray,9,timonofathens,1607 Upon,9,timonofathens,1607 TIMANDRA,9,timonofathens,1607 thieves,9,timonofathens,1607 false,9,timonofathens,1607 There's,9,timonofathens,1607 each,9,timonofathens,1607 III,9,timonofathens,1607 bid,9,timonofathens,1607 mankind,9,timonofathens,1607 doth,9,timonofathens,1607 Both,9,timonofathens,1607 breath,9,timonofathens,1607 needs,9,timonofathens,1607 done,9,timonofathens,1607 Yes,9,timonofathens,1607 hast,9,timonofathens,1607 Lords,9,timonofathens,1607 water,9,timonofathens,1607 From,9,timonofathens,1607 war,9,timonofathens,1607 serve,9,timonofathens,1607 Make,9,timonofathens,1607 gentleman,9,timonofathens,1607 hearts,9,timonofathens,1607 thus,9,timonofathens,1607 Thy,9,timonofathens,1607 answer,10,timonofathens,1607 every,10,timonofathens,1607 Would,10,timonofathens,1607 words,10,timonofathens,1607 call,10,timonofathens,1607 Not,10,timonofathens,1607 Aside,10,timonofathens,1607 common,10,timonofathens,1607 stay,10,timonofathens,1607 enter,10,timonofathens,1607 blood,10,timonofathens,1607 bear,10,timonofathens,1607 forth,10,timonofathens,1607 hate,10,timonofathens,1607 show,10,timonofathens,1607 Hath,10,timonofathens,1607 Have,10,timonofathens,1607 beast,10,timonofathens,1607 general,10,timonofathens,1607 nor,10,timonofathens,1607 free,10,timonofathens,1607 who,10,timonofathens,1607 fair,10,timonofathens,1607 fall,10,timonofathens,1607 fortune,10,timonofathens,1607 thousand,10,timonofathens,1607 hold,10,timonofathens,1607 wilt,10,timonofathens,1607 Messenger,10,timonofathens,1607 wouldst,10,timonofathens,1607 Whose,11,timonofathens,1607 Nor,11,timonofathens,1607 against,11,timonofathens,1607 set,11,timonofathens,1607 Jeweller,11,timonofathens,1607 One,11,timonofathens,1607 he's,11,timonofathens,1607 Be,11,timonofathens,1607 means,11,timonofathens,1607 whose,11,timonofathens,1607 Stranger,11,timonofathens,1607 feast,11,timonofathens,1607 little,11,timonofathens,1607 where,11,timonofathens,1607 grave,11,timonofathens,1607 Senators,11,timonofathens,1607 rich,11,timonofathens,1607 master,11,timonofathens,1607 back,11,timonofathens,1607 Merchant,11,timonofathens,1607 live,11,timonofathens,1607 honourable,12,timonofathens,1607 plague,12,timonofathens,1607 Come,12,timonofathens,1607 fear,12,timonofathens,1607 worthy,12,timonofathens,1607 Old,12,timonofathens,1607 Good,12,timonofathens,1607 long,12,timonofathens,1607 Most,12,timonofathens,1607 part,12,timonofathens,1607 keep,12,timonofathens,1607 present,12,timonofathens,1607 many,12,timonofathens,1607 whom,12,timonofathens,1607 eat,12,timonofathens,1607 power,12,timonofathens,1607 cave,13,timonofathens,1607 life,13,timonofathens,1607 enough,13,timonofathens,1607 better,13,timonofathens,1607 meat,13,timonofathens,1607 steward,13,timonofathens,1607 His,13,timonofathens,1607 Go,13,timonofathens,1607 Which,13,timonofathens,1607 put,13,timonofathens,1607 look,13,timonofathens,1607 lords,13,timonofathens,1607 very,13,timonofathens,1607 myself,13,timonofathens,1607 They,13,timonofathens,1607 off,13,timonofathens,1607 only,13,timonofathens,1607 ne'er,13,timonofathens,1607 wealth,13,timonofathens,1607 SERVILIUS,13,timonofathens,1607 first,13,timonofathens,1607 talents,13,timonofathens,1607 kind,13,timonofathens,1607 world,14,timonofathens,1607 TITUS,14,timonofathens,1607 want,14,timonofathens,1607 Do,14,timonofathens,1607 been,14,timonofathens,1607 Your,14,timonofathens,1607 could,14,timonofathens,1607 Alcibiades,14,timonofathens,1607 wert,14,timonofathens,1607 true,14,timonofathens,1607 himself,14,timonofathens,1607 fortunes,14,timonofathens,1607 a,270,timonofathens,1607 away,15,timonofathens,1607 tell,15,timonofathens,1607 down,15,timonofathens,1607 gone,15,timonofathens,1607 Bandit,15,timonofathens,1607 o',15,timonofathens,1607 FLAMINIUS,15,timonofathens,1607 none,15,timonofathens,1607 into,15,timonofathens,1607 This,15,timonofathens,1607 think,15,timonofathens,1607 two,15,timonofathens,1607 might,15,timonofathens,1607 hear,16,timonofathens,1607 welcome,16,timonofathens,1607 Then,16,timonofathens,1607 before,16,timonofathens,1607 Fool,16,timonofathens,1607 eyes,16,timonofathens,1607 sent,16,timonofathens,1607 poor,16,timonofathens,1607 dog,16,timonofathens,1607 other,16,timonofathens,1607 Lucilius',17,timonofathens,1607 Here,17,timonofathens,1607 best,17,timonofathens,1607 dost,17,timonofathens,1607 thyself,17,timonofathens,1607 made,17,timonofathens,1607 ACT,17,timonofathens,1607 again,17,timonofathens,1607 CAPHIS,17,timonofathens,1607 ATHENS,18,timonofathens,1607 never,18,timonofathens,1607 her,18,timonofathens,1607 OF,18,timonofathens,1607 LUCILIUS,18,timonofathens,1607 We,18,timonofathens,1607 go,18,timonofathens,1607 Servants,18,timonofathens,1607 up,18,timonofathens,1607 money,18,timonofathens,1607 still,18,timonofathens,1607 ever,18,timonofathens,1607 day,18,timonofathens,1607 SCENE,18,timonofathens,1607 Is,19,timonofathens,1607 hath,19,timonofathens,1607 fool,19,timonofathens,1607 comes,19,timonofathens,1607 thine,19,timonofathens,1607 Let,19,timonofathens,1607 Athenian,19,timonofathens,1607 nature,19,timonofathens,1607 nothing,20,timonofathens,1607 't,20,timonofathens,1607 those,20,timonofathens,1607 'Tis,20,timonofathens,1607 'em,20,timonofathens,1607 lordship,20,timonofathens,1607 house,20,timonofathens,1607 cannot,20,timonofathens,1607 did,20,timonofathens,1607 Who,21,timonofathens,1607 such,21,timonofathens,1607 friend,21,timonofathens,1607 had,21,timonofathens,1607 As,21,timonofathens,1607 In,21,timonofathens,1607 Exeunt,21,timonofathens,1607 speak,21,timonofathens,1607 come,21,timonofathens,1607 here,22,timonofathens,1607 say,22,timonofathens,1607 then,22,timonofathens,1607 can,22,timonofathens,1607 Varro's,22,timonofathens,1607 noble,22,timonofathens,1607 how,22,timonofathens,1607 mine,22,timonofathens,1607 when,22,timonofathens,1607 When,22,timonofathens,1607 honour,23,timonofathens,1607 has,23,timonofathens,1607 No,23,timonofathens,1607 Of,23,timonofathens,1607 does,23,timonofathens,1607 most,23,timonofathens,1607 Apemantus,23,timonofathens,1607 heart,23,timonofathens,1607 use,23,timonofathens,1607 Why,24,timonofathens,1607 these,24,timonofathens,1607 Ay,24,timonofathens,1607 there,24,timonofathens,1607 Third,24,timonofathens,1607 was,24,timonofathens,1607 great,24,timonofathens,1607 see,25,timonofathens,1607 yet,25,timonofathens,1607 or,25,timonofathens,1607 He,26,timonofathens,1607 All,26,timonofathens,1607 own,26,timonofathens,1607 honest,26,timonofathens,1607 must,27,timonofathens,1607 With,27,timonofathens,1607 So,27,timonofathens,1607 time,27,timonofathens,1607 take,27,timonofathens,1607 upon,28,timonofathens,1607 too,28,timonofathens,1607 give,29,timonofathens,1607 Exit,29,timonofathens,1607 some,30,timonofathens,1607 It,30,timonofathens,1607 'tis,30,timonofathens,1607 us,30,timonofathens,1607 much,31,timonofathens,1607 than,31,timonofathens,1607 art,31,timonofathens,1607 For,32,timonofathens,1607 love,32,timonofathens,1607 How,32,timonofathens,1607 which,34,timonofathens,1607 friends,34,timonofathens,1607 sir,34,timonofathens,1607 let,34,timonofathens,1607 Painter,35,timonofathens,1607 Timon's,35,timonofathens,1607 Poet,35,timonofathens,1607 an,35,timonofathens,1607 they,36,timonofathens,1607 if,36,timonofathens,1607 know,36,timonofathens,1607 make,36,timonofathens,1607 Thou,36,timonofathens,1607 were,36,timonofathens,1607 may,36,timonofathens,1607 O,37,timonofathens,1607 Athens,37,timonofathens,1607 gold,37,timonofathens,1607 You,38,timonofathens,1607 well,38,timonofathens,1607 If,39,timonofathens,1607 one,39,timonofathens,1607 A,40,timonofathens,1607 am,40,timonofathens,1607 shall,40,timonofathens,1607 My,41,timonofathens,1607 I'll,42,timonofathens,1607 should,43,timonofathens,1607 out,43,timonofathens,1607 gods,43,timonofathens,1607 But,44,timonofathens,1607 would,44,timonofathens,1607 like,45,timonofathens,1607 at,45,timonofathens,1607 we,46,timonofathens,1607 more,47,timonofathens,1607 of,303,timonofathens,1607 ALCIBIADES,48,timonofathens,1607 good,50,timonofathens,1607 Enter,51,timonofathens,1607 men,51,timonofathens,1607 by,52,timonofathens,1607 on,52,timonofathens,1607 from,52,timonofathens,1607 Senator,52,timonofathens,1607 do,55,timonofathens,1607 no,55,timonofathens,1607 FLAVIUS,55,timonofathens,1607 now,55,timonofathens,1607 what,55,timonofathens,1607 will,58,timonofathens,1607 What,58,timonofathens,1607 as,60,timonofathens,1607 Second,63,timonofathens,1607 That,65,timonofathens,1607 our,65,timonofathens,1607 their,67,timonofathens,1607 man,67,timonofathens,1607 them,71,timonofathens,1607 Servant,74,timonofathens,1607 Timon,76,timonofathens,1607 To,76,timonofathens,1607 are,77,timonofathens,1607 The,78,timonofathens,1607 First,79,timonofathens,1607 so,85,timonofathens,1607 but,91,timonofathens,1607 all,97,timonofathens,1607 this,105,timonofathens,1607 Lord,107,timonofathens,1607 APEMANTUS,109,timonofathens,1607 he,109,timonofathens,1607 to,366,timonofathens,1607 for,111,timonofathens,1607 lord,115,timonofathens,1607 your,120,timonofathens,1607 be,120,timonofathens,1607 thy,124,timonofathens,1607 And,127,timonofathens,1607 have,128,timonofathens,1607 thee,134,timonofathens,1607 with,136,timonofathens,1607 it,140,timonofathens,1607 him,141,timonofathens,1607 I,397,timonofathens,1607 is,151,timonofathens,1607 me,155,timonofathens,1607 and,415,timonofathens,1607 thou,160,timonofathens,1607 that,160,timonofathens,1607 the,429,timonofathens,1607 not,185,timonofathens,1607 his,187,timonofathens,1607 in,215,timonofathens,1607 my,226,timonofathens,1607 you,238,timonofathens,1607 TIMON,246,timonofathens,1607 attended,1,comedyoferrors,1592 chance,1,comedyoferrors,1592 affords,1,comedyoferrors,1592 discharged,1,comedyoferrors,1592 answered,1,comedyoferrors,1592 You're,1,comedyoferrors,1592 heed,1,comedyoferrors,1592 Among,1,comedyoferrors,1592 brawl,1,comedyoferrors,1592 troubled,1,comedyoferrors,1592 parchment,1,comedyoferrors,1592 sequel,1,comedyoferrors,1592 partial,1,comedyoferrors,1592 rushing,1,comedyoferrors,1592 Think'st,1,comedyoferrors,1592 Hark,1,comedyoferrors,1592 fee,1,comedyoferrors,1592 Soul,1,comedyoferrors,1592 fed,1,comedyoferrors,1592 native,1,comedyoferrors,1592 Again,1,comedyoferrors,1592 troubles,1,comedyoferrors,1592 asses,1,comedyoferrors,1592 forbid,1,comedyoferrors,1592 truce,1,comedyoferrors,1592 sanctuary,1,comedyoferrors,1592 imaginary,1,comedyoferrors,1592 meek,1,comedyoferrors,1592 V,1,comedyoferrors,1592 Possess'd,1,comedyoferrors,1592 token,1,comedyoferrors,1592 times,1,comedyoferrors,1592 guard,1,comedyoferrors,1592 Expedition,1,comedyoferrors,1592 lash'd,1,comedyoferrors,1592 tragic,1,comedyoferrors,1592 invisible,1,comedyoferrors,1592 mayest,1,comedyoferrors,1592 gain'd,1,comedyoferrors,1592 fallacy,1,comedyoferrors,1592 rebukes,1,comedyoferrors,1592 Tartar,1,comedyoferrors,1592 red,1,comedyoferrors,1592 guess,1,comedyoferrors,1592 Vicious,1,comedyoferrors,1592 guest,1,comedyoferrors,1592 chargeth,1,comedyoferrors,1592 merrier,1,comedyoferrors,1592 change,1,comedyoferrors,1592 dilate,1,comedyoferrors,1592 moves,1,comedyoferrors,1592 dines,1,comedyoferrors,1592 males',1,comedyoferrors,1592 height,1,comedyoferrors,1592 Into,1,comedyoferrors,1592 motion,1,comedyoferrors,1592 yielding,1,comedyoferrors,1592 luck,1,comedyoferrors,1592 heir,1,comedyoferrors,1592 double,1,comedyoferrors,1592 Comfort,1,comedyoferrors,1592 frenzy,1,comedyoferrors,1592 Comes,1,comedyoferrors,1592 forswear,1,comedyoferrors,1592 speech,1,comedyoferrors,1592 room,1,comedyoferrors,1592 SOLINUS'S,1,comedyoferrors,1592 burn'd,1,comedyoferrors,1592 discord,1,comedyoferrors,1592 following,1,comedyoferrors,1592 whiteness,1,comedyoferrors,1592 garments,1,comedyoferrors,1592 spends,1,comedyoferrors,1592 carcanet,1,comedyoferrors,1592 shapeless,1,comedyoferrors,1592 travail,1,comedyoferrors,1592 excrement,1,comedyoferrors,1592 masters',1,comedyoferrors,1592 commodities,1,comedyoferrors,1592 heavier,1,comedyoferrors,1592 siren,1,comedyoferrors,1592 rag,1,comedyoferrors,1592 shameful,1,comedyoferrors,1592 peace,1,comedyoferrors,1592 maid,1,comedyoferrors,1592 Abetting,1,comedyoferrors,1592 tarry,1,comedyoferrors,1592 Belgia,1,comedyoferrors,1592 fainting,1,comedyoferrors,1592 savor'd,1,comedyoferrors,1592 disparagement,1,comedyoferrors,1592 sympathized,1,comedyoferrors,1592 rock,1,comedyoferrors,1592 hind,1,comedyoferrors,1592 bones,1,comedyoferrors,1592 carries,1,comedyoferrors,1592 scorch,1,comedyoferrors,1592 unluckily,1,comedyoferrors,1592 foolery,1,comedyoferrors,1592 rot,1,comedyoferrors,1592 distinguish'd,1,comedyoferrors,1592 exploits,1,comedyoferrors,1592 griefs,1,comedyoferrors,1592 forehead,1,comedyoferrors,1592 offended,1,comedyoferrors,1592 Infect,1,comedyoferrors,1592 assured,1,comedyoferrors,1592 misfortunes,1,comedyoferrors,1592 row,1,comedyoferrors,1592 breathed,1,comedyoferrors,1592 doubtful,1,comedyoferrors,1592 branch,1,comedyoferrors,1592 lifeless,1,comedyoferrors,1592 steals,1,comedyoferrors,1592 Wilt,1,comedyoferrors,1592 apprehended,1,comedyoferrors,1592 ungalled,1,comedyoferrors,1592 day's,1,comedyoferrors,1592 joy,1,comedyoferrors,1592 Ireland,1,comedyoferrors,1592 lords,1,comedyoferrors,1592 Complain,1,comedyoferrors,1592 road,1,comedyoferrors,1592 Headsman,1,comedyoferrors,1592 Genius,1,comedyoferrors,1592 brands,1,comedyoferrors,1592 Lords,1,comedyoferrors,1592 couldst,1,comedyoferrors,1592 discourses,1,comedyoferrors,1592 puddled,1,comedyoferrors,1592 faith,1,comedyoferrors,1592 curtal,1,comedyoferrors,1592 sleeps,1,comedyoferrors,1592 Better,1,comedyoferrors,1592 cords,1,comedyoferrors,1592 dire,1,comedyoferrors,1592 discoursed,1,comedyoferrors,1592 Establish,1,comedyoferrors,1592 thinks,1,comedyoferrors,1592 furthest,1,comedyoferrors,1592 Else,1,comedyoferrors,1592 Stay,1,comedyoferrors,1592 midst,1,comedyoferrors,1592 dish,1,comedyoferrors,1592 proverb,1,comedyoferrors,1592 entered,1,comedyoferrors,1592 fable,1,comedyoferrors,1592 Back,1,comedyoferrors,1592 button'd,1,comedyoferrors,1592 sparing,1,comedyoferrors,1592 loureth,1,comedyoferrors,1592 waked,1,comedyoferrors,1592 gavest,1,comedyoferrors,1592 strucken,1,comedyoferrors,1592 penalty,1,comedyoferrors,1592 darkness,1,comedyoferrors,1592 hire,1,comedyoferrors,1592 halberds,1,comedyoferrors,1592 unurged,1,comedyoferrors,1592 digestions,1,comedyoferrors,1592 infringe,1,comedyoferrors,1592 plainer,1,comedyoferrors,1592 Discover,1,comedyoferrors,1592 harbours,1,comedyoferrors,1592 Saving,1,comedyoferrors,1592 mace,1,comedyoferrors,1592 diminishing,1,comedyoferrors,1592 mere,1,comedyoferrors,1592 alleys,1,comedyoferrors,1592 vale,1,comedyoferrors,1592 ruffian,1,comedyoferrors,1592 females,1,comedyoferrors,1592 Shouldst,1,comedyoferrors,1592 while,1,comedyoferrors,1592 grim,1,comedyoferrors,1592 prosperous,1,comedyoferrors,1592 errand,1,comedyoferrors,1592 Sprung,1,comedyoferrors,1592 ireful,1,comedyoferrors,1592 Mightst,1,comedyoferrors,1592 Lightens,1,comedyoferrors,1592 familiarly,1,comedyoferrors,1592 vapours,1,comedyoferrors,1592 brook,1,comedyoferrors,1592 Beshrew,1,comedyoferrors,1592 daily,1,comedyoferrors,1592 rout,1,comedyoferrors,1592 demeanor,1,comedyoferrors,1592 accidentally,1,comedyoferrors,1592 Cries,1,comedyoferrors,1592 rash,1,comedyoferrors,1592 looked,1,comedyoferrors,1592 host's,1,comedyoferrors,1592 naked,1,comedyoferrors,1592 beard,1,comedyoferrors,1592 jugglers,1,comedyoferrors,1592 spread,1,comedyoferrors,1592 drunkard,1,comedyoferrors,1592 slander,1,comedyoferrors,1592 succession,1,comedyoferrors,1592 feeds,1,comedyoferrors,1592 blunt,1,comedyoferrors,1592 ours,1,comedyoferrors,1592 although,1,comedyoferrors,1592 communicate,1,comedyoferrors,1592 meanly,1,comedyoferrors,1592 sorceress,1,comedyoferrors,1592 Ere,1,comedyoferrors,1592 year,1,comedyoferrors,1592 rubies,1,comedyoferrors,1592 Ginn,1,comedyoferrors,1592 bestows,1,comedyoferrors,1592 cheat,1,comedyoferrors,1592 nought,1,comedyoferrors,1592 sour,1,comedyoferrors,1592 prey,1,comedyoferrors,1592 calls,1,comedyoferrors,1592 travels,1,comedyoferrors,1592 befall,1,comedyoferrors,1592 advocate,1,comedyoferrors,1592 cheap,1,comedyoferrors,1592 dangers,1,comedyoferrors,1592 Love,1,comedyoferrors,1592 Wear,1,comedyoferrors,1592 patron,1,comedyoferrors,1592 ditches,1,comedyoferrors,1592 lies,1,comedyoferrors,1592 strumpet,1,comedyoferrors,1592 ivy,1,comedyoferrors,1592 iron,1,comedyoferrors,1592 damned,1,comedyoferrors,1592 substance,1,comedyoferrors,1592 fraughtage,1,comedyoferrors,1592 strike,1,comedyoferrors,1592 sore,1,comedyoferrors,1592 Striking,1,comedyoferrors,1592 pinch,1,comedyoferrors,1592 bridle,1,comedyoferrors,1592 Money,1,comedyoferrors,1592 admit,1,comedyoferrors,1592 Embrace,1,comedyoferrors,1592 narrow,1,comedyoferrors,1592 affections,1,comedyoferrors,1592 nut,1,comedyoferrors,1592 Would,1,comedyoferrors,1592 mate,1,comedyoferrors,1592 baggage,1,comedyoferrors,1592 become,1,comedyoferrors,1592 fairy,1,comedyoferrors,1592 recreation,1,comedyoferrors,1592 whoreson,1,comedyoferrors,1592 voluble,1,comedyoferrors,1592 Consider,1,comedyoferrors,1592 friends,1,comedyoferrors,1592 fairs,1,comedyoferrors,1592 PERSONAE,1,comedyoferrors,1592 proclaim,1,comedyoferrors,1592 parings,1,comedyoferrors,1592 springs,1,comedyoferrors,1592 ignorant,1,comedyoferrors,1592 unviolated,1,comedyoferrors,1592 misery,1,comedyoferrors,1592 demand,1,comedyoferrors,1592 agreed,1,comedyoferrors,1592 preeminence,1,comedyoferrors,1592 Certain,1,comedyoferrors,1592 scars,1,comedyoferrors,1592 youth,1,comedyoferrors,1592 doomsday,1,comedyoferrors,1592 mingled,1,comedyoferrors,1592 soothe,1,comedyoferrors,1592 loathsome,1,comedyoferrors,1592 freely,1,comedyoferrors,1592 Pretty,1,comedyoferrors,1592 quarter,1,comedyoferrors,1592 softly,1,comedyoferrors,1592 buttocks,1,comedyoferrors,1592 famous,1,comedyoferrors,1592 song,1,comedyoferrors,1592 Revel,1,comedyoferrors,1592 Doth,1,comedyoferrors,1592 garment,1,comedyoferrors,1592 tapestry,1,comedyoferrors,1592 Thyself,1,comedyoferrors,1592 breach,1,comedyoferrors,1592 pack'd,1,comedyoferrors,1592 agrees,1,comedyoferrors,1592 question,1,comedyoferrors,1592 stirring,1,comedyoferrors,1592 mercy,1,comedyoferrors,1592 contraries,1,comedyoferrors,1592 Known,1,comedyoferrors,1592 chin,1,comedyoferrors,1592 counter,1,comedyoferrors,1592 Knows,1,comedyoferrors,1592 chid,1,comedyoferrors,1592 ire,1,comedyoferrors,1592 consort,1,comedyoferrors,1592 disdain,1,comedyoferrors,1592 err,1,comedyoferrors,1592 device,1,comedyoferrors,1592 high,1,comedyoferrors,1592 strife,1,comedyoferrors,1592 goblins,1,comedyoferrors,1592 other's,1,comedyoferrors,1592 mortal,1,comedyoferrors,1592 likewise,1,comedyoferrors,1592 amazed,1,comedyoferrors,1592 Certes,1,comedyoferrors,1592 embellished,1,comedyoferrors,1592 towards,1,comedyoferrors,1592 Free,1,comedyoferrors,1592 wander'd,1,comedyoferrors,1592 consuming,1,comedyoferrors,1592 Delay,1,comedyoferrors,1592 slept,1,comedyoferrors,1592 arrived,1,comedyoferrors,1592 Asia,1,comedyoferrors,1592 working,1,comedyoferrors,1592 loseth,1,comedyoferrors,1592 sole,1,comedyoferrors,1592 ruin'd,1,comedyoferrors,1592 sold,1,comedyoferrors,1592 confusion,1,comedyoferrors,1592 wiser,1,comedyoferrors,1592 Long,1,comedyoferrors,1592 Dromios,1,comedyoferrors,1592 charitable,1,comedyoferrors,1592 elm,1,comedyoferrors,1592 ell,1,comedyoferrors,1592 random,1,comedyoferrors,1592 befall'n,1,comedyoferrors,1592 relieve,1,comedyoferrors,1592 start,1,comedyoferrors,1592 shrewish,1,comedyoferrors,1592 outfacing,1,comedyoferrors,1592 bearing,1,comedyoferrors,1592 creditor,1,comedyoferrors,1592 Makes,1,comedyoferrors,1592 stream,1,comedyoferrors,1592 Soon,1,comedyoferrors,1592 highness,1,comedyoferrors,1592 escape,1,comedyoferrors,1592 call'st,1,comedyoferrors,1592 circumstance,1,comedyoferrors,1592 jars,1,comedyoferrors,1592 Kinsman,1,comedyoferrors,1592 observation,1,comedyoferrors,1592 mildly,1,comedyoferrors,1592 male,1,comedyoferrors,1592 confounds,1,comedyoferrors,1592 synods,1,comedyoferrors,1592 undividable,1,comedyoferrors,1592 merrily,1,comedyoferrors,1592 beads,1,comedyoferrors,1592 Promising,1,comedyoferrors,1592 wrought,1,comedyoferrors,1592 beggar,1,comedyoferrors,1592 malt,1,comedyoferrors,1592 shame's,1,comedyoferrors,1592 pike,1,comedyoferrors,1592 Consent,1,comedyoferrors,1592 bloods,1,comedyoferrors,1592 Keep,1,comedyoferrors,1592 procure,1,comedyoferrors,1592 obscured,1,comedyoferrors,1592 goodwill,1,comedyoferrors,1592 subjects,1,comedyoferrors,1592 decline,1,comedyoferrors,1592 revile,1,comedyoferrors,1592 Pinch's,1,comedyoferrors,1592 cake,1,comedyoferrors,1592 unsought,1,comedyoferrors,1592 Basting,1,comedyoferrors,1592 intellectual,1,comedyoferrors,1592 bareheaded,1,comedyoferrors,1592 mark,1,comedyoferrors,1592 wants,1,comedyoferrors,1592 shrew,1,comedyoferrors,1592 babes,1,comedyoferrors,1592 senior,1,comedyoferrors,1592 calm,1,comedyoferrors,1592 blot,1,comedyoferrors,1592 Marian,1,comedyoferrors,1592 gross,1,comedyoferrors,1592 devils,1,comedyoferrors,1592 increased,1,comedyoferrors,1592 conduits,1,comedyoferrors,1592 furnish'd,1,comedyoferrors,1592 quench,1,comedyoferrors,1592 mire,1,comedyoferrors,1592 Thee,1,comedyoferrors,1592 let's,1,comedyoferrors,1592 deciphers,1,comedyoferrors,1592 wot,1,comedyoferrors,1592 controls,1,comedyoferrors,1592 rides,1,comedyoferrors,1592 glass,1,comedyoferrors,1592 deform,1,comedyoferrors,1592 ungentle,1,comedyoferrors,1592 won,1,comedyoferrors,1592 apparently,1,comedyoferrors,1592 Netherlands,1,comedyoferrors,1592 beseem,1,comedyoferrors,1592 Unfeeling,1,comedyoferrors,1592 desperately,1,comedyoferrors,1592 complexion,1,comedyoferrors,1592 gates,1,comedyoferrors,1592 addition,1,comedyoferrors,1592 teach,1,comedyoferrors,1592 noise,1,comedyoferrors,1592 America,1,comedyoferrors,1592 wafts,1,comedyoferrors,1592 lapwing,1,comedyoferrors,1592 Beside,1,comedyoferrors,1592 foolishness,1,comedyoferrors,1592 Avaunt,1,comedyoferrors,1592 mist,1,comedyoferrors,1592 blessed,1,comedyoferrors,1592 mountain,1,comedyoferrors,1592 mourn'd,1,comedyoferrors,1592 freedom,1,comedyoferrors,1592 fret,1,comedyoferrors,1592 'Sir,1,comedyoferrors,1592 seal'd,1,comedyoferrors,1592 threatening,1,comedyoferrors,1592 visit,1,comedyoferrors,1592 over,1,comedyoferrors,1592 coldly,1,comedyoferrors,1592 Rings,1,comedyoferrors,1592 Buy,1,comedyoferrors,1592 black,1,comedyoferrors,1592 asked,1,comedyoferrors,1592 confirms,1,comedyoferrors,1592 Saw'st,1,comedyoferrors,1592 oftentimes,1,comedyoferrors,1592 apart,1,comedyoferrors,1592 'respice,1,comedyoferrors,1592 marvel,1,comedyoferrors,1592 towns,1,comedyoferrors,1592 stealth,1,comedyoferrors,1592 adventures,1,comedyoferrors,1592 dainty,1,comedyoferrors,1592 letters,1,comedyoferrors,1592 she's,1,comedyoferrors,1592 one's,1,comedyoferrors,1592 wizard,1,comedyoferrors,1592 ocean,1,comedyoferrors,1592 execution,1,comedyoferrors,1592 oil,1,comedyoferrors,1592 six,1,comedyoferrors,1592 disguised,1,comedyoferrors,1592 Circe's,1,comedyoferrors,1592 Perhaps,1,comedyoferrors,1592 sayest,1,comedyoferrors,1592 felt'st,1,comedyoferrors,1592 shames,1,comedyoferrors,1592 I'm,1,comedyoferrors,1592 scanted,1,comedyoferrors,1592 Avoid,1,comedyoferrors,1592 desired,1,comedyoferrors,1592 undishonoured,1,comedyoferrors,1592 whatsoever,1,comedyoferrors,1592 boat,1,comedyoferrors,1592 Were,1,comedyoferrors,1592 disfigure,1,comedyoferrors,1592 blindness,1,comedyoferrors,1592 indignity,1,comedyoferrors,1592 cheaters,1,comedyoferrors,1592 returned,1,comedyoferrors,1592 accords,1,comedyoferrors,1592 railing,1,comedyoferrors,1592 mountebank,1,comedyoferrors,1592 taste,1,comedyoferrors,1592 violently,1,comedyoferrors,1592 pause,1,comedyoferrors,1592 minions,1,comedyoferrors,1592 mishap,1,comedyoferrors,1592 passage,1,comedyoferrors,1592 Beyond,1,comedyoferrors,1592 maids,1,comedyoferrors,1592 'twere,1,comedyoferrors,1592 'Twixt,1,comedyoferrors,1592 proved,1,comedyoferrors,1592 Denies,1,comedyoferrors,1592 Reserve,1,comedyoferrors,1592 disturb'd,1,comedyoferrors,1592 basting,1,comedyoferrors,1592 servitude,1,comedyoferrors,1592 grave,1,comedyoferrors,1592 Scotland,1,comedyoferrors,1592 bastard,1,comedyoferrors,1592 tooth,1,comedyoferrors,1592 odd,1,comedyoferrors,1592 stale,1,comedyoferrors,1592 pound,1,comedyoferrors,1592 salt,1,comedyoferrors,1592 saying,1,comedyoferrors,1592 vice,1,comedyoferrors,1592 virtuous,1,comedyoferrors,1592 fittest,1,comedyoferrors,1592 purchase,1,comedyoferrors,1592 chain'd,1,comedyoferrors,1592 Herein,1,comedyoferrors,1592 weepings,1,comedyoferrors,1592 Paradise,1,comedyoferrors,1592 sorrowest,1,comedyoferrors,1592 disloyalty,1,comedyoferrors,1592 Kneel,1,comedyoferrors,1592 Look'd,1,comedyoferrors,1592 Denied,1,comedyoferrors,1592 experience,1,comedyoferrors,1592 Run,1,comedyoferrors,1592 Deep,1,comedyoferrors,1592 bogs,1,comedyoferrors,1592 liberties,1,comedyoferrors,1592 Witness,1,comedyoferrors,1592 incivility,1,comedyoferrors,1592 enters,1,comedyoferrors,1592 touches,1,comedyoferrors,1592 she'll,1,comedyoferrors,1592 deceit,1,comedyoferrors,1592 spherical,1,comedyoferrors,1592 throng,1,comedyoferrors,1592 wedding,1,comedyoferrors,1592 arrival,1,comedyoferrors,1592 illusions,1,comedyoferrors,1592 privy,1,comedyoferrors,1592 redemption,1,comedyoferrors,1592 sorrow,1,comedyoferrors,1592 fell,1,comedyoferrors,1592 traders,1,comedyoferrors,1592 abused,1,comedyoferrors,1592 forsake,1,comedyoferrors,1592 score,1,comedyoferrors,1592 roughly,1,comedyoferrors,1592 livest,1,comedyoferrors,1592 stealing,1,comedyoferrors,1592 linger'd,1,comedyoferrors,1592 only,1,comedyoferrors,1592 disannul,1,comedyoferrors,1592 youngest,1,comedyoferrors,1592 syrups,1,comedyoferrors,1592 Smother'd,1,comedyoferrors,1592 sot,1,comedyoferrors,1592 crannies,1,comedyoferrors,1592 vine,1,comedyoferrors,1592 kitchen'd,1,comedyoferrors,1592 scorn'd,1,comedyoferrors,1592 Such,1,comedyoferrors,1592 morrow,1,comedyoferrors,1592 Turkish,1,comedyoferrors,1592 comfortless,1,comedyoferrors,1592 managed,1,comedyoferrors,1592 traffic,1,comedyoferrors,1592 gay,1,comedyoferrors,1592 thwart,1,comedyoferrors,1592 bringing,1,comedyoferrors,1592 sworn,1,comedyoferrors,1592 sob,1,comedyoferrors,1592 different,1,comedyoferrors,1592 Farewell,1,comedyoferrors,1592 beastly,1,comedyoferrors,1592 raised,1,comedyoferrors,1592 waking,1,comedyoferrors,1592 meaner,1,comedyoferrors,1592 coxcomb,1,comedyoferrors,1592 bestow'd,1,comedyoferrors,1592 walks,1,comedyoferrors,1592 buck,1,comedyoferrors,1592 'I,1,comedyoferrors,1592 viol,1,comedyoferrors,1592 cuts,1,comedyoferrors,1592 floated,1,comedyoferrors,1592 walls,1,comedyoferrors,1592 forthwith,1,comedyoferrors,1592 ripe,1,comedyoferrors,1592 taunt,1,comedyoferrors,1592 Muffle,1,comedyoferrors,1592 second,1,comedyoferrors,1592 chat,1,comedyoferrors,1592 hope's,1,comedyoferrors,1592 beloved,1,comedyoferrors,1592 adulterate,1,comedyoferrors,1592 Usurping,1,comedyoferrors,1592 commends,1,comedyoferrors,1592 buffet,1,comedyoferrors,1592 sky,1,comedyoferrors,1592 Sleeping,1,comedyoferrors,1592 licentious,1,comedyoferrors,1592 sprites,1,comedyoferrors,1592 sets,1,comedyoferrors,1592 gnaw'd,1,comedyoferrors,1592 patiently,1,comedyoferrors,1592 Doctor,1,comedyoferrors,1592 suck,1,comedyoferrors,1592 Epidaurus,1,comedyoferrors,1592 decreed,1,comedyoferrors,1592 merciless,1,comedyoferrors,1592 dally,1,comedyoferrors,1592 Spake,1,comedyoferrors,1592 thin,1,comedyoferrors,1592 stiff,1,comedyoferrors,1592 wan,1,comedyoferrors,1592 sere,1,comedyoferrors,1592 Gillian,1,comedyoferrors,1592 enamelled,1,comedyoferrors,1592 hurried,1,comedyoferrors,1592 adverse,1,comedyoferrors,1592 amiss,1,comedyoferrors,1592 staff,1,comedyoferrors,1592 duty,1,comedyoferrors,1592 rise,1,comedyoferrors,1592 driven,1,comedyoferrors,1592 able,1,comedyoferrors,1592 otherwhere,1,comedyoferrors,1592 trusts,1,comedyoferrors,1592 tailor,1,comedyoferrors,1592 drives,1,comedyoferrors,1592 trusty,1,comedyoferrors,1592 declining,1,comedyoferrors,1592 morris,1,comedyoferrors,1592 important,1,comedyoferrors,1592 ergo,1,comedyoferrors,1592 heats,1,comedyoferrors,1592 growing,1,comedyoferrors,1592 everlasting,1,comedyoferrors,1592 Peruse,1,comedyoferrors,1592 Forced,1,comedyoferrors,1592 burdens,1,comedyoferrors,1592 Fasten'd,1,comedyoferrors,1592 heavens,1,comedyoferrors,1592 waftage,1,comedyoferrors,1592 passed,1,comedyoferrors,1592 embracements,1,comedyoferrors,1592 Excludes,1,comedyoferrors,1592 brier,1,comedyoferrors,1592 pride,1,comedyoferrors,1592 inspiration,1,comedyoferrors,1592 Wast,1,comedyoferrors,1592 Stray'd,1,comedyoferrors,1592 forward,1,comedyoferrors,1592 snow,1,comedyoferrors,1592 points,1,comedyoferrors,1592 rags,1,comedyoferrors,1592 Out,1,comedyoferrors,1592 bereft,1,comedyoferrors,1592 covetous,1,comedyoferrors,1592 dryfoot,1,comedyoferrors,1592 Unwilling,1,comedyoferrors,1592 rush'd,1,comedyoferrors,1592 afraid,1,comedyoferrors,1592 reft,1,comedyoferrors,1592 supper,1,comedyoferrors,1592 crime,1,comedyoferrors,1592 crupper,1,comedyoferrors,1592 complain,1,comedyoferrors,1592 twelve,1,comedyoferrors,1592 Beg,1,comedyoferrors,1592 gnawing,1,comedyoferrors,1592 wheel,1,comedyoferrors,1592 rhyme,1,comedyoferrors,1592 next,1,comedyoferrors,1592 Unquiet,1,comedyoferrors,1592 brags,1,comedyoferrors,1592 habit,1,comedyoferrors,1592 dross,1,comedyoferrors,1592 possess,1,comedyoferrors,1592 ruins,1,comedyoferrors,1592 bliss,1,comedyoferrors,1592 drowned,1,comedyoferrors,1592 Shame,1,comedyoferrors,1592 Maud,1,comedyoferrors,1592 absence,1,comedyoferrors,1592 grossly,1,comedyoferrors,1592 parrot,1,comedyoferrors,1592 vulgar,1,comedyoferrors,1592 fix'd,1,comedyoferrors,1592 falls,1,comedyoferrors,1592 gladly,1,comedyoferrors,1592 runs,1,comedyoferrors,1592 raft,1,comedyoferrors,1592 exceeding,1,comedyoferrors,1592 diviner,1,comedyoferrors,1592 'Fly,1,comedyoferrors,1592 detain,1,comedyoferrors,1592 breadth,1,comedyoferrors,1592 drone,1,comedyoferrors,1592 Greece,1,comedyoferrors,1592 Straight,1,comedyoferrors,1592 ransom,1,comedyoferrors,1592 penitent,1,comedyoferrors,1592 watery,1,comedyoferrors,1592 Heaven,1,comedyoferrors,1592 seeks,1,comedyoferrors,1592 after,1,comedyoferrors,1592 dainties,1,comedyoferrors,1592 dearly,1,comedyoferrors,1592 eldest,1,comedyoferrors,1592 conference,1,comedyoferrors,1592 mark'd,1,comedyoferrors,1592 gossiping,1,comedyoferrors,1592 marry,1,comedyoferrors,1592 virtue's,1,comedyoferrors,1592 poison,1,comedyoferrors,1592 charged,1,comedyoferrors,1592 angel,1,comedyoferrors,1592 fondly,1,comedyoferrors,1592 tilting,1,comedyoferrors,1592 Commends,1,comedyoferrors,1592 bestrid,1,comedyoferrors,1592 killing,1,comedyoferrors,1592 princes,1,comedyoferrors,1592 labour'd,1,comedyoferrors,1592 sue,1,comedyoferrors,1592 countermands,1,comedyoferrors,1592 clapper,1,comedyoferrors,1592 Buried,1,comedyoferrors,1592 elder,1,comedyoferrors,1592 wondrous,1,comedyoferrors,1592 companion,1,comedyoferrors,1592 rail,1,comedyoferrors,1592 reverence,1,comedyoferrors,1592 singed,1,comedyoferrors,1592 above,1,comedyoferrors,1592 fearful,1,comedyoferrors,1592 voyages,1,comedyoferrors,1592 marts,1,comedyoferrors,1592 Want,1,comedyoferrors,1592 rush,1,comedyoferrors,1592 consent,1,comedyoferrors,1592 nest,1,comedyoferrors,1592 promise,1,comedyoferrors,1592 plainly,1,comedyoferrors,1592 infinite,1,comedyoferrors,1592 wolf,1,comedyoferrors,1592 touching,1,comedyoferrors,1592 grain,1,comedyoferrors,1592 grow,1,comedyoferrors,1592 timely,1,comedyoferrors,1592 factor's,1,comedyoferrors,1592 brief,1,comedyoferrors,1592 embark'd,1,comedyoferrors,1592 marble,1,comedyoferrors,1592 Behind,1,comedyoferrors,1592 sober,1,comedyoferrors,1592 ope,1,comedyoferrors,1592 dial,1,comedyoferrors,1592 falling,1,comedyoferrors,1592 wrong'd,1,comedyoferrors,1592 followers,1,comedyoferrors,1592 anatomy,1,comedyoferrors,1592 madest,1,comedyoferrors,1592 gifts,1,comedyoferrors,1592 Guard,1,comedyoferrors,1592 choose,1,comedyoferrors,1592 wend,1,comedyoferrors,1592 wine,1,comedyoferrors,1592 glad,1,comedyoferrors,1592 seafaring,1,comedyoferrors,1592 grass,1,comedyoferrors,1592 teller,1,comedyoferrors,1592 wink,1,comedyoferrors,1592 contempt,1,comedyoferrors,1592 fain,1,comedyoferrors,1592 table,1,comedyoferrors,1592 doubled,1,comedyoferrors,1592 create,1,comedyoferrors,1592 grieve,1,comedyoferrors,1592 wholesome,1,comedyoferrors,1592 Stigmatical,1,comedyoferrors,1592 vestments,1,comedyoferrors,1592 wished,1,comedyoferrors,1592 cuckold,1,comedyoferrors,1592 Hence,1,comedyoferrors,1592 computation,1,comedyoferrors,1592 persever,1,comedyoferrors,1592 nails,1,comedyoferrors,1592 snail,1,comedyoferrors,1592 fineness,1,comedyoferrors,1592 durst,1,comedyoferrors,1592 unmingled,1,comedyoferrors,1592 Along,1,comedyoferrors,1592 Dark,1,comedyoferrors,1592 ground,1,comedyoferrors,1592 Many,1,comedyoferrors,1592 Might,1,comedyoferrors,1592 Alone,1,comedyoferrors,1592 Stop,1,comedyoferrors,1592 latter,1,comedyoferrors,1592 mirth,1,comedyoferrors,1592 reverted,1,comedyoferrors,1592 highly,1,comedyoferrors,1592 Thither,1,comedyoferrors,1592 Beheaded,1,comedyoferrors,1592 wealth's,1,comedyoferrors,1592 Please,1,comedyoferrors,1592 'is,1,comedyoferrors,1592 stolen,1,comedyoferrors,1592 miracle,1,comedyoferrors,1592 desert,1,comedyoferrors,1592 doom'd,1,comedyoferrors,1592 delays,1,comedyoferrors,1592 dearer,1,comedyoferrors,1592 saint,1,comedyoferrors,1592 cares,1,comedyoferrors,1592 supping,1,comedyoferrors,1592 mishaps,1,comedyoferrors,1592 amends,1,comedyoferrors,1592 gossips',1,comedyoferrors,1592 distract,1,comedyoferrors,1592 Went'st,1,comedyoferrors,1592 Proceed,1,comedyoferrors,1592 wert,1,comedyoferrors,1592 dies,1,comedyoferrors,1592 wise,1,comedyoferrors,1592 transformed,1,comedyoferrors,1592 churl,1,comedyoferrors,1592 methinks,1,comedyoferrors,1592 fame,1,comedyoferrors,1592 witnesses,1,comedyoferrors,1592 anon,1,comedyoferrors,1592 ensconce,1,comedyoferrors,1592 thrown,1,comedyoferrors,1592 murder,1,comedyoferrors,1592 importunes,1,comedyoferrors,1592 earthy,1,comedyoferrors,1592 sooth,1,comedyoferrors,1592 devil's,1,comedyoferrors,1592 staying,1,comedyoferrors,1592 harming,1,comedyoferrors,1592 threw,1,comedyoferrors,1592 prostrate,1,comedyoferrors,1592 prolong'd,1,comedyoferrors,1592 world's,1,comedyoferrors,1592 hatch,1,comedyoferrors,1592 trudge,1,comedyoferrors,1592 palace,1,comedyoferrors,1592 west,1,comedyoferrors,1592 Fixing,1,comedyoferrors,1592 stop,1,comedyoferrors,1592 answer'st,1,comedyoferrors,1592 fie,1,comedyoferrors,1592 shrive,1,comedyoferrors,1592 harbour,1,comedyoferrors,1592 silks,1,comedyoferrors,1592 Mart,1,comedyoferrors,1592 wart,1,comedyoferrors,1592 unjust,1,comedyoferrors,1592 dishonestly,1,comedyoferrors,1592 stocks,1,comedyoferrors,1592 pretty,1,comedyoferrors,1592 Mark,1,comedyoferrors,1592 sunny,1,comedyoferrors,1592 shuts,1,comedyoferrors,1592 perfect,1,comedyoferrors,1592 spites,1,comedyoferrors,1592 brake,1,comedyoferrors,1592 unfinish'd,1,comedyoferrors,1592 Doing,1,comedyoferrors,1592 runn'st,1,comedyoferrors,1592 Weeping,1,comedyoferrors,1592 consecrate,1,comedyoferrors,1592 rich,1,comedyoferrors,1592 glanced,1,comedyoferrors,1592 lunatic,1,comedyoferrors,1592 ruled,1,comedyoferrors,1592 cherry,1,comedyoferrors,1592 safety,1,comedyoferrors,1592 engaged,1,comedyoferrors,1592 battering,1,comedyoferrors,1592 carat,1,comedyoferrors,1592 unwed,1,comedyoferrors,1592 suborn'd,1,comedyoferrors,1592 horn,1,comedyoferrors,1592 reviled,1,comedyoferrors,1592 incorporate,1,comedyoferrors,1592 wayward,1,comedyoferrors,1592 judgement,1,comedyoferrors,1592 niggard,1,comedyoferrors,1592 plainings,1,comedyoferrors,1592 hungry,1,comedyoferrors,1592 Worthily,1,comedyoferrors,1592 bare,1,comedyoferrors,1592 substantial,1,comedyoferrors,1592 healthful,1,comedyoferrors,1592 wide,1,comedyoferrors,1592 Unto,1,comedyoferrors,1592 worship,1,comedyoferrors,1592 situate,1,comedyoferrors,1592 indignities,1,comedyoferrors,1592 holiness,1,comedyoferrors,1592 each,1,comedyoferrors,1592 big,1,comedyoferrors,1592 uncle,1,comedyoferrors,1592 nail,1,comedyoferrors,1592 knowledge,1,comedyoferrors,1592 practise,1,comedyoferrors,1592 scandal,1,comedyoferrors,1592 prince's,1,comedyoferrors,1592 grievous,1,comedyoferrors,1592 perceive,1,comedyoferrors,1592 beware,1,comedyoferrors,1592 mickle,1,comedyoferrors,1592 namely,1,comedyoferrors,1592 Thank,1,comedyoferrors,1592 Chased,1,comedyoferrors,1592 lived,1,comedyoferrors,1592 whither,1,comedyoferrors,1592 sauciness,1,comedyoferrors,1592 waves,1,comedyoferrors,1592 morning,1,comedyoferrors,1592 manners,1,comedyoferrors,1592 drown,1,comedyoferrors,1592 bass,1,comedyoferrors,1592 wax'd,1,comedyoferrors,1592 strikes,1,comedyoferrors,1592 strumpeted,1,comedyoferrors,1592 kick'd,1,comedyoferrors,1592 enchanting,1,comedyoferrors,1592 deliver'd,1,comedyoferrors,1592 Drew,1,comedyoferrors,1592 Pentecost,1,comedyoferrors,1592 wanting,1,comedyoferrors,1592 drudge,1,comedyoferrors,1592 Wednesday,1,comedyoferrors,1592 trimming,1,comedyoferrors,1592 What's,1,comedyoferrors,1592 Swart,1,comedyoferrors,1592 cools,1,comedyoferrors,1592 foes,1,comedyoferrors,1592 scared,1,comedyoferrors,1592 vitae,1,comedyoferrors,1592 'Will,1,comedyoferrors,1592 'out,1,comedyoferrors,1592 utter,1,comedyoferrors,1592 bounds,1,comedyoferrors,1592 weakness,1,comedyoferrors,1592 dam,1,comedyoferrors,1592 orator,1,comedyoferrors,1592 talks,1,comedyoferrors,1592 Each,1,comedyoferrors,1592 fare,1,comedyoferrors,1592 'beware,1,comedyoferrors,1592 meets,1,comedyoferrors,1592 flattery,1,comedyoferrors,1592 soul's,1,comedyoferrors,1592 controversy,1,comedyoferrors,1592 ecstasy,1,comedyoferrors,1592 ache,1,comedyoferrors,1592 tale,1,comedyoferrors,1592 music,1,comedyoferrors,1592 welcomed,1,comedyoferrors,1592 youthful,1,comedyoferrors,1592 loath,1,comedyoferrors,1592 cup,1,comedyoferrors,1592 gentlemen,1,comedyoferrors,1592 strangers,1,comedyoferrors,1592 deeds,1,comedyoferrors,1592 priory,1,comedyoferrors,1592 vigour,1,comedyoferrors,1592 Those,1,comedyoferrors,1592 falsing,1,comedyoferrors,1592 shameless,1,comedyoferrors,1592 balsamum,1,comedyoferrors,1592 convey,1,comedyoferrors,1592 given,1,comedyoferrors,1592 provoked,1,comedyoferrors,1592 Still,1,comedyoferrors,1592 spoil'd,1,comedyoferrors,1592 Sconce,1,comedyoferrors,1592 reproof,1,comedyoferrors,1592 rapier,1,comedyoferrors,1592 bag,1,comedyoferrors,1592 told'st,1,comedyoferrors,1592 fates,1,comedyoferrors,1592 Ourselves,1,comedyoferrors,1592 warrior,1,comedyoferrors,1592 openly,1,comedyoferrors,1592 sensible,1,comedyoferrors,1592 creep,1,comedyoferrors,1592 scissors,1,comedyoferrors,1592 'knave',1,comedyoferrors,1592 lands,1,comedyoferrors,1592 shore,1,comedyoferrors,1592 divorcing,1,comedyoferrors,1592 aspects,1,comedyoferrors,1592 England,1,comedyoferrors,1592 quit,1,comedyoferrors,1592 short,1,comedyoferrors,1592 gossip,1,comedyoferrors,1592 unless,1,comedyoferrors,1592 holp,1,comedyoferrors,1592 Thirty,1,comedyoferrors,1592 Lay,1,comedyoferrors,1592 Albeit,1,comedyoferrors,1592 greatly,1,comedyoferrors,1592 canst,1,comedyoferrors,1592 Perdie,1,comedyoferrors,1592 pitiless,1,comedyoferrors,1592 preserving,1,comedyoferrors,1592 hollow,1,comedyoferrors,1592 shines,1,comedyoferrors,1592 sweats,1,comedyoferrors,1592 method,1,comedyoferrors,1592 force,1,comedyoferrors,1592 cut,1,comedyoferrors,1592 calendars,1,comedyoferrors,1592 pawn,1,comedyoferrors,1592 Gather,1,comedyoferrors,1592 hid,1,comedyoferrors,1592 finds,1,comedyoferrors,1592 wisdom,1,comedyoferrors,1592 glimmer,1,comedyoferrors,1592 counterfeit,1,comedyoferrors,1592 motions,1,comedyoferrors,1592 apparelled,1,comedyoferrors,1592 hit,1,comedyoferrors,1592 sunder,1,comedyoferrors,1592 required,1,comedyoferrors,1592 retain'd,1,comedyoferrors,1592 piteous,1,comedyoferrors,1592 sinner,1,comedyoferrors,1592 untuned,1,comedyoferrors,1592 beg,1,comedyoferrors,1592 fatal,1,comedyoferrors,1592 locking,1,comedyoferrors,1592 carbuncles,1,comedyoferrors,1592 meant,1,comedyoferrors,1592 finem,1,comedyoferrors,1592 grime,1,comedyoferrors,1592 notorious,1,comedyoferrors,1592 Arrest,1,comedyoferrors,1592 winter,1,comedyoferrors,1592 rabble,1,comedyoferrors,1592 bless,1,comedyoferrors,1592 streets,1,comedyoferrors,1592 tallow,1,comedyoferrors,1592 husbands,1,comedyoferrors,1592 intricate,1,comedyoferrors,1592 preaches,1,comedyoferrors,1592 periwig,1,comedyoferrors,1592 grease,1,comedyoferrors,1592 quick,1,comedyoferrors,1592 intestine,1,comedyoferrors,1592 Menaphon,1,comedyoferrors,1592 digest,1,comedyoferrors,1592 slanders,1,comedyoferrors,1592 meteors,1,comedyoferrors,1592 Nell,1,comedyoferrors,1592 bruised,1,comedyoferrors,1592 creeks,1,comedyoferrors,1592 want'st,1,comedyoferrors,1592 despair,1,comedyoferrors,1592 building,1,comedyoferrors,1592 falsehood,1,comedyoferrors,1592 task,1,comedyoferrors,1592 Horn,1,comedyoferrors,1592 condemned,1,comedyoferrors,1592 past,1,comedyoferrors,1592 mermaid,1,comedyoferrors,1592 provision,1,comedyoferrors,1592 hides,1,comedyoferrors,1592 calf's,1,comedyoferrors,1592 meals,1,comedyoferrors,1592 football,1,comedyoferrors,1592 pin,1,comedyoferrors,1592 proud,1,comedyoferrors,1592 wedded,1,comedyoferrors,1592 Is't,1,comedyoferrors,1592 glorious,1,comedyoferrors,1592 prithee,1,comedyoferrors,1592 abject,1,comedyoferrors,1592 countries,1,comedyoferrors,1592 Noah's,1,comedyoferrors,1592 hairy,1,comedyoferrors,1592 approved,1,comedyoferrors,1592 Hapless,1,comedyoferrors,1592 hairs,1,comedyoferrors,1592 brawls,1,comedyoferrors,1592 rigorous,1,comedyoferrors,1592 along,1,comedyoferrors,1592 assembled,1,comedyoferrors,1592 copy,1,comedyoferrors,1592 recall'd,1,comedyoferrors,1592 wasting,1,comedyoferrors,1592 Solinus,1,comedyoferrors,1592 heady,1,comedyoferrors,1592 winged,1,comedyoferrors,1592 swear,1,comedyoferrors,1592 Beaten,1,comedyoferrors,1592 low,1,comedyoferrors,1592 eyed,1,comedyoferrors,1592 theft,1,comedyoferrors,1592 contagion,1,comedyoferrors,1592 god,1,comedyoferrors,1592 drunk,1,comedyoferrors,1592 sought,1,comedyoferrors,1592 shipwreck'd,1,comedyoferrors,1592 sinking,1,comedyoferrors,1592 converse,1,comedyoferrors,1592 suits,1,comedyoferrors,1592 Right,1,comedyoferrors,1592 plentiful,1,comedyoferrors,1592 feathers,1,comedyoferrors,1592 seen,1,comedyoferrors,1592 gnats,1,comedyoferrors,1592 troth,1,comedyoferrors,1592 pleaded,1,comedyoferrors,1592 feeling,1,comedyoferrors,1592 nigh,1,comedyoferrors,1592 gold's,1,comedyoferrors,1592 threadbare,1,comedyoferrors,1592 sports,1,comedyoferrors,1592 supposed,1,comedyoferrors,1592 bend,1,comedyoferrors,1592 marvellous,1,comedyoferrors,1592 ballast,1,comedyoferrors,1592 look'd,1,comedyoferrors,1592 hindered,1,comedyoferrors,1592 Heard,1,comedyoferrors,1592 metal,1,comedyoferrors,1592 others',1,comedyoferrors,1592 divorce,1,comedyoferrors,1592 barrenness,1,comedyoferrors,1592 drunken,1,comedyoferrors,1592 valued,1,comedyoferrors,1592 Bridget,1,comedyoferrors,1592 tells,1,comedyoferrors,1592 lamed,1,comedyoferrors,1592 suffer'd,1,comedyoferrors,1592 cost,1,comedyoferrors,1592 Mine,1,comedyoferrors,1592 salute,1,comedyoferrors,1592 prophecy,1,comedyoferrors,1592 Patience,1,comedyoferrors,1592 hound,1,comedyoferrors,1592 goodly,1,comedyoferrors,1592 kindness,1,comedyoferrors,1592 estimation,1,comedyoferrors,1592 troop,1,comedyoferrors,1592 Transform,1,comedyoferrors,1592 traitor,1,comedyoferrors,1592 arose,1,comedyoferrors,1592 tell'st,1,comedyoferrors,1592 homely,1,comedyoferrors,1592 uncertainty,1,comedyoferrors,1592 'Your,1,comedyoferrors,1592 tricks,1,comedyoferrors,1592 strives,1,comedyoferrors,1592 sacred,1,comedyoferrors,1592 immediate,1,comedyoferrors,1592 chargeful,1,comedyoferrors,1592 Dined,1,comedyoferrors,1592 gaze,1,comedyoferrors,1592 weak,1,comedyoferrors,1592 sportive,1,comedyoferrors,1592 wear,1,comedyoferrors,1592 blunts,1,comedyoferrors,1592 bent,1,comedyoferrors,1592 dealers,1,comedyoferrors,1592 dispense,1,comedyoferrors,1592 kindnesses,1,comedyoferrors,1592 blazed,1,comedyoferrors,1592 infectious,1,comedyoferrors,1592 lamps,1,comedyoferrors,1592 avoid,1,comedyoferrors,1592 buildings,1,comedyoferrors,1592 term'd,1,comedyoferrors,1592 monstrously,1,comedyoferrors,1592 estranged,1,comedyoferrors,1592 drugs,1,comedyoferrors,1592 trembles,1,comedyoferrors,1592 huge,1,comedyoferrors,1592 bait,1,comedyoferrors,1592 meanest,1,comedyoferrors,1592 approach'd,1,comedyoferrors,1592 Diet,1,comedyoferrors,1592 aqua,1,comedyoferrors,1592 Dies,1,comedyoferrors,1592 rancorous,1,comedyoferrors,1592 gods,1,comedyoferrors,1592 fairly,1,comedyoferrors,1592 a',1,comedyoferrors,1592 Apparel,1,comedyoferrors,1592 conquers,1,comedyoferrors,1592 jewel,1,comedyoferrors,1592 Cry,1,comedyoferrors,1592 persuasion,1,comedyoferrors,1592 Cicel,1,comedyoferrors,1592 tide,1,comedyoferrors,1592 hereof,1,comedyoferrors,1592 'no,1,comedyoferrors,1592 distracted,1,comedyoferrors,1592 whilst,1,comedyoferrors,1592 bankrupt,1,comedyoferrors,1592 Sing,1,comedyoferrors,1592 verity,1,comedyoferrors,1592 curse,1,comedyoferrors,1592 folded,1,comedyoferrors,1592 despite,1,comedyoferrors,1592 vows,1,comedyoferrors,1592 scann'd,1,comedyoferrors,1592 worship's,1,comedyoferrors,1592 herein,1,comedyoferrors,1592 Tiger,1,comedyoferrors,1592 alluring,1,comedyoferrors,1592 Self,1,comedyoferrors,1592 raising,1,comedyoferrors,1592 travel,1,comedyoferrors,1592 used,1,comedyoferrors,1592 nurse,1,comedyoferrors,1592 goes,1,comedyoferrors,1592 crack'd,1,comedyoferrors,1592 shifts,1,comedyoferrors,1592 carriage,1,comedyoferrors,1592 pains,1,comedyoferrors,1592 sink,1,comedyoferrors,1592 seized,1,comedyoferrors,1592 shipboard,1,comedyoferrors,1592 picture,1,comedyoferrors,1592 harlots,1,comedyoferrors,1592 formal,1,comedyoferrors,1592 barren,1,comedyoferrors,1592 stories,1,comedyoferrors,1592 unstain'd,1,comedyoferrors,1592 rejoice,1,comedyoferrors,1592 sickness,1,comedyoferrors,1592 floating,1,comedyoferrors,1592 moody,1,comedyoferrors,1592 match,1,comedyoferrors,1592 Sans,1,comedyoferrors,1592 Roaming,1,comedyoferrors,1592 leagues,1,comedyoferrors,1592 Masters,1,comedyoferrors,1592 highest,1,comedyoferrors,1592 pratest,1,comedyoferrors,1592 turns,1,comedyoferrors,1592 fulfil,1,comedyoferrors,1592 afterward,1,comedyoferrors,1592 lately,1,comedyoferrors,1592 resort,1,comedyoferrors,1592 attaint,1,comedyoferrors,1592 harbinger,1,comedyoferrors,1592 headstrong,1,comedyoferrors,1592 unspeakable,1,comedyoferrors,1592 invite,1,comedyoferrors,1592 assemblies,1,comedyoferrors,1592 nicks,1,comedyoferrors,1592 crooked,1,comedyoferrors,1592 master's,1,comedyoferrors,1592 hinderd,1,comedyoferrors,1592 unmoved,1,comedyoferrors,1592 pails,1,comedyoferrors,1592 begin,1,comedyoferrors,1592 Name,1,comedyoferrors,1592 quite,1,comedyoferrors,1592 sir',1,comedyoferrors,1592 coil,1,comedyoferrors,1592 lie,1,comedyoferrors,1592 solemn,1,comedyoferrors,1592 store,1,comedyoferrors,1592 Gaze,1,comedyoferrors,1592 i',1,comedyoferrors,1592 ghost,1,comedyoferrors,1592 raught,1,comedyoferrors,1592 impatience,1,comedyoferrors,1592 parcel,1,comedyoferrors,1592 brow,1,comedyoferrors,1592 slow,1,comedyoferrors,1592 storms,1,comedyoferrors,1592 jeer,1,comedyoferrors,1592 frantic,1,comedyoferrors,1592 deer,1,comedyoferrors,1592 saffron,1,comedyoferrors,1592 affection,1,comedyoferrors,1592 Nothing,1,comedyoferrors,1592 betray,1,comedyoferrors,1592 Cannot,1,comedyoferrors,1592 breast,1,comedyoferrors,1592 Fortune,1,comedyoferrors,1592 voyage,1,comedyoferrors,1592 aim,1,comedyoferrors,1592 persuade,1,comedyoferrors,1592 retain,1,comedyoferrors,1592 snatch'd,1,comedyoferrors,1592 embraced,1,comedyoferrors,1592 yea,1,comedyoferrors,1592 mole,1,comedyoferrors,1592 Fear,1,comedyoferrors,1592 encounterd,1,comedyoferrors,1592 servant,1,comedyoferrors,1592 sixpence,1,comedyoferrors,1592 excellent,1,comedyoferrors,1592 aid,1,comedyoferrors,1592 imagination,1,comedyoferrors,1592 shamest,1,comedyoferrors,1592 honesty,1,comedyoferrors,1592 'rests,1,comedyoferrors,1592 limbo,1,comedyoferrors,1592 debate,1,comedyoferrors,1592 sheep,1,comedyoferrors,1592 needy,1,comedyoferrors,1592 jewels,1,comedyoferrors,1592 undisposed,1,comedyoferrors,1592 fasten,1,comedyoferrors,1592 maw,1,comedyoferrors,1592 'Hang,1,comedyoferrors,1592 alter'd,1,comedyoferrors,1592 gain,1,comedyoferrors,1592 yes,1,comedyoferrors,1592 barr'd,1,comedyoferrors,1592 gains,1,comedyoferrors,1592 Disguised,1,comedyoferrors,1592 distressed,1,comedyoferrors,1592 dwell,1,comedyoferrors,1592 almanac,1,comedyoferrors,1592 stone,1,comedyoferrors,1592 disturbed,1,comedyoferrors,1592 hostess,1,comedyoferrors,1592 assaying,1,comedyoferrors,1592 rheum,1,comedyoferrors,1592 consequence,1,comedyoferrors,1592 dignity,1,comedyoferrors,1592 deaf,1,comedyoferrors,1592 springeth,1,comedyoferrors,1592 Safe,1,comedyoferrors,1592 begins,1,comedyoferrors,1592 vault,1,comedyoferrors,1592 Spread,1,comedyoferrors,1592 Namely,1,comedyoferrors,1592 starve,1,comedyoferrors,1592 mountebanks,1,comedyoferrors,1592 seeming,1,comedyoferrors,1592 slug,1,comedyoferrors,1592 Persia,1,comedyoferrors,1592 stain'd,1,comedyoferrors,1592 dealing,1,comedyoferrors,1592 touch'd,1,comedyoferrors,1592 restraint,1,comedyoferrors,1592 trim,1,comedyoferrors,1592 obeying,1,comedyoferrors,1592 houses,1,comedyoferrors,1592 speed,1,comedyoferrors,1592 maker,1,comedyoferrors,1592 memory,1,comedyoferrors,1592 According,1,comedyoferrors,1592 privilege,1,comedyoferrors,1592 debted,1,comedyoferrors,1592 fishers,1,comedyoferrors,1592 Blows,1,comedyoferrors,1592 sovereign,1,comedyoferrors,1592 ruinous,1,comedyoferrors,1592 determine,1,comedyoferrors,1592 displeased,1,comedyoferrors,1592 humours,1,comedyoferrors,1592 doom,1,comedyoferrors,1592 burns,1,comedyoferrors,1592 idiot,1,comedyoferrors,1592 limit,1,comedyoferrors,1592 debtor,1,comedyoferrors,1592 Men,1,comedyoferrors,1592 ask'd,1,comedyoferrors,1592 commend,1,comedyoferrors,1592 Met,1,comedyoferrors,1592 Lapland,1,comedyoferrors,1592 Great,1,comedyoferrors,1592 debating,1,comedyoferrors,1592 committed,1,comedyoferrors,1592 Unkindness,1,comedyoferrors,1592 Away,1,comedyoferrors,1592 attorney,1,comedyoferrors,1592 comment,1,comedyoferrors,1592 small,1,comedyoferrors,1592 lo,1,comedyoferrors,1592 punishment,1,comedyoferrors,1592 sever'd,1,comedyoferrors,1592 pernicious,1,comedyoferrors,1592 sauced,1,comedyoferrors,1592 moss,1,comedyoferrors,1592 utmost,1,comedyoferrors,1592 bodied,1,comedyoferrors,1592 crave,1,comedyoferrors,1592 across,1,comedyoferrors,1592 idly,1,comedyoferrors,1592 Forsooth,1,comedyoferrors,1592 Reft,1,comedyoferrors,1592 Pleaseth,1,comedyoferrors,1592 outrageous,1,comedyoferrors,1592 strokes,1,comedyoferrors,1592 on's,1,comedyoferrors,1592 amain,1,comedyoferrors,1592 harshly,1,comedyoferrors,1592 prevailed,1,comedyoferrors,1592 Poland,1,comedyoferrors,1592 'Where,1,comedyoferrors,1592 cliffs,1,comedyoferrors,1592 sometimes,1,comedyoferrors,1592 dog's,1,comedyoferrors,1592 seditious,1,comedyoferrors,1592 carved,1,comedyoferrors,1592 vestal,1,comedyoferrors,1592 gulf,1,comedyoferrors,1592 incessant,1,comedyoferrors,1592 'twould,1,comedyoferrors,1592 train,1,comedyoferrors,1592 enmity,1,comedyoferrors,1592 niggardly,1,comedyoferrors,1592 Poisons,1,comedyoferrors,1592 everywhere,1,comedyoferrors,1592 jollity,1,comedyoferrors,1592 Renowned,1,comedyoferrors,1592 ink,1,comedyoferrors,1592 pursued,1,comedyoferrors,1592 thither,1,comedyoferrors,1592 hoisted,1,comedyoferrors,1592 lightly,1,comedyoferrors,1592 eye's,1,comedyoferrors,1592 attendants,1,comedyoferrors,1592 citizens,1,comedyoferrors,1592 virtue,1,comedyoferrors,1592 Yea,1,comedyoferrors,1592 gravity,1,comedyoferrors,1592 loss,1,comedyoferrors,1592 Wouldst,1,comedyoferrors,1592 distemperatures,1,comedyoferrors,1592 truant,1,comedyoferrors,1592 drift,1,comedyoferrors,1592 ho,1,comedyoferrors,1592 speak'st,1,comedyoferrors,1592 dishonour'd,1,comedyoferrors,1592 ample,1,comedyoferrors,1592 semblance,1,comedyoferrors,1592 pranks,1,comedyoferrors,1592 departed'st,1,comedyoferrors,1592 suspect,1,comedyoferrors,1592 Prodigal,1,comedyoferrors,1592 spent,1,comedyoferrors,1592 sailors,1,comedyoferrors,1592 upbraidings,1,comedyoferrors,1592 less,1,comedyoferrors,1592 fright,1,comedyoferrors,1592 statute,1,comedyoferrors,1592 Without,1,comedyoferrors,1592 dispose,1,comedyoferrors,1592 afternoon,1,comedyoferrors,1592 silver,1,comedyoferrors,1592 gets,1,comedyoferrors,1592 keepest,1,comedyoferrors,1592 list,1,comedyoferrors,1592 bides,1,comedyoferrors,1592 knave's,1,comedyoferrors,1592 loved,1,comedyoferrors,1592 customers,1,comedyoferrors,1592 human,1,comedyoferrors,1592 dankish,1,comedyoferrors,1592 levied,1,comedyoferrors,1592 words',1,comedyoferrors,1592 hurt,1,comedyoferrors,1592 blue,1,comedyoferrors,1592 defy,1,comedyoferrors,1592 hurl,1,comedyoferrors,1592 lets,1,comedyoferrors,1592 eighteen,1,comedyoferrors,1592 nimble,1,comedyoferrors,1592 Whoever,1,comedyoferrors,1592 show'd,1,comedyoferrors,1592 spouse,1,comedyoferrors,1592 forgot,1,comedyoferrors,1592 serious,1,comedyoferrors,1592 ''Tis,1,comedyoferrors,1592 going,1,comedyoferrors,1592 Disburse,1,comedyoferrors,1592 clamours,1,comedyoferrors,1592 bridled,1,comedyoferrors,1592 hoy,1,comedyoferrors,1592 upbraided,1,comedyoferrors,1592 festivity,1,comedyoferrors,1592 passages,1,comedyoferrors,1592 pure,1,comedyoferrors,1592 summers,1,comedyoferrors,1592 marr'd,1,comedyoferrors,1592 corruption,1,comedyoferrors,1592 Indued,1,comedyoferrors,1592 wildly,1,comedyoferrors,1592 Came,1,comedyoferrors,1592 killed,1,comedyoferrors,1592 hark,1,comedyoferrors,1592 chalky,1,comedyoferrors,1592 witty,1,comedyoferrors,1592 sentence,1,comedyoferrors,1592 date,1,comedyoferrors,1592 running,1,comedyoferrors,1592 spring,1,comedyoferrors,1592 entrance,1,comedyoferrors,1592 attach'd,1,comedyoferrors,1592 tardy,1,comedyoferrors,1592 demean'd,1,comedyoferrors,1592 easy,1,comedyoferrors,1592 cover'd,1,comedyoferrors,1592 denying,1,comedyoferrors,1592 armadoes,1,comedyoferrors,1592 grained,1,comedyoferrors,1592 procrastinate,1,comedyoferrors,1592 imprisonment,1,comedyoferrors,1592 You'll,1,comedyoferrors,1592 Break,1,comedyoferrors,1592 Brought,1,comedyoferrors,1592 imposed,1,comedyoferrors,1592 Ran,1,comedyoferrors,1592 hazarded,1,comedyoferrors,1592 field,1,comedyoferrors,1592 therewithal,1,comedyoferrors,1592 expense,1,comedyoferrors,1592 fasten'd,1,comedyoferrors,1592 dog,1,comedyoferrors,1592 discovered,1,comedyoferrors,1592 respect,1,comedyoferrors,1592 kick,1,comedyoferrors,1592 hall,1,comedyoferrors,1592 remain'd,1,comedyoferrors,1592 provide,1,comedyoferrors,1592 Dowsabel,1,comedyoferrors,1592 haunts,1,comedyoferrors,1592 round,1,comedyoferrors,1592 somewhere,1,comedyoferrors,1592 owls,1,comedyoferrors,1592 brat,1,comedyoferrors,1592 honour's,1,comedyoferrors,1592 dare,1,comedyoferrors,1592 fowl,1,comedyoferrors,1592 shallow,1,comedyoferrors,1592 wail'd,1,comedyoferrors,1592 Call,1,comedyoferrors,1592 Less,1,comedyoferrors,1592 nation,1,comedyoferrors,1592 helpful,1,comedyoferrors,1592 palm,1,comedyoferrors,1592 More,1,comedyoferrors,1592 husband's,1,comedyoferrors,1592 handwriting,1,comedyoferrors,1592 natural,1,comedyoferrors,1592 acknowledge,1,comedyoferrors,1592 catch,1,comedyoferrors,1592 weighs,1,comedyoferrors,1592 Lady,1,comedyoferrors,1592 austerely,1,comedyoferrors,1592 prince,1,comedyoferrors,1592 flouting,1,comedyoferrors,1592 blessing,1,comedyoferrors,1592 dispatch,1,comedyoferrors,1592 four,1,comedyoferrors,1592 draws,1,comedyoferrors,1592 foul,1,comedyoferrors,1592 globe,1,comedyoferrors,1592 goldsmith's,1,comedyoferrors,1592 separate,1,comedyoferrors,1592 feasted,1,comedyoferrors,1592 bred,1,comedyoferrors,1592 porridge,1,comedyoferrors,1592 liest,1,comedyoferrors,1592 demean,1,comedyoferrors,1592 joyful,1,comedyoferrors,1592 months,1,comedyoferrors,1592 Bring,1,comedyoferrors,1592 DRAMATIS,1,comedyoferrors,1592 lamp,1,comedyoferrors,1592 praise,1,comedyoferrors,1592 Unseen,1,comedyoferrors,1592 Until,1,comedyoferrors,1592 During,1,comedyoferrors,1592 shift,1,comedyoferrors,1592 peacock,1,comedyoferrors,1592 reverent,1,comedyoferrors,1592 Indies,1,comedyoferrors,1592 Mome,1,comedyoferrors,1592 Due,1,comedyoferrors,1592 venom,1,comedyoferrors,1592 shake,1,comedyoferrors,1592 rescue,1,comedyoferrors,1592 caracks,1,comedyoferrors,1592 guests,1,comedyoferrors,1592 unlawful,1,comedyoferrors,1592 Bind,1,comedyoferrors,1592 whether,1,comedyoferrors,1592 expect,1,comedyoferrors,1592 dealer,1,comedyoferrors,1592 sapphires,1,comedyoferrors,1592 pruning,1,comedyoferrors,1592 armed,1,comedyoferrors,1592 Thereof,1,comedyoferrors,1592 dame,1,comedyoferrors,1592 form,1,comedyoferrors,1592 damn,1,comedyoferrors,1592 abhor,1,comedyoferrors,1592 bargain,1,comedyoferrors,1592 obedient,1,comedyoferrors,1592 tired,1,comedyoferrors,1592 cozenage,1,comedyoferrors,1592 confederate,1,comedyoferrors,1592 pair,1,comedyoferrors,1592 private,1,comedyoferrors,1592 winter's,1,comedyoferrors,1592 unbound,1,comedyoferrors,1592 fiery,1,comedyoferrors,1592 wasted,1,comedyoferrors,1592 ape,1,comedyoferrors,1592 Return'd,1,comedyoferrors,1592 Syracusians,1,comedyoferrors,1592 Husband,1,comedyoferrors,1592 press'd,1,comedyoferrors,1592 frown,1,comedyoferrors,1592 tainted,1,comedyoferrors,1592 cates,1,comedyoferrors,1592 spirit,1,comedyoferrors,1592 drizzled,1,comedyoferrors,1592 Conceit,1,comedyoferrors,1592 mermaid's,1,comedyoferrors,1592 Try,1,comedyoferrors,1592 foot,1,comedyoferrors,1592 justly,1,comedyoferrors,1592 transform'd,1,comedyoferrors,1592 adjudged,1,comedyoferrors,1592 doting,1,comedyoferrors,1592 supposition,1,comedyoferrors,1592 fishes,1,comedyoferrors,1592 forbear,1,comedyoferrors,1592 repair,1,comedyoferrors,1592 contaminate,1,comedyoferrors,1592 shoe,1,comedyoferrors,1592 shoes,1,comedyoferrors,1592 coasting,1,comedyoferrors,1592 except,1,comedyoferrors,1592 oaths,1,comedyoferrors,1592 shape,1,comedyoferrors,1592 default,1,comedyoferrors,1592 saints,1,comedyoferrors,1592 signior,1,comedyoferrors,1592 perhaps,1,comedyoferrors,1592 Small,1,comedyoferrors,1592 Dispersed,1,comedyoferrors,1592 crown,1,comedyoferrors,1592 prevailing,1,comedyoferrors,1592 beneficial,1,comedyoferrors,1592 renowned,1,comedyoferrors,1592 object,1,comedyoferrors,1592 fading,1,comedyoferrors,1592 fond,1,comedyoferrors,1592 juggler,1,comedyoferrors,1592 froze,1,comedyoferrors,1592 esteemed,1,comedyoferrors,1592 durance,1,comedyoferrors,1592 courtezan's,1,comedyoferrors,1592 wiles,1,comedyoferrors,1592 exempt,1,comedyoferrors,1592 fortunes,1,comedyoferrors,1592 sail'd,1,comedyoferrors,1592 sway,1,comedyoferrors,1592 secret,1,comedyoferrors,1592 schoolmaster,1,comedyoferrors,1592 Hast,2,comedyoferrors,1592 thanks,2,comedyoferrors,1592 sleeve,2,comedyoferrors,1592 deadly,2,comedyoferrors,1592 Sirrah,2,comedyoferrors,1592 parted,2,comedyoferrors,1592 advised,2,comedyoferrors,1592 beams,2,comedyoferrors,1592 having,2,comedyoferrors,1592 prays,2,comedyoferrors,1592 doubtfully,2,comedyoferrors,1592 lead,2,comedyoferrors,1592 compact,2,comedyoferrors,1592 bespoke,2,comedyoferrors,1592 Between,2,comedyoferrors,1592 leisure,2,comedyoferrors,1592 borrow,2,comedyoferrors,1592 lean,2,comedyoferrors,1592 weary,2,comedyoferrors,1592 justice,2,comedyoferrors,1592 horse,2,comedyoferrors,1592 through,2,comedyoferrors,1592 alike,2,comedyoferrors,1592 keeps,2,comedyoferrors,1592 peasant,2,comedyoferrors,1592 woman's,2,comedyoferrors,1592 carried,2,comedyoferrors,1592 errors,2,comedyoferrors,1592 Villain,2,comedyoferrors,1592 report,2,comedyoferrors,1592 bonds,2,comedyoferrors,1592 heart's,2,comedyoferrors,1592 publicly,2,comedyoferrors,1592 Bear,2,comedyoferrors,1592 boys,2,comedyoferrors,1592 helpless,2,comedyoferrors,1592 note,2,comedyoferrors,1592 held,2,comedyoferrors,1592 nose,2,comedyoferrors,1592 patch,2,comedyoferrors,1592 capon,2,comedyoferrors,1592 vain,2,comedyoferrors,1592 Peace,2,comedyoferrors,1592 sight,2,comedyoferrors,1592 rate,2,comedyoferrors,1592 Far,2,comedyoferrors,1592 tears,2,comedyoferrors,1592 bears,2,comedyoferrors,1592 tender,2,comedyoferrors,1592 things,2,comedyoferrors,1592 angels,2,comedyoferrors,1592 appear,2,comedyoferrors,1592 fury,2,comedyoferrors,1592 laugh,2,comedyoferrors,1592 under,2,comedyoferrors,1592 Antipholuses,2,comedyoferrors,1592 sirrah,2,comedyoferrors,1592 defeatures,2,comedyoferrors,1592 written,2,comedyoferrors,1592 heedful,2,comedyoferrors,1592 sorcerers,2,comedyoferrors,1592 Whom,2,comedyoferrors,1592 you'll,2,comedyoferrors,1592 hinder'd,2,comedyoferrors,1592 spare,2,comedyoferrors,1592 Lord,2,comedyoferrors,1592 say'st,2,comedyoferrors,1592 pleasing,2,comedyoferrors,1592 Once,2,comedyoferrors,1592 Dost,2,comedyoferrors,1592 yours,2,comedyoferrors,1592 delivered,2,comedyoferrors,1592 strength,2,comedyoferrors,1592 See,2,comedyoferrors,1592 seven,2,comedyoferrors,1592 effect,2,comedyoferrors,1592 Abbess,2,comedyoferrors,1592 Look,2,comedyoferrors,1592 feather,2,comedyoferrors,1592 stark,2,comedyoferrors,1592 elsewhere,2,comedyoferrors,1592 teeth,2,comedyoferrors,1592 sap,2,comedyoferrors,1592 Whose,2,comedyoferrors,1592 conclusion,2,comedyoferrors,1592 inhabit,2,comedyoferrors,1592 sorrows,2,comedyoferrors,1592 choleric,2,comedyoferrors,1592 injury,2,comedyoferrors,1592 Could,2,comedyoferrors,1592 mast,2,comedyoferrors,1592 drew,2,comedyoferrors,1592 cheek,2,comedyoferrors,1592 madness,2,comedyoferrors,1592 golden,2,comedyoferrors,1592 woe,2,comedyoferrors,1592 breaks,2,comedyoferrors,1592 vein,2,comedyoferrors,1592 inquisitive,2,comedyoferrors,1592 fools,2,comedyoferrors,1592 Methinks,2,comedyoferrors,1592 shoulder,2,comedyoferrors,1592 thief,2,comedyoferrors,1592 heaven's,2,comedyoferrors,1592 need,2,comedyoferrors,1592 benefit,2,comedyoferrors,1592 lesser,2,comedyoferrors,1592 discharge,2,comedyoferrors,1592 perjured,2,comedyoferrors,1592 Made,2,comedyoferrors,1592 view,2,comedyoferrors,1592 Perchance,2,comedyoferrors,1592 trouble,2,comedyoferrors,1592 Duke,2,comedyoferrors,1592 wed,2,comedyoferrors,1592 doctor,2,comedyoferrors,1592 key,2,comedyoferrors,1592 claims,2,comedyoferrors,1592 They'll,2,comedyoferrors,1592 set,2,comedyoferrors,1592 fits,2,comedyoferrors,1592 oft,2,comedyoferrors,1592 We'll,2,comedyoferrors,1592 peevish,2,comedyoferrors,1592 beasts,2,comedyoferrors,1592 stomach,2,comedyoferrors,1592 disposed,2,comedyoferrors,1592 yield,2,comedyoferrors,1592 receipt,2,comedyoferrors,1592 says,2,comedyoferrors,1592 worth,2,comedyoferrors,1592 beseech,2,comedyoferrors,1592 subject,2,comedyoferrors,1592 looking,2,comedyoferrors,1592 where's,2,comedyoferrors,1592 custody,2,comedyoferrors,1592 adversity,2,comedyoferrors,1592 gather,2,comedyoferrors,1592 Thus,2,comedyoferrors,1592 heavy,2,comedyoferrors,1592 league,2,comedyoferrors,1592 mother,2,comedyoferrors,1592 Attendants,2,comedyoferrors,1592 'The,2,comedyoferrors,1592 Spain,2,comedyoferrors,1592 earnest,2,comedyoferrors,1592 believe,2,comedyoferrors,1592 war,2,comedyoferrors,1592 Can,2,comedyoferrors,1592 read,2,comedyoferrors,1592 between,2,comedyoferrors,1592 perforce,2,comedyoferrors,1592 offence,2,comedyoferrors,1592 gaoler,2,comedyoferrors,1592 oath,2,comedyoferrors,1592 Priory,2,comedyoferrors,1592 felt,2,comedyoferrors,1592 redeem,2,comedyoferrors,1592 they'll,2,comedyoferrors,1592 France,2,comedyoferrors,1592 merchants,2,comedyoferrors,1592 conceit,2,comedyoferrors,1592 wont,2,comedyoferrors,1592 confiscate,2,comedyoferrors,1592 Sister,2,comedyoferrors,1592 bore,2,comedyoferrors,1592 happy,2,comedyoferrors,1592 raging,2,comedyoferrors,1592 served,2,comedyoferrors,1592 takes,2,comedyoferrors,1592 taken,2,comedyoferrors,1592 instance,2,comedyoferrors,1592 weeping,2,comedyoferrors,1592 cries,2,comedyoferrors,1592 compass,2,comedyoferrors,1592 lust,2,comedyoferrors,1592 honour,2,comedyoferrors,1592 Plead,2,comedyoferrors,1592 feet,2,comedyoferrors,1592 recovery,2,comedyoferrors,1592 masters,2,comedyoferrors,1592 whence,2,comedyoferrors,1592 rude,2,comedyoferrors,1592 guilty,2,comedyoferrors,1592 minds,2,comedyoferrors,1592 length,2,comedyoferrors,1592 modesty,2,comedyoferrors,1592 want,2,comedyoferrors,1592 quest,2,comedyoferrors,1592 importuned,2,comedyoferrors,1592 displeasure,2,comedyoferrors,1592 sense,2,comedyoferrors,1592 fly,2,comedyoferrors,1592 warm,2,comedyoferrors,1592 voice,2,comedyoferrors,1592 fin,2,comedyoferrors,1592 Sweet,2,comedyoferrors,1592 wars,2,comedyoferrors,1592 bond,2,comedyoferrors,1592 fit,2,comedyoferrors,1592 impeach,2,comedyoferrors,1592 rule,2,comedyoferrors,1592 passion,2,comedyoferrors,1592 fine,2,comedyoferrors,1592 vow,2,comedyoferrors,1592 steel,2,comedyoferrors,1592 dalliance,2,comedyoferrors,1592 married,2,comedyoferrors,1592 ta'en,2,comedyoferrors,1592 aspect,2,comedyoferrors,1592 madly,2,comedyoferrors,1592 stir,2,comedyoferrors,1592 meaning,2,comedyoferrors,1592 statutes,2,comedyoferrors,1592 comfort,2,comedyoferrors,1592 unkind,2,comedyoferrors,1592 hap,2,comedyoferrors,1592 While,2,comedyoferrors,1592 Belike,2,comedyoferrors,1592 refuse,2,comedyoferrors,1592 names,2,comedyoferrors,1592 large,2,comedyoferrors,1592 measure,2,comedyoferrors,1592 pulse,2,comedyoferrors,1592 twins,2,comedyoferrors,1592 feeble,2,comedyoferrors,1592 deformed,2,comedyoferrors,1592 An,2,comedyoferrors,1592 law,2,comedyoferrors,1592 burdened,2,comedyoferrors,1592 boy,2,comedyoferrors,1592 knowing,2,comedyoferrors,1592 jests,2,comedyoferrors,1592 wild,2,comedyoferrors,1592 bad,2,comedyoferrors,1592 homeward,2,comedyoferrors,1592 harlot,2,comedyoferrors,1592 pardon,2,comedyoferrors,1592 clear,2,comedyoferrors,1592 clean,2,comedyoferrors,1592 denies,2,comedyoferrors,1592 brings,2,comedyoferrors,1592 On,2,comedyoferrors,1592 Oh,2,comedyoferrors,1592 Her,2,comedyoferrors,1592 tear,2,comedyoferrors,1592 unruly,2,comedyoferrors,1592 whole,2,comedyoferrors,1592 flood,2,comedyoferrors,1592 owner,2,comedyoferrors,1592 surely,2,comedyoferrors,1592 Wherefore,2,comedyoferrors,1592 Let's,2,comedyoferrors,1592 gives,2,comedyoferrors,1592 play,2,comedyoferrors,1592 pig,2,comedyoferrors,1592 pass,2,comedyoferrors,1592 Anon,2,comedyoferrors,1592 seas,2,comedyoferrors,1592 always,2,comedyoferrors,1592 best,2,comedyoferrors,1592 we'll,2,comedyoferrors,1592 aught,2,comedyoferrors,1592 be'st,2,comedyoferrors,1592 weep,2,comedyoferrors,1592 confederates,2,comedyoferrors,1592 week,2,comedyoferrors,1592 intrusion,2,comedyoferrors,1592 Ne'er,2,comedyoferrors,1592 grief,2,comedyoferrors,1592 camest,2,comedyoferrors,1592 sooner,2,comedyoferrors,1592 leather,2,comedyoferrors,1592 conclude,2,comedyoferrors,1592 behind,2,comedyoferrors,1592 bell,2,comedyoferrors,1592 got,2,comedyoferrors,1592 immediately,2,comedyoferrors,1592 struck,2,comedyoferrors,1592 madman,2,comedyoferrors,1592 Re,2,comedyoferrors,1592 fishermen,2,comedyoferrors,1592 'twill,2,comedyoferrors,1592 blame,2,comedyoferrors,1592 wretched,2,comedyoferrors,1592 guilders,2,comedyoferrors,1592 buff,2,comedyoferrors,1592 countrymen,2,comedyoferrors,1592 prating,2,comedyoferrors,1592 twice,2,comedyoferrors,1592 Didst,2,comedyoferrors,1592 just,2,comedyoferrors,1592 theme,2,comedyoferrors,1592 prison,2,comedyoferrors,1592 mated,2,comedyoferrors,1592 deceive,2,comedyoferrors,1592 divine,2,comedyoferrors,1592 stronger,2,comedyoferrors,1592 ensue,2,comedyoferrors,1592 sister's,2,comedyoferrors,1592 protest,2,comedyoferrors,1592 purpose,2,comedyoferrors,1592 bestow,2,comedyoferrors,1592 Pinch,2,comedyoferrors,1592 convey'd,2,comedyoferrors,1592 said,2,comedyoferrors,1592 entertain,2,comedyoferrors,1592 until,2,comedyoferrors,1592 Two,2,comedyoferrors,1592 story,2,comedyoferrors,1592 sail,2,comedyoferrors,1592 instant,2,comedyoferrors,1592 wretch,2,comedyoferrors,1592 mood,2,comedyoferrors,1592 confess,2,comedyoferrors,1592 air,2,comedyoferrors,1592 eat,2,comedyoferrors,1592 lays,2,comedyoferrors,1592 Here's,2,comedyoferrors,1592 favour,2,comedyoferrors,1592 evening,2,comedyoferrors,1592 Ill,2,comedyoferrors,1592 stood,2,comedyoferrors,1592 wreck,2,comedyoferrors,1592 needs,2,comedyoferrors,1592 Gave,2,comedyoferrors,1592 careful,2,comedyoferrors,1592 Quoth,2,comedyoferrors,1592 splitted,2,comedyoferrors,1592 Five,2,comedyoferrors,1592 vouchsafe,2,comedyoferrors,1592 dead,2,comedyoferrors,1592 learn,2,comedyoferrors,1592 time's,2,comedyoferrors,1592 remember,2,comedyoferrors,1592 reprehended,2,comedyoferrors,1592 decayed,2,comedyoferrors,1592 makes,2,comedyoferrors,1592 gentlewoman,2,comedyoferrors,1592 Dissembling,2,comedyoferrors,1592 Since,2,comedyoferrors,1592 move,2,comedyoferrors,1592 board,2,comedyoferrors,1592 fled,2,comedyoferrors,1592 quarters,2,comedyoferrors,1592 o',2,comedyoferrors,1592 homage,2,comedyoferrors,1592 idle,2,comedyoferrors,1592 thereupon,2,comedyoferrors,1592 attendant,2,comedyoferrors,1592 fever,2,comedyoferrors,1592 nativity,2,comedyoferrors,1592 age,2,comedyoferrors,1592 saddler,2,comedyoferrors,1592 offer'd,2,comedyoferrors,1592 parents,2,comedyoferrors,1592 Yes,2,comedyoferrors,1592 diamond,2,comedyoferrors,1592 twenty,2,comedyoferrors,1592 Hopeless,2,comedyoferrors,1592 knew,2,comedyoferrors,1592 content,2,comedyoferrors,1592 try,2,comedyoferrors,1592 harm,2,comedyoferrors,1592 simple,2,comedyoferrors,1592 Haply,2,comedyoferrors,1592 speaks,2,comedyoferrors,1592 Most,2,comedyoferrors,1592 invited,2,comedyoferrors,1592 amount,2,comedyoferrors,1592 dark,2,comedyoferrors,1592 senseless,2,comedyoferrors,1592 Lest,2,comedyoferrors,1592 weight,2,comedyoferrors,1592 land,2,comedyoferrors,1592 drawn,2,comedyoferrors,1592 dry,2,comedyoferrors,1592 forty,2,comedyoferrors,1592 certain,2,comedyoferrors,1592 flout,2,comedyoferrors,1592 pluck,2,comedyoferrors,1592 Teach,2,comedyoferrors,1592 arm,2,comedyoferrors,1592 brothers,2,comedyoferrors,1592 shalt,2,comedyoferrors,1592 ask,2,comedyoferrors,1592 cross,2,comedyoferrors,1592 pain,2,comedyoferrors,1592 stranger,2,comedyoferrors,1592 delight,2,comedyoferrors,1592 kind,2,comedyoferrors,1592 spit,2,comedyoferrors,1592 outrage,2,comedyoferrors,1592 command,2,comedyoferrors,1592 jealousy,2,comedyoferrors,1592 forsworn,2,comedyoferrors,1592 self's,2,comedyoferrors,1592 attach,2,comedyoferrors,1592 kill,2,comedyoferrors,1592 little,2,comedyoferrors,1592 earth's,2,comedyoferrors,1592 pack,2,comedyoferrors,1592 bespeak,2,comedyoferrors,1592 power,2,comedyoferrors,1592 duke's,2,comedyoferrors,1592 food,2,comedyoferrors,1592 order,2,comedyoferrors,1592 ships,2,comedyoferrors,1592 error,2,comedyoferrors,1592 lock,2,comedyoferrors,1592 women,2,comedyoferrors,1592 lady,2,comedyoferrors,1592 Than,3,comedyoferrors,1592 right,3,comedyoferrors,1592 touch,3,comedyoferrors,1592 swords,3,comedyoferrors,1592 Satan,3,comedyoferrors,1592 suffer,3,comedyoferrors,1592 broke,3,comedyoferrors,1592 new,3,comedyoferrors,1592 here's,3,comedyoferrors,1592 extremity,3,comedyoferrors,1592 darest,3,comedyoferrors,1592 witch,3,comedyoferrors,1592 reputation,3,comedyoferrors,1592 fat,3,comedyoferrors,1592 often,3,comedyoferrors,1592 twin,3,comedyoferrors,1592 nay,3,comedyoferrors,1592 mend,3,comedyoferrors,1592 indeed,3,comedyoferrors,1592 'rested,3,comedyoferrors,1592 water,3,comedyoferrors,1592 hell,3,comedyoferrors,1592 unknown,3,comedyoferrors,1592 Phoenix,3,comedyoferrors,1592 beast,3,comedyoferrors,1592 almost,3,comedyoferrors,1592 finger,3,comedyoferrors,1592 spake,3,comedyoferrors,1592 Either,3,comedyoferrors,1592 Luce,3,comedyoferrors,1592 prisoner,3,comedyoferrors,1592 yonder,3,comedyoferrors,1592 From,3,comedyoferrors,1592 borne,3,comedyoferrors,1592 unhappy,3,comedyoferrors,1592 After,3,comedyoferrors,1592 satisfaction,3,comedyoferrors,1592 knave,3,comedyoferrors,1592 plead,3,comedyoferrors,1592 grows,3,comedyoferrors,1592 foolish,3,comedyoferrors,1592 gracious,3,comedyoferrors,1592 All,3,comedyoferrors,1592 skin,3,comedyoferrors,1592 presently,3,comedyoferrors,1592 dream,3,comedyoferrors,1592 knows,3,comedyoferrors,1592 state,3,comedyoferrors,1592 because,3,comedyoferrors,1592 witches,3,comedyoferrors,1592 blow,3,comedyoferrors,1592 labour,3,comedyoferrors,1592 Being,3,comedyoferrors,1592 mistress',3,comedyoferrors,1592 o'clock,3,comedyoferrors,1592 ones,3,comedyoferrors,1592 sit,3,comedyoferrors,1592 possession,3,comedyoferrors,1592 stands,3,comedyoferrors,1592 sin,3,comedyoferrors,1592 Get,3,comedyoferrors,1592 enough,3,comedyoferrors,1592 near,3,comedyoferrors,1592 neck,3,comedyoferrors,1592 off,3,comedyoferrors,1592 woes,3,comedyoferrors,1592 heard,3,comedyoferrors,1592 clock,3,comedyoferrors,1592 Sure,3,comedyoferrors,1592 acquainted,3,comedyoferrors,1592 doubt,3,comedyoferrors,1592 ourselves,3,comedyoferrors,1592 minion,3,comedyoferrors,1592 vile,3,comedyoferrors,1592 serve,3,comedyoferrors,1592 Our,3,comedyoferrors,1592 kitchen,3,comedyoferrors,1592 coming,3,comedyoferrors,1592 Officers,3,comedyoferrors,1592 Shall,3,comedyoferrors,1592 Balthazar,3,comedyoferrors,1592 loose,3,comedyoferrors,1592 faced,3,comedyoferrors,1592 what's,3,comedyoferrors,1592 service,3,comedyoferrors,1592 swore,3,comedyoferrors,1592 sword,3,comedyoferrors,1592 others,3,comedyoferrors,1592 flesh,3,comedyoferrors,1592 evil,3,comedyoferrors,1592 sconce,3,comedyoferrors,1592 seems,3,comedyoferrors,1592 heaven,3,comedyoferrors,1592 fall,3,comedyoferrors,1592 know'st,3,comedyoferrors,1592 wander,3,comedyoferrors,1592 grant,3,comedyoferrors,1592 Though,3,comedyoferrors,1592 fortune,3,comedyoferrors,1592 beating,3,comedyoferrors,1592 office,3,comedyoferrors,1592 matter,3,comedyoferrors,1592 wits,3,comedyoferrors,1592 host,3,comedyoferrors,1592 herself,3,comedyoferrors,1592 Faith,3,comedyoferrors,1592 public,3,comedyoferrors,1592 melancholy,3,comedyoferrors,1592 Hold,3,comedyoferrors,1592 gentleman,3,comedyoferrors,1592 Home,3,comedyoferrors,1592 III,3,comedyoferrors,1592 Ah,3,comedyoferrors,1592 Am,3,comedyoferrors,1592 lay,3,comedyoferrors,1592 scarce,3,comedyoferrors,1592 kept,3,comedyoferrors,1592 denied,3,comedyoferrors,1592 spoon,3,comedyoferrors,1592 honest,3,comedyoferrors,1592 strong,3,comedyoferrors,1592 conjure,3,comedyoferrors,1592 prayers,3,comedyoferrors,1592 alone,3,comedyoferrors,1592 prove,3,comedyoferrors,1592 became,3,comedyoferrors,1592 either,3,comedyoferrors,1592 presence,3,comedyoferrors,1592 sorry,3,comedyoferrors,1592 thereof,3,comedyoferrors,1592 Beating,3,comedyoferrors,1592 children,3,comedyoferrors,1592 dote,3,comedyoferrors,1592 cry,3,comedyoferrors,1592 person,3,comedyoferrors,1592 people,3,comedyoferrors,1592 heels,3,comedyoferrors,1592 Speak,3,comedyoferrors,1592 jealous,3,comedyoferrors,1592 bail,3,comedyoferrors,1592 souls,3,comedyoferrors,1592 self,3,comedyoferrors,1592 'God,3,comedyoferrors,1592 post,3,comedyoferrors,1592 season,3,comedyoferrors,1592 Both,3,comedyoferrors,1592 laws,3,comedyoferrors,1592 deep,3,comedyoferrors,1592 servants,3,comedyoferrors,1592 fowls,3,comedyoferrors,1592 ear,3,comedyoferrors,1592 spite,3,comedyoferrors,1592 ay,3,comedyoferrors,1592 possess'd,3,comedyoferrors,1592 Before,3,comedyoferrors,1592 conjurer,3,comedyoferrors,1592 fashion,3,comedyoferrors,1592 liege,3,comedyoferrors,1592 inn,3,comedyoferrors,1592 hadst,3,comedyoferrors,1592 begg'd,3,comedyoferrors,1592 May,3,comedyoferrors,1592 breaking,3,comedyoferrors,1592 nature,3,comedyoferrors,1592 Justice,3,comedyoferrors,1592 Because,3,comedyoferrors,1592 hot,3,comedyoferrors,1592 desk,3,comedyoferrors,1592 discourse,3,comedyoferrors,1592 Thy,3,comedyoferrors,1592 laid,3,comedyoferrors,1592 attend,3,comedyoferrors,1592 half,3,comedyoferrors,1592 messenger,3,comedyoferrors,1592 reverend,3,comedyoferrors,1592 mighty,3,comedyoferrors,1592 excuse,3,comedyoferrors,1592 course,3,comedyoferrors,1592 open,3,comedyoferrors,1592 behold,3,comedyoferrors,1592 tempt,3,comedyoferrors,1592 return'd,3,comedyoferrors,1592 wenches,3,comedyoferrors,1592 forswore,3,comedyoferrors,1592 owes,3,comedyoferrors,1592 shop,3,comedyoferrors,1592 AEMILIA,3,comedyoferrors,1592 rough,3,comedyoferrors,1592 fiend,3,comedyoferrors,1592 bondman,3,comedyoferrors,1592 wouldst,3,comedyoferrors,1592 sharp,3,comedyoferrors,1592 knock,4,comedyoferrors,1592 bought,4,comedyoferrors,1592 o'er,4,comedyoferrors,1592 pity,4,comedyoferrors,1592 Adam,4,comedyoferrors,1592 far,4,comedyoferrors,1592 business,4,comedyoferrors,1592 Alas,4,comedyoferrors,1592 Fie,4,comedyoferrors,1592 ran,4,comedyoferrors,1592 haste,4,comedyoferrors,1592 shoulders,4,comedyoferrors,1592 rather,4,comedyoferrors,1592 wonder,4,comedyoferrors,1592 offer,4,comedyoferrors,1592 understand,4,comedyoferrors,1592 run,4,comedyoferrors,1592 truth,4,comedyoferrors,1592 trust,4,comedyoferrors,1592 Upon,4,comedyoferrors,1592 spurn,4,comedyoferrors,1592 sad,4,comedyoferrors,1592 many,4,comedyoferrors,1592 Give,4,comedyoferrors,1592 full,4,comedyoferrors,1592 making,4,comedyoferrors,1592 Now,4,comedyoferrors,1592 soft,4,comedyoferrors,1592 fish,4,comedyoferrors,1592 something,4,comedyoferrors,1592 once,4,comedyoferrors,1592 fire,4,comedyoferrors,1592 wrongs,4,comedyoferrors,1592 thing,4,comedyoferrors,1592 scorn,4,comedyoferrors,1592 deliver,4,comedyoferrors,1592 recover,4,comedyoferrors,1592 Was,4,comedyoferrors,1592 Servant,4,comedyoferrors,1592 stuff,4,comedyoferrors,1592 receive,4,comedyoferrors,1592 found,4,comedyoferrors,1592 received,4,comedyoferrors,1592 turn,4,comedyoferrors,1592 born,4,comedyoferrors,1592 common,4,comedyoferrors,1592 thence,4,comedyoferrors,1592 dull,4,comedyoferrors,1592 beaten,4,comedyoferrors,1592 hundred,4,comedyoferrors,1592 porter,4,comedyoferrors,1592 One,4,comedyoferrors,1592 AEmilia,4,comedyoferrors,1592 rest,4,comedyoferrors,1592 ever,4,comedyoferrors,1592 gazing,4,comedyoferrors,1592 wealth,4,comedyoferrors,1592 band,4,comedyoferrors,1592 talk,4,comedyoferrors,1592 neither,4,comedyoferrors,1592 wilt,4,comedyoferrors,1592 bay,4,comedyoferrors,1592 thank,4,comedyoferrors,1592 creature,4,comedyoferrors,1592 hip,4,comedyoferrors,1592 changed,4,comedyoferrors,1592 means,4,comedyoferrors,1592 lives,4,comedyoferrors,1592 goods,4,comedyoferrors,1592 Had,4,comedyoferrors,1592 quiet,4,comedyoferrors,1592 blood,4,comedyoferrors,1592 sound,4,comedyoferrors,1592 Neither,4,comedyoferrors,1592 Syracusa,4,comedyoferrors,1592 longer,4,comedyoferrors,1592 Mistress,4,comedyoferrors,1592 sleep,4,comedyoferrors,1592 Unless,4,comedyoferrors,1592 Signior,4,comedyoferrors,1592 Besides,4,comedyoferrors,1592 housed,4,comedyoferrors,1592 wench,4,comedyoferrors,1592 feast,4,comedyoferrors,1592 marriage,4,comedyoferrors,1592 earth,4,comedyoferrors,1592 credit,4,comedyoferrors,1592 late,4,comedyoferrors,1592 beauty,4,comedyoferrors,1592 father,4,comedyoferrors,1592 lest,4,comedyoferrors,1592 besides,4,comedyoferrors,1592 hard,4,comedyoferrors,1592 due,4,comedyoferrors,1592 plain,4,comedyoferrors,1592 sergeant,4,comedyoferrors,1592 city,4,comedyoferrors,1592 burden,4,comedyoferrors,1592 show,4,comedyoferrors,1592 told,5,comedyoferrors,1592 Against,5,comedyoferrors,1592 Will,5,comedyoferrors,1592 every,5,comedyoferrors,1592 Tell,5,comedyoferrors,1592 withal,5,comedyoferrors,1592 Sir,5,comedyoferrors,1592 rope's,5,comedyoferrors,1592 sons,5,comedyoferrors,1592 purse,5,comedyoferrors,1592 head,5,comedyoferrors,1592 warrant,5,comedyoferrors,1592 body,5,comedyoferrors,1592 better,5,comedyoferrors,1592 thine,5,comedyoferrors,1592 'My,5,comedyoferrors,1592 five,5,comedyoferrors,1592 sea,5,comedyoferrors,1592 cause,5,comedyoferrors,1592 These,5,comedyoferrors,1592 fellow,5,comedyoferrors,1592 fault,5,comedyoferrors,1592 Whilst,5,comedyoferrors,1592 Adriana,5,comedyoferrors,1592 sun,5,comedyoferrors,1592 owe,5,comedyoferrors,1592 feel,5,comedyoferrors,1592 Luciana,5,comedyoferrors,1592 went,5,comedyoferrors,1592 Till,5,comedyoferrors,1592 That's,5,comedyoferrors,1592 humour,5,comedyoferrors,1592 even,5,comedyoferrors,1592 There's,5,comedyoferrors,1592 ne'er,5,comedyoferrors,1592 bark,5,comedyoferrors,1592 depart,5,comedyoferrors,1592 patient,5,comedyoferrors,1592 aboard,5,comedyoferrors,1592 His,5,comedyoferrors,1592 holy,5,comedyoferrors,1592 Gaoler,5,comedyoferrors,1592 IV,5,comedyoferrors,1592 arrest,5,comedyoferrors,1592 sport,5,comedyoferrors,1592 obey,5,comedyoferrors,1592 whose,5,comedyoferrors,1592 burn,5,comedyoferrors,1592 hours,5,comedyoferrors,1592 bald,5,comedyoferrors,1592 cold,5,comedyoferrors,1592 gate,5,comedyoferrors,1592 God's,5,comedyoferrors,1592 promised,5,comedyoferrors,1592 safe,5,comedyoferrors,1592 debt,5,comedyoferrors,1592 straight,5,comedyoferrors,1592 hands,5,comedyoferrors,1592 that's,5,comedyoferrors,1592 last,5,comedyoferrors,1592 ill,5,comedyoferrors,1592 urging,5,comedyoferrors,1592 devil,5,comedyoferrors,1592 Porpentine,5,comedyoferrors,1592 crow,5,comedyoferrors,1592 Did,5,comedyoferrors,1592 pale,5,comedyoferrors,1592 call'd,5,comedyoferrors,1592 Angelo,5,comedyoferrors,1592 fool,5,comedyoferrors,1592 die,5,comedyoferrors,1592 Are,6,comedyoferrors,1592 Hath,6,comedyoferrors,1592 drop,6,comedyoferrors,1592 dined,6,comedyoferrors,1592 thought,6,comedyoferrors,1592 into,6,comedyoferrors,1592 soul,6,comedyoferrors,1592 stays,6,comedyoferrors,1592 world,6,comedyoferrors,1592 care,6,comedyoferrors,1592 ere,6,comedyoferrors,1592 draw,6,comedyoferrors,1592 yourself,6,comedyoferrors,1592 years,6,comedyoferrors,1592 words,6,comedyoferrors,1592 mind,6,comedyoferrors,1592 there's,6,comedyoferrors,1592 cheer,6,comedyoferrors,1592 another,6,comedyoferrors,1592 arrested,6,comedyoferrors,1592 walk,6,comedyoferrors,1592 stand,6,comedyoferrors,1592 son,6,comedyoferrors,1592 save,6,comedyoferrors,1592 looks,6,comedyoferrors,1592 way,6,comedyoferrors,1592 worse,6,comedyoferrors,1592 rage,6,comedyoferrors,1592 fear,6,comedyoferrors,1592 claim,6,comedyoferrors,1592 please,6,comedyoferrors,1592 three,6,comedyoferrors,1592 company,6,comedyoferrors,1592 fast,6,comedyoferrors,1592 At,6,comedyoferrors,1592 patience,6,comedyoferrors,1592 II,6,comedyoferrors,1592 pate,6,comedyoferrors,1592 Corinth,6,comedyoferrors,1592 back,6,comedyoferrors,1592 hither,6,comedyoferrors,1592 buy,6,comedyoferrors,1592 tongue,6,comedyoferrors,1592 merchant,6,comedyoferrors,1592 God,6,comedyoferrors,1592 first,6,comedyoferrors,1592 lord,6,comedyoferrors,1592 breath,6,comedyoferrors,1592 beat,6,comedyoferrors,1592 dear,6,comedyoferrors,1592 abbess,6,comedyoferrors,1592 street,6,comedyoferrors,1592 done,6,comedyoferrors,1592 live,6,comedyoferrors,1592 Yet,6,comedyoferrors,1592 those,6,comedyoferrors,1592 lose,6,comedyoferrors,1592 lock'd,6,comedyoferrors,1592 brought,6,comedyoferrors,1592 liberty,6,comedyoferrors,1592 shut,6,comedyoferrors,1592 present,6,comedyoferrors,1592 might,6,comedyoferrors,1592 shame,6,comedyoferrors,1592 meet,7,comedyoferrors,1592 AEgeon,7,comedyoferrors,1592 rope,7,comedyoferrors,1592 Syracusian,7,comedyoferrors,1592 gentle,7,comedyoferrors,1592 Therefore,7,comedyoferrors,1592 case,7,comedyoferrors,1592 Centaur,7,comedyoferrors,1592 Epidamnum,7,comedyoferrors,1592 Nor,7,comedyoferrors,1592 same,7,comedyoferrors,1592 who,7,comedyoferrors,1592 still,7,comedyoferrors,1592 suit,7,comedyoferrors,1592 'Tis,7,comedyoferrors,1592 about,7,comedyoferrors,1592 Here,7,comedyoferrors,1592 Even,7,comedyoferrors,1592 BALTHAZAR,7,comedyoferrors,1592 find,7,comedyoferrors,1592 wherefore,7,comedyoferrors,1592 therefore,7,comedyoferrors,1592 bind,7,comedyoferrors,1592 Let,7,comedyoferrors,1592 hold,7,comedyoferrors,1592 hie,7,comedyoferrors,1592 Is,7,comedyoferrors,1592 eyes,7,comedyoferrors,1592 seek,7,comedyoferrors,1592 down,7,comedyoferrors,1592 return,7,comedyoferrors,1592 send,7,comedyoferrors,1592 together,7,comedyoferrors,1592 met,7,comedyoferrors,1592 true,7,comedyoferrors,1592 lost,7,comedyoferrors,1592 part,7,comedyoferrors,1592 keep,7,comedyoferrors,1592 First,7,comedyoferrors,1592 ship,7,comedyoferrors,1592 PINCH,8,comedyoferrors,1592 help,8,comedyoferrors,1592 charge,8,comedyoferrors,1592 Some,8,comedyoferrors,1592 jest,8,comedyoferrors,1592 Not,8,comedyoferrors,1592 sake,8,comedyoferrors,1592 wit,8,comedyoferrors,1592 sum,8,comedyoferrors,1592 bring,8,comedyoferrors,1592 wind,8,comedyoferrors,1592 Time,8,comedyoferrors,1592 old,8,comedyoferrors,1592 friend,8,comedyoferrors,1592 meat,8,comedyoferrors,1592 Do,8,comedyoferrors,1592 he's,8,comedyoferrors,1592 hope,8,comedyoferrors,1592 thousand,8,comedyoferrors,1592 great,8,comedyoferrors,1592 Be,8,comedyoferrors,1592 blows,8,comedyoferrors,1592 stay,8,comedyoferrors,1592 enter,8,comedyoferrors,1592 bid,8,comedyoferrors,1592 night,8,comedyoferrors,1592 use,8,comedyoferrors,1592 We,8,comedyoferrors,1592 LUCE,8,comedyoferrors,1592 put,8,comedyoferrors,1592 leave,8,comedyoferrors,1592 look,8,comedyoferrors,1592 strange,8,comedyoferrors,1592 grace,8,comedyoferrors,1592 witness,8,comedyoferrors,1592 himself,8,comedyoferrors,1592 ass,8,comedyoferrors,1592 me,264,comedyoferrors,1592 answer,9,comedyoferrors,1592 took,9,comedyoferrors,1592 dine,9,comedyoferrors,1592 soon,9,comedyoferrors,1592 They,9,comedyoferrors,1592 death,9,comedyoferrors,1592 Say,9,comedyoferrors,1592 within,9,comedyoferrors,1592 With,9,comedyoferrors,1592 hair,9,comedyoferrors,1592 else,9,comedyoferrors,1592 pay,9,comedyoferrors,1592 ears,9,comedyoferrors,1592 whom,9,comedyoferrors,1592 So,9,comedyoferrors,1592 dost,9,comedyoferrors,1592 abbey,9,comedyoferrors,1592 'tis,9,comedyoferrors,1592 Marry,9,comedyoferrors,1592 cannot,9,comedyoferrors,1592 without,9,comedyoferrors,1592 though,9,comedyoferrors,1592 woman,9,comedyoferrors,1592 very,10,comedyoferrors,1592 doors,10,comedyoferrors,1592 didst,10,comedyoferrors,1592 sure,10,comedyoferrors,1592 mart,10,comedyoferrors,1592 slave,10,comedyoferrors,1592 quoth,10,comedyoferrors,1592 before,10,comedyoferrors,1592 light,10,comedyoferrors,1592 against,10,comedyoferrors,1592 why,10,comedyoferrors,1592 ring,10,comedyoferrors,1592 heart,10,comedyoferrors,1592 Well,10,comedyoferrors,1592 ducats,10,comedyoferrors,1592 goldsmith,10,comedyoferrors,1592 false,10,comedyoferrors,1592 word,10,comedyoferrors,1592 officer,10,comedyoferrors,1592 reason,10,comedyoferrors,1592 unto,10,comedyoferrors,1592 bed,10,comedyoferrors,1592 Which,10,comedyoferrors,1592 can,10,comedyoferrors,1592 men,10,comedyoferrors,1592 thyself,10,comedyoferrors,1592 place,10,comedyoferrors,1592 welcome,10,comedyoferrors,1592 deny,10,comedyoferrors,1592 forth,10,comedyoferrors,1592 Have,11,comedyoferrors,1592 Your,11,comedyoferrors,1592 marks,11,comedyoferrors,1592 eye,11,comedyoferrors,1592 ACT,11,comedyoferrors,1592 myself,11,comedyoferrors,1592 brother,11,comedyoferrors,1592 Then,11,comedyoferrors,1592 nothing,11,comedyoferrors,1592 merry,11,comedyoferrors,1592 wrong,11,comedyoferrors,1592 There,11,comedyoferrors,1592 hence,11,comedyoferrors,1592 mean,11,comedyoferrors,1592 sweet,11,comedyoferrors,1592 Or,11,comedyoferrors,1592 been,11,comedyoferrors,1592 poor,11,comedyoferrors,1592 left,11,comedyoferrors,1592 most,11,comedyoferrors,1592 speak,11,comedyoferrors,1592 hast,11,comedyoferrors,1592 COMEDY,12,comedyoferrors,1592 which,12,comedyoferrors,1592 ERRORS,12,comedyoferrors,1592 She,12,comedyoferrors,1592 THE,12,comedyoferrors,1592 nor,12,comedyoferrors,1592 town,12,comedyoferrors,1592 call,12,comedyoferrors,1592 Who,12,comedyoferrors,1592 get,12,comedyoferrors,1592 both,12,comedyoferrors,1592 Good,12,comedyoferrors,1592 gave,12,comedyoferrors,1592 gone,12,comedyoferrors,1592 door,12,comedyoferrors,1592 Master,12,comedyoferrors,1592 up,12,comedyoferrors,1592 SCENE,12,comedyoferrors,1592 made,13,comedyoferrors,1592 where,13,comedyoferrors,1592 none,13,comedyoferrors,1592 saw,13,comedyoferrors,1592 comes,13,comedyoferrors,1592 could,13,comedyoferrors,1592 break,13,comedyoferrors,1592 away,13,comedyoferrors,1592 own,13,comedyoferrors,1592 face,13,comedyoferrors,1592 duke,13,comedyoferrors,1592 fair,13,comedyoferrors,1592 hour,13,comedyoferrors,1592 Of,13,comedyoferrors,1592 thus,13,comedyoferrors,1592 yet,13,comedyoferrors,1592 hand,13,comedyoferrors,1592 Nay,14,comedyoferrors,1592 must,14,comedyoferrors,1592 hear,14,comedyoferrors,1592 fetch,14,comedyoferrors,1592 than,14,comedyoferrors,1592 As,14,comedyoferrors,1592 Ay,14,comedyoferrors,1592 since,14,comedyoferrors,1592 Exeunt,14,comedyoferrors,1592 being,14,comedyoferrors,1592 Where,14,comedyoferrors,1592 When,14,comedyoferrors,1592 give,14,comedyoferrors,1592 villain,15,comedyoferrors,1592 came,15,comedyoferrors,1592 bound,15,comedyoferrors,1592 name,15,comedyoferrors,1592 doth,15,comedyoferrors,1592 Exit,15,comedyoferrors,1592 How,15,comedyoferrors,1592 again,16,comedyoferrors,1592 This,16,comedyoferrors,1592 AEMELIA,16,comedyoferrors,1592 Officer,16,comedyoferrors,1592 No,16,comedyoferrors,1592 Go,16,comedyoferrors,1592 In,16,comedyoferrors,1592 It,16,comedyoferrors,1592 good,16,comedyoferrors,1592 long,16,comedyoferrors,1592 Courtezan,16,comedyoferrors,1592 two,16,comedyoferrors,1592 should,16,comedyoferrors,1592 much,17,comedyoferrors,1592 pray,17,comedyoferrors,1592 end,17,comedyoferrors,1592 life,18,comedyoferrors,1592 Come,18,comedyoferrors,1592 such,18,comedyoferrors,1592 take,18,comedyoferrors,1592 sent,18,comedyoferrors,1592 any,18,comedyoferrors,1592 Second,18,comedyoferrors,1592 love,18,comedyoferrors,1592 other,18,comedyoferrors,1592 Thou,19,comedyoferrors,1592 never,19,comedyoferrors,1592 gold,19,comedyoferrors,1592 bear,19,comedyoferrors,1592 AEGEON,20,comedyoferrors,1592 till,20,comedyoferrors,1592 By,20,comedyoferrors,1592 He,20,comedyoferrors,1592 may,20,comedyoferrors,1592 mistress,21,comedyoferrors,1592 well,21,comedyoferrors,1592 You,21,comedyoferrors,1592 ',22,comedyoferrors,1592 like,22,comedyoferrors,1592 say,22,comedyoferrors,1592 they,22,comedyoferrors,1592 tell,22,comedyoferrors,1592 Within,22,comedyoferrors,1592 when,22,comedyoferrors,1592 how,22,comedyoferrors,1592 art,22,comedyoferrors,1592 upon,23,comedyoferrors,1592 some,23,comedyoferrors,1592 mine,23,comedyoferrors,1592 think,23,comedyoferrors,1592 Merchant,23,comedyoferrors,1592 sister,23,comedyoferrors,1592 shall,23,comedyoferrors,1592 Why,24,comedyoferrors,1592 out,24,comedyoferrors,1592 these,24,comedyoferrors,1592 dinner,24,comedyoferrors,1592 Antipholus,24,comedyoferrors,1592 too,24,comedyoferrors,1592 make,25,comedyoferrors,1592 house,25,comedyoferrors,1592 money,25,comedyoferrors,1592 O,26,comedyoferrors,1592 DUKE,26,comedyoferrors,1592 time,26,comedyoferrors,1592 there,26,comedyoferrors,1592 SOLINUS,26,comedyoferrors,1592 let,26,comedyoferrors,1592 their,26,comedyoferrors,1592 you,282,comedyoferrors,1592 For,27,comedyoferrors,1592 mad,27,comedyoferrors,1592 husband,27,comedyoferrors,1592 our,28,comedyoferrors,1592 Syracuse,28,comedyoferrors,1592 if,28,comedyoferrors,1592 hath,28,comedyoferrors,1592 one,29,comedyoferrors,1592 day,29,comedyoferrors,1592 Ephesus,30,comedyoferrors,1592 then,30,comedyoferrors,1592 come,30,comedyoferrors,1592 go,30,comedyoferrors,1592 My,31,comedyoferrors,1592 If,31,comedyoferrors,1592 more,31,comedyoferrors,1592 Enter,32,comedyoferrors,1592 I'll,33,comedyoferrors,1592 see,33,comedyoferrors,1592 were,33,comedyoferrors,1592 an,33,comedyoferrors,1592 them,34,comedyoferrors,1592 master,34,comedyoferrors,1592 had,35,comedyoferrors,1592 ANGELO,36,comedyoferrors,1592 do,36,comedyoferrors,1592 wife,37,comedyoferrors,1592 What,37,comedyoferrors,1592 we,38,comedyoferrors,1592 was,39,comedyoferrors,1592 home,39,comedyoferrors,1592 us,39,comedyoferrors,1592 are,39,comedyoferrors,1592 she,40,comedyoferrors,1592 or,40,comedyoferrors,1592 now,41,comedyoferrors,1592 as,41,comedyoferrors,1592 A,42,comedyoferrors,1592 no,42,comedyoferrors,1592 on,42,comedyoferrors,1592 know,42,comedyoferrors,1592 The,42,comedyoferrors,1592 Dromio,42,comedyoferrors,1592 here,44,comedyoferrors,1592 To,44,comedyoferrors,1592 would,44,comedyoferrors,1592 what,45,comedyoferrors,1592 all,45,comedyoferrors,1592 That,46,comedyoferrors,1592 chain,46,comedyoferrors,1592 But,49,comedyoferrors,1592 did,50,comedyoferrors,1592 and,306,comedyoferrors,1592 LUCIANA,51,comedyoferrors,1592 am,54,comedyoferrors,1592 thy,56,comedyoferrors,1592 man,57,comedyoferrors,1592 to,314,comedyoferrors,1592 thee,64,comedyoferrors,1592 by,64,comedyoferrors,1592 so,64,comedyoferrors,1592 from,65,comedyoferrors,1592 but,65,comedyoferrors,1592 her,70,comedyoferrors,1592 at,73,comedyoferrors,1592 be,75,comedyoferrors,1592 have,77,comedyoferrors,1592 ADRIANA,85,comedyoferrors,1592 will,85,comedyoferrors,1592 his,97,comedyoferrors,1592 OF,355,comedyoferrors,1592 this,101,comedyoferrors,1592 sir,104,comedyoferrors,1592 your,105,comedyoferrors,1592 him,108,comedyoferrors,1592 thou,115,comedyoferrors,1592 with,127,comedyoferrors,1592 he,130,comedyoferrors,1592 is,134,comedyoferrors,1592 EPHESUS,139,comedyoferrors,1592 for,142,comedyoferrors,1592 it,142,comedyoferrors,1592 the,399,comedyoferrors,1592 And,156,comedyoferrors,1592 not,159,comedyoferrors,1592 that,171,comedyoferrors,1592 DROMIO,179,comedyoferrors,1592 ANTIPHOLUS,195,comedyoferrors,1592 SYRACUSE,204,comedyoferrors,1592 in,206,comedyoferrors,1592 a,211,comedyoferrors,1592 I,469,comedyoferrors,1592 my,229,comedyoferrors,1592 of,251,comedyoferrors,1592 my,512,kingrichardiii,1592 dimm'd,1,kingrichardiii,1592 cheque'd,1,kingrichardiii,1592 attended,1,kingrichardiii,1592 drink'st,1,kingrichardiii,1592 befal,1,kingrichardiii,1592 Ned,1,kingrichardiii,1592 Unmanner'd,1,kingrichardiii,1592 indignation,1,kingrichardiii,1592 affords,1,kingrichardiii,1592 silken,1,kingrichardiii,1592 kingdom's,1,kingrichardiii,1592 surmise,1,kingrichardiii,1592 Tremble,1,kingrichardiii,1592 cripple,1,kingrichardiii,1592 deputy,1,kingrichardiii,1592 scathe,1,kingrichardiii,1592 jet,1,kingrichardiii,1592 brawl,1,kingrichardiii,1592 Erroneous,1,kingrichardiii,1592 troubled,1,kingrichardiii,1592 galled,1,kingrichardiii,1592 villany,1,kingrichardiii,1592 troubler,1,kingrichardiii,1592 troubles,1,kingrichardiii,1592 viewing,1,kingrichardiii,1592 direst,1,kingrichardiii,1592 effeminate,1,kingrichardiii,1592 ignorance,1,kingrichardiii,1592 blemish'd,1,kingrichardiii,1592 parted,1,kingrichardiii,1592 womanish,1,kingrichardiii,1592 Melting,1,kingrichardiii,1592 Stands,1,kingrichardiii,1592 smiled,1,kingrichardiii,1592 Prove,1,kingrichardiii,1592 termed,1,kingrichardiii,1592 bonny,1,kingrichardiii,1592 shrouded,1,kingrichardiii,1592 c,1,kingrichardiii,1592 misplaced,1,kingrichardiii,1592 smiles,1,kingrichardiii,1592 taking,1,kingrichardiii,1592 safeguard,1,kingrichardiii,1592 Stir,1,kingrichardiii,1592 advice,1,kingrichardiii,1592 plainest,1,kingrichardiii,1592 extremity,1,kingrichardiii,1592 Valiant,1,kingrichardiii,1592 infected,1,kingrichardiii,1592 afar,1,kingrichardiii,1592 marrying,1,kingrichardiii,1592 lamely,1,kingrichardiii,1592 reputation,1,kingrichardiii,1592 retail'd,1,kingrichardiii,1592 Duchess,1,kingrichardiii,1592 derived,1,kingrichardiii,1592 lengthens,1,kingrichardiii,1592 freezeth,1,kingrichardiii,1592 fools',1,kingrichardiii,1592 Courageous,1,kingrichardiii,1592 verge,1,kingrichardiii,1592 Pity,1,kingrichardiii,1592 Comfort,1,kingrichardiii,1592 truer,1,kingrichardiii,1592 dream'd,1,kingrichardiii,1592 speech,1,kingrichardiii,1592 tremble,1,kingrichardiii,1592 GEORGE,1,kingrichardiii,1592 writ,1,kingrichardiii,1592 raw,1,kingrichardiii,1592 persons',1,kingrichardiii,1592 possible,1,kingrichardiii,1592 wish't,1,kingrichardiii,1592 ruthless,1,kingrichardiii,1592 helms,1,kingrichardiii,1592 treasure,1,kingrichardiii,1592 hinder,1,kingrichardiii,1592 brats,1,kingrichardiii,1592 Tear,1,kingrichardiii,1592 perturbations,1,kingrichardiii,1592 depose,1,kingrichardiii,1592 woman's,1,kingrichardiii,1592 snarling,1,kingrichardiii,1592 excepting,1,kingrichardiii,1592 masters',1,kingrichardiii,1592 brittle,1,kingrichardiii,1592 dived,1,kingrichardiii,1592 dine,1,kingrichardiii,1592 rag,1,kingrichardiii,1592 villain's,1,kingrichardiii,1592 plagued,1,kingrichardiii,1592 thus',1,kingrichardiii,1592 unscarr'd,1,kingrichardiii,1592 lower,1,kingrichardiii,1592 riddle,1,kingrichardiii,1592 looker,1,kingrichardiii,1592 rode,1,kingrichardiii,1592 Villain,1,kingrichardiii,1592 village,1,kingrichardiii,1592 longs,1,kingrichardiii,1592 Messengers,1,kingrichardiii,1592 defused,1,kingrichardiii,1592 obstinate,1,kingrichardiii,1592 Milford,1,kingrichardiii,1592 row,1,kingrichardiii,1592 carters,1,kingrichardiii,1592 highness',1,kingrichardiii,1592 Wilt,1,kingrichardiii,1592 publicly,1,kingrichardiii,1592 triumphing,1,kingrichardiii,1592 speeds,1,kingrichardiii,1592 commenting,1,kingrichardiii,1592 roar,1,kingrichardiii,1592 assistance,1,kingrichardiii,1592 muse,1,kingrichardiii,1592 proclaim'd,1,kingrichardiii,1592 trivial,1,kingrichardiii,1592 butchery,1,kingrichardiii,1592 easily,1,kingrichardiii,1592 space,1,kingrichardiii,1592 ambling,1,kingrichardiii,1592 neighbour's,1,kingrichardiii,1592 testy,1,kingrichardiii,1592 jot,1,kingrichardiii,1592 speedy,1,kingrichardiii,1592 Grim,1,kingrichardiii,1592 mell,1,kingrichardiii,1592 Penker,1,kingrichardiii,1592 Lord's,1,kingrichardiii,1592 reserved,1,kingrichardiii,1592 wailing,1,kingrichardiii,1592 drowsy,1,kingrichardiii,1592 drew'st,1,kingrichardiii,1592 frowning,1,kingrichardiii,1592 season'd,1,kingrichardiii,1592 poisonous,1,kingrichardiii,1592 Misconstrue,1,kingrichardiii,1592 Methoughts,1,kingrichardiii,1592 sleepy,1,kingrichardiii,1592 Environ'd,1,kingrichardiii,1592 wreaths,1,kingrichardiii,1592 easier,1,kingrichardiii,1592 hers,1,kingrichardiii,1592 Must,1,kingrichardiii,1592 finger,1,kingrichardiii,1592 infringe,1,kingrichardiii,1592 aptly,1,kingrichardiii,1592 Heir,1,kingrichardiii,1592 bounteous,1,kingrichardiii,1592 cursing,1,kingrichardiii,1592 mere,1,kingrichardiii,1592 intercepts,1,kingrichardiii,1592 decay,1,kingrichardiii,1592 Rougemont,1,kingrichardiii,1592 mean'st,1,kingrichardiii,1592 Black,1,kingrichardiii,1592 recourse,1,kingrichardiii,1592 prisoner,1,kingrichardiii,1592 grim,1,kingrichardiii,1592 braved,1,kingrichardiii,1592 Help,1,kingrichardiii,1592 prosperous,1,kingrichardiii,1592 Reward,1,kingrichardiii,1592 ferryman,1,kingrichardiii,1592 toil,1,kingrichardiii,1592 misusest,1,kingrichardiii,1592 honourable,1,kingrichardiii,1592 Held,1,kingrichardiii,1592 hearted,1,kingrichardiii,1592 cheering,1,kingrichardiii,1592 lowly,1,kingrichardiii,1592 Far,1,kingrichardiii,1592 fought,1,kingrichardiii,1592 looked,1,kingrichardiii,1592 countermand,1,kingrichardiii,1592 sugar,1,kingrichardiii,1592 Untouch'd,1,kingrichardiii,1592 rooting,1,kingrichardiii,1592 understand,1,kingrichardiii,1592 appear,1,kingrichardiii,1592 maintain,1,kingrichardiii,1592 cave,1,kingrichardiii,1592 omitted,1,kingrichardiii,1592 unhappiness,1,kingrichardiii,1592 Harry's,1,kingrichardiii,1592 match'd,1,kingrichardiii,1592 stretched,1,kingrichardiii,1592 underneath,1,kingrichardiii,1592 stumbled,1,kingrichardiii,1592 charter,1,kingrichardiii,1592 laugh,1,kingrichardiii,1592 Daring,1,kingrichardiii,1592 daub'd,1,kingrichardiii,1592 worms,1,kingrichardiii,1592 Christopher,1,kingrichardiii,1592 innocency,1,kingrichardiii,1592 calls,1,kingrichardiii,1592 beauty's,1,kingrichardiii,1592 yonder,1,kingrichardiii,1592 terrible,1,kingrichardiii,1592 befall,1,kingrichardiii,1592 advocate,1,kingrichardiii,1592 dreaming,1,kingrichardiii,1592 consorted,1,kingrichardiii,1592 odds,1,kingrichardiii,1592 iron,1,kingrichardiii,1592 bishops,1,kingrichardiii,1592 sore,1,kingrichardiii,1592 malapert,1,kingrichardiii,1592 Post,1,kingrichardiii,1592 drawbridge,1,kingrichardiii,1592 Jacks,1,kingrichardiii,1592 ancestors,1,kingrichardiii,1592 smooth'd,1,kingrichardiii,1592 stamp'd,1,kingrichardiii,1592 builds,1,kingrichardiii,1592 Amaze,1,kingrichardiii,1592 wrens,1,kingrichardiii,1592 Pour,1,kingrichardiii,1592 nymph,1,kingrichardiii,1592 'ever',1,kingrichardiii,1592 Were't,1,kingrichardiii,1592 cloyed,1,kingrichardiii,1592 earls,1,kingrichardiii,1592 cheques,1,kingrichardiii,1592 tyrannous,1,kingrichardiii,1592 springing,1,kingrichardiii,1592 recreation,1,kingrichardiii,1592 unwilling,1,kingrichardiii,1592 PERSONAE,1,kingrichardiii,1592 wither,1,kingrichardiii,1592 rescued,1,kingrichardiii,1592 mute,1,kingrichardiii,1592 'Small,1,kingrichardiii,1592 splinter'd,1,kingrichardiii,1592 clamorous,1,kingrichardiii,1592 'Thanks,1,kingrichardiii,1592 saved,1,kingrichardiii,1592 yoemen,1,kingrichardiii,1592 baited,1,kingrichardiii,1592 lightning,1,kingrichardiii,1592 cast,1,kingrichardiii,1592 soothe,1,kingrichardiii,1592 case,1,kingrichardiii,1592 walking,1,kingrichardiii,1592 argues,1,kingrichardiii,1592 impure,1,kingrichardiii,1592 worser,1,kingrichardiii,1592 breach,1,kingrichardiii,1592 vast,1,kingrichardiii,1592 Framed,1,kingrichardiii,1592 stirring,1,kingrichardiii,1592 Earth,1,kingrichardiii,1592 helped,1,kingrichardiii,1592 bending,1,kingrichardiii,1592 seven,1,kingrichardiii,1592 counted,1,kingrichardiii,1592 exhales,1,kingrichardiii,1592 surfeit,1,kingrichardiii,1592 espouse,1,kingrichardiii,1592 thank'd,1,kingrichardiii,1592 wander'd,1,kingrichardiii,1592 camp,1,kingrichardiii,1592 sadly,1,kingrichardiii,1592 reconciled,1,kingrichardiii,1592 Untainted,1,kingrichardiii,1592 sole,1,kingrichardiii,1592 spitteth,1,kingrichardiii,1592 'What,1,kingrichardiii,1592 sold,1,kingrichardiii,1592 dissentious,1,kingrichardiii,1592 charms,1,kingrichardiii,1592 matters,1,kingrichardiii,1592 befall'n,1,kingrichardiii,1592 relieve,1,kingrichardiii,1592 bearing,1,kingrichardiii,1592 closure,1,kingrichardiii,1592 dance,1,kingrichardiii,1592 fulsome,1,kingrichardiii,1592 inhabit,1,kingrichardiii,1592 resign'd,1,kingrichardiii,1592 grows,1,kingrichardiii,1592 hour's,1,kingrichardiii,1592 bluntly,1,kingrichardiii,1592 Tongue,1,kingrichardiii,1592 ennoble,1,kingrichardiii,1592 Caesar's,1,kingrichardiii,1592 Blind,1,kingrichardiii,1592 instigation,1,kingrichardiii,1592 persuading,1,kingrichardiii,1592 crying,1,kingrichardiii,1592 vaunts,1,kingrichardiii,1592 amended,1,kingrichardiii,1592 caps,1,kingrichardiii,1592 Provokes,1,kingrichardiii,1592 boldness,1,kingrichardiii,1592 Iniquity,1,kingrichardiii,1592 deceivest,1,kingrichardiii,1592 proceeds,1,kingrichardiii,1592 intelligencer,1,kingrichardiii,1592 succeeding,1,kingrichardiii,1592 Wot,1,kingrichardiii,1592 differs,1,kingrichardiii,1592 Know'st,1,kingrichardiii,1592 cockatrice,1,kingrichardiii,1592 unresolved,1,kingrichardiii,1592 drew,1,kingrichardiii,1592 Intending,1,kingrichardiii,1592 offenders,1,kingrichardiii,1592 exclaim,1,kingrichardiii,1592 Quiet,1,kingrichardiii,1592 cheek,1,kingrichardiii,1592 seemeth,1,kingrichardiii,1592 wants,1,kingrichardiii,1592 hearing,1,kingrichardiii,1592 voices,1,kingrichardiii,1592 rewarder,1,kingrichardiii,1592 chop,1,kingrichardiii,1592 kindness',1,kingrichardiii,1592 overgo,1,kingrichardiii,1592 characters,1,kingrichardiii,1592 soil,1,kingrichardiii,1592 repetition,1,kingrichardiii,1592 Pitchers,1,kingrichardiii,1592 soonest,1,kingrichardiii,1592 Dickon,1,kingrichardiii,1592 Fairer,1,kingrichardiii,1592 unsuspected,1,kingrichardiii,1592 making,1,kingrichardiii,1592 visaged,1,kingrichardiii,1592 sluggard,1,kingrichardiii,1592 thraldom,1,kingrichardiii,1592 rites,1,kingrichardiii,1592 Loath,1,kingrichardiii,1592 desperately,1,kingrichardiii,1592 fools,1,kingrichardiii,1592 Argues,1,kingrichardiii,1592 veins,1,kingrichardiii,1592 Pale,1,kingrichardiii,1592 Methinks,1,kingrichardiii,1592 riches,1,kingrichardiii,1592 toys,1,kingrichardiii,1592 furious,1,kingrichardiii,1592 Avaunt,1,kingrichardiii,1592 abode,1,kingrichardiii,1592 freedom,1,kingrichardiii,1592 runagate,1,kingrichardiii,1592 calamity,1,kingrichardiii,1592 inhuman,1,kingrichardiii,1592 amity,1,kingrichardiii,1592 toss'd,1,kingrichardiii,1592 congeal'd,1,kingrichardiii,1592 ingenious,1,kingrichardiii,1592 kin,1,kingrichardiii,1592 began,1,kingrichardiii,1592 paltry,1,kingrichardiii,1592 Courtney,1,kingrichardiii,1592 shrift,1,kingrichardiii,1592 seizing,1,kingrichardiii,1592 sobs,1,kingrichardiii,1592 perjured,1,kingrichardiii,1592 visitation,1,kingrichardiii,1592 Saw'st,1,kingrichardiii,1592 unwillingness,1,kingrichardiii,1592 carnal,1,kingrichardiii,1592 cities,1,kingrichardiii,1592 towns,1,kingrichardiii,1592 bedash'd,1,kingrichardiii,1592 lour'd,1,kingrichardiii,1592 jumpeth,1,kingrichardiii,1592 Fellows,1,kingrichardiii,1592 pillow,1,kingrichardiii,1592 famously,1,kingrichardiii,1592 godfathers,1,kingrichardiii,1592 ocean,1,kingrichardiii,1592 wizard,1,kingrichardiii,1592 six,1,kingrichardiii,1592 distraught,1,kingrichardiii,1592 slightly,1,kingrichardiii,1592 smoking,1,kingrichardiii,1592 Dull,1,kingrichardiii,1592 seeth,1,kingrichardiii,1592 march'd,1,kingrichardiii,1592 perch,1,kingrichardiii,1592 sing'st,1,kingrichardiii,1592 attainder,1,kingrichardiii,1592 Inter,1,kingrichardiii,1592 'judgment',1,kingrichardiii,1592 traditional,1,kingrichardiii,1592 blocks,1,kingrichardiii,1592 boat,1,kingrichardiii,1592 afflict,1,kingrichardiii,1592 Divinely,1,kingrichardiii,1592 history,1,kingrichardiii,1592 Oft,1,kingrichardiii,1592 deeper,1,kingrichardiii,1592 Leads,1,kingrichardiii,1592 innocents,1,kingrichardiii,1592 intercepted,1,kingrichardiii,1592 petitioner,1,kingrichardiii,1592 trebles,1,kingrichardiii,1592 imprison'd,1,kingrichardiii,1592 aged,1,kingrichardiii,1592 reaching,1,kingrichardiii,1592 key,1,kingrichardiii,1592 ages,1,kingrichardiii,1592 brook'd,1,kingrichardiii,1592 tenants,1,kingrichardiii,1592 subdued,1,kingrichardiii,1592 halbert,1,kingrichardiii,1592 bastard,1,kingrichardiii,1592 scourge,1,kingrichardiii,1592 deity,1,kingrichardiii,1592 disclosed,1,kingrichardiii,1592 meetings,1,kingrichardiii,1592 walk,1,kingrichardiii,1592 MARQUIS,1,kingrichardiii,1592 favoured,1,kingrichardiii,1592 Offended,1,kingrichardiii,1592 courtezans,1,kingrichardiii,1592 Burgundy,1,kingrichardiii,1592 deceived,1,kingrichardiii,1592 carrying,1,kingrichardiii,1592 Write,1,kingrichardiii,1592 'When,1,kingrichardiii,1592 society,1,kingrichardiii,1592 famish'd,1,kingrichardiii,1592 chiefest,1,kingrichardiii,1592 landed,1,kingrichardiii,1592 Plantagenets,1,kingrichardiii,1592 ancestry,1,kingrichardiii,1592 fell,1,kingrichardiii,1592 abused,1,kingrichardiii,1592 Thinking,1,kingrichardiii,1592 unprepared,1,kingrichardiii,1592 score,1,kingrichardiii,1592 betrayed,1,kingrichardiii,1592 WILLIAM,1,kingrichardiii,1592 stealing,1,kingrichardiii,1592 livest,1,kingrichardiii,1592 dispersing,1,kingrichardiii,1592 cradle,1,kingrichardiii,1592 branches,1,kingrichardiii,1592 delivers,1,kingrichardiii,1592 steps,1,kingrichardiii,1592 shoulder'd,1,kingrichardiii,1592 justices,1,kingrichardiii,1592 considerate,1,kingrichardiii,1592 leisurely,1,kingrichardiii,1592 stripling,1,kingrichardiii,1592 sob,1,kingrichardiii,1592 moralize,1,kingrichardiii,1592 executioners,1,kingrichardiii,1592 plenty,1,kingrichardiii,1592 fashions,1,kingrichardiii,1592 Affrights,1,kingrichardiii,1592 'O,1,kingrichardiii,1592 Kneel'd,1,kingrichardiii,1592 ashore,1,kingrichardiii,1592 nephews',1,kingrichardiii,1592 Duck,1,kingrichardiii,1592 cropp'd,1,kingrichardiii,1592 Berkeley,1,kingrichardiii,1592 egally,1,kingrichardiii,1592 livery,1,kingrichardiii,1592 taunt,1,kingrichardiii,1592 bashful,1,kingrichardiii,1592 acquainted,1,kingrichardiii,1592 deeply,1,kingrichardiii,1592 Devonshire,1,kingrichardiii,1592 study,1,kingrichardiii,1592 middle,1,kingrichardiii,1592 Prodigious,1,kingrichardiii,1592 Dissemble,1,kingrichardiii,1592 pitiful,1,kingrichardiii,1592 commends,1,kingrichardiii,1592 level,1,kingrichardiii,1592 groans,1,kingrichardiii,1592 hatch'd,1,kingrichardiii,1592 gather,1,kingrichardiii,1592 sets,1,kingrichardiii,1592 gnaw'd,1,kingrichardiii,1592 Doctor,1,kingrichardiii,1592 Sinfully,1,kingrichardiii,1592 merciless,1,kingrichardiii,1592 dally,1,kingrichardiii,1592 thin,1,kingrichardiii,1592 dearth,1,kingrichardiii,1592 bridge,1,kingrichardiii,1592 Hidest,1,kingrichardiii,1592 becomes,1,kingrichardiii,1592 conjunction,1,kingrichardiii,1592 shelter'd,1,kingrichardiii,1592 includes,1,kingrichardiii,1592 amiss,1,kingrichardiii,1592 poverty,1,kingrichardiii,1592 Anthony,1,kingrichardiii,1592 read,1,kingrichardiii,1592 seats,1,kingrichardiii,1592 abstract,1,kingrichardiii,1592 colder,1,kingrichardiii,1592 swelling,1,kingrichardiii,1592 worst,1,kingrichardiii,1592 mellow,1,kingrichardiii,1592 puissant,1,kingrichardiii,1592 taught,1,kingrichardiii,1592 felt,1,kingrichardiii,1592 sly,1,kingrichardiii,1592 mocks,1,kingrichardiii,1592 claim'd,1,kingrichardiii,1592 broils,1,kingrichardiii,1592 cacodemon,1,kingrichardiii,1592 worry,1,kingrichardiii,1592 guide,1,kingrichardiii,1592 wear'st,1,kingrichardiii,1592 embracements,1,kingrichardiii,1592 Bretagne,1,kingrichardiii,1592 redeem,1,kingrichardiii,1592 vanish,1,kingrichardiii,1592 staring,1,kingrichardiii,1592 readiest,1,kingrichardiii,1592 tormenting,1,kingrichardiii,1592 points,1,kingrichardiii,1592 conceit,1,kingrichardiii,1592 brain,1,kingrichardiii,1592 Swills,1,kingrichardiii,1592 weeder,1,kingrichardiii,1592 Deformed,1,kingrichardiii,1592 induction,1,kingrichardiii,1592 heal'd,1,kingrichardiii,1592 compassion,1,kingrichardiii,1592 reft,1,kingrichardiii,1592 peise,1,kingrichardiii,1592 dropper,1,kingrichardiii,1592 twelve,1,kingrichardiii,1592 guarded,1,kingrichardiii,1592 Cheated,1,kingrichardiii,1592 common,1,kingrichardiii,1592 swoln,1,kingrichardiii,1592 head's,1,kingrichardiii,1592 bore,1,kingrichardiii,1592 loathes,1,kingrichardiii,1592 figure,1,kingrichardiii,1592 civil,1,kingrichardiii,1592 proceeded,1,kingrichardiii,1592 direct,1,kingrichardiii,1592 absence,1,kingrichardiii,1592 ROTHERHAM,1,kingrichardiii,1592 plots,1,kingrichardiii,1592 beggarly,1,kingrichardiii,1592 shuns,1,kingrichardiii,1592 infidels,1,kingrichardiii,1592 endeavours,1,kingrichardiii,1592 actions,1,kingrichardiii,1592 CLARENCE's,1,kingrichardiii,1592 encounter,1,kingrichardiii,1592 loose,1,kingrichardiii,1592 suborn,1,kingrichardiii,1592 confer,1,kingrichardiii,1592 affected,1,kingrichardiii,1592 dearly,1,kingrichardiii,1592 Sound,1,kingrichardiii,1592 mark'd,1,kingrichardiii,1592 instance,1,kingrichardiii,1592 consented,1,kingrichardiii,1592 flatterer,1,kingrichardiii,1592 willing,1,kingrichardiii,1592 swoon,1,kingrichardiii,1592 parcell'd,1,kingrichardiii,1592 Leave,1,kingrichardiii,1592 pageant,1,kingrichardiii,1592 sty,1,kingrichardiii,1592 model,1,kingrichardiii,1592 physicians,1,kingrichardiii,1592 minority,1,kingrichardiii,1592 Forbids,1,kingrichardiii,1592 mutinies,1,kingrichardiii,1592 sum,1,kingrichardiii,1592 Bishops,1,kingrichardiii,1592 elder,1,kingrichardiii,1592 vanity,1,kingrichardiii,1592 complete,1,kingrichardiii,1592 brace,1,kingrichardiii,1592 Kings,1,kingrichardiii,1592 reverence,1,kingrichardiii,1592 above,1,kingrichardiii,1592 feed,1,kingrichardiii,1592 accent,1,kingrichardiii,1592 rein,1,kingrichardiii,1592 feet,1,kingrichardiii,1592 punish,1,kingrichardiii,1592 descent,1,kingrichardiii,1592 plainly,1,kingrichardiii,1592 ascendeth,1,kingrichardiii,1592 beaten,1,kingrichardiii,1592 directed,1,kingrichardiii,1592 'Faith,1,kingrichardiii,1592 whoever,1,kingrichardiii,1592 outgrown,1,kingrichardiii,1592 swore,1,kingrichardiii,1592 masters,1,kingrichardiii,1592 unexamined,1,kingrichardiii,1592 corrupt,1,kingrichardiii,1592 sailor,1,kingrichardiii,1592 conceal,1,kingrichardiii,1592 Drown,1,kingrichardiii,1592 lanced,1,kingrichardiii,1592 Old,1,kingrichardiii,1592 Guard,1,kingrichardiii,1592 speaking,1,kingrichardiii,1592 rude,1,kingrichardiii,1592 wing,1,kingrichardiii,1592 prevent,1,kingrichardiii,1592 applause,1,kingrichardiii,1592 Fly,1,kingrichardiii,1592 gapes,1,kingrichardiii,1592 ward,1,kingrichardiii,1592 flesh,1,kingrichardiii,1592 covert'st,1,kingrichardiii,1592 tiger,1,kingrichardiii,1592 rend,1,kingrichardiii,1592 separated,1,kingrichardiii,1592 handiwork,1,kingrichardiii,1592 length,1,kingrichardiii,1592 damnable,1,kingrichardiii,1592 Please,1,kingrichardiii,1592 Advancing,1,kingrichardiii,1592 peasants,1,kingrichardiii,1592 edge,1,kingrichardiii,1592 rely,1,kingrichardiii,1592 harmless,1,kingrichardiii,1592 Suspect,1,kingrichardiii,1592 sparingly,1,kingrichardiii,1592 heaved,1,kingrichardiii,1592 Englishman,1,kingrichardiii,1592 hated,1,kingrichardiii,1592 dies,1,kingrichardiii,1592 Retreat,1,kingrichardiii,1592 trifles,1,kingrichardiii,1592 diet,1,kingrichardiii,1592 scaffold,1,kingrichardiii,1592 counsel's,1,kingrichardiii,1592 seest,1,kingrichardiii,1592 turned,1,kingrichardiii,1592 anon,1,kingrichardiii,1592 distressful,1,kingrichardiii,1592 eagle,1,kingrichardiii,1592 withheld,1,kingrichardiii,1592 Plots,1,kingrichardiii,1592 Simple,1,kingrichardiii,1592 revolving,1,kingrichardiii,1592 summon,1,kingrichardiii,1592 trudge,1,kingrichardiii,1592 warm,1,kingrichardiii,1592 ungracious,1,kingrichardiii,1592 loins,1,kingrichardiii,1592 dukedom,1,kingrichardiii,1592 South,1,kingrichardiii,1592 coast,1,kingrichardiii,1592 bond,1,kingrichardiii,1592 cunning,1,kingrichardiii,1592 timeless,1,kingrichardiii,1592 brake,1,kingrichardiii,1592 conveyance,1,kingrichardiii,1592 dealt,1,kingrichardiii,1592 Misused,1,kingrichardiii,1592 join'd,1,kingrichardiii,1592 circumstances,1,kingrichardiii,1592 lunatic,1,kingrichardiii,1592 revel,1,kingrichardiii,1592 untired,1,kingrichardiii,1592 steel,1,kingrichardiii,1592 domestic,1,kingrichardiii,1592 rules,1,kingrichardiii,1592 condemns,1,kingrichardiii,1592 sweating,1,kingrichardiii,1592 wits,1,kingrichardiii,1592 creeping,1,kingrichardiii,1592 manly,1,kingrichardiii,1592 plaints,1,kingrichardiii,1592 chastised,1,kingrichardiii,1592 manhood,1,kingrichardiii,1592 French,1,kingrichardiii,1592 praised,1,kingrichardiii,1592 parts,1,kingrichardiii,1592 twill,1,kingrichardiii,1592 verdict,1,kingrichardiii,1592 Draw,1,kingrichardiii,1592 hungry,1,kingrichardiii,1592 everlastingly,1,kingrichardiii,1592 offers,1,kingrichardiii,1592 bewept,1,kingrichardiii,1592 deserves,1,kingrichardiii,1592 fairest,1,kingrichardiii,1592 Successively,1,kingrichardiii,1592 foil,1,kingrichardiii,1592 knowledge,1,kingrichardiii,1592 scandal,1,kingrichardiii,1592 prince's,1,kingrichardiii,1592 Faith,1,kingrichardiii,1592 stumble,1,kingrichardiii,1592 Tressel,1,kingrichardiii,1592 life's,1,kingrichardiii,1592 stir,1,kingrichardiii,1592 keys,1,kingrichardiii,1592 solicit,1,kingrichardiii,1592 o'erworn,1,kingrichardiii,1592 Foes,1,kingrichardiii,1592 Bettering,1,kingrichardiii,1592 Taken,1,kingrichardiii,1592 Hold,1,kingrichardiii,1592 steward,1,kingrichardiii,1592 inducement,1,kingrichardiii,1592 fatting,1,kingrichardiii,1592 While,1,kingrichardiii,1592 wanting,1,kingrichardiii,1592 hag,1,kingrichardiii,1592 Struck,1,kingrichardiii,1592 sweeter,1,kingrichardiii,1592 Holy,1,kingrichardiii,1592 rivers,1,kingrichardiii,1592 barded,1,kingrichardiii,1592 refuse,1,kingrichardiii,1592 offend,1,kingrichardiii,1592 guiltily,1,kingrichardiii,1592 orator,1,kingrichardiii,1592 distinguish,1,kingrichardiii,1592 streams,1,kingrichardiii,1592 Stabs,1,kingrichardiii,1592 religious,1,kingrichardiii,1592 burthen'd,1,kingrichardiii,1592 granted,1,kingrichardiii,1592 wheel'd,1,kingrichardiii,1592 spoil,1,kingrichardiii,1592 infection,1,kingrichardiii,1592 altogether,1,kingrichardiii,1592 pay,1,kingrichardiii,1592 packing,1,kingrichardiii,1592 tonight,1,kingrichardiii,1592 strangling,1,kingrichardiii,1592 hastings,1,kingrichardiii,1592 rankle,1,kingrichardiii,1592 music,1,kingrichardiii,1592 hang'd,1,kingrichardiii,1592 dream'st,1,kingrichardiii,1592 timorously,1,kingrichardiii,1592 Hie,1,kingrichardiii,1592 bow,1,kingrichardiii,1592 Gloucester's,1,kingrichardiii,1592 guiltiness,1,kingrichardiii,1592 govern,1,kingrichardiii,1592 alarum,1,kingrichardiii,1592 misused,1,kingrichardiii,1592 lance,1,kingrichardiii,1592 murderers,1,kingrichardiii,1592 Still,1,kingrichardiii,1592 blown,1,kingrichardiii,1592 spoil'd,1,kingrichardiii,1592 itself,1,kingrichardiii,1592 Dive,1,kingrichardiii,1592 listed,1,kingrichardiii,1592 Play,1,kingrichardiii,1592 teen,1,kingrichardiii,1592 pointed,1,kingrichardiii,1592 libels,1,kingrichardiii,1592 thoughts',1,kingrichardiii,1592 secretly,1,kingrichardiii,1592 Me,1,kingrichardiii,1592 bay,1,kingrichardiii,1592 harlot,1,kingrichardiii,1592 pays,1,kingrichardiii,1592 Plain,1,kingrichardiii,1592 razed,1,kingrichardiii,1592 Stand,1,kingrichardiii,1592 blots,1,kingrichardiii,1592 empery,1,kingrichardiii,1592 pew,1,kingrichardiii,1592 cruel,1,kingrichardiii,1592 Unrip'dst,1,kingrichardiii,1592 unless,1,kingrichardiii,1592 Tyrants,1,kingrichardiii,1592 denier,1,kingrichardiii,1592 Albeit,1,kingrichardiii,1592 Airy,1,kingrichardiii,1592 'Jockey,1,kingrichardiii,1592 pities,1,kingrichardiii,1592 star,1,kingrichardiii,1592 bestial,1,kingrichardiii,1592 joyless,1,kingrichardiii,1592 to't,1,kingrichardiii,1592 Decline,1,kingrichardiii,1592 stab,1,kingrichardiii,1592 Proclaim,1,kingrichardiii,1592 stag,1,kingrichardiii,1592 props,1,kingrichardiii,1592 BOURCHIER,1,kingrichardiii,1592 interior,1,kingrichardiii,1592 hid,1,kingrichardiii,1592 king',1,kingrichardiii,1592 type,1,kingrichardiii,1592 encompasseth,1,kingrichardiii,1592 lesson'd,1,kingrichardiii,1592 Letters,1,kingrichardiii,1592 enter'd,1,kingrichardiii,1592 ashes,1,kingrichardiii,1592 Outlive,1,kingrichardiii,1592 hit,1,kingrichardiii,1592 Exceeding,1,kingrichardiii,1592 WALTER,1,kingrichardiii,1592 Refuse,1,kingrichardiii,1592 Ho,1,kingrichardiii,1592 requires,1,kingrichardiii,1592 feigned,1,kingrichardiii,1592 blest,1,kingrichardiii,1592 aweless,1,kingrichardiii,1592 HASTING,1,kingrichardiii,1592 Called,1,kingrichardiii,1592 goods,1,kingrichardiii,1592 ease,1,kingrichardiii,1592 digest,1,kingrichardiii,1592 considered,1,kingrichardiii,1592 Usurp,1,kingrichardiii,1592 bruised,1,kingrichardiii,1592 revenue,1,kingrichardiii,1592 Bruised,1,kingrichardiii,1592 Seldom,1,kingrichardiii,1592 Buckingham's,1,kingrichardiii,1592 earl,1,kingrichardiii,1592 wrecks,1,kingrichardiii,1592 stem,1,kingrichardiii,1592 step,1,kingrichardiii,1592 prompts,1,kingrichardiii,1592 glorious,1,kingrichardiii,1592 anchor'd,1,kingrichardiii,1592 nice,1,kingrichardiii,1592 admiral,1,kingrichardiii,1592 deluge,1,kingrichardiii,1592 Divided,1,kingrichardiii,1592 interruption,1,kingrichardiii,1592 Gold,1,kingrichardiii,1592 Windy,1,kingrichardiii,1592 cardinal,1,kingrichardiii,1592 sire,1,kingrichardiii,1592 became,1,kingrichardiii,1592 begot,1,kingrichardiii,1592 corrupted,1,kingrichardiii,1592 beheaded,1,kingrichardiii,1592 Dukes,1,kingrichardiii,1592 Adieu,1,kingrichardiii,1592 warn'd,1,kingrichardiii,1592 Compare,1,kingrichardiii,1592 strifes,1,kingrichardiii,1592 Ferrers,1,kingrichardiii,1592 dolour,1,kingrichardiii,1592 doers,1,kingrichardiii,1592 bulk,1,kingrichardiii,1592 costard,1,kingrichardiii,1592 Hour,1,kingrichardiii,1592 week,1,kingrichardiii,1592 Open,1,kingrichardiii,1592 straw,1,kingrichardiii,1592 abides,1,kingrichardiii,1592 Drum,1,kingrichardiii,1592 Heard,1,kingrichardiii,1592 runaways,1,kingrichardiii,1592 preserved,1,kingrichardiii,1592 rebel,1,kingrichardiii,1592 help'st,1,kingrichardiii,1592 Jove's,1,kingrichardiii,1592 fields,1,kingrichardiii,1592 control,1,kingrichardiii,1592 miscarry,1,kingrichardiii,1592 willingness,1,kingrichardiii,1592 bury,1,kingrichardiii,1592 tumble,1,kingrichardiii,1592 Bona,1,kingrichardiii,1592 cherish'd,1,kingrichardiii,1592 burn,1,kingrichardiii,1592 crust,1,kingrichardiii,1592 immediately,1,kingrichardiii,1592 coffin,1,kingrichardiii,1592 car,1,kingrichardiii,1592 hereby,1,kingrichardiii,1592 babbling,1,kingrichardiii,1592 crush,1,kingrichardiii,1592 Consorted,1,kingrichardiii,1592 atonement,1,kingrichardiii,1592 pry,1,kingrichardiii,1592 tricks,1,kingrichardiii,1592 Seduced,1,kingrichardiii,1592 friends',1,kingrichardiii,1592 defects,1,kingrichardiii,1592 yon,1,kingrichardiii,1592 wrecked,1,kingrichardiii,1592 tables,1,kingrichardiii,1592 troublest,1,kingrichardiii,1592 devised,1,kingrichardiii,1592 Bold,1,kingrichardiii,1592 ordered,1,kingrichardiii,1592 learned,1,kingrichardiii,1592 Sirs,1,kingrichardiii,1592 weightier,1,kingrichardiii,1592 gaze,1,kingrichardiii,1592 Save,1,kingrichardiii,1592 bent,1,kingrichardiii,1592 vagabonds,1,kingrichardiii,1592 Behold,1,kingrichardiii,1592 people,1,kingrichardiii,1592 beyond,1,kingrichardiii,1592 Falsely,1,kingrichardiii,1592 Lies,1,kingrichardiii,1592 unsway'd,1,kingrichardiii,1592 welkin,1,kingrichardiii,1592 gape,1,kingrichardiii,1592 equals,1,kingrichardiii,1592 Unarm'd,1,kingrichardiii,1592 monuments,1,kingrichardiii,1592 Welshmen,1,kingrichardiii,1592 foulest,1,kingrichardiii,1592 vomits,1,kingrichardiii,1592 Drawing,1,kingrichardiii,1592 prating,1,kingrichardiii,1592 embassage,1,kingrichardiii,1592 Clifford,1,kingrichardiii,1592 curst,1,kingrichardiii,1592 twice,1,kingrichardiii,1592 boar's,1,kingrichardiii,1592 Encourage,1,kingrichardiii,1592 Conscience,1,kingrichardiii,1592 keep'st,1,kingrichardiii,1592 scoffs,1,kingrichardiii,1592 tackling,1,kingrichardiii,1592 imprison,1,kingrichardiii,1592 Famous,1,kingrichardiii,1592 nonage,1,kingrichardiii,1592 friendly,1,kingrichardiii,1592 anguish,1,kingrichardiii,1592 Preys,1,kingrichardiii,1592 bulwarks,1,kingrichardiii,1592 Chop,1,kingrichardiii,1592 vows,1,kingrichardiii,1592 attorneys,1,kingrichardiii,1592 stander,1,kingrichardiii,1592 Neighbour,1,kingrichardiii,1592 insinuating,1,kingrichardiii,1592 submission,1,kingrichardiii,1592 hilts,1,kingrichardiii,1592 vassal,1,kingrichardiii,1592 frowns,1,kingrichardiii,1592 tailors,1,kingrichardiii,1592 preserve,1,kingrichardiii,1592 survey,1,kingrichardiii,1592 engrave,1,kingrichardiii,1592 Meet,1,kingrichardiii,1592 swine,1,kingrichardiii,1592 crack'd,1,kingrichardiii,1592 enterprise,1,kingrichardiii,1592 sink,1,kingrichardiii,1592 Rumour,1,kingrichardiii,1592 'Twas,1,kingrichardiii,1592 stories,1,kingrichardiii,1592 Welshman,1,kingrichardiii,1592 rejoice,1,kingrichardiii,1592 moody,1,kingrichardiii,1592 Got,1,kingrichardiii,1592 footing,1,kingrichardiii,1592 turns,1,kingrichardiii,1592 fulfil,1,kingrichardiii,1592 upper,1,kingrichardiii,1592 sharing,1,kingrichardiii,1592 hopeful,1,kingrichardiii,1592 owest,1,kingrichardiii,1592 lately,1,kingrichardiii,1592 resort,1,kingrichardiii,1592 engross'd,1,kingrichardiii,1592 importune,1,kingrichardiii,1592 o'ershade,1,kingrichardiii,1592 convey'd,1,kingrichardiii,1592 anointed,1,kingrichardiii,1592 opens,1,kingrichardiii,1592 Name,1,kingrichardiii,1592 Naught,1,kingrichardiii,1592 tower,1,kingrichardiii,1592 quite,1,kingrichardiii,1592 whet'st,1,kingrichardiii,1592 shamefast,1,kingrichardiii,1592 noted,1,kingrichardiii,1592 mistrusting,1,kingrichardiii,1592 eagles,1,kingrichardiii,1592 storm,1,kingrichardiii,1592 panting,1,kingrichardiii,1592 sail,1,kingrichardiii,1592 stay'd,1,kingrichardiii,1592 forgive,1,kingrichardiii,1592 mood,1,kingrichardiii,1592 image,1,kingrichardiii,1592 betray,1,kingrichardiii,1592 Fortune,1,kingrichardiii,1592 torments,1,kingrichardiii,1592 resolute,1,kingrichardiii,1592 snatch'd,1,kingrichardiii,1592 keeping,1,kingrichardiii,1592 hearkens,1,kingrichardiii,1592 retail,1,kingrichardiii,1592 sage,1,kingrichardiii,1592 idea,1,kingrichardiii,1592 unfeignedly,1,kingrichardiii,1592 burial,1,kingrichardiii,1592 ROBERT,1,kingrichardiii,1592 stops,1,kingrichardiii,1592 Here's,1,kingrichardiii,1592 forbids,1,kingrichardiii,1592 strut,1,kingrichardiii,1592 Best,1,kingrichardiii,1592 marches,1,kingrichardiii,1592 consider,1,kingrichardiii,1592 moans,1,kingrichardiii,1592 jewels,1,kingrichardiii,1592 Ill,1,kingrichardiii,1592 carping,1,kingrichardiii,1592 wreck,1,kingrichardiii,1592 legs,1,kingrichardiii,1592 handsome,1,kingrichardiii,1592 ago,1,kingrichardiii,1592 gentlewomen,1,kingrichardiii,1592 amendment,1,kingrichardiii,1592 Guilty,1,kingrichardiii,1592 consistory,1,kingrichardiii,1592 unworthy,1,kingrichardiii,1592 tragedy,1,kingrichardiii,1592 Enrich,1,kingrichardiii,1592 caitiff,1,kingrichardiii,1592 Aiming,1,kingrichardiii,1592 profaned,1,kingrichardiii,1592 liberal,1,kingrichardiii,1592 Cousins,1,kingrichardiii,1592 aims,1,kingrichardiii,1592 tragedian,1,kingrichardiii,1592 Safe,1,kingrichardiii,1592 seeing,1,kingrichardiii,1592 slaughters,1,kingrichardiii,1592 sleeper,1,kingrichardiii,1592 drain,1,kingrichardiii,1592 Lash,1,kingrichardiii,1592 eloquent,1,kingrichardiii,1592 suggestion,1,kingrichardiii,1592 enforce,1,kingrichardiii,1592 lighted,1,kingrichardiii,1592 declension,1,kingrichardiii,1592 mirrors,1,kingrichardiii,1592 icy,1,kingrichardiii,1592 copious,1,kingrichardiii,1592 lighter,1,kingrichardiii,1592 touch'd,1,kingrichardiii,1592 haught,1,kingrichardiii,1592 affrighted,1,kingrichardiii,1592 lady's,1,kingrichardiii,1592 waits,1,kingrichardiii,1592 ice,1,kingrichardiii,1592 Stanley's,1,kingrichardiii,1592 hell's,1,kingrichardiii,1592 Abraham's,1,kingrichardiii,1592 by'r,1,kingrichardiii,1592 appeared,1,kingrichardiii,1592 makest,1,kingrichardiii,1592 comforts,1,kingrichardiii,1592 possess'd,1,kingrichardiii,1592 ap,1,kingrichardiii,1592 edified,1,kingrichardiii,1592 ah,1,kingrichardiii,1592 amend,1,kingrichardiii,1592 interred,1,kingrichardiii,1592 strew'st,1,kingrichardiii,1592 slimy,1,kingrichardiii,1592 wench,1,kingrichardiii,1592 deaths',1,kingrichardiii,1592 displeased,1,kingrichardiii,1592 door,1,kingrichardiii,1592 crosses,1,kingrichardiii,1592 Beget,1,kingrichardiii,1592 curtail'd,1,kingrichardiii,1592 inclusive,1,kingrichardiii,1592 banished,1,kingrichardiii,1592 rumours,1,kingrichardiii,1592 realm,1,kingrichardiii,1592 sugar'd,1,kingrichardiii,1592 Master,1,kingrichardiii,1592 Sweetly,1,kingrichardiii,1592 ask'd,1,kingrichardiii,1592 begnaw,1,kingrichardiii,1592 innocents',1,kingrichardiii,1592 pursuit,1,kingrichardiii,1592 Dispute,1,kingrichardiii,1592 threaten,1,kingrichardiii,1592 month,1,kingrichardiii,1592 Insulting,1,kingrichardiii,1592 crew,1,kingrichardiii,1592 necessity,1,kingrichardiii,1592 utmost,1,kingrichardiii,1592 crave,1,kingrichardiii,1592 slily,1,kingrichardiii,1592 malignant,1,kingrichardiii,1592 playfellow,1,kingrichardiii,1592 sometime,1,kingrichardiii,1592 Reads,1,kingrichardiii,1592 attendant,1,kingrichardiii,1592 lour,1,kingrichardiii,1592 caused,1,kingrichardiii,1592 cloaks,1,kingrichardiii,1592 venturous,1,kingrichardiii,1592 lover,1,kingrichardiii,1592 expostulate,1,kingrichardiii,1592 Inestimable,1,kingrichardiii,1592 pursues,1,kingrichardiii,1592 Hoisted,1,kingrichardiii,1592 Countess,1,kingrichardiii,1592 begg'd,1,kingrichardiii,1592 o'ercast,1,kingrichardiii,1592 stout,1,kingrichardiii,1592 impediment,1,kingrichardiii,1592 enjoys,1,kingrichardiii,1592 untroubled,1,kingrichardiii,1592 offer'd,1,kingrichardiii,1592 crowning,1,kingrichardiii,1592 levy,1,kingrichardiii,1592 moon,1,kingrichardiii,1592 aery's,1,kingrichardiii,1592 ho,1,kingrichardiii,1592 resolved,1,kingrichardiii,1592 dragons,1,kingrichardiii,1592 ample,1,kingrichardiii,1592 semblance,1,kingrichardiii,1592 Spurn,1,kingrichardiii,1592 afternoon,1,kingrichardiii,1592 loved,1,kingrichardiii,1592 all's,1,kingrichardiii,1592 circumspect,1,kingrichardiii,1592 spend,1,kingrichardiii,1592 blue,1,kingrichardiii,1592 brutish,1,kingrichardiii,1592 bruising,1,kingrichardiii,1592 hostile,1,kingrichardiii,1592 abusing,1,kingrichardiii,1592 Profaned,1,kingrichardiii,1592 wails,1,kingrichardiii,1592 act,1,kingrichardiii,1592 lets,1,kingrichardiii,1592 bootless,1,kingrichardiii,1592 meanings,1,kingrichardiii,1592 statues,1,kingrichardiii,1592 mischiefs,1,kingrichardiii,1592 Brecknock,1,kingrichardiii,1592 nimbly,1,kingrichardiii,1592 slack,1,kingrichardiii,1592 respite,1,kingrichardiii,1592 loan,1,kingrichardiii,1592 reads,1,kingrichardiii,1592 appease,1,kingrichardiii,1592 summers,1,kingrichardiii,1592 marr'd,1,kingrichardiii,1592 hog,1,kingrichardiii,1592 'lay,1,kingrichardiii,1592 zealous,1,kingrichardiii,1592 presume,1,kingrichardiii,1592 graven,1,kingrichardiii,1592 pamper,1,kingrichardiii,1592 thrice,1,kingrichardiii,1592 killed,1,kingrichardiii,1592 hardly,1,kingrichardiii,1592 ornaments,1,kingrichardiii,1592 executed,1,kingrichardiii,1592 royalize,1,kingrichardiii,1592 easy,1,kingrichardiii,1592 fierce,1,kingrichardiii,1592 Seeking,1,kingrichardiii,1592 unlook'd,1,kingrichardiii,1592 front,1,kingrichardiii,1592 Most,1,kingrichardiii,1592 reasonable,1,kingrichardiii,1592 Stirr'd,1,kingrichardiii,1592 string,1,kingrichardiii,1592 weapon,1,kingrichardiii,1592 keen,1,kingrichardiii,1592 remember'd,1,kingrichardiii,1592 hall,1,kingrichardiii,1592 Army,1,kingrichardiii,1592 embowell'd,1,kingrichardiii,1592 Whenever,1,kingrichardiii,1592 round,1,kingrichardiii,1592 adders,1,kingrichardiii,1592 owls,1,kingrichardiii,1592 handled,1,kingrichardiii,1592 knit,1,kingrichardiii,1592 signify,1,kingrichardiii,1592 senseless,1,kingrichardiii,1592 crutches,1,kingrichardiii,1592 quarter'd,1,kingrichardiii,1592 impression,1,kingrichardiii,1592 Repair'd,1,kingrichardiii,1592 employ'd,1,kingrichardiii,1592 joyfully,1,kingrichardiii,1592 continually,1,kingrichardiii,1592 Unlawfully,1,kingrichardiii,1592 perform'd,1,kingrichardiii,1592 Definitively,1,kingrichardiii,1592 husband's,1,kingrichardiii,1592 natural,1,kingrichardiii,1592 enointed,1,kingrichardiii,1592 signal,1,kingrichardiii,1592 strings,1,kingrichardiii,1592 repeat,1,kingrichardiii,1592 hang,1,kingrichardiii,1592 re,1,kingrichardiii,1592 shun,1,kingrichardiii,1592 nobleness,1,kingrichardiii,1592 shut,1,kingrichardiii,1592 Full,1,kingrichardiii,1592 cited,1,kingrichardiii,1592 thinkest,1,kingrichardiii,1592 bunch,1,kingrichardiii,1592 consult,1,kingrichardiii,1592 mitigate,1,kingrichardiii,1592 bobb'd,1,kingrichardiii,1592 descried,1,kingrichardiii,1592 beweep,1,kingrichardiii,1592 track,1,kingrichardiii,1592 school,1,kingrichardiii,1592 sweetest,1,kingrichardiii,1592 praise,1,kingrichardiii,1592 momentary,1,kingrichardiii,1592 During,1,kingrichardiii,1592 Inspire,1,kingrichardiii,1592 miscarried,1,kingrichardiii,1592 detects,1,kingrichardiii,1592 wisdoms,1,kingrichardiii,1592 spotted,1,kingrichardiii,1592 marching,1,kingrichardiii,1592 successively,1,kingrichardiii,1592 city,1,kingrichardiii,1592 rudely,1,kingrichardiii,1592 midnight,1,kingrichardiii,1592 page,1,kingrichardiii,1592 grudging,1,kingrichardiii,1592 rashness,1,kingrichardiii,1592 garish,1,kingrichardiii,1592 weeps,1,kingrichardiii,1592 'Dear,1,kingrichardiii,1592 prepare,1,kingrichardiii,1592 purged,1,kingrichardiii,1592 Commend,1,kingrichardiii,1592 Deserve,1,kingrichardiii,1592 unwept,1,kingrichardiii,1592 Tendering,1,kingrichardiii,1592 conducting,1,kingrichardiii,1592 pair,1,kingrichardiii,1592 avenged,1,kingrichardiii,1592 ship,1,kingrichardiii,1592 neglect,1,kingrichardiii,1592 bloodily,1,kingrichardiii,1592 stranger,1,kingrichardiii,1592 hangs,1,kingrichardiii,1592 Laid,1,kingrichardiii,1592 forswearing,1,kingrichardiii,1592 wagging,1,kingrichardiii,1592 spit,1,kingrichardiii,1592 plotted,1,kingrichardiii,1592 ape,1,kingrichardiii,1592 extremest,1,kingrichardiii,1592 forswore,1,kingrichardiii,1592 Touch'd,1,kingrichardiii,1592 spear,1,kingrichardiii,1592 devise,1,kingrichardiii,1592 owed,1,kingrichardiii,1592 convict,1,kingrichardiii,1592 Eighty,1,kingrichardiii,1592 infer,1,kingrichardiii,1592 Felt,1,kingrichardiii,1592 shot,1,kingrichardiii,1592 hats,1,kingrichardiii,1592 transform'd,1,kingrichardiii,1592 insatiate,1,kingrichardiii,1592 fishes,1,kingrichardiii,1592 billows,1,kingrichardiii,1592 Richmonds,1,kingrichardiii,1592 awe,1,kingrichardiii,1592 except,1,kingrichardiii,1592 detested,1,kingrichardiii,1592 fiend,1,kingrichardiii,1592 flatter'd,1,kingrichardiii,1592 Anointed,1,kingrichardiii,1592 outstrip,1,kingrichardiii,1592 duke's,1,kingrichardiii,1592 Gilbert,1,kingrichardiii,1592 stall'd,1,kingrichardiii,1592 images,1,kingrichardiii,1592 Small,1,kingrichardiii,1592 babies,1,kingrichardiii,1592 creatures,1,kingrichardiii,1592 obey'd,1,kingrichardiii,1592 object,1,kingrichardiii,1592 overweening,1,kingrichardiii,1592 assistants,1,kingrichardiii,1592 rear'd,1,kingrichardiii,1592 attempts,1,kingrichardiii,1592 dewy,1,kingrichardiii,1592 nearest,1,kingrichardiii,1592 term,1,kingrichardiii,1592 menace,1,kingrichardiii,1592 Hast,1,kingrichardiii,1592 competitors,1,kingrichardiii,1592 Short,1,kingrichardiii,1592 chance,1,kingrichardiii,1592 prate,1,kingrichardiii,1592 Accursed,1,kingrichardiii,1592 mellow'd,1,kingrichardiii,1592 alacrity,1,kingrichardiii,1592 beggary,1,kingrichardiii,1592 Again,1,kingrichardiii,1592 'girdling,1,kingrichardiii,1592 judgment,1,kingrichardiii,1592 daring,1,kingrichardiii,1592 token,1,kingrichardiii,1592 Stony,1,kingrichardiii,1592 conversation,1,kingrichardiii,1592 trial,1,kingrichardiii,1592 purple,1,kingrichardiii,1592 brain'd,1,kingrichardiii,1592 Enforced,1,kingrichardiii,1592 hazard,1,kingrichardiii,1592 Little,1,kingrichardiii,1592 Stood,1,kingrichardiii,1592 broke,1,kingrichardiii,1592 expiate,1,kingrichardiii,1592 Uncharitably,1,kingrichardiii,1592 beams,1,kingrichardiii,1592 liver'd,1,kingrichardiii,1592 prays,1,kingrichardiii,1592 root,1,kingrichardiii,1592 precedent,1,kingrichardiii,1592 requites,1,kingrichardiii,1592 servitor,1,kingrichardiii,1592 compact,1,kingrichardiii,1592 consumed,1,kingrichardiii,1592 nobles,1,kingrichardiii,1592 Between,1,kingrichardiii,1592 nods,1,kingrichardiii,1592 execute,1,kingrichardiii,1592 fat,1,kingrichardiii,1592 luck,1,kingrichardiii,1592 tumbling,1,kingrichardiii,1592 contented,1,kingrichardiii,1592 raze,1,kingrichardiii,1592 room,1,kingrichardiii,1592 therewith,1,kingrichardiii,1592 nap,1,kingrichardiii,1592 whispers,1,kingrichardiii,1592 trained,1,kingrichardiii,1592 breathes,1,kingrichardiii,1592 glories,1,kingrichardiii,1592 ventures,1,kingrichardiii,1592 Match,1,kingrichardiii,1592 Eleven,1,kingrichardiii,1592 heavier,1,kingrichardiii,1592 shameful,1,kingrichardiii,1592 maid,1,kingrichardiii,1592 consider'd,1,kingrichardiii,1592 swallowing,1,kingrichardiii,1592 Selves,1,kingrichardiii,1592 Sorry,1,kingrichardiii,1592 piping,1,kingrichardiii,1592 honey,1,kingrichardiii,1592 Guildfords,1,kingrichardiii,1592 Spoke,1,kingrichardiii,1592 hind,1,kingrichardiii,1592 redoubted,1,kingrichardiii,1592 Canst,1,kingrichardiii,1592 forehead,1,kingrichardiii,1592 Dabbled,1,kingrichardiii,1592 alabaster,1,kingrichardiii,1592 rose,1,kingrichardiii,1592 rascals,1,kingrichardiii,1592 'Margaret,1,kingrichardiii,1592 Westminster,1,kingrichardiii,1592 takest,1,kingrichardiii,1592 Ireland,1,kingrichardiii,1592 faction,1,kingrichardiii,1592 queen',1,kingrichardiii,1592 couldst,1,kingrichardiii,1592 helpless,1,kingrichardiii,1592 built,1,kingrichardiii,1592 Brothers,1,kingrichardiii,1592 Better,1,kingrichardiii,1592 prosperity,1,kingrichardiii,1592 repose,1,kingrichardiii,1592 Else,1,kingrichardiii,1592 sheweth,1,kingrichardiii,1592 midst,1,kingrichardiii,1592 deposed,1,kingrichardiii,1592 marks,1,kingrichardiii,1592 caparison,1,kingrichardiii,1592 Back,1,kingrichardiii,1592 waken,1,kingrichardiii,1592 sparing,1,kingrichardiii,1592 afresh,1,kingrichardiii,1592 proceed,1,kingrichardiii,1592 wonder,1,kingrichardiii,1592 gavest,1,kingrichardiii,1592 hire,1,kingrichardiii,1592 Furies,1,kingrichardiii,1592 scroll,1,kingrichardiii,1592 damage,1,kingrichardiii,1592 signified,1,kingrichardiii,1592 abroach,1,kingrichardiii,1592 Bade,1,kingrichardiii,1592 holp'st,1,kingrichardiii,1592 adoreth,1,kingrichardiii,1592 restore,1,kingrichardiii,1592 conquer'd,1,kingrichardiii,1592 restless,1,kingrichardiii,1592 gently,1,kingrichardiii,1592 Hoyday,1,kingrichardiii,1592 noon,1,kingrichardiii,1592 proudly,1,kingrichardiii,1592 cloy,1,kingrichardiii,1592 rats,1,kingrichardiii,1592 disinherited,1,kingrichardiii,1592 mildness,1,kingrichardiii,1592 clergymen,1,kingrichardiii,1592 apostle,1,kingrichardiii,1592 luxury,1,kingrichardiii,1592 infancy,1,kingrichardiii,1592 unblown,1,kingrichardiii,1592 Frozen,1,kingrichardiii,1592 rash,1,kingrichardiii,1592 clothe,1,kingrichardiii,1592 bravely,1,kingrichardiii,1592 estate,1,kingrichardiii,1592 punched,1,kingrichardiii,1592 dissembler,1,kingrichardiii,1592 Six,1,kingrichardiii,1592 meanly,1,kingrichardiii,1592 feature,1,kingrichardiii,1592 Sleeps,1,kingrichardiii,1592 exclamations,1,kingrichardiii,1592 'Ay,1,kingrichardiii,1592 dukes,1,kingrichardiii,1592 sirrah,1,kingrichardiii,1592 hies,1,kingrichardiii,1592 Love,1,kingrichardiii,1592 dangers,1,kingrichardiii,1592 Slander,1,kingrichardiii,1592 smoothing,1,kingrichardiii,1592 Clean,1,kingrichardiii,1592 Soft,1,kingrichardiii,1592 restrain,1,kingrichardiii,1592 capers,1,kingrichardiii,1592 Lethe,1,kingrichardiii,1592 substance,1,kingrichardiii,1592 slower,1,kingrichardiii,1592 adventure,1,kingrichardiii,1592 posterity,1,kingrichardiii,1592 'Be,1,kingrichardiii,1592 meditating,1,kingrichardiii,1592 annoy,1,kingrichardiii,1592 excused,1,kingrichardiii,1592 blindly,1,kingrichardiii,1592 citizen,1,kingrichardiii,1592 Flatter,1,kingrichardiii,1592 Wedges,1,kingrichardiii,1592 admit,1,kingrichardiii,1592 Sin,1,kingrichardiii,1592 Deck'd,1,kingrichardiii,1592 charm,1,kingrichardiii,1592 spicery,1,kingrichardiii,1592 arguments,1,kingrichardiii,1592 mount,1,kingrichardiii,1592 stays,1,kingrichardiii,1592 morrows,1,kingrichardiii,1592 grants,1,kingrichardiii,1592 equally,1,kingrichardiii,1592 High,1,kingrichardiii,1592 meet'st,1,kingrichardiii,1592 quickly,1,kingrichardiii,1592 garden,1,kingrichardiii,1592 Curse,1,kingrichardiii,1592 thrall,1,kingrichardiii,1592 misdoubt,1,kingrichardiii,1592 o'erlook,1,kingrichardiii,1592 you'll,1,kingrichardiii,1592 perform,1,kingrichardiii,1592 threefold,1,kingrichardiii,1592 Slave,1,kingrichardiii,1592 springs,1,kingrichardiii,1592 churchmen,1,kingrichardiii,1592 misery,1,kingrichardiii,1592 Darest,1,kingrichardiii,1592 intestate,1,kingrichardiii,1592 scars,1,kingrichardiii,1592 Harford,1,kingrichardiii,1592 doomsday,1,kingrichardiii,1592 accessary,1,kingrichardiii,1592 scripture,1,kingrichardiii,1592 Turks,1,kingrichardiii,1592 avouch,1,kingrichardiii,1592 Alban's,1,kingrichardiii,1592 withholds,1,kingrichardiii,1592 leaving,1,kingrichardiii,1592 pack'd,1,kingrichardiii,1592 injustice,1,kingrichardiii,1592 Dost,1,kingrichardiii,1592 placed,1,kingrichardiii,1592 unprovided,1,kingrichardiii,1592 discontent,1,kingrichardiii,1592 spurn,1,kingrichardiii,1592 seasons,1,kingrichardiii,1592 airy,1,kingrichardiii,1592 device,1,kingrichardiii,1592 yourself's,1,kingrichardiii,1592 doors,1,kingrichardiii,1592 likewise,1,kingrichardiii,1592 blessings,1,kingrichardiii,1592 milk,1,kingrichardiii,1592 Delay,1,kingrichardiii,1592 replenished,1,kingrichardiii,1592 eaves,1,kingrichardiii,1592 nod,1,kingrichardiii,1592 charitable,1,kingrichardiii,1592 disdain'd,1,kingrichardiii,1592 aiding,1,kingrichardiii,1592 Friar,1,kingrichardiii,1592 RICHMOND's,1,kingrichardiii,1592 teeth,1,kingrichardiii,1592 non,1,kingrichardiii,1592 bubble,1,kingrichardiii,1592 prize,1,kingrichardiii,1592 conclusion,1,kingrichardiii,1592 shield,1,kingrichardiii,1592 engross,1,kingrichardiii,1592 Derby's,1,kingrichardiii,1592 knave,1,kingrichardiii,1592 playfellows,1,kingrichardiii,1592 Persuade,1,kingrichardiii,1592 Sons,1,kingrichardiii,1592 MORTON,1,kingrichardiii,1592 Grant,1,kingrichardiii,1592 scepter'd,1,kingrichardiii,1592 Mark'd,1,kingrichardiii,1592 reversed,1,kingrichardiii,1592 smother,1,kingrichardiii,1592 Advantaging,1,kingrichardiii,1592 Hither,1,kingrichardiii,1592 tempers,1,kingrichardiii,1592 dregs,1,kingrichardiii,1592 fortnight,1,kingrichardiii,1592 beads,1,kingrichardiii,1592 remorseful,1,kingrichardiii,1592 unviolable,1,kingrichardiii,1592 misdeeds,1,kingrichardiii,1592 stabbed,1,kingrichardiii,1592 courage,1,kingrichardiii,1592 sovereign's,1,kingrichardiii,1592 squeak'd,1,kingrichardiii,1592 mast,1,kingrichardiii,1592 devil',1,kingrichardiii,1592 distain,1,kingrichardiii,1592 dearest,1,kingrichardiii,1592 accustom'd,1,kingrichardiii,1592 partake,1,kingrichardiii,1592 unshapen,1,kingrichardiii,1592 kissing,1,kingrichardiii,1592 'G',1,kingrichardiii,1592 proudest,1,kingrichardiii,1592 presentation,1,kingrichardiii,1592 Fill'd,1,kingrichardiii,1592 known,1,kingrichardiii,1592 grandam's,1,kingrichardiii,1592 trough,1,kingrichardiii,1592 Weigh,1,kingrichardiii,1592 veil,1,kingrichardiii,1592 oracle,1,kingrichardiii,1592 forsook,1,kingrichardiii,1592 Endured,1,kingrichardiii,1592 because,1,kingrichardiii,1592 conjoin,1,kingrichardiii,1592 wot,1,kingrichardiii,1592 leader,1,kingrichardiii,1592 magician,1,kingrichardiii,1592 infants,1,kingrichardiii,1592 blow,1,kingrichardiii,1592 revengeful,1,kingrichardiii,1592 infect,1,kingrichardiii,1592 chide,1,kingrichardiii,1592 register'd,1,kingrichardiii,1592 arch,1,kingrichardiii,1592 seal'd,1,kingrichardiii,1592 brethren,1,kingrichardiii,1592 higher,1,kingrichardiii,1592 captive,1,kingrichardiii,1592 plenteous,1,kingrichardiii,1592 wretched'st,1,kingrichardiii,1592 accompanied,1,kingrichardiii,1592 cozen'd,1,kingrichardiii,1592 naught,1,kingrichardiii,1592 Forces,1,kingrichardiii,1592 smothered,1,kingrichardiii,1592 greediness,1,kingrichardiii,1592 stratagems,1,kingrichardiii,1592 mockery,1,kingrichardiii,1592 thump'd,1,kingrichardiii,1592 division,1,kingrichardiii,1592 sayest,1,kingrichardiii,1592 blasted,1,kingrichardiii,1592 sunrising,1,kingrichardiii,1592 vapour,1,kingrichardiii,1592 web,1,kingrichardiii,1592 Fatal,1,kingrichardiii,1592 ones,1,kingrichardiii,1592 stain,1,kingrichardiii,1592 fire,1,kingrichardiii,1592 apish,1,kingrichardiii,1592 Dorset's,1,kingrichardiii,1592 expedient,1,kingrichardiii,1592 blameful,1,kingrichardiii,1592 Found,1,kingrichardiii,1592 banks,1,kingrichardiii,1592 Wert,1,kingrichardiii,1592 breed,1,kingrichardiii,1592 howled,1,kingrichardiii,1592 Awaked,1,kingrichardiii,1592 taste,1,kingrichardiii,1592 'almost,1,kingrichardiii,1592 affairs,1,kingrichardiii,1592 frightful,1,kingrichardiii,1592 coining,1,kingrichardiii,1592 desolation,1,kingrichardiii,1592 proved,1,kingrichardiii,1592 enacts,1,kingrichardiii,1592 supposest,1,kingrichardiii,1592 apology,1,kingrichardiii,1592 flesh'd,1,kingrichardiii,1592 Wept,1,kingrichardiii,1592 Sabbath,1,kingrichardiii,1592 Scotland,1,kingrichardiii,1592 person's,1,kingrichardiii,1592 contemplation,1,kingrichardiii,1592 stalk,1,kingrichardiii,1592 salt,1,kingrichardiii,1592 today,1,kingrichardiii,1592 former,1,kingrichardiii,1592 pomp,1,kingrichardiii,1592 indictment,1,kingrichardiii,1592 throw,1,kingrichardiii,1592 style,1,kingrichardiii,1592 Look'd,1,kingrichardiii,1592 vines,1,kingrichardiii,1592 wis,1,kingrichardiii,1592 repentant,1,kingrichardiii,1592 experience,1,kingrichardiii,1592 discipline,1,kingrichardiii,1592 fitteth,1,kingrichardiii,1592 Deep,1,kingrichardiii,1592 Armed,1,kingrichardiii,1592 sleep's,1,kingrichardiii,1592 stamp,1,kingrichardiii,1592 disdains,1,kingrichardiii,1592 five,1,kingrichardiii,1592 Witness,1,kingrichardiii,1592 Whisper,1,kingrichardiii,1592 capable,1,kingrichardiii,1592 grave's,1,kingrichardiii,1592 reflecting,1,kingrichardiii,1592 Went,1,kingrichardiii,1592 Revolving,1,kingrichardiii,1592 proposed,1,kingrichardiii,1592 handkerchief,1,kingrichardiii,1592 'Lo,1,kingrichardiii,1592 privy,1,kingrichardiii,1592 redemption,1,kingrichardiii,1592 herbs,1,kingrichardiii,1592 confines,1,kingrichardiii,1592 court,1,kingrichardiii,1592 impose,1,kingrichardiii,1592 Ravish,1,kingrichardiii,1592 Despiteful,1,kingrichardiii,1592 youngest,1,kingrichardiii,1592 hears,1,kingrichardiii,1592 Moreover,1,kingrichardiii,1592 establish'd,1,kingrichardiii,1592 fetch,1,kingrichardiii,1592 faultless,1,kingrichardiii,1592 fetch'd,1,kingrichardiii,1592 third,1,kingrichardiii,1592 sitting,1,kingrichardiii,1592 Denounced,1,kingrichardiii,1592 falchion,1,kingrichardiii,1592 measures,1,kingrichardiii,1592 tractable,1,kingrichardiii,1592 creation,1,kingrichardiii,1592 beastly,1,kingrichardiii,1592 steel'd,1,kingrichardiii,1592 moment,1,kingrichardiii,1592 bloodless,1,kingrichardiii,1592 waking,1,kingrichardiii,1592 allegiance,1,kingrichardiii,1592 meaner,1,kingrichardiii,1592 closet,1,kingrichardiii,1592 recover,1,kingrichardiii,1592 city's,1,kingrichardiii,1592 conspire,1,kingrichardiii,1592 dimming,1,kingrichardiii,1592 christen'd,1,kingrichardiii,1592 relent,1,kingrichardiii,1592 abjects,1,kingrichardiii,1592 clock,1,kingrichardiii,1592 heaps,1,kingrichardiii,1592 Saw,1,kingrichardiii,1592 bigamy,1,kingrichardiii,1592 Desire,1,kingrichardiii,1592 Shaw,1,kingrichardiii,1592 Ungovern'd,1,kingrichardiii,1592 seniory,1,kingrichardiii,1592 salutation,1,kingrichardiii,1592 resemblance,1,kingrichardiii,1592 alarums,1,kingrichardiii,1592 standing,1,kingrichardiii,1592 lessen'd,1,kingrichardiii,1592 count,1,kingrichardiii,1592 knightly,1,kingrichardiii,1592 distress'd,1,kingrichardiii,1592 nomination,1,kingrichardiii,1592 niece,1,kingrichardiii,1592 adulterate,1,kingrichardiii,1592 shamefully,1,kingrichardiii,1592 Sleeping,1,kingrichardiii,1592 flint,1,kingrichardiii,1592 venom'd,1,kingrichardiii,1592 patiently,1,kingrichardiii,1592 torture,1,kingrichardiii,1592 HASTINGS',1,kingrichardiii,1592 Provoke,1,kingrichardiii,1592 scarr'd,1,kingrichardiii,1592 issued,1,kingrichardiii,1592 chastisement,1,kingrichardiii,1592 maid's,1,kingrichardiii,1592 'We,1,kingrichardiii,1592 dust,1,kingrichardiii,1592 'True,1,kingrichardiii,1592 dusky,1,kingrichardiii,1592 unadvisedly,1,kingrichardiii,1592 Hereafter,1,kingrichardiii,1592 slewest,1,kingrichardiii,1592 blasts,1,kingrichardiii,1592 'The,1,kingrichardiii,1592 interr'd,1,kingrichardiii,1592 replying,1,kingrichardiii,1592 encloseth,1,kingrichardiii,1592 Throw,1,kingrichardiii,1592 spacious,1,kingrichardiii,1592 mounting,1,kingrichardiii,1592 trusty,1,kingrichardiii,1592 preferments,1,kingrichardiii,1592 standard,1,kingrichardiii,1592 growing,1,kingrichardiii,1592 ambition,1,kingrichardiii,1592 solemnly,1,kingrichardiii,1592 methoughts,1,kingrichardiii,1592 hidden,1,kingrichardiii,1592 bleed,1,kingrichardiii,1592 reeling,1,kingrichardiii,1592 dugs,1,kingrichardiii,1592 blemish,1,kingrichardiii,1592 Brittany,1,kingrichardiii,1592 pride,1,kingrichardiii,1592 saith,1,kingrichardiii,1592 wanton,1,kingrichardiii,1592 imposition,1,kingrichardiii,1592 rags,1,kingrichardiii,1592 dying,1,kingrichardiii,1592 legion,1,kingrichardiii,1592 uncle's,1,kingrichardiii,1592 bereft,1,kingrichardiii,1592 instinct,1,kingrichardiii,1592 admitted,1,kingrichardiii,1592 apace,1,kingrichardiii,1592 villains,1,kingrichardiii,1592 complain,1,kingrichardiii,1592 emulation,1,kingrichardiii,1592 multitude,1,kingrichardiii,1592 breakfast,1,kingrichardiii,1592 witted,1,kingrichardiii,1592 Three,1,kingrichardiii,1592 Shine,1,kingrichardiii,1592 Throws,1,kingrichardiii,1592 bounty,1,kingrichardiii,1592 ruins,1,kingrichardiii,1592 enforced,1,kingrichardiii,1592 Shame,1,kingrichardiii,1592 hail,1,kingrichardiii,1592 Consisting,1,kingrichardiii,1592 irons,1,kingrichardiii,1592 shriving,1,kingrichardiii,1592 sweets,1,kingrichardiii,1592 grossness,1,kingrichardiii,1592 discover'd,1,kingrichardiii,1592 mightily,1,kingrichardiii,1592 fix'd,1,kingrichardiii,1592 anchors,1,kingrichardiii,1592 unwilligness,1,kingrichardiii,1592 unwittingly,1,kingrichardiii,1592 reposing,1,kingrichardiii,1592 mettle,1,kingrichardiii,1592 oblivion,1,kingrichardiii,1592 marsh,1,kingrichardiii,1592 ransom,1,kingrichardiii,1592 penitent,1,kingrichardiii,1592 watery,1,kingrichardiii,1592 served,1,kingrichardiii,1592 Heaven,1,kingrichardiii,1592 disobeys,1,kingrichardiii,1592 estates,1,kingrichardiii,1592 edict,1,kingrichardiii,1592 fallen,1,kingrichardiii,1592 Fainting,1,kingrichardiii,1592 charges,1,kingrichardiii,1592 Touches,1,kingrichardiii,1592 graft,1,kingrichardiii,1592 fondly,1,kingrichardiii,1592 bunchback'd,1,kingrichardiii,1592 forfeit,1,kingrichardiii,1592 blemished,1,kingrichardiii,1592 lute,1,kingrichardiii,1592 Robert,1,kingrichardiii,1592 Rude,1,kingrichardiii,1592 hack'd,1,kingrichardiii,1592 Unmeritable,1,kingrichardiii,1592 inclination,1,kingrichardiii,1592 compass,1,kingrichardiii,1592 bitterness,1,kingrichardiii,1592 lust,1,kingrichardiii,1592 Cancel,1,kingrichardiii,1592 disposition,1,kingrichardiii,1592 rain,1,kingrichardiii,1592 unite,1,kingrichardiii,1592 Plead,1,kingrichardiii,1592 dubb'd,1,kingrichardiii,1592 Saddle,1,kingrichardiii,1592 elvish,1,kingrichardiii,1592 wolf,1,kingrichardiii,1592 farther,1,kingrichardiii,1592 touching,1,kingrichardiii,1592 Amongst,1,kingrichardiii,1592 serves,1,kingrichardiii,1592 wooer,1,kingrichardiii,1592 embark'd,1,kingrichardiii,1592 Rush,1,kingrichardiii,1592 clout,1,kingrichardiii,1592 went,1,kingrichardiii,1592 stirs,1,kingrichardiii,1592 whence,1,kingrichardiii,1592 Whispers,1,kingrichardiii,1592 gifts,1,kingrichardiii,1592 covet,1,kingrichardiii,1592 glad,1,kingrichardiii,1592 belch,1,kingrichardiii,1592 Strike,1,kingrichardiii,1592 hideous,1,kingrichardiii,1592 Show,1,kingrichardiii,1592 garlands,1,kingrichardiii,1592 sails,1,kingrichardiii,1592 table,1,kingrichardiii,1592 dispatch'd,1,kingrichardiii,1592 computation,1,kingrichardiii,1592 snail,1,kingrichardiii,1592 tongueless,1,kingrichardiii,1592 advertised,1,kingrichardiii,1592 Many,1,kingrichardiii,1592 pedlar,1,kingrichardiii,1592 cloth,1,kingrichardiii,1592 highly,1,kingrichardiii,1592 unpossess'd,1,kingrichardiii,1592 giving,1,kingrichardiii,1592 stolen,1,kingrichardiii,1592 united,1,kingrichardiii,1592 Grossly,1,kingrichardiii,1592 quest,1,kingrichardiii,1592 mista'en,1,kingrichardiii,1592 wilful,1,kingrichardiii,1592 Nearer,1,kingrichardiii,1592 daggers,1,kingrichardiii,1592 castaways,1,kingrichardiii,1592 Proceed,1,kingrichardiii,1592 lump,1,kingrichardiii,1592 lasting,1,kingrichardiii,1592 safest,1,kingrichardiii,1592 darkly,1,kingrichardiii,1592 Spur,1,kingrichardiii,1592 race,1,kingrichardiii,1592 gratulate,1,kingrichardiii,1592 kinsman,1,kingrichardiii,1592 methinks,1,kingrichardiii,1592 grand,1,kingrichardiii,1592 prodigality,1,kingrichardiii,1592 returns,1,kingrichardiii,1592 kites,1,kingrichardiii,1592 worm,1,kingrichardiii,1592 inductions,1,kingrichardiii,1592 Warwick's,1,kingrichardiii,1592 letter,1,kingrichardiii,1592 stab'dst,1,kingrichardiii,1592 righteous,1,kingrichardiii,1592 prolong'd,1,kingrichardiii,1592 roses,1,kingrichardiii,1592 fighting,1,kingrichardiii,1592 passing,1,kingrichardiii,1592 lodged,1,kingrichardiii,1592 ride,1,kingrichardiii,1592 overboard,1,kingrichardiii,1592 enfranchise,1,kingrichardiii,1592 tragical,1,kingrichardiii,1592 flame,1,kingrichardiii,1592 fit,1,kingrichardiii,1592 Sorrow,1,kingrichardiii,1592 offices,1,kingrichardiii,1592 invocate,1,kingrichardiii,1592 unfinish'd,1,kingrichardiii,1592 stains,1,kingrichardiii,1592 Attend,1,kingrichardiii,1592 opprobriously,1,kingrichardiii,1592 cherry,1,kingrichardiii,1592 flaky,1,kingrichardiii,1592 swallow's,1,kingrichardiii,1592 continue,1,kingrichardiii,1592 Madest,1,kingrichardiii,1592 preservation,1,kingrichardiii,1592 lascivious,1,kingrichardiii,1592 reprove,1,kingrichardiii,1592 Imagine,1,kingrichardiii,1592 thereby,1,kingrichardiii,1592 Near,1,kingrichardiii,1592 bard,1,kingrichardiii,1592 thunder,1,kingrichardiii,1592 meddle,1,kingrichardiii,1592 answer'd,1,kingrichardiii,1592 shown,1,kingrichardiii,1592 wide,1,kingrichardiii,1592 tail,1,kingrichardiii,1592 shows,1,kingrichardiii,1592 Incapable,1,kingrichardiii,1592 unfold,1,kingrichardiii,1592 arrogance,1,kingrichardiii,1592 Mother,1,kingrichardiii,1592 an't,1,kingrichardiii,1592 Friars,1,kingrichardiii,1592 butcher,1,kingrichardiii,1592 beware,1,kingrichardiii,1592 mates,1,kingrichardiii,1592 Stratford,1,kingrichardiii,1592 journeys,1,kingrichardiii,1592 Talbot,1,kingrichardiii,1592 bars,1,kingrichardiii,1592 reproach,1,kingrichardiii,1592 incur,1,kingrichardiii,1592 client,1,kingrichardiii,1592 cheered,1,kingrichardiii,1592 slanderous,1,kingrichardiii,1592 appointed,1,kingrichardiii,1592 accuseth,1,kingrichardiii,1592 balm,1,kingrichardiii,1592 will't,1,kingrichardiii,1592 tame,1,kingrichardiii,1592 bounds,1,kingrichardiii,1592 weakness,1,kingrichardiii,1592 secrets,1,kingrichardiii,1592 prefer,1,kingrichardiii,1592 Field,1,kingrichardiii,1592 songs,1,kingrichardiii,1592 'Clarence,1,kingrichardiii,1592 boldly,1,kingrichardiii,1592 dismay'd,1,kingrichardiii,1592 fare,1,kingrichardiii,1592 mischance,1,kingrichardiii,1592 meets,1,kingrichardiii,1592 feeble,1,kingrichardiii,1592 lights,1,kingrichardiii,1592 favourable,1,kingrichardiii,1592 gallant,1,kingrichardiii,1592 lag,1,kingrichardiii,1592 accusers,1,kingrichardiii,1592 timorous,1,kingrichardiii,1592 calendar,1,kingrichardiii,1592 departure,1,kingrichardiii,1592 sojourn,1,kingrichardiii,1592 falsely,1,kingrichardiii,1592 orient,1,kingrichardiii,1592 folks,1,kingrichardiii,1592 welcomer,1,kingrichardiii,1592 fruitful,1,kingrichardiii,1592 bind,1,kingrichardiii,1592 aloft,1,kingrichardiii,1592 cup,1,kingrichardiii,1592 high'st,1,kingrichardiii,1592 excursions,1,kingrichardiii,1592 sunder'd,1,kingrichardiii,1592 cue,1,kingrichardiii,1592 perish,1,kingrichardiii,1592 unwise,1,kingrichardiii,1592 fearful'st,1,kingrichardiii,1592 consists,1,kingrichardiii,1592 torment,1,kingrichardiii,1592 mothers,1,kingrichardiii,1592 Lines,1,kingrichardiii,1592 Every,1,kingrichardiii,1592 Villains,1,kingrichardiii,1592 unthankfulness,1,kingrichardiii,1592 Led,1,kingrichardiii,1592 dallying,1,kingrichardiii,1592 recorder,1,kingrichardiii,1592 recorded,1,kingrichardiii,1592 ought,1,kingrichardiii,1592 shook,1,kingrichardiii,1592 accident,1,kingrichardiii,1592 empire,1,kingrichardiii,1592 dungeon,1,kingrichardiii,1592 Canterbury,1,kingrichardiii,1592 holp,1,kingrichardiii,1592 visiting,1,kingrichardiii,1592 victories,1,kingrichardiii,1592 None,1,kingrichardiii,1592 Relenting,1,kingrichardiii,1592 hole,1,kingrichardiii,1592 stand'st,1,kingrichardiii,1592 devout,1,kingrichardiii,1592 lackey,1,kingrichardiii,1592 helmets,1,kingrichardiii,1592 cur,1,kingrichardiii,1592 Lives,1,kingrichardiii,1592 giddy,1,kingrichardiii,1592 method,1,kingrichardiii,1592 Arise,1,kingrichardiii,1592 Ensuing,1,kingrichardiii,1592 Although,1,kingrichardiii,1592 ensnareth,1,kingrichardiii,1592 counterfeit,1,kingrichardiii,1592 cowards,1,kingrichardiii,1592 whetted,1,kingrichardiii,1592 sunder,1,kingrichardiii,1592 fatherless,1,kingrichardiii,1592 murdering,1,kingrichardiii,1592 cheerly,1,kingrichardiii,1592 tire,1,kingrichardiii,1592 circling,1,kingrichardiii,1592 forsooth,1,kingrichardiii,1592 monastery,1,kingrichardiii,1592 encouragement,1,kingrichardiii,1592 horses,1,kingrichardiii,1592 startled,1,kingrichardiii,1592 remnant,1,kingrichardiii,1592 grudge,1,kingrichardiii,1592 resolution,1,kingrichardiii,1592 Day,1,kingrichardiii,1592 slanders,1,kingrichardiii,1592 Awake,1,kingrichardiii,1592 Rideth,1,kingrichardiii,1592 dicipline,1,kingrichardiii,1592 falsehood,1,kingrichardiii,1592 gives,1,kingrichardiii,1592 task,1,kingrichardiii,1592 notwithstanding,1,kingrichardiii,1592 intents,1,kingrichardiii,1592 Inquire,1,kingrichardiii,1592 Seize,1,kingrichardiii,1592 Neglect,1,kingrichardiii,1592 unpitied,1,kingrichardiii,1592 also,1,kingrichardiii,1592 shout,1,kingrichardiii,1592 Gramercy,1,kingrichardiii,1592 Anon,1,kingrichardiii,1592 prettily,1,kingrichardiii,1592 Tetchy,1,kingrichardiii,1592 thronging,1,kingrichardiii,1592 cope,1,kingrichardiii,1592 prithee,1,kingrichardiii,1592 sear,1,kingrichardiii,1592 battalion,1,kingrichardiii,1592 recomforture,1,kingrichardiii,1592 lovely,1,kingrichardiii,1592 commission,1,kingrichardiii,1592 cheerful,1,kingrichardiii,1592 disturbers,1,kingrichardiii,1592 assembled,1,kingrichardiii,1592 vexation,1,kingrichardiii,1592 waiting,1,kingrichardiii,1592 attendance,1,kingrichardiii,1592 always,1,kingrichardiii,1592 hearse,1,kingrichardiii,1592 bachelor,1,kingrichardiii,1592 blade,1,kingrichardiii,1592 gossips,1,kingrichardiii,1592 low,1,kingrichardiii,1592 sweat,1,kingrichardiii,1592 victress,1,kingrichardiii,1592 acts,1,kingrichardiii,1592 delightful,1,kingrichardiii,1592 drunk,1,kingrichardiii,1592 adorn,1,kingrichardiii,1592 babe,1,kingrichardiii,1592 sorrowing,1,kingrichardiii,1592 captain,1,kingrichardiii,1592 converse,1,kingrichardiii,1592 needful,1,kingrichardiii,1592 offspring,1,kingrichardiii,1592 currents,1,kingrichardiii,1592 heralds,1,kingrichardiii,1592 Seer,1,kingrichardiii,1592 Abides,1,kingrichardiii,1592 seek,1,kingrichardiii,1592 fights,1,kingrichardiii,1592 talking,1,kingrichardiii,1592 feeling,1,kingrichardiii,1592 cog,1,kingrichardiii,1592 confederates,1,kingrichardiii,1592 skill'd,1,kingrichardiii,1592 Truly,1,kingrichardiii,1592 harmful,1,kingrichardiii,1592 wed'st,1,kingrichardiii,1592 arrows,1,kingrichardiii,1592 camest,1,kingrichardiii,1592 others',1,kingrichardiii,1592 sees,1,kingrichardiii,1592 conclude,1,kingrichardiii,1592 steep'd,1,kingrichardiii,1592 vehement,1,kingrichardiii,1592 Mine,1,kingrichardiii,1592 shapes,1,kingrichardiii,1592 fellows,1,kingrichardiii,1592 planets,1,kingrichardiii,1592 prophecy,1,kingrichardiii,1592 kennel,1,kingrichardiii,1592 hound,1,kingrichardiii,1592 shaped,1,kingrichardiii,1592 'shall,1,kingrichardiii,1592 aspiring,1,kingrichardiii,1592 thereon,1,kingrichardiii,1592 hull,1,kingrichardiii,1592 suspects,1,kingrichardiii,1592 vassals,1,kingrichardiii,1592 fawns,1,kingrichardiii,1592 needless,1,kingrichardiii,1592 Pray,1,kingrichardiii,1592 English,1,kingrichardiii,1592 wearied,1,kingrichardiii,1592 expecting,1,kingrichardiii,1592 confirm'd,1,kingrichardiii,1592 basilisks,1,kingrichardiii,1592 changing,1,kingrichardiii,1592 sportive,1,kingrichardiii,1592 unfashionable,1,kingrichardiii,1592 heavenly,1,kingrichardiii,1592 impeachments,1,kingrichardiii,1592 affright,1,kingrichardiii,1592 Talkers,1,kingrichardiii,1592 loveth,1,kingrichardiii,1592 tree,1,kingrichardiii,1592 Wiltshire,1,kingrichardiii,1592 pour,1,kingrichardiii,1592 loyalty,1,kingrichardiii,1592 heels,1,kingrichardiii,1592 Northampton,1,kingrichardiii,1592 wretches,1,kingrichardiii,1592 trembles,1,kingrichardiii,1592 jolly,1,kingrichardiii,1592 countrymen,1,kingrichardiii,1592 bouted,1,kingrichardiii,1592 protector's,1,kingrichardiii,1592 Use,1,kingrichardiii,1592 remove,1,kingrichardiii,1592 Humphrey,1,kingrichardiii,1592 beheld,1,kingrichardiii,1592 blushing,1,kingrichardiii,1592 rancorous,1,kingrichardiii,1592 gods,1,kingrichardiii,1592 enrich'd,1,kingrichardiii,1592 believed,1,kingrichardiii,1592 indirectly,1,kingrichardiii,1592 floods,1,kingrichardiii,1592 penetrable,1,kingrichardiii,1592 Lately,1,kingrichardiii,1592 Forthwith,1,kingrichardiii,1592 Cuts,1,kingrichardiii,1592 butchered,1,kingrichardiii,1592 prison,1,kingrichardiii,1592 Rail,1,kingrichardiii,1592 unmoan'd,1,kingrichardiii,1592 GRAY,1,kingrichardiii,1592 folded,1,kingrichardiii,1592 Self,1,kingrichardiii,1592 Familiarly,1,kingrichardiii,1592 obsequiously,1,kingrichardiii,1592 Lieutenant,1,kingrichardiii,1592 bade,1,kingrichardiii,1592 swell,1,kingrichardiii,1592 herald,1,kingrichardiii,1592 seized,1,kingrichardiii,1592 sullen,1,kingrichardiii,1592 injured,1,kingrichardiii,1592 barren,1,kingrichardiii,1592 formal,1,kingrichardiii,1592 fearing,1,kingrichardiii,1592 Perjury,1,kingrichardiii,1592 'ifs',1,kingrichardiii,1592 highest,1,kingrichardiii,1592 renders,1,kingrichardiii,1592 afterward,1,kingrichardiii,1592 slumbers,1,kingrichardiii,1592 bolder,1,kingrichardiii,1592 spiders,1,kingrichardiii,1592 palpable,1,kingrichardiii,1592 started,1,kingrichardiii,1592 Fouler,1,kingrichardiii,1592 Rough,1,kingrichardiii,1592 'zounds,1,kingrichardiii,1592 Two,1,kingrichardiii,1592 Immaculate,1,kingrichardiii,1592 Woodville,1,kingrichardiii,1592 overmuch,1,kingrichardiii,1592 conqueror's,1,kingrichardiii,1592 storms,1,kingrichardiii,1592 slow,1,kingrichardiii,1592 lordship's,1,kingrichardiii,1592 meekness,1,kingrichardiii,1592 Nothing,1,kingrichardiii,1592 endured,1,kingrichardiii,1592 servants,1,kingrichardiii,1592 slumber,1,kingrichardiii,1592 suitor,1,kingrichardiii,1592 eat,1,kingrichardiii,1592 Limit,1,kingrichardiii,1592 lays,1,kingrichardiii,1592 lolling,1,kingrichardiii,1592 imagination,1,kingrichardiii,1592 honesty,1,kingrichardiii,1592 petty,1,kingrichardiii,1592 endow,1,kingrichardiii,1592 map,1,kingrichardiii,1592 spirits,1,kingrichardiii,1592 acquittance,1,kingrichardiii,1592 starts,1,kingrichardiii,1592 betroth'd,1,kingrichardiii,1592 ANOTHER,1,kingrichardiii,1592 gains,1,kingrichardiii,1592 debase,1,kingrichardiii,1592 heinous,1,kingrichardiii,1592 award,1,kingrichardiii,1592 disposing,1,kingrichardiii,1592 comfortable,1,kingrichardiii,1592 Five,1,kingrichardiii,1592 scum,1,kingrichardiii,1592 seldom,1,kingrichardiii,1592 chaplain,1,kingrichardiii,1592 smiling,1,kingrichardiii,1592 gulls,1,kingrichardiii,1592 unfelt,1,kingrichardiii,1592 burst,1,kingrichardiii,1592 Namely,1,kingrichardiii,1592 poets,1,kingrichardiii,1592 steeds,1,kingrichardiii,1592 unvalued,1,kingrichardiii,1592 Paris,1,kingrichardiii,1592 slug,1,kingrichardiii,1592 compounded,1,kingrichardiii,1592 trusted,1,kingrichardiii,1592 Holborn,1,kingrichardiii,1592 courageous,1,kingrichardiii,1592 defacer,1,kingrichardiii,1592 lurk'd,1,kingrichardiii,1592 reprehended,1,kingrichardiii,1592 unrespective,1,kingrichardiii,1592 lamenting,1,kingrichardiii,1592 readiness,1,kingrichardiii,1592 elbow,1,kingrichardiii,1592 meeting,1,kingrichardiii,1592 Clock,1,kingrichardiii,1592 buzzards,1,kingrichardiii,1592 nuns,1,kingrichardiii,1592 beholders,1,kingrichardiii,1592 scornfully,1,kingrichardiii,1592 burns,1,kingrichardiii,1592 repay,1,kingrichardiii,1592 whit,1,kingrichardiii,1592 comforter,1,kingrichardiii,1592 conjures,1,kingrichardiii,1592 whip,1,kingrichardiii,1592 Abase,1,kingrichardiii,1592 ladies,1,kingrichardiii,1592 body's,1,kingrichardiii,1592 Men,1,kingrichardiii,1592 powerful,1,kingrichardiii,1592 gems,1,kingrichardiii,1592 biting,1,kingrichardiii,1592 thinking,1,kingrichardiii,1592 Away,1,kingrichardiii,1592 Neighbours,1,kingrichardiii,1592 Gazed,1,kingrichardiii,1592 bethink,1,kingrichardiii,1592 Abate,1,kingrichardiii,1592 solus,1,kingrichardiii,1592 punishment,1,kingrichardiii,1592 numb,1,kingrichardiii,1592 taunted,1,kingrichardiii,1592 strokes,1,kingrichardiii,1592 forgetfulness,1,kingrichardiii,1592 Woe's,1,kingrichardiii,1592 appearing,1,kingrichardiii,1592 lark,1,kingrichardiii,1592 amorous,1,kingrichardiii,1592 Sleep,1,kingrichardiii,1592 Pilate,1,kingrichardiii,1592 whiles,1,kingrichardiii,1592 thereupon,1,kingrichardiii,1592 hedgehog,1,kingrichardiii,1592 sometimes,1,kingrichardiii,1592 wearisome,1,kingrichardiii,1592 untainted,1,kingrichardiii,1592 vizard,1,kingrichardiii,1592 GENTLEMEN,1,kingrichardiii,1592 nativity,1,kingrichardiii,1592 politic,1,kingrichardiii,1592 gulf,1,kingrichardiii,1592 suckers,1,kingrichardiii,1592 fleeting,1,kingrichardiii,1592 plucks,1,kingrichardiii,1592 positively,1,kingrichardiii,1592 preposterous,1,kingrichardiii,1592 liquid,1,kingrichardiii,1592 flag,1,kingrichardiii,1592 demise,1,kingrichardiii,1592 betimes,1,kingrichardiii,1592 upbraidings,1,kingrichardiii,1592 importing,1,kingrichardiii,1592 urging,1,kingrichardiii,1592 whet,1,kingrichardiii,1592 harms,1,kingrichardiii,1592 puissance,1,kingrichardiii,1592 Somewhat,1,kingrichardiii,1592 levied,1,kingrichardiii,1592 instalment,1,kingrichardiii,1592 skulls,1,kingrichardiii,1592 lovelier,1,kingrichardiii,1592 appetite,1,kingrichardiii,1592 Tellest,1,kingrichardiii,1592 ragged,1,kingrichardiii,1592 reprehend,1,kingrichardiii,1592 Lend,1,kingrichardiii,1592 Christ's,1,kingrichardiii,1592 cordial,1,kingrichardiii,1592 unpleasing,1,kingrichardiii,1592 demand'st,1,kingrichardiii,1592 exhale,1,kingrichardiii,1592 ripen'd,1,kingrichardiii,1592 compell'd,1,kingrichardiii,1592 try,1,kingrichardiii,1592 shrewd,1,kingrichardiii,1592 assurance,1,kingrichardiii,1592 foreward,1,kingrichardiii,1592 sentinels,1,kingrichardiii,1592 witty,1,kingrichardiii,1592 sentence,1,kingrichardiii,1592 'This,1,kingrichardiii,1592 date,1,kingrichardiii,1592 mouths,1,kingrichardiii,1592 spring,1,kingrichardiii,1592 Shamed,1,kingrichardiii,1592 hired,1,kingrichardiii,1592 cover'd,1,kingrichardiii,1592 reply,1,kingrichardiii,1592 denying,1,kingrichardiii,1592 PLANTAGENET,1,kingrichardiii,1592 corrupting,1,kingrichardiii,1592 yesternight,1,kingrichardiii,1592 dash,1,kingrichardiii,1592 pattern,1,kingrichardiii,1592 Tim,1,kingrichardiii,1592 confirm,1,kingrichardiii,1592 respect,1,kingrichardiii,1592 asleep,1,kingrichardiii,1592 recure,1,kingrichardiii,1592 pell,1,kingrichardiii,1592 centre,1,kingrichardiii,1592 destined,1,kingrichardiii,1592 harsh,1,kingrichardiii,1592 brat,1,kingrichardiii,1592 swallow,1,kingrichardiii,1592 honour's,1,kingrichardiii,1592 Steep'd,1,kingrichardiii,1592 novice,1,kingrichardiii,1592 boisterous,1,kingrichardiii,1592 wooer's,1,kingrichardiii,1592 tottering,1,kingrichardiii,1592 solace,1,kingrichardiii,1592 toe,1,kingrichardiii,1592 Rice,1,kingrichardiii,1592 weight,1,kingrichardiii,1592 unmindful,1,kingrichardiii,1592 prelate,1,kingrichardiii,1592 rocky,1,kingrichardiii,1592 lawless,1,kingrichardiii,1592 lord's,1,kingrichardiii,1592 thriving,1,kingrichardiii,1592 adversary's,1,kingrichardiii,1592 hoping,1,kingrichardiii,1592 toy,1,kingrichardiii,1592 another's,1,kingrichardiii,1592 bred,1,kingrichardiii,1592 proclamation,1,kingrichardiii,1592 mum,1,kingrichardiii,1592 DRAMATIS,1,kingrichardiii,1592 certain,1,kingrichardiii,1592 harts,1,kingrichardiii,1592 flout,1,kingrichardiii,1592 armed,1,kingrichardiii,1592 Christendom,1,kingrichardiii,1592 rewards,1,kingrichardiii,1592 Flock,1,kingrichardiii,1592 gnaw,1,kingrichardiii,1592 he'll,1,kingrichardiii,1592 trees,1,kingrichardiii,1592 frail,1,kingrichardiii,1592 ascend,1,kingrichardiii,1592 cabin,1,kingrichardiii,1592 pirates,1,kingrichardiii,1592 dew,1,kingrichardiii,1592 pill'd,1,kingrichardiii,1592 impotent,1,kingrichardiii,1592 inheritor,1,kingrichardiii,1592 private,1,kingrichardiii,1592 Uncertain,1,kingrichardiii,1592 arbitrement,1,kingrichardiii,1592 figured,1,kingrichardiii,1592 reconcile,1,kingrichardiii,1592 immured,1,kingrichardiii,1592 repaid,1,kingrichardiii,1592 slip,1,kingrichardiii,1592 stragglers,1,kingrichardiii,1592 princess,1,kingrichardiii,1592 mutual,1,kingrichardiii,1592 soundly,1,kingrichardiii,1592 hellish,1,kingrichardiii,1592 toads,1,kingrichardiii,1592 mid,1,kingrichardiii,1592 underhand,1,kingrichardiii,1592 Kent,1,kingrichardiii,1592 gear,1,kingrichardiii,1592 Fight,1,kingrichardiii,1592 doting,1,kingrichardiii,1592 neighbour,1,kingrichardiii,1592 Humbly,1,kingrichardiii,1592 shoes,1,kingrichardiii,1592 Ensues,1,kingrichardiii,1592 lace,1,kingrichardiii,1592 marked,1,kingrichardiii,1592 wanteth,1,kingrichardiii,1592 Find,1,kingrichardiii,1592 obedience,1,kingrichardiii,1592 flattering,1,kingrichardiii,1592 shape,1,kingrichardiii,1592 tread,1,kingrichardiii,1592 Bound,1,kingrichardiii,1592 Kept,1,kingrichardiii,1592 bewitch'd,1,kingrichardiii,1592 Rutland's,1,kingrichardiii,1592 market,1,kingrichardiii,1592 overta'en,1,kingrichardiii,1592 dallies,1,kingrichardiii,1592 Brief,1,kingrichardiii,1592 unsatiate,1,kingrichardiii,1592 dallied,1,kingrichardiii,1592 share,1,kingrichardiii,1592 dissemble,1,kingrichardiii,1592 turn'd,1,kingrichardiii,1592 usurped,1,kingrichardiii,1592 ships,1,kingrichardiii,1592 Fill,1,kingrichardiii,1592 cedar's,1,kingrichardiii,1592 Bless'd,1,kingrichardiii,1592 exempt,1,kingrichardiii,1592 vanish'd,1,kingrichardiii,1592 sapling,1,kingrichardiii,1592 majestical,1,kingrichardiii,1592 grounded,1,kingrichardiii,1592 shock,1,kingrichardiii,1592 ending,1,kingrichardiii,1592 servant's,1,kingrichardiii,1592 ungrateful,1,kingrichardiii,1592 beaver,1,kingrichardiii,1592 lads,1,kingrichardiii,1592 JOHN,1,kingrichardiii,1592 Confound,1,kingrichardiii,1592 insinuate,1,kingrichardiii,1592 James,2,kingrichardiii,1592 somebody,2,kingrichardiii,1592 forbid,2,kingrichardiii,1592 staves,2,kingrichardiii,1592 suffer,2,kingrichardiii,1592 infant,2,kingrichardiii,1592 took,2,kingrichardiii,1592 interchange,2,kingrichardiii,1592 malmsey,2,kingrichardiii,1592 guilt,2,kingrichardiii,1592 unrest,2,kingrichardiii,1592 direful,2,kingrichardiii,1592 double,2,kingrichardiii,1592 infamy,2,kingrichardiii,1592 country,2,kingrichardiii,1592 mistress,2,kingrichardiii,1592 massacre,2,kingrichardiii,1592 prophet,2,kingrichardiii,1592 wish'd,2,kingrichardiii,1592 complaints,2,kingrichardiii,1592 following,2,kingrichardiii,1592 Breton,2,kingrichardiii,1592 Fie,2,kingrichardiii,1592 shadows,2,kingrichardiii,1592 wicked,2,kingrichardiii,1592 honours,2,kingrichardiii,1592 hasty,2,kingrichardiii,1592 dagger,2,kingrichardiii,1592 bones,2,kingrichardiii,1592 resign,2,kingrichardiii,1592 suppose,2,kingrichardiii,1592 western,2,kingrichardiii,1592 stopp'd,2,kingrichardiii,1592 day's,2,kingrichardiii,1592 worshipful,2,kingrichardiii,1592 boys,2,kingrichardiii,1592 Tamworth,2,kingrichardiii,1592 sleeps,2,kingrichardiii,1592 moiety,2,kingrichardiii,1592 truly,2,kingrichardiii,1592 suppliant,2,kingrichardiii,1592 painted,2,kingrichardiii,1592 Marquis,2,kingrichardiii,1592 proceedings,2,kingrichardiii,1592 vain,2,kingrichardiii,1592 Paul's,2,kingrichardiii,1592 comest,2,kingrichardiii,1592 Lucy,2,kingrichardiii,1592 rid,2,kingrichardiii,1592 Wife,2,kingrichardiii,1592 lamentations,2,kingrichardiii,1592 although,2,kingrichardiii,1592 weighty,2,kingrichardiii,1592 drink,2,kingrichardiii,1592 nought,2,kingrichardiii,1592 under,2,kingrichardiii,1592 taunts,2,kingrichardiii,1592 lies,2,kingrichardiii,1592 rue,2,kingrichardiii,1592 strumpet,2,kingrichardiii,1592 run,2,kingrichardiii,1592 pleasures,2,kingrichardiii,1592 contrary,2,kingrichardiii,1592 orphans,2,kingrichardiii,1592 butcheries,2,kingrichardiii,1592 Shore's,2,kingrichardiii,1592 demand,2,kingrichardiii,1592 spare,2,kingrichardiii,1592 aery,2,kingrichardiii,1592 indirect,2,kingrichardiii,1592 downfall,2,kingrichardiii,1592 plague,2,kingrichardiii,1592 graces,2,kingrichardiii,1592 graced,2,kingrichardiii,1592 land's,2,kingrichardiii,1592 After,2,kingrichardiii,1592 stock,2,kingrichardiii,1592 slept,2,kingrichardiii,1592 Bloody,2,kingrichardiii,1592 unjustly,2,kingrichardiii,1592 sap,2,kingrichardiii,1592 grown,2,kingrichardiii,1592 entrails,2,kingrichardiii,1592 sorrows,2,kingrichardiii,1592 circumstance,2,kingrichardiii,1592 Cold,2,kingrichardiii,1592 lamentation,2,kingrichardiii,1592 incensed,2,kingrichardiii,1592 Rescue,2,kingrichardiii,1592 injury,2,kingrichardiii,1592 factious,2,kingrichardiii,1592 obdurate,2,kingrichardiii,1592 Much,2,kingrichardiii,1592 heap,2,kingrichardiii,1592 Woe,2,kingrichardiii,1592 sure,2,kingrichardiii,1592 Only,2,kingrichardiii,1592 town,2,kingrichardiii,1592 gross,2,kingrichardiii,1592 breaks,2,kingrichardiii,1592 soft,2,kingrichardiii,1592 blessed,2,kingrichardiii,1592 visit,2,kingrichardiii,1592 wait,2,kingrichardiii,1592 something,2,kingrichardiii,1592 view,2,kingrichardiii,1592 hereafter,2,kingrichardiii,1592 Off,2,kingrichardiii,1592 whatsoever,2,kingrichardiii,1592 URSWICK,2,kingrichardiii,1592 prevail'd,2,kingrichardiii,1592 bound,2,kingrichardiii,1592 tooth,2,kingrichardiii,1592 merry,2,kingrichardiii,1592 vice,2,kingrichardiii,1592 wake,2,kingrichardiii,1592 spy,2,kingrichardiii,1592 nine,2,kingrichardiii,1592 forsake,2,kingrichardiii,1592 love's,2,kingrichardiii,1592 council,2,kingrichardiii,1592 deliver,2,kingrichardiii,1592 worth,2,kingrichardiii,1592 murdered,2,kingrichardiii,1592 sop,2,kingrichardiii,1592 children's,2,kingrichardiii,1592 delivery,2,kingrichardiii,1592 sworn,2,kingrichardiii,1592 raised,2,kingrichardiii,1592 deformity,2,kingrichardiii,1592 stern,2,kingrichardiii,1592 second,2,kingrichardiii,1592 disgrace,2,kingrichardiii,1592 deserts,2,kingrichardiii,1592 sky,2,kingrichardiii,1592 Redeemer,2,kingrichardiii,1592 scope,2,kingrichardiii,1592 adverse,2,kingrichardiii,1592 daughter's,2,kingrichardiii,1592 standers,2,kingrichardiii,1592 vile,2,kingrichardiii,1592 reap,2,kingrichardiii,1592 unavoided,2,kingrichardiii,1592 snow,2,kingrichardiii,1592 piece,2,kingrichardiii,1592 Tush,2,kingrichardiii,1592 BERKELEY,2,kingrichardiii,1592 Whereof,2,kingrichardiii,1592 toucheth,2,kingrichardiii,1592 falls,2,kingrichardiii,1592 quake,2,kingrichardiii,1592 loathed,2,kingrichardiii,1592 envious,2,kingrichardiii,1592 terms,2,kingrichardiii,1592 commit,2,kingrichardiii,1592 cherish,2,kingrichardiii,1592 expedition,2,kingrichardiii,1592 fruit,2,kingrichardiii,1592 white,2,kingrichardiii,1592 worthy,2,kingrichardiii,1592 Wherein,2,kingrichardiii,1592 pearl,2,kingrichardiii,1592 shining,2,kingrichardiii,1592 sup,2,kingrichardiii,1592 bowl,2,kingrichardiii,1592 feel,2,kingrichardiii,1592 ominous,2,kingrichardiii,1592 malice,2,kingrichardiii,1592 Betwixt,2,kingrichardiii,1592 choose,2,kingrichardiii,1592 wind,2,kingrichardiii,1592 soldier,2,kingrichardiii,1592 ungovern'd,2,kingrichardiii,1592 shrink,2,kingrichardiii,1592 nails,2,kingrichardiii,1592 soever,2,kingrichardiii,1592 monarchy,2,kingrichardiii,1592 usurp,2,kingrichardiii,1592 seems,2,kingrichardiii,1592 executioner,2,kingrichardiii,1592 knees,2,kingrichardiii,1592 Hover,2,kingrichardiii,1592 hates,2,kingrichardiii,1592 ruin,2,kingrichardiii,1592 complots,2,kingrichardiii,1592 go'st,2,kingrichardiii,1592 accuse,2,kingrichardiii,1592 pierce,2,kingrichardiii,1592 incense,2,kingrichardiii,1592 advancement,2,kingrichardiii,1592 distress,2,kingrichardiii,1592 office,2,kingrichardiii,1592 boot,2,kingrichardiii,1592 crazed,2,kingrichardiii,1592 ruled,2,kingrichardiii,1592 boon,2,kingrichardiii,1592 alliance,2,kingrichardiii,1592 framed,2,kingrichardiii,1592 colour,2,kingrichardiii,1592 wayward,2,kingrichardiii,1592 intelligence,2,kingrichardiii,1592 aspect,2,kingrichardiii,1592 he's,2,kingrichardiii,1592 unquiet,2,kingrichardiii,1592 bastards,2,kingrichardiii,1592 manners,2,kingrichardiii,1592 enjoy'd,2,kingrichardiii,1592 hap,2,kingrichardiii,1592 abortive,2,kingrichardiii,1592 foes,2,kingrichardiii,1592 sigh,2,kingrichardiii,1592 exercise,2,kingrichardiii,1592 oratory,2,kingrichardiii,1592 perfection,2,kingrichardiii,1592 morrow's,2,kingrichardiii,1592 orators,2,kingrichardiii,1592 loath,2,kingrichardiii,1592 eternal,2,kingrichardiii,1592 wash'd,2,kingrichardiii,1592 smile,2,kingrichardiii,1592 Herbert,2,kingrichardiii,1592 lands,2,kingrichardiii,1592 proof,2,kingrichardiii,1592 belike,2,kingrichardiii,1592 fouler,2,kingrichardiii,1592 closely,2,kingrichardiii,1592 finds,2,kingrichardiii,1592 wisdom,2,kingrichardiii,1592 prophecies,2,kingrichardiii,1592 tear,2,kingrichardiii,1592 flowers,2,kingrichardiii,1592 fatal,2,kingrichardiii,1592 meant,2,kingrichardiii,1592 dinner,2,kingrichardiii,1592 path,2,kingrichardiii,1592 east,2,kingrichardiii,1592 Let's,2,kingrichardiii,1592 enrich,2,kingrichardiii,1592 troops,2,kingrichardiii,1592 navy,2,kingrichardiii,1592 temples,2,kingrichardiii,1592 nobility,2,kingrichardiii,1592 Julius,2,kingrichardiii,1592 obey,2,kingrichardiii,1592 kiss'd,2,kingrichardiii,1592 plants,2,kingrichardiii,1592 haunt,2,kingrichardiii,1592 royalty,2,kingrichardiii,1592 sits,2,kingrichardiii,1592 bend,2,kingrichardiii,1592 busy,2,kingrichardiii,1592 metal,2,kingrichardiii,1592 imagine,2,kingrichardiii,1592 salute,2,kingrichardiii,1592 unfit,2,kingrichardiii,1592 got,2,kingrichardiii,1592 corpse,2,kingrichardiii,1592 sacrament,2,kingrichardiii,1592 somewhat,2,kingrichardiii,1592 imperial,2,kingrichardiii,1592 Speak,2,kingrichardiii,1592 Put,2,kingrichardiii,1592 obstacles,2,kingrichardiii,1592 bottled,2,kingrichardiii,1592 block,2,kingrichardiii,1592 Didst,2,kingrichardiii,1592 extreme,2,kingrichardiii,1592 dissembling,2,kingrichardiii,1592 conquest,2,kingrichardiii,1592 beget,2,kingrichardiii,1592 buy,2,kingrichardiii,1592 herein,2,kingrichardiii,1592 Ye,2,kingrichardiii,1592 used,2,kingrichardiii,1592 Urge,2,kingrichardiii,1592 longer,2,kingrichardiii,1592 About,2,kingrichardiii,1592 divine,2,kingrichardiii,1592 Whither,2,kingrichardiii,1592 crowned,2,kingrichardiii,1592 disgracious,2,kingrichardiii,1592 dogs,2,kingrichardiii,1592 store,2,kingrichardiii,1592 impatience,2,kingrichardiii,1592 childish,2,kingrichardiii,1592 government,2,kingrichardiii,1592 promised,2,kingrichardiii,1592 ha,2,kingrichardiii,1592 confess,2,kingrichardiii,1592 aim,2,kingrichardiii,1592 Soldiers,2,kingrichardiii,1592 Devised,2,kingrichardiii,1592 excellent,2,kingrichardiii,1592 lineal,2,kingrichardiii,1592 violence,2,kingrichardiii,1592 praying,2,kingrichardiii,1592 tongues,2,kingrichardiii,1592 dwell,2,kingrichardiii,1592 moveables,2,kingrichardiii,1592 lent,2,kingrichardiii,1592 Last,2,kingrichardiii,1592 Return,2,kingrichardiii,1592 accused,2,kingrichardiii,1592 Rest,2,kingrichardiii,1592 ay,2,kingrichardiii,1592 privilege,2,kingrichardiii,1592 manner,2,kingrichardiii,1592 forget,2,kingrichardiii,1592 supreme,2,kingrichardiii,1592 bless'd,2,kingrichardiii,1592 prosper,2,kingrichardiii,1592 cowardly,2,kingrichardiii,1592 commend,2,kingrichardiii,1592 attending,2,kingrichardiii,1592 fears,2,kingrichardiii,1592 bodies,2,kingrichardiii,1592 small,2,kingrichardiii,1592 plant,2,kingrichardiii,1592 aside,2,kingrichardiii,1592 wrinkled,2,kingrichardiii,1592 Told,2,kingrichardiii,1592 Live,2,kingrichardiii,1592 straitly,2,kingrichardiii,1592 Ready,2,kingrichardiii,1592 morn,2,kingrichardiii,1592 causer,2,kingrichardiii,1592 parents,2,kingrichardiii,1592 Yes,2,kingrichardiii,1592 agony,2,kingrichardiii,1592 Sennet,2,kingrichardiii,1592 greater,2,kingrichardiii,1592 boding,2,kingrichardiii,1592 It's,2,kingrichardiii,1592 knew,2,kingrichardiii,1592 ready,2,kingrichardiii,1592 show'd,2,kingrichardiii,1592 knee,2,kingrichardiii,1592 jocund,2,kingrichardiii,1592 pure,2,kingrichardiii,1592 graves,2,kingrichardiii,1592 valour,2,kingrichardiii,1592 tempted,2,kingrichardiii,1592 discourse,2,kingrichardiii,1592 speaks,2,kingrichardiii,1592 buildeth,2,kingrichardiii,1592 lewd,2,kingrichardiii,1592 Bishop,2,kingrichardiii,1592 frown'd,2,kingrichardiii,1592 messenger,2,kingrichardiii,1592 nearer,2,kingrichardiii,1592 reduce,2,kingrichardiii,1592 Happy,2,kingrichardiii,1592 reach,2,kingrichardiii,1592 drawn,2,kingrichardiii,1592 provided,2,kingrichardiii,1592 halt,2,kingrichardiii,1592 excuse,2,kingrichardiii,1592 unlawful,2,kingrichardiii,1592 pluck,2,kingrichardiii,1592 Under,2,kingrichardiii,1592 deaths,2,kingrichardiii,1592 Smile,2,kingrichardiii,1592 Untimely,2,kingrichardiii,1592 ask,2,kingrichardiii,1592 delight,2,kingrichardiii,1592 outrage,2,kingrichardiii,1592 mock,2,kingrichardiii,1592 Prepare,2,kingrichardiii,1592 frown,2,kingrichardiii,1592 increaseth,2,kingrichardiii,1592 Dispatch,2,kingrichardiii,1592 point,2,kingrichardiii,1592 strive,2,kingrichardiii,1592 pack,2,kingrichardiii,1592 worldly,2,kingrichardiii,1592 dismal,2,kingrichardiii,1592 yielded,2,kingrichardiii,1592 proper,2,kingrichardiii,1592 faithful,2,kingrichardiii,1592 fall'n,2,kingrichardiii,1592 pursuivant,2,kingrichardiii,1592 saints,2,kingrichardiii,1592 Alarum,2,kingrichardiii,1592 Exeter,2,kingrichardiii,1592 White,2,kingrichardiii,1592 Arm,2,kingrichardiii,1592 beggars,2,kingrichardiii,1592 Kind,2,kingrichardiii,1592 Harp,2,kingrichardiii,1592 sequel,2,kingrichardiii,1592 ministers,2,kingrichardiii,1592 hurl'd,2,kingrichardiii,1592 tragic,2,kingrichardiii,1592 having,2,kingrichardiii,1592 spoken,2,kingrichardiii,1592 witch,2,kingrichardiii,1592 births,2,kingrichardiii,1592 rood,2,kingrichardiii,1592 occasion,2,kingrichardiii,1592 through,2,kingrichardiii,1592 garments,2,kingrichardiii,1592 keeps,2,kingrichardiii,1592 destiny,2,kingrichardiii,1592 main,2,kingrichardiii,1592 DUKE,2,kingrichardiii,1592 castle,2,kingrichardiii,1592 'Thus,2,kingrichardiii,1592 Against,2,kingrichardiii,1592 Ten,2,kingrichardiii,1592 Leicester,2,kingrichardiii,1592 reported,2,kingrichardiii,1592 shouldst,2,kingrichardiii,1592 breathed,2,kingrichardiii,1592 silence,2,kingrichardiii,1592 build,2,kingrichardiii,1592 Archbishop,2,kingrichardiii,1592 triumphant,2,kingrichardiii,1592 pawn'd,2,kingrichardiii,1592 unknown,2,kingrichardiii,1592 thinks,2,kingrichardiii,1592 HENRY,2,kingrichardiii,1592 beast,2,kingrichardiii,1592 TRESSEL,2,kingrichardiii,1592 wakes,2,kingrichardiii,1592 waked,2,kingrichardiii,1592 Peace,2,kingrichardiii,1592 below,2,kingrichardiii,1592 daily,2,kingrichardiii,1592 disgraced,2,kingrichardiii,1592 queens,2,kingrichardiii,1592 bears,2,kingrichardiii,1592 pleaseth,2,kingrichardiii,1592 blunt,2,kingrichardiii,1592 ours,2,kingrichardiii,1592 Alack,2,kingrichardiii,1592 bottom,2,kingrichardiii,1592 Wear,2,kingrichardiii,1592 mock'd,2,kingrichardiii,1592 oration,2,kingrichardiii,1592 chase,2,kingrichardiii,1592 borne,2,kingrichardiii,1592 Bretons,2,kingrichardiii,1592 begging,2,kingrichardiii,1592 Set,2,kingrichardiii,1592 unhappy,2,kingrichardiii,1592 ordinance,2,kingrichardiii,1592 mouth,2,kingrichardiii,1592 awhile,2,kingrichardiii,1592 famous,2,kingrichardiii,1592 Thyself,2,kingrichardiii,1592 edgeless,2,kingrichardiii,1592 mourn,2,kingrichardiii,1592 See,2,kingrichardiii,1592 parlous,2,kingrichardiii,1592 paced,2,kingrichardiii,1592 reigns,2,kingrichardiii,1592 o'erpast,2,kingrichardiii,1592 leaves,2,kingrichardiii,1592 mile,2,kingrichardiii,1592 Relent,2,kingrichardiii,1592 Widow,2,kingrichardiii,1592 start,2,kingrichardiii,1592 stars,2,kingrichardiii,1592 succeeders,2,kingrichardiii,1592 tempest,2,kingrichardiii,1592 bosoms,2,kingrichardiii,1592 keeper,2,kingrichardiii,1592 process,2,kingrichardiii,1592 chair,2,kingrichardiii,1592 Uncle,2,kingrichardiii,1592 Could,2,kingrichardiii,1592 ghastly,2,kingrichardiii,1592 tents,2,kingrichardiii,1592 acquit,2,kingrichardiii,1592 mark,2,kingrichardiii,1592 devils,2,kingrichardiii,1592 vein,2,kingrichardiii,1592 let's,2,kingrichardiii,1592 Infer,2,kingrichardiii,1592 woo,2,kingrichardiii,1592 greatest,2,kingrichardiii,1592 labour,2,kingrichardiii,1592 tides,2,kingrichardiii,1592 free,2,kingrichardiii,1592 number,2,kingrichardiii,1592 apart,2,kingrichardiii,1592 marvel,2,kingrichardiii,1592 letters,2,kingrichardiii,1592 trouble,2,kingrichardiii,1592 fills,2,kingrichardiii,1592 desires,2,kingrichardiii,1592 wet,2,kingrichardiii,1592 firm,2,kingrichardiii,1592 lieutenant,2,kingrichardiii,1592 lengthen'd,2,kingrichardiii,1592 trembling,2,kingrichardiii,1592 suspicion,2,kingrichardiii,1592 despairing,2,kingrichardiii,1592 odd,2,kingrichardiii,1592 flies,2,kingrichardiii,1592 inferr'd,2,kingrichardiii,1592 neck,2,kingrichardiii,1592 banishment,2,kingrichardiii,1592 entreaties,2,kingrichardiii,1592 cure,2,kingrichardiii,1592 knife,2,kingrichardiii,1592 ring,2,kingrichardiii,1592 Blush,2,kingrichardiii,1592 troublous,2,kingrichardiii,1592 buckle,2,kingrichardiii,1592 usurping,2,kingrichardiii,1592 upright,2,kingrichardiii,1592 haughty,2,kingrichardiii,1592 THOMAS,2,kingrichardiii,1592 prophesied,2,kingrichardiii,1592 Throng,2,kingrichardiii,1592 protect,2,kingrichardiii,1592 quicken,2,kingrichardiii,1592 back'd,2,kingrichardiii,1592 ripe,2,kingrichardiii,1592 Alarums,2,kingrichardiii,1592 Thine,2,kingrichardiii,1592 humility,2,kingrichardiii,1592 likes,2,kingrichardiii,1592 Mercury,2,kingrichardiii,1592 prevail,2,kingrichardiii,1592 receive,2,kingrichardiii,1592 garland,2,kingrichardiii,1592 ends,2,kingrichardiii,1592 split,2,kingrichardiii,1592 exclaims,2,kingrichardiii,1592 possess,2,kingrichardiii,1592 notice,2,kingrichardiii,1592 Gives,2,kingrichardiii,1592 factor,2,kingrichardiii,1592 divines,2,kingrichardiii,1592 dreamt,2,kingrichardiii,1592 taken,2,kingrichardiii,1592 index,2,kingrichardiii,1592 rotten,2,kingrichardiii,1592 charged,2,kingrichardiii,1592 spleen,2,kingrichardiii,1592 foreign,2,kingrichardiii,1592 killing,2,kingrichardiii,1592 devoted,2,kingrichardiii,1592 dumb,2,kingrichardiii,1592 descant,2,kingrichardiii,1592 lineaments,2,kingrichardiii,1592 consent,2,kingrichardiii,1592 nest,2,kingrichardiii,1592 unity,2,kingrichardiii,1592 Forbear,2,kingrichardiii,1592 falling,2,kingrichardiii,1592 frank'd,2,kingrichardiii,1592 followers,2,kingrichardiii,1592 madest,2,kingrichardiii,1592 minister,2,kingrichardiii,1592 dispersed,2,kingrichardiii,1592 lustful,2,kingrichardiii,1592 evil,2,kingrichardiii,1592 Swear,2,kingrichardiii,1592 minds,2,kingrichardiii,1592 desert,2,kingrichardiii,1592 cares,2,kingrichardiii,1592 scorns,2,kingrichardiii,1592 colours,2,kingrichardiii,1592 heavily,2,kingrichardiii,1592 west,2,kingrichardiii,1592 Sweet,2,kingrichardiii,1592 prophetess,2,kingrichardiii,1592 fill,2,kingrichardiii,1592 Guildhall,2,kingrichardiii,1592 savage,2,kingrichardiii,1592 married,2,kingrichardiii,1592 worship,2,kingrichardiii,1592 divers,2,kingrichardiii,1592 depart,2,kingrichardiii,1592 perceive,2,kingrichardiii,1592 partly,2,kingrichardiii,1592 Hereford,2,kingrichardiii,1592 standards,2,kingrichardiii,1592 base,2,kingrichardiii,1592 cock,2,kingrichardiii,1592 friendship,2,kingrichardiii,1592 names,2,kingrichardiii,1592 evidence,2,kingrichardiii,1592 soul's,2,kingrichardiii,1592 lap,2,kingrichardiii,1592 witchcraft,2,kingrichardiii,1592 brotherhood,2,kingrichardiii,1592 wild,2,kingrichardiii,1592 reproof,2,kingrichardiii,1592 holds,2,kingrichardiii,1592 short,2,kingrichardiii,1592 green,2,kingrichardiii,1592 hollow,2,kingrichardiii,1592 follows,2,kingrichardiii,1592 honest,2,kingrichardiii,1592 loyal,2,kingrichardiii,1592 revolt,2,kingrichardiii,1592 Fool,2,kingrichardiii,1592 winter,2,kingrichardiii,1592 flood,2,kingrichardiii,1592 waning,2,kingrichardiii,1592 Wherefore,2,kingrichardiii,1592 fitter,2,kingrichardiii,1592 Stabb'd,2,kingrichardiii,1592 satisfied,2,kingrichardiii,1592 complaining,2,kingrichardiii,1592 hung,2,kingrichardiii,1592 interest,2,kingrichardiii,1592 hunt,2,kingrichardiii,1592 ignoble,2,kingrichardiii,1592 inward,2,kingrichardiii,1592 conquerors,2,kingrichardiii,1592 Right,2,kingrichardiii,1592 pronounced,2,kingrichardiii,1592 we'll,2,kingrichardiii,1592 fitting,2,kingrichardiii,1592 troth,2,kingrichardiii,1592 Gentleman,2,kingrichardiii,1592 Jesu,2,kingrichardiii,1592 supposed,2,kingrichardiii,1592 marvellous,2,kingrichardiii,1592 Richmond's,2,kingrichardiii,1592 courtesy,2,kingrichardiii,1592 period,2,kingrichardiii,1592 cost,2,kingrichardiii,1592 troop,2,kingrichardiii,1592 exploit,2,kingrichardiii,1592 Gentlemen,2,kingrichardiii,1592 striketh,2,kingrichardiii,1592 'twill,2,kingrichardiii,1592 avoid,2,kingrichardiii,1592 nights,2,kingrichardiii,1592 tied,2,kingrichardiii,1592 George's,2,kingrichardiii,1592 fairly,2,kingrichardiii,1592 Cry,2,kingrichardiii,1592 tide,2,kingrichardiii,1592 aloud,2,kingrichardiii,1592 whilst,2,kingrichardiii,1592 grieves,2,kingrichardiii,1592 talk'd,2,kingrichardiii,1592 deceive,2,kingrichardiii,1592 goes,2,kingrichardiii,1592 wrangling,2,kingrichardiii,1592 season,2,kingrichardiii,1592 sickness,2,kingrichardiii,1592 sorrow's,2,kingrichardiii,1592 match,2,kingrichardiii,1592 garter,2,kingrichardiii,1592 Virtuous,2,kingrichardiii,1592 March,2,kingrichardiii,1592 methought,2,kingrichardiii,1592 Mistress,2,kingrichardiii,1592 ceremonious,2,kingrichardiii,1592 lip,2,kingrichardiii,1592 instead,2,kingrichardiii,1592 threat,2,kingrichardiii,1592 triumph,2,kingrichardiii,1592 brow,2,kingrichardiii,1592 spider,2,kingrichardiii,1592 dealings,2,kingrichardiii,1592 frantic,2,kingrichardiii,1592 rancour,2,kingrichardiii,1592 ear,2,kingrichardiii,1592 seated,2,kingrichardiii,1592 strawberries,2,kingrichardiii,1592 write,2,kingrichardiii,1592 cloudy,2,kingrichardiii,1592 confound,2,kingrichardiii,1592 fiends,2,kingrichardiii,1592 limbs,2,kingrichardiii,1592 sounded,2,kingrichardiii,1592 perjury,2,kingrichardiii,1592 distressed,2,kingrichardiii,1592 least,2,kingrichardiii,1592 Towards,2,kingrichardiii,1592 consequence,2,kingrichardiii,1592 rashly,2,kingrichardiii,1592 forces,2,kingrichardiii,1592 wring,2,kingrichardiii,1592 defaced,2,kingrichardiii,1592 Bosworth,2,kingrichardiii,1592 hardy,2,kingrichardiii,1592 censures,2,kingrichardiii,1592 murder'd,2,kingrichardiii,1592 evils,2,kingrichardiii,1592 rights,2,kingrichardiii,1592 determine,2,kingrichardiii,1592 limit,2,kingrichardiii,1592 heartily,2,kingrichardiii,1592 Great,2,kingrichardiii,1592 attorney,2,kingrichardiii,1592 wound,2,kingrichardiii,1592 withdraw,2,kingrichardiii,1592 marriage,2,kingrichardiii,1592 Indeed,2,kingrichardiii,1592 telling,2,kingrichardiii,1592 respects,2,kingrichardiii,1592 tut,2,kingrichardiii,1592 spilt,2,kingrichardiii,1592 tenderness,2,kingrichardiii,1592 VII,2,kingrichardiii,1592 dishonour'd,2,kingrichardiii,1592 JAMES,2,kingrichardiii,1592 fright,2,kingrichardiii,1592 Without,2,kingrichardiii,1592 impart,2,kingrichardiii,1592 going,2,kingrichardiii,1592 windows,2,kingrichardiii,1592 entreats,2,kingrichardiii,1592 leading,2,kingrichardiii,1592 corruption,2,kingrichardiii,1592 dwells,2,kingrichardiii,1592 shade,2,kingrichardiii,1592 silent,2,kingrichardiii,1592 simple,2,kingrichardiii,1592 leads,2,kingrichardiii,1592 proffer'd,2,kingrichardiii,1592 slay,2,kingrichardiii,1592 employ,2,kingrichardiii,1592 substitute,2,kingrichardiii,1592 hugg'd,2,kingrichardiii,1592 dare,2,kingrichardiii,1592 Die,2,kingrichardiii,1592 weigh,2,kingrichardiii,1592 miseries,2,kingrichardiii,1592 catch,2,kingrichardiii,1592 blessing,2,kingrichardiii,1592 top,2,kingrichardiii,1592 dry,2,kingrichardiii,1592 liest,2,kingrichardiii,1592 wonders,2,kingrichardiii,1592 months,2,kingrichardiii,1592 Until,2,kingrichardiii,1592 venom,2,kingrichardiii,1592 shake,2,kingrichardiii,1592 rescue,2,kingrichardiii,1592 promotions,2,kingrichardiii,1592 shine,2,kingrichardiii,1592 Teach,2,kingrichardiii,1592 commanding,2,kingrichardiii,1592 pass'd,2,kingrichardiii,1592 obedient,2,kingrichardiii,1592 BLOUNT,2,kingrichardiii,1592 greatness,2,kingrichardiii,1592 Wrong,2,kingrichardiii,1592 Yorkshire,2,kingrichardiii,1592 earth's,2,kingrichardiii,1592 False,2,kingrichardiii,1592 archers,2,kingrichardiii,1592 repair,2,kingrichardiii,1592 millstones,2,kingrichardiii,1592 undertake,2,kingrichardiii,1592 hatches,2,kingrichardiii,1592 woo'd,2,kingrichardiii,1592 women,2,kingrichardiii,1592 brave,3,kingrichardiii,1592 treason,3,kingrichardiii,1592 G,3,kingrichardiii,1592 advised,3,kingrichardiii,1592 grew,3,kingrichardiii,1592 meed,3,kingrichardiii,1592 muster,3,kingrichardiii,1592 join,3,kingrichardiii,1592 drop,3,kingrichardiii,1592 John,3,kingrichardiii,1592 Hear,3,kingrichardiii,1592 heir,3,kingrichardiii,1592 advantage,3,kingrichardiii,1592 brows,3,kingrichardiii,1592 zeal,3,kingrichardiii,1592 offended,3,kingrichardiii,1592 shoulders,3,kingrichardiii,1592 doubtful,3,kingrichardiii,1592 scene,3,kingrichardiii,1592 Bear,3,kingrichardiii,1592 held,3,kingrichardiii,1592 Never,3,kingrichardiii,1592 helm,3,kingrichardiii,1592 dire,3,kingrichardiii,1592 Stay,3,kingrichardiii,1592 York's,3,kingrichardiii,1592 duteous,3,kingrichardiii,1592 darkness,3,kingrichardiii,1592 contract,3,kingrichardiii,1592 brook,3,kingrichardiii,1592 naked,3,kingrichardiii,1592 slander,3,kingrichardiii,1592 throat,3,kingrichardiii,1592 sort,3,kingrichardiii,1592 bowels,3,kingrichardiii,1592 cheeks,3,kingrichardiii,1592 early,3,kingrichardiii,1592 attempt,3,kingrichardiii,1592 Once,3,kingrichardiii,1592 strength,3,kingrichardiii,1592 reign,3,kingrichardiii,1592 Young,3,kingrichardiii,1592 Remember,3,kingrichardiii,1592 noise,3,kingrichardiii,1592 she's,3,kingrichardiii,1592 execution,3,kingrichardiii,1592 Pembroke,3,kingrichardiii,1592 stands,3,kingrichardiii,1592 enough,3,kingrichardiii,1592 usurp'd,3,kingrichardiii,1592 think'st,3,kingrichardiii,1592 saying,3,kingrichardiii,1592 deceit,3,kingrichardiii,1592 bitterly,3,kingrichardiii,1592 peril,3,kingrichardiii,1592 embrace,3,kingrichardiii,1592 Withdraw,3,kingrichardiii,1592 scorn'd,3,kingrichardiii,1592 looking,3,kingrichardiii,1592 apparent,3,kingrichardiii,1592 sued,3,kingrichardiii,1592 kindly,3,kingrichardiii,1592 sues,3,kingrichardiii,1592 wings,3,kingrichardiii,1592 lambs,3,kingrichardiii,1592 league,3,kingrichardiii,1592 pieces,3,kingrichardiii,1592 Attendants,3,kingrichardiii,1592 offence,3,kingrichardiii,1592 worse,3,kingrichardiii,1592 heavens,3,kingrichardiii,1592 bustle,3,kingrichardiii,1592 Out,3,kingrichardiii,1592 Whilst,3,kingrichardiii,1592 govern'd,3,kingrichardiii,1592 humbly,3,kingrichardiii,1592 accept,3,kingrichardiii,1592 guile,3,kingrichardiii,1592 Vouchsafe,3,kingrichardiii,1592 steal,3,kingrichardiii,1592 Though,3,kingrichardiii,1592 warn,3,kingrichardiii,1592 stop,3,kingrichardiii,1592 wars,3,kingrichardiii,1592 rule,3,kingrichardiii,1592 wash,3,kingrichardiii,1592 mistake,3,kingrichardiii,1592 matter,3,kingrichardiii,1592 Children,3,kingrichardiii,1592 There's,3,kingrichardiii,1592 wast,3,kingrichardiii,1592 bright,3,kingrichardiii,1592 spoke,3,kingrichardiii,1592 conquer,3,kingrichardiii,1592 Daughter,3,kingrichardiii,1592 sick,3,kingrichardiii,1592 wherefore,3,kingrichardiii,1592 bastardy,3,kingrichardiii,1592 Place,3,kingrichardiii,1592 sign,3,kingrichardiii,1592 marquess,3,kingrichardiii,1592 mistrust,3,kingrichardiii,1592 Him,3,kingrichardiii,1592 Those,3,kingrichardiii,1592 Having,3,kingrichardiii,1592 bar,3,kingrichardiii,1592 butt,3,kingrichardiii,1592 Advance,3,kingrichardiii,1592 Walter,3,kingrichardiii,1592 creature,3,kingrichardiii,1592 brings,3,kingrichardiii,1592 force,3,kingrichardiii,1592 homicide,3,kingrichardiii,1592 hie,3,kingrichardiii,1592 Within,3,kingrichardiii,1592 Ha,3,kingrichardiii,1592 piteous,3,kingrichardiii,1592 cheerfully,3,kingrichardiii,1592 conqueror,3,kingrichardiii,1592 past,3,kingrichardiii,1592 Up,3,kingrichardiii,1592 yourselves,3,kingrichardiii,1592 monstrous,3,kingrichardiii,1592 devotion,3,kingrichardiii,1592 Murder,3,kingrichardiii,1592 Rutland,3,kingrichardiii,1592 valiant,3,kingrichardiii,1592 gave,3,kingrichardiii,1592 proportion,3,kingrichardiii,1592 goodly,3,kingrichardiii,1592 kindness,3,kingrichardiii,1592 Oxford,3,kingrichardiii,1592 struck,3,kingrichardiii,1592 prisoners,3,kingrichardiii,1592 devilish,3,kingrichardiii,1592 weak,3,kingrichardiii,1592 woful,3,kingrichardiii,1592 jealous,3,kingrichardiii,1592 suddenly,3,kingrichardiii,1592 swift,3,kingrichardiii,1592 sins,3,kingrichardiii,1592 pains,3,kingrichardiii,1592 Like,3,kingrichardiii,1592 pitch,3,kingrichardiii,1592 grace's,3,kingrichardiii,1592 north,3,kingrichardiii,1592 begin,3,kingrichardiii,1592 story,3,kingrichardiii,1592 wretch,3,kingrichardiii,1592 Cannot,3,kingrichardiii,1592 gift,3,kingrichardiii,1592 Fear,3,kingrichardiii,1592 servant,3,kingrichardiii,1592 prevented,3,kingrichardiii,1592 stood,3,kingrichardiii,1592 needs,3,kingrichardiii,1592 stone,3,kingrichardiii,1592 deal,3,kingrichardiii,1592 pluck'd,3,kingrichardiii,1592 Forrest,3,kingrichardiii,1592 Besides,3,kingrichardiii,1592 lend,3,kingrichardiii,1592 that's,3,kingrichardiii,1592 move,3,kingrichardiii,1592 wonderful,3,kingrichardiii,1592 bites,3,kingrichardiii,1592 delay,3,kingrichardiii,1592 Myself,3,kingrichardiii,1592 Crosby,3,kingrichardiii,1592 train,3,kingrichardiii,1592 enmity,3,kingrichardiii,1592 ink,3,kingrichardiii,1592 lightly,3,kingrichardiii,1592 beholding,3,kingrichardiii,1592 wherein,3,kingrichardiii,1592 knot,3,kingrichardiii,1592 twenty,3,kingrichardiii,1592 beauteous,3,kingrichardiii,1592 forgot,3,kingrichardiii,1592 scatter'd,3,kingrichardiii,1592 untimely,3,kingrichardiii,1592 acquaint,3,kingrichardiii,1592 hot,3,kingrichardiii,1592 Came,3,kingrichardiii,1592 hard,3,kingrichardiii,1592 Jack,3,kingrichardiii,1592 half,3,kingrichardiii,1592 Call,3,kingrichardiii,1592 weeds,3,kingrichardiii,1592 mew'd,3,kingrichardiii,1592 avoided,3,kingrichardiii,1592 knocks,3,kingrichardiii,1592 fiery,3,kingrichardiii,1592 show,3,kingrichardiii,1592 fear'd,3,kingrichardiii,1592 moan,3,kingrichardiii,1592 renowned,3,kingrichardiii,1592 scarcely,3,kingrichardiii,1592 mayst,3,kingrichardiii,1592 ye,3,kingrichardiii,1592 secret,3,kingrichardiii,1592 thanks,3,kingrichardiii,1592 bought,3,kingrichardiii,1592 few,3,kingrichardiii,1592 fee,3,kingrichardiii,1592 Art,3,kingrichardiii,1592 Baynard's,3,kingrichardiii,1592 justice,3,kingrichardiii,1592 moved,3,kingrichardiii,1592 Dighton,3,kingrichardiii,1592 report,3,kingrichardiii,1592 empty,3,kingrichardiii,1592 sickly,3,kingrichardiii,1592 envy,3,kingrichardiii,1592 Souls',3,kingrichardiii,1592 'Zounds,3,kingrichardiii,1592 Chertsey,3,kingrichardiii,1592 halberds,3,kingrichardiii,1592 Bad,3,kingrichardiii,1592 Flourish,3,kingrichardiii,1592 meditation,3,kingrichardiii,1592 wandering,3,kingrichardiii,1592 likelihood,3,kingrichardiii,1592 Doth,3,kingrichardiii,1592 precious,3,kingrichardiii,1592 Makes,3,kingrichardiii,1592 foolish,3,kingrichardiii,1592 already,3,kingrichardiii,1592 Queen,3,kingrichardiii,1592 Ludlow,3,kingrichardiii,1592 leaden,3,kingrichardiii,1592 flatter,3,kingrichardiii,1592 victorious,3,kingrichardiii,1592 benefit,3,kingrichardiii,1592 behalf,3,kingrichardiii,1592 pause,3,kingrichardiii,1592 opinion,3,kingrichardiii,1592 purchase,3,kingrichardiii,1592 hateful,3,kingrichardiii,1592 Dream,3,kingrichardiii,1592 selfsame,3,kingrichardiii,1592 subtle,3,kingrichardiii,1592 burthen,3,kingrichardiii,1592 earnest,3,kingrichardiii,1592 between,3,kingrichardiii,1592 perforce,3,kingrichardiii,1592 intent,3,kingrichardiii,1592 found,3,kingrichardiii,1592 danger,3,kingrichardiii,1592 Fourth,3,kingrichardiii,1592 hair,3,kingrichardiii,1592 faces,3,kingrichardiii,1592 faced,3,kingrichardiii,1592 conference,3,kingrichardiii,1592 what's,3,kingrichardiii,1592 angel,3,kingrichardiii,1592 wife's,3,kingrichardiii,1592 earldom,3,kingrichardiii,1592 waters,3,kingrichardiii,1592 yoke,3,kingrichardiii,1592 drops,3,kingrichardiii,1592 wrong'd,3,kingrichardiii,1592 contempt,3,kingrichardiii,1592 fain,3,kingrichardiii,1592 cried,3,kingrichardiii,1592 ground,3,kingrichardiii,1592 judge,3,kingrichardiii,1592 Withal,3,kingrichardiii,1592 Till,3,kingrichardiii,1592 saint,3,kingrichardiii,1592 foe,3,kingrichardiii,1592 amends,3,kingrichardiii,1592 work,3,kingrichardiii,1592 perfect,3,kingrichardiii,1592 vow,3,kingrichardiii,1592 LORDS,3,kingrichardiii,1592 safety,3,kingrichardiii,1592 ne'er,3,kingrichardiii,1592 bark,3,kingrichardiii,1592 ta'en,3,kingrichardiii,1592 herself,3,kingrichardiii,1592 whither,3,kingrichardiii,1592 Foul,3,kingrichardiii,1592 prophesy,3,kingrichardiii,1592 deliver'd,3,kingrichardiii,1592 is't,3,kingrichardiii,1592 Caesar,3,kingrichardiii,1592 man's,3,kingrichardiii,1592 convey,3,kingrichardiii,1592 watchful,3,kingrichardiii,1592 holes,3,kingrichardiii,1592 sights,3,kingrichardiii,1592 shore,3,kingrichardiii,1592 quit,3,kingrichardiii,1592 greet,3,kingrichardiii,1592 concluded,3,kingrichardiii,1592 request,3,kingrichardiii,1592 strong,3,kingrichardiii,1592 seal,3,kingrichardiii,1592 Sitting,3,kingrichardiii,1592 alone,3,kingrichardiii,1592 winged,3,kingrichardiii,1592 fairer,3,kingrichardiii,1592 adieu,3,kingrichardiii,1592 Murderers,3,kingrichardiii,1592 crept,3,kingrichardiii,1592 aught,3,kingrichardiii,1592 drums,3,kingrichardiii,1592 seem,3,kingrichardiii,1592 either,3,kingrichardiii,1592 drunken,3,kingrichardiii,1592 condition,3,kingrichardiii,1592 increase,3,kingrichardiii,1592 therein,3,kingrichardiii,1592 Send,3,kingrichardiii,1592 prayer,3,kingrichardiii,1592 secure,3,kingrichardiii,1592 'God,3,kingrichardiii,1592 bleeding,3,kingrichardiii,1592 led,3,kingrichardiii,1592 alas,3,kingrichardiii,1592 Cursed,3,kingrichardiii,1592 Hastings',3,kingrichardiii,1592 protest,3,kingrichardiii,1592 master's,3,kingrichardiii,1592 mad,3,kingrichardiii,1592 careful,3,kingrichardiii,1592 conduct,3,kingrichardiii,1592 begins,3,kingrichardiii,1592 doing,3,kingrichardiii,1592 dread,3,kingrichardiii,1592 enforcement,3,kingrichardiii,1592 warlike,3,kingrichardiii,1592 Captain,3,kingrichardiii,1592 lips,3,kingrichardiii,1592 Amen,3,kingrichardiii,1592 suspect,3,kingrichardiii,1592 discontented,3,kingrichardiii,1592 hurl,3,kingrichardiii,1592 Northumberland,3,kingrichardiii,1592 content,3,kingrichardiii,1592 urged,3,kingrichardiii,1592 rebels,3,kingrichardiii,1592 Death,3,kingrichardiii,1592 tardy,3,kingrichardiii,1592 dark,3,kingrichardiii,1592 pent,3,kingrichardiii,1592 success,3,kingrichardiii,1592 behold,3,kingrichardiii,1592 Too,3,kingrichardiii,1592 tempt,3,kingrichardiii,1592 divided,3,kingrichardiii,1592 mourner,3,kingrichardiii,1592 remorse,3,kingrichardiii,1592 breathe,3,kingrichardiii,1592 perhaps,3,kingrichardiii,1592 e'er,3,kingrichardiii,1592 summer,3,kingrichardiii,1592 daughters,3,kingrichardiii,1592 heed,4,kingrichardiii,1592 swords,4,kingrichardiii,1592 red,4,kingrichardiii,1592 Warwick,4,kingrichardiii,1592 fathers,4,kingrichardiii,1592 Lovel,4,kingrichardiii,1592 lament,4,kingrichardiii,1592 slaughter'd,4,kingrichardiii,1592 Either,4,kingrichardiii,1592 angels,4,kingrichardiii,1592 trust,4,kingrichardiii,1592 become,4,kingrichardiii,1592 care,4,kingrichardiii,1592 Richard's,4,kingrichardiii,1592 pleasing,4,kingrichardiii,1592 Girl,4,kingrichardiii,1592 jest,4,kingrichardiii,1592 yourself,4,kingrichardiii,1592 Brandon,4,kingrichardiii,1592 resolve,4,kingrichardiii,1592 subjects,4,kingrichardiii,1592 toward,4,kingrichardiii,1592 teach,4,kingrichardiii,1592 deserve,4,kingrichardiii,1592 sin,4,kingrichardiii,1592 peevish,4,kingrichardiii,1592 murderer,4,kingrichardiii,1592 Their,4,kingrichardiii,1592 accursed,4,kingrichardiii,1592 Harry,4,kingrichardiii,1592 afraid,4,kingrichardiii,1592 born,4,kingrichardiii,1592 cries,4,kingrichardiii,1592 humble,4,kingrichardiii,1592 One,4,kingrichardiii,1592 SURREY,4,kingrichardiii,1592 Cousin,4,kingrichardiii,1592 world's,4,kingrichardiii,1592 desire,4,kingrichardiii,1592 chamber,4,kingrichardiii,1592 quarrel,4,kingrichardiii,1592 wronged,4,kingrichardiii,1592 shortly,4,kingrichardiii,1592 unnatural,4,kingrichardiii,1592 desperate,4,kingrichardiii,1592 hopes,4,kingrichardiii,1592 kings,4,kingrichardiii,1592 innocent,4,kingrichardiii,1592 changed,4,kingrichardiii,1592 beg,4,kingrichardiii,1592 sovereignty,4,kingrichardiii,1592 wither'd,4,kingrichardiii,1592 heads,4,kingrichardiii,1592 sirs,4,kingrichardiii,1592 gold,4,kingrichardiii,1592 shadow,4,kingrichardiii,1592 tedious,4,kingrichardiii,1592 vantage,4,kingrichardiii,1592 Both,4,kingrichardiii,1592 entertain,4,kingrichardiii,1592 ghost,4,kingrichardiii,1592 tyrant,4,kingrichardiii,1592 current,4,kingrichardiii,1592 favour,4,kingrichardiii,1592 debt,4,kingrichardiii,1592 murderous,4,kingrichardiii,1592 priest,4,kingrichardiii,1592 destruction,4,kingrichardiii,1592 buried,4,kingrichardiii,1592 speed,4,kingrichardiii,1592 shed,4,kingrichardiii,1592 growth,4,kingrichardiii,1592 doom,4,kingrichardiii,1592 committed,4,kingrichardiii,1592 idle,4,kingrichardiii,1592 account,4,kingrichardiii,1592 endure,4,kingrichardiii,1592 spent,4,kingrichardiii,1592 lest,4,kingrichardiii,1592 BLUNT,4,kingrichardiii,1592 men's,4,kingrichardiii,1592 load,4,kingrichardiii,1592 brought,4,kingrichardiii,1592 imprisonment,4,kingrichardiii,1592 outward,4,kingrichardiii,1592 isle,4,kingrichardiii,1592 afford,4,kingrichardiii,1592 kingly,4,kingrichardiii,1592 pale,4,kingrichardiii,1592 four,4,kingrichardiii,1592 joyful,4,kingrichardiii,1592 perpetual,4,kingrichardiii,1592 vengeance,4,kingrichardiii,1592 form,4,kingrichardiii,1592 stones,4,kingrichardiii,1592 fool,4,kingrichardiii,1592 dreadful,4,kingrichardiii,1592 tyranny,4,kingrichardiii,1592 fond,4,kingrichardiii,1592 armour,4,kingrichardiii,1592 betide,4,kingrichardiii,1592 Margaret's,4,kingrichardiii,1592 butcher'd,4,kingrichardiii,1592 enjoy,4,kingrichardiii,1592 change,4,kingrichardiii,1592 lead,4,kingrichardiii,1592 height,4,kingrichardiii,1592 Into,4,kingrichardiii,1592 watch,4,kingrichardiii,1592 regiment,4,kingrichardiii,1592 often,4,kingrichardiii,1592 nay,4,kingrichardiii,1592 guiltless,4,kingrichardiii,1592 Clarence',4,kingrichardiii,1592 coronation,4,kingrichardiii,1592 who's,4,kingrichardiii,1592 youth,4,kingrichardiii,1592 general,4,kingrichardiii,1592 other's,4,kingrichardiii,1592 mild,4,kingrichardiii,1592 Long,4,kingrichardiii,1592 beggar,4,kingrichardiii,1592 presently,4,kingrichardiii,1592 coward,4,kingrichardiii,1592 woe,4,kingrichardiii,1592 slave,4,kingrichardiii,1592 designs,4,kingrichardiii,1592 Made,4,kingrichardiii,1592 Being,4,kingrichardiii,1592 wrath,4,kingrichardiii,1592 get,4,kingrichardiii,1592 wrongs,4,kingrichardiii,1592 wit,4,kingrichardiii,1592 only,4,kingrichardiii,1592 prime,4,kingrichardiii,1592 walls,4,kingrichardiii,1592 Priest,4,kingrichardiii,1592 rise,4,kingrichardiii,1592 commanded,4,kingrichardiii,1592 oath,4,kingrichardiii,1592 serve,4,kingrichardiii,1592 Princes,4,kingrichardiii,1592 wont,4,kingrichardiii,1592 supper,4,kingrichardiii,1592 next,4,kingrichardiii,1592 chamberlain,4,kingrichardiii,1592 Sixth,4,kingrichardiii,1592 Bid,4,kingrichardiii,1592 poison,4,kingrichardiii,1592 opposite,4,kingrichardiii,1592 haply,4,kingrichardiii,1592 harvest,4,kingrichardiii,1592 councils,4,kingrichardiii,1592 fame,4,kingrichardiii,1592 three,4,kingrichardiii,1592 wounds,4,kingrichardiii,1592 smooth,4,kingrichardiii,1592 Castle,4,kingrichardiii,1592 aunt,4,kingrichardiii,1592 kiss,4,kingrichardiii,1592 trumpets,4,kingrichardiii,1592 home,4,kingrichardiii,1592 master,4,kingrichardiii,1592 Grandam,4,kingrichardiii,1592 Brakenbury,4,kingrichardiii,1592 seas,4,kingrichardiii,1592 ugly,4,kingrichardiii,1592 cousins,4,kingrichardiii,1592 tidings,4,kingrichardiii,1592 True,4,kingrichardiii,1592 Meantime,4,kingrichardiii,1592 nurse,4,kingrichardiii,1592 until,4,kingrichardiii,1592 allies,4,kingrichardiii,1592 abroad,4,kingrichardiii,1592 reward,4,kingrichardiii,1592 Scrivener,4,kingrichardiii,1592 Another,4,kingrichardiii,1592 treacherous,4,kingrichardiii,1592 HERBERT,4,kingrichardiii,1592 EARL,4,kingrichardiii,1592 street,4,kingrichardiii,1592 fled,4,kingrichardiii,1592 terror,4,kingrichardiii,1592 sleeping,4,kingrichardiii,1592 May,4,kingrichardiii,1592 follow'd,4,kingrichardiii,1592 sudden,4,kingrichardiii,1592 dispatch,4,kingrichardiii,1592 reverend,4,kingrichardiii,1592 record,4,kingrichardiii,1592 cross,4,kingrichardiii,1592 command,4,kingrichardiii,1592 amen,4,kingrichardiii,1592 remembrance,4,kingrichardiii,1592 bids,4,kingrichardiii,1592 wouldst,4,kingrichardiii,1592 sharp,4,kingrichardiii,1592 Tut,4,kingrichardiii,1592 grandam,5,kingrichardiii,1592 o'er,5,kingrichardiii,1592 weary,5,kingrichardiii,1592 business,5,kingrichardiii,1592 lawful,5,kingrichardiii,1592 assured,5,kingrichardiii,1592 health,5,kingrichardiii,1592 heart's,5,kingrichardiii,1592 spake,5,kingrichardiii,1592 Citizens,5,kingrichardiii,1592 drum,5,kingrichardiii,1592 Tewksbury,5,kingrichardiii,1592 Page,5,kingrichardiii,1592 Ere,5,kingrichardiii,1592 joys,5,kingrichardiii,1592 Whom,5,kingrichardiii,1592 soon,5,kingrichardiii,1592 Henry's,5,kingrichardiii,1592 highness,5,kingrichardiii,1592 broken,5,kingrichardiii,1592 afterwards,5,kingrichardiii,1592 purse,5,kingrichardiii,1592 Thomas,5,kingrichardiii,1592 cheer,5,kingrichardiii,1592 Ely,5,kingrichardiii,1592 glass,5,kingrichardiii,1592 light,5,kingrichardiii,1592 sea,5,kingrichardiii,1592 Such,5,kingrichardiii,1592 subject,5,kingrichardiii,1592 betwixt,5,kingrichardiii,1592 sends,5,kingrichardiii,1592 uncles,5,kingrichardiii,1592 king's,5,kingrichardiii,1592 fault,5,kingrichardiii,1592 thence,5,kingrichardiii,1592 grow,5,kingrichardiii,1592 service,5,kingrichardiii,1592 claim,5,kingrichardiii,1592 blind,5,kingrichardiii,1592 ancient,5,kingrichardiii,1592 wine,5,kingrichardiii,1592 wise,5,kingrichardiii,1592 book,5,kingrichardiii,1592 party,5,kingrichardiii,1592 Do,5,kingrichardiii,1592 urge,5,kingrichardiii,1592 morning,5,kingrichardiii,1592 melancholy,5,kingrichardiii,1592 Ah,5,kingrichardiii,1592 scarce,5,kingrichardiii,1592 neither,5,kingrichardiii,1592 deeds,5,kingrichardiii,1592 adversaries,5,kingrichardiii,1592 Lo,5,kingrichardiii,1592 Her,5,kingrichardiii,1592 pleasure,5,kingrichardiii,1592 Wales,5,kingrichardiii,1592 bless,5,kingrichardiii,1592 deserved,5,kingrichardiii,1592 play,5,kingrichardiii,1592 behind,5,kingrichardiii,1592 breathing,5,kingrichardiii,1592 stabb'd,5,kingrichardiii,1592 OXFORD,5,kingrichardiii,1592 breast,5,kingrichardiii,1592 Methought,5,kingrichardiii,1592 repent,5,kingrichardiii,1592 safe,5,kingrichardiii,1592 dignity,5,kingrichardiii,1592 Sheriff,5,kingrichardiii,1592 miserable,5,kingrichardiii,1592 Yea,5,kingrichardiii,1592 ill,5,kingrichardiii,1592 lose,5,kingrichardiii,1592 toad,5,kingrichardiii,1592 shallow,5,kingrichardiii,1592 liberty,5,kingrichardiii,1592 deny,5,kingrichardiii,1592 whether,5,kingrichardiii,1592 expect,5,kingrichardiii,1592 pain,5,kingrichardiii,1592 alive,5,kingrichardiii,1592 though,5,kingrichardiii,1592 Shore,5,kingrichardiii,1592 Hark,5,kingrichardiii,1592 march,5,kingrichardiii,1592 smother'd,5,kingrichardiii,1592 Lords,5,kingrichardiii,1592 things,5,kingrichardiii,1592 traitors,5,kingrichardiii,1592 effect,5,kingrichardiii,1592 towards,5,kingrichardiii,1592 fares,5,kingrichardiii,1592 plead,5,kingrichardiii,1592 living,5,kingrichardiii,1592 close,5,kingrichardiii,1592 heard,5,kingrichardiii,1592 Blunt,5,kingrichardiii,1592 crown'd,5,kingrichardiii,1592 army,5,kingrichardiii,1592 Can,5,kingrichardiii,1592 intend,5,kingrichardiii,1592 rage,5,kingrichardiii,1592 forward,5,kingrichardiii,1592 Surrey,5,kingrichardiii,1592 weeping,5,kingrichardiii,1592 determined,5,kingrichardiii,1592 heirs,5,kingrichardiii,1592 Brother,5,kingrichardiii,1592 humour,5,kingrichardiii,1592 find,5,kingrichardiii,1592 patient,5,kingrichardiii,1592 lived,5,kingrichardiii,1592 meaning,5,kingrichardiii,1592 Derby,5,kingrichardiii,1592 fast,5,kingrichardiii,1592 Welcome,5,kingrichardiii,1592 Earl,5,kingrichardiii,1592 stroke,5,kingrichardiii,1592 given,5,kingrichardiii,1592 provoked,5,kingrichardiii,1592 cut,5,kingrichardiii,1592 country's,5,kingrichardiii,1592 along,5,kingrichardiii,1592 use,5,kingrichardiii,1592 seen,5,kingrichardiii,1592 sound,5,kingrichardiii,1592 together,5,kingrichardiii,1592 purpose,5,kingrichardiii,1592 clouds,5,kingrichardiii,1592 sister,5,kingrichardiii,1592 Since,5,kingrichardiii,1592 thither,5,kingrichardiii,1592 late,5,kingrichardiii,1592 CHRISTOPHER,5,kingrichardiii,1592 virtue,5,kingrichardiii,1592 revenged,5,kingrichardiii,1592 laid,5,kingrichardiii,1592 attend,5,kingrichardiii,1592 without,5,kingrichardiii,1592 awake,5,kingrichardiii,1592 spirit,5,kingrichardiii,1592 ten,5,kingrichardiii,1592 woman,5,kingrichardiii,1592 direction,5,kingrichardiii,1592 answer,6,kingrichardiii,1592 leisure,6,kingrichardiii,1592 Alas,6,kingrichardiii,1592 haste,6,kingrichardiii,1592 sight,6,kingrichardiii,1592 prey,6,kingrichardiii,1592 birth,6,kingrichardiii,1592 Whose,6,kingrichardiii,1592 words,6,kingrichardiii,1592 Ghosts,6,kingrichardiii,1592 paper,6,kingrichardiii,1592 sit,6,kingrichardiii,1592 virtuous,6,kingrichardiii,1592 'twas,6,kingrichardiii,1592 throne,6,kingrichardiii,1592 turn,6,kingrichardiii,1592 know'st,6,kingrichardiii,1592 bold,6,kingrichardiii,1592 died,6,kingrichardiii,1592 voice,6,kingrichardiii,1592 pretty,6,kingrichardiii,1592 bitter,6,kingrichardiii,1592 grievous,6,kingrichardiii,1592 drown,6,kingrichardiii,1592 An,6,kingrichardiii,1592 protector,6,kingrichardiii,1592 patience,6,kingrichardiii,1592 kept,6,kingrichardiii,1592 quick,6,kingrichardiii,1592 pass,6,kingrichardiii,1592 quiet,6,kingrichardiii,1592 degree,6,kingrichardiii,1592 breath,6,kingrichardiii,1592 Paul,6,kingrichardiii,1592 air,6,kingrichardiii,1592 yea,6,kingrichardiii,1592 aid,6,kingrichardiii,1592 beat,6,kingrichardiii,1592 gain,6,kingrichardiii,1592 Unless,6,kingrichardiii,1592 thrive,6,kingrichardiii,1592 less,6,kingrichardiii,1592 reasons,6,kingrichardiii,1592 welcome,6,kingrichardiii,1592 plain,6,kingrichardiii,1592 present,6,kingrichardiii,1592 touch,6,kingrichardiii,1592 new,6,kingrichardiii,1592 peers,6,kingrichardiii,1592 almost,6,kingrichardiii,1592 hide,6,kingrichardiii,1592 several,6,kingrichardiii,1592 soldiers,6,kingrichardiii,1592 there's,6,kingrichardiii,1592 won,6,kingrichardiii,1592 Pursuivant,6,kingrichardiii,1592 o'clock,6,kingrichardiii,1592 near,6,kingrichardiii,1592 happiness,6,kingrichardiii,1592 believe,6,kingrichardiii,1592 cursed,6,kingrichardiii,1592 angry,6,kingrichardiii,1592 Make,6,kingrichardiii,1592 wept,6,kingrichardiii,1592 old,6,kingrichardiii,1592 wert,6,kingrichardiii,1592 company,6,kingrichardiii,1592 palace,6,kingrichardiii,1592 Elizabeth,6,kingrichardiii,1592 Unto,6,kingrichardiii,1592 wives,6,kingrichardiii,1592 talk,6,kingrichardiii,1592 reason,6,kingrichardiii,1592 seat,6,kingrichardiii,1592 defend,6,kingrichardiii,1592 cry,6,kingrichardiii,1592 blame,6,kingrichardiii,1592 post,6,kingrichardiii,1592 return,6,kingrichardiii,1592 queen's,6,kingrichardiii,1592 remember,6,kingrichardiii,1592 Salisbury,6,kingrichardiii,1592 nature,6,kingrichardiii,1592 witness,6,kingrichardiii,1592 Did,6,kingrichardiii,1592 Lest,6,kingrichardiii,1592 due,6,kingrichardiii,1592 order,6,kingrichardiii,1592 guard,7,kingrichardiii,1592 Nay,7,kingrichardiii,1592 rather,7,kingrichardiii,1592 damned,7,kingrichardiii,1592 truth,7,kingrichardiii,1592 mercy,7,kingrichardiii,1592 Poor,7,kingrichardiii,1592 sad,7,kingrichardiii,1592 saw,7,kingrichardiii,1592 years,7,kingrichardiii,1592 corse,7,kingrichardiii,1592 babes,7,kingrichardiii,1592 black,7,kingrichardiii,1592 LOVEL,7,kingrichardiii,1592 warrant,7,kingrichardiii,1592 'twere,7,kingrichardiii,1592 yield,7,kingrichardiii,1592 Farewell,7,kingrichardiii,1592 promise,7,kingrichardiii,1592 title,7,kingrichardiii,1592 boy,7,kingrichardiii,1592 Oh,7,kingrichardiii,1592 Had,7,kingrichardiii,1592 VI,7,kingrichardiii,1592 grief,7,kingrichardiii,1592 Lancaster,7,kingrichardiii,1592 left,7,kingrichardiii,1592 harm,7,kingrichardiii,1592 Christian,7,kingrichardiii,1592 Lady,7,kingrichardiii,1592 course,7,kingrichardiii,1592 open,7,kingrichardiii,1592 foot,7,kingrichardiii,1592 faith,7,kingrichardiii,1592 CARDINAL,7,kingrichardiii,1592 Some,7,kingrichardiii,1592 quoth,7,kingrichardiii,1592 over,7,kingrichardiii,1592 woes,7,kingrichardiii,1592 flourish,7,kingrichardiii,1592 duty,7,kingrichardiii,1592 themselves,7,kingrichardiii,1592 dreams,7,kingrichardiii,1592 womb,7,kingrichardiii,1592 dull,7,kingrichardiii,1592 fly,7,kingrichardiii,1592 gentleman,7,kingrichardiii,1592 hatred,7,kingrichardiii,1592 prayers,7,kingrichardiii,1592 look'd,7,kingrichardiii,1592 person,7,kingrichardiii,1592 self,7,kingrichardiii,1592 VAUGHAN,7,kingrichardiii,1592 mother's,7,kingrichardiii,1592 lie,7,kingrichardiii,1592 ARCHBISHOP,7,kingrichardiii,1592 met,7,kingrichardiii,1592 glory,7,kingrichardiii,1592 Before,7,kingrichardiii,1592 dog,7,kingrichardiii,1592 slew,7,kingrichardiii,1592 charity,7,kingrichardiii,1592 enemy,7,kingrichardiii,1592 lady,7,kingrichardiii,1592 pity,8,kingrichardiii,1592 villain,8,kingrichardiii,1592 withal,8,kingrichardiii,1592 draw,8,kingrichardiii,1592 golden,8,kingrichardiii,1592 Not,8,kingrichardiii,1592 wail,8,kingrichardiii,1592 sir,8,kingrichardiii,1592 slaughter,8,kingrichardiii,1592 Aside,8,kingrichardiii,1592 suit,8,kingrichardiii,1592 scorn,8,kingrichardiii,1592 counsel,8,kingrichardiii,1592 William,8,kingrichardiii,1592 France,8,kingrichardiii,1592 There,8,kingrichardiii,1592 fellow,8,kingrichardiii,1592 kill'd,8,kingrichardiii,1592 brief,8,kingrichardiii,1592 want,8,kingrichardiii,1592 hence,8,kingrichardiii,1592 friend,8,kingrichardiii,1592 On,8,kingrichardiii,1592 ears,8,kingrichardiii,1592 proud,8,kingrichardiii,1592 prove,8,kingrichardiii,1592 wear,8,kingrichardiii,1592 Saint,8,kingrichardiii,1592 farewell,8,kingrichardiii,1592 victory,8,kingrichardiii,1592 hadst,8,kingrichardiii,1592 lost,8,kingrichardiii,1592 call'd,8,kingrichardiii,1592 deadly,8,kingrichardiii,1592 sanctuary,8,kingrichardiii,1592 guess,8,kingrichardiii,1592 eye,8,kingrichardiii,1592 strike,8,kingrichardiii,1592 Therefore,8,kingrichardiii,1592 mortal,8,kingrichardiii,1592 issue,8,kingrichardiii,1592 grave,8,kingrichardiii,1592 win,8,kingrichardiii,1592 save,8,kingrichardiii,1592 Thus,8,kingrichardiii,1592 SIR,8,kingrichardiii,1592 face,8,kingrichardiii,1592 curses,8,kingrichardiii,1592 marry,8,kingrichardiii,1592 guilty,8,kingrichardiii,1592 tale,8,kingrichardiii,1592 thousand,8,kingrichardiii,1592 gentlemen,8,kingrichardiii,1592 wilt,8,kingrichardiii,1592 Anne,8,kingrichardiii,1592 Prince,8,kingrichardiii,1592 traitor,8,kingrichardiii,1592 entreat,8,kingrichardiii,1592 wretched,8,kingrichardiii,1592 kindred,8,kingrichardiii,1592 hither,8,kingrichardiii,1592 first,8,kingrichardiii,1592 learn,8,kingrichardiii,1592 straight,8,kingrichardiii,1592 thoughts,8,kingrichardiii,1592 Marry,8,kingrichardiii,1592 follow,8,kingrichardiii,1592 Vaughan,8,kingrichardiii,1592 Margaret,9,kingrichardiii,1592 meet,9,kingrichardiii,1592 V,9,kingrichardiii,1592 times,9,kingrichardiii,1592 LORD,9,kingrichardiii,1592 joy,9,kingrichardiii,1592 while,9,kingrichardiii,1592 nothing,9,kingrichardiii,1592 body,9,kingrichardiii,1592 Tyrrel,9,kingrichardiii,1592 These,9,kingrichardiii,1592 Our,9,kingrichardiii,1592 wish,9,kingrichardiii,1592 murder,9,kingrichardiii,1592 Plantagenet,9,kingrichardiii,1592 canst,9,kingrichardiii,1592 II,9,kingrichardiii,1592 means,9,kingrichardiii,1592 best,9,kingrichardiii,1592 whose,9,kingrichardiii,1592 BISHOP,9,kingrichardiii,1592 loves,9,kingrichardiii,1592 More,9,kingrichardiii,1592 arm,9,kingrichardiii,1592 bosom,9,kingrichardiii,1592 revenge,9,kingrichardiii,1592 into,9,kingrichardiii,1592 She,9,kingrichardiii,1592 father's,9,kingrichardiii,1592 Were,9,kingrichardiii,1592 same,9,kingrichardiii,1592 break,9,kingrichardiii,1592 says,9,kingrichardiii,1592 loving,9,kingrichardiii,1592 beseech,9,kingrichardiii,1592 Think,9,kingrichardiii,1592 grant,9,kingrichardiii,1592 fortune,9,kingrichardiii,1592 even,9,kingrichardiii,1592 Boy,9,kingrichardiii,1592 lordship,9,kingrichardiii,1592 hearts,9,kingrichardiii,1592 kingdom,9,kingrichardiii,1592 back,9,kingrichardiii,1592 presence,9,kingrichardiii,1592 beauty,9,kingrichardiii,1592 ELY,9,kingrichardiii,1592 widow,9,kingrichardiii,1592 shalt,9,kingrichardiii,1592 Will,10,kingrichardiii,1592 tears,10,kingrichardiii,1592 charge,10,kingrichardiii,1592 call,10,kingrichardiii,1592 boar,10,kingrichardiii,1592 wrong,10,kingrichardiii,1592 princes,10,kingrichardiii,1592 sun,10,kingrichardiii,1592 fearful,10,kingrichardiii,1592 Pomfret,10,kingrichardiii,1592 At,10,kingrichardiii,1592 bad,10,kingrichardiii,1592 bed,10,kingrichardiii,1592 Re,10,kingrichardiii,1592 said,10,kingrichardiii,1592 devil,10,kingrichardiii,1592 Because,10,kingrichardiii,1592 far,10,kingrichardiii,1592 slain,10,kingrichardiii,1592 very,10,kingrichardiii,1592 need,10,kingrichardiii,1592 Ratcliff,10,kingrichardiii,1592 sake,10,kingrichardiii,1592 war,10,kingrichardiii,1592 brother's,10,kingrichardiii,1592 hold,10,kingrichardiii,1592 dangerous,10,kingrichardiii,1592 swear,10,kingrichardiii,1592 cold,10,kingrichardiii,1592 Dorset,10,kingrichardiii,1592 citizens,10,kingrichardiii,1592 kind,10,kingrichardiii,1592 Grey,11,kingrichardiii,1592 Would,11,kingrichardiii,1592 sons,11,kingrichardiii,1592 another,11,kingrichardiii,1592 Was,11,kingrichardiii,1592 Norfolk,11,kingrichardiii,1592 others,11,kingrichardiii,1592 else,11,kingrichardiii,1592 side,11,kingrichardiii,1592 weep,11,kingrichardiii,1592 gone,11,kingrichardiii,1592 just,11,kingrichardiii,1592 earth,11,kingrichardiii,1592 keep,11,kingrichardiii,1592 brothers,11,kingrichardiii,1592 Hath,11,kingrichardiii,1592 ere,11,kingrichardiii,1592 child,11,kingrichardiii,1592 Look,11,kingrichardiii,1592 didst,11,kingrichardiii,1592 dream,11,kingrichardiii,1592 state,11,kingrichardiii,1592 thing,11,kingrichardiii,1592 off,11,kingrichardiii,1592 Say,11,kingrichardiii,1592 England's,11,kingrichardiii,1592 hour,11,kingrichardiii,1592 law,11,kingrichardiii,1592 lay,11,kingrichardiii,1592 pardon,11,kingrichardiii,1592 England,11,kingrichardiii,1592 hours,11,kingrichardiii,1592 send,11,kingrichardiii,1592 sent,11,kingrichardiii,1592 Take,11,kingrichardiii,1592 himself,11,kingrichardiii,1592 help,12,kingrichardiii,1592 conscience,12,kingrichardiii,1592 Give,12,kingrichardiii,1592 within,12,kingrichardiii,1592 after,12,kingrichardiii,1592 about,12,kingrichardiii,1592 sword,12,kingrichardiii,1592 bring,12,kingrichardiii,1592 therefore,12,kingrichardiii,1592 enter,12,kingrichardiii,1592 tongue,12,kingrichardiii,1592 hands,12,kingrichardiii,1592 thyself,12,kingrichardiii,1592 loss,12,kingrichardiii,1592 place,12,kingrichardiii,1592 foul,12,kingrichardiii,1592 forth,12,kingrichardiii,1592 mayor,12,kingrichardiii,1592 Are,12,kingrichardiii,1592 enemies,12,kingrichardiii,1592 could,12,kingrichardiii,1592 stand,12,kingrichardiii,1592 thank,12,kingrichardiii,1592 thereof,12,kingrichardiii,1592 GREY,12,kingrichardiii,1592 makes,12,kingrichardiii,1592 land,12,kingrichardiii,1592 shame,12,kingrichardiii,1592 power,12,kingrichardiii,1592 every,13,kingrichardiii,1592 came,13,kingrichardiii,1592 Nor,13,kingrichardiii,1592 away,13,kingrichardiii,1592 Here,13,kingrichardiii,1592 honour,13,kingrichardiii,1592 each,13,kingrichardiii,1592 stay,13,kingrichardiii,1592 'tis,13,kingrichardiii,1592 age,13,kingrichardiii,1592 field,13,kingrichardiii,1592 part,13,kingrichardiii,1592 Madam,13,kingrichardiii,1592 indeed,13,kingrichardiii,1592 From,13,kingrichardiii,1592 once,13,kingrichardiii,1592 thine,13,kingrichardiii,1592 why,13,kingrichardiii,1592 heavy,13,kingrichardiii,1592 own,13,kingrichardiii,1592 Shall,13,kingrichardiii,1592 Even,13,kingrichardiii,1592 please,13,kingrichardiii,1592 till,13,kingrichardiii,1592 comfort,13,kingrichardiii,1592 Henry,13,kingrichardiii,1592 battle,13,kingrichardiii,1592 whom,13,kingrichardiii,1592 liege,13,kingrichardiii,1592 last,13,kingrichardiii,1592 Tell,14,kingrichardiii,1592 pray,14,kingrichardiii,1592 full,14,kingrichardiii,1592 false,14,kingrichardiii,1592 rest,14,kingrichardiii,1592 mean,14,kingrichardiii,1592 since,14,kingrichardiii,1592 despair,14,kingrichardiii,1592 put,14,kingrichardiii,1592 George,14,kingrichardiii,1592 high,14,kingrichardiii,1592 end,14,kingrichardiii,1592 They,14,kingrichardiii,1592 Stanley,14,kingrichardiii,1592 Third,14,kingrichardiii,1592 sorrow,14,kingrichardiii,1592 London,14,kingrichardiii,1592 word,14,kingrichardiii,1592 NORFOLK,14,kingrichardiii,1592 great,14,kingrichardiii,1592 Rivers,14,kingrichardiii,1592 princely,14,kingrichardiii,1592 thought,15,kingrichardiii,1592 hell,15,kingrichardiii,1592 looks,15,kingrichardiii,1592 Mayor,15,kingrichardiii,1592 tent,15,kingrichardiii,1592 bid,15,kingrichardiii,1592 deed,15,kingrichardiii,1592 cousin,15,kingrichardiii,1592 Yet,15,kingrichardiii,1592 mighty,15,kingrichardiii,1592 hast,15,kingrichardiii,1592 Than,15,kingrichardiii,1592 right,15,kingrichardiii,1592 TYRREL,15,kingrichardiii,1592 none,15,kingrichardiii,1592 tender,15,kingrichardiii,1592 yours,15,kingrichardiii,1592 knows,15,kingrichardiii,1592 way,15,kingrichardiii,1592 'Tis,15,kingrichardiii,1592 souls,15,kingrichardiii,1592 madam,15,kingrichardiii,1592 told,16,kingrichardiii,1592 days,16,kingrichardiii,1592 Upon,16,kingrichardiii,1592 better,16,kingrichardiii,1592 fight,16,kingrichardiii,1592 Be,16,kingrichardiii,1592 It,16,kingrichardiii,1592 dost,16,kingrichardiii,1592 hate,16,kingrichardiii,1592 Sir,16,kingrichardiii,1592 comes,16,kingrichardiii,1592 ever,16,kingrichardiii,1592 lives,16,kingrichardiii,1592 house,16,kingrichardiii,1592 might,16,kingrichardiii,1592 kill,16,kingrichardiii,1592 crown,16,kingrichardiii,1592 set,17,kingrichardiii,1592 cause,17,kingrichardiii,1592 doubt,17,kingrichardiii,1592 DORSET,17,kingrichardiii,1592 little,17,kingrichardiii,1592 majesty,17,kingrichardiii,1592 many,17,kingrichardiii,1592 arms,17,kingrichardiii,1592 fall,17,kingrichardiii,1592 hope,17,kingrichardiii,1592 Ay,18,kingrichardiii,1592 lords,18,kingrichardiii,1592 nor,18,kingrichardiii,1592 Well,18,kingrichardiii,1592 happy,18,kingrichardiii,1592 Let,18,kingrichardiii,1592 sleep,18,kingrichardiii,1592 horse,19,kingrichardiii,1592 head,19,kingrichardiii,1592 Duke,19,kingrichardiii,1592 against,19,kingrichardiii,1592 We,19,kingrichardiii,1592 Or,19,kingrichardiii,1592 curse,19,kingrichardiii,1592 God's,19,kingrichardiii,1592 bear,19,kingrichardiii,1592 dear,19,kingrichardiii,1592 art,19,kingrichardiii,1592 All,19,kingrichardiii,1592 before,19,kingrichardiii,1592 uncle,19,kingrichardiii,1592 sweet,19,kingrichardiii,1592 thus,19,kingrichardiii,1592 leave,19,kingrichardiii,1592 sovereign,19,kingrichardiii,1592 daughter,20,kingrichardiii,1592 Go,20,kingrichardiii,1592 Good,20,kingrichardiii,1592 deep,20,kingrichardiii,1592 look,20,kingrichardiii,1592 husband,20,kingrichardiii,1592 where,20,kingrichardiii,1592 still,20,kingrichardiii,1592 PRINCE,20,kingrichardiii,1592 true,20,kingrichardiii,1592 down,21,kingrichardiii,1592 been,21,kingrichardiii,1592 Have,21,kingrichardiii,1592 This,21,kingrichardiii,1592 mind,21,kingrichardiii,1592 Catesby,21,kingrichardiii,1592 duke,21,kingrichardiii,1592 being,21,kingrichardiii,1592 ',22,kingrichardiii,1592 Gloucester,22,kingrichardiii,1592 Thy,22,kingrichardiii,1592 Edward's,22,kingrichardiii,1592 such,23,kingrichardiii,1592 children,23,kingrichardiii,1592 an,23,kingrichardiii,1592 those,23,kingrichardiii,1592 again,23,kingrichardiii,1592 out,23,kingrichardiii,1592 wife,23,kingrichardiii,1592 STANLEY,24,kingrichardiii,1592 Is,24,kingrichardiii,1592 long,24,kingrichardiii,1592 prince,24,kingrichardiii,1592 young,24,kingrichardiii,1592 BRAKENBURY,24,kingrichardiii,1592 DERBY,24,kingrichardiii,1592 holy,24,kingrichardiii,1592 unto,24,kingrichardiii,1592 Ghost,24,kingrichardiii,1592 poor,24,kingrichardiii,1592 men,24,kingrichardiii,1592 other,24,kingrichardiii,1592 peace,25,kingrichardiii,1592 world,25,kingrichardiii,1592 Now,25,kingrichardiii,1592 fear,25,kingrichardiii,1592 heaven,25,kingrichardiii,1592 name,25,kingrichardiii,1592 any,25,kingrichardiii,1592 ACT,25,kingrichardiii,1592 think,25,kingrichardiii,1592 Where,25,kingrichardiii,1592 both,26,kingrichardiii,1592 Of,26,kingrichardiii,1592 IV,26,kingrichardiii,1592 hand,26,kingrichardiii,1592 gentle,26,kingrichardiii,1592 bloody,26,kingrichardiii,1592 who,26,kingrichardiii,1592 Citizen,26,kingrichardiii,1592 York,26,kingrichardiii,1592 father,26,kingrichardiii,1592 SCENE,26,kingrichardiii,1592 much,27,kingrichardiii,1592 gracious,27,kingrichardiii,1592 hear,27,kingrichardiii,1592 His,27,kingrichardiii,1592 can,27,kingrichardiii,1592 royal,28,kingrichardiii,1592 In,28,kingrichardiii,1592 night,28,kingrichardiii,1592 most,28,kingrichardiii,1592 speak,28,kingrichardiii,1592 morrow,28,kingrichardiii,1592 news,28,kingrichardiii,1592 eyes,28,kingrichardiii,1592 With,29,kingrichardiii,1592 how,29,kingrichardiii,1592 fair,29,kingrichardiii,1592 Messenger,29,kingrichardiii,1592 two,29,kingrichardiii,1592 life,30,kingrichardiii,1592 RICHMOND,30,kingrichardiii,1592 By,30,kingrichardiii,1592 yet,30,kingrichardiii,1592 Hastings,30,kingrichardiii,1592 cannot,30,kingrichardiii,1592 friends,31,kingrichardiii,1592 Who,31,kingrichardiii,1592 Tower,31,kingrichardiii,1592 give,31,kingrichardiii,1592 up,31,kingrichardiii,1592 King,31,kingrichardiii,1592 Then,31,kingrichardiii,1592 queen,31,kingrichardiii,1592 RATCLIFF,31,kingrichardiii,1592 Come,32,kingrichardiii,1592 RIVERS,32,kingrichardiii,1592 never,32,kingrichardiii,1592 doth,32,kingrichardiii,1592 How,32,kingrichardiii,1592 Thou,32,kingrichardiii,1592 Richmond,32,kingrichardiii,1592 take,32,kingrichardiii,1592 When,32,kingrichardiii,1592 must,33,kingrichardiii,1592 which,34,kingrichardiii,1592 tell,34,kingrichardiii,1592 know,34,kingrichardiii,1592 made,34,kingrichardiii,1592 Exit,34,kingrichardiii,1592 die,34,kingrichardiii,1592 these,35,kingrichardiii,1592 You,35,kingrichardiii,1592 done,35,kingrichardiii,1592 Your,35,kingrichardiii,1592 see,36,kingrichardiii,1592 than,36,kingrichardiii,1592 Exeunt,36,kingrichardiii,1592 heart,36,kingrichardiii,1592 EDWARD,36,kingrichardiii,1592 too,36,kingrichardiii,1592 there,37,kingrichardiii,1592 No,37,kingrichardiii,1592 noble,37,kingrichardiii,1592 Buckingham,38,kingrichardiii,1592 like,38,kingrichardiii,1592 brother,38,kingrichardiii,1592 live,38,kingrichardiii,1592 some,39,kingrichardiii,1592 she,39,kingrichardiii,1592 So,39,kingrichardiii,1592 dead,39,kingrichardiii,1592 myself,39,kingrichardiii,1592 MARGARET,39,kingrichardiii,1592 man,39,kingrichardiii,1592 Why,40,kingrichardiii,1592 blood,40,kingrichardiii,1592 Second,40,kingrichardiii,1592 go,41,kingrichardiii,1592 Clarence,41,kingrichardiii,1592 make,41,kingrichardiii,1592 mine,41,kingrichardiii,1592 CLARENCE,41,kingrichardiii,1592 mother,42,kingrichardiii,1592 He,42,kingrichardiii,1592 Richard,42,kingrichardiii,1592 one,42,kingrichardiii,1592 should,44,kingrichardiii,1592 time,44,kingrichardiii,1592 let,44,kingrichardiii,1592 As,45,kingrichardiii,1592 or,45,kingrichardiii,1592 more,45,kingrichardiii,1592 here,46,kingrichardiii,1592 soul,46,kingrichardiii,1592 son,46,kingrichardiii,1592 had,47,kingrichardiii,1592 First,47,kingrichardiii,1592 when,47,kingrichardiii,1592 come,48,kingrichardiii,1592 did,48,kingrichardiii,1592 I'll,49,kingrichardiii,1592 DUCHESS,49,kingrichardiii,1592 me,305,kingrichardiii,1592 upon,50,kingrichardiii,1592 Edward,50,kingrichardiii,1592 Which,51,kingrichardiii,1592 may,51,kingrichardiii,1592 say,52,kingrichardiii,1592 if,53,kingrichardiii,1592 hath,54,kingrichardiii,1592 CATESBY,54,kingrichardiii,1592 would,55,kingrichardiii,1592 day,56,kingrichardiii,1592 If,58,kingrichardiii,1592 LADY,58,kingrichardiii,1592 am,59,kingrichardiii,1592 ANNE,59,kingrichardiii,1592 well,59,kingrichardiii,1592 grace,60,kingrichardiii,1592 a,316,kingrichardiii,1592 HASTINGS,61,kingrichardiii,1592 us,61,kingrichardiii,1592 were,61,kingrichardiii,1592 And,317,kingrichardiii,1592 A,62,kingrichardiii,1592 then,62,kingrichardiii,1592 love,63,kingrichardiii,1592 that,319,kingrichardiii,1592 them,64,kingrichardiii,1592 OF,65,kingrichardiii,1592 Murderer,65,kingrichardiii,1592 For,66,kingrichardiii,1592 death,68,kingrichardiii,1592 king,68,kingrichardiii,1592 Lord,72,kingrichardiii,1592 now,73,kingrichardiii,1592 and,585,kingrichardiii,1592 they,75,kingrichardiii,1592 was,76,kingrichardiii,1592 What,77,kingrichardiii,1592 O,80,kingrichardiii,1592 their,80,kingrichardiii,1592 YORK,80,kingrichardiii,1592 the,848,kingrichardiii,1592 no,81,kingrichardiii,1592 Enter,84,kingrichardiii,1592 what,85,kingrichardiii,1592 at,86,kingrichardiii,1592 My,87,kingrichardiii,1592 from,88,kingrichardiii,1592 God,89,kingrichardiii,1592 are,91,kingrichardiii,1592 you,347,kingrichardiii,1592 shall,93,kingrichardiii,1592 as,95,kingrichardiii,1592 we,95,kingrichardiii,1592 do,96,kingrichardiii,1592 But,97,kingrichardiii,1592 good,100,kingrichardiii,1592 That,101,kingrichardiii,1592 but,107,kingrichardiii,1592 ELIZABETH,108,kingrichardiii,1592 our,110,kingrichardiii,1592 BUCKINGHAM,114,kingrichardiii,1592 her,116,kingrichardiii,1592 in,382,kingrichardiii,1592 to,643,kingrichardiii,1592 thee,133,kingrichardiii,1592 all,133,kingrichardiii,1592 so,133,kingrichardiii,1592 on,138,kingrichardiii,1592 by,142,kingrichardiii,1592 The,143,kingrichardiii,1592 of,655,kingrichardiii,1592 will,144,kingrichardiii,1592 QUEEN,144,kingrichardiii,1592 To,157,kingrichardiii,1592 him,166,kingrichardiii,1592 lord,166,kingrichardiii,1592 he,173,kingrichardiii,1592 have,175,kingrichardiii,1592 thou,178,kingrichardiii,1592 this,179,kingrichardiii,1592 GLOUCESTER,182,kingrichardiii,1592 thy,187,kingrichardiii,1592 RICHARD,188,kingrichardiii,1592 III,198,kingrichardiii,1592 KING,201,kingrichardiii,1592 it,202,kingrichardiii,1592 I,715,kingrichardiii,1592 be,210,kingrichardiii,1592 for,215,kingrichardiii,1592 his,222,kingrichardiii,1592 with,235,kingrichardiii,1592 your,239,kingrichardiii,1592 is,246,kingrichardiii,1592 not,254,kingrichardiii,1592 attended,1,romeoandjuliet,1596 plagues,1,romeoandjuliet,1596 treason,1,romeoandjuliet,1596 pitcher,1,romeoandjuliet,1596 affords,1,romeoandjuliet,1596 discharged,1,romeoandjuliet,1596 fear'st,1,romeoandjuliet,1596 religion,1,romeoandjuliet,1596 pleading,1,romeoandjuliet,1596 scathe,1,romeoandjuliet,1596 cage,1,romeoandjuliet,1596 steads,1,romeoandjuliet,1596 James,1,romeoandjuliet,1596 troubled,1,romeoandjuliet,1596 crow'd,1,romeoandjuliet,1596 prayers',1,romeoandjuliet,1596 Maintains,1,romeoandjuliet,1596 scrape,1,romeoandjuliet,1596 seducing,1,romeoandjuliet,1596 'broad,1,romeoandjuliet,1596 encamp,1,romeoandjuliet,1596 effeminate,1,romeoandjuliet,1596 truce,1,romeoandjuliet,1596 moral,1,romeoandjuliet,1596 sped,1,romeoandjuliet,1596 ignorance,1,romeoandjuliet,1596 parted,1,romeoandjuliet,1596 jaunt,1,romeoandjuliet,1596 Stands,1,romeoandjuliet,1596 ropes,1,romeoandjuliet,1596 absolved,1,romeoandjuliet,1596 manes,1,romeoandjuliet,1596 suffer,1,romeoandjuliet,1596 cutting,1,romeoandjuliet,1596 join,1,romeoandjuliet,1596 mistaking,1,romeoandjuliet,1596 medlars,1,romeoandjuliet,1596 profess'd,1,romeoandjuliet,1596 absolver,1,romeoandjuliet,1596 pestilence,1,romeoandjuliet,1596 Proud,1,romeoandjuliet,1596 extremity,1,romeoandjuliet,1596 drop,1,romeoandjuliet,1596 tool,1,romeoandjuliet,1596 infant,1,romeoandjuliet,1596 reclaim'd,1,romeoandjuliet,1596 dined,1,romeoandjuliet,1596 darest,1,romeoandjuliet,1596 reputation,1,romeoandjuliet,1596 lengthens,1,romeoandjuliet,1596 unrest,1,romeoandjuliet,1596 yielding,1,romeoandjuliet,1596 direful,1,romeoandjuliet,1596 Adam,1,romeoandjuliet,1596 Hear,1,romeoandjuliet,1596 double,1,romeoandjuliet,1596 rank'd,1,romeoandjuliet,1596 country,1,romeoandjuliet,1596 forswear,1,romeoandjuliet,1596 dream'd,1,romeoandjuliet,1596 speech,1,romeoandjuliet,1596 contradict,1,romeoandjuliet,1596 unfurnished,1,romeoandjuliet,1596 conjurations,1,romeoandjuliet,1596 brightness,1,romeoandjuliet,1596 following,1,romeoandjuliet,1596 treasure,1,romeoandjuliet,1596 lament,1,romeoandjuliet,1596 Whole,1,romeoandjuliet,1596 torn,1,romeoandjuliet,1596 peruse,1,romeoandjuliet,1596 wicked,1,romeoandjuliet,1596 dine,1,romeoandjuliet,1596 convoy,1,romeoandjuliet,1596 female,1,romeoandjuliet,1596 Switch,1,romeoandjuliet,1596 hasty,1,romeoandjuliet,1596 rigour,1,romeoandjuliet,1596 disparagement,1,romeoandjuliet,1596 rode,1,romeoandjuliet,1596 Villain,1,romeoandjuliet,1596 confusion's,1,romeoandjuliet,1596 distill'd,1,romeoandjuliet,1596 'marry',1,romeoandjuliet,1596 'Signior,1,romeoandjuliet,1596 purge,1,romeoandjuliet,1596 Bondage,1,romeoandjuliet,1596 resign,1,romeoandjuliet,1596 health,1,romeoandjuliet,1596 waddled,1,romeoandjuliet,1596 matron,1,romeoandjuliet,1596 Condemned,1,romeoandjuliet,1596 steals,1,romeoandjuliet,1596 stopp'd,1,romeoandjuliet,1596 roe,1,romeoandjuliet,1596 Bear,1,romeoandjuliet,1596 Wisely,1,romeoandjuliet,1596 ambling,1,romeoandjuliet,1596 Howlings,1,romeoandjuliet,1596 simples,1,romeoandjuliet,1596 bucklers,1,romeoandjuliet,1596 boys,1,romeoandjuliet,1596 expect'st,1,romeoandjuliet,1596 waxes,1,romeoandjuliet,1596 devouring,1,romeoandjuliet,1596 painter,1,romeoandjuliet,1596 speedy,1,romeoandjuliet,1596 Rebellious,1,romeoandjuliet,1596 Never,1,romeoandjuliet,1596 toes,1,romeoandjuliet,1596 dire,1,romeoandjuliet,1596 wailing,1,romeoandjuliet,1596 swifter,1,romeoandjuliet,1596 drowsy,1,romeoandjuliet,1596 clears,1,romeoandjuliet,1596 furthest,1,romeoandjuliet,1596 despised,1,romeoandjuliet,1596 warning,1,romeoandjuliet,1596 assailing,1,romeoandjuliet,1596 frowning,1,romeoandjuliet,1596 eight,1,romeoandjuliet,1596 sisters,1,romeoandjuliet,1596 writes,1,romeoandjuliet,1596 penalty,1,romeoandjuliet,1596 younger,1,romeoandjuliet,1596 darkness,1,romeoandjuliet,1596 painted,1,romeoandjuliet,1596 clothes,1,romeoandjuliet,1596 contract,1,romeoandjuliet,1596 palmers',1,romeoandjuliet,1596 pardon'd,1,romeoandjuliet,1596 unreasonable,1,romeoandjuliet,1596 groan,1,romeoandjuliet,1596 trunk,1,romeoandjuliet,1596 schoolboys,1,romeoandjuliet,1596 mean'st,1,romeoandjuliet,1596 Black,1,romeoandjuliet,1596 Beguiled,1,romeoandjuliet,1596 hate's,1,romeoandjuliet,1596 prisoner,1,romeoandjuliet,1596 gorgeous,1,romeoandjuliet,1596 errand,1,romeoandjuliet,1596 drum,1,romeoandjuliet,1596 utterance,1,romeoandjuliet,1596 potion's,1,romeoandjuliet,1596 comest,1,romeoandjuliet,1596 Unworthy,1,romeoandjuliet,1596 Doting,1,romeoandjuliet,1596 hearted,1,romeoandjuliet,1596 abound'st,1,romeoandjuliet,1596 cheering,1,romeoandjuliet,1596 properer,1,romeoandjuliet,1596 bandying,1,romeoandjuliet,1596 adversary,1,romeoandjuliet,1596 rid,1,romeoandjuliet,1596 looked,1,romeoandjuliet,1596 naked,1,romeoandjuliet,1596 angels,1,romeoandjuliet,1596 Lovers,1,romeoandjuliet,1596 hanged,1,romeoandjuliet,1596 benefice,1,romeoandjuliet,1596 advance,1,romeoandjuliet,1596 summer's,1,romeoandjuliet,1596 ravening,1,romeoandjuliet,1596 wield,1,romeoandjuliet,1596 flow,1,romeoandjuliet,1596 its,1,romeoandjuliet,1596 lamentations,1,romeoandjuliet,1596 stretches,1,romeoandjuliet,1596 coated,1,romeoandjuliet,1596 strangled,1,romeoandjuliet,1596 although,1,romeoandjuliet,1596 Laura,1,romeoandjuliet,1596 louring,1,romeoandjuliet,1596 stumbled,1,romeoandjuliet,1596 worms,1,romeoandjuliet,1596 Contempt,1,romeoandjuliet,1596 pined,1,romeoandjuliet,1596 Sojourn,1,romeoandjuliet,1596 untaught,1,romeoandjuliet,1596 found'st,1,romeoandjuliet,1596 Snatching,1,romeoandjuliet,1596 Alla,1,romeoandjuliet,1596 sort,1,romeoandjuliet,1596 receptacle,1,romeoandjuliet,1596 lively,1,romeoandjuliet,1596 prest,1,romeoandjuliet,1596 bosom's,1,romeoandjuliet,1596 advise,1,romeoandjuliet,1596 consorted,1,romeoandjuliet,1596 odds,1,romeoandjuliet,1596 worshipp'd,1,romeoandjuliet,1596 sore,1,romeoandjuliet,1596 Jacks,1,romeoandjuliet,1596 ancestors,1,romeoandjuliet,1596 stools,1,romeoandjuliet,1596 tilts,1,romeoandjuliet,1596 unattainted,1,romeoandjuliet,1596 snowy,1,romeoandjuliet,1596 perverse,1,romeoandjuliet,1596 lief,1,romeoandjuliet,1596 Catling,1,romeoandjuliet,1596 showering,1,romeoandjuliet,1596 impute,1,romeoandjuliet,1596 tyrannous,1,romeoandjuliet,1596 whoreson,1,romeoandjuliet,1596 clasps,1,romeoandjuliet,1596 shoemaker,1,romeoandjuliet,1596 bower,1,romeoandjuliet,1596 curious,1,romeoandjuliet,1596 PERSONAE,1,romeoandjuliet,1596 wither,1,romeoandjuliet,1596 considering,1,romeoandjuliet,1596 Light,1,romeoandjuliet,1596 boy's,1,romeoandjuliet,1596 demand,1,romeoandjuliet,1596 Night's,1,romeoandjuliet,1596 goeth,1,romeoandjuliet,1596 Remnants,1,romeoandjuliet,1596 attempt,1,romeoandjuliet,1596 walking,1,romeoandjuliet,1596 argues,1,romeoandjuliet,1596 Tickle,1,romeoandjuliet,1596 Once,1,romeoandjuliet,1596 vast,1,romeoandjuliet,1596 agrees,1,romeoandjuliet,1596 shrieks,1,romeoandjuliet,1596 stirring,1,romeoandjuliet,1596 Earth,1,romeoandjuliet,1596 exhales,1,romeoandjuliet,1596 martyr'd,1,romeoandjuliet,1596 lacks,1,romeoandjuliet,1596 bladders,1,romeoandjuliet,1596 After,1,romeoandjuliet,1596 grubs,1,romeoandjuliet,1596 stock,1,romeoandjuliet,1596 sadly,1,romeoandjuliet,1596 Griefs,1,romeoandjuliet,1596 performing,1,romeoandjuliet,1596 pink,1,romeoandjuliet,1596 grove,1,romeoandjuliet,1596 behests,1,romeoandjuliet,1596 befits,1,romeoandjuliet,1596 bearing,1,romeoandjuliet,1596 betake,1,romeoandjuliet,1596 stream,1,romeoandjuliet,1596 assembly,1,romeoandjuliet,1596 afire,1,romeoandjuliet,1596 Jove,1,romeoandjuliet,1596 Cold,1,romeoandjuliet,1596 Pink,1,romeoandjuliet,1596 opposed,1,romeoandjuliet,1596 lustier,1,romeoandjuliet,1596 pilgrimage,1,romeoandjuliet,1596 lamentation,1,romeoandjuliet,1596 resolve,1,romeoandjuliet,1596 Blind,1,romeoandjuliet,1596 drag,1,romeoandjuliet,1596 confounds,1,romeoandjuliet,1596 gracious,1,romeoandjuliet,1596 broken,1,romeoandjuliet,1596 amended,1,romeoandjuliet,1596 maidenheads,1,romeoandjuliet,1596 Mercy,1,romeoandjuliet,1596 subjects,1,romeoandjuliet,1596 Bliss,1,romeoandjuliet,1596 trumpet,1,romeoandjuliet,1596 Much,1,romeoandjuliet,1596 honestly,1,romeoandjuliet,1596 heat,1,romeoandjuliet,1596 revels,1,romeoandjuliet,1596 roar'd,1,romeoandjuliet,1596 budge,1,romeoandjuliet,1596 cockatrice,1,romeoandjuliet,1596 necessaries,1,romeoandjuliet,1596 sententious,1,romeoandjuliet,1596 'Tybalt,1,romeoandjuliet,1596 oppress,1,romeoandjuliet,1596 shanks,1,romeoandjuliet,1596 adjacent,1,romeoandjuliet,1596 voices,1,romeoandjuliet,1596 madness,1,romeoandjuliet,1596 chop,1,romeoandjuliet,1596 knaves,1,romeoandjuliet,1596 repetition,1,romeoandjuliet,1596 soonest,1,romeoandjuliet,1596 gross,1,romeoandjuliet,1596 breaks,1,romeoandjuliet,1596 stifled,1,romeoandjuliet,1596 hanging,1,romeoandjuliet,1596 Seal'd,1,romeoandjuliet,1596 finding,1,romeoandjuliet,1596 jour,1,romeoandjuliet,1596 Eyes,1,romeoandjuliet,1596 rites,1,romeoandjuliet,1596 wrong'st,1,romeoandjuliet,1596 wantons,1,romeoandjuliet,1596 grievance,1,romeoandjuliet,1596 Pale,1,romeoandjuliet,1596 Methinks,1,romeoandjuliet,1596 furious,1,romeoandjuliet,1596 cricket's,1,romeoandjuliet,1596 pastry,1,romeoandjuliet,1596 fume,1,romeoandjuliet,1596 runagate,1,romeoandjuliet,1596 calamity,1,romeoandjuliet,1596 wait,1,romeoandjuliet,1596 lesser,1,romeoandjuliet,1596 wail,1,romeoandjuliet,1596 arithmetic,1,romeoandjuliet,1596 kin,1,romeoandjuliet,1596 coldly,1,romeoandjuliet,1596 courtiers',1,romeoandjuliet,1596 defiance,1,romeoandjuliet,1596 limits,1,romeoandjuliet,1596 perjured,1,romeoandjuliet,1596 Belonging,1,romeoandjuliet,1596 Gentle,1,romeoandjuliet,1596 tortoise,1,romeoandjuliet,1596 prudence,1,romeoandjuliet,1596 stealth,1,romeoandjuliet,1596 ladies',1,romeoandjuliet,1596 discovery,1,romeoandjuliet,1596 Perchance,1,romeoandjuliet,1596 parson's,1,romeoandjuliet,1596 Inherit,1,romeoandjuliet,1596 pursuing,1,romeoandjuliet,1596 execution,1,romeoandjuliet,1596 six,1,romeoandjuliet,1596 distraught,1,romeoandjuliet,1596 weaker,1,romeoandjuliet,1596 acted,1,romeoandjuliet,1596 sheathed,1,romeoandjuliet,1596 perch,1,romeoandjuliet,1596 compliment,1,romeoandjuliet,1596 riband,1,romeoandjuliet,1596 spheres,1,romeoandjuliet,1596 talked,1,romeoandjuliet,1596 Misshapen,1,romeoandjuliet,1596 ordained,1,romeoandjuliet,1596 sunset,1,romeoandjuliet,1596 Retain,1,romeoandjuliet,1596 faithfully,1,romeoandjuliet,1596 conceive,1,romeoandjuliet,1596 Phoebus',1,romeoandjuliet,1596 Franciscans,1,romeoandjuliet,1596 Cynthia's,1,romeoandjuliet,1596 violently,1,romeoandjuliet,1596 Happily,1,romeoandjuliet,1596 stoccata,1,romeoandjuliet,1596 brisk,1,romeoandjuliet,1596 'twere,1,romeoandjuliet,1596 deceased,1,romeoandjuliet,1596 spider's,1,romeoandjuliet,1596 thou's,1,romeoandjuliet,1596 wagon,1,romeoandjuliet,1596 Cophetua,1,romeoandjuliet,1596 Vitravio,1,romeoandjuliet,1596 Lifts,1,romeoandjuliet,1596 fleer,1,romeoandjuliet,1596 scourge,1,romeoandjuliet,1596 felon,1,romeoandjuliet,1596 containing,1,romeoandjuliet,1596 deprived,1,romeoandjuliet,1596 portentous,1,romeoandjuliet,1596 saying,1,romeoandjuliet,1596 Driving,1,romeoandjuliet,1596 monarch,1,romeoandjuliet,1596 thankings,1,romeoandjuliet,1596 coals,1,romeoandjuliet,1596 fiddlestick,1,romeoandjuliet,1596 mongers,1,romeoandjuliet,1596 'When,1,romeoandjuliet,1596 hereabout,1,romeoandjuliet,1596 society,1,romeoandjuliet,1596 ripening,1,romeoandjuliet,1596 tithe,1,romeoandjuliet,1596 deceit,1,romeoandjuliet,1596 languish,1,romeoandjuliet,1596 Going,1,romeoandjuliet,1596 peevish,1,romeoandjuliet,1596 beasts,1,romeoandjuliet,1596 fell,1,romeoandjuliet,1596 abused,1,romeoandjuliet,1596 collar,1,romeoandjuliet,1596 glide,1,romeoandjuliet,1596 score,1,romeoandjuliet,1596 peril,1,romeoandjuliet,1596 livest,1,romeoandjuliet,1596 birds,1,romeoandjuliet,1596 deliver,1,romeoandjuliet,1596 combine,1,romeoandjuliet,1596 embrace,1,romeoandjuliet,1596 worth,1,romeoandjuliet,1596 darting,1,romeoandjuliet,1596 murdered,1,romeoandjuliet,1596 abuses,1,romeoandjuliet,1596 skill,1,romeoandjuliet,1596 experienced,1,romeoandjuliet,1596 becomed,1,romeoandjuliet,1596 bringing,1,romeoandjuliet,1596 children's,1,romeoandjuliet,1596 sycamore,1,romeoandjuliet,1596 follower,1,romeoandjuliet,1596 subject,1,romeoandjuliet,1596 constrains,1,romeoandjuliet,1596 deliciousness,1,romeoandjuliet,1596 mantle,1,romeoandjuliet,1596 looking,1,romeoandjuliet,1596 Martino,1,romeoandjuliet,1596 procures,1,romeoandjuliet,1596 stumblest,1,romeoandjuliet,1596 belonging,1,romeoandjuliet,1596 Their,1,romeoandjuliet,1596 kindly,1,romeoandjuliet,1596 bow'd,1,romeoandjuliet,1596 't,1,romeoandjuliet,1596 disgrace,1,romeoandjuliet,1596 unmann'd,1,romeoandjuliet,1596 Petrucio,1,romeoandjuliet,1596 study,1,romeoandjuliet,1596 chat,1,romeoandjuliet,1596 extremities,1,romeoandjuliet,1596 Prodigious,1,romeoandjuliet,1596 pitiful,1,romeoandjuliet,1596 level,1,romeoandjuliet,1596 misbehaved,1,romeoandjuliet,1596 sets,1,romeoandjuliet,1596 childhood,1,romeoandjuliet,1596 Watchmen,1,romeoandjuliet,1596 pieces,1,romeoandjuliet,1596 freezes,1,romeoandjuliet,1596 thin,1,romeoandjuliet,1596 scope,1,romeoandjuliet,1596 becomes,1,romeoandjuliet,1596 sends,1,romeoandjuliet,1596 cheers,1,romeoandjuliet,1596 ourselves,1,romeoandjuliet,1596 minion,1,romeoandjuliet,1596 worst,1,romeoandjuliet,1596 shriek,1,romeoandjuliet,1596 rear,1,romeoandjuliet,1596 esteem,1,romeoandjuliet,1596 Guests,1,romeoandjuliet,1596 offence,1,romeoandjuliet,1596 thrusts,1,romeoandjuliet,1596 occupy,1,romeoandjuliet,1596 skins,1,romeoandjuliet,1596 guide,1,romeoandjuliet,1596 redeem,1,romeoandjuliet,1596 heartsick,1,romeoandjuliet,1596 rung,1,romeoandjuliet,1596 turning,1,romeoandjuliet,1596 danced,1,romeoandjuliet,1596 dismember'd,1,romeoandjuliet,1596 snow,1,romeoandjuliet,1596 points,1,romeoandjuliet,1596 conceit,1,romeoandjuliet,1596 portly,1,romeoandjuliet,1596 monster,1,romeoandjuliet,1596 rush'd,1,romeoandjuliet,1596 afraid,1,romeoandjuliet,1596 unhallow'd,1,romeoandjuliet,1596 burneth,1,romeoandjuliet,1596 brags,1,romeoandjuliet,1596 figure,1,romeoandjuliet,1596 grub,1,romeoandjuliet,1596 treading,1,romeoandjuliet,1596 seeds,1,romeoandjuliet,1596 bliss,1,romeoandjuliet,1596 Wash,1,romeoandjuliet,1596 combined,1,romeoandjuliet,1596 mixture,1,romeoandjuliet,1596 beggarly,1,romeoandjuliet,1596 runs,1,romeoandjuliet,1596 Warm,1,romeoandjuliet,1596 Younger,1,romeoandjuliet,1596 variable,1,romeoandjuliet,1596 word's,1,romeoandjuliet,1596 brow'd,1,romeoandjuliet,1596 terms,1,romeoandjuliet,1596 loose,1,romeoandjuliet,1596 seeks,1,romeoandjuliet,1596 cherish,1,romeoandjuliet,1596 mark'd,1,romeoandjuliet,1596 moonshine's,1,romeoandjuliet,1596 bout,1,romeoandjuliet,1596 worthy,1,romeoandjuliet,1596 Leave,1,romeoandjuliet,1596 princes,1,romeoandjuliet,1596 Unplagued,1,romeoandjuliet,1596 crossing,1,romeoandjuliet,1596 misapplied,1,romeoandjuliet,1596 overthrown,1,romeoandjuliet,1596 shining,1,romeoandjuliet,1596 govern'd,1,romeoandjuliet,1596 singer,1,romeoandjuliet,1596 elder,1,romeoandjuliet,1596 Hero,1,romeoandjuliet,1596 brace,1,romeoandjuliet,1596 reverence,1,romeoandjuliet,1596 rust,1,romeoandjuliet,1596 bowl,1,romeoandjuliet,1596 girls,1,romeoandjuliet,1596 circled,1,romeoandjuliet,1596 feet,1,romeoandjuliet,1596 promise,1,romeoandjuliet,1596 descent,1,romeoandjuliet,1596 fees,1,romeoandjuliet,1596 Petrarch,1,romeoandjuliet,1596 sauce,1,romeoandjuliet,1596 Spare,1,romeoandjuliet,1596 climbs,1,romeoandjuliet,1596 plainly,1,romeoandjuliet,1596 Forbidden,1,romeoandjuliet,1596 infinite,1,romeoandjuliet,1596 hoodwink'd,1,romeoandjuliet,1596 humbly,1,romeoandjuliet,1596 desirest,1,romeoandjuliet,1596 overthrows,1,romeoandjuliet,1596 beaten,1,romeoandjuliet,1596 masters,1,romeoandjuliet,1596 Search,1,romeoandjuliet,1596 brine,1,romeoandjuliet,1596 dial,1,romeoandjuliet,1596 Tybalts,1,romeoandjuliet,1596 Whereto,1,romeoandjuliet,1596 Old,1,romeoandjuliet,1596 wine,1,romeoandjuliet,1596 wink,1,romeoandjuliet,1596 attires,1,romeoandjuliet,1596 stuff'd,1,romeoandjuliet,1596 porter,1,romeoandjuliet,1596 putting,1,romeoandjuliet,1596 conveniently,1,romeoandjuliet,1596 Fly,1,romeoandjuliet,1596 gapes,1,romeoandjuliet,1596 bauble,1,romeoandjuliet,1596 cutt'st,1,romeoandjuliet,1596 shrine,1,romeoandjuliet,1596 language,1,romeoandjuliet,1596 traces,1,romeoandjuliet,1596 separated,1,romeoandjuliet,1596 proverb'd,1,romeoandjuliet,1596 dedicate,1,romeoandjuliet,1596 Alone,1,romeoandjuliet,1596 Placentio,1,romeoandjuliet,1596 title,1,romeoandjuliet,1596 respective,1,romeoandjuliet,1596 expressly,1,romeoandjuliet,1596 catch'd,1,romeoandjuliet,1596 fantasticoes,1,romeoandjuliet,1596 dearer,1,romeoandjuliet,1596 access,1,romeoandjuliet,1596 princox,1,romeoandjuliet,1596 cupboard,1,romeoandjuliet,1596 ensign,1,romeoandjuliet,1596 indite,1,romeoandjuliet,1596 Uneven,1,romeoandjuliet,1596 hated,1,romeoandjuliet,1596 importuned,1,romeoandjuliet,1596 Immediately,1,romeoandjuliet,1596 died,1,romeoandjuliet,1596 custom,1,romeoandjuliet,1596 usest,1,romeoandjuliet,1596 idles,1,romeoandjuliet,1596 thrown,1,romeoandjuliet,1596 eagle,1,romeoandjuliet,1596 talk'st,1,romeoandjuliet,1596 displeasure,1,romeoandjuliet,1596 Fetch,1,romeoandjuliet,1596 winning,1,romeoandjuliet,1596 blades,1,romeoandjuliet,1596 sinners',1,romeoandjuliet,1596 loins,1,romeoandjuliet,1596 distemperature,1,romeoandjuliet,1596 claps,1,romeoandjuliet,1596 spited,1,romeoandjuliet,1596 baked,1,romeoandjuliet,1596 pig's,1,romeoandjuliet,1596 wary,1,romeoandjuliet,1596 timeless,1,romeoandjuliet,1596 shuts,1,romeoandjuliet,1596 wash,1,romeoandjuliet,1596 bakes,1,romeoandjuliet,1596 join'd,1,romeoandjuliet,1596 Turning,1,romeoandjuliet,1596 revel,1,romeoandjuliet,1596 There's,1,romeoandjuliet,1596 manly,1,romeoandjuliet,1596 alliance,1,romeoandjuliet,1596 grasshoppers,1,romeoandjuliet,1596 Uncomfortable,1,romeoandjuliet,1596 praised,1,romeoandjuliet,1596 'Tybalt's,1,romeoandjuliet,1596 prevails,1,romeoandjuliet,1596 Follow,1,romeoandjuliet,1596 wayward,1,romeoandjuliet,1596 sympathy,1,romeoandjuliet,1596 hungry,1,romeoandjuliet,1596 substantial,1,romeoandjuliet,1596 fairest,1,romeoandjuliet,1596 pencil,1,romeoandjuliet,1596 bit,1,romeoandjuliet,1596 feather'd,1,romeoandjuliet,1596 unmade,1,romeoandjuliet,1596 senses,1,romeoandjuliet,1596 bills,1,romeoandjuliet,1596 Drinks,1,romeoandjuliet,1596 mickle,1,romeoandjuliet,1596 unadvised,1,romeoandjuliet,1596 Consort,1,romeoandjuliet,1596 aim'd,1,romeoandjuliet,1596 stumble,1,romeoandjuliet,1596 merriment,1,romeoandjuliet,1596 I',1,romeoandjuliet,1596 dishonourable,1,romeoandjuliet,1596 keys,1,romeoandjuliet,1596 digging,1,romeoandjuliet,1596 amerce,1,romeoandjuliet,1596 unkind,1,romeoandjuliet,1596 enjoy'd,1,romeoandjuliet,1596 melancholy,1,romeoandjuliet,1596 discreet,1,romeoandjuliet,1596 glooming,1,romeoandjuliet,1596 hai,1,romeoandjuliet,1596 backs,1,romeoandjuliet,1596 'Wilt,1,romeoandjuliet,1596 aboard,1,romeoandjuliet,1596 Whiter,1,romeoandjuliet,1596 While,1,romeoandjuliet,1596 A',1,romeoandjuliet,1596 drudge,1,romeoandjuliet,1596 hag,1,romeoandjuliet,1596 Phaethon,1,romeoandjuliet,1596 sweeten,1,romeoandjuliet,1596 sweeter,1,romeoandjuliet,1596 foes,1,romeoandjuliet,1596 Draws,1,romeoandjuliet,1596 Drawn,1,romeoandjuliet,1596 flowered,1,romeoandjuliet,1596 refuse,1,romeoandjuliet,1596 discern,1,romeoandjuliet,1596 alderman,1,romeoandjuliet,1596 Stabs,1,romeoandjuliet,1596 sigh,1,romeoandjuliet,1596 promotion,1,romeoandjuliet,1596 pout'st,1,romeoandjuliet,1596 Tiberio,1,romeoandjuliet,1596 pulse,1,romeoandjuliet,1596 Thisbe,1,romeoandjuliet,1596 Pitiful,1,romeoandjuliet,1596 perfection,1,romeoandjuliet,1596 depend,1,romeoandjuliet,1596 fool's,1,romeoandjuliet,1596 wronged,1,romeoandjuliet,1596 variance,1,romeoandjuliet,1596 slander'd,1,romeoandjuliet,1596 scarce,1,romeoandjuliet,1596 neither,1,romeoandjuliet,1596 bon,1,romeoandjuliet,1596 chaste,1,romeoandjuliet,1596 hilding,1,romeoandjuliet,1596 misgives,1,romeoandjuliet,1596 eternal,1,romeoandjuliet,1596 bedaub'd,1,romeoandjuliet,1596 thrills,1,romeoandjuliet,1596 strangers,1,romeoandjuliet,1596 deeds,1,romeoandjuliet,1596 distilled,1,romeoandjuliet,1596 shortly,1,romeoandjuliet,1596 unnatural,1,romeoandjuliet,1596 reason's,1,romeoandjuliet,1596 Sovereign,1,romeoandjuliet,1596 harlotry,1,romeoandjuliet,1596 ropery,1,romeoandjuliet,1596 hopes,1,romeoandjuliet,1596 By'r,1,romeoandjuliet,1596 Lo,1,romeoandjuliet,1596 O',1,romeoandjuliet,1596 Me,1,romeoandjuliet,1596 Supper,1,romeoandjuliet,1596 imagined,1,romeoandjuliet,1596 addle,1,romeoandjuliet,1596 'better,1,romeoandjuliet,1596 Singing,1,romeoandjuliet,1596 juiced,1,romeoandjuliet,1596 ladyship,1,romeoandjuliet,1596 kings,1,romeoandjuliet,1596 musty,1,romeoandjuliet,1596 gossip,1,romeoandjuliet,1596 osier,1,romeoandjuliet,1596 doves,1,romeoandjuliet,1596 hymns,1,romeoandjuliet,1596 butt,1,romeoandjuliet,1596 kept,1,romeoandjuliet,1596 Answer,1,romeoandjuliet,1596 star,1,romeoandjuliet,1596 denied,1,romeoandjuliet,1596 pen,1,romeoandjuliet,1596 preserving,1,romeoandjuliet,1596 begun,1,romeoandjuliet,1596 force,1,romeoandjuliet,1596 as't,1,romeoandjuliet,1596 closely,1,romeoandjuliet,1596 Hood,1,romeoandjuliet,1596 Ethiope's,1,romeoandjuliet,1596 teat,1,romeoandjuliet,1596 medicine,1,romeoandjuliet,1596 upturned,1,romeoandjuliet,1596 Raise,1,romeoandjuliet,1596 Ho,1,romeoandjuliet,1596 team,1,romeoandjuliet,1596 Lucentio,1,romeoandjuliet,1596 unruly,1,romeoandjuliet,1596 tallow,1,romeoandjuliet,1596 fan's,1,romeoandjuliet,1596 divinest,1,romeoandjuliet,1596 braggart,1,romeoandjuliet,1596 path,1,romeoandjuliet,1596 pate,1,romeoandjuliet,1596 whistles,1,romeoandjuliet,1596 dateless,1,romeoandjuliet,1596 Let's,1,romeoandjuliet,1596 drizzle,1,romeoandjuliet,1596 added,1,romeoandjuliet,1596 noses,1,romeoandjuliet,1596 enrich,1,romeoandjuliet,1596 condemned,1,romeoandjuliet,1596 pie,1,romeoandjuliet,1596 abhorred,1,romeoandjuliet,1596 Clubs,1,romeoandjuliet,1596 earl,1,romeoandjuliet,1596 pin,1,romeoandjuliet,1596 moderately,1,romeoandjuliet,1596 changes,1,romeoandjuliet,1596 pox,1,romeoandjuliet,1596 glorious,1,romeoandjuliet,1596 caetera,1,romeoandjuliet,1596 healthsome,1,romeoandjuliet,1596 VI,1,romeoandjuliet,1596 cull'd,1,romeoandjuliet,1596 nobly,1,romeoandjuliet,1596 shunn'd,1,romeoandjuliet,1596 groaning,1,romeoandjuliet,1596 obey,1,romeoandjuliet,1596 brawling,1,romeoandjuliet,1596 nick,1,romeoandjuliet,1596 valour's,1,romeoandjuliet,1596 Antony,1,romeoandjuliet,1596 Adieu,1,romeoandjuliet,1596 bating,1,romeoandjuliet,1596 Forgive,1,romeoandjuliet,1596 fishified,1,romeoandjuliet,1596 strain'd,1,romeoandjuliet,1596 offered,1,romeoandjuliet,1596 plants,1,romeoandjuliet,1596 bump,1,romeoandjuliet,1596 whore,1,romeoandjuliet,1596 Compare,1,romeoandjuliet,1596 messages,1,romeoandjuliet,1596 haunt,1,romeoandjuliet,1596 madmen,1,romeoandjuliet,1596 dumps,1,romeoandjuliet,1596 thorn,1,romeoandjuliet,1596 nipple,1,romeoandjuliet,1596 sorry,1,romeoandjuliet,1596 unworthiest,1,romeoandjuliet,1596 intrusion,1,romeoandjuliet,1596 tongue's,1,romeoandjuliet,1596 proportion,1,romeoandjuliet,1596 hills,1,romeoandjuliet,1596 Open,1,romeoandjuliet,1596 Adding,1,romeoandjuliet,1596 busy,1,romeoandjuliet,1596 Receive,1,romeoandjuliet,1596 deformities,1,romeoandjuliet,1596 Unseemly,1,romeoandjuliet,1596 canker,1,romeoandjuliet,1596 sooner,1,romeoandjuliet,1596 goodly,1,romeoandjuliet,1596 immediately,1,romeoandjuliet,1596 went'st,1,romeoandjuliet,1596 crush,1,romeoandjuliet,1596 Adversity's,1,romeoandjuliet,1596 neglecting,1,romeoandjuliet,1596 madman,1,romeoandjuliet,1596 meats,1,romeoandjuliet,1596 homely,1,romeoandjuliet,1596 sounds,1,romeoandjuliet,1596 pry,1,romeoandjuliet,1596 sorted,1,romeoandjuliet,1596 interrupt,1,romeoandjuliet,1596 tables,1,romeoandjuliet,1596 couch,1,romeoandjuliet,1596 weal,1,romeoandjuliet,1596 bent,1,romeoandjuliet,1596 gory,1,romeoandjuliet,1596 infectious,1,romeoandjuliet,1596 Strange,1,romeoandjuliet,1596 Life,1,romeoandjuliet,1596 baskets,1,romeoandjuliet,1596 people,1,romeoandjuliet,1596 Valentine,1,romeoandjuliet,1596 disperse,1,romeoandjuliet,1596 lamps,1,romeoandjuliet,1596 swashing,1,romeoandjuliet,1596 gadding,1,romeoandjuliet,1596 abbey,1,romeoandjuliet,1596 quivering,1,romeoandjuliet,1596 copest,1,romeoandjuliet,1596 cancell'd,1,romeoandjuliet,1596 Profaners,1,romeoandjuliet,1596 falconer's,1,romeoandjuliet,1596 gore,1,romeoandjuliet,1596 Angelica,1,romeoandjuliet,1596 Death's,1,romeoandjuliet,1596 Sailing,1,romeoandjuliet,1596 hours',1,romeoandjuliet,1596 prating,1,romeoandjuliet,1596 switch,1,romeoandjuliet,1596 buds,1,romeoandjuliet,1596 serpent,1,romeoandjuliet,1596 jewel,1,romeoandjuliet,1596 prorogue,1,romeoandjuliet,1596 Spanish,1,romeoandjuliet,1596 extreme,1,romeoandjuliet,1596 theme,1,romeoandjuliet,1596 friendly,1,romeoandjuliet,1596 tossed,1,romeoandjuliet,1596 anguish,1,romeoandjuliet,1596 gun,1,romeoandjuliet,1596 vaulty,1,romeoandjuliet,1596 Said,1,romeoandjuliet,1596 testify,1,romeoandjuliet,1596 curse,1,romeoandjuliet,1596 despite,1,romeoandjuliet,1596 fettle,1,romeoandjuliet,1596 vows,1,romeoandjuliet,1596 Ye,1,romeoandjuliet,1596 Above,1,romeoandjuliet,1596 submission,1,romeoandjuliet,1596 frowns,1,romeoandjuliet,1596 child's,1,romeoandjuliet,1596 hurry,1,romeoandjuliet,1596 steerage,1,romeoandjuliet,1596 Enough,1,romeoandjuliet,1596 gown,1,romeoandjuliet,1596 prolixity,1,romeoandjuliet,1596 Whate'er,1,romeoandjuliet,1596 admired,1,romeoandjuliet,1596 divine,1,romeoandjuliet,1596 perjuries,1,romeoandjuliet,1596 tuners,1,romeoandjuliet,1596 Miscarried,1,romeoandjuliet,1596 gate,1,romeoandjuliet,1596 harlots,1,romeoandjuliet,1596 unstain'd,1,romeoandjuliet,1596 charnel,1,romeoandjuliet,1596 Whither,1,romeoandjuliet,1596 stretch,1,romeoandjuliet,1596 pitch,1,romeoandjuliet,1596 heap'd,1,romeoandjuliet,1596 calling,1,romeoandjuliet,1596 north,1,romeoandjuliet,1596 ashamed,1,romeoandjuliet,1596 hopeful,1,romeoandjuliet,1596 lately,1,romeoandjuliet,1596 resort,1,romeoandjuliet,1596 headstrong,1,romeoandjuliet,1596 misty,1,romeoandjuliet,1596 holidame,1,romeoandjuliet,1596 Tempering,1,romeoandjuliet,1596 Scaring,1,romeoandjuliet,1596 tower,1,romeoandjuliet,1596 'Hold,1,romeoandjuliet,1596 households',1,romeoandjuliet,1596 solemn,1,romeoandjuliet,1596 noted,1,romeoandjuliet,1596 ghost,1,romeoandjuliet,1596 lisping,1,romeoandjuliet,1596 deed,1,romeoandjuliet,1596 childish,1,romeoandjuliet,1596 Franciscan,1,romeoandjuliet,1596 flourishes,1,romeoandjuliet,1596 solely,1,romeoandjuliet,1596 departed,1,romeoandjuliet,1596 plats,1,romeoandjuliet,1596 government,1,romeoandjuliet,1596 instant,1,romeoandjuliet,1596 affection,1,romeoandjuliet,1596 forgive,1,romeoandjuliet,1596 wreak,1,romeoandjuliet,1596 promised,1,romeoandjuliet,1596 plate,1,romeoandjuliet,1596 mood,1,romeoandjuliet,1596 eloquence,1,romeoandjuliet,1596 miles,1,romeoandjuliet,1596 Cannot,1,romeoandjuliet,1596 artificial,1,romeoandjuliet,1596 doff,1,romeoandjuliet,1596 Begot,1,romeoandjuliet,1596 burial,1,romeoandjuliet,1596 faster,1,romeoandjuliet,1596 oddly,1,romeoandjuliet,1596 moans,1,romeoandjuliet,1596 minstrel,1,romeoandjuliet,1596 affecting,1,romeoandjuliet,1596 deck,1,romeoandjuliet,1596 Part,1,romeoandjuliet,1596 sheet,1,romeoandjuliet,1596 prevented,1,romeoandjuliet,1596 Advances,1,romeoandjuliet,1596 violence,1,romeoandjuliet,1596 bird's,1,romeoandjuliet,1596 Making,1,romeoandjuliet,1596 mistemper'd,1,romeoandjuliet,1596 wakened,1,romeoandjuliet,1596 vowel,1,romeoandjuliet,1596 tongues,1,romeoandjuliet,1596 notes,1,romeoandjuliet,1596 et,1,romeoandjuliet,1596 handsome,1,romeoandjuliet,1596 weigh'd,1,romeoandjuliet,1596 fountains,1,romeoandjuliet,1596 whereon,1,romeoandjuliet,1596 invocation,1,romeoandjuliet,1596 unworthy,1,romeoandjuliet,1596 caitiff,1,romeoandjuliet,1596 dignity,1,romeoandjuliet,1596 victory,1,romeoandjuliet,1596 likely,1,romeoandjuliet,1596 itch,1,romeoandjuliet,1596 Spread,1,romeoandjuliet,1596 holiday,1,romeoandjuliet,1596 liars,1,romeoandjuliet,1596 Whipp'd,1,romeoandjuliet,1596 thrive,1,romeoandjuliet,1596 enforce,1,romeoandjuliet,1596 lend,1,romeoandjuliet,1596 redress,1,romeoandjuliet,1596 Shuts,1,romeoandjuliet,1596 bescreen'd,1,romeoandjuliet,1596 misadventured,1,romeoandjuliet,1596 stole,1,romeoandjuliet,1596 sack,1,romeoandjuliet,1596 defence,1,romeoandjuliet,1596 Rest,1,romeoandjuliet,1596 dowdy,1,romeoandjuliet,1596 usurer,1,romeoandjuliet,1596 Yon,1,romeoandjuliet,1596 Canker'd,1,romeoandjuliet,1596 cram,1,romeoandjuliet,1596 game,1,romeoandjuliet,1596 memory,1,romeoandjuliet,1596 pierced,1,romeoandjuliet,1596 manner,1,romeoandjuliet,1596 wanton's,1,romeoandjuliet,1596 Riddling,1,romeoandjuliet,1596 rains,1,romeoandjuliet,1596 piercing,1,romeoandjuliet,1596 displeased,1,romeoandjuliet,1596 humours,1,romeoandjuliet,1596 maidenhoods,1,romeoandjuliet,1596 twisted,1,romeoandjuliet,1596 sheath,1,romeoandjuliet,1596 dried,1,romeoandjuliet,1596 button,1,romeoandjuliet,1596 hurdle,1,romeoandjuliet,1596 cures,1,romeoandjuliet,1596 heretics,1,romeoandjuliet,1596 ask'd,1,romeoandjuliet,1596 attending,1,romeoandjuliet,1596 fears,1,romeoandjuliet,1596 Transparent,1,romeoandjuliet,1596 hereabouts,1,romeoandjuliet,1596 bodies,1,romeoandjuliet,1596 region,1,romeoandjuliet,1596 plant,1,romeoandjuliet,1596 strain,1,romeoandjuliet,1596 meteor,1,romeoandjuliet,1596 crave,1,romeoandjuliet,1596 roused,1,romeoandjuliet,1596 eyeless,1,romeoandjuliet,1596 tiptoe,1,romeoandjuliet,1596 'Juliet,1,romeoandjuliet,1596 Suspecting,1,romeoandjuliet,1596 'Proud,1,romeoandjuliet,1596 arbitrating,1,romeoandjuliet,1596 hoars,1,romeoandjuliet,1596 unfirm,1,romeoandjuliet,1596 idle,1,romeoandjuliet,1596 spiders',1,romeoandjuliet,1596 ambiguities,1,romeoandjuliet,1596 sometime,1,romeoandjuliet,1596 Myself,1,romeoandjuliet,1596 Reads,1,romeoandjuliet,1596 smilest,1,romeoandjuliet,1596 lour,1,romeoandjuliet,1596 dog's,1,romeoandjuliet,1596 Ready,1,romeoandjuliet,1596 warns,1,romeoandjuliet,1596 'twould,1,romeoandjuliet,1596 hunt's,1,romeoandjuliet,1596 spell,1,romeoandjuliet,1596 gyves,1,romeoandjuliet,1596 gipsy,1,romeoandjuliet,1596 ink,1,romeoandjuliet,1596 worms',1,romeoandjuliet,1596 pursued,1,romeoandjuliet,1596 loud,1,romeoandjuliet,1596 'man,1,romeoandjuliet,1596 settled,1,romeoandjuliet,1596 lightly,1,romeoandjuliet,1596 ado,1,romeoandjuliet,1596 Peer'd,1,romeoandjuliet,1596 Wouldst,1,romeoandjuliet,1596 Revive,1,romeoandjuliet,1596 cherishing,1,romeoandjuliet,1596 add,1,romeoandjuliet,1596 speak'st,1,romeoandjuliet,1596 Acquaint,1,romeoandjuliet,1596 playing,1,romeoandjuliet,1596 semblance,1,romeoandjuliet,1596 Servants,1,romeoandjuliet,1596 wherein,1,romeoandjuliet,1596 Grief,1,romeoandjuliet,1596 dispose,1,romeoandjuliet,1596 Speakest,1,romeoandjuliet,1596 drier,1,romeoandjuliet,1596 weakest,1,romeoandjuliet,1596 knot,1,romeoandjuliet,1596 strains,1,romeoandjuliet,1596 removed,1,romeoandjuliet,1596 suspected,1,romeoandjuliet,1596 swear'st,1,romeoandjuliet,1596 lets,1,romeoandjuliet,1596 confusions,1,romeoandjuliet,1596 forefather's,1,romeoandjuliet,1596 greater,1,romeoandjuliet,1596 bench,1,romeoandjuliet,1596 Saints,1,romeoandjuliet,1596 westward,1,romeoandjuliet,1596 umpire,1,romeoandjuliet,1596 repliest,1,romeoandjuliet,1596 serious,1,romeoandjuliet,1596 slack,1,romeoandjuliet,1596 scatter'd,1,romeoandjuliet,1596 jocund,1,romeoandjuliet,1596 journey,1,romeoandjuliet,1596 severing,1,romeoandjuliet,1596 summers,1,romeoandjuliet,1596 Culling,1,romeoandjuliet,1596 marr'd,1,romeoandjuliet,1596 Move,1,romeoandjuliet,1596 Guards,1,romeoandjuliet,1596 baptized,1,romeoandjuliet,1596 hop,1,romeoandjuliet,1596 sun's,1,romeoandjuliet,1596 versal,1,romeoandjuliet,1596 pomegranate,1,romeoandjuliet,1596 thrice,1,romeoandjuliet,1596 hark,1,romeoandjuliet,1596 accents,1,romeoandjuliet,1596 brought,1,romeoandjuliet,1596 shrived,1,romeoandjuliet,1596 Haply,1,romeoandjuliet,1596 betossed,1,romeoandjuliet,1596 eats,1,romeoandjuliet,1596 transgression,1,romeoandjuliet,1596 descry,1,romeoandjuliet,1596 fierce,1,romeoandjuliet,1596 logger,1,romeoandjuliet,1596 denote,1,romeoandjuliet,1596 axe,1,romeoandjuliet,1596 catcher,1,romeoandjuliet,1596 Seeking,1,romeoandjuliet,1596 unlook'd,1,romeoandjuliet,1596 frighted,1,romeoandjuliet,1596 pilgrims,1,romeoandjuliet,1596 remember'd,1,romeoandjuliet,1596 squirrel,1,romeoandjuliet,1596 frost,1,romeoandjuliet,1596 round,1,romeoandjuliet,1596 Christian,1,romeoandjuliet,1596 swounded,1,romeoandjuliet,1596 Arms,1,romeoandjuliet,1596 beggar's,1,romeoandjuliet,1596 cheveril,1,romeoandjuliet,1596 knit,1,romeoandjuliet,1596 signify,1,romeoandjuliet,1596 senseless,1,romeoandjuliet,1596 text,1,romeoandjuliet,1596 burying,1,romeoandjuliet,1596 intended,1,romeoandjuliet,1596 Read,1,romeoandjuliet,1596 paly,1,romeoandjuliet,1596 coachmakers,1,romeoandjuliet,1596 acknowledge,1,romeoandjuliet,1596 Courage,1,romeoandjuliet,1596 faintly,1,romeoandjuliet,1596 call'd,1,romeoandjuliet,1596 treads,1,romeoandjuliet,1596 Flower,1,romeoandjuliet,1596 signal,1,romeoandjuliet,1596 t',1,romeoandjuliet,1596 Displant,1,romeoandjuliet,1596 appears,1,romeoandjuliet,1596 consume,1,romeoandjuliet,1596 reach,1,romeoandjuliet,1596 draws,1,romeoandjuliet,1596 plain,1,romeoandjuliet,1596 ladder,1,romeoandjuliet,1596 hams,1,romeoandjuliet,1596 mourners,1,romeoandjuliet,1596 mew'd,1,romeoandjuliet,1596 threaten'd,1,romeoandjuliet,1596 severity,1,romeoandjuliet,1596 behoveful,1,romeoandjuliet,1596 pinion'd,1,romeoandjuliet,1596 school,1,romeoandjuliet,1596 drave,1,romeoandjuliet,1596 provided,1,romeoandjuliet,1596 countervail,1,romeoandjuliet,1596 quarrelled,1,romeoandjuliet,1596 wanders,1,romeoandjuliet,1596 sucking,1,romeoandjuliet,1596 acquaintance,1,romeoandjuliet,1596 interchanging,1,romeoandjuliet,1596 garish,1,romeoandjuliet,1596 heartless,1,romeoandjuliet,1596 beguil'd,1,romeoandjuliet,1596 Gorged,1,romeoandjuliet,1596 impatient,1,romeoandjuliet,1596 Commend,1,romeoandjuliet,1596 shin,1,romeoandjuliet,1596 mi's,1,romeoandjuliet,1596 appertaining,1,romeoandjuliet,1596 courts,1,romeoandjuliet,1596 ship,1,romeoandjuliet,1596 stranger,1,romeoandjuliet,1596 unbound,1,romeoandjuliet,1596 spit,1,romeoandjuliet,1596 ape,1,romeoandjuliet,1596 money,1,romeoandjuliet,1596 Ascend,1,romeoandjuliet,1596 wretchedness,1,romeoandjuliet,1596 fore,1,romeoandjuliet,1596 Unwieldy,1,romeoandjuliet,1596 footed,1,romeoandjuliet,1596 Prepare,1,romeoandjuliet,1596 owes,1,romeoandjuliet,1596 exquisite,1,romeoandjuliet,1596 Helen,1,romeoandjuliet,1596 many's,1,romeoandjuliet,1596 angelical,1,romeoandjuliet,1596 orisons,1,romeoandjuliet,1596 strive,1,romeoandjuliet,1596 attach,1,romeoandjuliet,1596 Utter,1,romeoandjuliet,1596 entertain'd,1,romeoandjuliet,1596 Valentio,1,romeoandjuliet,1596 pack,1,romeoandjuliet,1596 alive,1,romeoandjuliet,1596 dreadful,1,romeoandjuliet,1596 Benedicite,1,romeoandjuliet,1596 rogue,1,romeoandjuliet,1596 Cast,1,romeoandjuliet,1596 fishes,1,romeoandjuliet,1596 fisher,1,romeoandjuliet,1596 winking,1,romeoandjuliet,1596 chastity,1,romeoandjuliet,1596 fall'n,1,romeoandjuliet,1596 napkins,1,romeoandjuliet,1596 softest,1,romeoandjuliet,1596 chapless,1,romeoandjuliet,1596 prepared,1,romeoandjuliet,1596 serpents,1,romeoandjuliet,1596 bearer,1,romeoandjuliet,1596 revenge,1,romeoandjuliet,1596 yard,1,romeoandjuliet,1596 excess,1,romeoandjuliet,1596 beetle,1,romeoandjuliet,1596 push,1,romeoandjuliet,1596 accidents,1,romeoandjuliet,1596 forms,1,romeoandjuliet,1596 Men's,1,romeoandjuliet,1596 tombs,1,romeoandjuliet,1596 armour,1,romeoandjuliet,1596 chid'st,1,romeoandjuliet,1596 menace,1,romeoandjuliet,1596 learns,1,romeoandjuliet,1596 Care,1,romeoandjuliet,1596 beggars,1,romeoandjuliet,1596 King,1,romeoandjuliet,1596 misfortune's,1,romeoandjuliet,1596 furnish,1,romeoandjuliet,1596 unbruised,1,romeoandjuliet,1596 banquet,1,romeoandjuliet,1596 pathways,1,romeoandjuliet,1596 trick,1,romeoandjuliet,1596 bought,1,romeoandjuliet,1596 pacing,1,romeoandjuliet,1596 Accursed,1,romeoandjuliet,1596 forerun,1,romeoandjuliet,1596 hiss'd,1,romeoandjuliet,1596 runaway's,1,romeoandjuliet,1596 theirs,1,romeoandjuliet,1596 beggary,1,romeoandjuliet,1596 smells,1,romeoandjuliet,1596 Echo,1,romeoandjuliet,1596 sweetly,1,romeoandjuliet,1596 marchpane,1,romeoandjuliet,1596 behavior,1,romeoandjuliet,1596 fantasy,1,romeoandjuliet,1596 hist,1,romeoandjuliet,1596 Content,1,romeoandjuliet,1596 purple,1,romeoandjuliet,1596 blubbering,1,romeoandjuliet,1596 pentecost,1,romeoandjuliet,1596 slays,1,romeoandjuliet,1596 willingly,1,romeoandjuliet,1596 tasted,1,romeoandjuliet,1596 feign,1,romeoandjuliet,1596 masterless,1,romeoandjuliet,1596 moves,1,romeoandjuliet,1596 spoken,1,romeoandjuliet,1596 leaf,1,romeoandjuliet,1596 jaws,1,romeoandjuliet,1596 spokes,1,romeoandjuliet,1596 prorogued,1,romeoandjuliet,1596 Alive,1,romeoandjuliet,1596 fay,1,romeoandjuliet,1596 coughing,1,romeoandjuliet,1596 sallow,1,romeoandjuliet,1596 wheels,1,romeoandjuliet,1596 label,1,romeoandjuliet,1596 borrow,1,romeoandjuliet,1596 lean,1,romeoandjuliet,1596 Comes,1,romeoandjuliet,1596 exposition,1,romeoandjuliet,1596 sweetmeats,1,romeoandjuliet,1596 rood,1,romeoandjuliet,1596 colliers,1,romeoandjuliet,1596 leap,1,romeoandjuliet,1596 justice,1,romeoandjuliet,1596 tried,1,romeoandjuliet,1596 discolour'd,1,romeoandjuliet,1596 frozen,1,romeoandjuliet,1596 Hist,1,romeoandjuliet,1596 Blister'd,1,romeoandjuliet,1596 'lady,1,romeoandjuliet,1596 universal,1,romeoandjuliet,1596 breathes,1,romeoandjuliet,1596 mask'd,1,romeoandjuliet,1596 Beauty,1,romeoandjuliet,1596 Depart,1,romeoandjuliet,1596 Virtue,1,romeoandjuliet,1596 surgeon,1,romeoandjuliet,1596 relations,1,romeoandjuliet,1596 Piteous,1,romeoandjuliet,1596 tarry,1,romeoandjuliet,1596 scant,1,romeoandjuliet,1596 rank,1,romeoandjuliet,1596 rote,1,romeoandjuliet,1596 Against,1,romeoandjuliet,1596 needly,1,romeoandjuliet,1596 report,1,romeoandjuliet,1596 carries,1,romeoandjuliet,1596 canker'd,1,romeoandjuliet,1596 Torments,1,romeoandjuliet,1596 shrunk,1,romeoandjuliet,1596 dress'd,1,romeoandjuliet,1596 unluckily,1,romeoandjuliet,1596 hill,1,romeoandjuliet,1596 forehead,1,romeoandjuliet,1596 mangle,1,romeoandjuliet,1596 mischief,1,romeoandjuliet,1596 rose,1,romeoandjuliet,1596 distance,1,romeoandjuliet,1596 thinly,1,romeoandjuliet,1596 triumphant,1,romeoandjuliet,1596 smallest,1,romeoandjuliet,1596 unknown,1,romeoandjuliet,1596 puffs,1,romeoandjuliet,1596 repose,1,romeoandjuliet,1596 sending,1,romeoandjuliet,1596 omit,1,romeoandjuliet,1596 club,1,romeoandjuliet,1596 unclean,1,romeoandjuliet,1596 reflex,1,romeoandjuliet,1596 gleek,1,romeoandjuliet,1596 apparell'd,1,romeoandjuliet,1596 begone,1,romeoandjuliet,1596 penury,1,romeoandjuliet,1596 Back,1,romeoandjuliet,1596 waken,1,romeoandjuliet,1596 hinds,1,romeoandjuliet,1596 sparing,1,romeoandjuliet,1596 stirreth,1,romeoandjuliet,1596 action,1,romeoandjuliet,1596 strucken,1,romeoandjuliet,1596 gavest,1,romeoandjuliet,1596 doleful,1,romeoandjuliet,1596 county's,1,romeoandjuliet,1596 opposition,1,romeoandjuliet,1596 abroach,1,romeoandjuliet,1596 Henceforth,1,romeoandjuliet,1596 awaking,1,romeoandjuliet,1596 conquer'd,1,romeoandjuliet,1596 penny,1,romeoandjuliet,1596 acting,1,romeoandjuliet,1596 noon,1,romeoandjuliet,1596 lenten,1,romeoandjuliet,1596 dun's,1,romeoandjuliet,1596 circle,1,romeoandjuliet,1596 sprung,1,romeoandjuliet,1596 forsaken,1,romeoandjuliet,1596 below,1,romeoandjuliet,1596 whining,1,romeoandjuliet,1596 pantry,1,romeoandjuliet,1596 Graze,1,romeoandjuliet,1596 Noting,1,romeoandjuliet,1596 rash,1,romeoandjuliet,1596 beard,1,romeoandjuliet,1596 tigers,1,romeoandjuliet,1596 spread,1,romeoandjuliet,1596 Rosaline's,1,romeoandjuliet,1596 drunkard,1,romeoandjuliet,1596 courtship,1,romeoandjuliet,1596 estate,1,romeoandjuliet,1596 Pursued,1,romeoandjuliet,1596 Dove,1,romeoandjuliet,1596 candle,1,romeoandjuliet,1596 hasten,1,romeoandjuliet,1596 pensive,1,romeoandjuliet,1596 hastes,1,romeoandjuliet,1596 chaos,1,romeoandjuliet,1596 'An,1,romeoandjuliet,1596 slew'st,1,romeoandjuliet,1596 need'st,1,romeoandjuliet,1596 Chequering,1,romeoandjuliet,1596 stick'st,1,romeoandjuliet,1596 fails,1,romeoandjuliet,1596 chase,1,romeoandjuliet,1596 excuses,1,romeoandjuliet,1596 'By,1,romeoandjuliet,1596 Down,1,romeoandjuliet,1596 posterity,1,romeoandjuliet,1596 excused,1,romeoandjuliet,1596 idolatry,1,romeoandjuliet,1596 borne,1,romeoandjuliet,1596 peppered,1,romeoandjuliet,1596 visage,1,romeoandjuliet,1596 learning,1,romeoandjuliet,1596 Sin,1,romeoandjuliet,1596 muffle,1,romeoandjuliet,1596 charm,1,romeoandjuliet,1596 narrow,1,romeoandjuliet,1596 basket,1,romeoandjuliet,1596 nut,1,romeoandjuliet,1596 Straining,1,romeoandjuliet,1596 progress,1,romeoandjuliet,1596 arise,1,romeoandjuliet,1596 endart,1,romeoandjuliet,1596 you'll,1,romeoandjuliet,1596 perform,1,romeoandjuliet,1596 exiled,1,romeoandjuliet,1596 parting,1,romeoandjuliet,1596 overheard'st,1,romeoandjuliet,1596 unhappy,1,romeoandjuliet,1596 Rebeck,1,romeoandjuliet,1596 intercession,1,romeoandjuliet,1596 Gallop,1,romeoandjuliet,1596 housewife,1,romeoandjuliet,1596 scars,1,romeoandjuliet,1596 madman's,1,romeoandjuliet,1596 anger'd,1,romeoandjuliet,1596 scarf,1,romeoandjuliet,1596 scare,1,romeoandjuliet,1596 quarter,1,romeoandjuliet,1596 splendor,1,romeoandjuliet,1596 cloak,1,romeoandjuliet,1596 utters,1,romeoandjuliet,1596 bestride,1,romeoandjuliet,1596 leaving,1,romeoandjuliet,1596 drivelling,1,romeoandjuliet,1596 mistresses,1,romeoandjuliet,1596 Titan's,1,romeoandjuliet,1596 tutor,1,romeoandjuliet,1596 sociable,1,romeoandjuliet,1596 Helena,1,romeoandjuliet,1596 parlous,1,romeoandjuliet,1596 Sole,1,romeoandjuliet,1596 lodge,1,romeoandjuliet,1596 arrives,1,romeoandjuliet,1596 stark,1,romeoandjuliet,1596 Free,1,romeoandjuliet,1596 blessings,1,romeoandjuliet,1596 sharps,1,romeoandjuliet,1596 Delay,1,romeoandjuliet,1596 milk,1,romeoandjuliet,1596 Torch,1,romeoandjuliet,1596 augmenting,1,romeoandjuliet,1596 affections',1,romeoandjuliet,1596 Drums,1,romeoandjuliet,1596 fares,1,romeoandjuliet,1596 mumbling,1,romeoandjuliet,1596 ell,1,romeoandjuliet,1596 bleeds,1,romeoandjuliet,1596 ESCALUS,1,romeoandjuliet,1596 covert,1,romeoandjuliet,1596 satisfaction,1,romeoandjuliet,1596 qualities,1,romeoandjuliet,1596 'It,1,romeoandjuliet,1596 shield,1,romeoandjuliet,1596 Makes,1,romeoandjuliet,1596 sacrifices,1,romeoandjuliet,1596 beautify,1,romeoandjuliet,1596 bedeck,1,romeoandjuliet,1596 pricking,1,romeoandjuliet,1596 tempest,1,romeoandjuliet,1596 Soon,1,romeoandjuliet,1596 dared,1,romeoandjuliet,1596 Play'd,1,romeoandjuliet,1596 rests,1,romeoandjuliet,1596 fortnight,1,romeoandjuliet,1596 humorous,1,romeoandjuliet,1596 merrily,1,romeoandjuliet,1596 confidence,1,romeoandjuliet,1596 keeper,1,romeoandjuliet,1596 beggar,1,romeoandjuliet,1596 chain,1,romeoandjuliet,1596 sacrificed,1,romeoandjuliet,1596 bad'st,1,romeoandjuliet,1596 dreamers,1,romeoandjuliet,1596 Queen,1,romeoandjuliet,1596 procure,1,romeoandjuliet,1596 obscured,1,romeoandjuliet,1596 Uncle,1,romeoandjuliet,1596 belong,1,romeoandjuliet,1596 'gainst,1,romeoandjuliet,1596 midwife,1,romeoandjuliet,1596 stabbed,1,romeoandjuliet,1596 Father,1,romeoandjuliet,1596 mass,1,romeoandjuliet,1596 villanous,1,romeoandjuliet,1596 friar's,1,romeoandjuliet,1596 truckle,1,romeoandjuliet,1596 parties,1,romeoandjuliet,1596 dearest,1,romeoandjuliet,1596 Bearing,1,romeoandjuliet,1596 accustom'd,1,romeoandjuliet,1596 throughout,1,romeoandjuliet,1596 coward,1,romeoandjuliet,1596 son's,1,romeoandjuliet,1596 soles,1,romeoandjuliet,1596 injuries,1,romeoandjuliet,1596 crimson,1,romeoandjuliet,1596 soled,1,romeoandjuliet,1596 searchers,1,romeoandjuliet,1596 afflicted,1,romeoandjuliet,1596 Any,1,romeoandjuliet,1596 issue,1,romeoandjuliet,1596 engrossing,1,romeoandjuliet,1596 Thee,1,romeoandjuliet,1596 mire,1,romeoandjuliet,1596 wot,1,romeoandjuliet,1596 Flies,1,romeoandjuliet,1596 quote,1,romeoandjuliet,1596 won,1,romeoandjuliet,1596 starved,1,romeoandjuliet,1596 inch,1,romeoandjuliet,1596 greatest,1,romeoandjuliet,1596 punto,1,romeoandjuliet,1596 Affliction,1,romeoandjuliet,1596 labour,1,romeoandjuliet,1596 Blubbering,1,romeoandjuliet,1596 Afore,1,romeoandjuliet,1596 dropping,1,romeoandjuliet,1596 special,1,romeoandjuliet,1596 inexorable,1,romeoandjuliet,1596 soften'd,1,romeoandjuliet,1596 mountain,1,romeoandjuliet,1596 seal'd,1,romeoandjuliet,1596 Murder'd,1,romeoandjuliet,1596 thievish,1,romeoandjuliet,1596 medlar,1,romeoandjuliet,1596 abhors,1,romeoandjuliet,1596 dissemblers,1,romeoandjuliet,1596 naught,1,romeoandjuliet,1596 laughs,1,romeoandjuliet,1596 whispering,1,romeoandjuliet,1596 divideth,1,romeoandjuliet,1596 uttered,1,romeoandjuliet,1596 Made,1,romeoandjuliet,1596 dainty,1,romeoandjuliet,1596 divorced,1,romeoandjuliet,1596 poised,1,romeoandjuliet,1596 one's,1,romeoandjuliet,1596 thigh,1,romeoandjuliet,1596 drybeat,1,romeoandjuliet,1596 horrible,1,romeoandjuliet,1596 stratagems,1,romeoandjuliet,1596 disguised,1,romeoandjuliet,1596 sluttish,1,romeoandjuliet,1596 division,1,romeoandjuliet,1596 Perhaps,1,romeoandjuliet,1596 stair,1,romeoandjuliet,1596 compounds,1,romeoandjuliet,1596 web,1,romeoandjuliet,1596 paramour,1,romeoandjuliet,1596 stain,1,romeoandjuliet,1596 tassel,1,romeoandjuliet,1596 gi',1,romeoandjuliet,1596 Wert,1,romeoandjuliet,1596 proves,1,romeoandjuliet,1596 behalf,1,romeoandjuliet,1596 Italy,1,romeoandjuliet,1596 stained,1,romeoandjuliet,1596 dignified,1,romeoandjuliet,1596 passage,1,romeoandjuliet,1596 agate,1,romeoandjuliet,1596 'for,1,romeoandjuliet,1596 'Twixt,1,romeoandjuliet,1596 disturb'd,1,romeoandjuliet,1596 stint,1,romeoandjuliet,1596 apology,1,romeoandjuliet,1596 They'll,1,romeoandjuliet,1596 predicament,1,romeoandjuliet,1596 sale,1,romeoandjuliet,1596 enamour'd,1,romeoandjuliet,1596 stale,1,romeoandjuliet,1596 'My,1,romeoandjuliet,1596 Forgetting,1,romeoandjuliet,1596 retire,1,romeoandjuliet,1596 purchase,1,romeoandjuliet,1596 fits,1,romeoandjuliet,1596 households,1,romeoandjuliet,1596 Run,1,romeoandjuliet,1596 sides,1,romeoandjuliet,1596 enters,1,romeoandjuliet,1596 'not,1,romeoandjuliet,1596 Heart's,1,romeoandjuliet,1596 privy,1,romeoandjuliet,1596 provoke,1,romeoandjuliet,1596 unsubstantial,1,romeoandjuliet,1596 confines,1,romeoandjuliet,1596 court,1,romeoandjuliet,1596 receipt,1,romeoandjuliet,1596 restorative,1,romeoandjuliet,1596 bawdy,1,romeoandjuliet,1596 cross'd,1,romeoandjuliet,1596 operation,1,romeoandjuliet,1596 flirt,1,romeoandjuliet,1596 martial,1,romeoandjuliet,1596 bread,1,romeoandjuliet,1596 youngest,1,romeoandjuliet,1596 tying,1,romeoandjuliet,1596 Soundpost,1,romeoandjuliet,1596 happiness,1,romeoandjuliet,1596 moveth,1,romeoandjuliet,1596 third,1,romeoandjuliet,1596 smock,1,romeoandjuliet,1596 haughty,1,romeoandjuliet,1596 sitting,1,romeoandjuliet,1596 traffic,1,romeoandjuliet,1596 bandy,1,romeoandjuliet,1596 heareth,1,romeoandjuliet,1596 rind,1,romeoandjuliet,1596 unseen,1,romeoandjuliet,1596 closet,1,romeoandjuliet,1596 stabs,1,romeoandjuliet,1596 Dead,1,romeoandjuliet,1596 city's,1,romeoandjuliet,1596 ducats,1,romeoandjuliet,1596 lightness,1,romeoandjuliet,1596 Sups,1,romeoandjuliet,1596 clock,1,romeoandjuliet,1596 Easter,1,romeoandjuliet,1596 healths,1,romeoandjuliet,1596 residence,1,romeoandjuliet,1596 ripe,1,romeoandjuliet,1596 salutation,1,romeoandjuliet,1596 lessen'd,1,romeoandjuliet,1596 masks,1,romeoandjuliet,1596 niece,1,romeoandjuliet,1596 speeding,1,romeoandjuliet,1596 continuance,1,romeoandjuliet,1596 flint,1,romeoandjuliet,1596 renown'd,1,romeoandjuliet,1596 crown'd,1,romeoandjuliet,1596 Dian's,1,romeoandjuliet,1596 decreed,1,romeoandjuliet,1596 dust,1,romeoandjuliet,1596 vow'd,1,romeoandjuliet,1596 Think,1,romeoandjuliet,1596 stumbling,1,romeoandjuliet,1596 Ancient,1,romeoandjuliet,1596 interr'd,1,romeoandjuliet,1596 stick,1,romeoandjuliet,1596 hooks,1,romeoandjuliet,1596 stage,1,romeoandjuliet,1596 Throw,1,romeoandjuliet,1596 chinks,1,romeoandjuliet,1596 rise,1,romeoandjuliet,1596 alligator,1,romeoandjuliet,1596 raven's,1,romeoandjuliet,1596 Remembering,1,romeoandjuliet,1596 arms,1,romeoandjuliet,1596 trusty,1,romeoandjuliet,1596 Wives,1,romeoandjuliet,1596 saluteth,1,romeoandjuliet,1596 rooteth,1,romeoandjuliet,1596 intend,1,romeoandjuliet,1596 Hunting,1,romeoandjuliet,1596 wood,1,romeoandjuliet,1596 arrow,1,romeoandjuliet,1596 lure,1,romeoandjuliet,1596 tutor'd,1,romeoandjuliet,1596 groan'd,1,romeoandjuliet,1596 assure,1,romeoandjuliet,1596 associate,1,romeoandjuliet,1596 herring,1,romeoandjuliet,1596 danger,1,romeoandjuliet,1596 greetings,1,romeoandjuliet,1596 unharm'd,1,romeoandjuliet,1596 cockerel's,1,romeoandjuliet,1596 Aurora's,1,romeoandjuliet,1596 prayer's,1,romeoandjuliet,1596 ends,1,romeoandjuliet,1596 unstuff'd,1,romeoandjuliet,1596 kitchen,1,romeoandjuliet,1596 vessels,1,romeoandjuliet,1596 proceeding,1,romeoandjuliet,1596 Proportion'd,1,romeoandjuliet,1596 Mass,1,romeoandjuliet,1596 warmth,1,romeoandjuliet,1596 complain,1,romeoandjuliet,1596 Beg,1,romeoandjuliet,1596 flowering,1,romeoandjuliet,1596 bells,1,romeoandjuliet,1596 counterfeit'st,1,romeoandjuliet,1596 Throws,1,romeoandjuliet,1596 bounty,1,romeoandjuliet,1596 Undraws,1,romeoandjuliet,1596 possess,1,romeoandjuliet,1596 notice,1,romeoandjuliet,1596 breaches,1,romeoandjuliet,1596 Shame,1,romeoandjuliet,1596 fade,1,romeoandjuliet,1596 throats,1,romeoandjuliet,1596 Shalt,1,romeoandjuliet,1596 familiar,1,romeoandjuliet,1596 raging,1,romeoandjuliet,1596 prompt,1,romeoandjuliet,1596 agree,1,romeoandjuliet,1596 'death,1,romeoandjuliet,1596 seize,1,romeoandjuliet,1596 earthquake,1,romeoandjuliet,1596 watery,1,romeoandjuliet,1596 Heaven,1,romeoandjuliet,1596 Vile,1,romeoandjuliet,1596 morsel,1,romeoandjuliet,1596 taker,1,romeoandjuliet,1596 validity,1,romeoandjuliet,1596 Balthasar,1,romeoandjuliet,1596 rotten,1,romeoandjuliet,1596 dispute,1,romeoandjuliet,1596 prologue,1,romeoandjuliet,1596 fun,1,romeoandjuliet,1596 angel,1,romeoandjuliet,1596 stainless,1,romeoandjuliet,1596 spleen,1,romeoandjuliet,1596 foreign,1,romeoandjuliet,1596 Sharp,1,romeoandjuliet,1596 tatter'd,1,romeoandjuliet,1596 smelling,1,romeoandjuliet,1596 Servingman,1,romeoandjuliet,1596 opposite,1,romeoandjuliet,1596 Revolts,1,romeoandjuliet,1596 nets,1,romeoandjuliet,1596 compass,1,romeoandjuliet,1596 owe,1,romeoandjuliet,1596 wondrous,1,romeoandjuliet,1596 baleful,1,romeoandjuliet,1596 threatened,1,romeoandjuliet,1596 hildings,1,romeoandjuliet,1596 whistle,1,romeoandjuliet,1596 supple,1,romeoandjuliet,1596 minister'd,1,romeoandjuliet,1596 Digressing,1,romeoandjuliet,1596 yoke,1,romeoandjuliet,1596 touching,1,romeoandjuliet,1596 drops,1,romeoandjuliet,1596 lurk,1,romeoandjuliet,1596 serves,1,romeoandjuliet,1596 unsatisfied,1,romeoandjuliet,1596 wooes,1,romeoandjuliet,1596 flask,1,romeoandjuliet,1596 beguiled,1,romeoandjuliet,1596 sober,1,romeoandjuliet,1596 angry,1,romeoandjuliet,1596 highmost,1,romeoandjuliet,1596 vexed,1,romeoandjuliet,1596 clout,1,romeoandjuliet,1596 went,1,romeoandjuliet,1596 stirs,1,romeoandjuliet,1596 followers,1,romeoandjuliet,1596 anatomy,1,romeoandjuliet,1596 agile,1,romeoandjuliet,1596 crotchets,1,romeoandjuliet,1596 Shot,1,romeoandjuliet,1596 Spakest,1,romeoandjuliet,1596 Strike,1,romeoandjuliet,1596 hideous,1,romeoandjuliet,1596 sails,1,romeoandjuliet,1596 table,1,romeoandjuliet,1596 grieve,1,romeoandjuliet,1596 create,1,romeoandjuliet,1596 Betroth'd,1,romeoandjuliet,1596 cried,1,romeoandjuliet,1596 Unhappy,1,romeoandjuliet,1596 profane,1,romeoandjuliet,1596 wench's,1,romeoandjuliet,1596 minds,1,romeoandjuliet,1596 Time,1,romeoandjuliet,1596 dates,1,romeoandjuliet,1596 ladybird,1,romeoandjuliet,1596 doublet,1,romeoandjuliet,1596 infold,1,romeoandjuliet,1596 Brother,1,romeoandjuliet,1596 plaintain,1,romeoandjuliet,1596 crystal,1,romeoandjuliet,1596 orb,1,romeoandjuliet,1596 mista'en,1,romeoandjuliet,1596 creature's,1,romeoandjuliet,1596 wilful,1,romeoandjuliet,1596 Hadst,1,romeoandjuliet,1596 Shake,1,romeoandjuliet,1596 lasting,1,romeoandjuliet,1596 surcease,1,romeoandjuliet,1596 churl,1,romeoandjuliet,1596 twinkle,1,romeoandjuliet,1596 misfortune,1,romeoandjuliet,1596 earthen,1,romeoandjuliet,1596 wounds,1,romeoandjuliet,1596 discover,1,romeoandjuliet,1596 tune,1,romeoandjuliet,1596 lodges,1,romeoandjuliet,1596 Ties,1,romeoandjuliet,1596 righteous,1,romeoandjuliet,1596 ambuscadoes,1,romeoandjuliet,1596 prostrate,1,romeoandjuliet,1596 fighting,1,romeoandjuliet,1596 west,1,romeoandjuliet,1596 bestrides,1,romeoandjuliet,1596 allow,1,romeoandjuliet,1596 Deny,1,romeoandjuliet,1596 minim,1,romeoandjuliet,1596 impeach,1,romeoandjuliet,1596 officer,1,romeoandjuliet,1596 issuing,1,romeoandjuliet,1596 they're,1,romeoandjuliet,1596 Doing,1,romeoandjuliet,1596 film,1,romeoandjuliet,1596 runn'st,1,romeoandjuliet,1596 Weeping,1,romeoandjuliet,1596 Shut,1,romeoandjuliet,1596 swallow'd,1,romeoandjuliet,1596 fill,1,romeoandjuliet,1596 stains,1,romeoandjuliet,1596 Boy,1,romeoandjuliet,1596 safety,1,romeoandjuliet,1596 enpierced,1,romeoandjuliet,1596 punish'd,1,romeoandjuliet,1596 savage,1,romeoandjuliet,1596 jaunting,1,romeoandjuliet,1596 continue,1,romeoandjuliet,1596 unwashed,1,romeoandjuliet,1596 nieces,1,romeoandjuliet,1596 damnation,1,romeoandjuliet,1596 rattling,1,romeoandjuliet,1596 joiner,1,romeoandjuliet,1596 Beats,1,romeoandjuliet,1596 Lead,1,romeoandjuliet,1596 compliments,1,romeoandjuliet,1596 incorporate,1,romeoandjuliet,1596 tackled,1,romeoandjuliet,1596 minded,1,romeoandjuliet,1596 meddle,1,romeoandjuliet,1596 'havior,1,romeoandjuliet,1596 tavern,1,romeoandjuliet,1596 tail,1,romeoandjuliet,1596 divers,1,romeoandjuliet,1596 practise,1,romeoandjuliet,1596 perdona,1,romeoandjuliet,1596 lawyers',1,romeoandjuliet,1596 butcher,1,romeoandjuliet,1596 chiefly,1,romeoandjuliet,1596 mates,1,romeoandjuliet,1596 Thank,1,romeoandjuliet,1596 beginners,1,romeoandjuliet,1596 partly,1,romeoandjuliet,1596 madly,1,romeoandjuliet,1596 lived,1,romeoandjuliet,1596 whither,1,romeoandjuliet,1596 watch'd,1,romeoandjuliet,1596 meaning,1,romeoandjuliet,1596 prouds,1,romeoandjuliet,1596 deflowered,1,romeoandjuliet,1596 dispraise,1,romeoandjuliet,1596 grievances,1,romeoandjuliet,1596 deliver'd,1,romeoandjuliet,1596 fate,1,romeoandjuliet,1596 wrenching,1,romeoandjuliet,1596 Tartar's,1,romeoandjuliet,1596 friendship,1,romeoandjuliet,1596 Environed,1,romeoandjuliet,1596 hoop,1,romeoandjuliet,1596 bounds,1,romeoandjuliet,1596 quivers,1,romeoandjuliet,1596 will'd,1,romeoandjuliet,1596 lenity,1,romeoandjuliet,1596 large,1,romeoandjuliet,1596 named,1,romeoandjuliet,1596 cooks,1,romeoandjuliet,1596 Each,1,romeoandjuliet,1596 emperor,1,romeoandjuliet,1596 blaze,1,romeoandjuliet,1596 drinks,1,romeoandjuliet,1596 mischance,1,romeoandjuliet,1596 ally,1,romeoandjuliet,1596 ache,1,romeoandjuliet,1596 Livia,1,romeoandjuliet,1596 predominant,1,romeoandjuliet,1596 lap,1,romeoandjuliet,1596 tall,1,romeoandjuliet,1596 goodfellows,1,romeoandjuliet,1596 griping,1,romeoandjuliet,1596 Need,1,romeoandjuliet,1596 purblind,1,romeoandjuliet,1596 farthest,1,romeoandjuliet,1596 folks,1,romeoandjuliet,1596 Leap,1,romeoandjuliet,1596 quinces,1,romeoandjuliet,1596 Appear,1,romeoandjuliet,1596 brotherhood,1,romeoandjuliet,1596 hatred,1,romeoandjuliet,1596 convey,1,romeoandjuliet,1596 stroke,1,romeoandjuliet,1596 Trust,1,romeoandjuliet,1596 jests,1,romeoandjuliet,1596 Mantua's,1,romeoandjuliet,1596 torment,1,romeoandjuliet,1596 thwarted,1,romeoandjuliet,1596 asunder,1,romeoandjuliet,1596 Rather,1,romeoandjuliet,1596 Every,1,romeoandjuliet,1596 Prick,1,romeoandjuliet,1596 unthankfulness,1,romeoandjuliet,1596 blisters,1,romeoandjuliet,1596 kinsman's,1,romeoandjuliet,1596 elflocks,1,romeoandjuliet,1596 shore,1,romeoandjuliet,1596 accident,1,romeoandjuliet,1596 concludes,1,romeoandjuliet,1596 swears,1,romeoandjuliet,1596 festering,1,romeoandjuliet,1596 quit,1,romeoandjuliet,1596 dexterity,1,romeoandjuliet,1596 clear,1,romeoandjuliet,1596 sparkling,1,romeoandjuliet,1596 holp,1,romeoandjuliet,1596 visiting,1,romeoandjuliet,1596 skains,1,romeoandjuliet,1596 None,1,romeoandjuliet,1596 hole,1,romeoandjuliet,1596 dozen,1,romeoandjuliet,1596 temper'd,1,romeoandjuliet,1596 dangerous,1,romeoandjuliet,1596 outcry,1,romeoandjuliet,1596 famine,1,romeoandjuliet,1596 devout,1,romeoandjuliet,1596 pupil,1,romeoandjuliet,1596 giddy,1,romeoandjuliet,1596 follows,1,romeoandjuliet,1596 fired,1,romeoandjuliet,1596 Feather,1,romeoandjuliet,1596 dragon,1,romeoandjuliet,1596 Lucio,1,romeoandjuliet,1596 spices,1,romeoandjuliet,1596 fires,1,romeoandjuliet,1596 request,1,romeoandjuliet,1596 sunder,1,romeoandjuliet,1596 argument,1,romeoandjuliet,1596 revolt,1,romeoandjuliet,1596 asking,1,romeoandjuliet,1596 tetchy,1,romeoandjuliet,1596 cheerly,1,romeoandjuliet,1596 depth,1,romeoandjuliet,1596 clubs,1,romeoandjuliet,1596 inundation,1,romeoandjuliet,1596 winter,1,romeoandjuliet,1596 forsooth,1,romeoandjuliet,1596 flood,1,romeoandjuliet,1596 liver,1,romeoandjuliet,1596 grudge,1,romeoandjuliet,1596 writing,1,romeoandjuliet,1596 wondering,1,romeoandjuliet,1596 resolution,1,romeoandjuliet,1596 Day,1,romeoandjuliet,1596 virtues,1,romeoandjuliet,1596 seal,1,romeoandjuliet,1596 train'd,1,romeoandjuliet,1596 startles,1,romeoandjuliet,1596 affray,1,romeoandjuliet,1596 potion,1,romeoandjuliet,1596 Nell,1,romeoandjuliet,1596 quean,1,romeoandjuliet,1596 falsehood,1,romeoandjuliet,1596 boxes,1,romeoandjuliet,1596 provision,1,romeoandjuliet,1596 blazon,1,romeoandjuliet,1596 goodman,1,romeoandjuliet,1596 puling,1,romeoandjuliet,1596 vainly,1,romeoandjuliet,1596 prayers,1,romeoandjuliet,1596 tips,1,romeoandjuliet,1596 cleft,1,romeoandjuliet,1596 packthread,1,romeoandjuliet,1596 yellow,1,romeoandjuliet,1596 hung,1,romeoandjuliet,1596 bepaint,1,romeoandjuliet,1596 hairs,1,romeoandjuliet,1596 interest,1,romeoandjuliet,1596 hunt,1,romeoandjuliet,1596 Sitting,1,romeoandjuliet,1596 commission,1,romeoandjuliet,1596 cheerful,1,romeoandjuliet,1596 Cleopatra,1,romeoandjuliet,1596 bodes,1,romeoandjuliet,1596 waiting,1,romeoandjuliet,1596 winged,1,romeoandjuliet,1596 bachelor,1,romeoandjuliet,1596 gossips,1,romeoandjuliet,1596 low,1,romeoandjuliet,1596 contagion,1,romeoandjuliet,1596 acts,1,romeoandjuliet,1596 meagre,1,romeoandjuliet,1596 letting,1,romeoandjuliet,1596 babe,1,romeoandjuliet,1596 captain,1,romeoandjuliet,1596 decree,1,romeoandjuliet,1596 needful,1,romeoandjuliet,1596 unsavoury,1,romeoandjuliet,1596 singleness,1,romeoandjuliet,1596 holder,1,romeoandjuliet,1596 weep'st,1,romeoandjuliet,1596 heralds,1,romeoandjuliet,1596 booted,1,romeoandjuliet,1596 feathers,1,romeoandjuliet,1596 seem,1,romeoandjuliet,1596 wean'd,1,romeoandjuliet,1596 feeling,1,romeoandjuliet,1596 south,1,romeoandjuliet,1596 slow'd,1,romeoandjuliet,1596 trespass,1,romeoandjuliet,1596 cot,1,romeoandjuliet,1596 marvellous,1,romeoandjuliet,1596 News,1,romeoandjuliet,1596 look'd,1,romeoandjuliet,1596 Ne'er,1,romeoandjuliet,1596 'twixt,1,romeoandjuliet,1596 sees,1,romeoandjuliet,1596 pricks,1,romeoandjuliet,1596 steep'd,1,romeoandjuliet,1596 liking,1,romeoandjuliet,1596 cost,1,romeoandjuliet,1596 shapen,1,romeoandjuliet,1596 Patience,1,romeoandjuliet,1596 thereof,1,romeoandjuliet,1596 Believe,1,romeoandjuliet,1596 mix'd,1,romeoandjuliet,1596 courtier's,1,romeoandjuliet,1596 shaped,1,romeoandjuliet,1596 packed,1,romeoandjuliet,1596 Dido,1,romeoandjuliet,1596 traitor,1,romeoandjuliet,1596 pilgrims',1,romeoandjuliet,1596 'Your,1,romeoandjuliet,1596 Killing,1,romeoandjuliet,1596 Seal,1,romeoandjuliet,1596 wearied,1,romeoandjuliet,1596 Groan,1,romeoandjuliet,1596 trooping,1,romeoandjuliet,1596 lightens,1,romeoandjuliet,1596 gossamer,1,romeoandjuliet,1596 purgatory,1,romeoandjuliet,1596 pestilent,1,romeoandjuliet,1596 heavenly,1,romeoandjuliet,1596 Obey,1,romeoandjuliet,1596 He'll,1,romeoandjuliet,1596 affright,1,romeoandjuliet,1596 palmers,1,romeoandjuliet,1596 'twill,1,romeoandjuliet,1596 briefly,1,romeoandjuliet,1596 term'd,1,romeoandjuliet,1596 nights,1,romeoandjuliet,1596 downright,1,romeoandjuliet,1596 heels,1,romeoandjuliet,1596 jointure,1,romeoandjuliet,1596 Subtly,1,romeoandjuliet,1596 blame,1,romeoandjuliet,1596 trembles,1,romeoandjuliet,1596 curtain,1,romeoandjuliet,1596 huge,1,romeoandjuliet,1596 riddling,1,romeoandjuliet,1596 bait,1,romeoandjuliet,1596 Maria,1,romeoandjuliet,1596 funeral,1,romeoandjuliet,1596 kindred,1,romeoandjuliet,1596 glove,1,romeoandjuliet,1596 dislike,1,romeoandjuliet,1596 extremes,1,romeoandjuliet,1596 parentage,1,romeoandjuliet,1596 blushing,1,romeoandjuliet,1596 uncover'd,1,romeoandjuliet,1596 according,1,romeoandjuliet,1596 modern,1,romeoandjuliet,1596 raven,1,romeoandjuliet,1596 Cry,1,romeoandjuliet,1596 'God,1,romeoandjuliet,1596 ball,1,romeoandjuliet,1596 Cuts,1,romeoandjuliet,1596 bankrupt,1,romeoandjuliet,1596 Feeling,1,romeoandjuliet,1596 fearfully,1,romeoandjuliet,1596 driveth,1,romeoandjuliet,1596 pots,1,romeoandjuliet,1596 Neither,1,romeoandjuliet,1596 drawer,1,romeoandjuliet,1596 simpleness,1,romeoandjuliet,1596 remedies,1,romeoandjuliet,1596 carriage,1,romeoandjuliet,1596 herald,1,romeoandjuliet,1596 Beautiful,1,romeoandjuliet,1596 statue,1,romeoandjuliet,1596 injured,1,romeoandjuliet,1596 season,1,romeoandjuliet,1596 wolvish,1,romeoandjuliet,1596 sickness,1,romeoandjuliet,1596 Grindstone,1,romeoandjuliet,1596 aches,1,romeoandjuliet,1596 convert,1,romeoandjuliet,1596 canopy,1,romeoandjuliet,1596 Mist,1,romeoandjuliet,1596 Mistress,1,romeoandjuliet,1596 couple,1,romeoandjuliet,1596 choking,1,romeoandjuliet,1596 invite,1,romeoandjuliet,1596 Anselme,1,romeoandjuliet,1596 lip,1,romeoandjuliet,1596 merchant,1,romeoandjuliet,1596 Quarrel,1,romeoandjuliet,1596 rail'st,1,romeoandjuliet,1596 pipes,1,romeoandjuliet,1596 constable's,1,romeoandjuliet,1596 seem'st,1,romeoandjuliet,1596 chances,1,romeoandjuliet,1596 aching,1,romeoandjuliet,1596 coil,1,romeoandjuliet,1596 eyes',1,romeoandjuliet,1596 Athwart,1,romeoandjuliet,1596 ebb,1,romeoandjuliet,1596 merchandise,1,romeoandjuliet,1596 thread,1,romeoandjuliet,1596 conduit,1,romeoandjuliet,1596 Stuff'd,1,romeoandjuliet,1596 endured,1,romeoandjuliet,1596 rancour,1,romeoandjuliet,1596 divining,1,romeoandjuliet,1596 lolling,1,romeoandjuliet,1596 Herself,1,romeoandjuliet,1596 measuring,1,romeoandjuliet,1596 honesty,1,romeoandjuliet,1596 cloudy,1,romeoandjuliet,1596 evening,1,romeoandjuliet,1596 spirits,1,romeoandjuliet,1596 Cheerly,1,romeoandjuliet,1596 maw,1,romeoandjuliet,1596 bearers,1,romeoandjuliet,1596 Kisses,1,romeoandjuliet,1596 perjury,1,romeoandjuliet,1596 nourish'd,1,romeoandjuliet,1596 pear,1,romeoandjuliet,1596 distressed,1,romeoandjuliet,1596 least,1,romeoandjuliet,1596 careful,1,romeoandjuliet,1596 comfortable,1,romeoandjuliet,1596 afeard,1,romeoandjuliet,1596 propagate,1,romeoandjuliet,1596 Five,1,romeoandjuliet,1596 consequence,1,romeoandjuliet,1596 rapier's,1,romeoandjuliet,1596 wring,1,romeoandjuliet,1596 starve,1,romeoandjuliet,1596 steeds,1,romeoandjuliet,1596 'dove,1,romeoandjuliet,1596 doing,1,romeoandjuliet,1596 slug,1,romeoandjuliet,1596 spits,1,romeoandjuliet,1596 gossip's,1,romeoandjuliet,1596 dealing,1,romeoandjuliet,1596 margent,1,romeoandjuliet,1596 courageous,1,romeoandjuliet,1596 dishclout,1,romeoandjuliet,1596 treacherous,1,romeoandjuliet,1596 leaps,1,romeoandjuliet,1596 glory,1,romeoandjuliet,1596 swung,1,romeoandjuliet,1596 gentlemanlike,1,romeoandjuliet,1596 employment,1,romeoandjuliet,1596 'I'll,1,romeoandjuliet,1596 comforted,1,romeoandjuliet,1596 conjured,1,romeoandjuliet,1596 nuns,1,romeoandjuliet,1596 abuse,1,romeoandjuliet,1596 widowed,1,romeoandjuliet,1596 burns,1,romeoandjuliet,1596 whit,1,romeoandjuliet,1596 pleasant,1,romeoandjuliet,1596 limit,1,romeoandjuliet,1596 Men,1,romeoandjuliet,1596 battlements,1,romeoandjuliet,1596 collars,1,romeoandjuliet,1596 Enters,1,romeoandjuliet,1596 tormented,1,romeoandjuliet,1596 monthly,1,romeoandjuliet,1596 powerful,1,romeoandjuliet,1596 mandrakes',1,romeoandjuliet,1596 atomies,1,romeoandjuliet,1596 thinking,1,romeoandjuliet,1596 mocker,1,romeoandjuliet,1596 counts,1,romeoandjuliet,1596 Abate,1,romeoandjuliet,1596 fashion,1,romeoandjuliet,1596 foe's,1,romeoandjuliet,1596 pernicious,1,romeoandjuliet,1596 quarrels,1,romeoandjuliet,1596 reeky,1,romeoandjuliet,1596 'love',1,romeoandjuliet,1596 reels,1,romeoandjuliet,1596 liege,1,romeoandjuliet,1596 henceforth,1,romeoandjuliet,1596 'dost,1,romeoandjuliet,1596 Retorts,1,romeoandjuliet,1596 physic,1,romeoandjuliet,1596 mannerly,1,romeoandjuliet,1596 respects,1,romeoandjuliet,1596 phrase,1,romeoandjuliet,1596 lash,1,romeoandjuliet,1596 aspired,1,romeoandjuliet,1596 plucks,1,romeoandjuliet,1596 spilt,1,romeoandjuliet,1596 flag,1,romeoandjuliet,1596 liquid,1,romeoandjuliet,1596 Green,1,romeoandjuliet,1596 lath,1,romeoandjuliet,1596 untangled,1,romeoandjuliet,1596 Sings,1,romeoandjuliet,1596 prefixed,1,romeoandjuliet,1596 eastern,1,romeoandjuliet,1596 gravity,1,romeoandjuliet,1596 dashing,1,romeoandjuliet,1596 highway,1,romeoandjuliet,1596 keepers,1,romeoandjuliet,1596 sleeping,1,romeoandjuliet,1596 Happiness,1,romeoandjuliet,1596 dishonour'd,1,romeoandjuliet,1596 untalk'd,1,romeoandjuliet,1596 dirges,1,romeoandjuliet,1596 muffled,1,romeoandjuliet,1596 fright,1,romeoandjuliet,1596 shelves,1,romeoandjuliet,1596 urging,1,romeoandjuliet,1596 list,1,romeoandjuliet,1596 opportunity,1,romeoandjuliet,1596 April,1,romeoandjuliet,1596 curfew,1,romeoandjuliet,1596 'banishment,1,romeoandjuliet,1596 suited,1,romeoandjuliet,1596 poultice,1,romeoandjuliet,1596 tributary,1,romeoandjuliet,1596 Banish'd,1,romeoandjuliet,1596 appetite,1,romeoandjuliet,1596 assistant,1,romeoandjuliet,1596 venge,1,romeoandjuliet,1596 carelessly,1,romeoandjuliet,1596 cordial,1,romeoandjuliet,1596 unpleasing,1,romeoandjuliet,1596 pardoning,1,romeoandjuliet,1596 books,1,romeoandjuliet,1596 fathom,1,romeoandjuliet,1596 follow'd,1,romeoandjuliet,1596 limping,1,romeoandjuliet,1596 consort'st,1,romeoandjuliet,1596 dwells,1,romeoandjuliet,1596 frank,1,romeoandjuliet,1596 letter's,1,romeoandjuliet,1596 tardy,1,romeoandjuliet,1596 widow,1,romeoandjuliet,1596 numbers,1,romeoandjuliet,1596 shady,1,romeoandjuliet,1596 older,1,romeoandjuliet,1596 reply,1,romeoandjuliet,1596 yesternight,1,romeoandjuliet,1596 reverse,1,romeoandjuliet,1596 presage,1,romeoandjuliet,1596 enjoin'd,1,romeoandjuliet,1596 nuts,1,romeoandjuliet,1596 reverso,1,romeoandjuliet,1596 cannon's,1,romeoandjuliet,1596 therewithal,1,romeoandjuliet,1596 dash,1,romeoandjuliet,1596 flecked,1,romeoandjuliet,1596 distemper'd,1,romeoandjuliet,1596 invited,1,romeoandjuliet,1596 discovered,1,romeoandjuliet,1596 centre,1,romeoandjuliet,1596 happily,1,romeoandjuliet,1596 harsh,1,romeoandjuliet,1596 stakes,1,romeoandjuliet,1596 Tickling,1,romeoandjuliet,1596 Mis,1,romeoandjuliet,1596 court'sy,1,romeoandjuliet,1596 music's,1,romeoandjuliet,1596 starveth,1,romeoandjuliet,1596 boisterous,1,romeoandjuliet,1596 gills,1,romeoandjuliet,1596 whoe'er,1,romeoandjuliet,1596 logic,1,romeoandjuliet,1596 dun,1,romeoandjuliet,1596 cracking,1,romeoandjuliet,1596 solace,1,romeoandjuliet,1596 liquor,1,romeoandjuliet,1596 Together,1,romeoandjuliet,1596 catch,1,romeoandjuliet,1596 pens,1,romeoandjuliet,1596 lane,1,romeoandjuliet,1596 Immoderately,1,romeoandjuliet,1596 toy,1,romeoandjuliet,1596 blessing,1,romeoandjuliet,1596 dispatch,1,romeoandjuliet,1596 waverer,1,romeoandjuliet,1596 rocks,1,romeoandjuliet,1596 top,1,romeoandjuliet,1596 fellowship,1,romeoandjuliet,1596 court'sies,1,romeoandjuliet,1596 bred,1,romeoandjuliet,1596 liest,1,romeoandjuliet,1596 lame,1,romeoandjuliet,1596 reverend,1,romeoandjuliet,1596 severest,1,romeoandjuliet,1596 Bring,1,romeoandjuliet,1596 DRAMATIS,1,romeoandjuliet,1596 chariot,1,romeoandjuliet,1596 lamp,1,romeoandjuliet,1596 Simon,1,romeoandjuliet,1596 smatter,1,romeoandjuliet,1596 certain,1,romeoandjuliet,1596 shift,1,romeoandjuliet,1596 leap'd,1,romeoandjuliet,1596 shake,1,romeoandjuliet,1596 nuptials,1,romeoandjuliet,1596 flowed,1,romeoandjuliet,1596 dank,1,romeoandjuliet,1596 lineament,1,romeoandjuliet,1596 armed,1,romeoandjuliet,1596 leans,1,romeoandjuliet,1596 sweeting,1,romeoandjuliet,1596 pennyworths,1,romeoandjuliet,1596 pass'd,1,romeoandjuliet,1596 bargain,1,romeoandjuliet,1596 gnat,1,romeoandjuliet,1596 tempt,1,romeoandjuliet,1596 he'll,1,romeoandjuliet,1596 entreated,1,romeoandjuliet,1596 cakes,1,romeoandjuliet,1596 overwhelming,1,romeoandjuliet,1596 wills,1,romeoandjuliet,1596 conceal'd,1,romeoandjuliet,1596 Affection,1,romeoandjuliet,1596 smell,1,romeoandjuliet,1596 gentler,1,romeoandjuliet,1596 Talk,1,romeoandjuliet,1596 king,1,romeoandjuliet,1596 Fain,1,romeoandjuliet,1596 drown'd,1,romeoandjuliet,1596 inauspicious,1,romeoandjuliet,1596 Return'd,1,romeoandjuliet,1596 smelt,1,romeoandjuliet,1596 Staying,1,romeoandjuliet,1596 expire,1,romeoandjuliet,1596 Direct,1,romeoandjuliet,1596 boundless,1,romeoandjuliet,1596 reconcile,1,romeoandjuliet,1596 scales,1,romeoandjuliet,1596 Brags,1,romeoandjuliet,1596 slip,1,romeoandjuliet,1596 overset,1,romeoandjuliet,1596 tainted,1,romeoandjuliet,1596 poperin,1,romeoandjuliet,1596 Conceit,1,romeoandjuliet,1596 sisterhood,1,romeoandjuliet,1596 Alike,1,romeoandjuliet,1596 justly,1,romeoandjuliet,1596 trifling,1,romeoandjuliet,1596 Opens,1,romeoandjuliet,1596 candles,1,romeoandjuliet,1596 doting,1,romeoandjuliet,1596 mammet,1,romeoandjuliet,1596 shirt,1,romeoandjuliet,1596 lace,1,romeoandjuliet,1596 breathe,1,romeoandjuliet,1596 conspires,1,romeoandjuliet,1596 bids,1,romeoandjuliet,1596 skitless,1,romeoandjuliet,1596 tread,1,romeoandjuliet,1596 breaths,1,romeoandjuliet,1596 bide,1,romeoandjuliet,1596 Prick'd,1,romeoandjuliet,1596 doctrine,1,romeoandjuliet,1596 'pothecary,1,romeoandjuliet,1596 direction,1,romeoandjuliet,1596 NURSE,1,romeoandjuliet,1596 undertake,1,romeoandjuliet,1596 Brief,1,romeoandjuliet,1596 crows,1,romeoandjuliet,1596 Unfold,1,romeoandjuliet,1596 'Then,1,romeoandjuliet,1596 betwitched,1,romeoandjuliet,1596 e'en,1,romeoandjuliet,1596 prompter,1,romeoandjuliet,1596 slop,1,romeoandjuliet,1596 turn'd,1,romeoandjuliet,1596 Holding,1,romeoandjuliet,1596 Hugh,1,romeoandjuliet,1596 'fall'st,1,romeoandjuliet,1596 Retiring,1,romeoandjuliet,1596 woo'd,1,romeoandjuliet,1596 vanish'd,1,romeoandjuliet,1596 punished,1,romeoandjuliet,1596 consents,1,romeoandjuliet,1596 fortunes,1,romeoandjuliet,1596 sway,1,romeoandjuliet,1596 earliness,1,romeoandjuliet,1596 swan,1,romeoandjuliet,1596 busied,1,romeoandjuliet,1596 brave,2,romeoandjuliet,1596 heed,2,romeoandjuliet,1596 Francis,2,romeoandjuliet,1596 corns,2,romeoandjuliet,1596 brawl,2,romeoandjuliet,1596 heel,2,romeoandjuliet,1596 lusty,2,romeoandjuliet,1596 forbid,2,romeoandjuliet,1596 instruments,2,romeoandjuliet,1596 name's,2,romeoandjuliet,1596 womanish,2,romeoandjuliet,1596 R,2,romeoandjuliet,1596 pity,2,romeoandjuliet,1596 c,2,romeoandjuliet,1596 smiles,2,romeoandjuliet,1596 Laying,2,romeoandjuliet,1596 motion,2,romeoandjuliet,1596 tops,2,romeoandjuliet,1596 leisure,2,romeoandjuliet,1596 tremble,2,romeoandjuliet,1596 disturb,2,romeoandjuliet,1596 rat,2,romeoandjuliet,1596 alike,2,romeoandjuliet,1596 shadows,2,romeoandjuliet,1596 mend,2,romeoandjuliet,1596 scene,2,romeoandjuliet,1596 Verona's,2,romeoandjuliet,1596 Women,2,romeoandjuliet,1596 discourses,2,romeoandjuliet,1596 held,2,romeoandjuliet,1596 sleeps,2,romeoandjuliet,1596 helps,2,romeoandjuliet,1596 spade,2,romeoandjuliet,1596 single,2,romeoandjuliet,1596 Meaning,2,romeoandjuliet,1596 Must,2,romeoandjuliet,1596 spake,2,romeoandjuliet,1596 violent,2,romeoandjuliet,1596 PROLOGUE,2,romeoandjuliet,1596 lodging,2,romeoandjuliet,1596 prosperous,2,romeoandjuliet,1596 learn'd,2,romeoandjuliet,1596 Beshrew,2,romeoandjuliet,1596 offer,2,romeoandjuliet,1596 paradise,2,romeoandjuliet,1596 slander,2,romeoandjuliet,1596 appear,2,romeoandjuliet,1596 cave,2,romeoandjuliet,1596 match'd,2,romeoandjuliet,1596 underneath,2,romeoandjuliet,1596 nought,2,romeoandjuliet,1596 thirty,2,romeoandjuliet,1596 beauty's,2,romeoandjuliet,1596 press,2,romeoandjuliet,1596 demesnes,2,romeoandjuliet,1596 remain,2,romeoandjuliet,1596 joys,2,romeoandjuliet,1596 baggage,2,romeoandjuliet,1596 wounded,2,romeoandjuliet,1596 cast,2,romeoandjuliet,1596 crutch,2,romeoandjuliet,1596 Pretty,2,romeoandjuliet,1596 song,2,romeoandjuliet,1596 worser,2,romeoandjuliet,1596 cats,2,romeoandjuliet,1596 reign,2,romeoandjuliet,1596 amazed,2,romeoandjuliet,1596 sole,2,romeoandjuliet,1596 sold,2,romeoandjuliet,1596 scarlet,2,romeoandjuliet,1596 grows,2,romeoandjuliet,1596 sorrows,2,romeoandjuliet,1596 circumstance,2,romeoandjuliet,1596 dram,2,romeoandjuliet,1596 crying,2,romeoandjuliet,1596 'Yea,2,romeoandjuliet,1596 drew,2,romeoandjuliet,1596 cheer,2,romeoandjuliet,1596 hearing,2,romeoandjuliet,1596 paper,2,romeoandjuliet,1596 making,2,romeoandjuliet,1596 fools,2,romeoandjuliet,1596 began,2,romeoandjuliet,1596 asked,2,romeoandjuliet,1596 soar,2,romeoandjuliet,1596 hereafter,2,romeoandjuliet,1596 vial,2,romeoandjuliet,1596 think'st,2,romeoandjuliet,1596 vice,2,romeoandjuliet,1596 deceived,2,romeoandjuliet,1596 she'll,2,romeoandjuliet,1596 throne,2,romeoandjuliet,1596 bitterly,2,romeoandjuliet,1596 prettiest,2,romeoandjuliet,1596 spy,2,romeoandjuliet,1596 winds,2,romeoandjuliet,1596 raised,2,romeoandjuliet,1596 livery,2,romeoandjuliet,1596 beloved,2,romeoandjuliet,1596 groans,2,romeoandjuliet,1596 Music,2,romeoandjuliet,1596 confessor,2,romeoandjuliet,1596 suck'd,2,romeoandjuliet,1596 poverty,2,romeoandjuliet,1596 everlasting,2,romeoandjuliet,1596 merit,2,romeoandjuliet,1596 felt,2,romeoandjuliet,1596 wrong,2,romeoandjuliet,1596 piece,2,romeoandjuliet,1596 revived,2,romeoandjuliet,1596 twelve,2,romeoandjuliet,1596 ways,2,romeoandjuliet,1596 common,2,romeoandjuliet,1596 bore,2,romeoandjuliet,1596 Tush,2,romeoandjuliet,1596 loathed,2,romeoandjuliet,1596 dearly,2,romeoandjuliet,1596 Pardon,2,romeoandjuliet,1596 fruit,2,romeoandjuliet,1596 thence,2,romeoandjuliet,1596 sum,2,romeoandjuliet,1596 vanity,2,romeoandjuliet,1596 grow,2,romeoandjuliet,1596 descend,2,romeoandjuliet,1596 saucy,2,romeoandjuliet,1596 false,2,romeoandjuliet,1596 prevent,2,romeoandjuliet,1596 ward,2,romeoandjuliet,1596 ware,2,romeoandjuliet,1596 Stop,2,romeoandjuliet,1596 seems,2,romeoandjuliet,1596 want,2,romeoandjuliet,1596 steal,2,romeoandjuliet,1596 Henceforward,2,romeoandjuliet,1596 Though,2,romeoandjuliet,1596 seest,2,romeoandjuliet,1596 world's,2,romeoandjuliet,1596 trudge,2,romeoandjuliet,1596 cunning,2,romeoandjuliet,1596 bone,2,romeoandjuliet,1596 office,2,romeoandjuliet,1596 desire,2,romeoandjuliet,1596 French,2,romeoandjuliet,1596 parts,2,romeoandjuliet,1596 each,2,romeoandjuliet,1596 big,2,romeoandjuliet,1596 Capel's,2,romeoandjuliet,1596 burning,2,romeoandjuliet,1596 manners,2,romeoandjuliet,1596 hap,2,romeoandjuliet,1596 wanting,2,romeoandjuliet,1596 Holy,2,romeoandjuliet,1596 serving,2,romeoandjuliet,1596 delights,2,romeoandjuliet,1596 pilot,2,romeoandjuliet,1596 infection,2,romeoandjuliet,1596 Am,2,romeoandjuliet,1596 mutiny,2,romeoandjuliet,1596 streaks,2,romeoandjuliet,1596 Still,2,romeoandjuliet,1596 smile,2,romeoandjuliet,1596 Having,2,romeoandjuliet,1596 siege,2,romeoandjuliet,1596 unless,2,romeoandjuliet,1596 creature,2,romeoandjuliet,1596 brings,2,romeoandjuliet,1596 to't,2,romeoandjuliet,1596 sings,2,romeoandjuliet,1596 finds,2,romeoandjuliet,1596 changed,2,romeoandjuliet,1596 ashes,2,romeoandjuliet,1596 Ha,2,romeoandjuliet,1596 meant,2,romeoandjuliet,1596 blest,2,romeoandjuliet,1596 bless,2,romeoandjuliet,1596 fortune's,2,romeoandjuliet,1596 quick,2,romeoandjuliet,1596 despair,2,romeoandjuliet,1596 sport,2,romeoandjuliet,1596 wedded,2,romeoandjuliet,1596 step,2,romeoandjuliet,1596 nice,2,romeoandjuliet,1596 brawls,2,romeoandjuliet,1596 devotion,2,romeoandjuliet,1596 'banished,2,romeoandjuliet,1596 valiant,2,romeoandjuliet,1596 sits,2,romeoandjuliet,1596 challenge,2,romeoandjuliet,1596 week,2,romeoandjuliet,1596 behind,2,romeoandjuliet,1596 bell,2,romeoandjuliet,1596 cat,2,romeoandjuliet,1596 children,2,romeoandjuliet,1596 struck,2,romeoandjuliet,1596 ornament,2,romeoandjuliet,1596 yon,2,romeoandjuliet,1596 learned,2,romeoandjuliet,1596 Lies,2,romeoandjuliet,1596 sepulchre,2,romeoandjuliet,1596 afore,2,romeoandjuliet,1596 Dies,2,romeoandjuliet,1596 aqua,2,romeoandjuliet,1596 Drawing,2,romeoandjuliet,1596 antic,2,romeoandjuliet,1596 silk,2,romeoandjuliet,1596 tedious,2,romeoandjuliet,1596 bud,2,romeoandjuliet,1596 pains,2,romeoandjuliet,1596 sink,2,romeoandjuliet,1596 rejoice,2,romeoandjuliet,1596 sing,2,romeoandjuliet,1596 moody,2,romeoandjuliet,1596 grandsire,2,romeoandjuliet,1596 Both,2,romeoandjuliet,1596 quite,2,romeoandjuliet,1596 store,2,romeoandjuliet,1596 storm,2,romeoandjuliet,1596 story,2,romeoandjuliet,1596 tyrant,2,romeoandjuliet,1596 Fear,2,romeoandjuliet,1596 excellent,2,romeoandjuliet,1596 repent,2,romeoandjuliet,1596 carrion,2,romeoandjuliet,1596 favour,2,romeoandjuliet,1596 debt,2,romeoandjuliet,1596 fa,2,romeoandjuliet,1596 legs,2,romeoandjuliet,1596 yew,2,romeoandjuliet,1596 ago,2,romeoandjuliet,1596 stone,2,romeoandjuliet,1596 plays,2,romeoandjuliet,1596 stony,2,romeoandjuliet,1596 deal,2,romeoandjuliet,1596 deaf,2,romeoandjuliet,1596 nobleman,2,romeoandjuliet,1596 stain'd,2,romeoandjuliet,1596 gall,2,romeoandjuliet,1596 torches,2,romeoandjuliet,1596 possess'd,2,romeoandjuliet,1596 shed,2,romeoandjuliet,1596 newly,2,romeoandjuliet,1596 month,2,romeoandjuliet,1596 delay,2,romeoandjuliet,1596 lo,2,romeoandjuliet,1596 thankful,2,romeoandjuliet,1596 Live,2,romeoandjuliet,1596 account,2,romeoandjuliet,1596 look'st,2,romeoandjuliet,1596 temper,2,romeoandjuliet,1596 enmity,2,romeoandjuliet,1596 loves,2,romeoandjuliet,1596 stout,2,romeoandjuliet,1596 miserable,2,romeoandjuliet,1596 endure,2,romeoandjuliet,1596 Yea,2,romeoandjuliet,1596 gallops,2,romeoandjuliet,1596 Yes,2,romeoandjuliet,1596 drift,2,romeoandjuliet,1596 lest,2,romeoandjuliet,1596 lose,2,romeoandjuliet,1596 defy,2,romeoandjuliet,1596 act,2,romeoandjuliet,1596 beauteous,2,romeoandjuliet,1596 nimble,2,romeoandjuliet,1596 forgot,2,romeoandjuliet,1596 minstrels,2,romeoandjuliet,1596 kindred's,2,romeoandjuliet,1596 excels,2,romeoandjuliet,1596 climb,2,romeoandjuliet,1596 graves,2,romeoandjuliet,1596 choice,2,romeoandjuliet,1596 valour,2,romeoandjuliet,1596 ornaments,2,romeoandjuliet,1596 Jack,2,romeoandjuliet,1596 weapon,2,romeoandjuliet,1596 soldier's,2,romeoandjuliet,1596 messenger,2,romeoandjuliet,1596 pump,2,romeoandjuliet,1596 palm,2,romeoandjuliet,1596 wormwood,2,romeoandjuliet,1596 weeds,2,romeoandjuliet,1596 natural,2,romeoandjuliet,1596 rushes,2,romeoandjuliet,1596 re,2,romeoandjuliet,1596 hang,2,romeoandjuliet,1596 Full,2,romeoandjuliet,1596 four,2,romeoandjuliet,1596 drawn,2,romeoandjuliet,1596 Montague's,2,romeoandjuliet,1596 forty,2,romeoandjuliet,1596 pluck,2,romeoandjuliet,1596 Under,2,romeoandjuliet,1596 page,2,romeoandjuliet,1596 vengeance,2,romeoandjuliet,1596 knocks,2,romeoandjuliet,1596 nightly,2,romeoandjuliet,1596 purged,2,romeoandjuliet,1596 pair,2,romeoandjuliet,1596 hangs,2,romeoandjuliet,1596 heaviness,2,romeoandjuliet,1596 outrage,2,romeoandjuliet,1596 frown,2,romeoandjuliet,1596 twain,2,romeoandjuliet,1596 stones,2,romeoandjuliet,1596 shop,2,romeoandjuliet,1596 mortals,2,romeoandjuliet,1596 shot,2,romeoandjuliet,1596 dismal,2,romeoandjuliet,1596 saints,2,romeoandjuliet,1596 unlucky,2,romeoandjuliet,1596 fresh,2,romeoandjuliet,1596 maiden,2,romeoandjuliet,1596 term,2,romeoandjuliet,1596 parents',2,romeoandjuliet,1596 inquire,2,romeoandjuliet,1596 Among,2,romeoandjuliet,1596 undone,2,romeoandjuliet,1596 fee,2,romeoandjuliet,1596 native,2,romeoandjuliet,1596 array,2,romeoandjuliet,1596 enemies,2,romeoandjuliet,1596 dooms,2,romeoandjuliet,1596 broke,2,romeoandjuliet,1596 beams,2,romeoandjuliet,1596 guest,2,romeoandjuliet,1596 fan,2,romeoandjuliet,1596 fairies',2,romeoandjuliet,1596 often,2,romeoandjuliet,1596 griefs,2,romeoandjuliet,1596 breathed,2,romeoandjuliet,1596 hoarse,2,romeoandjuliet,1596 scape,2,romeoandjuliet,1596 couldst,2,romeoandjuliet,1596 water,2,romeoandjuliet,1596 Hall,2,romeoandjuliet,1596 nose,2,romeoandjuliet,1596 Venus,2,romeoandjuliet,1596 'Zounds,2,romeoandjuliet,1596 trencher,2,romeoandjuliet,1596 wonder,2,romeoandjuliet,1596 locks,2,romeoandjuliet,1596 rate,2,romeoandjuliet,1596 bears,2,romeoandjuliet,1596 ours,2,romeoandjuliet,1596 bottom,2,romeoandjuliet,1596 eve,2,romeoandjuliet,1596 Soft,2,romeoandjuliet,1596 adventure,2,romeoandjuliet,1596 affections,2,romeoandjuliet,1596 stays,2,romeoandjuliet,1596 lantern,2,romeoandjuliet,1596 counsellor,2,romeoandjuliet,1596 Monday,2,romeoandjuliet,1596 misery,2,romeoandjuliet,1596 mouth,2,romeoandjuliet,1596 several,2,romeoandjuliet,1596 question,2,romeoandjuliet,1596 pilgrim,2,romeoandjuliet,1596 general,2,romeoandjuliet,1596 effect,2,romeoandjuliet,1596 consort,2,romeoandjuliet,1596 spurs,2,romeoandjuliet,1596 Evermore,2,romeoandjuliet,1596 strife,2,romeoandjuliet,1596 doors,2,romeoandjuliet,1596 mortal,2,romeoandjuliet,1596 likewise,2,romeoandjuliet,1596 towards,2,romeoandjuliet,1596 leaves,2,romeoandjuliet,1596 teeth,2,romeoandjuliet,1596 mightst,2,romeoandjuliet,1596 foolish,2,romeoandjuliet,1596 wrought,2,romeoandjuliet,1596 nursed,2,romeoandjuliet,1596 egg,2,romeoandjuliet,1596 quench,2,romeoandjuliet,1596 blow,2,romeoandjuliet,1596 brains,2,romeoandjuliet,1596 'I',2,romeoandjuliet,1596 miss,2,romeoandjuliet,1596 fish,2,romeoandjuliet,1596 free,2,romeoandjuliet,1596 over,2,romeoandjuliet,1596 number,2,romeoandjuliet,1596 borrow'd,2,romeoandjuliet,1596 smoke,2,romeoandjuliet,1596 trouble,2,romeoandjuliet,1596 o'clock,2,romeoandjuliet,1596 suspicion,2,romeoandjuliet,1596 odd,2,romeoandjuliet,1596 salt,2,romeoandjuliet,1596 neck,2,romeoandjuliet,1596 persons,2,romeoandjuliet,1596 herbs,2,romeoandjuliet,1596 Taking,2,romeoandjuliet,1596 detestable,2,romeoandjuliet,1596 import,2,romeoandjuliet,1596 passado,2,romeoandjuliet,1596 different,2,romeoandjuliet,1596 heard,2,romeoandjuliet,1596 Say,2,romeoandjuliet,1596 obsequies,2,romeoandjuliet,1596 death's,2,romeoandjuliet,1596 maidenhead,2,romeoandjuliet,1596 called,2,romeoandjuliet,1596 stiff,2,romeoandjuliet,1596 quarrelling,2,romeoandjuliet,1596 wax,2,romeoandjuliet,1596 able,2,romeoandjuliet,1596 tailor,2,romeoandjuliet,1596 perforce,2,romeoandjuliet,1596 rite,2,romeoandjuliet,1596 brother's,2,romeoandjuliet,1596 pride,2,romeoandjuliet,1596 forward,2,romeoandjuliet,1596 wanton,2,romeoandjuliet,1596 apace,2,romeoandjuliet,1596 price,2,romeoandjuliet,1596 prick,2,romeoandjuliet,1596 Poison,2,romeoandjuliet,1596 festival,2,romeoandjuliet,1596 gladly,2,romeoandjuliet,1596 dreamt,2,romeoandjuliet,1596 Bid,2,romeoandjuliet,1596 served,2,romeoandjuliet,1596 Cupid's,2,romeoandjuliet,1596 taken,2,romeoandjuliet,1596 what's,2,romeoandjuliet,1596 Laurence,2,romeoandjuliet,1596 forfeit,2,romeoandjuliet,1596 dump,2,romeoandjuliet,1596 knight,2,romeoandjuliet,1596 disposition,2,romeoandjuliet,1596 dull,2,romeoandjuliet,1596 nest,2,romeoandjuliet,1596 ope,2,romeoandjuliet,1596 whence,2,romeoandjuliet,1596 cover,2,romeoandjuliet,1596 fail,2,romeoandjuliet,1596 watching,2,romeoandjuliet,1596 glad,2,romeoandjuliet,1596 Show,2,romeoandjuliet,1596 compare,2,romeoandjuliet,1596 guilty,2,romeoandjuliet,1596 Many,2,romeoandjuliet,1596 presses,2,romeoandjuliet,1596 weapons,2,romeoandjuliet,1596 wert,2,romeoandjuliet,1596 grant,2,romeoandjuliet,1596 methinks,2,romeoandjuliet,1596 worm,2,romeoandjuliet,1596 roses,2,romeoandjuliet,1596 palace,2,romeoandjuliet,1596 passing,2,romeoandjuliet,1596 dancing,2,romeoandjuliet,1596 fit,2,romeoandjuliet,1596 mansion,2,romeoandjuliet,1596 ta'en,2,romeoandjuliet,1596 shown,2,romeoandjuliet,1596 worship,2,romeoandjuliet,1596 wealth,2,romeoandjuliet,1596 smooth,2,romeoandjuliet,1596 bird,2,romeoandjuliet,1596 cock,2,romeoandjuliet,1596 hood,2,romeoandjuliet,1596 vitae,2,romeoandjuliet,1596 Noise,2,romeoandjuliet,1596 lights,2,romeoandjuliet,1596 arm'd,2,romeoandjuliet,1596 carry,2,romeoandjuliet,1596 mothers,2,romeoandjuliet,1596 rapier,2,romeoandjuliet,1596 beshrew,2,romeoandjuliet,1596 hazel,2,romeoandjuliet,1596 bigger,2,romeoandjuliet,1596 Arise,2,romeoandjuliet,1596 Who's,2,romeoandjuliet,1596 counterfeit,2,romeoandjuliet,1596 choler,2,romeoandjuliet,1596 Nightly,2,romeoandjuliet,1596 robes,2,romeoandjuliet,1596 manage,2,romeoandjuliet,1596 lovely,2,romeoandjuliet,1596 cook,2,romeoandjuliet,1596 blade,2,romeoandjuliet,1596 fairer,2,romeoandjuliet,1596 eyed,2,romeoandjuliet,1596 'silver,2,romeoandjuliet,1596 Prince,2,romeoandjuliet,1596 reckoning,2,romeoandjuliet,1596 Right,2,romeoandjuliet,1596 aught,2,romeoandjuliet,1596 singular,2,romeoandjuliet,1596 fights,2,romeoandjuliet,1596 troth,2,romeoandjuliet,1596 presence,2,romeoandjuliet,1596 ended,2,romeoandjuliet,1596 meantime,2,romeoandjuliet,1596 camest,2,romeoandjuliet,1596 fellows,2,romeoandjuliet,1596 True,2,romeoandjuliet,1596 Pray,2,romeoandjuliet,1596 misadventure,2,romeoandjuliet,1596 person,2,romeoandjuliet,1596 Through,2,romeoandjuliet,1596 drugs,2,romeoandjuliet,1596 lovest,2,romeoandjuliet,1596 entreat,2,romeoandjuliet,1596 Send,2,romeoandjuliet,1596 prayer,2,romeoandjuliet,1596 lovers,2,romeoandjuliet,1596 souls,2,romeoandjuliet,1596 self,2,romeoandjuliet,1596 fairly,2,romeoandjuliet,1596 tide,2,romeoandjuliet,1596 Just,2,romeoandjuliet,1596 aloud,2,romeoandjuliet,1596 leg,2,romeoandjuliet,1596 bleeding,2,romeoandjuliet,1596 prison,2,romeoandjuliet,1596 Scurvy,2,romeoandjuliet,1596 roaring,2,romeoandjuliet,1596 sent,2,romeoandjuliet,1596 talk'd,2,romeoandjuliet,1596 greeting,2,romeoandjuliet,1596 disobedient,2,romeoandjuliet,1596 sullen,2,romeoandjuliet,1596 master's,2,romeoandjuliet,1596 nature's,2,romeoandjuliet,1596 triumph,2,romeoandjuliet,1596 trow,2,romeoandjuliet,1596 Potpan,2,romeoandjuliet,1596 servants,2,romeoandjuliet,1596 feasting,2,romeoandjuliet,1596 shamest,2,romeoandjuliet,1596 write,2,romeoandjuliet,1596 mar,2,romeoandjuliet,1596 wearing,2,romeoandjuliet,1596 limbs,2,romeoandjuliet,1596 starts,2,romeoandjuliet,1596 volume,2,romeoandjuliet,1596 lazy,2,romeoandjuliet,1596 Towards,2,romeoandjuliet,1596 begins,2,romeoandjuliet,1596 Despised,2,romeoandjuliet,1596 Sometime,2,romeoandjuliet,1596 Gregory,2,romeoandjuliet,1596 trim,2,romeoandjuliet,1596 meeting,2,romeoandjuliet,1596 murder'd,2,romeoandjuliet,1596 partisans,2,romeoandjuliet,1596 determine,2,romeoandjuliet,1596 burnt,2,romeoandjuliet,1596 whip,2,romeoandjuliet,1596 merciful,2,romeoandjuliet,1596 body's,2,romeoandjuliet,1596 fled,2,romeoandjuliet,1596 bethink,2,romeoandjuliet,1596 eleven,2,romeoandjuliet,1596 on't,2,romeoandjuliet,1596 Amen,2,romeoandjuliet,1596 Indeed,2,romeoandjuliet,1596 amorous,2,romeoandjuliet,1596 Sleep,2,romeoandjuliet,1596 sometimes,2,romeoandjuliet,1596 terror,2,romeoandjuliet,1596 vestal,2,romeoandjuliet,1596 citizens,2,romeoandjuliet,1596 skulls,2,romeoandjuliet,1596 'Romeo,2,romeoandjuliet,1596 windows,2,romeoandjuliet,1596 content,2,romeoandjuliet,1596 try,2,romeoandjuliet,1596 duellist,2,romeoandjuliet,1596 sentence,2,romeoandjuliet,1596 spring,2,romeoandjuliet,1596 entrance,2,romeoandjuliet,1596 'music,2,romeoandjuliet,1596 cover'd,2,romeoandjuliet,1596 shaft,2,romeoandjuliet,1596 respect,2,romeoandjuliet,1596 wagoner,2,romeoandjuliet,1596 mangled,2,romeoandjuliet,1596 stinted,2,romeoandjuliet,1596 Falls,2,romeoandjuliet,1596 Lest,2,romeoandjuliet,1596 sounding,2,romeoandjuliet,1596 eyesight,2,romeoandjuliet,1596 Examine,2,romeoandjuliet,1596 vex'd,2,romeoandjuliet,1596 trees,2,romeoandjuliet,1596 cross,2,romeoandjuliet,1596 stol'n,2,romeoandjuliet,1596 private,2,romeoandjuliet,1596 Dry,2,romeoandjuliet,1596 mis,2,romeoandjuliet,1596 awake,2,romeoandjuliet,1596 soundly,2,romeoandjuliet,1596 ten,2,romeoandjuliet,1596 amen,2,romeoandjuliet,1596 bier,2,romeoandjuliet,1596 Honest,2,romeoandjuliet,1596 gear,2,romeoandjuliet,1596 forbear,2,romeoandjuliet,1596 neighbour,2,romeoandjuliet,1596 shoes,2,romeoandjuliet,1596 flattering,2,romeoandjuliet,1596 dim,2,romeoandjuliet,1596 share,2,romeoandjuliet,1596 order,2,romeoandjuliet,1596 sharp,2,romeoandjuliet,1596 summer,2,romeoandjuliet,1596 daughters,2,romeoandjuliet,1596 advanced,3,romeoandjuliet,1596 told,3,romeoandjuliet,1596 apprehend,3,romeoandjuliet,1596 weary,3,romeoandjuliet,1596 business,3,romeoandjuliet,1596 Fie,3,romeoandjuliet,1596 brows,3,romeoandjuliet,1596 heart's,3,romeoandjuliet,1596 day's,3,romeoandjuliet,1596 rather,3,romeoandjuliet,1596 truly,3,romeoandjuliet,1596 joint,3,romeoandjuliet,1596 philosophy,3,romeoandjuliet,1596 finger,3,romeoandjuliet,1596 vain,3,romeoandjuliet,1596 Citizens,3,romeoandjuliet,1596 Help,3,romeoandjuliet,1596 toil,3,romeoandjuliet,1596 mattock,3,romeoandjuliet,1596 Wife,3,romeoandjuliet,1596 lick,3,romeoandjuliet,1596 fury,3,romeoandjuliet,1596 drink,3,romeoandjuliet,1596 laugh,3,romeoandjuliet,1596 contrary,3,romeoandjuliet,1596 Would,3,romeoandjuliet,1596 loathsome,3,romeoandjuliet,1596 Poor,3,romeoandjuliet,1596 plague,3,romeoandjuliet,1596 inconstant,3,romeoandjuliet,1596 charge,3,romeoandjuliet,1596 Young,3,romeoandjuliet,1596 unaccustom'd,3,romeoandjuliet,1596 Whose,3,romeoandjuliet,1596 grown,3,romeoandjuliet,1596 backward,3,romeoandjuliet,1596 toward,3,romeoandjuliet,1596 rosemary,3,romeoandjuliet,1596 calm,3,romeoandjuliet,1596 likeness,3,romeoandjuliet,1596 teach,3,romeoandjuliet,1596 soft,3,romeoandjuliet,1596 Cupid,3,romeoandjuliet,1596 view,3,romeoandjuliet,1596 stands,3,romeoandjuliet,1596 Get,3,romeoandjuliet,1596 virtuous,3,romeoandjuliet,1596 'twas,3,romeoandjuliet,1596 bridal,3,romeoandjuliet,1596 suit,3,romeoandjuliet,1596 murderer,3,romeoandjuliet,1596 sworn,3,romeoandjuliet,1596 where's,3,romeoandjuliet,1596 Attendants,3,romeoandjuliet,1596 daughter's,3,romeoandjuliet,1596 worse,3,romeoandjuliet,1596 beseeming,3,romeoandjuliet,1596 brain,3,romeoandjuliet,1596 cousin's,3,romeoandjuliet,1596 born,3,romeoandjuliet,1596 rhyme,3,romeoandjuliet,1596 encounter,3,romeoandjuliet,1596 white,3,romeoandjuliet,1596 cries,3,romeoandjuliet,1596 cease,3,romeoandjuliet,1596 choose,3,romeoandjuliet,1596 Hence,3,romeoandjuliet,1596 knees,3,romeoandjuliet,1596 visor,3,romeoandjuliet,1596 anon,3,romeoandjuliet,1596 sense,3,romeoandjuliet,1596 stop,3,romeoandjuliet,1596 warm,3,romeoandjuliet,1596 meat,3,romeoandjuliet,1596 ruled,3,romeoandjuliet,1596 Draw,3,romeoandjuliet,1596 nephew,3,romeoandjuliet,1596 blows,3,romeoandjuliet,1596 youthful,3,romeoandjuliet,1596 wash'd,3,romeoandjuliet,1596 bad,3,romeoandjuliet,1596 Church,3,romeoandjuliet,1596 Stand,3,romeoandjuliet,1596 proof,3,romeoandjuliet,1596 discords,3,romeoandjuliet,1596 hid,3,romeoandjuliet,1596 beg,3,romeoandjuliet,1596 dinner,3,romeoandjuliet,1596 whole,3,romeoandjuliet,1596 Had,3,romeoandjuliet,1596 pass,3,romeoandjuliet,1596 Up,3,romeoandjuliet,1596 Retires,3,romeoandjuliet,1596 courteous,3,romeoandjuliet,1596 god,3,romeoandjuliet,1596 sought,3,romeoandjuliet,1596 morning's,3,romeoandjuliet,1596 apothecary,3,romeoandjuliet,1596 ROMEO's,3,romeoandjuliet,1596 bury,3,romeoandjuliet,1596 dove,3,romeoandjuliet,1596 burn,3,romeoandjuliet,1596 got,3,romeoandjuliet,1596 gaze,3,romeoandjuliet,1596 weak,3,romeoandjuliet,1596 Put,3,romeoandjuliet,1596 Maskers,3,romeoandjuliet,1596 sound',3,romeoandjuliet,1596 buy,3,romeoandjuliet,1596 turns,3,romeoandjuliet,1596 immortal,3,romeoandjuliet,1596 i',3,romeoandjuliet,1596 God's,3,romeoandjuliet,1596 sail,3,romeoandjuliet,1596 stay'd,3,romeoandjuliet,1596 wretch,3,romeoandjuliet,1596 confess,3,romeoandjuliet,1596 raise,3,romeoandjuliet,1596 servant,3,romeoandjuliet,1596 needy,3,romeoandjuliet,1596 dwell,3,romeoandjuliet,1596 seeing,3,romeoandjuliet,1596 lends,3,romeoandjuliet,1596 speed,3,romeoandjuliet,1596 approach,3,romeoandjuliet,1596 ah,3,romeoandjuliet,1596 hear'st,3,romeoandjuliet,1596 door,3,romeoandjuliet,1596 Watch,3,romeoandjuliet,1596 rouse,3,romeoandjuliet,1596 small,3,romeoandjuliet,1596 aside,3,romeoandjuliet,1596 morn,3,romeoandjuliet,1596 lost,3,romeoandjuliet,1596 spent,3,romeoandjuliet,1596 afternoon,3,romeoandjuliet,1596 devil,3,romeoandjuliet,1596 knew,3,romeoandjuliet,1596 pure,3,romeoandjuliet,1596 Because,3,romeoandjuliet,1596 toad,3,romeoandjuliet,1596 oppression,3,romeoandjuliet,1596 scratch,3,romeoandjuliet,1596 Most,3,romeoandjuliet,1596 field,3,romeoandjuliet,1596 afford,3,romeoandjuliet,1596 hall,3,romeoandjuliet,1596 liberty,3,romeoandjuliet,1596 deny,3,romeoandjuliet,1596 confession,3,romeoandjuliet,1596 sweetest,3,romeoandjuliet,1596 city,3,romeoandjuliet,1596 She's,3,romeoandjuliet,1596 present,3,romeoandjuliet,1596 pain,3,romeoandjuliet,1596 delight,3,romeoandjuliet,1596 fiery,3,romeoandjuliet,1596 logs,3,romeoandjuliet,1596 apt,3,romeoandjuliet,1596 devise,3,romeoandjuliet,1596 faithful,3,romeoandjuliet,1596 fiend,3,romeoandjuliet,1596 food,3,romeoandjuliet,1596 fond,3,romeoandjuliet,1596 mayst,3,romeoandjuliet,1596 Are,3,romeoandjuliet,1596 Hast,3,romeoandjuliet,1596 chance,3,romeoandjuliet,1596 knock,3,romeoandjuliet,1596 thanks,3,romeoandjuliet,1596 right,3,romeoandjuliet,1596 deadly,3,romeoandjuliet,1596 Hark,3,romeoandjuliet,1596 Sirrah,3,romeoandjuliet,1596 touch,3,romeoandjuliet,1596 judgment,3,romeoandjuliet,1596 Peter's,3,romeoandjuliet,1596 here's,3,romeoandjuliet,1596 Should,3,romeoandjuliet,1596 occasion,3,romeoandjuliet,1596 honey,3,romeoandjuliet,1596 broad,3,romeoandjuliet,1596 Else,3,romeoandjuliet,1596 beast,3,romeoandjuliet,1596 almost,3,romeoandjuliet,1596 wakes,3,romeoandjuliet,1596 hire,3,romeoandjuliet,1596 beats,3,romeoandjuliet,1596 Hang,3,romeoandjuliet,1596 curtains,3,romeoandjuliet,1596 remedy,3,romeoandjuliet,1596 faint,3,romeoandjuliet,1596 year,3,romeoandjuliet,1596 sirrah,3,romeoandjuliet,1596 Love,3,romeoandjuliet,1596 substance,3,romeoandjuliet,1596 Sir,3,romeoandjuliet,1596 say'st,3,romeoandjuliet,1596 Dost,3,romeoandjuliet,1596 airy,3,romeoandjuliet,1596 Paris',3,romeoandjuliet,1596 daylight,3,romeoandjuliet,1596 exchange,3,romeoandjuliet,1596 kisses,3,romeoandjuliet,1596 beauties,3,romeoandjuliet,1596 blush,3,romeoandjuliet,1596 mask,3,romeoandjuliet,1596 presently,3,romeoandjuliet,1596 knows,3,romeoandjuliet,1596 slave,3,romeoandjuliet,1596 craves,3,romeoandjuliet,1596 search,3,romeoandjuliet,1596 mistress',3,romeoandjuliet,1596 wed,3,romeoandjuliet,1596 Were,3,romeoandjuliet,1596 taste,3,romeoandjuliet,1596 murders,3,romeoandjuliet,1596 flies,3,romeoandjuliet,1596 We'll,3,romeoandjuliet,1596 cure,3,romeoandjuliet,1596 closed,3,romeoandjuliet,1596 walls,3,romeoandjuliet,1596 Servingmen,3,romeoandjuliet,1596 save,3,romeoandjuliet,1596 believe,3,romeoandjuliet,1596 between,3,romeoandjuliet,1596 Lammas,3,romeoandjuliet,1596 supper,3,romeoandjuliet,1596 Three,3,romeoandjuliet,1596 cursed,3,romeoandjuliet,1596 joints,3,romeoandjuliet,1596 weeping,3,romeoandjuliet,1596 waste,3,romeoandjuliet,1596 hundred,3,romeoandjuliet,1596 Even,3,romeoandjuliet,1596 Make,3,romeoandjuliet,1596 yond,3,romeoandjuliet,1596 giving,3,romeoandjuliet,1596 modesty,3,romeoandjuliet,1596 please,3,romeoandjuliet,1596 humour,3,romeoandjuliet,1596 fly,3,romeoandjuliet,1596 'Heart's,3,romeoandjuliet,1596 fie,3,romeoandjuliet,1596 passion,3,romeoandjuliet,1596 vow,3,romeoandjuliet,1596 bark,3,romeoandjuliet,1596 wide,3,romeoandjuliet,1596 Unto,3,romeoandjuliet,1596 uncle,3,romeoandjuliet,1596 depart,3,romeoandjuliet,1596 patient,3,romeoandjuliet,1596 public,3,romeoandjuliet,1596 Wednesday,3,romeoandjuliet,1596 fast,3,romeoandjuliet,1596 powder,3,romeoandjuliet,1596 gallant,3,romeoandjuliet,1596 cup,3,romeoandjuliet,1596 hollow,3,romeoandjuliet,1596 strong,3,romeoandjuliet,1596 horses,3,romeoandjuliet,1596 Where's,3,romeoandjuliet,1596 bawd,3,romeoandjuliet,1596 hearts,3,romeoandjuliet,1596 fickle,3,romeoandjuliet,1596 adieu,3,romeoandjuliet,1596 aloof,3,romeoandjuliet,1596 drunk,3,romeoandjuliet,1596 Jule,3,romeoandjuliet,1596 Jesu,3,romeoandjuliet,1596 supposed,3,romeoandjuliet,1596 courtesy,3,romeoandjuliet,1596 tidings,3,romeoandjuliet,1596 thrust,3,romeoandjuliet,1596 cry,3,romeoandjuliet,1596 Gentlemen,3,romeoandjuliet,1596 Things,3,romeoandjuliet,1596 wretched,3,romeoandjuliet,1596 Susan,3,romeoandjuliet,1596 Chorus,3,romeoandjuliet,1596 post,3,romeoandjuliet,1596 alas,3,romeoandjuliet,1596 goes,3,romeoandjuliet,1596 protest,3,romeoandjuliet,1596 purpose,3,romeoandjuliet,1596 abroad,3,romeoandjuliet,1596 Signior,3,romeoandjuliet,1596 conduct,3,romeoandjuliet,1596 learn,3,romeoandjuliet,1596 thoughts,3,romeoandjuliet,1596 wound,3,romeoandjuliet,1596 withdraw,3,romeoandjuliet,1596 Mab,3,romeoandjuliet,1596 shroud,3,romeoandjuliet,1596 Without,3,romeoandjuliet,1596 going,3,romeoandjuliet,1596 urged,3,romeoandjuliet,1596 date,3,romeoandjuliet,1596 You'll,3,romeoandjuliet,1596 lain,3,romeoandjuliet,1596 nightingale,3,romeoandjuliet,1596 dug,3,romeoandjuliet,1596 another's,3,romeoandjuliet,1596 dry,3,romeoandjuliet,1596 guests,3,romeoandjuliet,1596 burden,3,romeoandjuliet,1596 pronounce,3,romeoandjuliet,1596 woman,3,romeoandjuliet,1596 solemnity,3,romeoandjuliet,1596 Find,3,romeoandjuliet,1596 wouldst,3,romeoandjuliet,1596 e'er,3,romeoandjuliet,1596 women,3,romeoandjuliet,1596 grey,4,romeoandjuliet,1596 John,4,romeoandjuliet,1596 ran,4,romeoandjuliet,1596 alack,4,romeoandjuliet,1596 Wilt,4,romeoandjuliet,1596 Tell,4,romeoandjuliet,1596 hers,4,romeoandjuliet,1596 Either,4,romeoandjuliet,1596 fought,4,romeoandjuliet,1596 sour,4,romeoandjuliet,1596 iron,4,romeoandjuliet,1596 damned,4,romeoandjuliet,1596 trust,4,romeoandjuliet,1596 lightning,4,romeoandjuliet,1596 bridegroom,4,romeoandjuliet,1596 mercy,4,romeoandjuliet,1596 birth,4,romeoandjuliet,1596 brother,4,romeoandjuliet,1596 sure,4,romeoandjuliet,1596 golden,4,romeoandjuliet,1596 veins,4,romeoandjuliet,1596 something,4,romeoandjuliet,1596 walk,4,romeoandjuliet,1596 Such,4,romeoandjuliet,1596 'I,4,romeoandjuliet,1596 doubt,4,romeoandjuliet,1596 heavens,4,romeoandjuliet,1596 civil,4,romeoandjuliet,1596 fault,4,romeoandjuliet,1596 falls,4,romeoandjuliet,1596 after,4,romeoandjuliet,1596 blind,4,romeoandjuliet,1596 brief,4,romeoandjuliet,1596 wind,4,romeoandjuliet,1596 night's,4,romeoandjuliet,1596 Musicians,4,romeoandjuliet,1596 dies,4,romeoandjuliet,1596 bold,4,romeoandjuliet,1596 steel,4,romeoandjuliet,1596 bitter,4,romeoandjuliet,1596 Faith,4,romeoandjuliet,1596 pay,4,romeoandjuliet,1596 Hie,4,romeoandjuliet,1596 patience,4,romeoandjuliet,1596 bow,4,romeoandjuliet,1596 among,4,romeoandjuliet,1596 cruel,4,romeoandjuliet,1596 hie,4,romeoandjuliet,1596 wisdom,4,romeoandjuliet,1596 piteous,4,romeoandjuliet,1596 fatal,4,romeoandjuliet,1596 east,4,romeoandjuliet,1596 proud,4,romeoandjuliet,1596 strew,4,romeoandjuliet,1596 quiet,4,romeoandjuliet,1596 gave,4,romeoandjuliet,1596 wear,4,romeoandjuliet,1596 jealous,4,romeoandjuliet,1596 a',4,romeoandjuliet,1596 swift,4,romeoandjuliet,1596 O'er,4,romeoandjuliet,1596 begin,4,romeoandjuliet,1596 ha,4,romeoandjuliet,1596 left,4,romeoandjuliet,1596 needs,4,romeoandjuliet,1596 Unless,4,romeoandjuliet,1596 lent,4,romeoandjuliet,1596 seeming,4,romeoandjuliet,1596 buried,4,romeoandjuliet,1596 ay,4,romeoandjuliet,1596 gentlewoman,4,romeoandjuliet,1596 wench,4,romeoandjuliet,1596 that's,4,romeoandjuliet,1596 commend,4,romeoandjuliet,1596 wisely,4,romeoandjuliet,1596 lover,4,romeoandjuliet,1596 moon,4,romeoandjuliet,1596 loss,4,romeoandjuliet,1596 loved,4,romeoandjuliet,1596 ready,4,romeoandjuliet,1596 Came,4,romeoandjuliet,1596 hard,4,romeoandjuliet,1596 crow,4,romeoandjuliet,1596 half,4,romeoandjuliet,1596 welcome,4,romeoandjuliet,1596 Knocking,4,romeoandjuliet,1596 shut,4,romeoandjuliet,1596 foul,4,romeoandjuliet,1596 course,4,romeoandjuliet,1596 open,4,romeoandjuliet,1596 weeps,4,romeoandjuliet,1596 prepare,4,romeoandjuliet,1596 forsworn,4,romeoandjuliet,1596 ghostly,4,romeoandjuliet,1596 secret,4,romeoandjuliet,1596 Art,4,romeoandjuliet,1596 room,4,romeoandjuliet,1596 keeps,4,romeoandjuliet,1596 empty,4,romeoandjuliet,1596 note,4,romeoandjuliet,1596 Peace,4,romeoandjuliet,1596 'banished',4,romeoandjuliet,1596 strike,4,romeoandjuliet,1596 dares,4,romeoandjuliet,1596 mouse,4,romeoandjuliet,1596 precious,4,romeoandjuliet,1596 yours,4,romeoandjuliet,1596 knave,4,romeoandjuliet,1596 there's,4,romeoandjuliet,1596 known,4,romeoandjuliet,1596 woo,4,romeoandjuliet,1596 father's,4,romeoandjuliet,1596 Third,4,romeoandjuliet,1596 sake,4,romeoandjuliet,1596 oft,4,romeoandjuliet,1596 hateful,4,romeoandjuliet,1596 knife,4,romeoandjuliet,1596 banish'd,4,romeoandjuliet,1596 waking,4,romeoandjuliet,1596 count,4,romeoandjuliet,1596 torture,4,romeoandjuliet,1596 Thus,4,romeoandjuliet,1596 Can,4,romeoandjuliet,1596 rage,4,romeoandjuliet,1596 kinsmen,4,romeoandjuliet,1596 coming,4,romeoandjuliet,1596 hair,4,romeoandjuliet,1596 Citizen,4,romeoandjuliet,1596 anger,4,romeoandjuliet,1596 womb,4,romeoandjuliet,1596 fain,4,romeoandjuliet,1596 That's,4,romeoandjuliet,1596 work,4,romeoandjuliet,1596 worn,4,romeoandjuliet,1596 minute,4,romeoandjuliet,1596 bare,4,romeoandjuliet,1596 names,4,romeoandjuliet,1596 hope,4,romeoandjuliet,1596 Welcome,4,romeoandjuliet,1596 green,4,romeoandjuliet,1596 cut,4,romeoandjuliet,1596 streets,4,romeoandjuliet,1596 conjure,4,romeoandjuliet,1596 intents,4,romeoandjuliet,1596 along,4,romeoandjuliet,1596 seek,4,romeoandjuliet,1596 coz,4,romeoandjuliet,1596 tree,4,romeoandjuliet,1596 remove,4,romeoandjuliet,1596 sell,4,romeoandjuliet,1596 match,4,romeoandjuliet,1596 brow,4,romeoandjuliet,1596 slow,4,romeoandjuliet,1596 spite,4,romeoandjuliet,1596 sadness,4,romeoandjuliet,1596 met,4,romeoandjuliet,1596 Since,4,romeoandjuliet,1596 ladies,4,romeoandjuliet,1596 Away,4,romeoandjuliet,1596 thither,4,romeoandjuliet,1596 nature,4,romeoandjuliet,1596 slay,4,romeoandjuliet,1596 attend,4,romeoandjuliet,1596 hoar,4,romeoandjuliet,1596 lamb,4,romeoandjuliet,1596 spirit,4,romeoandjuliet,1596 Tut,4,romeoandjuliet,1596 swords,5,romeoandjuliet,1596 lamentable,5,romeoandjuliet,1596 heir,5,romeoandjuliet,1596 Alas,5,romeoandjuliet,1596 hell,5,romeoandjuliet,1596 slaughter'd,5,romeoandjuliet,1596 sighs,5,romeoandjuliet,1596 honourable,5,romeoandjuliet,1596 Ere,5,romeoandjuliet,1596 withal,5,romeoandjuliet,1596 under,5,romeoandjuliet,1596 truth,5,romeoandjuliet,1596 Upon,5,romeoandjuliet,1596 friends,5,romeoandjuliet,1596 care,5,romeoandjuliet,1596 sad,5,romeoandjuliet,1596 yourself,5,romeoandjuliet,1596 dance,5,romeoandjuliet,1596 fingers,5,romeoandjuliet,1596 town,5,romeoandjuliet,1596 blessed,5,romeoandjuliet,1596 shrift,5,romeoandjuliet,1596 further,5,romeoandjuliet,1596 lovers',5,romeoandjuliet,1596 wake,5,romeoandjuliet,1596 wedding,5,romeoandjuliet,1596 scorn,5,romeoandjuliet,1596 nine,5,romeoandjuliet,1596 Was,5,romeoandjuliet,1596 cause,5,romeoandjuliet,1596 second,5,romeoandjuliet,1596 wings,5,romeoandjuliet,1596 read,5,romeoandjuliet,1596 Out,5,romeoandjuliet,1596 fellow,5,romeoandjuliet,1596 Laurence',5,romeoandjuliet,1596 Turn,5,romeoandjuliet,1596 bride,5,romeoandjuliet,1596 honour,5,romeoandjuliet,1596 rude,5,romeoandjuliet,1596 know'st,5,romeoandjuliet,1596 wise,5,romeoandjuliet,1596 window,5,romeoandjuliet,1596 voice,5,romeoandjuliet,1596 pretty,5,romeoandjuliet,1596 PAGE,5,romeoandjuliet,1596 wits,5,romeoandjuliet,1596 bright,5,romeoandjuliet,1596 wherefore,5,romeoandjuliet,1596 prince's,5,romeoandjuliet,1596 side,5,romeoandjuliet,1596 music,5,romeoandjuliet,1596 Mercutio's,5,romeoandjuliet,1596 tear,5,romeoandjuliet,1596 pleasure,5,romeoandjuliet,1596 Laurence's,5,romeoandjuliet,1596 ease,5,romeoandjuliet,1596 gold,5,romeoandjuliet,1596 Speak,5,romeoandjuliet,1596 Saint,5,romeoandjuliet,1596 longer,5,romeoandjuliet,1596 beat,5,romeoandjuliet,1596 hadst,5,romeoandjuliet,1596 untimely,5,romeoandjuliet,1596 grace,5,romeoandjuliet,1596 hare,5,romeoandjuliet,1596 Call,5,romeoandjuliet,1596 Lady,5,romeoandjuliet,1596 joyful,5,romeoandjuliet,1596 excuse,5,romeoandjuliet,1596 form,5,romeoandjuliet,1596 ask,5,romeoandjuliet,1596 point,5,romeoandjuliet,1596 rough,5,romeoandjuliet,1596 change,5,romeoandjuliet,1596 lead,5,romeoandjuliet,1596 things,5,romeoandjuliet,1596 written,5,romeoandjuliet,1596 quickly,5,romeoandjuliet,1596 See,5,romeoandjuliet,1596 already,5,romeoandjuliet,1596 Could,5,romeoandjuliet,1596 state,5,romeoandjuliet,1596 let's,5,romeoandjuliet,1596 quoth,5,romeoandjuliet,1596 chide,5,romeoandjuliet,1596 letters,5,romeoandjuliet,1596 living,5,romeoandjuliet,1596 fray,5,romeoandjuliet,1596 five,5,romeoandjuliet,1596 break,5,romeoandjuliet,1596 ring,5,romeoandjuliet,1596 musicians,5,romeoandjuliet,1596 dreams,5,romeoandjuliet,1596 Montagues,5,romeoandjuliet,1596 consent,5,romeoandjuliet,1596 saint,5,romeoandjuliet,1596 foe,5,romeoandjuliet,1596 Sweet,5,romeoandjuliet,1596 fine,5,romeoandjuliet,1596 herself,5,romeoandjuliet,1596 is't,5,romeoandjuliet,1596 man's,5,romeoandjuliet,1596 reason,5,romeoandjuliet,1596 thank,5,romeoandjuliet,1596 honest,5,romeoandjuliet,1596 gives,5,romeoandjuliet,1596 Anon,5,romeoandjuliet,1596 satisfied,5,romeoandjuliet,1596 either,5,romeoandjuliet,1596 thus,5,romeoandjuliet,1596 return,5,romeoandjuliet,1596 bade,5,romeoandjuliet,1596 Two,5,romeoandjuliet,1596 May,5,romeoandjuliet,1596 strange,5,romeoandjuliet,1596 simple,5,romeoandjuliet,1596 laid,5,romeoandjuliet,1596 dog,5,romeoandjuliet,1596 asleep,5,romeoandjuliet,1596 Did,5,romeoandjuliet,1596 dare,5,romeoandjuliet,1596 slew,5,romeoandjuliet,1596 might,5,romeoandjuliet,1596 dew,5,romeoandjuliet,1596 power,5,romeoandjuliet,1596 shape,5,romeoandjuliet,1596 took,6,romeoandjuliet,1596 cords,6,romeoandjuliet,1596 Stay,6,romeoandjuliet,1596 while,6,romeoandjuliet,1596 yonder,6,romeoandjuliet,1596 cheeks,6,romeoandjuliet,1596 thumb,6,romeoandjuliet,1596 strength,6,romeoandjuliet,1596 jest,6,romeoandjuliet,1596 cheek,6,romeoandjuliet,1596 noise,6,romeoandjuliet,1596 sit,6,romeoandjuliet,1596 Aside,6,romeoandjuliet,1596 These,6,romeoandjuliet,1596 fight,6,romeoandjuliet,1596 Our,6,romeoandjuliet,1596 envious,6,romeoandjuliet,1596 wish,6,romeoandjuliet,1596 murder,6,romeoandjuliet,1596 matter,6,romeoandjuliet,1596 wast,6,romeoandjuliet,1596 spoke,6,romeoandjuliet,1596 stir,6,romeoandjuliet,1596 itself,6,romeoandjuliet,1596 flowers,6,romeoandjuliet,1596 prove,6,romeoandjuliet,1596 heads,6,romeoandjuliet,1596 exile,6,romeoandjuliet,1596 Like,6,romeoandjuliet,1596 deep,6,romeoandjuliet,1596 breast,6,romeoandjuliet,1596 Here's,6,romeoandjuliet,1596 doom,6,romeoandjuliet,1596 feast,6,romeoandjuliet,1596 age,6,romeoandjuliet,1596 less,6,romeoandjuliet,1596 speaks,6,romeoandjuliet,1596 fool,6,romeoandjuliet,1596 girl,6,romeoandjuliet,1596 monument,6,romeoandjuliet,1596 having,6,romeoandjuliet,1596 far,6,romeoandjuliet,1596 through,6,romeoandjuliet,1596 nay,6,romeoandjuliet,1596 'Ay,6,romeoandjuliet,1596 From,6,romeoandjuliet,1596 youth,6,romeoandjuliet,1596 awhile,6,romeoandjuliet,1596 Look,6,romeoandjuliet,1596 didst,6,romeoandjuliet,1596 close,6,romeoandjuliet,1596 banishment,6,romeoandjuliet,1596 fetch,6,romeoandjuliet,1596 found,6,romeoandjuliet,1596 serve,6,romeoandjuliet,1596 Capulets,6,romeoandjuliet,1596 three,6,romeoandjuliet,1596 company,6,romeoandjuliet,1596 tale,6,romeoandjuliet,1596 wild,6,romeoandjuliet,1596 hold,6,romeoandjuliet,1596 home,6,romeoandjuliet,1596 unto,6,romeoandjuliet,1596 fourteen,6,romeoandjuliet,1596 seen,6,romeoandjuliet,1596 whom,6,romeoandjuliet,1596 cold,6,romeoandjuliet,1596 remember,6,romeoandjuliet,1596 street,6,romeoandjuliet,1596 lark,6,romeoandjuliet,1596 hurt,6,romeoandjuliet,1596 follow,6,romeoandjuliet,1596 kind,6,romeoandjuliet,1596 Benvolio,6,romeoandjuliet,1596 den,6,romeoandjuliet,1596 enemy,6,romeoandjuliet,1596 JOHN,6,romeoandjuliet,1596 V,7,romeoandjuliet,1596 mistress,7,romeoandjuliet,1596 writ,7,romeoandjuliet,1596 dagger,7,romeoandjuliet,1596 Page,7,romeoandjuliet,1596 words,7,romeoandjuliet,1596 corse,7,romeoandjuliet,1596 she's,7,romeoandjuliet,1596 enough,7,romeoandjuliet,1596 church,7,romeoandjuliet,1596 looks,7,romeoandjuliet,1596 vile,7,romeoandjuliet,1596 turn,7,romeoandjuliet,1596 Apothecary,7,romeoandjuliet,1596 kill'd,7,romeoandjuliet,1596 fearful,7,romeoandjuliet,1596 feel,7,romeoandjuliet,1596 flesh,7,romeoandjuliet,1596 What's,7,romeoandjuliet,1596 measure,7,romeoandjuliet,1596 At,7,romeoandjuliet,1596 His,7,romeoandjuliet,1596 canst,7,romeoandjuliet,1596 since,7,romeoandjuliet,1596 hit,7,romeoandjuliet,1596 past,7,romeoandjuliet,1596 Re,7,romeoandjuliet,1596 orchard,7,romeoandjuliet,1596 air,7,romeoandjuliet,1596 houses,7,romeoandjuliet,1596 thyself,7,romeoandjuliet,1596 Yet,7,romeoandjuliet,1596 men's,7,romeoandjuliet,1596 hot,7,romeoandjuliet,1596 More,7,romeoandjuliet,1596 arm,7,romeoandjuliet,1596 bosom,7,romeoandjuliet,1596 moved,7,romeoandjuliet,1596 indeed,7,romeoandjuliet,1596 tender,7,romeoandjuliet,1596 Alack,7,romeoandjuliet,1596 Juliet's,7,romeoandjuliet,1596 stars,7,romeoandjuliet,1596 bloody,7,romeoandjuliet,1596 All,7,romeoandjuliet,1596 mark,7,romeoandjuliet,1596 because,7,romeoandjuliet,1596 fire,7,romeoandjuliet,1596 maids,7,romeoandjuliet,1596 near,7,romeoandjuliet,1596 loving,7,romeoandjuliet,1596 beseech,7,romeoandjuliet,1596 next,7,romeoandjuliet,1596 Till,7,romeoandjuliet,1596 fortune,7,romeoandjuliet,1596 shows,7,romeoandjuliet,1596 thousand,7,romeoandjuliet,1596 gentlemen,7,romeoandjuliet,1596 short,7,romeoandjuliet,1596 we'll,7,romeoandjuliet,1596 ABRAHAM,7,romeoandjuliet,1596 ear,7,romeoandjuliet,1596 Death,7,romeoandjuliet,1596 dark,7,romeoandjuliet,1596 sudden,7,romeoandjuliet,1596 behold,7,romeoandjuliet,1596 Too,7,romeoandjuliet,1596 me,263,romeoandjuliet,1596 meet,8,romeoandjuliet,1596 times,8,romeoandjuliet,1596 bones,8,romeoandjuliet,1596 thought,8,romeoandjuliet,1596 churchyard,8,romeoandjuliet,1596 draw,8,romeoandjuliet,1596 full,8,romeoandjuliet,1596 bound,8,romeoandjuliet,1596 merry,8,romeoandjuliet,1596 sea,8,romeoandjuliet,1596 counsel,8,romeoandjuliet,1596 sword,8,romeoandjuliet,1596 ancient,8,romeoandjuliet,1596 goose,8,romeoandjuliet,1596 book,8,romeoandjuliet,1596 sick,8,romeoandjuliet,1596 morning,8,romeoandjuliet,1596 means,8,romeoandjuliet,1596 play,8,romeoandjuliet,1596 woful,8,romeoandjuliet,1596 lady's,8,romeoandjuliet,1596 move,8,romeoandjuliet,1596 noble,8,romeoandjuliet,1596 hide,8,romeoandjuliet,1596 Lord,8,romeoandjuliet,1596 high,8,romeoandjuliet,1596 mind,8,romeoandjuliet,1596 County,8,romeoandjuliet,1596 sorrow,8,romeoandjuliet,1596 woes,8,romeoandjuliet,1596 bite,8,romeoandjuliet,1596 pardon,8,romeoandjuliet,1596 hours,8,romeoandjuliet,1596 clouds,8,romeoandjuliet,1596 county,8,romeoandjuliet,1596 last,8,romeoandjuliet,1596 silver,8,romeoandjuliet,1596 Take,8,romeoandjuliet,1596 answer,9,romeoandjuliet,1596 o'er,9,romeoandjuliet,1596 days,9,romeoandjuliet,1596 sight,9,romeoandjuliet,1596 case,9,romeoandjuliet,1596 came,9,romeoandjuliet,1596 Nor,9,romeoandjuliet,1596 body,9,romeoandjuliet,1596 against,9,romeoandjuliet,1596 Tybalt's,9,romeoandjuliet,1596 others,9,romeoandjuliet,1596 mean,9,romeoandjuliet,1596 boy,9,romeoandjuliet,1596 On,9,romeoandjuliet,1596 Within,9,romeoandjuliet,1596 IV,9,romeoandjuliet,1596 weep,9,romeoandjuliet,1596 farewell,9,romeoandjuliet,1596 vault,9,romeoandjuliet,1596 forget,9,romeoandjuliet,1596 show,9,romeoandjuliet,1596 though,9,romeoandjuliet,1596 into,9,romeoandjuliet,1596 Doth,9,romeoandjuliet,1596 Peter,9,romeoandjuliet,1596 end,9,romeoandjuliet,1596 need,9,romeoandjuliet,1596 once,9,romeoandjuliet,1596 only,9,romeoandjuliet,1596 way,9,romeoandjuliet,1596 even,9,romeoandjuliet,1596 ne'er,9,romeoandjuliet,1596 great,9,romeoandjuliet,1596 Rosaline,9,romeoandjuliet,1596 swear,9,romeoandjuliet,1596 first,9,romeoandjuliet,1596 torch,9,romeoandjuliet,1596 flower,9,romeoandjuliet,1596 calls,10,romeoandjuliet,1596 saw,10,romeoandjuliet,1596 black,10,romeoandjuliet,1596 wall,10,romeoandjuliet,1596 set,10,romeoandjuliet,1596 There,10,romeoandjuliet,1596 bring,10,romeoandjuliet,1596 else,10,romeoandjuliet,1596 Hold,10,romeoandjuliet,1596 III,10,romeoandjuliet,1596 quarrel,10,romeoandjuliet,1596 Be,10,romeoandjuliet,1596 desperate,10,romeoandjuliet,1596 Her,10,romeoandjuliet,1596 enter,10,romeoandjuliet,1596 ears,10,romeoandjuliet,1596 tongue,10,romeoandjuliet,1596 done,10,romeoandjuliet,1596 o',10,romeoandjuliet,1596 twenty,10,romeoandjuliet,1596 pale,10,romeoandjuliet,1596 foot,10,romeoandjuliet,1596 ye,10,romeoandjuliet,1596 Than,10,romeoandjuliet,1596 watch,10,romeoandjuliet,1596 Have,10,romeoandjuliet,1596 maid,10,romeoandjuliet,1596 dream,10,romeoandjuliet,1596 get,10,romeoandjuliet,1596 off,10,romeoandjuliet,1596 says,10,romeoandjuliet,1596 heavy,10,romeoandjuliet,1596 ground,10,romeoandjuliet,1596 rich,10,romeoandjuliet,1596 comfort,10,romeoandjuliet,1596 kiss,10,romeoandjuliet,1596 master,10,romeoandjuliet,1596 sound,10,romeoandjuliet,1596 sleep,10,romeoandjuliet,1596 straight,10,romeoandjuliet,1596 Marry,10,romeoandjuliet,1596 beauty,10,romeoandjuliet,1596 shalt,10,romeoandjuliet,1596 kill,10,romeoandjuliet,1596 himself,10,romeoandjuliet,1596 tomb,11,romeoandjuliet,1596 Will,11,romeoandjuliet,1596 every,11,romeoandjuliet,1596 another,11,romeoandjuliet,1596 warrant,11,romeoandjuliet,1596 better,11,romeoandjuliet,1596 Watchman,11,romeoandjuliet,1596 about,11,romeoandjuliet,1596 One,11,romeoandjuliet,1596 he's,11,romeoandjuliet,1596 chamber,11,romeoandjuliet,1596 whose,11,romeoandjuliet,1596 bear,11,romeoandjuliet,1596 Hath,11,romeoandjuliet,1596 Capulet's,11,romeoandjuliet,1596 Therefore,11,romeoandjuliet,1596 Friar,11,romeoandjuliet,1596 many,11,romeoandjuliet,1596 nor,11,romeoandjuliet,1596 talk,11,romeoandjuliet,1596 lay,11,romeoandjuliet,1596 Let,11,romeoandjuliet,1596 send,11,romeoandjuliet,1596 madam,11,romeoandjuliet,1596 mad,11,romeoandjuliet,1596 makes,11,romeoandjuliet,1596 marriage,11,romeoandjuliet,1596 late,11,romeoandjuliet,1596 without,11,romeoandjuliet,1596 shame,11,romeoandjuliet,1596 run,12,romeoandjuliet,1596 years,12,romeoandjuliet,1596 sin,12,romeoandjuliet,1596 love's,12,romeoandjuliet,1596 Farewell,12,romeoandjuliet,1596 within,12,romeoandjuliet,1596 therefore,12,romeoandjuliet,1596 II,12,romeoandjuliet,1596 best,12,romeoandjuliet,1596 grief,12,romeoandjuliet,1596 dost,12,romeoandjuliet,1596 banished,12,romeoandjuliet,1596 ho,12,romeoandjuliet,1596 forth,12,romeoandjuliet,1596 little,12,romeoandjuliet,1596 Your,12,romeoandjuliet,1596 Madam,12,romeoandjuliet,1596 gentle,12,romeoandjuliet,1596 Some,12,romeoandjuliet,1596 They,12,romeoandjuliet,1596 could,12,romeoandjuliet,1596 wit,12,romeoandjuliet,1596 happy,12,romeoandjuliet,1596 marry,12,romeoandjuliet,1596 poison,12,romeoandjuliet,1596 ever,12,romeoandjuliet,1596 law,12,romeoandjuliet,1596 hither,12,romeoandjuliet,1596 leave,12,romeoandjuliet,1596 being,12,romeoandjuliet,1596 soon,13,romeoandjuliet,1596 Give,13,romeoandjuliet,1596 fear,13,romeoandjuliet,1596 above,13,romeoandjuliet,1596 hands,13,romeoandjuliet,1596 most,13,romeoandjuliet,1596 place,13,romeoandjuliet,1596 hate,13,romeoandjuliet,1596 Romeo's,13,romeoandjuliet,1596 Being,13,romeoandjuliet,1596 thine,13,romeoandjuliet,1596 still,13,romeoandjuliet,1596 kinsman,13,romeoandjuliet,1596 letter,13,romeoandjuliet,1596 When,13,romeoandjuliet,1596 Nay,14,romeoandjuliet,1596 haste,14,romeoandjuliet,1596 joy,14,romeoandjuliet,1596 Thursday,14,romeoandjuliet,1596 soul,14,romeoandjuliet,1596 Not,14,romeoandjuliet,1596 nothing,14,romeoandjuliet,1596 daughter,14,romeoandjuliet,1596 rest,14,romeoandjuliet,1596 said,14,romeoandjuliet,1596 breath,14,romeoandjuliet,1596 husband,14,romeoandjuliet,1596 Mantua,14,romeoandjuliet,1596 faith,14,romeoandjuliet,1596 none,14,romeoandjuliet,1596 Verona,14,romeoandjuliet,1596 myself,14,romeoandjuliet,1596 woe,14,romeoandjuliet,1596 same,14,romeoandjuliet,1596 'Tis,14,romeoandjuliet,1596 news,14,romeoandjuliet,1596 fall,14,romeoandjuliet,1596 Mercutio,14,romeoandjuliet,1596 gentleman,14,romeoandjuliet,1596 lives,14,romeoandjuliet,1596 use,14,romeoandjuliet,1596 that,270,romeoandjuliet,1596 peace,15,romeoandjuliet,1596 help,15,romeoandjuliet,1596 pray,15,romeoandjuliet,1596 head,15,romeoandjuliet,1596 mother,15,romeoandjuliet,1596 sun,15,romeoandjuliet,1596 Here,15,romeoandjuliet,1596 friend,15,romeoandjuliet,1596 Do,15,romeoandjuliet,1596 Ah,15,romeoandjuliet,1596 put,15,romeoandjuliet,1596 new,15,romeoandjuliet,1596 ere,15,romeoandjuliet,1596 child,15,romeoandjuliet,1596 Shall,15,romeoandjuliet,1596 till,15,romeoandjuliet,1596 alone,15,romeoandjuliet,1596 poor,15,romeoandjuliet,1596 you,271,romeoandjuliet,1596 villain,16,romeoandjuliet,1596 early,16,romeoandjuliet,1596 An,16,romeoandjuliet,1596 bid,16,romeoandjuliet,1596 those,16,romeoandjuliet,1596 ill,16,romeoandjuliet,1596 keep,16,romeoandjuliet,1596 prince,16,romeoandjuliet,1596 why,16,romeoandjuliet,1596 friar,16,romeoandjuliet,1596 lies,17,romeoandjuliet,1596 world,17,romeoandjuliet,1596 Who,17,romeoandjuliet,1596 had,17,romeoandjuliet,1596 never,17,romeoandjuliet,1596 We,17,romeoandjuliet,1596 long,17,romeoandjuliet,1596 Second,17,romeoandjuliet,1596 cousin,17,romeoandjuliet,1596 Musician,17,romeoandjuliet,1596 slain,17,romeoandjuliet,1596 grave,17,romeoandjuliet,1596 own,17,romeoandjuliet,1596 hour,17,romeoandjuliet,1596 lips,17,romeoandjuliet,1596 live,17,romeoandjuliet,1596 cell,17,romeoandjuliet,1596 Thy,17,romeoandjuliet,1596 call,18,romeoandjuliet,1596 BALTHASAR,18,romeoandjuliet,1596 son,18,romeoandjuliet,1596 PETER,18,romeoandjuliet,1596 blood,18,romeoandjuliet,1596 Good,18,romeoandjuliet,1596 eye,18,romeoandjuliet,1596 who,18,romeoandjuliet,1596 thing,18,romeoandjuliet,1596 GREGORY,18,romeoandjuliet,1596 wife,18,romeoandjuliet,1596 two,18,romeoandjuliet,1596 other,18,romeoandjuliet,1596 away,19,romeoandjuliet,1596 He,19,romeoandjuliet,1596 down,19,romeoandjuliet,1596 earth,19,romeoandjuliet,1596 She,19,romeoandjuliet,1596 married,19,romeoandjuliet,1596 holy,19,romeoandjuliet,1596 PRINCE,19,romeoandjuliet,1596 tears,20,romeoandjuliet,1596 been,20,romeoandjuliet,1596 any,20,romeoandjuliet,1596 You,20,romeoandjuliet,1596 before,20,romeoandjuliet,1596 think,20,romeoandjuliet,1596 Well,20,romeoandjuliet,1596 men,20,romeoandjuliet,1596 cannot,20,romeoandjuliet,1596 life,21,romeoandjuliet,1596 hear,21,romeoandjuliet,1596 made,21,romeoandjuliet,1596 young,21,romeoandjuliet,1596 morrow,21,romeoandjuliet,1596 find,21,romeoandjuliet,1596 father,21,romeoandjuliet,1596 Why,22,romeoandjuliet,1596 both,22,romeoandjuliet,1596 Ay,22,romeoandjuliet,1596 stay,22,romeoandjuliet,1596 MONTAGUE,22,romeoandjuliet,1596 part,22,romeoandjuliet,1596 SAMPSON,22,romeoandjuliet,1596 Capulet,22,romeoandjuliet,1596 lie,22,romeoandjuliet,1596 lord,23,romeoandjuliet,1596 TYBALT,23,romeoandjuliet,1596 speak,23,romeoandjuliet,1596 stand,23,romeoandjuliet,1596 face,23,romeoandjuliet,1596 die,23,romeoandjuliet,1596 Now,24,romeoandjuliet,1596 With,24,romeoandjuliet,1596 hence,24,romeoandjuliet,1596 where,24,romeoandjuliet,1596 Then,24,romeoandjuliet,1596 Montague,25,romeoandjuliet,1596 name,25,romeoandjuliet,1596 No,25,romeoandjuliet,1596 If,25,romeoandjuliet,1596 So,25,romeoandjuliet,1596 look,25,romeoandjuliet,1596 hand,25,romeoandjuliet,1596 hast,25,romeoandjuliet,1596 ACT,25,romeoandjuliet,1596 very,25,romeoandjuliet,1596 wilt,25,romeoandjuliet,1596 Paris,25,romeoandjuliet,1596 SCENE,25,romeoandjuliet,1596 By,26,romeoandjuliet,1596 Go,26,romeoandjuliet,1596 'tis,26,romeoandjuliet,1596 comes,26,romeoandjuliet,1596 eyes,26,romeoandjuliet,1596 true,26,romeoandjuliet,1596 heaven,27,romeoandjuliet,1596 dear,27,romeoandjuliet,1596 How,27,romeoandjuliet,1596 again,27,romeoandjuliet,1596 AND,27,romeoandjuliet,1596 heart,27,romeoandjuliet,1596 old,27,romeoandjuliet,1596 back,27,romeoandjuliet,1596 light,28,romeoandjuliet,1596 Of,28,romeoandjuliet,1596 bed,28,romeoandjuliet,1596 Which,28,romeoandjuliet,1596 First,28,romeoandjuliet,1596 mine,28,romeoandjuliet,1596 word,28,romeoandjuliet,1596 Where,28,romeoandjuliet,1596 Or,29,romeoandjuliet,1596 God,29,romeoandjuliet,1596 Servant,30,romeoandjuliet,1596 Exeunt,30,romeoandjuliet,1596 us,30,romeoandjuliet,1596 house,30,romeoandjuliet,1596 see,31,romeoandjuliet,1596 how,31,romeoandjuliet,1596 sweet,31,romeoandjuliet,1596 Exit,31,romeoandjuliet,1596 It,32,romeoandjuliet,1596 nurse,32,romeoandjuliet,1596 PARIS,33,romeoandjuliet,1596 As,33,romeoandjuliet,1596 In,33,romeoandjuliet,1596 gone,33,romeoandjuliet,1596 time,33,romeoandjuliet,1596 take,33,romeoandjuliet,1596 which,34,romeoandjuliet,1596 give,34,romeoandjuliet,1596 were,34,romeoandjuliet,1596 let,34,romeoandjuliet,1596 like,35,romeoandjuliet,1596 know,35,romeoandjuliet,1596 did,35,romeoandjuliet,1596 in,291,romeoandjuliet,1596 much,36,romeoandjuliet,1596 Come,36,romeoandjuliet,1596 can,36,romeoandjuliet,1596 This,36,romeoandjuliet,1596 than,37,romeoandjuliet,1596 these,37,romeoandjuliet,1596 make,37,romeoandjuliet,1596 upon,38,romeoandjuliet,1596 must,38,romeoandjuliet,1596 Is,38,romeoandjuliet,1596 doth,38,romeoandjuliet,1596 Thou,38,romeoandjuliet,1596 or,39,romeoandjuliet,1596 when,39,romeoandjuliet,1596 lady,39,romeoandjuliet,1596 yet,40,romeoandjuliet,1596 tell,41,romeoandjuliet,1596 Juliet,41,romeoandjuliet,1596 such,42,romeoandjuliet,1596 My,42,romeoandjuliet,1596 may,42,romeoandjuliet,1596 them,43,romeoandjuliet,1596 fair,43,romeoandjuliet,1596 some,44,romeoandjuliet,1596 was,44,romeoandjuliet,1596 well,44,romeoandjuliet,1596 they,45,romeoandjuliet,1596 Tybalt,45,romeoandjuliet,1596 their,46,romeoandjuliet,1596 should,46,romeoandjuliet,1596 dead,47,romeoandjuliet,1596 ',48,romeoandjuliet,1596 out,48,romeoandjuliet,1596 one,48,romeoandjuliet,1596 we,49,romeoandjuliet,1596 say,50,romeoandjuliet,1596 go,50,romeoandjuliet,1596 art,50,romeoandjuliet,1596 too,50,romeoandjuliet,1596 is,307,romeoandjuliet,1596 hath,52,romeoandjuliet,1596 day,52,romeoandjuliet,1596 would,53,romeoandjuliet,1596 there,54,romeoandjuliet,1596 our,54,romeoandjuliet,1596 sir,55,romeoandjuliet,1596 up,56,romeoandjuliet,1596 am,57,romeoandjuliet,1596 if,57,romeoandjuliet,1596 For,58,romeoandjuliet,1596 now,58,romeoandjuliet,1596 my,314,romeoandjuliet,1596 then,59,romeoandjuliet,1596 more,61,romeoandjuliet,1596 come,61,romeoandjuliet,1596 A,63,romeoandjuliet,1596 at,63,romeoandjuliet,1596 death,64,romeoandjuliet,1596 an,64,romeoandjuliet,1596 LADY,64,romeoandjuliet,1596 here,65,romeoandjuliet,1596 good,65,romeoandjuliet,1596 are,65,romeoandjuliet,1596 I,577,romeoandjuliet,1596 LAURENCE,66,romeoandjuliet,1596 man,67,romeoandjuliet,1596 on,68,romeoandjuliet,1596 MERCUTIO,70,romeoandjuliet,1596 The,70,romeoandjuliet,1596 Enter,71,romeoandjuliet,1596 I'll,71,romeoandjuliet,1596 FRIAR,72,romeoandjuliet,1596 do,74,romeoandjuliet,1596 That,74,romeoandjuliet,1596 But,75,romeoandjuliet,1596 BENVOLIO,75,romeoandjuliet,1596 no,77,romeoandjuliet,1596 from,80,romeoandjuliet,1596 What,80,romeoandjuliet,1596 night,83,romeoandjuliet,1596 what,84,romeoandjuliet,1596 To,87,romeoandjuliet,1596 by,88,romeoandjuliet,1596 your,90,romeoandjuliet,1596 all,90,romeoandjuliet,1596 shall,95,romeoandjuliet,1596 she,96,romeoandjuliet,1596 him,97,romeoandjuliet,1596 the,614,romeoandjuliet,1596 he,104,romeoandjuliet,1596 but,108,romeoandjuliet,1596 of,367,romeoandjuliet,1596 Nurse,116,romeoandjuliet,1596 have,117,romeoandjuliet,1596 Romeo,117,romeoandjuliet,1596 so,120,romeoandjuliet,1596 CAPULET,121,romeoandjuliet,1596 as,123,romeoandjuliet,1596 his,126,romeoandjuliet,1596 love,134,romeoandjuliet,1596 will,136,romeoandjuliet,1596 thee,138,romeoandjuliet,1596 her,142,romeoandjuliet,1596 O,149,romeoandjuliet,1596 thy,150,romeoandjuliet,1596 a,407,romeoandjuliet,1596 JULIET,162,romeoandjuliet,1596 for,166,romeoandjuliet,1596 this,181,romeoandjuliet,1596 it,194,romeoandjuliet,1596 be,200,romeoandjuliet,1596 ROMEO,205,romeoandjuliet,1596 with,228,romeoandjuliet,1596 to,486,romeoandjuliet,1596 And,232,romeoandjuliet,1596 and,490,romeoandjuliet,1596 thou,239,romeoandjuliet,1596 not,243,romeoandjuliet,1596 attended,1,venusandadonis,1609 treason,1,venusandadonis,1609 seaman,1,venusandadonis,1609 liveries,1,venusandadonis,1609 cleaves,1,venusandadonis,1609 ceased,1,venusandadonis,1609 'You,1,venusandadonis,1609 Planting,1,venusandadonis,1609 banquet,1,venusandadonis,1609 undone,1,venusandadonis,1609 regard,1,venusandadonis,1609 theirs,1,venusandadonis,1609 meet,1,venusandadonis,1609 o'er,1,venusandadonis,1609 digs,1,venusandadonis,1609 uncontrolled,1,venusandadonis,1609 unwelcome,1,venusandadonis,1609 grinning,1,venusandadonis,1609 Echo,1,venusandadonis,1609 troubles,1,venusandadonis,1609 Pursue,1,venusandadonis,1609 Tires,1,venusandadonis,1609 viewing,1,venusandadonis,1609 chides,1,venusandadonis,1609 array,1,venusandadonis,1609 clouded,1,venusandadonis,1609 dishevell'd,1,venusandadonis,1609 tomb,1,venusandadonis,1609 horns,1,venusandadonis,1609 truce,1,venusandadonis,1609 imaginary,1,venusandadonis,1609 net,1,venusandadonis,1609 relief,1,venusandadonis,1609 fantasy,1,venusandadonis,1609 advised,1,venusandadonis,1609 hiss,1,venusandadonis,1609 wooing,1,venusandadonis,1609 tooth'd,1,venusandadonis,1609 Elysium,1,venusandadonis,1609 Tantalus',1,venusandadonis,1609 Stands,1,venusandadonis,1609 stillitory,1,venusandadonis,1609 foundation,1,venusandadonis,1609 meed,1,venusandadonis,1609 guise,1,venusandadonis,1609 'and,1,venusandadonis,1609 snuffing,1,venusandadonis,1609 ridiculous,1,venusandadonis,1609 myrtle,1,venusandadonis,1609 pits,1,venusandadonis,1609 gardens,1,venusandadonis,1609 excel,1,venusandadonis,1609 enjoy,1,venusandadonis,1609 join,1,venusandadonis,1609 tasted,1,venusandadonis,1609 pith,1,venusandadonis,1609 Art,1,venusandadonis,1609 strongest,1,venusandadonis,1609 howling,1,venusandadonis,1609 beams,1,venusandadonis,1609 crops,1,venusandadonis,1609 guest,1,venusandadonis,1609 pestilence,1,venusandadonis,1609 bullet,1,venusandadonis,1609 marketh,1,venusandadonis,1609 lips',1,venusandadonis,1609 treasures,1,venusandadonis,1609 Tells,1,venusandadonis,1609 prays,1,venusandadonis,1609 mover,1,venusandadonis,1609 franticly,1,venusandadonis,1609 root,1,venusandadonis,1609 drop,1,venusandadonis,1609 infant,1,venusandadonis,1609 took,1,venusandadonis,1609 precedent,1,venusandadonis,1609 Imperious,1,venusandadonis,1609 rider's,1,venusandadonis,1609 compact,1,venusandadonis,1609 anthem,1,venusandadonis,1609 swelleth,1,venusandadonis,1609 jar,1,venusandadonis,1609 Should,1,venusandadonis,1609 plaster,1,venusandadonis,1609 fathers,1,venusandadonis,1609 Between,1,venusandadonis,1609 tops,1,venusandadonis,1609 yielding,1,venusandadonis,1609 direful,1,venusandadonis,1609 watch,1,venusandadonis,1609 Leaves,1,venusandadonis,1609 leisure,1,venusandadonis,1609 heir,1,venusandadonis,1609 fan,1,venusandadonis,1609 mistress,1,venusandadonis,1609 Comes,1,venusandadonis,1609 speech,1,venusandadonis,1609 contented,1,venusandadonis,1609 often,1,venusandadonis,1609 groin,1,venusandadonis,1609 wears,1,venusandadonis,1609 leap,1,venusandadonis,1609 bereaves,1,venusandadonis,1609 writ,1,venusandadonis,1609 Open'd,1,venusandadonis,1609 'expected,1,venusandadonis,1609 tried,1,venusandadonis,1609 frozen,1,venusandadonis,1609 discord,1,venusandadonis,1609 disturb,1,venusandadonis,1609 condemn'd,1,venusandadonis,1609 ashy,1,venusandadonis,1609 'behold,1,venusandadonis,1609 smother'd,1,venusandadonis,1609 spear's,1,venusandadonis,1609 espy,1,venusandadonis,1609 hinder,1,venusandadonis,1609 whiteness,1,venusandadonis,1609 keeps,1,venusandadonis,1609 miretur,1,venusandadonis,1609 woman's,1,venusandadonis,1609 glories,1,venusandadonis,1609 shapeless,1,venusandadonis,1609 'Bid,1,venusandadonis,1609 breeds,1,venusandadonis,1609 gray,1,venusandadonis,1609 burden'd,1,venusandadonis,1609 moved,1,venusandadonis,1609 Loseth,1,venusandadonis,1609 honours,1,venusandadonis,1609 ran,1,venusandadonis,1609 EVEN,1,venusandadonis,1609 bedchamber,1,venusandadonis,1609 brows,1,venusandadonis,1609 venture,1,venusandadonis,1609 swallowing,1,venusandadonis,1609 lower,1,venusandadonis,1609 rigour,1,venusandadonis,1609 rock,1,venusandadonis,1609 listeth,1,venusandadonis,1609 glorifies,1,venusandadonis,1609 'Thus,1,venusandadonis,1609 rank,1,venusandadonis,1609 Against,1,venusandadonis,1609 longs,1,venusandadonis,1609 asks,1,venusandadonis,1609 carries,1,venusandadonis,1609 Ten,1,venusandadonis,1609 dint,1,venusandadonis,1609 alight,1,venusandadonis,1609 labours,1,venusandadonis,1609 'Nay,1,venusandadonis,1609 hill,1,venusandadonis,1609 breathless,1,venusandadonis,1609 perplexed,1,venusandadonis,1609 offended,1,venusandadonis,1609 resign,1,venusandadonis,1609 esteems,1,venusandadonis,1609 alabaster,1,venusandadonis,1609 Hasting,1,venusandadonis,1609 scent,1,venusandadonis,1609 mischief,1,venusandadonis,1609 Will,1,venusandadonis,1609 mend,1,venusandadonis,1609 lifeless,1,venusandadonis,1609 stopp'd,1,venusandadonis,1609 indeed,1,venusandadonis,1609 broad,1,venusandadonis,1609 easily,1,venusandadonis,1609 express,1,venusandadonis,1609 hush'd,1,venusandadonis,1609 testy,1,venusandadonis,1609 retires,1,venusandadonis,1609 devouring,1,venusandadonis,1609 rather,1,venusandadonis,1609 painter,1,venusandadonis,1609 jot,1,venusandadonis,1609 helpless,1,venusandadonis,1609 held,1,venusandadonis,1609 sealing,1,venusandadonis,1609 fangs,1,venusandadonis,1609 'Gainst,1,venusandadonis,1609 wailing,1,venusandadonis,1609 thinks,1,venusandadonis,1609 despised,1,venusandadonis,1609 violets,1,venusandadonis,1609 Else,1,venusandadonis,1609 nose,1,venusandadonis,1609 swiftly,1,venusandadonis,1609 advisedly,1,venusandadonis,1609 HENRY,1,venusandadonis,1609 Paying,1,venusandadonis,1609 Measure,1,venusandadonis,1609 'Holla,1,venusandadonis,1609 seizeth,1,venusandadonis,1609 exceeds,1,venusandadonis,1609 sparing,1,venusandadonis,1609 wakes,1,venusandadonis,1609 Passion,1,venusandadonis,1609 Tell,1,venusandadonis,1609 pray,1,venusandadonis,1609 obscure,1,venusandadonis,1609 darkness,1,venusandadonis,1609 'some,1,venusandadonis,1609 curvets,1,venusandadonis,1609 blab,1,venusandadonis,1609 thorny,1,venusandadonis,1609 hers,1,venusandadonis,1609 diminish'd,1,venusandadonis,1609 cedar,1,venusandadonis,1609 countless,1,venusandadonis,1609 hips,1,venusandadonis,1609 Show'd,1,venusandadonis,1609 aptly,1,venusandadonis,1609 cranks,1,venusandadonis,1609 prodigal,1,venusandadonis,1609 herb,1,venusandadonis,1609 herd,1,venusandadonis,1609 coasteth,1,venusandadonis,1609 dropp'd,1,venusandadonis,1609 glued,1,venusandadonis,1609 coral,1,venusandadonis,1609 celestial,1,venusandadonis,1609 fetlocks,1,venusandadonis,1609 disjoin'd,1,venusandadonis,1609 ruffian,1,venusandadonis,1609 contenting,1,venusandadonis,1609 females,1,venusandadonis,1609 imposthumes,1,venusandadonis,1609 grin,1,venusandadonis,1609 prisoner,1,venusandadonis,1609 spright,1,venusandadonis,1609 rate,1,venusandadonis,1609 view'd,1,venusandadonis,1609 below,1,venusandadonis,1609 drum,1,venusandadonis,1609 'Over,1,venusandadonis,1609 cloy,1,venusandadonis,1609 ireful,1,venusandadonis,1609 learn'd,1,venusandadonis,1609 answering,1,venusandadonis,1609 honourable,1,venusandadonis,1609 Graze,1,venusandadonis,1609 into,1,venusandadonis,1609 dive,1,venusandadonis,1609 hearted,1,venusandadonis,1609 cheering,1,venusandadonis,1609 lowly,1,venusandadonis,1609 entertainment,1,venusandadonis,1609 rash,1,venusandadonis,1609 bethinking,1,venusandadonis,1609 naked,1,venusandadonis,1609 ungrown,1,venusandadonis,1609 slander,1,venusandadonis,1609 feeds,1,venusandadonis,1609 blunt,1,venusandadonis,1609 cave,1,venusandadonis,1609 although,1,venusandadonis,1609 framing,1,venusandadonis,1609 shelter,1,venusandadonis,1609 hide,1,venusandadonis,1609 Scorning,1,venusandadonis,1609 year,1,venusandadonis,1609 withal,1,venusandadonis,1609 louring,1,venusandadonis,1609 chaos,1,venusandadonis,1609 Uncouple,1,venusandadonis,1609 snout,1,venusandadonis,1609 worms,1,venusandadonis,1609 'As,1,venusandadonis,1609 bedabbled,1,venusandadonis,1609 kneels,1,venusandadonis,1609 hied,1,venusandadonis,1609 hies,1,venusandadonis,1609 decrepit,1,venusandadonis,1609 'Pity,1,venusandadonis,1609 patron,1,venusandadonis,1609 glasses,1,venusandadonis,1609 leathern,1,venusandadonis,1609 lively,1,venusandadonis,1609 deviseth,1,venusandadonis,1609 restrain,1,venusandadonis,1609 excuses,1,venusandadonis,1609 rail'd,1,venusandadonis,1609 Surfeits,1,venusandadonis,1609 Affection's,1,venusandadonis,1609 iron,1,venusandadonis,1609 'By,1,venusandadonis,1609 stares,1,venusandadonis,1609 'More,1,venusandadonis,1609 posterity,1,venusandadonis,1609 furnace,1,venusandadonis,1609 lids,1,venusandadonis,1609 consulting,1,venusandadonis,1609 bridle,1,venusandadonis,1609 Thick,1,venusandadonis,1609 relenteth,1,venusandadonis,1609 borne,1,venusandadonis,1609 Spurns,1,venusandadonis,1609 kinder,1,venusandadonis,1609 yelping,1,venusandadonis,1609 Danger,1,venusandadonis,1609 lustily,1,venusandadonis,1609 thirst,1,venusandadonis,1609 nymph,1,venusandadonis,1609 remain,1,venusandadonis,1609 mount,1,venusandadonis,1609 thirsty,1,venusandadonis,1609 sticks,1,venusandadonis,1609 equally,1,venusandadonis,1609 High,1,venusandadonis,1609 reflect,1,venusandadonis,1609 thrall,1,venusandadonis,1609 ministret,1,venusandadonis,1609 fairy,1,venusandadonis,1609 THE,1,venusandadonis,1609 springing,1,venusandadonis,1609 parting,1,venusandadonis,1609 curious,1,venusandadonis,1609 springs,1,venusandadonis,1609 Set,1,venusandadonis,1609 presented,1,venusandadonis,1609 clamorous,1,venusandadonis,1609 goeth,1,venusandadonis,1609 oversway'd,1,venusandadonis,1609 ducks,1,venusandadonis,1609 o'erstraw'd,1,venusandadonis,1609 youth,1,venusandadonis,1609 cool'd,1,venusandadonis,1609 lightning,1,venusandadonis,1609 cast,1,venusandadonis,1609 scowling,1,venusandadonis,1609 loathsome,1,venusandadonis,1609 several,1,venusandadonis,1609 unlikely,1,venusandadonis,1609 recketh,1,venusandadonis,1609 early,1,venusandadonis,1609 quaking,1,venusandadonis,1609 impure,1,venusandadonis,1609 garment,1,venusandadonis,1609 chant,1,venusandadonis,1609 child,1,venusandadonis,1609 pursue,1,venusandadonis,1609 overlook,1,venusandadonis,1609 tutor,1,venusandadonis,1609 agrees,1,venusandadonis,1609 stoops,1,venusandadonis,1609 ensuing,1,venusandadonis,1609 shrieks,1,venusandadonis,1609 stirring,1,venusandadonis,1609 Poor,1,venusandadonis,1609 plague,1,venusandadonis,1609 recures,1,venusandadonis,1609 bending,1,venusandadonis,1609 wistly,1,venusandadonis,1609 consort,1,venusandadonis,1609 nuzzling,1,venusandadonis,1609 sons,1,venusandadonis,1609 preys,1,venusandadonis,1609 device,1,venusandadonis,1609 assuaged,1,venusandadonis,1609 wanderers,1,venusandadonis,1609 reigns,1,venusandadonis,1609 other's,1,venusandadonis,1609 divination,1,venusandadonis,1609 mischances,1,venusandadonis,1609 sad,1,venusandadonis,1609 spied,1,venusandadonis,1609 leaves,1,venusandadonis,1609 kissed,1,venusandadonis,1609 feather,1,venusandadonis,1609 Free,1,venusandadonis,1609 obscurity,1,venusandadonis,1609 amazes,1,venusandadonis,1609 stripping,1,venusandadonis,1609 milk,1,venusandadonis,1609 drive,1,venusandadonis,1609 mild,1,venusandadonis,1609 pine,1,venusandadonis,1609 ruin'd,1,venusandadonis,1609 grove,1,venusandadonis,1609 Long,1,venusandadonis,1609 dissentious,1,venusandadonis,1609 leaning,1,venusandadonis,1609 random,1,venusandadonis,1609 'In,1,venusandadonis,1609 disdain'd,1,venusandadonis,1609 non,1,venusandadonis,1609 sap,1,venusandadonis,1609 lifts,1,venusandadonis,1609 soldiers,1,venusandadonis,1609 'Is,1,venusandadonis,1609 vestals,1,venusandadonis,1609 sat,1,venusandadonis,1609 stars,1,venusandadonis,1609 qualities,1,venusandadonis,1609 resisteth,1,venusandadonis,1609 closure,1,venusandadonis,1609 mightst,1,venusandadonis,1609 strict,1,venusandadonis,1609 shield,1,venusandadonis,1609 dance,1,venusandadonis,1609 Cool,1,venusandadonis,1609 reprehends,1,venusandadonis,1609 venturing,1,venusandadonis,1609 flinty,1,venusandadonis,1609 O'erworn,1,venusandadonis,1609 stream,1,venusandadonis,1609 spill'd,1,venusandadonis,1609 Give,1,venusandadonis,1609 pricking,1,venusandadonis,1609 grows,1,venusandadonis,1609 Thin,1,venusandadonis,1609 Jove,1,venusandadonis,1609 foolish,1,venusandadonis,1609 circumstance,1,venusandadonis,1609 smother,1,venusandadonis,1609 filleth,1,venusandadonis,1609 'Vouchsafe,1,venusandadonis,1609 beauties,1,venusandadonis,1609 shudder,1,venusandadonis,1609 Adons,1,venusandadonis,1609 vent,1,venusandadonis,1609 confounds,1,venusandadonis,1609 prop,1,venusandadonis,1609 woven,1,venusandadonis,1609 quakes,1,venusandadonis,1609 limb,1,venusandadonis,1609 wrought,1,venusandadonis,1609 blush,1,venusandadonis,1609 verbal,1,venusandadonis,1609 broken,1,venusandadonis,1609 Perforce,1,venusandadonis,1609 Come,1,venusandadonis,1609 chain,1,venusandadonis,1609 shame's,1,venusandadonis,1609 assay'd,1,venusandadonis,1609 End,1,venusandadonis,1609 obdurate,1,venusandadonis,1609 Could,1,venusandadonis,1609 Sheathed,1,venusandadonis,1609 toward,1,venusandadonis,1609 veils,1,venusandadonis,1609 revels,1,venusandadonis,1609 yearly,1,venusandadonis,1609 drew,1,venusandadonis,1609 mare,1,venusandadonis,1609 exclaim,1,venusandadonis,1609 obscures,1,venusandadonis,1609 yell,1,venusandadonis,1609 foil'd,1,venusandadonis,1609 cabins,1,venusandadonis,1609 Panting,1,venusandadonis,1609 gloriously,1,venusandadonis,1609 extemporally,1,venusandadonis,1609 'Therefore,1,venusandadonis,1609 dimple,1,venusandadonis,1609 excelling,1,venusandadonis,1609 repetition,1,venusandadonis,1609 dissolve,1,venusandadonis,1609 petitioners,1,venusandadonis,1609 blot,1,venusandadonis,1609 slave,1,venusandadonis,1609 gross,1,venusandadonis,1609 issue,1,venusandadonis,1609 veil,1,venusandadonis,1609 frothy,1,venusandadonis,1609 because,1,venusandadonis,1609 glass,1,venusandadonis,1609 making,1,venusandadonis,1609 leaden,1,venusandadonis,1609 flatter,1,venusandadonis,1609 congealed,1,venusandadonis,1609 likeness,1,venusandadonis,1609 laund,1,venusandadonis,1609 complexion,1,venusandadonis,1609 gates,1,venusandadonis,1609 noise,1,venusandadonis,1609 surpass,1,venusandadonis,1609 beside,1,venusandadonis,1609 dropping,1,venusandadonis,1609 shoulder,1,venusandadonis,1609 struggles,1,venusandadonis,1609 downs,1,venusandadonis,1609 fume,1,venusandadonis,1609 need,1,venusandadonis,1609 blessed,1,venusandadonis,1609 freedom,1,venusandadonis,1609 captive,1,venusandadonis,1609 father's,1,venusandadonis,1609 missing,1,venusandadonis,1609 wail,1,venusandadonis,1609 oven,1,venusandadonis,1609 herdmen,1,venusandadonis,1609 comforteth,1,venusandadonis,1609 'So,1,venusandadonis,1609 naught,1,venusandadonis,1609 sobs,1,venusandadonis,1609 laughs,1,venusandadonis,1609 moving,1,venusandadonis,1609 Saw'st,1,venusandadonis,1609 oftentimes,1,venusandadonis,1609 Bud,1,venusandadonis,1609 borrow'd,1,venusandadonis,1609 smoke,1,venusandadonis,1609 'Dost,1,venusandadonis,1609 'Grim,1,venusandadonis,1609 further,1,venusandadonis,1609 mounts,1,venusandadonis,1609 marvel,1,venusandadonis,1609 bepainted,1,venusandadonis,1609 gashes,1,venusandadonis,1609 Comparing,1,venusandadonis,1609 discovery,1,venusandadonis,1609 thigh,1,venusandadonis,1609 ocean,1,venusandadonis,1609 handling,1,venusandadonis,1609 oil,1,venusandadonis,1609 sluttish,1,venusandadonis,1609 trouble,1,venusandadonis,1609 braided,1,venusandadonis,1609 illumined,1,venusandadonis,1609 awed,1,venusandadonis,1609 hereafter,1,venusandadonis,1609 midday,1,venusandadonis,1609 VENUS,1,venusandadonis,1609 blasted,1,venusandadonis,1609 Pocula,1,venusandadonis,1609 sheathed,1,venusandadonis,1609 'Kill,1,venusandadonis,1609 disliking,1,venusandadonis,1609 vapour,1,venusandadonis,1609 flatly,1,venusandadonis,1609 sung,1,venusandadonis,1609 web,1,venusandadonis,1609 forage,1,venusandadonis,1609 frenzies,1,venusandadonis,1609 lovers',1,venusandadonis,1609 imprison'd,1,venusandadonis,1609 enough,1,venusandadonis,1609 close,1,venusandadonis,1609 striking,1,venusandadonis,1609 'On,1,venusandadonis,1609 releasing,1,venusandadonis,1609 'Wonder,1,venusandadonis,1609 proved,1,venusandadonis,1609 'Twixt,1,venusandadonis,1609 laugh'd,1,venusandadonis,1609 usurp'd,1,venusandadonis,1609 'Torches,1,venusandadonis,1609 fleet,1,venusandadonis,1609 saddle,1,venusandadonis,1609 against,1,venusandadonis,1609 fevers,1,venusandadonis,1609 stalk,1,venusandadonis,1609 murders,1,venusandadonis,1609 Incorporate,1,venusandadonis,1609 'A,1,venusandadonis,1609 thing,1,venusandadonis,1609 salt,1,venusandadonis,1609 invention,1,venusandadonis,1609 'My,1,venusandadonis,1609 trampling,1,venusandadonis,1609 merry,1,venusandadonis,1609 Forgetting,1,venusandadonis,1609 ruby,1,venusandadonis,1609 abate,1,venusandadonis,1609 sake,1,venusandadonis,1609 shrill,1,venusandadonis,1609 purchase,1,venusandadonis,1609 deceived,1,venusandadonis,1609 coals,1,venusandadonis,1609 fits,1,venusandadonis,1609 flying,1,venusandadonis,1609 seals,1,venusandadonis,1609 stonish'd,1,venusandadonis,1609 mastering,1,venusandadonis,1609 Gazing,1,venusandadonis,1609 beguiling,1,venusandadonis,1609 catching,1,venusandadonis,1609 sides,1,venusandadonis,1609 Witness,1,venusandadonis,1609 'When,1,venusandadonis,1609 enters,1,venusandadonis,1609 touches,1,venusandadonis,1609 mihi,1,venusandadonis,1609 sea,1,venusandadonis,1609 throng,1,venusandadonis,1609 throne,1,venusandadonis,1609 'nor,1,venusandadonis,1609 anew,1,venusandadonis,1609 'miss,1,venusandadonis,1609 stand,1,venusandadonis,1609 where'er,1,venusandadonis,1609 'Lo,1,venusandadonis,1609 hateful,1,venusandadonis,1609 provoke,1,venusandadonis,1609 waxeth,1,venusandadonis,1609 fell,1,venusandadonis,1609 cleanly,1,venusandadonis,1609 spy,1,venusandadonis,1609 Taking,1,venusandadonis,1609 forsake,1,venusandadonis,1609 curb,1,venusandadonis,1609 WILLIAM,1,venusandadonis,1609 altars,1,venusandadonis,1609 relieved,1,venusandadonis,1609 break,1,venusandadonis,1609 courser's,1,venusandadonis,1609 rejected,1,venusandadonis,1609 cradle,1,venusandadonis,1609 woes,1,venusandadonis,1609 frosty,1,venusandadonis,1609 nymphs,1,venusandadonis,1609 lesson,1,venusandadonis,1609 unweaves,1,venusandadonis,1609 windy,1,venusandadonis,1609 sighted,1,venusandadonis,1609 dandling,1,venusandadonis,1609 Such,1,venusandadonis,1609 steps,1,venusandadonis,1609 'Lest,1,venusandadonis,1609 upright,1,venusandadonis,1609 salve,1,venusandadonis,1609 Well,1,venusandadonis,1609 gay,1,venusandadonis,1609 beseech,1,venusandadonis,1609 banish'd,1,venusandadonis,1609 bondage,1,venusandadonis,1609 measures,1,venusandadonis,1609 obeys,1,venusandadonis,1609 moralize,1,venusandadonis,1609 steel'd,1,venusandadonis,1609 herds,1,venusandadonis,1609 bloodless,1,venusandadonis,1609 influence,1,venusandadonis,1609 riot,1,venusandadonis,1609 gazers,1,venusandadonis,1609 bestow'd,1,venusandadonis,1609 melting,1,venusandadonis,1609 Was,1,venusandadonis,1609 Wat,1,venusandadonis,1609 prodigies,1,venusandadonis,1609 counsel,1,venusandadonis,1609 kindle,1,venusandadonis,1609 'Say,1,venusandadonis,1609 Dumbly,1,venusandadonis,1609 stern,1,venusandadonis,1609 say',1,venusandadonis,1609 dazzling,1,venusandadonis,1609 gazeth,1,venusandadonis,1609 back'd,1,venusandadonis,1609 livery,1,venusandadonis,1609 chokes,1,venusandadonis,1609 ripe,1,venusandadonis,1609 falcon,1,venusandadonis,1609 alarums,1,venusandadonis,1609 bashful,1,venusandadonis,1609 standing,1,venusandadonis,1609 death's,1,venusandadonis,1609 remains,1,venusandadonis,1609 distress'd,1,venusandadonis,1609 disgrace,1,venusandadonis,1609 chat,1,venusandadonis,1609 hunted,1,venusandadonis,1609 flint,1,venusandadonis,1609 venom'd,1,venusandadonis,1609 idol,1,venusandadonis,1609 Rose,1,venusandadonis,1609 champion,1,venusandadonis,1609 Thing,1,venusandadonis,1609 Thine,1,venusandadonis,1609 Bewitching,1,venusandadonis,1609 controlled,1,venusandadonis,1609 'young,1,venusandadonis,1609 merciless,1,venusandadonis,1609 dally,1,venusandadonis,1609 bough,1,venusandadonis,1609 sinewy,1,venusandadonis,1609 sinews,1,venusandadonis,1609 tunes,1,venusandadonis,1609 captivate,1,venusandadonis,1609 believe,1,venusandadonis,1609 savour,1,venusandadonis,1609 Can,1,venusandadonis,1609 driven,1,venusandadonis,1609 'Thy,1,venusandadonis,1609 tormenteth,1,venusandadonis,1609 cheers,1,venusandadonis,1609 Remove,1,venusandadonis,1609 'To,1,venusandadonis,1609 satiety,1,venusandadonis,1609 audience,1,venusandadonis,1609 mellow,1,venusandadonis,1609 growing,1,venusandadonis,1609 intent,1,venusandadonis,1609 print,1,venusandadonis,1609 Forced,1,venusandadonis,1609 commander,1,venusandadonis,1609 limning,1,venusandadonis,1609 hidden,1,venusandadonis,1609 eating,1,venusandadonis,1609 Hunting,1,venusandadonis,1609 tapsters,1,venusandadonis,1609 hurries,1,venusandadonis,1609 guide,1,venusandadonis,1609 Trifles,1,venusandadonis,1609 arrow,1,venusandadonis,1609 dugs,1,venusandadonis,1609 lure,1,venusandadonis,1609 rage,1,venusandadonis,1609 brier,1,venusandadonis,1609 assure,1,venusandadonis,1609 turning,1,venusandadonis,1609 staring,1,venusandadonis,1609 woos,1,venusandadonis,1609 juice,1,venusandadonis,1609 resistance,1,venusandadonis,1609 receives,1,venusandadonis,1609 stamps,1,venusandadonis,1609 murmur,1,venusandadonis,1609 dying,1,venusandadonis,1609 Out,1,venusandadonis,1609 winks,1,venusandadonis,1609 confounded,1,venusandadonis,1609 roots,1,venusandadonis,1609 looketh,1,venusandadonis,1609 apace,1,venusandadonis,1609 tempered,1,venusandadonis,1609 price,1,venusandadonis,1609 reft,1,venusandadonis,1609 afraid,1,venusandadonis,1609 revives,1,venusandadonis,1609 Wreathed,1,venusandadonis,1609 owl,1,venusandadonis,1609 coming,1,venusandadonis,1609 women's,1,venusandadonis,1609 exclaims,1,venusandadonis,1609 Soothing,1,venusandadonis,1609 burneth,1,venusandadonis,1609 common,1,venusandadonis,1609 swoln,1,venusandadonis,1609 next,1,venusandadonis,1609 respecting,1,venusandadonis,1609 effecting,1,venusandadonis,1609 belly,1,venusandadonis,1609 laden,1,venusandadonis,1609 blotting,1,venusandadonis,1609 walk'd,1,venusandadonis,1609 survive,1,venusandadonis,1609 sappy,1,venusandadonis,1609 happy,1,venusandadonis,1609 poisoning,1,venusandadonis,1609 civil,1,venusandadonis,1609 seeds,1,venusandadonis,1609 resounding,1,venusandadonis,1609 caught,1,venusandadonis,1609 notice,1,venusandadonis,1609 hair,1,venusandadonis,1609 'Call,1,venusandadonis,1609 Turn,1,venusandadonis,1609 sweets,1,venusandadonis,1609 news,1,venusandadonis,1609 salutes,1,venusandadonis,1609 Gives,1,venusandadonis,1609 robb'd,1,venusandadonis,1609 reek,1,venusandadonis,1609 passenger,1,venusandadonis,1609 fix'd,1,venusandadonis,1609 billing,1,venusandadonis,1609 raging,1,venusandadonis,1609 Shall,1,venusandadonis,1609 snorts,1,venusandadonis,1609 loathed,1,venusandadonis,1609 KNOW,1,venusandadonis,1609 detain,1,venusandadonis,1609 envious,1,venusandadonis,1609 seize,1,venusandadonis,1609 earthquake,1,venusandadonis,1609 oblivion,1,venusandadonis,1609 ransom,1,venusandadonis,1609 Suspicion,1,venusandadonis,1609 livelihood,1,venusandadonis,1609 Cupid's,1,venusandadonis,1609 affected,1,venusandadonis,1609 'Witness,1,venusandadonis,1609 'Long,1,venusandadonis,1609 honoured,1,venusandadonis,1609 Backward,1,venusandadonis,1609 dissolves,1,venusandadonis,1609 showers,1,venusandadonis,1609 unback'd,1,venusandadonis,1609 trodden,1,venusandadonis,1609 poison,1,venusandadonis,1609 Wreck,1,venusandadonis,1609 listening,1,venusandadonis,1609 drouth,1,venusandadonis,1609 brow's,1,venusandadonis,1609 coffer,1,venusandadonis,1609 'Look,1,venusandadonis,1609 anger,1,venusandadonis,1609 shining,1,venusandadonis,1609 govern'd,1,venusandadonis,1609 womb,1,venusandadonis,1609 tusk,1,venusandadonis,1609 unyielding,1,venusandadonis,1609 Seeming,1,venusandadonis,1609 wondrous,1,venusandadonis,1609 pitchy,1,venusandadonis,1609 above,1,venusandadonis,1609 Dries,1,venusandadonis,1609 rust,1,venusandadonis,1609 droop,1,venusandadonis,1609 caterpillars,1,venusandadonis,1609 clip,1,venusandadonis,1609 Red,1,venusandadonis,1609 nest,1,venusandadonis,1609 promise,1,venusandadonis,1609 bows,1,venusandadonis,1609 variety,1,venusandadonis,1609 impartial,1,venusandadonis,1609 humbly,1,venusandadonis,1609 touching,1,venusandadonis,1609 dropt,1,venusandadonis,1609 musets,1,venusandadonis,1609 circuit,1,venusandadonis,1609 lurk,1,venusandadonis,1609 harvest,1,venusandadonis,1609 fry,1,venusandadonis,1609 our,1,venusandadonis,1609 waste,1,venusandadonis,1609 Behind,1,venusandadonis,1609 fox,1,venusandadonis,1609 outruns,1,venusandadonis,1609 ope,1,venusandadonis,1609 falling,1,venusandadonis,1609 discontents,1,venusandadonis,1609 volleys,1,venusandadonis,1609 stirs,1,venusandadonis,1609 Castalia,1,venusandadonis,1609 Herbs,1,venusandadonis,1609 choose,1,venusandadonis,1609 'flint,1,venusandadonis,1609 glisters,1,venusandadonis,1609 Strike,1,venusandadonis,1609 concealed,1,venusandadonis,1609 compare,1,venusandadonis,1609 fain,1,venusandadonis,1609 youth's,1,venusandadonis,1609 Ear's,1,venusandadonis,1609 prevent,1,venusandadonis,1609 stuff'd,1,venusandadonis,1609 doubled,1,venusandadonis,1609 boil,1,venusandadonis,1609 infant's,1,venusandadonis,1609 lustful,1,venusandadonis,1609 Rot,1,venusandadonis,1609 language,1,venusandadonis,1609 snail,1,venusandadonis,1609 Swear,1,venusandadonis,1609 dedicating,1,venusandadonis,1609 'in,1,venusandadonis,1609 tiger,1,venusandadonis,1609 tender'd,1,venusandadonis,1609 'if,1,venusandadonis,1609 Enfranchising,1,venusandadonis,1609 minds,1,venusandadonis,1609 night's,1,venusandadonis,1609 Struggling,1,venusandadonis,1609 whetteth,1,venusandadonis,1609 judge,1,venusandadonis,1609 highly,1,venusandadonis,1609 WRIOTHESLY,1,venusandadonis,1609 doubles,1,venusandadonis,1609 outwore,1,venusandadonis,1609 want,1,venusandadonis,1609 hence,1,venusandadonis,1609 infold,1,venusandadonis,1609 delays,1,venusandadonis,1609 fruitless,1,venusandadonis,1609 Broad,1,venusandadonis,1609 o'erwhelming,1,venusandadonis,1609 mishaps,1,venusandadonis,1609 ensign,1,venusandadonis,1609 scorning,1,venusandadonis,1609 foe,1,venusandadonis,1609 know'st,1,venusandadonis,1609 wilful,1,venusandadonis,1609 steam,1,venusandadonis,1609 dies,1,venusandadonis,1609 answers,1,venusandadonis,1609 fortune,1,venusandadonis,1609 seest,1,venusandadonis,1609 humour,1,venusandadonis,1609 three,1,venusandadonis,1609 scorns,1,venusandadonis,1609 work,1,venusandadonis,1609 ariseth,1,venusandadonis,1609 mead,1,venusandadonis,1609 worm,1,venusandadonis,1609 wounds,1,venusandadonis,1609 eagle,1,venusandadonis,1609 portal,1,venusandadonis,1609 throws,1,venusandadonis,1609 Despair,1,venusandadonis,1609 sense,1,venusandadonis,1609 Dainties,1,venusandadonis,1609 stalled,1,venusandadonis,1609 colours,1,venusandadonis,1609 seem'd,1,venusandadonis,1609 threw,1,venusandadonis,1609 beating,1,venusandadonis,1609 roses,1,venusandadonis,1609 summon,1,venusandadonis,1609 fighting,1,venusandadonis,1609 wore,1,venusandadonis,1609 west,1,venusandadonis,1609 minute,1,venusandadonis,1609 Mark,1,venusandadonis,1609 rule,1,venusandadonis,1609 wash,1,venusandadonis,1609 melted,1,venusandadonis,1609 perfect,1,venusandadonis,1609 lists,1,venusandadonis,1609 vow,1,venusandadonis,1609 unfinish'd,1,venusandadonis,1609 office,1,venusandadonis,1609 mistake,1,venusandadonis,1609 scratch'd,1,venusandadonis,1609 Souring,1,venusandadonis,1609 reaves,1,venusandadonis,1609 push'd,1,venusandadonis,1609 wast,1,venusandadonis,1609 ruled,1,venusandadonis,1609 manual,1,venusandadonis,1609 Shone,1,venusandadonis,1609 Welcomes,1,venusandadonis,1609 channel,1,venusandadonis,1609 'why,1,venusandadonis,1609 willeth,1,venusandadonis,1609 folly,1,venusandadonis,1609 pants,1,venusandadonis,1609 framed,1,venusandadonis,1609 praised,1,venusandadonis,1609 suchlike,1,venusandadonis,1609 reprove,1,venusandadonis,1609 parts,1,venusandadonis,1609 colour,1,venusandadonis,1609 compared,1,venusandadonis,1609 vein'd,1,venusandadonis,1609 wayward,1,venusandadonis,1609 bark,1,venusandadonis,1609 sympathy,1,venusandadonis,1609 tent,1,venusandadonis,1609 lordship,1,venusandadonis,1609 bare,1,venusandadonis,1609 thunder,1,venusandadonis,1609 compares,1,venusandadonis,1609 'Love,1,venusandadonis,1609 ta'en,1,venusandadonis,1609 offers,1,venusandadonis,1609 fairest,1,venusandadonis,1609 goddess,1,venusandadonis,1609 shows,1,venusandadonis,1609 bit,1,venusandadonis,1609 neighbors,1,venusandadonis,1609 he's,1,venusandadonis,1609 feather'd,1,venusandadonis,1609 twine,1,venusandadonis,1609 urge,1,venusandadonis,1609 immodest,1,venusandadonis,1609 breath'd,1,venusandadonis,1609 feedeth,1,venusandadonis,1609 lines,1,venusandadonis,1609 fawn,1,venusandadonis,1609 bills,1,venusandadonis,1609 mistakes,1,venusandadonis,1609 depart,1,venusandadonis,1609 cankering,1,venusandadonis,1609 perceive,1,venusandadonis,1609 beware,1,venusandadonis,1609 madly,1,venusandadonis,1609 subtlety,1,venusandadonis,1609 wonted,1,venusandadonis,1609 tell,1,venusandadonis,1609 bate,1,venusandadonis,1609 whither,1,venusandadonis,1609 stir,1,venusandadonis,1609 waves,1,venusandadonis,1609 o'erworn,1,venusandadonis,1609 censure,1,venusandadonis,1609 'Fondling,1,venusandadonis,1609 Usurps,1,venusandadonis,1609 increasing,1,venusandadonis,1609 meaning,1,venusandadonis,1609 bristles,1,venusandadonis,1609 picks,1,venusandadonis,1609 enchant,1,venusandadonis,1609 melancholy,1,venusandadonis,1609 client,1,venusandadonis,1609 mouth'd,1,venusandadonis,1609 Knocks,1,venusandadonis,1609 enchanting,1,venusandadonis,1609 Distempering,1,venusandadonis,1609 extenuate,1,venusandadonis,1609 hat,1,venusandadonis,1609 bane,1,venusandadonis,1609 resembling,1,venusandadonis,1609 licking,1,venusandadonis,1609 Titan,1,venusandadonis,1609 grapes,1,venusandadonis,1609 While,1,venusandadonis,1609 Steal,1,venusandadonis,1609 overthrow,1,venusandadonis,1609 hoof,1,venusandadonis,1609 Struck,1,venusandadonis,1609 imprinted,1,venusandadonis,1609 thoughted,1,venusandadonis,1609 balm,1,venusandadonis,1609 pluck'st,1,venusandadonis,1609 noteth,1,venusandadonis,1609 tame,1,venusandadonis,1609 weakness,1,venusandadonis,1609 rising,1,venusandadonis,1609 offend,1,venusandadonis,1609 secrets,1,venusandadonis,1609 overflow,1,venusandadonis,1609 orator,1,venusandadonis,1609 sigh,1,venusandadonis,1609 Sick,1,venusandadonis,1609 songs,1,venusandadonis,1609 dismay'd,1,venusandadonis,1609 blaze,1,venusandadonis,1609 sores,1,venusandadonis,1609 flock,1,venusandadonis,1609 feeble,1,venusandadonis,1609 meets,1,venusandadonis,1609 flattery,1,venusandadonis,1609 author,1,venusandadonis,1609 balls,1,venusandadonis,1609 flatters,1,venusandadonis,1609 ecstasy,1,venusandadonis,1609 ache,1,venusandadonis,1609 deformed,1,venusandadonis,1609 spoil,1,venusandadonis,1609 infection,1,venusandadonis,1609 mistrust,1,venusandadonis,1609 constant,1,venusandadonis,1609 delving,1,venusandadonis,1609 man's,1,venusandadonis,1609 purblind,1,venusandadonis,1609 Looks,1,venusandadonis,1609 arm'd,1,venusandadonis,1609 neither,1,venusandadonis,1609 informer,1,venusandadonis,1609 insulter,1,venusandadonis,1609 Means,1,venusandadonis,1609 orient,1,venusandadonis,1609 great,1,venusandadonis,1609 'desire,1,venusandadonis,1609 eternal,1,venusandadonis,1609 'Upon,1,venusandadonis,1609 Throwing,1,venusandadonis,1609 parasites,1,venusandadonis,1609 hatefully,1,venusandadonis,1609 Servilely,1,venusandadonis,1609 vigour,1,venusandadonis,1609 Those,1,venusandadonis,1609 untreads,1,venusandadonis,1609 provoked,1,venusandadonis,1609 folds,1,venusandadonis,1609 among,1,venusandadonis,1609 lance,1,venusandadonis,1609 Fold,1,venusandadonis,1609 carry,1,venusandadonis,1609 itself,1,venusandadonis,1609 Play,1,venusandadonis,1609 'Leave,1,venusandadonis,1609 asunder,1,venusandadonis,1609 teen,1,venusandadonis,1609 Dismiss,1,venusandadonis,1609 told'st,1,venusandadonis,1609 bad,1,venusandadonis,1609 homeward,1,venusandadonis,1609 wrings,1,venusandadonis,1609 sensible,1,venusandadonis,1609 bay,1,venusandadonis,1609 'Woe,1,venusandadonis,1609 creep,1,venusandadonis,1609 tangled,1,venusandadonis,1609 siege,1,venusandadonis,1609 thaw'd,1,venusandadonis,1609 cherries,1,venusandadonis,1609 Shrinks,1,venusandadonis,1609 pardon,1,venusandadonis,1609 shore,1,venusandadonis,1609 flaws,1,venusandadonis,1609 home,1,venusandadonis,1609 Foreknowing,1,venusandadonis,1609 concludes,1,venusandadonis,1609 embarked,1,venusandadonis,1609 swears,1,venusandadonis,1609 proof,1,venusandadonis,1609 kings,1,venusandadonis,1609 treble,1,venusandadonis,1609 cruel,1,venusandadonis,1609 clear,1,venusandadonis,1609 victories,1,venusandadonis,1609 kept,1,venusandadonis,1609 peaceful,1,venusandadonis,1609 waited,1,venusandadonis,1609 exceed,1,venusandadonis,1609 brings,1,venusandadonis,1609 fantastic,1,venusandadonis,1609 dangerous,1,venusandadonis,1609 contending,1,venusandadonis,1609 follows,1,venusandadonis,1609 hie,1,venusandadonis,1609 hid,1,venusandadonis,1609 intendments,1,venusandadonis,1609 SOUTHAMPTON,1,venusandadonis,1609 prophecies,1,venusandadonis,1609 staineth,1,venusandadonis,1609 disturbing,1,venusandadonis,1609 Lurk'd,1,venusandadonis,1609 wreak'd,1,venusandadonis,1609 piteous,1,venusandadonis,1609 beg,1,venusandadonis,1609 fatal,1,venusandadonis,1609 Chiefly,1,venusandadonis,1609 labyrinth,1,venusandadonis,1609 team,1,venusandadonis,1609 prickles,1,venusandadonis,1609 unruly,1,venusandadonis,1609 feigned,1,venusandadonis,1609 blest,1,venusandadonis,1609 winter,1,venusandadonis,1609 bless,1,venusandadonis,1609 whole,1,venusandadonis,1609 growth's,1,venusandadonis,1609 'Stand,1,venusandadonis,1609 agues,1,venusandadonis,1609 deserved,1,venusandadonis,1609 seal,1,venusandadonis,1609 Stain,1,venusandadonis,1609 sluices,1,venusandadonis,1609 added,1,venusandadonis,1609 gives,1,venusandadonis,1609 task,1,venusandadonis,1609 enrich,1,venusandadonis,1609 adder,1,venusandadonis,1609 dew'd,1,venusandadonis,1609 mangling,1,venusandadonis,1609 past,1,venusandadonis,1609 buys,1,venusandadonis,1609 pass,1,venusandadonis,1609 'Fair,1,venusandadonis,1609 hides,1,venusandadonis,1609 provokest,1,venusandadonis,1609 forbears,1,venusandadonis,1609 Jealous,1,venusandadonis,1609 neck'd,1,venusandadonis,1609 bawd,1,venusandadonis,1609 'Why,1,venusandadonis,1609 aspire,1,venusandadonis,1609 master'd,1,venusandadonis,1609 prettily,1,venusandadonis,1609 Sighs,1,venusandadonis,1609 Applying,1,venusandadonis,1609 indenting,1,venusandadonis,1609 cope,1,venusandadonis,1609 manage,1,venusandadonis,1609 dissension,1,venusandadonis,1609 hung,1,venusandadonis,1609 hairy,1,venusandadonis,1609 verdure,1,venusandadonis,1609 perfumed,1,venusandadonis,1609 interest,1,venusandadonis,1609 sunshine,1,venusandadonis,1609 commission,1,venusandadonis,1609 fickle,1,venusandadonis,1609 feeder,1,venusandadonis,1609 cool,1,venusandadonis,1609 moulds,1,venusandadonis,1609 Heavy,1,venusandadonis,1609 Narcissus,1,venusandadonis,1609 SHAKESPEARE,1,venusandadonis,1609 begot,1,venusandadonis,1609 ridges,1,venusandadonis,1609 inward,1,venusandadonis,1609 wringing,1,venusandadonis,1609 kennell'd,1,venusandadonis,1609 fairer,1,venusandadonis,1609 sweat,1,venusandadonis,1609 trophies,1,venusandadonis,1609 theft,1,venusandadonis,1609 brawny,1,venusandadonis,1609 delightful,1,venusandadonis,1609 acts,1,venusandadonis,1609 sought,1,venusandadonis,1609 plants,1,venusandadonis,1609 meagre,1,venusandadonis,1609 babe,1,venusandadonis,1609 captain,1,venusandadonis,1609 Imperiously,1,venusandadonis,1609 conquerors,1,venusandadonis,1609 unsavoury,1,venusandadonis,1609 unfortunately,1,venusandadonis,1609 Subject,1,venusandadonis,1609 burnish'd,1,venusandadonis,1609 trots,1,venusandadonis,1609 brambles,1,venusandadonis,1609 come,1,venusandadonis,1609 feathers,1,venusandadonis,1609 seek,1,venusandadonis,1609 'gan,1,venusandadonis,1609 wrinkle,1,venusandadonis,1609 weep,1,venusandadonis,1609 either,1,venusandadonis,1609 sits,1,venusandadonis,1609 defeature,1,venusandadonis,1609 sorry,1,venusandadonis,1609 decease,1,venusandadonis,1609 defend,1,venusandadonis,1609 conies,1,venusandadonis,1609 Dance,1,venusandadonis,1609 Ceasing,1,venusandadonis,1609 unkindness,1,venusandadonis,1609 busy,1,venusandadonis,1609 ended,1,venusandadonis,1609 look'd,1,venusandadonis,1609 wrack,1,venusandadonis,1609 'twixt,1,venusandadonis,1609 presenteth,1,venusandadonis,1609 courtesy,1,venusandadonis,1609 canker,1,venusandadonis,1609 Saith,1,venusandadonis,1609 divorce,1,venusandadonis,1609 leadeth,1,venusandadonis,1609 imagine,1,venusandadonis,1609 flash'd,1,venusandadonis,1609 bury,1,venusandadonis,1609 suffer'd,1,venusandadonis,1609 vail'd,1,venusandadonis,1609 liking,1,venusandadonis,1609 leaders,1,venusandadonis,1609 tidings,1,venusandadonis,1609 bell,1,venusandadonis,1609 Burneth,1,venusandadonis,1609 Dian,1,venusandadonis,1609 hound,1,venusandadonis,1609 BARON,1,venusandadonis,1609 mix'd,1,venusandadonis,1609 'Hadst,1,venusandadonis,1609 crush,1,venusandadonis,1609 expectation,1,venusandadonis,1609 Beating,1,venusandadonis,1609 ditty,1,venusandadonis,1609 TO,1,venusandadonis,1609 breathing,1,venusandadonis,1609 struck,1,venusandadonis,1609 jointed,1,venusandadonis,1609 suggesteth,1,venusandadonis,1609 marking,1,venusandadonis,1609 sounds,1,venusandadonis,1609 thrust,1,venusandadonis,1609 thong,1,venusandadonis,1609 chasing,1,venusandadonis,1609 tricks,1,venusandadonis,1609 'tween,1,venusandadonis,1609 cabinet,1,venusandadonis,1609 chequer'd,1,venusandadonis,1609 shepherds,1,venusandadonis,1609 dote,1,venusandadonis,1609 defects,1,venusandadonis,1609 weal,1,venusandadonis,1609 whate'er,1,venusandadonis,1609 Save,1,venusandadonis,1609 bent,1,venusandadonis,1609 relieveth,1,venusandadonis,1609 unpolished,1,venusandadonis,1609 suing,1,venusandadonis,1609 Life,1,venusandadonis,1609 people,1,venusandadonis,1609 deign,1,venusandadonis,1609 eyne,1,venusandadonis,1609 hollows,1,venusandadonis,1609 downward,1,venusandadonis,1609 downright,1,venusandadonis,1609 heels,1,venusandadonis,1609 Through,1,venusandadonis,1609 Speak,1,venusandadonis,1609 welkin,1,venusandadonis,1609 Earth's,1,venusandadonis,1609 Seeds,1,venusandadonis,1609 Variable,1,venusandadonis,1609 Put,1,venusandadonis,1609 resounds,1,venusandadonis,1609 throbbing,1,venusandadonis,1609 trembles,1,venusandadonis,1609 entreat,1,venusandadonis,1609 'Poor,1,venusandadonis,1609 ADONIS,1,venusandadonis,1609 Death's,1,venusandadonis,1609 aqua,1,venusandadonis,1609 extremes,1,venusandadonis,1609 lovers,1,venusandadonis,1609 blushing,1,venusandadonis,1609 curst,1,venusandadonis,1609 self,1,venusandadonis,1609 prick'd,1,venusandadonis,1609 serpent,1,venusandadonis,1609 conquers,1,venusandadonis,1609 boar's,1,venusandadonis,1609 jewel,1,venusandadonis,1609 farewell,1,venusandadonis,1609 sell,1,venusandadonis,1609 lust's,1,venusandadonis,1609 gaol,1,venusandadonis,1609 vulture,1,venusandadonis,1609 excell'd,1,venusandadonis,1609 return,1,venusandadonis,1609 bankrupt,1,venusandadonis,1609 'hast,1,venusandadonis,1609 friendly,1,venusandadonis,1609 tedious,1,venusandadonis,1609 gun,1,venusandadonis,1609 hillocks,1,venusandadonis,1609 conquest,1,venusandadonis,1609 bleeding,1,venusandadonis,1609 'Were,1,venusandadonis,1609 fearfully,1,venusandadonis,1609 Mistakes,1,venusandadonis,1609 sentinel,1,venusandadonis,1609 curse,1,venusandadonis,1609 javelin's,1,venusandadonis,1609 Rain,1,venusandadonis,1609 glowing,1,venusandadonis,1609 bud,1,venusandadonis,1609 swift,1,venusandadonis,1609 vows,1,venusandadonis,1609 mated,1,venusandadonis,1609 send,1,venusandadonis,1609 buy,1,venusandadonis,1609 colt,1,venusandadonis,1609 grieves,1,venusandadonis,1609 adds,1,venusandadonis,1609 Controlling,1,venusandadonis,1609 gather'd,1,venusandadonis,1609 frowns,1,venusandadonis,1609 Claps,1,venusandadonis,1609 Stray,1,venusandadonis,1609 longer,1,venusandadonis,1609 survey,1,venusandadonis,1609 'Bonnet,1,venusandadonis,1609 Cynthia,1,venusandadonis,1609 divine,1,venusandadonis,1609 proportion'd,1,venusandadonis,1609 Melodious,1,venusandadonis,1609 shifts,1,venusandadonis,1609 herald,1,venusandadonis,1609 stronger,1,venusandadonis,1609 Banning,1,venusandadonis,1609 sink,1,venusandadonis,1609 TICHFIELD,1,venusandadonis,1609 hisses,1,venusandadonis,1609 gate,1,venusandadonis,1609 sullen,1,venusandadonis,1609 beds,1,venusandadonis,1609 season,1,venusandadonis,1609 sing,1,venusandadonis,1609 rejoice,1,venusandadonis,1609 sickness,1,venusandadonis,1609 pitch,1,venusandadonis,1609 Breaketh,1,venusandadonis,1609 protest,1,venusandadonis,1609 vantage,1,venusandadonis,1609 triumphs,1,venusandadonis,1609 turns,1,venusandadonis,1609 descending,1,venusandadonis,1609 numbs,1,venusandadonis,1609 mistrustful,1,venusandadonis,1609 hopeful,1,venusandadonis,1609 attaint,1,venusandadonis,1609 misty,1,venusandadonis,1609 beginning,1,venusandadonis,1609 lip,1,venusandadonis,1609 crooked,1,venusandadonis,1609 convey'd,1,venusandadonis,1609 opens,1,venusandadonis,1609 begin,1,venusandadonis,1609 chafes,1,venusandadonis,1609 sheets,1,venusandadonis,1609 pulses,1,venusandadonis,1609 pearls,1,venusandadonis,1609 quite,1,venusandadonis,1609 stormy,1,venusandadonis,1609 solemn,1,venusandadonis,1609 dogs,1,venusandadonis,1609 lawn,1,venusandadonis,1609 threat,1,venusandadonis,1609 ghost,1,venusandadonis,1609 impatience,1,venusandadonis,1609 story,1,venusandadonis,1609 childish,1,venusandadonis,1609 credulous,1,venusandadonis,1609 reviveth,1,venusandadonis,1609 stay'd,1,venusandadonis,1609 'His,1,venusandadonis,1609 cheek'd,1,venusandadonis,1609 engine,1,venusandadonis,1609 effects,1,venusandadonis,1609 desire's,1,venusandadonis,1609 snouted,1,venusandadonis,1609 amid,1,venusandadonis,1609 struggle,1,venusandadonis,1609 persuade,1,venusandadonis,1609 singled,1,venusandadonis,1609 suitor,1,venusandadonis,1609 hearkens,1,venusandadonis,1609 nostrils,1,venusandadonis,1609 batter'd,1,venusandadonis,1609 raise,1,venusandadonis,1609 treatise,1,venusandadonis,1609 field's,1,venusandadonis,1609 remaineth,1,venusandadonis,1609 aid,1,venusandadonis,1609 overshoot,1,venusandadonis,1609 berry,1,venusandadonis,1609 stops,1,venusandadonis,1609 rheumatic,1,venusandadonis,1609 petty,1,venusandadonis,1609 Musing,1,venusandadonis,1609 battery,1,venusandadonis,1609 moans,1,venusandadonis,1609 cloudy,1,venusandadonis,1609 jewels,1,venusandadonis,1609 truest,1,venusandadonis,1609 Ill,1,venusandadonis,1609 confound,1,venusandadonis,1609 milch,1,venusandadonis,1609 maw,1,venusandadonis,1609 'Adieu,1,venusandadonis,1609 fiends,1,venusandadonis,1609 'since,1,venusandadonis,1609 repine,1,venusandadonis,1609 yes,1,venusandadonis,1609 dapper,1,venusandadonis,1609 betoken'd,1,venusandadonis,1609 tongued,1,venusandadonis,1609 shag,1,venusandadonis,1609 still'd,1,venusandadonis,1609 beak,1,venusandadonis,1609 Apollo,1,venusandadonis,1609 copse,1,venusandadonis,1609 lazy,1,venusandadonis,1609 dwell,1,venusandadonis,1609 fountains,1,venusandadonis,1609 least,1,venusandadonis,1609 Strong,1,venusandadonis,1609 disposing,1,venusandadonis,1609 disturbed,1,venusandadonis,1609 caitiff,1,venusandadonis,1609 blindfold,1,venusandadonis,1609 choosing,1,venusandadonis,1609 yokes,1,venusandadonis,1609 gait,1,venusandadonis,1609 deaf,1,venusandadonis,1609 engirts,1,venusandadonis,1609 Feed,1,venusandadonis,1609 seeing,1,venusandadonis,1609 likely,1,venusandadonis,1609 Gloss,1,venusandadonis,1609 continual,1,venusandadonis,1609 mulberries,1,venusandadonis,1609 suggestion,1,venusandadonis,1609 Finding,1,venusandadonis,1609 stain'd,1,venusandadonis,1609 dread,1,venusandadonis,1609 boast,1,venusandadonis,1609 tails,1,venusandadonis,1609 sadness,1,venusandadonis,1609 'Thrice,1,venusandadonis,1609 dealing,1,venusandadonis,1609 rears,1,venusandadonis,1609 copious,1,venusandadonis,1609 tempering,1,venusandadonis,1609 forged,1,venusandadonis,1609 stole,1,venusandadonis,1609 met,1,venusandadonis,1609 bargains,1,venusandadonis,1609 waits,1,venusandadonis,1609 'Here,1,venusandadonis,1609 buried,1,venusandadonis,1609 trip,1,venusandadonis,1609 trim,1,venusandadonis,1609 lends,1,venusandadonis,1609 incaged,1,venusandadonis,1609 makest,1,venusandadonis,1609 yields,1,venusandadonis,1609 'Hard,1,venusandadonis,1609 perceiving,1,venusandadonis,1609 shed,1,venusandadonis,1609 slips,1,venusandadonis,1609 meeting,1,venusandadonis,1609 heating,1,venusandadonis,1609 approach,1,venusandadonis,1609 forget,1,venusandadonis,1609 choir,1,venusandadonis,1609 EARL,1,venusandadonis,1609 hear'st,1,venusandadonis,1609 supreme,1,venusandadonis,1609 rights,1,venusandadonis,1609 door,1,venusandadonis,1609 Before,1,venusandadonis,1609 forging,1,venusandadonis,1609 crosses,1,venusandadonis,1609 shooteth,1,venusandadonis,1609 nuns,1,venusandadonis,1609 clepes,1,venusandadonis,1609 rouse,1,venusandadonis,1609 scornfully,1,venusandadonis,1609 burnt,1,venusandadonis,1609 whiter,1,venusandadonis,1609 comforter,1,venusandadonis,1609 pleasant,1,venusandadonis,1609 merciful,1,venusandadonis,1609 assuage,1,venusandadonis,1609 move,1,venusandadonis,1609 immure,1,venusandadonis,1609 limit,1,venusandadonis,1609 plena,1,venusandadonis,1609 causeless,1,venusandadonis,1609 body's,1,venusandadonis,1609 heartily,1,venusandadonis,1609 Fanning,1,venusandadonis,1609 damn'd,1,venusandadonis,1609 'Pure,1,venusandadonis,1609 rain'd,1,venusandadonis,1609 bites,1,venusandadonis,1609 Away,1,venusandadonis,1609 attorney,1,venusandadonis,1609 unwitnessed,1,venusandadonis,1609 comment,1,venusandadonis,1609 small,1,venusandadonis,1609 strain,1,venusandadonis,1609 crave,1,venusandadonis,1609 malcontent,1,venusandadonis,1609 pursuers,1,venusandadonis,1609 hand's,1,venusandadonis,1609 harmony,1,venusandadonis,1609 henceforth,1,venusandadonis,1609 ebon,1,venusandadonis,1609 wrinkled,1,venusandadonis,1609 whereof,1,venusandadonis,1609 amain,1,venusandadonis,1609 Perverse,1,venusandadonis,1609 'Didst,1,venusandadonis,1609 flavus,1,venusandadonis,1609 beguile,1,venusandadonis,1609 lark,1,venusandadonis,1609 'Where,1,venusandadonis,1609 harshsounding,1,venusandadonis,1609 account,1,venusandadonis,1609 mingle,1,venusandadonis,1609 recreate,1,venusandadonis,1609 sometimes,1,venusandadonis,1609 terror,1,venusandadonis,1609 respects,1,venusandadonis,1609 fraud,1,venusandadonis,1609 Infusing,1,venusandadonis,1609 fastens,1,venusandadonis,1609 maladies,1,venusandadonis,1609 thriveth,1,venusandadonis,1609 yoking,1,venusandadonis,1609 noble,1,venusandadonis,1609 'how,1,venusandadonis,1609 tamed,1,venusandadonis,1609 live,1,venusandadonis,1609 scornful,1,venusandadonis,1609 overruled,1,venusandadonis,1609 plucks,1,venusandadonis,1609 flap,1,venusandadonis,1609 begg'd,1,venusandadonis,1609 sharply,1,venusandadonis,1609 Green,1,venusandadonis,1609 settled,1,venusandadonis,1609 endure,1,venusandadonis,1609 better'd,1,venusandadonis,1609 virtue,1,venusandadonis,1609 brakes,1,venusandadonis,1609 ado,1,venusandadonis,1609 moon,1,venusandadonis,1609 commands,1,venusandadonis,1609 'Touch,1,venusandadonis,1609 Appals,1,venusandadonis,1609 sleeping,1,venusandadonis,1609 sweetness,1,venusandadonis,1609 father,1,venusandadonis,1609 withdrew,1,venusandadonis,1609 resolved,1,venusandadonis,1609 semblance,1,venusandadonis,1609 wherein,1,venusandadonis,1609 Grief,1,venusandadonis,1609 lest,1,venusandadonis,1609 fright,1,venusandadonis,1609 'Since,1,venusandadonis,1609 peep,1,venusandadonis,1609 expel,1,venusandadonis,1609 jade,1,venusandadonis,1609 whet,1,venusandadonis,1609 list,1,venusandadonis,1609 huntsman,1,venusandadonis,1609 crystals,1,venusandadonis,1609 lose,1,venusandadonis,1609 jennet,1,venusandadonis,1609 wittily,1,venusandadonis,1609 violet,1,venusandadonis,1609 nurtured,1,venusandadonis,1609 act,1,venusandadonis,1609 sepulchres,1,venusandadonis,1609 forceless,1,venusandadonis,1609 nurse's,1,venusandadonis,1609 greater,1,venusandadonis,1609 bootless,1,venusandadonis,1609 boding,1,venusandadonis,1609 statues,1,venusandadonis,1609 appetite,1,venusandadonis,1609 bribed,1,venusandadonis,1609 ready,1,venusandadonis,1609 ragged,1,venusandadonis,1609 reprehend,1,venusandadonis,1609 trapping,1,venusandadonis,1609 glides,1,venusandadonis,1609 'Sometime,1,venusandadonis,1609 contemn,1,venusandadonis,1609 contend,1,venusandadonis,1609 going,1,venusandadonis,1609 pouted,1,venusandadonis,1609 languisheth,1,venusandadonis,1609 windows,1,venusandadonis,1609 hoof'd,1,venusandadonis,1609 grace,1,venusandadonis,1609 urged,1,venusandadonis,1609 marr'd,1,venusandadonis,1609 raineth,1,venusandadonis,1609 men's,1,venusandadonis,1609 chorus,1,venusandadonis,1609 conflict,1,venusandadonis,1609 load,1,venusandadonis,1609 dwells,1,venusandadonis,1609 shade,1,venusandadonis,1609 shrewd,1,venusandadonis,1609 wildly,1,venusandadonis,1609 harm'd,1,venusandadonis,1609 bristly,1,venusandadonis,1609 harm,1,venusandadonis,1609 graves,1,venusandadonis,1609 choice,1,venusandadonis,1609 events,1,venusandadonis,1609 graver,1,venusandadonis,1609 basely,1,venusandadonis,1609 witty,1,venusandadonis,1609 harken,1,venusandadonis,1609 valour,1,venusandadonis,1609 'This,1,venusandadonis,1609 brought,1,venusandadonis,1609 Seeing,1,venusandadonis,1609 eats,1,venusandadonis,1609 hollo,1,venusandadonis,1609 'Lie,1,venusandadonis,1609 kills,1,venusandadonis,1609 Resembling,1,venusandadonis,1609 discourse,1,venusandadonis,1609 scratch,1,venusandadonis,1609 distilling,1,venusandadonis,1609 'Sweet,1,venusandadonis,1609 presage,1,venusandadonis,1609 trips,1,venusandadonis,1609 payment,1,venusandadonis,1609 plump,1,venusandadonis,1609 bends,1,venusandadonis,1609 blames,1,venusandadonis,1609 plume,1,venusandadonis,1609 faints,1,venusandadonis,1609 strengthless,1,venusandadonis,1609 peering,1,venusandadonis,1609 careless,1,venusandadonis,1609 fasten'd,1,venusandadonis,1609 brag,1,venusandadonis,1609 stifle,1,venusandadonis,1609 spleens,1,venusandadonis,1609 doe,1,venusandadonis,1609 dog,1,venusandadonis,1609 attend,1,venusandadonis,1609 combustious,1,venusandadonis,1609 Gusts,1,venusandadonis,1609 half,1,venusandadonis,1609 askance,1,venusandadonis,1609 harsh,1,venusandadonis,1609 crop,1,venusandadonis,1609 handled,1,venusandadonis,1609 urchin,1,venusandadonis,1609 Nimbly,1,venusandadonis,1609 swallow,1,venusandadonis,1609 Disorder,1,venusandadonis,1609 infirmities,1,venusandadonis,1609 doteth,1,venusandadonis,1609 senseless,1,venusandadonis,1609 follow,1,venusandadonis,1609 text,1,venusandadonis,1609 famish,1,venusandadonis,1609 Courageously,1,venusandadonis,1609 impression,1,venusandadonis,1609 boisterous,1,venusandadonis,1609 gills,1,venusandadonis,1609 dun,1,venusandadonis,1609 crusheth,1,venusandadonis,1609 repel,1,venusandadonis,1609 spur,1,venusandadonis,1609 aidance,1,venusandadonis,1609 'let,1,venusandadonis,1609 hairless,1,venusandadonis,1609 call'd,1,venusandadonis,1609 faintly,1,venusandadonis,1609 'Let,1,venusandadonis,1609 steadfastly,1,venusandadonis,1609 Rich,1,venusandadonis,1609 catch,1,venusandadonis,1609 land,1,venusandadonis,1609 redoubled,1,venusandadonis,1609 withhold,1,venusandadonis,1609 Pluck,1,venusandadonis,1609 consume,1,venusandadonis,1609 barketh,1,venusandadonis,1609 hoping,1,venusandadonis,1609 primrose,1,venusandadonis,1609 draws,1,venusandadonis,1609 top,1,venusandadonis,1609 trench'd,1,venusandadonis,1609 sighing,1,venusandadonis,1609 Statue,1,venusandadonis,1609 scarcity,1,venusandadonis,1609 accurst,1,venusandadonis,1609 lamb,1,venusandadonis,1609 scuds,1,venusandadonis,1609 chariot,1,venusandadonis,1609 certain,1,venusandadonis,1609 til,1,venusandadonis,1609 tie,1,venusandadonis,1609 shake,1,venusandadonis,1609 pluck,1,venusandadonis,1609 apparitions,1,venusandadonis,1609 open,1,venusandadonis,1609 behold,1,venusandadonis,1609 burden,1,venusandadonis,1609 She's,1,venusandadonis,1609 arm,1,venusandadonis,1609 armed,1,venusandadonis,1609 gazed,1,venusandadonis,1609 caparisons,1,venusandadonis,1609 sturdy,1,venusandadonis,1609 abhor,1,venusandadonis,1609 bathes,1,venusandadonis,1609 Pure,1,venusandadonis,1609 quietly,1,venusandadonis,1609 plum,1,venusandadonis,1609 present,1,venusandadonis,1609 trees,1,venusandadonis,1609 cross,1,venusandadonis,1609 surfeits,1,venusandadonis,1609 cabin,1,venusandadonis,1609 gorge,1,venusandadonis,1609 reviving,1,venusandadonis,1609 dew,1,venusandadonis,1609 dale,1,venusandadonis,1609 pain,1,venusandadonis,1609 stranger,1,venusandadonis,1609 unapt,1,venusandadonis,1609 fiery,1,venusandadonis,1609 'How,1,venusandadonis,1609 drown'd,1,venusandadonis,1609 spear,1,venusandadonis,1609 brim,1,venusandadonis,1609 jealousy,1,venusandadonis,1609 Hateful,1,venusandadonis,1609 apt,1,venusandadonis,1609 shelly,1,venusandadonis,1609 mourner,1,venusandadonis,1609 slip,1,venusandadonis,1609 forsworn,1,venusandadonis,1609 unask'd,1,venusandadonis,1609 minute's,1,venusandadonis,1609 mutual,1,venusandadonis,1609 Paphos,1,venusandadonis,1609 soundly,1,venusandadonis,1609 entertain'd,1,venusandadonis,1609 eyelids,1,venusandadonis,1609 Unlike,1,venusandadonis,1609 girths,1,venusandadonis,1609 mid,1,venusandadonis,1609 amaze,1,venusandadonis,1609 pace,1,venusandadonis,1609 remorse,1,venusandadonis,1609 fear'd,1,venusandadonis,1609 dreadful,1,venusandadonis,1609 dismal,1,venusandadonis,1609 puts,1,venusandadonis,1609 striving,1,venusandadonis,1609 fishes,1,venusandadonis,1609 combat,1,venusandadonis,1609 rings,1,venusandadonis,1609 fisher,1,venusandadonis,1609 neighbour,1,venusandadonis,1609 chastity,1,venusandadonis,1609 Find,1,venusandadonis,1609 Clapping,1,venusandadonis,1609 nectar,1,venusandadonis,1609 flattering,1,venusandadonis,1609 fall'n,1,venusandadonis,1609 sorteth,1,venusandadonis,1609 Leading,1,venusandadonis,1609 shape,1,venusandadonis,1609 intends,1,venusandadonis,1609 tread,1,venusandadonis,1609 tenderer,1,venusandadonis,1609 gaudy,1,venusandadonis,1609 'Vilia,1,venusandadonis,1609 hunting,1,venusandadonis,1609 Adon,1,venusandadonis,1609 tyranny,1,venusandadonis,1609 direction,1,venusandadonis,1609 agents,1,venusandadonis,1609 Hot,1,venusandadonis,1609 creatures,1,venusandadonis,1609 obey'd,1,venusandadonis,1609 prepares,1,venusandadonis,1609 vulgus,1,venusandadonis,1609 crows,1,venusandadonis,1609 'Then,1,venusandadonis,1609 sands,1,venusandadonis,1609 fond,1,venusandadonis,1609 wouldst,1,venusandadonis,1609 dissemble,1,venusandadonis,1609 blush'd,1,venusandadonis,1609 pikes,1,venusandadonis,1609 twining,1,venusandadonis,1609 elbows,1,venusandadonis,1609 Holding,1,venusandadonis,1609 maiden,1,venusandadonis,1609 gazes,1,venusandadonis,1609 gazer,1,venusandadonis,1609 sinketh,1,venusandadonis,1609 enemy,1,venusandadonis,1609 nostril,1,venusandadonis,1609 mayst,1,venusandadonis,1609 error,1,venusandadonis,1609 murther,1,venusandadonis,1609 lock,1,venusandadonis,1609 begets,1,venusandadonis,1609 fold,1,venusandadonis,1609 lours,1,venusandadonis,1609 ending,1,venusandadonis,1609 hedge,1,venusandadonis,1609 tombs,1,venusandadonis,1609 summer,1,venusandadonis,1609 lady,1,venusandadonis,1609 daughters,1,venusandadonis,1609 insinuate,1,venusandadonis,1609 studded,1,venusandadonis,1609 clapping,1,venusandadonis,1609 open'd,2,venusandadonis,1609 deadly,2,venusandadonis,1609 strangeness,2,venusandadonis,1609 colour'd,2,venusandadonis,1609 touch,2,venusandadonis,1609 lusty,2,venusandadonis,1609 Sometimes,2,venusandadonis,1609 'you,2,venusandadonis,1609 chafing,2,venusandadonis,1609 Nay,2,venusandadonis,1609 invisible,2,venusandadonis,1609 smiles,2,venusandadonis,1609 new,2,venusandadonis,1609 Hath,2,venusandadonis,1609 lead,2,venusandadonis,1609 leaf,2,venusandadonis,1609 Bids,2,venusandadonis,1609 Shows,2,venusandadonis,1609 lacking,2,venusandadonis,1609 tremble,2,venusandadonis,1609 whispers,2,venusandadonis,1609 Your,2,venusandadonis,1609 RIGHT,2,venusandadonis,1609 deceiving,2,venusandadonis,1609 Grew,2,venusandadonis,1609 Beauty,2,venusandadonis,1609 glow,2,venusandadonis,1609 compass'd,2,venusandadonis,1609 empty,2,venusandadonis,1609 drench'd,2,venusandadonis,1609 support,2,venusandadonis,1609 echoes,2,venusandadonis,1609 rob,2,venusandadonis,1609 roe,2,venusandadonis,1609 day's,2,venusandadonis,1609 note,2,venusandadonis,1609 melt,2,venusandadonis,1609 Never,2,venusandadonis,1609 sleeps,2,venusandadonis,1609 dire,2,venusandadonis,1609 darts,2,venusandadonis,1609 beast,2,venusandadonis,1609 wonder,2,venusandadonis,1609 none,2,venusandadonis,1609 'Alas,2,venusandadonis,1609 painted,2,venusandadonis,1609 beats,2,venusandadonis,1609 proceedings,2,venusandadonis,1609 gently,2,venusandadonis,1609 mounted,2,venusandadonis,1609 while,2,venusandadonis,1609 sprung,2,venusandadonis,1609 grim,2,venusandadonis,1609 'Thou,2,venusandadonis,1609 vapours,2,venusandadonis,1609 brook,2,venusandadonis,1609 majesty,2,venusandadonis,1609 summer's,2,venusandadonis,1609 fury,2,venusandadonis,1609 under,2,venusandadonis,1609 'Ay,2,venusandadonis,1609 calls,2,venusandadonis,1609 bottom,2,venusandadonis,1609 run,2,venusandadonis,1609 strike,2,venusandadonis,1609 sore,2,venusandadonis,1609 truth,2,venusandadonis,1609 annoy,2,venusandadonis,1609 Shaking,2,venusandadonis,1609 become,2,venusandadonis,1609 unwilling,2,venusandadonis,1609 wither,2,venusandadonis,1609 care,2,venusandadonis,1609 moist,2,venusandadonis,1609 misery,2,venusandadonis,1609 mute,2,venusandadonis,1609 Therefore,2,venusandadonis,1609 mingled,2,venusandadonis,1609 song,2,venusandadonis,1609 breach,2,venusandadonis,1609 Once,2,venusandadonis,1609 precious,2,venusandadonis,1609 Over,2,venusandadonis,1609 passions,2,venusandadonis,1609 chin,2,venusandadonis,1609 effect,2,venusandadonis,1609 embracing,2,venusandadonis,1609 surfeit,2,venusandadonis,1609 Some,2,venusandadonis,1609 feels,2,venusandadonis,1609 jest,2,venusandadonis,1609 draw,2,venusandadonis,1609 sadly,2,venusandadonis,1609 spies,2,venusandadonis,1609 teeth,2,venusandadonis,1609 'Art,2,venusandadonis,1609 bearing,2,venusandadonis,1609 years,2,venusandadonis,1609 backward,2,venusandadonis,1609 end,2,venusandadonis,1609 didst,2,venusandadonis,1609 bloody,2,venusandadonis,1609 overcome,2,venusandadonis,1609 AND,2,venusandadonis,1609 chief,2,venusandadonis,1609 mark,2,venusandadonis,1609 seemeth,2,venusandadonis,1609 hearing,2,venusandadonis,1609 crimson,2,venusandadonis,1609 thick,2,venusandadonis,1609 fingers,2,venusandadonis,1609 call,2,venusandadonis,1609 quench,2,venusandadonis,1609 forsook,2,venusandadonis,1609 hanging,2,venusandadonis,1609 rider,2,venusandadonis,1609 believing,2,venusandadonis,1609 blow,2,venusandadonis,1609 came,2,venusandadonis,1609 Nor,2,venusandadonis,1609 labour,2,venusandadonis,1609 Not,2,venusandadonis,1609 bushes,2,venusandadonis,1609 chide,2,venusandadonis,1609 hasteth,2,venusandadonis,1609 mountain,2,venusandadonis,1609 palfrey,2,venusandadonis,1609 fret,2,venusandadonis,1609 Why,2,venusandadonis,1609 living,2,venusandadonis,1609 Were,2,venusandadonis,1609 stands,2,venusandadonis,1609 body,2,venusandadonis,1609 breed,2,venusandadonis,1609 trembling,2,venusandadonis,1609 pause,2,venusandadonis,1609 passage,2,venusandadonis,1609 breedeth,2,venusandadonis,1609 better,2,venusandadonis,1609 flies,2,venusandadonis,1609 oft,2,venusandadonis,1609 suit,2,venusandadonis,1609 cure,2,venusandadonis,1609 only,2,venusandadonis,1609 worth,2,venusandadonis,1609 loving,2,venusandadonis,1609 subject,2,venusandadonis,1609 plenty,2,venusandadonis,1609 heard,2,venusandadonis,1609 'I,2,venusandadonis,1609 Say,2,venusandadonis,1609 second,2,venusandadonis,1609 deeply,2,venusandadonis,1609 wings,2,venusandadonis,1609 groans,2,venusandadonis,1609 doubt,2,venusandadonis,1609 mother,2,venusandadonis,1609 dearth,2,venusandadonis,1609 wax,2,venusandadonis,1609 suck'd,2,venusandadonis,1609 duty,2,venusandadonis,1609 rise,2,venusandadonis,1609 tushes,2,venusandadonis,1609 between,2,venusandadonis,1609 swelling,2,venusandadonis,1609 taught,2,venusandadonis,1609 bleed,2,venusandadonis,1609 enraged,2,venusandadonis,1609 fight,2,venusandadonis,1609 embracements,2,venusandadonis,1609 heaveth,2,venusandadonis,1609 bereft,2,venusandadonis,1609 ends,2,venusandadonis,1609 There,2,venusandadonis,1609 skies,2,venusandadonis,1609 falleth,2,venusandadonis,1609 complain,2,venusandadonis,1609 ways,2,venusandadonis,1609 tempting,2,venusandadonis,1609 Destinies,2,venusandadonis,1609 Whereon,2,venusandadonis,1609 falls,2,venusandadonis,1609 joints,2,venusandadonis,1609 Lust's,2,venusandadonis,1609 earthly,2,venusandadonis,1609 Wherein,2,venusandadonis,1609 weeping,2,venusandadonis,1609 smelling,2,venusandadonis,1609 about,2,venusandadonis,1609 owe,2,venusandadonis,1609 lust,2,venusandadonis,1609 severe,2,venusandadonis,1609 honour,2,venusandadonis,1609 feel,2,venusandadonis,1609 dull,2,venusandadonis,1609 wolf,2,venusandadonis,1609 grow,2,venusandadonis,1609 drops,2,venusandadonis,1609 hundred,2,venusandadonis,1609 bring,2,venusandadonis,1609 'Now,2,venusandadonis,1609 weather,2,venusandadonis,1609 others,2,venusandadonis,1609 wink,2,venusandadonis,1609 flesh,2,venusandadonis,1609 caves,2,venusandadonis,1609 wept,2,venusandadonis,1609 steal,2,venusandadonis,1609 cares,2,venusandadonis,1609 wert,2,venusandadonis,1609 wise,2,venusandadonis,1609 woeful,2,venusandadonis,1609 servile,2,venusandadonis,1609 flank,2,venusandadonis,1609 froward,2,venusandadonis,1609 tune,2,venusandadonis,1609 wave,2,venusandadonis,1609 word,2,venusandadonis,1609 passing,2,venusandadonis,1609 friend,2,venusandadonis,1609 stop,2,venusandadonis,1609 fie,2,venusandadonis,1609 Sweet,2,venusandadonis,1609 pretty,2,venusandadonis,1609 breeding,2,venusandadonis,1609 cunning,2,venusandadonis,1609 bone,2,venusandadonis,1609 mean,2,venusandadonis,1609 matter,2,venusandadonis,1609 stains,2,venusandadonis,1609 sweating,2,venusandadonis,1609 wits,2,venusandadonis,1609 ne'er,2,venusandadonis,1609 marrow,2,venusandadonis,1609 moisture,2,venusandadonis,1609 horn,2,venusandadonis,1609 spoke,2,venusandadonis,1609 wide,2,venusandadonis,1609 senses,2,venusandadonis,1609 breaketh,2,venusandadonis,1609 smooth,2,venusandadonis,1609 butcher,2,venusandadonis,1609 side,2,venusandadonis,1609 'Good,2,venusandadonis,1609 Foul,2,venusandadonis,1609 morning,2,venusandadonis,1609 alarms,2,venusandadonis,1609 bird,2,venusandadonis,1609 breeder,2,venusandadonis,1609 base,2,venusandadonis,1609 prophesy,2,venusandadonis,1609 band,2,venusandadonis,1609 bank,2,venusandadonis,1609 bounds,2,venusandadonis,1609 At,2,venusandadonis,1609 perfection,2,venusandadonis,1609 An,2,venusandadonis,1609 timorous,2,venusandadonis,1609 talk,2,venusandadonis,1609 law,2,venusandadonis,1609 music,2,venusandadonis,1609 mutiny,2,venusandadonis,1609 therefore,2,venusandadonis,1609 stroke,2,venusandadonis,1609 Still,2,venusandadonis,1609 smile,2,venusandadonis,1609 Having,2,venusandadonis,1609 wild,2,venusandadonis,1609 hold,2,venusandadonis,1609 Lo,2,venusandadonis,1609 holds,2,venusandadonis,1609 OF,2,venusandadonis,1609 creature,2,venusandadonis,1609 workmanship,2,venusandadonis,1609 begun,2,venusandadonis,1609 hollow,2,venusandadonis,1609 shines,2,venusandadonis,1609 force,2,venusandadonis,1609 sings,2,venusandadonis,1609 finds,2,venusandadonis,1609 hit,2,venusandadonis,1609 pleasure,2,venusandadonis,1609 enter,2,venusandadonis,1609 flood,2,venusandadonis,1609 prison'd,2,venusandadonis,1609 'Who,2,venusandadonis,1609 buttock,2,venusandadonis,1609 path,2,venusandadonis,1609 despair,2,venusandadonis,1609 play,2,venusandadonis,1609 Had,2,venusandadonis,1609 lovely,2,venusandadonis,1609 along,2,venusandadonis,1609 quiet,2,venusandadonis,1609 always,2,venusandadonis,1609 obey,2,venusandadonis,1609 favour'd,2,venusandadonis,1609 low,2,venusandadonis,1609 surprise,2,venusandadonis,1609 ugly,2,venusandadonis,1609 weed,2,venusandadonis,1609 feeling,2,venusandadonis,1609 unaware,2,venusandadonis,1609 hills,2,venusandadonis,1609 nigh,2,venusandadonis,1609 Ne'er,2,venusandadonis,1609 coy,2,venusandadonis,1609 drunken,2,venusandadonis,1609 tells,2,venusandadonis,1609 Sith,2,venusandadonis,1609 whereat,2,venusandadonis,1609 battle,2,venusandadonis,1609 sound,2,venusandadonis,1609 berries,2,venusandadonis,1609 'sweet,2,venusandadonis,1609 modest,2,venusandadonis,1609 lamps,2,venusandadonis,1609 tree,2,venusandadonis,1609 blame,2,venusandadonis,1609 Things,2,venusandadonis,1609 hours,2,venusandadonis,1609 gore,2,venusandadonis,1609 tied,2,venusandadonis,1609 remove,2,venusandadonis,1609 beheld,2,venusandadonis,1609 tide,2,venusandadonis,1609 aloud,2,venusandadonis,1609 hemm'd,2,venusandadonis,1609 theme,2,venusandadonis,1609 despite,2,venusandadonis,1609 nurse,2,venusandadonis,1609 swine,2,venusandadonis,1609 picture,2,venusandadonis,1609 stories,2,venusandadonis,1609 fearing,2,venusandadonis,1609 match,2,venusandadonis,1609 footing,2,venusandadonis,1609 ashamed,2,venusandadonis,1609 immortal,2,venusandadonis,1609 bonnet,2,venusandadonis,1609 Both,2,venusandadonis,1609 eyes',2,venusandadonis,1609 nature's,2,venusandadonis,1609 river,2,venusandadonis,1609 Two,2,venusandadonis,1609 wretch,2,venusandadonis,1609 image,2,venusandadonis,1609 confess,2,venusandadonis,1609 aim,2,venusandadonis,1609 tyrant,2,venusandadonis,1609 imagination,2,venusandadonis,1609 stopt,2,venusandadonis,1609 sheep,2,venusandadonis,1609 'Give,2,venusandadonis,1609 debt,2,venusandadonis,1609 barr'd,2,venusandadonis,1609 starts,2,venusandadonis,1609 tongues,2,venusandadonis,1609 Unless,2,venusandadonis,1609 spite,2,venusandadonis,1609 stone,2,venusandadonis,1609 pluck'd,2,venusandadonis,1609 learn,2,venusandadonis,1609 lent,2,venusandadonis,1609 seeming,2,venusandadonis,1609 Another,2,venusandadonis,1609 thrive,2,venusandadonis,1609 Sometime,2,venusandadonis,1609 melts,2,venusandadonis,1609 hands,2,venusandadonis,1609 You,2,venusandadonis,1609 sovereign,2,venusandadonis,1609 murder'd,2,venusandadonis,1609 abuse,2,venusandadonis,1609 burns,2,venusandadonis,1609 feast,2,venusandadonis,1609 breatheth,2,venusandadonis,1609 'Had,2,venusandadonis,1609 age,2,venusandadonis,1609 lover,2,venusandadonis,1609 hadst,2,venusandadonis,1609 loud,2,venusandadonis,1609 'gins,2,venusandadonis,1609 May,2,venusandadonis,1609 suspect,2,venusandadonis,1609 spent,2,venusandadonis,1609 ill,2,venusandadonis,1609 Round,2,venusandadonis,1609 loved,2,venusandadonis,1609 spend,2,venusandadonis,1609 blue,2,venusandadonis,1609 tributary,2,venusandadonis,1609 knew,2,venusandadonis,1609 strange,2,venusandadonis,1609 nature,2,venusandadonis,1609 place,2,venusandadonis,1609 entreats,2,venusandadonis,1609 content,2,venusandadonis,1609 pure,2,venusandadonis,1609 Because,2,venusandadonis,1609 simple,2,venusandadonis,1609 mouths,2,venusandadonis,1609 Teaching,2,venusandadonis,1609 hare,2,venusandadonis,1609 outward,2,venusandadonis,1609 park,2,venusandadonis,1609 slay,2,venusandadonis,1609 us,2,venusandadonis,1609 speaks,2,venusandadonis,1609 wounding,2,venusandadonis,1609 dart,2,venusandadonis,1609 honour's,2,venusandadonis,1609 Lest,2,venusandadonis,1609 palm,2,venusandadonis,1609 More,2,venusandadonis,1609 treads,2,venusandadonis,1609 sudden,2,venusandadonis,1609 rushes,2,venusandadonis,1609 hang,2,venusandadonis,1609 appears,2,venusandadonis,1609 toy,2,venusandadonis,1609 Full,2,venusandadonis,1609 ivory,2,venusandadonis,1609 four,2,venusandadonis,1609 Wishing,2,venusandadonis,1609 hotly,2,venusandadonis,1609 lamp,2,venusandadonis,1609 excuse,2,venusandadonis,1609 whether,2,venusandadonis,1609 course,2,venusandadonis,1609 weeps,2,venusandadonis,1609 without,2,venusandadonis,1609 unripe,2,venusandadonis,1609 tired,2,venusandadonis,1609 Affection,2,venusandadonis,1609 king,2,venusandadonis,1609 Fair,2,venusandadonis,1609 press'd,2,venusandadonis,1609 point,2,venusandadonis,1609 spirit,2,venusandadonis,1609 mermaid's,2,venusandadonis,1609 ten,2,venusandadonis,1609 hate,2,venusandadonis,1609 foot,2,venusandadonis,1609 woman,2,venusandadonis,1609 power,2,venusandadonis,1609 frets,2,venusandadonis,1609 lack,2,venusandadonis,1609 rough,2,venusandadonis,1609 HONORABLE,2,venusandadonis,1609 object,2,venusandadonis,1609 courser,2,venusandadonis,1609 turn'd,2,venusandadonis,1609 woo'd,2,venusandadonis,1609 pleading,3,venusandadonis,1609 right,3,venusandadonis,1609 troubled,3,venusandadonis,1609 told,3,venusandadonis,1609 fee,3,venusandadonis,1609 times,3,venusandadonis,1609 purple,3,venusandadonis,1609 Into,3,venusandadonis,1609 far,3,venusandadonis,1609 churlish,3,venusandadonis,1609 double,3,venusandadonis,1609 borrow,3,venusandadonis,1609 lean,3,venusandadonis,1609 honey,3,venusandadonis,1609 help,3,venusandadonis,1609 water,3,venusandadonis,1609 Venus',3,venusandadonis,1609 groan,3,venusandadonis,1609 vain,3,venusandadonis,1609 locks,3,venusandadonis,1609 spread,3,venusandadonis,1609 drink,3,venusandadonis,1609 signs,3,venusandadonis,1609 sour,3,venusandadonis,1609 friends,3,venusandadonis,1609 Thou,3,venusandadonis,1609 mouth,3,venusandadonis,1609 Doth,3,venusandadonis,1609 strength,3,venusandadonis,1609 soon,3,venusandadonis,1609 strife,3,venusandadonis,1609 very,3,venusandadonis,1609 amazed,3,venusandadonis,1609 'If,3,venusandadonis,1609 mane,3,venusandadonis,1609 many,3,venusandadonis,1609 tempest,3,venusandadonis,1609 lily,3,venusandadonis,1609 All,3,venusandadonis,1609 kissing,3,venusandadonis,1609 coward,3,venusandadonis,1609 comes,3,venusandadonis,1609 knows,3,venusandadonis,1609 golden,3,venusandadonis,1609 woo,3,venusandadonis,1609 teach,3,venusandadonis,1609 heaven's,3,venusandadonis,1609 over,3,venusandadonis,1609 view,3,venusandadonis,1609 wet,3,venusandadonis,1609 sit,3,venusandadonis,1609 bound,3,venusandadonis,1609 think,3,venusandadonis,1609 get,3,venusandadonis,1609 'No,3,venusandadonis,1609 wit,3,venusandadonis,1609 scorn,3,venusandadonis,1609 yield,3,venusandadonis,1609 stealing,3,venusandadonis,1609 embrace,3,venusandadonis,1609 prime,3,venusandadonis,1609 glutton,3,venusandadonis,1609 within,3,venusandadonis,1609 cause,3,venusandadonis,1609 war,3,venusandadonis,1609 thieves,3,venusandadonis,1609 felt,3,venusandadonis,1609 'Tis,3,venusandadonis,1609 These,3,venusandadonis,1609 wood,3,venusandadonis,1609 pride,3,venusandadonis,1609 danger,3,venusandadonis,1609 snow,3,venusandadonis,1609 wanton,3,venusandadonis,1609 brain,3,venusandadonis,1609 turn,3,venusandadonis,1609 kill'd,3,venusandadonis,1609 fault,3,venusandadonis,1609 encounter,3,venusandadonis,1609 seeks,3,venusandadonis,1609 faced,3,venusandadonis,1609 dumb,3,venusandadonis,1609 Here,3,venusandadonis,1609 fearful,3,venusandadonis,1609 feed,3,venusandadonis,1609 neighs,3,venusandadonis,1609 crystal,3,venusandadonis,1609 'For,3,venusandadonis,1609 wish,3,venusandadonis,1609 bold,3,venusandadonis,1609 pleased,3,venusandadonis,1609 fly,3,venusandadonis,1609 world's,3,venusandadonis,1609 warm,3,venusandadonis,1609 Sorrow,3,venusandadonis,1609 brake,3,venusandadonis,1609 rich,3,venusandadonis,1609 steel,3,venusandadonis,1609 else,3,venusandadonis,1609 tail,3,venusandadonis,1609 unkind,3,venusandadonis,1609 strikes,3,venusandadonis,1609 foes,3,venusandadonis,1609 fast,3,venusandadonis,1609 coal,3,venusandadonis,1609 name,3,venusandadonis,1609 Be,3,venusandadonis,1609 desperate,3,venusandadonis,1609 blown,3,venusandadonis,1609 Jealousy,3,venusandadonis,1609 Nature,3,venusandadonis,1609 stay,3,venusandadonis,1609 green,3,venusandadonis,1609 star,3,venusandadonis,1609 master,3,venusandadonis,1609 Within,3,venusandadonis,1609 since,3,venusandadonis,1609 bed,3,venusandadonis,1609 quick,3,venusandadonis,1609 Is,3,venusandadonis,1609 hairs,3,venusandadonis,1609 hunt,3,venusandadonis,1609 alone,3,venusandadonis,1609 sire,3,venusandadonis,1609 gold,3,venusandadonis,1609 Mine,3,venusandadonis,1609 increase,3,venusandadonis,1609 weak,3,venusandadonis,1609 wear,3,venusandadonis,1609 replies,3,venusandadonis,1609 put,3,venusandadonis,1609 just,3,venusandadonis,1609 goes,3,venusandadonis,1609 barren,3,venusandadonis,1609 brow,3,venusandadonis,1609 deer,3,venusandadonis,1609 favour,3,venusandadonis,1609 clouds,3,venusandadonis,1609 bear,3,venusandadonis,1609 look,3,venusandadonis,1609 stood,3,venusandadonis,1609 needs,3,venusandadonis,1609 Making,3,venusandadonis,1609 legs,3,venusandadonis,1609 whereon,3,venusandadonis,1609 straight,3,venusandadonis,1609 leaps,3,venusandadonis,1609 Since,3,venusandadonis,1609 thoughts,3,venusandadonis,1609 fled,3,venusandadonis,1609 'this,3,venusandadonis,1609 lion,3,venusandadonis,1609 loves,3,venusandadonis,1609 hurt,3,venusandadonis,1609 beauteous,3,venusandadonis,1609 Where,3,venusandadonis,1609 Lust,3,venusandadonis,1609 give,3,venusandadonis,1609 field,3,venusandadonis,1609 hue,3,venusandadonis,1609 round,3,venusandadonis,1609 destroy,3,venusandadonis,1609 plain,3,venusandadonis,1609 bred,3,venusandadonis,1609 shine,3,venusandadonis,1609 might,3,venusandadonis,1609 kind,3,venusandadonis,1609 wasted,3,venusandadonis,1609 speak,3,venusandadonis,1609 frown,3,venusandadonis,1609 shakes,3,venusandadonis,1609 twain,3,venusandadonis,1609 forlorn,3,venusandadonis,1609 earth's,3,venusandadonis,1609 alive,3,venusandadonis,1609 fool,3,venusandadonis,1609 bids,3,venusandadonis,1609 Are,4,venusandadonis,1609 answer,4,venusandadonis,1609 fed,4,venusandadonis,1609 pity,4,venusandadonis,1609 treasure,4,venusandadonis,1609 advantage,4,venusandadonis,1609 haste,4,venusandadonis,1609 shouldst,4,venusandadonis,1609 rose,4,venusandadonis,1609 heart's,4,venusandadonis,1609 joy,4,venusandadonis,1609 Venus,4,venusandadonis,1609 sighs,4,venusandadonis,1609 things,4,venusandadonis,1609 nought,4,venusandadonis,1609 prey,4,venusandadonis,1609 chase,4,venusandadonis,1609 From,4,venusandadonis,1609 young,4,venusandadonis,1609 ere,4,venusandadonis,1609 'It,4,venusandadonis,1609 saw,4,venusandadonis,1609 courage,4,venusandadonis,1609 began,4,venusandadonis,1609 black,4,venusandadonis,1609 could,4,venusandadonis,1609 taste,4,venusandadonis,1609 grave,4,venusandadonis,1609 son,4,venusandadonis,1609 morrow,4,venusandadonis,1609 Thus,4,venusandadonis,1609 'The,4,venusandadonis,1609 wrong,4,venusandadonis,1609 saith,4,venusandadonis,1609 'Fie,4,venusandadonis,1609 runs,4,venusandadonis,1609 both,4,venusandadonis,1609 thence,4,venusandadonis,1609 cries,4,venusandadonis,1609 rein,4,venusandadonis,1609 angry,4,venusandadonis,1609 grass,4,venusandadonis,1609 Make,4,venusandadonis,1609 seems,4,venusandadonis,1609 heaven,4,venusandadonis,1609 Though,4,venusandadonis,1609 silly,4,venusandadonis,1609 died,4,venusandadonis,1609 even,4,venusandadonis,1609 rest,4,venusandadonis,1609 ever,4,venusandadonis,1609 passion,4,venusandadonis,1609 steed,4,venusandadonis,1609 bright,4,venusandadonis,1609 Do,4,venusandadonis,1609 herself,4,venusandadonis,1609 sick,4,venusandadonis,1609 hour,4,venusandadonis,1609 'But,4,venusandadonis,1609 burning,4,venusandadonis,1609 till,4,venusandadonis,1609 hope,4,venusandadonis,1609 Each,4,venusandadonis,1609 tale,4,venusandadonis,1609 lay,4,venusandadonis,1609 reason,4,venusandadonis,1609 doves,4,venusandadonis,1609 canst,4,venusandadonis,1609 No,4,venusandadonis,1609 lives,4,venusandadonis,1609 Anon,4,venusandadonis,1609 prove,4,venusandadonis,1609 god,4,venusandadonis,1609 use,4,venusandadonis,1609 gave,4,venusandadonis,1609 whom,4,venusandadonis,1609 crest,4,venusandadonis,1609 burn,4,venusandadonis,1609 thus,4,venusandadonis,1609 heavenly,4,venusandadonis,1609 together,4,venusandadonis,1609 been,4,venusandadonis,1609 said,4,venusandadonis,1609 air,4,venusandadonis,1609 go,4,venusandadonis,1609 left,4,venusandadonis,1609 man,4,venusandadonis,1609 begins,4,venusandadonis,1609 men,4,venusandadonis,1609 that's,4,venusandadonis,1609 idle,4,venusandadonis,1609 sometime,4,venusandadonis,1609 Adonis',4,venusandadonis,1609 keep,4,venusandadonis,1609 dare,4,venusandadonis,1609 Under,4,venusandadonis,1609 strive,4,venusandadonis,1609 bosom,4,venusandadonis,1609 hast,4,venusandadonis,1609 sharp,4,venusandadonis,1609 having,5,venusandadonis,1609 thought,5,venusandadonis,1609 slain,5,venusandadonis,1609 Would,5,venusandadonis,1609 quickly,5,venusandadonis,1609 Upon,5,venusandadonis,1609 mortal,5,venusandadonis,1609 'What,5,venusandadonis,1609 myself,5,venusandadonis,1609 kisses,5,venusandadonis,1609 mind,5,venusandadonis,1609 hear,5,venusandadonis,1609 breaks,5,venusandadonis,1609 another,5,venusandadonis,1609 nothing,5,venusandadonis,1609 set,5,venusandadonis,1609 off,5,venusandadonis,1609 why,5,venusandadonis,1609 birds,5,venusandadonis,1609 says,5,venusandadonis,1609 Their,5,venusandadonis,1609 sky,5,venusandadonis,1609 heavy,5,venusandadonis,1609 worse,5,venusandadonis,1609 takes,5,venusandadonis,1609 old,5,venusandadonis,1609 voice,5,venusandadonis,1609 Love's,5,venusandadonis,1609 lived,5,venusandadonis,1609 pay,5,venusandadonis,1609 bow,5,venusandadonis,1609 Of,5,venusandadonis,1609 flowers,5,venusandadonis,1609 strong,5,venusandadonis,1609 bid,5,venusandadonis,1609 sport,5,venusandadonis,1609 first,5,venusandadonis,1609 deep,5,venusandadonis,1609 mad,5,venusandadonis,1609 any,5,venusandadonis,1609 lo,5,venusandadonis,1609 last,5,venusandadonis,1609 morn,5,venusandadonis,1609 lost,5,venusandadonis,1609 those,5,venusandadonis,1609 silver,5,venusandadonis,1609 ''Tis,5,venusandadonis,1609 we,5,venusandadonis,1609 spring,5,venusandadonis,1609 Thy,5,venusandadonis,1609 kill,5,venusandadonis,1609 little,5,venusandadonis,1609 How,5,venusandadonis,1609 here,6,venusandadonis,1609 Whereat,6,venusandadonis,1609 faint,6,venusandadonis,1609 disdain,6,venusandadonis,1609 words,6,venusandadonis,1609 heat,6,venusandadonis,1609 'And,6,venusandadonis,1609 once,6,venusandadonis,1609 neck,6,venusandadonis,1609 sorrow,6,venusandadonis,1609 love's,6,venusandadonis,1609 hears,6,venusandadonis,1609 away,6,venusandadonis,1609 themselves,6,venusandadonis,1609 after,6,venusandadonis,1609 rain,6,venusandadonis,1609 out,6,venusandadonis,1609 false,6,venusandadonis,1609 ground,6,venusandadonis,1609 fall,6,venusandadonis,1609 time,6,venusandadonis,1609 these,6,venusandadonis,1609 queen,6,venusandadonis,1609 By,6,venusandadonis,1609 take,6,venusandadonis,1609 short,6,venusandadonis,1609 It,6,venusandadonis,1609 down,6,venusandadonis,1609 hounds,6,venusandadonis,1609 grief,6,venusandadonis,1609 sees,6,venusandadonis,1609 lie,6,venusandadonis,1609 lend,6,venusandadonis,1609 thyself,6,venusandadonis,1609 most,6,venusandadonis,1609 wound,6,venusandadonis,1609 late,6,venusandadonis,1609 Death,6,venusandadonis,1609 part,6,venusandadonis,1609 too,6,venusandadonis,1609 shalt,6,venusandadonis,1609 smell,6,venusandadonis,1609 delight,6,venusandadonis,1609 though,6,venusandadonis,1609 die,6,venusandadonis,1609 weary,7,venusandadonis,1609 lies,7,venusandadonis,1609 high,7,venusandadonis,1609 Look,7,venusandadonis,1609 They,7,venusandadonis,1609 I'll,7,venusandadonis,1609 woe,7,venusandadonis,1609 before,7,venusandadonis,1609 'O,7,venusandadonis,1609 looks,7,venusandadonis,1609 wilt,7,venusandadonis,1609 seem,7,venusandadonis,1609 cry,7,venusandadonis,1609 dost,7,venusandadonis,1609 cold,7,venusandadonis,1609 tongue,7,venusandadonis,1609 long,7,venusandadonis,1609 am,7,venusandadonis,1609 done,7,venusandadonis,1609 true,7,venusandadonis,1609 two,7,venusandadonis,1609 twenty,7,venusandadonis,1609 hot,7,venusandadonis,1609 cannot,7,venusandadonis,1609 dry,7,venusandadonis,1609 flower,7,venusandadonis,1609 himself,7,venusandadonis,1609 fresh,7,venusandadonis,1609 made,8,venusandadonis,1609 much,8,venusandadonis,1609 horse,8,venusandadonis,1609 gentle,8,venusandadonis,1609 tender,8,venusandadonis,1609 life,8,venusandadonis,1609 world,8,venusandadonis,1609 must,8,venusandadonis,1609 head,8,venusandadonis,1609 soft,8,venusandadonis,1609 who,8,venusandadonis,1609 way,8,venusandadonis,1609 arms,8,venusandadonis,1609 own,8,venusandadonis,1609 Till,8,venusandadonis,1609 ears,8,venusandadonis,1609 best,8,venusandadonis,1609 back,8,venusandadonis,1609 seen,8,venusandadonis,1609 good,8,venusandadonis,1609 shadow,8,venusandadonis,1609 let,8,venusandadonis,1609 'tis,8,venusandadonis,1609 leave,8,venusandadonis,1609 Yet,8,venusandadonis,1609 When,8,venusandadonis,1609 dark,8,venusandadonis,1609 shame,8,venusandadonis,1609 every,9,venusandadonis,1609 sight,9,venusandadonis,1609 cheeks,9,venusandadonis,1609 nor,9,venusandadonis,1609 say,9,venusandadonis,1609 some,9,venusandadonis,1609 Then,9,venusandadonis,1609 Now,9,venusandadonis,1609 death,9,venusandadonis,1609 see,9,venusandadonis,1609 white,9,venusandadonis,1609 thousand,9,venusandadonis,1609 boy,9,venusandadonis,1609 unto,9,venusandadonis,1609 proud,9,venusandadonis,1609 can,9,venusandadonis,1609 breath,9,venusandadonis,1609 breast,9,venusandadonis,1609 ear,9,venusandadonis,1609 makes,9,venusandadonis,1609 foul,9,venusandadonis,1609 forth,9,venusandadonis,1609 art,9,venusandadonis,1609 cheek,10,venusandadonis,1609 Being,10,venusandadonis,1609 Even,10,venusandadonis,1609 desire,10,venusandadonis,1609 day,10,venusandadonis,1609 If,10,venusandadonis,1609 In,10,venusandadonis,1609 blood,10,venusandadonis,1609 gone,10,venusandadonis,1609 an,10,venusandadonis,1609 earth,10,venusandadonis,1609 know,10,venusandadonis,1609 other,10,venusandadonis,1609 A,11,venusandadonis,1609 through,11,venusandadonis,1609 This,11,venusandadonis,1609 full,11,venusandadonis,1609 wind,11,venusandadonis,1609 each,11,venusandadonis,1609 there,11,venusandadonis,1609 My,11,venusandadonis,1609 hard,11,venusandadonis,1609 pale,11,venusandadonis,1609 Whose,12,venusandadonis,1609 Who,12,venusandadonis,1609 thine,12,venusandadonis,1609 such,12,venusandadonis,1609 than,12,venusandadonis,1609 whose,12,venusandadonis,1609 poor,12,venusandadonis,1609 Adonis,12,venusandadonis,1609 hand,12,venusandadonis,1609 Love,13,venusandadonis,1609 mine,13,venusandadonis,1609 well,13,venusandadonis,1609 may,13,venusandadonis,1609 how,13,venusandadonis,1609 make,14,venusandadonis,1609 fire,14,venusandadonis,1609 Which,14,venusandadonis,1609 Like,14,venusandadonis,1609 dead,14,venusandadonis,1609 up,14,venusandadonis,1609 What,14,venusandadonis,1609 red,15,venusandadonis,1609 which,15,venusandadonis,1609 upon,15,venusandadonis,1609 light,15,venusandadonis,1609 your,15,venusandadonis,1609 So,15,venusandadonis,1609 you,15,venusandadonis,1609 do,15,venusandadonis,1609 tears,16,venusandadonis,1609 again,16,venusandadonis,1609 boar,16,venusandadonis,1609 sun,16,venusandadonis,1609 had,16,venusandadonis,1609 then,17,venusandadonis,1609 With,17,venusandadonis,1609 sweet,17,venusandadonis,1609 what,17,venusandadonis,1609 yet,17,venusandadonis,1609 O,18,venusandadonis,1609 quoth,18,venusandadonis,1609 still,18,venusandadonis,1609 fear,18,venusandadonis,1609 As,18,venusandadonis,1609 Or,18,venusandadonis,1609 if,18,venusandadonis,1609 His,19,venusandadonis,1609 Her,19,venusandadonis,1609 when,19,venusandadonis,1609 beauty,19,venusandadonis,1609 should,19,venusandadonis,1609 where,20,venusandadonis,1609 face,20,venusandadonis,1609 fair,20,venusandadonis,1609 were,20,venusandadonis,1609 kiss,20,venusandadonis,1609 never,20,venusandadonis,1609 being,20,venusandadonis,1609 eye,21,venusandadonis,1609 night,21,venusandadonis,1609 would,21,venusandadonis,1609 or,22,venusandadonis,1609 have,23,venusandadonis,1609 That,24,venusandadonis,1609 was,24,venusandadonis,1609 lips,24,venusandadonis,1609 did,25,venusandadonis,1609 hath,25,venusandadonis,1609 He,26,venusandadonis,1609 She,27,venusandadonis,1609 them,27,venusandadonis,1609 heart,28,venusandadonis,1609 one,28,venusandadonis,1609 more,28,venusandadonis,1609 are,28,venusandadonis,1609 from,30,venusandadonis,1609 at,30,venusandadonis,1609 For,31,venusandadonis,1609 will,31,venusandadonis,1609 eyes,31,venusandadonis,1609 the,287,venusandadonis,1609 To,33,venusandadonis,1609 they,34,venusandadonis,1609 no,34,venusandadonis,1609 But,35,venusandadonis,1609 shall,35,venusandadonis,1609 now,36,venusandadonis,1609 their,36,venusandadonis,1609 me,38,venusandadonis,1609 like,39,venusandadonis,1609 this,39,venusandadonis,1609 thee,41,venusandadonis,1609 for,41,venusandadonis,1609 but,41,venusandadonis,1609 by,43,venusandadonis,1609 all,43,venusandadonis,1609 doth,45,venusandadonis,1609 thy,50,venusandadonis,1609 The,51,venusandadonis,1609 love,52,venusandadonis,1609 as,53,venusandadonis,1609 on,55,venusandadonis,1609 so,57,venusandadonis,1609 him,58,venusandadonis,1609 be,58,venusandadonis,1609 it,62,venusandadonis,1609 my,64,venusandadonis,1609 thou,65,venusandadonis,1609 ',68,venusandadonis,1609 not,78,venusandadonis,1609 I,81,venusandadonis,1609 that,84,venusandadonis,1609 is,85,venusandadonis,1609 with,101,venusandadonis,1609 he,107,venusandadonis,1609 And,110,venusandadonis,1609 of,119,venusandadonis,1609 her,133,venusandadonis,1609 in,133,venusandadonis,1609 a,134,venusandadonis,1609 she,136,venusandadonis,1609 his,163,venusandadonis,1609 to,163,venusandadonis,1609 and,211,venusandadonis,1609 hive,1,loverscomplaint,1609 plaintful,1,loverscomplaint,1609 Are,1,loverscomplaint,1609 Than,1,loverscomplaint,1609 attended,1,loverscomplaint,1609 moisture,1,loverscomplaint,1609 praised,1,loverscomplaint,1609 particular,1,loverscomplaint,1609 tend,1,loverscomplaint,1609 party,1,loverscomplaint,1609 liveries,1,loverscomplaint,1609 veil'd,1,loverscomplaint,1609 Love's,1,loverscomplaint,1609 verdict,1,loverscomplaint,1609 jet,1,loverscomplaint,1609 right,1,loverscomplaint,1609 bare,1,loverscomplaint,1609 thunder,1,loverscomplaint,1609 else,1,loverscomplaint,1609 Harm,1,loverscomplaint,1609 regard,1,loverscomplaint,1609 theirs,1,loverscomplaint,1609 shows,1,loverscomplaint,1609 fee,1,loverscomplaint,1609 foil,1,loverscomplaint,1609 quality,1,loverscomplaint,1609 wealth,1,loverscomplaint,1609 lines,1,loverscomplaint,1609 each,1,loverscomplaint,1609 poison'd,1,loverscomplaint,1609 forbid,1,loverscomplaint,1609 defiling,1,loverscomplaint,1609 Sometimes,1,loverscomplaint,1609 cautels,1,loverscomplaint,1609 contrives,1,loverscomplaint,1609 patient,1,loverscomplaint,1609 daff'd,1,loverscomplaint,1609 grew,1,loverscomplaint,1609 smiled,1,loverscomplaint,1609 tragic,1,loverscomplaint,1609 bastards,1,loverscomplaint,1609 pity,1,loverscomplaint,1609 glazed,1,loverscomplaint,1609 brain'd,1,loverscomplaint,1609 hour,1,loverscomplaint,1609 COMPLAINT,1,loverscomplaint,1609 till,1,loverscomplaint,1609 gilded,1,loverscomplaint,1609 reproach,1,loverscomplaint,1609 register,1,loverscomplaint,1609 red,1,loverscomplaint,1609 extincture,1,loverscomplaint,1609 Enswathed,1,loverscomplaint,1609 enchant,1,loverscomplaint,1609 Proud,1,loverscomplaint,1609 advice,1,loverscomplaint,1609 fancy,1,loverscomplaint,1609 commended,1,loverscomplaint,1609 precedent,1,loverscomplaint,1609 infected,1,loverscomplaint,1609 hat,1,loverscomplaint,1609 'Well,1,loverscomplaint,1609 motion,1,loverscomplaint,1609 What's,1,loverscomplaint,1609 assay,1,loverscomplaint,1609 double,1,loverscomplaint,1609 tame,1,loverscomplaint,1609 bounds,1,loverscomplaint,1609 mistress,1,loverscomplaint,1609 subjection,1,loverscomplaint,1609 termless,1,loverscomplaint,1609 prefer,1,loverscomplaint,1609 largeness,1,loverscomplaint,1609 wish'd,1,loverscomplaint,1609 acture,1,loverscomplaint,1609 distant,1,loverscomplaint,1609 occasion,1,loverscomplaint,1609 granted,1,loverscomplaint,1609 burn'd,1,loverscomplaint,1609 Ay,1,loverscomplaint,1609 proofs,1,loverscomplaint,1609 balls,1,loverscomplaint,1609 following,1,loverscomplaint,1609 reign'd,1,loverscomplaint,1609 ecstasy,1,loverscomplaint,1609 controversy,1,loverscomplaint,1609 tale,1,loverscomplaint,1609 is't,1,loverscomplaint,1609 spoil,1,loverscomplaint,1609 coat,1,loverscomplaint,1609 slackly,1,loverscomplaint,1609 law,1,loverscomplaint,1609 Tearing,1,loverscomplaint,1609 hurls,1,loverscomplaint,1609 ''Among,1,loverscomplaint,1609 depend,1,loverscomplaint,1609 witchcraft,1,loverscomplaint,1609 man's,1,loverscomplaint,1609 thousand,1,loverscomplaint,1609 maim,1,loverscomplaint,1609 amplify,1,loverscomplaint,1609 moved,1,loverscomplaint,1609 advantage,1,loverscomplaint,1609 motives,1,loverscomplaint,1609 tore,1,loverscomplaint,1609 peace,1,loverscomplaint,1609 Knew,1,loverscomplaint,1609 youthful,1,loverscomplaint,1609 Whether,1,loverscomplaint,1609 eternal,1,loverscomplaint,1609 Demand,1,loverscomplaint,1609 phraseless,1,loverscomplaint,1609 Appear,1,loverscomplaint,1609 diverted,1,loverscomplaint,1609 sleided,1,loverscomplaint,1609 'Thus,1,loverscomplaint,1609 rank,1,loverscomplaint,1609 Against,1,loverscomplaint,1609 Counsel,1,loverscomplaint,1609 errors,1,loverscomplaint,1609 replication,1,loverscomplaint,1609 among,1,loverscomplaint,1609 blend,1,loverscomplaint,1609 ''Now,1,loverscomplaint,1609 penn'd,1,loverscomplaint,1609 hill,1,loverscomplaint,1609 aloes,1,loverscomplaint,1609 annexions,1,loverscomplaint,1609 Let,1,loverscomplaint,1609 teen,1,loverscomplaint,1609 paled,1,loverscomplaint,1609 Nature,1,loverscomplaint,1609 wilt,1,loverscomplaint,1609 posied,1,loverscomplaint,1609 bat,1,loverscomplaint,1609 rents,1,loverscomplaint,1609 pardon,1,loverscomplaint,1609 lands,1,loverscomplaint,1609 accident,1,loverscomplaint,1609 proof,1,loverscomplaint,1609 holy,1,loverscomplaint,1609 space,1,loverscomplaint,1609 quit,1,loverscomplaint,1609 blasting,1,loverscomplaint,1609 orbed,1,loverscomplaint,1609 note,1,loverscomplaint,1609 kept,1,loverscomplaint,1609 held,1,loverscomplaint,1609 stay,1,loverscomplaint,1609 sickly,1,loverscomplaint,1609 green,1,loverscomplaint,1609 beautiful,1,loverscomplaint,1609 smallest,1,loverscomplaint,1609 hell,1,loverscomplaint,1609 mansions,1,loverscomplaint,1609 blazon'd,1,loverscomplaint,1609 thinks,1,loverscomplaint,1609 subduing,1,loverscomplaint,1609 pangs,1,loverscomplaint,1609 contains,1,loverscomplaint,1609 lack'd,1,loverscomplaint,1609 feasts,1,loverscomplaint,1609 season'd,1,loverscomplaint,1609 unto,1,loverscomplaint,1609 Hanging,1,loverscomplaint,1609 kinds,1,loverscomplaint,1609 peep'd,1,loverscomplaint,1609 Must,1,loverscomplaint,1609 ''But,1,loverscomplaint,1609 richest,1,loverscomplaint,1609 inundation,1,loverscomplaint,1609 grazed,1,loverscomplaint,1609 restore,1,loverscomplaint,1609 flood,1,loverscomplaint,1609 locks,1,loverscomplaint,1609 enchanted,1,loverscomplaint,1609 Pieced,1,loverscomplaint,1609 Religious,1,loverscomplaint,1609 Effects,1,loverscomplaint,1609 besiege,1,loverscomplaint,1609 scale,1,loverscomplaint,1609 Cried,1,loverscomplaint,1609 vale,1,loverscomplaint,1609 sight,1,loverscomplaint,1609 deified,1,loverscomplaint,1609 beaded,1,loverscomplaint,1609 favours,1,loverscomplaint,1609 conceited,1,loverscomplaint,1609 swooning,1,loverscomplaint,1609 sweetens,1,loverscomplaint,1609 gives,1,loverscomplaint,1609 into,1,loverscomplaint,1609 past,1,loverscomplaint,1609 luxury,1,loverscomplaint,1609 plat,1,loverscomplaint,1609 naked,1,loverscomplaint,1609 amber,1,loverscomplaint,1609 tender,1,loverscomplaint,1609 preach'd,1,loverscomplaint,1609 things,1,loverscomplaint,1609 cleft,1,loverscomplaint,1609 velvet,1,loverscomplaint,1609 advance,1,loverscomplaint,1609 appear,1,loverscomplaint,1609 dismount,1,loverscomplaint,1609 nice,1,loverscomplaint,1609 manage,1,loverscomplaint,1609 encrimson'd,1,loverscomplaint,1609 perils,1,loverscomplaint,1609 Ere,1,loverscomplaint,1609 rubies,1,loverscomplaint,1609 fickle,1,loverscomplaint,1609 shunn'd,1,loverscomplaint,1609 nowhere,1,loverscomplaint,1609 laugh,1,loverscomplaint,1609 soul,1,loverscomplaint,1609 under,1,loverscomplaint,1609 pined,1,loverscomplaint,1609 became,1,loverscomplaint,1609 observed,1,loverscomplaint,1609 obey,1,loverscomplaint,1609 kiss'd,1,loverscomplaint,1609 descended,1,loverscomplaint,1609 impleach'd,1,loverscomplaint,1609 Weak,1,loverscomplaint,1609 fairer,1,loverscomplaint,1609 low,1,loverscomplaint,1609 examples,1,loverscomplaint,1609 trophies,1,loverscomplaint,1609 aloof,1,loverscomplaint,1609 plants,1,loverscomplaint,1609 damned,1,loverscomplaint,1609 life,1,loverscomplaint,1609 truth,1,loverscomplaint,1609 gold,1,loverscomplaint,1609 pleasures,1,loverscomplaint,1609 landlord,1,loverscomplaint,1609 aught,1,loverscomplaint,1609 valiant,1,loverscomplaint,1609 perused,1,loverscomplaint,1609 divide,1,loverscomplaint,1609 seem,1,loverscomplaint,1609 'gan,1,loverscomplaint,1609 charm,1,loverscomplaint,1609 troth,1,loverscomplaint,1609 affectedly,1,loverscomplaint,1609 falseness,1,loverscomplaint,1609 sits,1,loverscomplaint,1609 arguments,1,loverscomplaint,1609 remain,1,loverscomplaint,1609 espied,1,loverscomplaint,1609 feeling,1,loverscomplaint,1609 Would,1,loverscomplaint,1609 quickly,1,loverscomplaint,1609 world,1,loverscomplaint,1609 nigh,1,loverscomplaint,1609 wounded,1,loverscomplaint,1609 straw,1,loverscomplaint,1609 sports,1,loverscomplaint,1609 supposed,1,loverscomplaint,1609 good,1,loverscomplaint,1609 'twixt,1,loverscomplaint,1609 grief,1,loverscomplaint,1609 curious,1,loverscomplaint,1609 Heard,1,loverscomplaint,1609 metal,1,loverscomplaint,1609 understood,1,loverscomplaint,1609 radiance,1,loverscomplaint,1609 schedules,1,loverscomplaint,1609 'Small,1,loverscomplaint,1609 cloister,1,loverscomplaint,1609 scars,1,loverscomplaint,1609 cost,1,loverscomplaint,1609 render,1,loverscomplaint,1609 difference,1,loverscomplaint,1609 awhile,1,loverscomplaint,1609 battle,1,loverscomplaint,1609 thereof,1,loverscomplaint,1609 gouty,1,loverscomplaint,1609 whom,1,loverscomplaint,1609 goodly,1,loverscomplaint,1609 case,1,loverscomplaint,1609 early,1,loverscomplaint,1609 lattice,1,loverscomplaint,1609 ere,1,loverscomplaint,1609 garment,1,loverscomplaint,1609 holiest,1,loverscomplaint,1609 Religion's,1,loverscomplaint,1609 So,1,loverscomplaint,1609 weepingly,1,loverscomplaint,1609 ornament,1,loverscomplaint,1609 shielded,1,loverscomplaint,1609 sanctified,1,loverscomplaint,1609 yours,1,loverscomplaint,1609 altar,1,loverscomplaint,1609 threaden,1,loverscomplaint,1609 thus,1,loverscomplaint,1609 chin,1,loverscomplaint,1609 reign,1,loverscomplaint,1609 chill,1,loverscomplaint,1609 strives,1,loverscomplaint,1609 secrecy,1,loverscomplaint,1609 sacred,1,loverscomplaint,1609 dote,1,loverscomplaint,1609 concave,1,loverscomplaint,1609 general,1,loverscomplaint,1609 doth,1,loverscomplaint,1609 cry,1,loverscomplaint,1609 sigh'd,1,loverscomplaint,1609 discontent,1,loverscomplaint,1609 oblations,1,loverscomplaint,1609 effect,1,loverscomplaint,1609 device,1,loverscomplaint,1609 airy,1,loverscomplaint,1609 graced,1,loverscomplaint,1609 high,1,loverscomplaint,1609 dost,1,loverscomplaint,1609 ender,1,loverscomplaint,1609 likewise,1,loverscomplaint,1609 leaves,1,loverscomplaint,1609 filial,1,loverscomplaint,1609 guards,1,loverscomplaint,1609 sadly,1,loverscomplaint,1609 eyne,1,loverscomplaint,1609 appertainings,1,loverscomplaint,1609 downward,1,loverscomplaint,1609 pour,1,loverscomplaint,1609 reconciled,1,loverscomplaint,1609 pine,1,loverscomplaint,1609 'Yet,1,loverscomplaint,1609 sistering,1,loverscomplaint,1609 equals,1,loverscomplaint,1609 hours,1,loverscomplaint,1609 'In,1,loverscomplaint,1609 undistinguish'd,1,loverscomplaint,1609 like,1,loverscomplaint,1609 sat,1,loverscomplaint,1609 qualities,1,loverscomplaint,1609 satisfaction,1,loverscomplaint,1609 'It,1,loverscomplaint,1609 kindred,1,loverscomplaint,1609 sonnets,1,loverscomplaint,1609 stream,1,loverscomplaint,1609 remove,1,loverscomplaint,1609 Crack'd,1,loverscomplaint,1609 reworded,1,loverscomplaint,1609 invised,1,loverscomplaint,1609 paleness,1,loverscomplaint,1609 bosoms,1,loverscomplaint,1609 This,1,loverscomplaint,1609 enrich'd,1,loverscomplaint,1609 unshorn,1,loverscomplaint,1609 jewel,1,loverscomplaint,1609 words,1,loverscomplaint,1609 brinish,1,loverscomplaint,1609 pensived,1,loverscomplaint,1609 purposed,1,loverscomplaint,1609 silk,1,loverscomplaint,1609 authorized,1,loverscomplaint,1609 applying,1,loverscomplaint,1609 Catching,1,loverscomplaint,1609 blush,1,loverscomplaint,1609 broken,1,loverscomplaint,1609 Feeling,1,loverscomplaint,1609 glow'd,1,loverscomplaint,1609 injury,1,loverscomplaint,1609 glowing,1,loverscomplaint,1609 Showing,1,loverscomplaint,1609 amorously,1,loverscomplaint,1609 bulwarks,1,loverscomplaint,1609 folded,1,loverscomplaint,1609 reading,1,loverscomplaint,1609 belong,1,loverscomplaint,1609 hurting,1,loverscomplaint,1609 Could,1,loverscomplaint,1609 skin,1,loverscomplaint,1609 hear,1,loverscomplaint,1609 additions,1,loverscomplaint,1609 head,1,loverscomplaint,1609 tongue,1,loverscomplaint,1609 carriage,1,loverscomplaint,1609 exclaim,1,loverscomplaint,1609 comes,1,loverscomplaint,1609 gate,1,loverscomplaint,1609 hearing,1,loverscomplaint,1609 picture,1,loverscomplaint,1609 'And,1,loverscomplaint,1609 formal,1,loverscomplaint,1609 They,1,loverscomplaint,1609 sorrow's,1,loverscomplaint,1609 sheaved,1,loverscomplaint,1609 afflicted,1,loverscomplaint,1609 assign'd,1,loverscomplaint,1609 begs,1,loverscomplaint,1609 rider,1,loverscomplaint,1609 full,1,loverscomplaint,1609 unexperient,1,loverscomplaint,1609 deceits,1,loverscomplaint,1609 ''Look,1,loverscomplaint,1609 woo,1,loverscomplaint,1609 acceptance,1,loverscomplaint,1609 bestow,1,loverscomplaint,1609 invite,1,loverscomplaint,1609 Both,1,loverscomplaint,1609 crooked,1,loverscomplaint,1609 poor,1,loverscomplaint,1609 potential,1,loverscomplaint,1609 came,1,loverscomplaint,1609 grievance,1,loverscomplaint,1609 fools,1,loverscomplaint,1609 Nor,1,loverscomplaint,1609 labour,1,loverscomplaint,1609 soft,1,loverscomplaint,1609 Accomplish'd,1,loverscomplaint,1609 ruffle,1,loverscomplaint,1609 blusterer,1,loverscomplaint,1609 caged,1,loverscomplaint,1609 pearls,1,loverscomplaint,1609 hued,1,loverscomplaint,1609 heaven's,1,loverscomplaint,1609 nature's,1,loverscomplaint,1609 freedom,1,loverscomplaint,1609 'scapeth,1,loverscomplaint,1609 seal'd,1,loverscomplaint,1609 outwards,1,loverscomplaint,1609 storm,1,loverscomplaint,1609 story,1,loverscomplaint,1609 deed,1,loverscomplaint,1609 Ink,1,loverscomplaint,1609 sear'd,1,loverscomplaint,1609 curls,1,loverscomplaint,1609 began,1,loverscomplaint,1609 coldly,1,loverscomplaint,1609 black,1,loverscomplaint,1609 breath,1,loverscomplaint,1609 affection,1,loverscomplaint,1609 patterns,1,loverscomplaint,1609 once,1,loverscomplaint,1609 promised,1,loverscomplaint,1609 mood,1,loverscomplaint,1609 Reserved,1,loverscomplaint,1609 supplicant,1,loverscomplaint,1609 papers,1,loverscomplaint,1609 credent,1,loverscomplaint,1609 sleep,1,loverscomplaint,1609 borrow'd,1,loverscomplaint,1609 betray,1,loverscomplaint,1609 further,1,loverscomplaint,1609 aim,1,loverscomplaint,1609 privileged,1,loverscomplaint,1609 view,1,loverscomplaint,1609 letters,1,loverscomplaint,1609 go,1,loverscomplaint,1609 raise,1,loverscomplaint,1609 warmed,1,loverscomplaint,1609 subdue,1,loverscomplaint,1609 fluxive,1,loverscomplaint,1609 ocean,1,loverscomplaint,1609 imagination,1,loverscomplaint,1609 braided,1,loverscomplaint,1609 rarest,1,loverscomplaint,1609 current,1,loverscomplaint,1609 bear,1,loverscomplaint,1609 stood,1,loverscomplaint,1609 cherubin,1,loverscomplaint,1609 needs,1,loverscomplaint,1609 wrath,1,loverscomplaint,1609 web,1,loverscomplaint,1609 spheres,1,loverscomplaint,1609 desired,1,loverscomplaint,1609 living,1,loverscomplaint,1609 gain,1,loverscomplaint,1609 Oft,1,loverscomplaint,1609 Lending,1,loverscomplaint,1609 sums,1,loverscomplaint,1609 speeches,1,loverscomplaint,1609 tongued,1,loverscomplaint,1609 pervert,1,loverscomplaint,1609 Found,1,loverscomplaint,1609 napkin,1,loverscomplaint,1609 dwell,1,loverscomplaint,1609 fountains,1,loverscomplaint,1609 stone,1,loverscomplaint,1609 spite,1,loverscomplaint,1609 taste,1,loverscomplaint,1609 who,1,loverscomplaint,1609 'scape,1,loverscomplaint,1609 Towards,1,loverscomplaint,1609 any,1,loverscomplaint,1609 light,1,loverscomplaint,1609 smiling,1,loverscomplaint,1609 victory,1,loverscomplaint,1609 ''And,1,loverscomplaint,1609 think,1,loverscomplaint,1609 get,1,loverscomplaint,1609 sting,1,loverscomplaint,1609 opal,1,loverscomplaint,1609 subdued,1,loverscomplaint,1609 lent,1,loverscomplaint,1609 forces,1,loverscomplaint,1609 enpatron,1,loverscomplaint,1609 doing,1,loverscomplaint,1609 stalk,1,loverscomplaint,1609 seeming,1,loverscomplaint,1609 laugher,1,loverscomplaint,1609 example,1,loverscomplaint,1609 Finding,1,loverscomplaint,1609 thine,1,loverscomplaint,1609 fastly,1,loverscomplaint,1609 lend,1,loverscomplaint,1609 stale,1,loverscomplaint,1609 Applied,1,loverscomplaint,1609 boast,1,loverscomplaint,1609 sake,1,loverscomplaint,1609 outwardly,1,loverscomplaint,1609 margent,1,loverscomplaint,1609 Paradise,1,loverscomplaint,1609 touch'd,1,loverscomplaint,1609 stole,1,loverscomplaint,1609 sister,1,loverscomplaint,1609 ''All,1,loverscomplaint,1609 mastering,1,loverscomplaint,1609 hands,1,loverscomplaint,1609 wit,1,loverscomplaint,1609 maund,1,loverscomplaint,1609 wake,1,loverscomplaint,1609 beguiling,1,loverscomplaint,1609 sapphire,1,loverscomplaint,1609 trim,1,loverscomplaint,1609 phoenix,1,loverscomplaint,1609 Ask'd,1,loverscomplaint,1609 deceives,1,loverscomplaint,1609 disciplined,1,loverscomplaint,1609 ay,1,loverscomplaint,1609 spongy,1,loverscomplaint,1609 audit,1,loverscomplaint,1609 win,1,loverscomplaint,1609 ''How,1,loverscomplaint,1609 oft,1,loverscomplaint,1609 'twas,1,loverscomplaint,1609 am,1,loverscomplaint,1609 an,1,loverscomplaint,1609 beseech'd,1,loverscomplaint,1609 amend,1,loverscomplaint,1609 ah,1,loverscomplaint,1609 why,1,loverscomplaint,1609 sorrow,1,loverscomplaint,1609 newly,1,loverscomplaint,1609 yield,1,loverscomplaint,1609 curb,1,loverscomplaint,1609 Since,1,loverscomplaint,1609 twisted,1,loverscomplaint,1609 blunting,1,loverscomplaint,1609 emerald,1,loverscomplaint,1609 says,1,loverscomplaint,1609 congest,1,loverscomplaint,1609 woes,1,loverscomplaint,1609 sexes,1,loverscomplaint,1609 betray'd,1,loverscomplaint,1609 assuage,1,loverscomplaint,1609 thoughts,1,loverscomplaint,1609 ring,1,loverscomplaint,1609 Sweetly,1,loverscomplaint,1609 flew,1,loverscomplaint,1609 encloses,1,loverscomplaint,1609 gems,1,loverscomplaint,1609 skill,1,loverscomplaint,1609 spreading,1,loverscomplaint,1609 untuck'd,1,loverscomplaint,1609 lips,1,loverscomplaint,1609 bondage,1,loverscomplaint,1609 unconstrained,1,loverscomplaint,1609 small,1,loverscomplaint,1609 gan,1,loverscomplaint,1609 sworn,1,loverscomplaint,1609 thee,1,loverscomplaint,1609 obeys,1,loverscomplaint,1609 winds,1,loverscomplaint,1609 different,1,loverscomplaint,1609 moment,1,loverscomplaint,1609 bloodless,1,loverscomplaint,1609 bestow'd,1,loverscomplaint,1609 dialogued,1,loverscomplaint,1609 'Many,1,loverscomplaint,1609 sawn,1,loverscomplaint,1609 melting,1,loverscomplaint,1609 monarch's,1,loverscomplaint,1609 untidy,1,loverscomplaint,1609 physic,1,loverscomplaint,1609 Saw,1,loverscomplaint,1609 abide,1,loverscomplaint,1609 procured,1,loverscomplaint,1609 flight,1,loverscomplaint,1609 amorous,1,loverscomplaint,1609 livery,1,loverscomplaint,1609 Hallow'd,1,loverscomplaint,1609 hoard,1,loverscomplaint,1609 sometime,1,loverscomplaint,1609 earth,1,loverscomplaint,1609 design,1,loverscomplaint,1609 negligence,1,loverscomplaint,1609 impediments,1,loverscomplaint,1609 last,1,loverscomplaint,1609 remains,1,loverscomplaint,1609 sometimes,1,loverscomplaint,1609 terror,1,loverscomplaint,1609 Storming,1,loverscomplaint,1609 aptness,1,loverscomplaint,1609 subtle,1,loverscomplaint,1609 adulterate,1,loverscomplaint,1609 accorded,1,loverscomplaint,1609 level,1,loverscomplaint,1609 groans,1,loverscomplaint,1609 grounds,1,loverscomplaint,1609 gyves,1,loverscomplaint,1609 talents,1,loverscomplaint,1609 doubt,1,loverscomplaint,1609 offences,1,loverscomplaint,1609 either's,1,loverscomplaint,1609 late,1,loverscomplaint,1609 way,1,loverscomplaint,1609 father,1,loverscomplaint,1609 real,1,loverscomplaint,1609 Experience,1,loverscomplaint,1609 unapproved,1,loverscomplaint,1609 resolved,1,loverscomplaint,1609 duty,1,loverscomplaint,1609 tuned,1,loverscomplaint,1609 if,1,loverscomplaint,1609 diamond,1,loverscomplaint,1609 heave,1,loverscomplaint,1609 May,1,loverscomplaint,1609 shrieking,1,loverscomplaint,1609 arms,1,loverscomplaint,1609 Encamp'd,1,loverscomplaint,1609 maidens',1,loverscomplaint,1609 stuck,1,loverscomplaint,1609 spent,1,loverscomplaint,1609 receive,1,loverscomplaint,1609 less,1,loverscomplaint,1609 Reason,1,loverscomplaint,1609 those,1,loverscomplaint,1609 audience,1,loverscomplaint,1609 tributes,1,loverscomplaint,1609 ill,1,loverscomplaint,1609 list,1,loverscomplaint,1609 ''When,1,loverscomplaint,1609 'though,1,loverscomplaint,1609 oath,1,loverscomplaint,1609 know,1,loverscomplaint,1609 fount,1,loverscomplaint,1609 knot,1,loverscomplaint,1609 harms,1,loverscomplaint,1609 spend,1,loverscomplaint,1609 'Father,1,loverscomplaint,1609 aids,1,loverscomplaint,1609 April,1,loverscomplaint,1609 platted,1,loverscomplaint,1609 consecrations,1,loverscomplaint,1609 Grace,1,loverscomplaint,1609 intend,1,loverscomplaint,1609 themselves,1,loverscomplaint,1609 'Tis,1,loverscomplaint,1609 sepulchres,1,loverscomplaint,1609 beauteous,1,loverscomplaint,1609 These,1,loverscomplaint,1609 compound,1,loverscomplaint,1609 received,1,loverscomplaint,1609 appetite,1,loverscomplaint,1609 show'd,1,loverscomplaint,1609 strange,1,loverscomplaint,1609 Consents,1,loverscomplaint,1609 impressest,1,loverscomplaint,1609 browny,1,loverscomplaint,1609 receives,1,loverscomplaint,1609 Figuring,1,loverscomplaint,1609 serve,1,loverscomplaint,1609 turn,1,loverscomplaint,1609 tempter,1,loverscomplaint,1609 clamours,1,loverscomplaint,1609 forbod,1,loverscomplaint,1609 Proclaim'd,1,loverscomplaint,1609 There,1,loverscomplaint,1609 Believed,1,loverscomplaint,1609 apace,1,loverscomplaint,1609 charm'd,1,loverscomplaint,1609 content,1,loverscomplaint,1609 pure,1,loverscomplaint,1609 afraid,1,loverscomplaint,1609 Fresh,1,loverscomplaint,1609 builded,1,loverscomplaint,1609 Came,1,loverscomplaint,1609 harm'd,1,loverscomplaint,1609 bore,1,loverscomplaint,1609 Works,1,loverscomplaint,1609 brought,1,loverscomplaint,1609 running,1,loverscomplaint,1609 warm'd,1,loverscomplaint,1609 witness,1,loverscomplaint,1609 tempted,1,loverscomplaint,1609 personal,1,loverscomplaint,1609 bounty,1,loverscomplaint,1609 cover'd,1,loverscomplaint,1609 civil,1,loverscomplaint,1609 Thought,1,loverscomplaint,1609 hard,1,loverscomplaint,1609 comely,1,loverscomplaint,1609 ''My,1,loverscomplaint,1609 grained,1,loverscomplaint,1609 hail,1,loverscomplaint,1609 dieted,1,loverscomplaint,1609 sweets,1,loverscomplaint,1609 absence,1,loverscomplaint,1609 Whereon,1,loverscomplaint,1609 lover'd,1,loverscomplaint,1609 combined,1,loverscomplaint,1609 up,1,loverscomplaint,1609 fix'd,1,loverscomplaint,1609 careless,1,loverscomplaint,1609 laid,1,loverscomplaint,1609 keen,1,loverscomplaint,1609 prompt,1,loverscomplaint,1609 part,1,loverscomplaint,1609 feat,1,loverscomplaint,1609 brokers,1,loverscomplaint,1609 attend,1,loverscomplaint,1609 remain'd,1,loverscomplaint,1609 mettle,1,loverscomplaint,1609 hue,1,loverscomplaint,1609 manifold,1,loverscomplaint,1609 terms,1,loverscomplaint,1609 destined,1,loverscomplaint,1609 watery,1,loverscomplaint,1609 labouring,1,loverscomplaint,1609 confine,1,loverscomplaint,1609 mud,1,loverscomplaint,1609 Did,1,loverscomplaint,1609 orchards,1,loverscomplaint,1609 untrue,1,loverscomplaint,1609 distractedly,1,loverscomplaint,1609 Threw,1,loverscomplaint,1609 swoon,1,loverscomplaint,1609 charged,1,loverscomplaint,1609 precepts,1,loverscomplaint,1609 size,1,loverscomplaint,1609 hover'd,1,loverscomplaint,1609 Big,1,loverscomplaint,1609 palate,1,loverscomplaint,1609 Laundering,1,loverscomplaint,1609 cries,1,loverscomplaint,1609 slides,1,loverscomplaint,1609 call'd,1,loverscomplaint,1609 rocky,1,loverscomplaint,1609 carcass,1,loverscomplaint,1609 womb,1,loverscomplaint,1609 weighs,1,loverscomplaint,1609 hang,1,loverscomplaint,1609 appears,1,loverscomplaint,1609 shun,1,loverscomplaint,1609 sun,1,loverscomplaint,1609 owe,1,loverscomplaint,1609 liberty,1,loverscomplaint,1609 leisures,1,loverscomplaint,1609 above,1,loverscomplaint,1609 swiftest,1,loverscomplaint,1609 rudeness,1,loverscomplaint,1609 rain,1,loverscomplaint,1609 too,1,loverscomplaint,1609 drawn,1,loverscomplaint,1609 top,1,loverscomplaint,1609 similes,1,loverscomplaint,1609 blossoms,1,loverscomplaint,1609 reverend,1,loverscomplaint,1609 plenitude,1,loverscomplaint,1609 wavering,1,loverscomplaint,1609 mighty,1,loverscomplaint,1609 drops,1,loverscomplaint,1609 praise,1,loverscomplaint,1609 brief,1,loverscomplaint,1609 ''The,1,loverscomplaint,1609 forth,1,loverscomplaint,1609 sober,1,loverscomplaint,1609 brine,1,loverscomplaint,1609 tip,1,loverscomplaint,1609 went,1,loverscomplaint,1609 course,1,loverscomplaint,1609 thy,1,loverscomplaint,1609 Even,1,loverscomplaint,1609 flow'd,1,loverscomplaint,1609 Whereto,1,loverscomplaint,1609 bathed,1,loverscomplaint,1609 'Nor,1,loverscomplaint,1609 fillet,1,loverscomplaint,1609 commanding,1,loverscomplaint,1609 concealed,1,loverscomplaint,1609 preach,1,loverscomplaint,1609 shocks,1,loverscomplaint,1609 Take,1,loverscomplaint,1609 minister,1,loverscomplaint,1609 'Gentle,1,loverscomplaint,1609 without,1,loverscomplaint,1609 shall,1,loverscomplaint,1609 tempt,1,loverscomplaint,1609 LOVER'S,1,loverscomplaint,1609 charmed,1,loverscomplaint,1609 assail,1,loverscomplaint,1609 bonded,1,loverscomplaint,1609 habitude,1,loverscomplaint,1609 monarchy,1,loverscomplaint,1609 scythed,1,loverscomplaint,1609 Time,1,loverscomplaint,1609 emptied,1,loverscomplaint,1609 dwelling,1,loverscomplaint,1609 command,1,loverscomplaint,1609 usury,1,loverscomplaint,1609 fore,1,loverscomplaint,1609 giving,1,loverscomplaint,1609 want,1,loverscomplaint,1609 inflame,1,loverscomplaint,1609 heaven,1,loverscomplaint,1609 immured,1,loverscomplaint,1609 That's,1,loverscomplaint,1609 figures,1,loverscomplaint,1609 should,1,loverscomplaint,1609 behoof,1,loverscomplaint,1609 orb,1,loverscomplaint,1609 fall,1,loverscomplaint,1609 twain,1,loverscomplaint,1609 FROM,1,loverscomplaint,1609 distract,1,loverscomplaint,1609 owed,1,loverscomplaint,1609 bosom,1,loverscomplaint,1609 safest,1,loverscomplaint,1609 little,1,loverscomplaint,1609 show,1,loverscomplaint,1609 rounds,1,loverscomplaint,1609 haunted,1,loverscomplaint,1609 charity,1,loverscomplaint,1609 weeper,1,loverscomplaint,1609 woeful,1,loverscomplaint,1609 anon,1,loverscomplaint,1609 rings,1,loverscomplaint,1609 yielded,1,loverscomplaint,1609 bragg'd,1,loverscomplaint,1609 breathe,1,loverscomplaint,1609 dialect,1,loverscomplaint,1609 sense,1,loverscomplaint,1609 properties,1,loverscomplaint,1609 moan,1,loverscomplaint,1609 cattle,1,loverscomplaint,1609 fiend,1,loverscomplaint,1609 himself,1,loverscomplaint,1609 Kept,1,loverscomplaint,1609 bewitch'd,1,loverscomplaint,1609 threw,1,loverscomplaint,1609 pelleted,1,loverscomplaint,1609 bide,1,loverscomplaint,1609 commix'd,1,loverscomplaint,1609 roses,1,loverscomplaint,1609 fighting,1,loverscomplaint,1609 lodged,1,loverscomplaint,1609 voice,1,loverscomplaint,1609 excess,1,loverscomplaint,1609 undertake,1,loverscomplaint,1609 bond,1,loverscomplaint,1609 Shook,1,loverscomplaint,1609 fresh,1,loverscomplaint,1609 rule,1,loverscomplaint,1609 bone,1,loverscomplaint,1609 How,1,loverscomplaint,1609 maiden,1,loverscomplaint,1609 passion,1,loverscomplaint,1609 gazes,1,loverscomplaint,1609 forms,1,loverscomplaint,1609 vow,1,loverscomplaint,1609 fancies,1,loverscomplaint,1609 ye,1,loverscomplaint,1609 steed,1,loverscomplaint,1609 desire,1,loverscomplaint,1609 matter,1,loverscomplaint,1609 origin,1,loverscomplaint,1609 fortified,1,loverscomplaint,1609 sway,1,loverscomplaint,1609 wits,1,loverscomplaint,1609 Bidding,1,loverscomplaint,1609 havings,1,loverscomplaint,1609 stone's,1,loverscomplaint,1609 channel,1,loverscomplaint,1609 parts,2,loverscomplaint,1609 silken,2,loverscomplaint,1609 objects,2,loverscomplaint,1609 o'er,2,loverscomplaint,1609 herself,2,loverscomplaint,1609 judgment,2,loverscomplaint,1609 side,2,loverscomplaint,1609 tell,2,loverscomplaint,1609 burning,2,loverscomplaint,1609 Have,2,loverscomplaint,1609 horse,2,loverscomplaint,1609 through,2,loverscomplaint,1609 By,2,loverscomplaint,1609 neither,2,loverscomplaint,1609 never,2,loverscomplaint,1609 reason,2,loverscomplaint,1609 sights,2,loverscomplaint,1609 My,2,loverscomplaint,1609 thought,2,loverscomplaint,1609 distance,2,loverscomplaint,1609 begun,2,loverscomplaint,1609 force,2,loverscomplaint,1609 Her,2,loverscomplaint,1609 every,2,loverscomplaint,1609 tear,2,loverscomplaint,1609 none,2,loverscomplaint,1609 levell'd,2,loverscomplaint,1609 He,2,loverscomplaint,1609 aptly,2,loverscomplaint,1609 sighs,2,loverscomplaint,1609 Playing,2,loverscomplaint,1609 tears,2,loverscomplaint,1609 bears,2,loverscomplaint,1609 lungs,2,loverscomplaint,1609 contents,2,loverscomplaint,1609 lies,2,loverscomplaint,1609 She,2,loverscomplaint,1609 seen,2,loverscomplaint,1609 young,2,loverscomplaint,1609 nun,2,loverscomplaint,1609 others',2,loverscomplaint,1609 several,2,loverscomplaint,1609 passions,2,loverscomplaint,1609 wear,2,loverscomplaint,1609 Some,2,loverscomplaint,1609 craft,2,loverscomplaint,1609 sad,2,loverscomplaint,1609 saw,2,loverscomplaint,1609 tied,2,loverscomplaint,1609 self,2,loverscomplaint,1609 let,2,loverscomplaint,1609 bleeding,2,loverscomplaint,1609 been,2,loverscomplaint,1609 sent,2,loverscomplaint,1609 drew,2,loverscomplaint,1609 characters,2,loverscomplaint,1609 beside,2,loverscomplaint,1609 river,2,loverscomplaint,1609 over,2,loverscomplaint,1609 free,2,loverscomplaint,1609 'So,2,loverscomplaint,1609 'His,2,loverscomplaint,1609 breast,2,loverscomplaint,1609 leave,2,loverscomplaint,1609 could,2,loverscomplaint,1609 battery,2,loverscomplaint,1609 wet,2,loverscomplaint,1609 man,2,loverscomplaint,1609 spirits,2,loverscomplaint,1609 fire,2,loverscomplaint,1609 abroad,2,loverscomplaint,1609 long,2,loverscomplaint,1609 forced,2,loverscomplaint,1609 thing,2,loverscomplaint,1609 set,2,loverscomplaint,1609 blushes,2,loverscomplaint,1609 Sometime,2,loverscomplaint,1609 men,2,loverscomplaint,1609 makes,2,loverscomplaint,1609 still,2,loverscomplaint,1609 see,2,loverscomplaint,1609 off,2,loverscomplaint,1609 suit,2,loverscomplaint,1609 fell,2,loverscomplaint,1609 no,2,loverscomplaint,1609 court,2,loverscomplaint,1609 break,2,loverscomplaint,1609 worth,2,loverscomplaint,1609 done,2,loverscomplaint,1609 fears,2,loverscomplaint,1609 lo,2,loverscomplaint,1609 most,2,loverscomplaint,1609 noble,2,loverscomplaint,1609 such,2,loverscomplaint,1609 Yet,2,loverscomplaint,1609 beauty,2,loverscomplaint,1609 extend,2,loverscomplaint,1609 breaking,2,loverscomplaint,1609 knew,2,loverscomplaint,1609 Where,2,loverscomplaint,1609 pride,2,loverscomplaint,1609 nature,2,loverscomplaint,1609 moe,2,loverscomplaint,1609 hot,2,loverscomplaint,1609 face,2,loverscomplaint,1609 simple,2,loverscomplaint,1609 'This,2,loverscomplaint,1609 hair,2,loverscomplaint,1609 us,2,loverscomplaint,1609 ''Lo,2,loverscomplaint,1609 fear,2,loverscomplaint,1609 loose,2,loverscomplaint,1609 pale,2,loverscomplaint,1609 weeping,2,loverscomplaint,1609 thence,2,loverscomplaint,1609 foul,2,loverscomplaint,1609 honour,2,loverscomplaint,1609 out,2,loverscomplaint,1609 city,2,loverscomplaint,1609 behold,2,loverscomplaint,1609 flower,2,loverscomplaint,1609 wind,2,loverscomplaint,1609 form,2,loverscomplaint,1609 wills,2,loverscomplaint,1609 ''O,2,loverscomplaint,1609 modesty,2,loverscomplaint,1609 hence,2,loverscomplaint,1609 Till,2,loverscomplaint,1609 crystal,2,loverscomplaint,1609 'For,2,loverscomplaint,1609 old,2,loverscomplaint,1609 Though,2,loverscomplaint,1609 though,2,loverscomplaint,1609 fame,2,loverscomplaint,1609 parcels,2,loverscomplaint,1609 chastity,2,loverscomplaint,1609 th',2,loverscomplaint,1609 seem'd,2,loverscomplaint,1609 fly,2,loverscomplaint,1609 ride,2,loverscomplaint,1609 stop,2,loverscomplaint,1609 merely,2,loverscomplaint,1609 flame,2,loverscomplaint,1609 ne'er,2,loverscomplaint,1609 applied,2,loverscomplaint,1609 'But,3,loverscomplaint,1609 new,3,loverscomplaint,1609 much,3,loverscomplaint,1609 Each,3,loverscomplaint,1609 there,3,loverscomplaint,1609 water,3,loverscomplaint,1609 here,3,loverscomplaint,1609 If,3,loverscomplaint,1609 hearts,3,loverscomplaint,1609 Love,3,loverscomplaint,1609 sought,3,loverscomplaint,1609 best,3,loverscomplaint,1609 visage,3,loverscomplaint,1609 weep,3,loverscomplaint,1609 affections,3,loverscomplaint,1609 question,3,loverscomplaint,1609 again,3,loverscomplaint,1609 now,3,loverscomplaint,1609 say,3,loverscomplaint,1609 vows,3,loverscomplaint,1609 Like,3,loverscomplaint,1609 cheek,3,loverscomplaint,1609 Not,3,loverscomplaint,1609 said,3,loverscomplaint,1609 Who,3,loverscomplaint,1609 But,3,loverscomplaint,1609 deep,3,loverscomplaint,1609 desires,3,loverscomplaint,1609 dear,3,loverscomplaint,1609 stand,3,loverscomplaint,1609 then,3,loverscomplaint,1609 'O,3,loverscomplaint,1609 Their,3,loverscomplaint,1609 being,3,loverscomplaint,1609 more,3,loverscomplaint,1609 when,3,loverscomplaint,1609 rage,3,loverscomplaint,1609 how,3,loverscomplaint,1609 we,3,loverscomplaint,1609 both,3,loverscomplaint,1609 takes,3,loverscomplaint,1609 well,3,loverscomplaint,1609 hand,3,loverscomplaint,1609 suffering,3,loverscomplaint,1609 false,3,loverscomplaint,1609 might,3,loverscomplaint,1609 kind,3,loverscomplaint,1609 'That,3,loverscomplaint,1609 power,3,loverscomplaint,1609 make,4,loverscomplaint,1609 As,4,loverscomplaint,1609 His,4,loverscomplaint,1609 maid,4,loverscomplaint,1609 upon,4,loverscomplaint,1609 where,4,loverscomplaint,1609 eye,4,loverscomplaint,1609 strong,4,loverscomplaint,1609 down,4,loverscomplaint,1609 Upon,4,loverscomplaint,1609 must,4,loverscomplaint,1609 whose,4,loverscomplaint,1609 sweet,4,loverscomplaint,1609 Whose,4,loverscomplaint,1609 myself,4,loverscomplaint,1609 put,4,loverscomplaint,1609 mind,4,loverscomplaint,1609 woe,4,loverscomplaint,1609 may,4,loverscomplaint,1609 at,4,loverscomplaint,1609 or,4,loverscomplaint,1609 true,4,loverscomplaint,1609 age,4,loverscomplaint,1609 When,4,loverscomplaint,1609 white,4,loverscomplaint,1609 our,4,loverscomplaint,1609 fair,4,loverscomplaint,1609 shame,4,loverscomplaint,1609 ever,4,loverscomplaint,1609 find,4,loverscomplaint,1609 A,5,loverscomplaint,1609 will,5,loverscomplaint,1609 blood,5,loverscomplaint,1609 gave,5,loverscomplaint,1609 some,5,loverscomplaint,1609 'gainst,5,loverscomplaint,1609 All,5,loverscomplaint,1609 cold,5,loverscomplaint,1609 thou,5,loverscomplaint,1609 grace,5,loverscomplaint,1609 own,5,loverscomplaint,1609 are,5,loverscomplaint,1609 art,5,loverscomplaint,1609 hath,5,loverscomplaint,1609 these,6,loverscomplaint,1609 made,6,loverscomplaint,1609 youth,6,loverscomplaint,1609 yet,6,loverscomplaint,1609 love,6,loverscomplaint,1609 this,6,loverscomplaint,1609 place,6,loverscomplaint,1609 for,6,loverscomplaint,1609 That,7,loverscomplaint,1609 ',7,loverscomplaint,1609 often,7,loverscomplaint,1609 In,7,loverscomplaint,1609 Which,7,loverscomplaint,1609 many,7,loverscomplaint,1609 mine,7,loverscomplaint,1609 do,7,loverscomplaint,1609 heart,7,loverscomplaint,1609 With,7,loverscomplaint,1609 were,7,loverscomplaint,1609 one,7,loverscomplaint,1609 had,8,loverscomplaint,1609 which,8,loverscomplaint,1609 your,8,loverscomplaint,1609 eyes,8,loverscomplaint,1609 Or,8,loverscomplaint,1609 nor,8,loverscomplaint,1609 on,8,loverscomplaint,1609 What,8,loverscomplaint,1609 would,9,loverscomplaint,1609 be,9,loverscomplaint,1609 as,9,loverscomplaint,1609 they,9,loverscomplaint,1609 is,9,loverscomplaint,1609 have,9,loverscomplaint,1609 O,10,loverscomplaint,1609 you,10,loverscomplaint,1609 but,10,loverscomplaint,1609 For,10,loverscomplaint,1609 To,11,loverscomplaint,1609 what,11,loverscomplaint,1609 them,11,loverscomplaint,1609 with,11,loverscomplaint,1609 from,12,loverscomplaint,1609 so,12,loverscomplaint,1609 him,13,loverscomplaint,1609 it,13,loverscomplaint,1609 Of,14,loverscomplaint,1609 she,14,loverscomplaint,1609 by,15,loverscomplaint,1609 was,15,loverscomplaint,1609 The,15,loverscomplaint,1609 not,19,loverscomplaint,1609 I,20,loverscomplaint,1609 he,21,loverscomplaint,1609 all,21,loverscomplaint,1609 me,21,loverscomplaint,1609 their,22,loverscomplaint,1609 my,22,loverscomplaint,1609 did,25,loverscomplaint,1609 her,26,loverscomplaint,1609 And,28,loverscomplaint,1609 a,30,loverscomplaint,1609 that,35,loverscomplaint,1609 his,40,loverscomplaint,1609 to,51,loverscomplaint,1609 in,55,loverscomplaint,1609 the,57,loverscomplaint,1609 of,58,loverscomplaint,1609 and,63,loverscomplaint,1609 fealty,1,titusandronicus,1593 dimm'd,1,titusandronicus,1593 affords,1,titusandronicus,1593 discharged,1,titusandronicus,1593 champions,1,titusandronicus,1593 silken,1,titusandronicus,1593 surmise,1,titusandronicus,1593 tadpole,1,titusandronicus,1593 pleading,1,titusandronicus,1593 Tremble,1,titusandronicus,1593 Accompanied,1,titusandronicus,1593 degenerate,1,titusandronicus,1593 declared,1,titusandronicus,1593 Aaron's,1,titusandronicus,1593 cage,1,titusandronicus,1593 household's,1,titusandronicus,1593 alehouse,1,titusandronicus,1593 brawl,1,titusandronicus,1593 troubled,1,titusandronicus,1593 lusty,1,titusandronicus,1593 encamp,1,titusandronicus,1593 forbid,1,titusandronicus,1593 lusts,1,titusandronicus,1593 Dismounted,1,titusandronicus,1593 relief,1,titusandronicus,1593 Brutus,1,titusandronicus,1593 advised,1,titusandronicus,1593 venomous,1,titusandronicus,1593 guard,1,titusandronicus,1593 Unbind,1,titusandronicus,1593 grey,1,titusandronicus,1593 Wanting,1,titusandronicus,1593 confused,1,titusandronicus,1593 m,1,titusandronicus,1593 mistaking,1,titusandronicus,1593 bitterest,1,titusandronicus,1593 slaughtering,1,titusandronicus,1593 red,1,titusandronicus,1593 continence,1,titusandronicus,1593 library,1,titusandronicus,1593 Few,1,titusandronicus,1593 Pius,1,titusandronicus,1593 drop,1,titusandronicus,1593 took,1,titusandronicus,1593 Imperious,1,titusandronicus,1593 darest,1,titusandronicus,1593 jar,1,titusandronicus,1593 fathers,1,titusandronicus,1593 motion,1,titusandronicus,1593 discord's,1,titusandronicus,1593 Loves,1,titusandronicus,1593 direful,1,titusandronicus,1593 belongs,1,titusandronicus,1593 leisure,1,titusandronicus,1593 Hear,1,titusandronicus,1593 massacre,1,titusandronicus,1593 forswear,1,titusandronicus,1593 tremble,1,titusandronicus,1593 fame's,1,titusandronicus,1593 weary,1,titusandronicus,1593 brass,1,titusandronicus,1593 treasury,1,titusandronicus,1593 wish'd,1,titusandronicus,1593 Ambitiously,1,titusandronicus,1593 ignomy,1,titusandronicus,1593 following,1,titusandronicus,1593 unburied,1,titusandronicus,1593 factions,1,titusandronicus,1593 treasure,1,titusandronicus,1593 Tear,1,titusandronicus,1593 woman's,1,titusandronicus,1593 Join,1,titusandronicus,1593 torn,1,titusandronicus,1593 siren,1,titusandronicus,1593 advantage,1,titusandronicus,1593 lawful,1,titusandronicus,1593 Whether,1,titusandronicus,1593 unroll,1,titusandronicus,1593 honourably,1,titusandronicus,1593 whirl,1,titusandronicus,1593 fainting,1,titusandronicus,1593 Revenge's,1,titusandronicus,1593 dagger,1,titusandronicus,1593 rock,1,titusandronicus,1593 Vulcan's,1,titusandronicus,1593 zeal,1,titusandronicus,1593 distill'd,1,titusandronicus,1593 boned,1,titusandronicus,1593 elect,1,titusandronicus,1593 rot,1,titusandronicus,1593 exploits,1,titusandronicus,1593 offended,1,titusandronicus,1593 Confusion,1,titusandronicus,1593 resign,1,titusandronicus,1593 health,1,titusandronicus,1593 robe,1,titusandronicus,1593 offender,1,titusandronicus,1593 heart's,1,titusandronicus,1593 stopp'd,1,titusandronicus,1593 highness',1,titusandronicus,1593 Defend,1,titusandronicus,1593 easily,1,titusandronicus,1593 unappeased,1,titusandronicus,1593 Acts,1,titusandronicus,1593 devouring,1,titusandronicus,1593 rather,1,titusandronicus,1593 habiliment,1,titusandronicus,1593 Stab,1,titusandronicus,1593 foster,1,titusandronicus,1593 sleeps,1,titusandronicus,1593 spade,1,titusandronicus,1593 reserved,1,titusandronicus,1593 despised,1,titusandronicus,1593 strengthen,1,titusandronicus,1593 grandsire's,1,titusandronicus,1593 laughter,1,titusandronicus,1593 trull,1,titusandronicus,1593 truly,1,titusandronicus,1593 dish,1,titusandronicus,1593 bondmen,1,titusandronicus,1593 Remaineth,1,titusandronicus,1593 suppliant,1,titusandronicus,1593 trump,1,titusandronicus,1593 wrap,1,titusandronicus,1593 hers,1,titusandronicus,1593 Must,1,titusandronicus,1593 uphold,1,titusandronicus,1593 finger,1,titusandronicus,1593 groan,1,titusandronicus,1593 overlooks,1,titusandronicus,1593 proceedings,1,titusandronicus,1593 spake,1,titusandronicus,1593 dropp'd,1,titusandronicus,1593 languishment,1,titusandronicus,1593 effectless,1,titusandronicus,1593 mean'st,1,titusandronicus,1593 braver,1,titusandronicus,1593 chest,1,titusandronicus,1593 Coal,1,titusandronicus,1593 blossom,1,titusandronicus,1593 urchins,1,titusandronicus,1593 'Integer,1,titusandronicus,1593 utterance,1,titusandronicus,1593 comest,1,titusandronicus,1593 learn'd,1,titusandronicus,1593 Unworthy,1,titusandronicus,1593 brook,1,titusandronicus,1593 poniard,1,titusandronicus,1593 dive,1,titusandronicus,1593 brood,1,titusandronicus,1593 mattock,1,titusandronicus,1593 Ravish'd,1,titusandronicus,1593 villanies,1,titusandronicus,1593 understand,1,titusandronicus,1593 conducted,1,titusandronicus,1593 dismount,1,titusandronicus,1593 shelter,1,titusandronicus,1593 throat,1,titusandronicus,1593 underneath,1,titusandronicus,1593 cowardice,1,titusandronicus,1593 sour,1,titusandronicus,1593 Suffer,1,titusandronicus,1593 laugh,1,titusandronicus,1593 thou'lt,1,titusandronicus,1593 yonder,1,titusandronicus,1593 Wound,1,titusandronicus,1593 innocence,1,titusandronicus,1593 loaden,1,titusandronicus,1593 Mortal,1,titusandronicus,1593 baits,1,titusandronicus,1593 press,1,titusandronicus,1593 strumpet,1,titusandronicus,1593 advise,1,titusandronicus,1593 odds,1,titusandronicus,1593 damned,1,titusandronicus,1593 ancestors,1,titusandronicus,1593 offendeth,1,titusandronicus,1593 rates,1,titusandronicus,1593 yelping,1,titusandronicus,1593 lustily,1,titusandronicus,1593 nymph,1,titusandronicus,1593 enfranchised,1,titusandronicus,1593 Tereus',1,titusandronicus,1593 joys,1,titusandronicus,1593 insult,1,titusandronicus,1593 rated,1,titusandronicus,1593 lulls,1,titusandronicus,1593 wrest,1,titusandronicus,1593 Stephen,1,titusandronicus,1593 infuse,1,titusandronicus,1593 thump,1,titusandronicus,1593 PERSONAE,1,titusandronicus,1593 card,1,titusandronicus,1593 mute,1,titusandronicus,1593 Also,1,titusandronicus,1593 lightning,1,titusandronicus,1593 Hanged,1,titusandronicus,1593 battles,1,titusandronicus,1593 early,1,titusandronicus,1593 attempt,1,titusandronicus,1593 song,1,titusandronicus,1593 interrupter,1,titusandronicus,1593 pursue,1,titusandronicus,1593 stoops,1,titusandronicus,1593 downfall,1,titusandronicus,1593 successive,1,titusandronicus,1593 tiger's,1,titusandronicus,1593 delivered,1,titusandronicus,1593 charge,1,titusandronicus,1593 Muli,1,titusandronicus,1593 graced,1,titusandronicus,1593 surfeit,1,titusandronicus,1593 Patient,1,titusandronicus,1593 plies,1,titusandronicus,1593 gloomy,1,titusandronicus,1593 lacks,1,titusandronicus,1593 espouse,1,titusandronicus,1593 conscience,1,titusandronicus,1593 wander'd,1,titusandronicus,1593 inmost,1,titusandronicus,1593 consuming,1,titusandronicus,1593 stock,1,titusandronicus,1593 drive,1,titusandronicus,1593 reconciled,1,titusandronicus,1593 enemies',1,titusandronicus,1593 slept,1,titusandronicus,1593 working,1,titusandronicus,1593 confusion,1,titusandronicus,1593 overflow'd,1,titusandronicus,1593 wrung,1,titusandronicus,1593 blabb'd,1,titusandronicus,1593 piteously,1,titusandronicus,1593 lifts,1,titusandronicus,1593 grown,1,titusandronicus,1593 closure,1,titusandronicus,1593 Cook,1,titusandronicus,1593 stream,1,titusandronicus,1593 losers,1,titusandronicus,1593 hour's,1,titusandronicus,1593 fortunate,1,titusandronicus,1593 broach'd,1,titusandronicus,1593 call'st,1,titusandronicus,1593 circumstance,1,titusandronicus,1593 purposely,1,titusandronicus,1593 Caesar's,1,titusandronicus,1593 bottomless,1,titusandronicus,1593 Plains,1,titusandronicus,1593 crying,1,titusandronicus,1593 broken,1,titusandronicus,1593 Ram's,1,titusandronicus,1593 brothers',1,titusandronicus,1593 proceeds,1,titusandronicus,1593 obdurate,1,titusandronicus,1593 Remember,1,titusandronicus,1593 heat,1,titusandronicus,1593 heap,1,titusandronicus,1593 Victorious,1,titusandronicus,1593 heal,1,titusandronicus,1593 Woe,1,titusandronicus,1593 Only,1,titusandronicus,1593 headless,1,titusandronicus,1593 wants,1,titusandronicus,1593 fingers,1,titusandronicus,1593 lift,1,titusandronicus,1593 hew'd,1,titusandronicus,1593 calf,1,titusandronicus,1593 poet's,1,titusandronicus,1593 shadow'd,1,titusandronicus,1593 nests,1,titusandronicus,1593 pipe,1,titusandronicus,1593 hanging,1,titusandronicus,1593 chilling,1,titusandronicus,1593 likeness,1,titusandronicus,1593 chains,1,titusandronicus,1593 came,1,titusandronicus,1593 stalks,1,titusandronicus,1593 Non,1,titusandronicus,1593 purus,1,titusandronicus,1593 furious,1,titusandronicus,1593 blazoning,1,titusandronicus,1593 freedom,1,titusandronicus,1593 inhuman,1,titusandronicus,1593 wishes',1,titusandronicus,1593 boar,1,titusandronicus,1593 something,1,titusandronicus,1593 stanch,1,titusandronicus,1593 sobs,1,titusandronicus,1593 limits,1,titusandronicus,1593 candidatus,1,titusandronicus,1593 Gentle,1,titusandronicus,1593 snakes,1,titusandronicus,1593 Performers,1,titusandronicus,1593 further,1,titusandronicus,1593 sumptuously,1,titusandronicus,1593 view,1,titusandronicus,1593 owners,1,titusandronicus,1593 Centaurs',1,titusandronicus,1593 deserve,1,titusandronicus,1593 wags,1,titusandronicus,1593 shamed,1,titusandronicus,1593 suns,1,titusandronicus,1593 fere,1,titusandronicus,1593 sheathed,1,titusandronicus,1593 sung,1,titusandronicus,1593 hottest,1,titusandronicus,1593 represent,1,titusandronicus,1593 forever,1,titusandronicus,1593 deeper,1,titusandronicus,1593 Get,1,titusandronicus,1593 indignity,1,titusandronicus,1593 prevail'd,1,titusandronicus,1593 intercepted,1,titusandronicus,1593 contempts,1,titusandronicus,1593 execrable,1,titusandronicus,1593 fleece,1,titusandronicus,1593 imprison'd,1,titusandronicus,1593 Happily,1,titusandronicus,1593 'twere,1,titusandronicus,1593 deceased,1,titusandronicus,1593 pry'd,1,titusandronicus,1593 Crown,1,titusandronicus,1593 bastard,1,titusandronicus,1593 broach,1,titusandronicus,1593 walk,1,titusandronicus,1593 saying,1,titusandronicus,1593 sprawl,1,titusandronicus,1593 virtuous,1,titusandronicus,1593 Kneel,1,titusandronicus,1593 Speechless,1,titusandronicus,1593 touched,1,titusandronicus,1593 touches,1,titusandronicus,1593 audis,1,titusandronicus,1593 Sung,1,titusandronicus,1593 deceit,1,titusandronicus,1593 chiefest,1,titusandronicus,1593 throne,1,titusandronicus,1593 anew,1,titusandronicus,1593 beasts,1,titusandronicus,1593 abused,1,titusandronicus,1593 yield,1,titusandronicus,1593 cleanly,1,titusandronicus,1593 halter,1,titusandronicus,1593 curtain'd,1,titusandronicus,1593 earnestly,1,titusandronicus,1593 braving,1,titusandronicus,1593 worth,1,titusandronicus,1593 branches,1,titusandronicus,1593 vaunter,1,titusandronicus,1593 nymphs,1,titusandronicus,1593 lesson,1,titusandronicus,1593 steps,1,titusandronicus,1593 Such,1,titusandronicus,1593 skill,1,titusandronicus,1593 confident,1,titusandronicus,1593 alphabet,1,titusandronicus,1593 lives',1,titusandronicus,1593 wofull'st,1,titusandronicus,1593 cedars,1,titusandronicus,1593 apparent,1,titusandronicus,1593 melting,1,titusandronicus,1593 where's,1,titusandronicus,1593 countenance,1,titusandronicus,1593 brides,1,titusandronicus,1593 tofore,1,titusandronicus,1593 sued,1,titusandronicus,1593 kindly,1,titusandronicus,1593 cloy'd,1,titusandronicus,1593 forthwith,1,titusandronicus,1593 Hymenaeus,1,titusandronicus,1593 'larums,1,titusandronicus,1593 disgrace,1,titusandronicus,1593 permit,1,titusandronicus,1593 deeply,1,titusandronicus,1593 firmly,1,titusandronicus,1593 necks,1,titusandronicus,1593 hunted,1,titusandronicus,1593 Dissemble,1,titusandronicus,1593 instruct,1,titusandronicus,1593 groans,1,titusandronicus,1593 Martem,1,titusandronicus,1593 Blushing,1,titusandronicus,1593 O'ercome,1,titusandronicus,1593 suck,1,titusandronicus,1593 ensigns,1,titusandronicus,1593 controller,1,titusandronicus,1593 betwixt,1,titusandronicus,1593 tattle,1,titusandronicus,1593 becomes,1,titusandronicus,1593 confronted,1,titusandronicus,1593 affect,1,titusandronicus,1593 amiss,1,titusandronicus,1593 woolly,1,titusandronicus,1593 reliquit,1,titusandronicus,1593 minion,1,titusandronicus,1593 coach,1,titusandronicus,1593 rear,1,titusandronicus,1593 offence,1,titusandronicus,1593 taught,1,titusandronicus,1593 Typhon's,1,titusandronicus,1593 barns,1,titusandronicus,1593 Virgo's,1,titusandronicus,1593 skins,1,titusandronicus,1593 redeem,1,titusandronicus,1593 rung,1,titusandronicus,1593 wrote,1,titusandronicus,1593 beseeming,1,titusandronicus,1593 intrude,1,titusandronicus,1593 cuique',1,titusandronicus,1593 danced,1,titusandronicus,1593 lingering,1,titusandronicus,1593 readiest,1,titusandronicus,1593 receives,1,titusandronicus,1593 Styx,1,titusandronicus,1593 conceit,1,titusandronicus,1593 brain,1,titusandronicus,1593 Successful,1,titusandronicus,1593 unkindly,1,titusandronicus,1593 monster,1,titusandronicus,1593 roots,1,titusandronicus,1593 compassion,1,titusandronicus,1593 rush'd,1,titusandronicus,1593 fellow,1,titusandronicus,1593 guarded,1,titusandronicus,1593 ways,1,titusandronicus,1593 Brew'd,1,titusandronicus,1593 gnawing,1,titusandronicus,1593 torturing,1,titusandronicus,1593 Officers,1,titusandronicus,1593 swoln,1,titusandronicus,1593 laden,1,titusandronicus,1593 Whereof,1,titusandronicus,1593 jaculis,1,titusandronicus,1593 civil,1,titusandronicus,1593 whenever,1,titusandronicus,1593 vehor,1,titusandronicus,1593 luxurious,1,titusandronicus,1593 Willing,1,titusandronicus,1593 Tigers,1,titusandronicus,1593 Aloud,1,titusandronicus,1593 quake,1,titusandronicus,1593 runs,1,titusandronicus,1593 Cause,1,titusandronicus,1593 loathed,1,titusandronicus,1593 envious,1,titusandronicus,1593 terms,1,titusandronicus,1593 ruminate,1,titusandronicus,1593 encounter,1,titusandronicus,1593 drought,1,titusandronicus,1593 affected,1,titusandronicus,1593 dearly,1,titusandronicus,1593 commit,1,titusandronicus,1593 Pardon,1,titusandronicus,1593 taper,1,titusandronicus,1593 stump,1,titusandronicus,1593 charming,1,titusandronicus,1593 Whilst,1,titusandronicus,1593 humble,1,titusandronicus,1593 Confederates,1,titusandronicus,1593 wreathed,1,titusandronicus,1593 sum,1,titusandronicus,1593 govern'd,1,titusandronicus,1593 Solon's,1,titusandronicus,1593 reverence,1,titusandronicus,1593 wreathen,1,titusandronicus,1593 Caucasus,1,titusandronicus,1593 ancestor,1,titusandronicus,1593 slavish,1,titusandronicus,1593 cease,1,titusandronicus,1593 bows,1,titusandronicus,1593 noblest,1,titusandronicus,1593 infinite,1,titusandronicus,1593 winded,1,titusandronicus,1593 cleave,1,titusandronicus,1593 Magni,1,titusandronicus,1593 Repose,1,titusandronicus,1593 swore,1,titusandronicus,1593 flourishing,1,titusandronicus,1593 malice,1,titusandronicus,1593 accept,1,titusandronicus,1593 brine,1,titusandronicus,1593 Bull,1,titusandronicus,1593 razors,1,titusandronicus,1593 brink,1,titusandronicus,1593 whisper,1,titusandronicus,1593 ancient,1,titusandronicus,1593 Drown,1,titusandronicus,1593 false,1,titusandronicus,1593 habited,1,titusandronicus,1593 rude,1,titusandronicus,1593 Princely,1,titusandronicus,1593 scrolls,1,titusandronicus,1593 wink,1,titusandronicus,1593 dagger's,1,titusandronicus,1593 applause,1,titusandronicus,1593 soldier,1,titusandronicus,1593 bauble,1,titusandronicus,1593 Dominator,1,titusandronicus,1593 shrink,1,titusandronicus,1593 tam,1,titusandronicus,1593 Filling,1,titusandronicus,1593 caves,1,titusandronicus,1593 Along,1,titusandronicus,1593 Stop,1,titusandronicus,1593 Cerberus,1,titusandronicus,1593 title,1,titusandronicus,1593 usurp,1,titusandronicus,1593 agreeing,1,titusandronicus,1593 knees,1,titusandronicus,1593 heaves,1,titusandronicus,1593 Please,1,titusandronicus,1593 obsequious,1,titusandronicus,1593 steal,1,titusandronicus,1593 edge,1,titusandronicus,1593 harmless,1,titusandronicus,1593 'For,1,titusandronicus,1593 mishaps,1,titusandronicus,1593 ruin,1,titusandronicus,1593 renew,1,titusandronicus,1593 transformed,1,titusandronicus,1593 wrongful,1,titusandronicus,1593 Cousin,1,titusandronicus,1593 witnesses,1,titusandronicus,1593 requests,1,titusandronicus,1593 tools,1,titusandronicus,1593 turned,1,titusandronicus,1593 anon,1,titusandronicus,1593 Cyclops',1,titusandronicus,1593 thrown,1,titusandronicus,1593 eagle,1,titusandronicus,1593 succeed,1,titusandronicus,1593 imperious,1,titusandronicus,1593 throws,1,titusandronicus,1593 devil's,1,titusandronicus,1593 northern,1,titusandronicus,1593 pierce,1,titusandronicus,1593 ambassador,1,titusandronicus,1593 beating,1,titusandronicus,1593 hatch,1,titusandronicus,1593 successantly,1,titusandronicus,1593 bidding,1,titusandronicus,1593 incense,1,titusandronicus,1593 Bury,1,titusandronicus,1593 sanguine,1,titusandronicus,1593 cunning,1,titusandronicus,1593 timeless,1,titusandronicus,1593 o'erflow,1,titusandronicus,1593 distress,1,titusandronicus,1593 wasp,1,titusandronicus,1593 stirr'd,1,titusandronicus,1593 steed,1,titusandronicus,1593 revel,1,titusandronicus,1593 ruled,1,titusandronicus,1593 wits,1,titusandronicus,1593 observe,1,titusandronicus,1593 Sempronius,1,titusandronicus,1593 boon,1,titusandronicus,1593 chastised,1,titusandronicus,1593 gramercy,1,titusandronicus,1593 party,1,titusandronicus,1593 unrelenting,1,titusandronicus,1593 digg'd,1,titusandronicus,1593 veiled,1,titusandronicus,1593 Follow,1,titusandronicus,1593 sceptre,1,titusandronicus,1593 tent,1,titusandronicus,1593 sympathy,1,titusandronicus,1593 Draw,1,titusandronicus,1593 scelera,1,titusandronicus,1593 fairest,1,titusandronicus,1593 goddess,1,titusandronicus,1593 Drag,1,titusandronicus,1593 prince's,1,titusandronicus,1593 Faith,1,titusandronicus,1593 contriver,1,titusandronicus,1593 conspirator,1,titusandronicus,1593 unadvised,1,titusandronicus,1593 tumult,1,titusandronicus,1593 bastardy,1,titusandronicus,1593 sauciness,1,titusandronicus,1593 chamber,1,titusandronicus,1593 stir,1,titusandronicus,1593 solicit,1,titusandronicus,1593 morning,1,titusandronicus,1593 manners,1,titusandronicus,1593 scelerisque,1,titusandronicus,1593 Takes,1,titusandronicus,1593 sequence,1,titusandronicus,1593 warded,1,titusandronicus,1593 enjoy'd,1,titusandronicus,1593 enchant,1,titusandronicus,1593 melancholy,1,titusandronicus,1593 Hold,1,titusandronicus,1593 hap,1,titusandronicus,1593 drinking,1,titusandronicus,1593 Priam's,1,titusandronicus,1593 enchanting,1,titusandronicus,1593 conquered,1,titusandronicus,1593 backs,1,titusandronicus,1593 Faint,1,titusandronicus,1593 planet,1,titusandronicus,1593 wanting,1,titusandronicus,1593 trimming,1,titusandronicus,1593 Struck,1,titusandronicus,1593 crack,1,titusandronicus,1593 sweeter,1,titusandronicus,1593 flowered,1,titusandronicus,1593 horror's,1,titusandronicus,1593 Belike,1,titusandronicus,1593 refuse,1,titusandronicus,1593 Progne,1,titusandronicus,1593 offend,1,titusandronicus,1593 Sends,1,titusandronicus,1593 hay,1,titusandronicus,1593 nefas,1,titusandronicus,1593 Stabs,1,titusandronicus,1593 sigh,1,titusandronicus,1593 triumpher,1,titusandronicus,1593 religious,1,titusandronicus,1593 resemble,1,titusandronicus,1593 granted,1,titusandronicus,1593 flattery,1,titusandronicus,1593 oratory,1,titusandronicus,1593 Ad,1,titusandronicus,1593 spoil,1,titusandronicus,1593 music,1,titusandronicus,1593 orators,1,titusandronicus,1593 meads,1,titusandronicus,1593 forge,1,titusandronicus,1593 mutiny,1,titusandronicus,1593 Hie,1,titusandronicus,1593 youthful,1,titusandronicus,1593 bow,1,titusandronicus,1593 Becomes,1,titusandronicus,1593 strangers,1,titusandronicus,1593 suffers,1,titusandronicus,1593 Treason,1,titusandronicus,1593 vigour,1,titusandronicus,1593 wash'd,1,titusandronicus,1593 Per,1,titusandronicus,1593 unnatural,1,titusandronicus,1593 Metamorphoses,1,titusandronicus,1593 deuce,1,titusandronicus,1593 sensibly,1,titusandronicus,1593 Dismiss,1,titusandronicus,1593 secretly,1,titusandronicus,1593 goodliest,1,titusandronicus,1593 perfume,1,titusandronicus,1593 urns,1,titusandronicus,1593 ladyship,1,titusandronicus,1593 treble,1,titusandronicus,1593 gentleness,1,titusandronicus,1593 kings,1,titusandronicus,1593 gossip,1,titusandronicus,1593 subscribe,1,titusandronicus,1593 denies,1,titusandronicus,1593 greatly,1,titusandronicus,1593 kept,1,titusandronicus,1593 Answer,1,titusandronicus,1593 creature,1,titusandronicus,1593 merited,1,titusandronicus,1593 star,1,titusandronicus,1593 denied,1,titusandronicus,1593 bubbling,1,titusandronicus,1593 joyless,1,titusandronicus,1593 pitiless,1,titusandronicus,1593 On,1,titusandronicus,1593 per,1,titusandronicus,1593 shines,1,titusandronicus,1593 Proclaim,1,titusandronicus,1593 force,1,titusandronicus,1593 paws,1,titusandronicus,1593 stag,1,titusandronicus,1593 Her,1,titusandronicus,1593 hid,1,titusandronicus,1593 wisdom,1,titusandronicus,1593 lesson'd,1,titusandronicus,1593 teat,1,titusandronicus,1593 buzz,1,titusandronicus,1593 ply,1,titusandronicus,1593 approve,1,titusandronicus,1593 feigned,1,titusandronicus,1593 notorious,1,titusandronicus,1593 Lucrece,1,titusandronicus,1593 bless,1,titusandronicus,1593 whole,1,titusandronicus,1593 fortune's,1,titusandronicus,1593 ambush,1,titusandronicus,1593 Approved,1,titusandronicus,1593 appoint,1,titusandronicus,1593 tribute,1,titusandronicus,1593 sacrificing,1,titusandronicus,1593 shipwreck,1,titusandronicus,1593 path,1,titusandronicus,1593 east,1,titusandronicus,1593 conqueror,1,titusandronicus,1593 despair,1,titusandronicus,1593 added,1,titusandronicus,1593 rolled,1,titusandronicus,1593 impregnable,1,titusandronicus,1593 adder,1,titusandronicus,1593 condemned,1,titusandronicus,1593 pie,1,titusandronicus,1593 Clubs,1,titusandronicus,1593 abhorred,1,titusandronicus,1593 troops,1,titusandronicus,1593 pig,1,titusandronicus,1593 Almost,1,titusandronicus,1593 step,1,titusandronicus,1593 temples,1,titusandronicus,1593 adulteress,1,titusandronicus,1593 madded,1,titusandronicus,1593 grandfather,1,titusandronicus,1593 glorious,1,titusandronicus,1593 nice,1,titusandronicus,1593 deluge,1,titusandronicus,1593 yourselves,1,titusandronicus,1593 cull'd,1,titusandronicus,1593 brawls,1,titusandronicus,1593 stinging,1,titusandronicus,1593 Patron,1,titusandronicus,1593 sire,1,titusandronicus,1593 groaning,1,titusandronicus,1593 begot,1,titusandronicus,1593 obey,1,titusandronicus,1593 corrupted,1,titusandronicus,1593 beheaded,1,titusandronicus,1593 lipp'd,1,titusandronicus,1593 sirs,1,titusandronicus,1593 anchor's,1,titusandronicus,1593 titles,1,titusandronicus,1593 fetter,1,titusandronicus,1593 intercept,1,titusandronicus,1593 sought,1,titusandronicus,1593 whore,1,titusandronicus,1593 bewet,1,titusandronicus,1593 dressed,1,titusandronicus,1593 dumps,1,titusandronicus,1593 liberality,1,titusandronicus,1593 bull,1,titusandronicus,1593 sorry,1,titusandronicus,1593 ween,1,titusandronicus,1593 week,1,titusandronicus,1593 dandle,1,titusandronicus,1593 proportion,1,titusandronicus,1593 nigh,1,titusandronicus,1593 hills,1,titusandronicus,1593 straw,1,titusandronicus,1593 remit,1,titusandronicus,1593 was't,1,titusandronicus,1593 metal,1,titusandronicus,1593 bush,1,titusandronicus,1593 sooner,1,titusandronicus,1593 tumble,1,titusandronicus,1593 Sith,1,titusandronicus,1593 difference,1,titusandronicus,1593 bell,1,titusandronicus,1593 whereat,1,titusandronicus,1593 Writing,1,titusandronicus,1593 got,1,titusandronicus,1593 kindness,1,titusandronicus,1593 immediately,1,titusandronicus,1593 car,1,titusandronicus,1593 saw'st,1,titusandronicus,1593 corpse,1,titusandronicus,1593 petition,1,titusandronicus,1593 ornament,1,titusandronicus,1593 desirous,1,titusandronicus,1593 Company,1,titusandronicus,1593 tricks,1,titusandronicus,1593 'tween,1,titusandronicus,1593 friends',1,titusandronicus,1593 Seest,1,titusandronicus,1593 dote,1,titusandronicus,1593 Grandsire,1,titusandronicus,1593 flouted,1,titusandronicus,1593 couch,1,titusandronicus,1593 devised,1,titusandronicus,1593 wean,1,titusandronicus,1593 somewhat,1,titusandronicus,1593 wear,1,titusandronicus,1593 Save,1,titusandronicus,1593 bent,1,titusandronicus,1593 parle,1,titusandronicus,1593 gall'd,1,titusandronicus,1593 disperse,1,titusandronicus,1593 Apollinem,1,titusandronicus,1593 Saint,1,titusandronicus,1593 grudges,1,titusandronicus,1593 exile,1,titusandronicus,1593 plough,1,titusandronicus,1593 meanest,1,titusandronicus,1593 Lascivious,1,titusandronicus,1593 Dies,1,titusandronicus,1593 twice,1,titusandronicus,1593 brinish,1,titusandronicus,1593 despise,1,titusandronicus,1593 extreme,1,titusandronicus,1593 tedious,1,titusandronicus,1593 ruinate,1,titusandronicus,1593 despite,1,titusandronicus,1593 nettles,1,titusandronicus,1593 Shaken,1,titusandronicus,1593 Ajax,1,titusandronicus,1593 amongst,1,titusandronicus,1593 Ye,1,titusandronicus,1593 preserve,1,titusandronicus,1593 bees,1,titusandronicus,1593 survey,1,titusandronicus,1593 longer,1,titusandronicus,1593 Meet,1,titusandronicus,1593 Whate'er,1,titusandronicus,1593 lurks,1,titusandronicus,1593 shifts,1,titusandronicus,1593 Hunters,1,titusandronicus,1593 pains,1,titusandronicus,1593 sink,1,titusandronicus,1593 gate,1,titusandronicus,1593 'Twas,1,titusandronicus,1593 stories,1,titusandronicus,1593 hourly,1,titusandronicus,1593 pitch,1,titusandronicus,1593 north,1,titusandronicus,1593 pared,1,titusandronicus,1593 hopeful,1,titusandronicus,1593 lately,1,titusandronicus,1593 Chief,1,titusandronicus,1593 chafed,1,titusandronicus,1593 beginning,1,titusandronicus,1593 Both,1,titusandronicus,1593 afoot,1,titusandronicus,1593 pillage,1,titusandronicus,1593 envy's,1,titusandronicus,1593 river,1,titusandronicus,1593 dogs,1,titusandronicus,1593 store,1,titusandronicus,1593 noted,1,titusandronicus,1593 entertain,1,titusandronicus,1593 Alcides,1,titusandronicus,1593 Single,1,titusandronicus,1593 story,1,titusandronicus,1593 breath,1,titusandronicus,1593 stay'd,1,titusandronicus,1593 Follows,1,titusandronicus,1593 eloquence,1,titusandronicus,1593 Cannot,1,titusandronicus,1593 promises,1,titusandronicus,1593 singled,1,titusandronicus,1593 keeping,1,titusandronicus,1593 blithe,1,titusandronicus,1593 tyrant,1,titusandronicus,1593 gift,1,titusandronicus,1593 satisfy,1,titusandronicus,1593 horning,1,titusandronicus,1593 excellent,1,titusandronicus,1593 aid,1,titusandronicus,1593 faster,1,titusandronicus,1593 repute,1,titusandronicus,1593 sheep,1,titusandronicus,1593 intruder,1,titusandronicus,1593 jewels,1,titusandronicus,1593 Advise,1,titusandronicus,1593 fetter'd,1,titusandronicus,1593 yoked,1,titusandronicus,1593 unsolicited,1,titusandronicus,1593 promontory,1,titusandronicus,1593 tawny,1,titusandronicus,1593 stoop,1,titusandronicus,1593 gain,1,titusandronicus,1593 Rend,1,titusandronicus,1593 succor,1,titusandronicus,1593 Advanced,1,titusandronicus,1593 laments,1,titusandronicus,1593 tongued,1,titusandronicus,1593 legs,1,titusandronicus,1593 yew,1,titusandronicus,1593 notes,1,titusandronicus,1593 Pass,1,titusandronicus,1593 ago,1,titusandronicus,1593 proud'st,1,titusandronicus,1593 quiver,1,titusandronicus,1593 unworthy,1,titusandronicus,1593 tragedy,1,titusandronicus,1593 describes,1,titusandronicus,1593 gilt,1,titusandronicus,1593 stony,1,titusandronicus,1593 dominator,1,titusandronicus,1593 Safe,1,titusandronicus,1593 worthily,1,titusandronicus,1593 engines,1,titusandronicus,1593 likely,1,titusandronicus,1593 pluck'd,1,titusandronicus,1593 willful,1,titusandronicus,1593 befriend,1,titusandronicus,1593 lent,1,titusandronicus,1593 sampler,1,titusandronicus,1593 Cocytus',1,titusandronicus,1593 Besides,1,titusandronicus,1593 continual,1,titusandronicus,1593 redress,1,titusandronicus,1593 boast,1,titusandronicus,1593 rainy,1,titusandronicus,1593 touch'd,1,titusandronicus,1593 spleenful,1,titusandronicus,1593 treats,1,titusandronicus,1593 Hyperion's,1,titusandronicus,1593 brethren's,1,titusandronicus,1593 turn'st,1,titusandronicus,1593 Rest,1,titusandronicus,1593 glistering,1,titusandronicus,1593 by'r,1,titusandronicus,1593 makest,1,titusandronicus,1593 ay,1,titusandronicus,1593 comforts,1,titusandronicus,1593 game,1,titusandronicus,1593 possess'd,1,titusandronicus,1593 slips,1,titusandronicus,1593 pierced,1,titusandronicus,1593 edified,1,titusandronicus,1593 ah,1,titusandronicus,1593 Pluto,1,titusandronicus,1593 curds,1,titusandronicus,1593 newly,1,titusandronicus,1593 stamped,1,titusandronicus,1593 onset,1,titusandronicus,1593 wench,1,titusandronicus,1593 displeased,1,titusandronicus,1593 slime,1,titusandronicus,1593 sheath,1,titusandronicus,1593 idiot,1,titusandronicus,1593 attending,1,titusandronicus,1593 Complots,1,titusandronicus,1593 committed,1,titusandronicus,1593 hostage,1,titusandronicus,1593 bodies,1,titusandronicus,1593 tragedies,1,titusandronicus,1593 varied,1,titusandronicus,1593 blackamoor,1,titusandronicus,1593 region,1,titusandronicus,1593 Tomb,1,titusandronicus,1593 moss,1,titusandronicus,1593 wrinkles,1,titusandronicus,1593 Reach,1,titusandronicus,1593 Troubled,1,titusandronicus,1593 Gallops,1,titusandronicus,1593 outrageous,1,titusandronicus,1593 thankful,1,titusandronicus,1593 straying,1,titusandronicus,1593 delicious,1,titusandronicus,1593 idle,1,titusandronicus,1593 account,1,titusandronicus,1593 sometime,1,titusandronicus,1593 infernal,1,titusandronicus,1593 Myself,1,titusandronicus,1593 look'st,1,titusandronicus,1593 cousin,1,titusandronicus,1593 carved,1,titusandronicus,1593 mightiness,1,titusandronicus,1593 train,1,titusandronicus,1593 loves,1,titusandronicus,1593 find'st,1,titusandronicus,1593 ink,1,titusandronicus,1593 challenged,1,titusandronicus,1593 loud,1,titusandronicus,1593 shrilly,1,titusandronicus,1593 lightly,1,titusandronicus,1593 grooms,1,titusandronicus,1593 Yea,1,titusandronicus,1593 lost,1,titusandronicus,1593 Yes,1,titusandronicus,1593 sheaf,1,titusandronicus,1593 speak'st,1,titusandronicus,1593 Thrust,1,titusandronicus,1593 zodiac,1,titusandronicus,1593 lest,1,titusandronicus,1593 effectual,1,titusandronicus,1593 dispose,1,titusandronicus,1593 knot,1,titusandronicus,1593 lose,1,titusandronicus,1593 quotes,1,titusandronicus,1593 beauteous,1,titusandronicus,1593 adventurous,1,titusandronicus,1593 greater,1,titusandronicus,1593 mischiefs,1,titusandronicus,1593 haps,1,titusandronicus,1593 outrages,1,titusandronicus,1593 show'd,1,titusandronicus,1593 forgot,1,titusandronicus,1593 scatter'd,1,titusandronicus,1593 uprise,1,titusandronicus,1593 acquaint,1,titusandronicus,1593 reads,1,titusandronicus,1593 pure,1,titusandronicus,1593 appease,1,titusandronicus,1593 loaf,1,titusandronicus,1593 hot,1,titusandronicus,1593 toad,1,titusandronicus,1593 briers,1,titusandronicus,1593 sun's,1,titusandronicus,1593 abandoned,1,titusandronicus,1593 Came,1,titusandronicus,1593 thrice,1,titusandronicus,1593 harm,1,titusandronicus,1593 spouts,1,titusandronicus,1593 killed,1,titusandronicus,1593 graves,1,titusandronicus,1593 complainer,1,titusandronicus,1593 hart,1,titusandronicus,1593 clime,1,titusandronicus,1593 Olympus',1,titusandronicus,1593 running,1,titusandronicus,1593 ornaments,1,titusandronicus,1593 consummate,1,titusandronicus,1593 fierce,1,titusandronicus,1593 swarth,1,titusandronicus,1593 park,1,titusandronicus,1593 induce,1,titusandronicus,1593 Brought,1,titusandronicus,1593 Seeking,1,titusandronicus,1593 Ran,1,titusandronicus,1593 peering,1,titusandronicus,1593 distil,1,titusandronicus,1593 fasten'd,1,titusandronicus,1593 pour'd,1,titusandronicus,1593 remember'd,1,titusandronicus,1593 controlment,1,titusandronicus,1593 hug,1,titusandronicus,1593 pull,1,titusandronicus,1593 frost,1,titusandronicus,1593 messenger,1,titusandronicus,1593 Barr'st,1,titusandronicus,1593 signify,1,titusandronicus,1593 blowse,1,titusandronicus,1593 fowl,1,titusandronicus,1593 shallow,1,titusandronicus,1593 Calm,1,titusandronicus,1593 nation,1,titusandronicus,1593 verses,1,titusandronicus,1593 Read,1,titusandronicus,1593 uncurls,1,titusandronicus,1593 'Let,1,titusandronicus,1593 glideth,1,titusandronicus,1593 interpret,1,titusandronicus,1593 strings,1,titusandronicus,1593 palliament,1,titusandronicus,1593 consume,1,titusandronicus,1593 reach,1,titusandronicus,1593 shut,1,titusandronicus,1593 draws,1,titusandronicus,1593 consult,1,titusandronicus,1593 commonweal's,1,titusandronicus,1593 sighing,1,titusandronicus,1593 suitors,1,titusandronicus,1593 forty,1,titusandronicus,1593 daintily,1,titusandronicus,1593 During,1,titusandronicus,1593 Inspire,1,titusandronicus,1593 younglings,1,titusandronicus,1593 wrapped,1,titusandronicus,1593 excuse,1,titusandronicus,1593 governor,1,titusandronicus,1593 Fury,1,titusandronicus,1593 open,1,titusandronicus,1593 constrain'd,1,titusandronicus,1593 She's,1,titusandronicus,1593 abjectly,1,titusandronicus,1593 oped,1,titusandronicus,1593 bathed,1,titusandronicus,1593 hammering,1,titusandronicus,1593 nightly,1,titusandronicus,1593 kingdoms,1,titusandronicus,1593 laurel,1,titusandronicus,1593 Tendering,1,titusandronicus,1593 Provide,1,titusandronicus,1593 pair,1,titusandronicus,1593 avenged,1,titusandronicus,1593 courts,1,titusandronicus,1593 nobility's,1,titusandronicus,1593 pain,1,titusandronicus,1593 Ruthful,1,titusandronicus,1593 heaviness,1,titusandronicus,1593 Plot,1,titusandronicus,1593 spit,1,titusandronicus,1593 wasted,1,titusandronicus,1593 plotted,1,titusandronicus,1593 soe'er,1,titusandronicus,1593 outrage,1,titusandronicus,1593 unsearch'd,1,titusandronicus,1593 Ascend,1,titusandronicus,1593 mention'd,1,titusandronicus,1593 mock,1,titusandronicus,1593 plotter,1,titusandronicus,1593 walked,1,titusandronicus,1593 scatter,1,titusandronicus,1593 shakes,1,titusandronicus,1593 devise,1,titusandronicus,1593 hate,1,titusandronicus,1593 waggoner,1,titusandronicus,1593 pack,1,titusandronicus,1593 aut,1,titusandronicus,1593 insatiate,1,titusandronicus,1593 Ransomless,1,titusandronicus,1593 proper,1,titusandronicus,1593 lovingly,1,titusandronicus,1593 faithful,1,titusandronicus,1593 fall'n,1,titusandronicus,1593 believest,1,titusandronicus,1593 food,1,titusandronicus,1593 palfreys,1,titusandronicus,1593 favors,1,titusandronicus,1593 testimony,1,titusandronicus,1593 creatures,1,titusandronicus,1593 prevailing,1,titusandronicus,1593 Hides,1,titusandronicus,1593 ass,1,titusandronicus,1593 unlucky,1,titusandronicus,1593 fond,1,titusandronicus,1593 rear'd,1,titusandronicus,1593 maiden,1,titusandronicus,1593 Fitted,1,titusandronicus,1593 Blood,1,titusandronicus,1593 drank,1,titusandronicus,1593 betide,1,titusandronicus,1593 secret,1,titusandronicus,1593 Hast,1,titusandronicus,1593 competitors,1,titusandronicus,1593 Arm,1,titusandronicus,1593 overborne,1,titusandronicus,1593 Youngling,1,titusandronicus,1593 Kind,1,titusandronicus,1593 defended,1,titusandronicus,1593 trick,1,titusandronicus,1593 boughs,1,titusandronicus,1593 bought,1,titusandronicus,1593 inquire,1,titusandronicus,1593 Among,1,titusandronicus,1593 'Stuprum,1,titusandronicus,1593 colour'd,1,titusandronicus,1593 fee,1,titusandronicus,1593 purchased,1,titusandronicus,1593 rave,1,titusandronicus,1593 smells,1,titusandronicus,1593 leer,1,titusandronicus,1593 defender,1,titusandronicus,1593 lurking,1,titusandronicus,1593 suffer'st,1,titusandronicus,1593 coffins,1,titusandronicus,1593 butcher'd,1,titusandronicus,1593 unrecuring,1,titusandronicus,1593 experiments,1,titusandronicus,1593 Content,1,titusandronicus,1593 nec,1,titusandronicus,1593 tragic,1,titusandronicus,1593 Stood,1,titusandronicus,1593 lunacy,1,titusandronicus,1593 broke,1,titusandronicus,1593 beams,1,titusandronicus,1593 guest,1,titusandronicus,1593 emperial,1,titusandronicus,1593 franticly,1,titusandronicus,1593 root,1,titusandronicus,1593 change,1,titusandronicus,1593 precedent,1,titusandronicus,1593 requites,1,titusandronicus,1593 lead,1,titusandronicus,1593 spoken,1,titusandronicus,1593 leaf,1,titusandronicus,1593 compact,1,titusandronicus,1593 march,1,titusandronicus,1593 consumed,1,titusandronicus,1593 Into,1,titusandronicus,1593 nobler,1,titusandronicus,1593 Sibyl's,1,titusandronicus,1593 Alive,1,titusandronicus,1593 fas,1,titusandronicus,1593 wheels,1,titusandronicus,1593 fat,1,titusandronicus,1593 molest,1,titusandronicus,1593 display,1,titusandronicus,1593 rays,1,titusandronicus,1593 fumble,1,titusandronicus,1593 lean,1,titusandronicus,1593 soaking,1,titusandronicus,1593 Cimmerian,1,titusandronicus,1593 raze,1,titusandronicus,1593 proclamations,1,titusandronicus,1593 frozen,1,titusandronicus,1593 effected,1,titusandronicus,1593 securely,1,titusandronicus,1593 Become,1,titusandronicus,1593 suck'dst,1,titusandronicus,1593 castle,1,titusandronicus,1593 tarry,1,titusandronicus,1593 overshine,1,titusandronicus,1593 swallowing,1,titusandronicus,1593 embracement,1,titusandronicus,1593 report,1,titusandronicus,1593 carrier,1,titusandronicus,1593 tokens,1,titusandronicus,1593 said'st,1,titusandronicus,1593 Canst,1,titusandronicus,1593 shouldst,1,titusandronicus,1593 Gnawing,1,titusandronicus,1593 breathed,1,titusandronicus,1593 Laertes',1,titusandronicus,1593 broad,1,titusandronicus,1593 build,1,titusandronicus,1593 express'd,1,titusandronicus,1593 Pattern'd,1,titusandronicus,1593 Tam,1,titusandronicus,1593 Brothers,1,titusandronicus,1593 nourish,1,titusandronicus,1593 Better,1,titusandronicus,1593 hermits,1,titusandronicus,1593 Half,1,titusandronicus,1593 nose,1,titusandronicus,1593 martyr,1,titusandronicus,1593 envy,1,titusandronicus,1593 Venus,1,titusandronicus,1593 craftier,1,titusandronicus,1593 'Zounds,1,titusandronicus,1593 seizeth,1,titusandronicus,1593 Pyramus,1,titusandronicus,1593 trenches,1,titusandronicus,1593 fraught,1,titusandronicus,1593 wonder,1,titusandronicus,1593 obscure,1,titusandronicus,1593 adorest,1,titusandronicus,1593 Vengeance,1,titusandronicus,1593 languor,1,titusandronicus,1593 Sicily,1,titusandronicus,1593 holp'st,1,titusandronicus,1593 mistletoe,1,titusandronicus,1593 beats,1,titusandronicus,1593 gently,1,titusandronicus,1593 glued,1,titusandronicus,1593 signifies,1,titusandronicus,1593 giveth,1,titusandronicus,1593 circle,1,titusandronicus,1593 Warrants,1,titusandronicus,1593 sprung,1,titusandronicus,1593 lonely,1,titusandronicus,1593 Nurse's,1,titusandronicus,1593 indifferently,1,titusandronicus,1593 pasties,1,titusandronicus,1593 grammar,1,titusandronicus,1593 Sooner,1,titusandronicus,1593 infancy,1,titusandronicus,1593 rash,1,titusandronicus,1593 foemen's,1,titusandronicus,1593 bears,1,titusandronicus,1593 tigers,1,titusandronicus,1593 drunkard,1,titusandronicus,1593 bravely,1,titusandronicus,1593 faint,1,titusandronicus,1593 favorers,1,titusandronicus,1593 Alarbus',1,titusandronicus,1593 unfrequented,1,titusandronicus,1593 bundle,1,titusandronicus,1593 year,1,titusandronicus,1593 castaway,1,titusandronicus,1593 Citing,1,titusandronicus,1593 'An,1,titusandronicus,1593 Uncouple,1,titusandronicus,1593 chaps,1,titusandronicus,1593 dangers,1,titusandronicus,1593 mock'd,1,titusandronicus,1593 wandering,1,titusandronicus,1593 misbelieving,1,titusandronicus,1593 Clear,1,titusandronicus,1593 substance,1,titusandronicus,1593 annoy,1,titusandronicus,1593 Court,1,titusandronicus,1593 Sir,1,titusandronicus,1593 sustenance,1,titusandronicus,1593 basket,1,titusandronicus,1593 morrows,1,titusandronicus,1593 quickly,1,titusandronicus,1593 garden,1,titusandronicus,1593 befriended,1,titusandronicus,1593 arise,1,titusandronicus,1593 begging,1,titusandronicus,1593 you'll,1,titusandronicus,1593 Lose,1,titusandronicus,1593 adopted,1,titusandronicus,1593 unhappy,1,titusandronicus,1593 uprightness,1,titusandronicus,1593 evermore,1,titusandronicus,1593 Kissing,1,titusandronicus,1593 uproar,1,titusandronicus,1593 swallows,1,titusandronicus,1593 overshades,1,titusandronicus,1593 wonder'd,1,titusandronicus,1593 Will't,1,titusandronicus,1593 chant,1,titusandronicus,1593 Terras,1,titusandronicus,1593 injustice,1,titusandronicus,1593 Inhuman,1,titusandronicus,1593 tutor,1,titusandronicus,1593 Dost,1,titusandronicus,1593 groves,1,titusandronicus,1593 compassionate,1,titusandronicus,1593 question,1,titusandronicus,1593 recount,1,titusandronicus,1593 mourn,1,titusandronicus,1593 ravens,1,titusandronicus,1593 discontent,1,titusandronicus,1593 tempestuous,1,titusandronicus,1593 spurn,1,titusandronicus,1593 scath,1,titusandronicus,1593 pretend,1,titusandronicus,1593 admits,1,titusandronicus,1593 strife,1,titusandronicus,1593 People,1,titusandronicus,1593 lodge,1,titusandronicus,1593 doors,1,titusandronicus,1593 mortal,1,titusandronicus,1593 towards,1,titusandronicus,1593 obscurity,1,titusandronicus,1593 mill,1,titusandronicus,1593 chariots,1,titusandronicus,1593 mile,1,titusandronicus,1593 mild,1,titusandronicus,1593 Drums,1,titusandronicus,1593 nod,1,titusandronicus,1593 gleeful,1,titusandronicus,1593 Hector's,1,titusandronicus,1593 satisfaction,1,titusandronicus,1593 prize,1,titusandronicus,1593 mightst,1,titusandronicus,1593 beautify,1,titusandronicus,1593 lioness,1,titusandronicus,1593 Dishonour'd,1,titusandronicus,1593 valley,1,titusandronicus,1593 escape,1,titusandronicus,1593 Sufficeth,1,titusandronicus,1593 AEneas,1,titusandronicus,1593 mildly,1,titusandronicus,1593 already,1,titusandronicus,1593 mesh'd,1,titusandronicus,1593 hissing,1,titusandronicus,1593 plebs,1,titusandronicus,1593 archer,1,titusandronicus,1593 nursed,1,titusandronicus,1593 eget,1,titusandronicus,1593 successfully,1,titusandronicus,1593 third's,1,titusandronicus,1593 Uncle,1,titusandronicus,1593 'gainst,1,titusandronicus,1593 Could,1,titusandronicus,1593 Father,1,titusandronicus,1593 shrubs,1,titusandronicus,1593 tribunal,1,titusandronicus,1593 uncouth,1,titusandronicus,1593 remunerate,1,titusandronicus,1593 anchorage,1,titusandronicus,1593 dream,1,titusandronicus,1593 coward,1,titusandronicus,1593 'And,1,titusandronicus,1593 thick,1,titusandronicus,1593 afflicted,1,titusandronicus,1593 blot,1,titusandronicus,1593 devourers,1,titusandronicus,1593 thrash,1,titusandronicus,1593 jading,1,titusandronicus,1593 quench,1,titusandronicus,1593 Thee,1,titusandronicus,1593 pastimes,1,titusandronicus,1593 ungentle,1,titusandronicus,1593 ripen,1,titusandronicus,1593 infants,1,titusandronicus,1593 revengeful,1,titusandronicus,1593 flatter,1,titusandronicus,1593 brains,1,titusandronicus,1593 miry,1,titusandronicus,1593 starved,1,titusandronicus,1593 egal,1,titusandronicus,1593 craves,1,titusandronicus,1593 greatest,1,titusandronicus,1593 mournful,1,titusandronicus,1593 Sly,1,titusandronicus,1593 ruffle,1,titusandronicus,1593 slaughterman,1,titusandronicus,1593 special,1,titusandronicus,1593 nip,1,titusandronicus,1593 dissembled,1,titusandronicus,1593 miss,1,titusandronicus,1593 Captives,1,titusandronicus,1593 need,1,titusandronicus,1593 mountain,1,titusandronicus,1593 fish,1,titusandronicus,1593 Eating,1,titusandronicus,1593 free,1,titusandronicus,1593 search,1,titusandronicus,1593 oven,1,titusandronicus,1593 cozen'd,1,titusandronicus,1593 Buz,1,titusandronicus,1593 waxing,1,titusandronicus,1593 favor'd,1,titusandronicus,1593 number,1,titusandronicus,1593 worthless,1,titusandronicus,1593 apart,1,titusandronicus,1593 doubted,1,titusandronicus,1593 libelling,1,titusandronicus,1593 arcu,1,titusandronicus,1593 downwards,1,titusandronicus,1593 ceremonies,1,titusandronicus,1593 impiety,1,titusandronicus,1593 breeders,1,titusandronicus,1593 disguised,1,titusandronicus,1593 Horns,1,titusandronicus,1593 mistress',1,titusandronicus,1593 Perhaps,1,titusandronicus,1593 living,1,titusandronicus,1593 ones,1,titusandronicus,1593 Hautboys,1,titusandronicus,1593 thunder'st,1,titusandronicus,1593 bear'st,1,titusandronicus,1593 Lending,1,titusandronicus,1593 Andronicus',1,titusandronicus,1593 fray,1,titusandronicus,1593 headlong,1,titusandronicus,1593 trembling,1,titusandronicus,1593 taste,1,titusandronicus,1593 stained,1,titusandronicus,1593 poli,1,titusandronicus,1593 suspicion,1,titusandronicus,1593 passage,1,titusandronicus,1593 opinion,1,titusandronicus,1593 disturb'd,1,titusandronicus,1593 enacts,1,titusandronicus,1593 sting,1,titusandronicus,1593 stint,1,titusandronicus,1593 contemplation,1,titusandronicus,1593 knife's,1,titusandronicus,1593 substances,1,titusandronicus,1593 stale,1,titusandronicus,1593 salt,1,titusandronicus,1593 neck,1,titusandronicus,1593 abate,1,titusandronicus,1593 purchase,1,titusandronicus,1593 pomp,1,titusandronicus,1593 experience,1,titusandronicus,1593 stamp,1,titusandronicus,1593 climbeth,1,titusandronicus,1593 throb,1,titusandronicus,1593 diadem,1,titusandronicus,1593 mildest,1,titusandronicus,1593 Lucius',1,titusandronicus,1593 relieves,1,titusandronicus,1593 herbs,1,titusandronicus,1593 fratrum,1,titusandronicus,1593 Ravish,1,titusandronicus,1593 Weke,1,titusandronicus,1593 Despiteful,1,titusandronicus,1593 detestable,1,titusandronicus,1593 only,1,titusandronicus,1593 youngest,1,titusandronicus,1593 curs,1,titusandronicus,1593 Actaeon's,1,titusandronicus,1593 Sad,1,titusandronicus,1593 hears,1,titusandronicus,1593 gad,1,titusandronicus,1593 welfare,1,titusandronicus,1593 upright,1,titusandronicus,1593 haughty,1,titusandronicus,1593 comfortless,1,titusandronicus,1593 banish'd,1,titusandronicus,1593 tractable,1,titusandronicus,1593 bandy,1,titusandronicus,1593 bloodless,1,titusandronicus,1593 meaner,1,titusandronicus,1593 reprehending,1,titusandronicus,1593 stabs,1,titusandronicus,1593 closet,1,titusandronicus,1593 Dead,1,titusandronicus,1593 Beheld,1,titusandronicus,1593 dawning,1,titusandronicus,1593 Taurus',1,titusandronicus,1593 closed,1,titusandronicus,1593 Dear,1,titusandronicus,1593 prodigies,1,titusandronicus,1593 Astraea,1,titusandronicus,1593 cuts,1,titusandronicus,1593 handless,1,titusandronicus,1593 obsequies,1,titusandronicus,1593 AEtna,1,titusandronicus,1593 flight,1,titusandronicus,1593 standing,1,titusandronicus,1593 vouch,1,titusandronicus,1593 o'erreach,1,titusandronicus,1593 guileful,1,titusandronicus,1593 remains,1,titusandronicus,1593 integrity,1,titusandronicus,1593 senate's,1,titusandronicus,1593 mistership,1,titusandronicus,1593 decrees,1,titusandronicus,1593 champion,1,titusandronicus,1593 Thus,1,titusandronicus,1593 scarr'd,1,titusandronicus,1593 decreed,1,titusandronicus,1593 Palace,1,titusandronicus,1593 accomplish,1,titusandronicus,1593 wan,1,titusandronicus,1593 earnest,1,titusandronicus,1593 believe,1,titusandronicus,1593 spacious,1,titusandronicus,1593 sware,1,titusandronicus,1593 poet,1,titusandronicus,1593 able,1,titusandronicus,1593 tuned,1,titusandronicus,1593 Worthy,1,titusandronicus,1593 Tamora's,1,titusandronicus,1593 receive,1,titusandronicus,1593 commanded,1,titusandronicus,1593 trusty,1,titusandronicus,1593 begg'st,1,titusandronicus,1593 nuptial,1,titusandronicus,1593 hover,1,titusandronicus,1593 intent,1,titusandronicus,1593 print,1,titusandronicus,1593 Forced,1,titusandronicus,1593 rite,1,titusandronicus,1593 bleed,1,titusandronicus,1593 wood,1,titusandronicus,1593 assure,1,titusandronicus,1593 Expecting,1,titusandronicus,1593 associate,1,titusandronicus,1593 Extremity,1,titusandronicus,1593 saith,1,titusandronicus,1593 wanton,1,titusandronicus,1593 Mauri,1,titusandronicus,1593 bereft,1,titusandronicus,1593 ends,1,titusandronicus,1593 Knowing,1,titusandronicus,1593 admitted,1,titusandronicus,1593 Princes,1,titusandronicus,1593 price,1,titusandronicus,1593 coming,1,titusandronicus,1593 owl,1,titusandronicus,1593 Beg,1,titusandronicus,1593 forfend,1,titusandronicus,1593 exclaims,1,titusandronicus,1593 wheel,1,titusandronicus,1593 witted,1,titusandronicus,1593 whirling,1,titusandronicus,1593 popish,1,titusandronicus,1593 threats,1,titusandronicus,1593 lullaby,1,titusandronicus,1593 flourish'd,1,titusandronicus,1593 aspen,1,titusandronicus,1593 rosed,1,titusandronicus,1593 enforced,1,titusandronicus,1593 swan's,1,titusandronicus,1593 curses,1,titusandronicus,1593 salutes,1,titusandronicus,1593 robb'd,1,titusandronicus,1593 discover'd,1,titusandronicus,1593 mightily,1,titusandronicus,1593 Shalt,1,titusandronicus,1593 fact,1,titusandronicus,1593 Jovem,1,titusandronicus,1593 prompt,1,titusandronicus,1593 competitor,1,titusandronicus,1593 agree,1,titusandronicus,1593 emperial's,1,titusandronicus,1593 vengeful,1,titusandronicus,1593 plebeians,1,titusandronicus,1593 oblivion,1,titusandronicus,1593 Straight,1,titusandronicus,1593 joints,1,titusandronicus,1593 watery,1,titusandronicus,1593 Heaven,1,titusandronicus,1593 faced,1,titusandronicus,1593 rotted,1,titusandronicus,1593 marry,1,titusandronicus,1593 charges,1,titusandronicus,1593 earthly,1,titusandronicus,1593 Hail,1,titusandronicus,1593 poison,1,titusandronicus,1593 weke,1,titusandronicus,1593 keeper's,1,titusandronicus,1593 size,1,titusandronicus,1593 speedier,1,titusandronicus,1593 lute,1,titusandronicus,1593 nets,1,titusandronicus,1593 compass,1,titusandronicus,1593 bitterness,1,titusandronicus,1593 Ovid's,1,titusandronicus,1593 rail,1,titusandronicus,1593 accit'd,1,titusandronicus,1593 nest,1,titusandronicus,1593 determined,1,titusandronicus,1593 Amongst,1,titusandronicus,1593 Styga,1,titusandronicus,1593 flash,1,titusandronicus,1593 marble,1,titusandronicus,1593 hundred,1,titusandronicus,1593 discontents,1,titusandronicus,1593 decipher'd,1,titusandronicus,1593 Noble,1,titusandronicus,1593 file,1,titusandronicus,1593 surance,1,titusandronicus,1593 glad,1,titusandronicus,1593 grass,1,titusandronicus,1593 concealed,1,titusandronicus,1593 dispatch'd,1,titusandronicus,1593 vomit,1,titusandronicus,1593 lustful,1,titusandronicus,1593 dreary,1,titusandronicus,1593 Swear,1,titusandronicus,1593 durst,1,titusandronicus,1593 lead'st,1,titusandronicus,1593 massacres,1,titusandronicus,1593 covered,1,titusandronicus,1593 Brother,1,titusandronicus,1593 delays,1,titusandronicus,1593 meadows,1,titusandronicus,1593 Acheron,1,titusandronicus,1593 fog,1,titusandronicus,1593 cloud,1,titusandronicus,1593 distract,1,titusandronicus,1593 tenders,1,titusandronicus,1593 Hadst,1,titusandronicus,1593 Somewhither,1,titusandronicus,1593 venereal,1,titusandronicus,1593 lasting,1,titusandronicus,1593 churl,1,titusandronicus,1593 surnamed,1,titusandronicus,1593 gratulate,1,titusandronicus,1593 methinks,1,titusandronicus,1593 wreaks,1,titusandronicus,1593 Stabbing,1,titusandronicus,1593 three,1,titusandronicus,1593 scorns,1,titusandronicus,1593 Rises,1,titusandronicus,1593 worn,1,titusandronicus,1593 discover,1,titusandronicus,1593 ecstasies,1,titusandronicus,1593 cattle,1,titusandronicus,1593 righteous,1,titusandronicus,1593 threw,1,titusandronicus,1593 thunder's,1,titusandronicus,1593 wore,1,titusandronicus,1593 dancing,1,titusandronicus,1593 unjust,1,titusandronicus,1593 Sorrow,1,titusandronicus,1593 Mark,1,titusandronicus,1593 fix,1,titusandronicus,1593 issuing,1,titusandronicus,1593 perfect,1,titusandronicus,1593 Seizing,1,titusandronicus,1593 wots,1,titusandronicus,1593 rich,1,titusandronicus,1593 Boy,1,titusandronicus,1593 handmaid,1,titusandronicus,1593 horn,1,titusandronicus,1593 Beats,1,titusandronicus,1593 incorporate,1,titusandronicus,1593 married,1,titusandronicus,1593 arm's,1,titusandronicus,1593 vides,1,titusandronicus,1593 minded,1,titusandronicus,1593 lordship,1,titusandronicus,1593 bare,1,titusandronicus,1593 opened,1,titusandronicus,1593 ta'en,1,titusandronicus,1593 Flattering,1,titusandronicus,1593 surge,1,titusandronicus,1593 bite,1,titusandronicus,1593 thereat,1,titusandronicus,1593 kill'st,1,titusandronicus,1593 wealth,1,titusandronicus,1593 depart,1,titusandronicus,1593 Reveal,1,titusandronicus,1593 lived,1,titusandronicus,1593 whither,1,titusandronicus,1593 Pluto's,1,titusandronicus,1593 watch'd,1,titusandronicus,1593 Foul,1,titusandronicus,1593 gilded,1,titusandronicus,1593 bird,1,titusandronicus,1593 reproach,1,titusandronicus,1593 breeder,1,titusandronicus,1593 strikes,1,titusandronicus,1593 public,1,titusandronicus,1593 deflowered,1,titusandronicus,1593 ANDRONICI,1,titusandronicus,1593 Cut,1,titusandronicus,1593 Kill'd,1,titusandronicus,1593 bane,1,titusandronicus,1593 appointed,1,titusandronicus,1593 gentleman,1,titusandronicus,1593 Environed,1,titusandronicus,1593 will't,1,titusandronicus,1593 vitae,1,titusandronicus,1593 bounds,1,titusandronicus,1593 rising,1,titusandronicus,1593 secrets,1,titusandronicus,1593 prefer,1,titusandronicus,1593 Enceladus,1,titusandronicus,1593 powder,1,titusandronicus,1593 'Suum,1,titusandronicus,1593 spousal,1,titusandronicus,1593 drinks,1,titusandronicus,1593 author,1,titusandronicus,1593 soul's,1,titusandronicus,1593 ally,1,titusandronicus,1593 ecstasy,1,titusandronicus,1593 buzzing,1,titusandronicus,1593 lap,1,titusandronicus,1593 officious,1,titusandronicus,1593 Listen,1,titusandronicus,1593 dazzle,1,titusandronicus,1593 'ticed,1,titusandronicus,1593 arm'd,1,titusandronicus,1593 Scatter'd,1,titusandronicus,1593 Priam,1,titusandronicus,1593 dreads,1,titusandronicus,1593 whatsoe'er,1,titusandronicus,1593 poetry,1,titusandronicus,1593 stroke,1,titusandronicus,1593 intolerable,1,titusandronicus,1593 Rather,1,titusandronicus,1593 alms,1,titusandronicus,1593 greets,1,titusandronicus,1593 Chosen,1,titusandronicus,1593 wreakful,1,titusandronicus,1593 pledge,1,titusandronicus,1593 holds,1,titusandronicus,1593 shore,1,titusandronicus,1593 swears,1,titusandronicus,1593 quit,1,titusandronicus,1593 manfully,1,titusandronicus,1593 short,1,titusandronicus,1593 clean,1,titusandronicus,1593 waited,1,titusandronicus,1593 firmament,1,titusandronicus,1593 stand'st,1,titusandronicus,1593 unknit,1,titusandronicus,1593 dishes,1,titusandronicus,1593 Lives,1,titusandronicus,1593 effectually,1,titusandronicus,1593 gaping,1,titusandronicus,1593 honest,1,titusandronicus,1593 miller,1,titusandronicus,1593 revolt,1,titusandronicus,1593 Helping,1,titusandronicus,1593 clubs,1,titusandronicus,1593 circling,1,titusandronicus,1593 forsooth,1,titusandronicus,1593 monastery,1,titusandronicus,1593 Bleeding,1,titusandronicus,1593 commonwealth,1,titusandronicus,1593 grudge,1,titusandronicus,1593 feeding,1,titusandronicus,1593 resolution,1,titusandronicus,1593 virtues,1,titusandronicus,1593 Tully's,1,titusandronicus,1593 undertook,1,titusandronicus,1593 counsels,1,titusandronicus,1593 building,1,titusandronicus,1593 embrewed,1,titusandronicus,1593 Unfurnish'd,1,titusandronicus,1593 notwithstanding,1,titusandronicus,1593 fitted,1,titusandronicus,1593 convenient,1,titusandronicus,1593 Ingrateful,1,titusandronicus,1593 Holloa,1,titusandronicus,1593 Brave,1,titusandronicus,1593 surer,1,titusandronicus,1593 Gramercy,1,titusandronicus,1593 seat,1,titusandronicus,1593 interest,1,titusandronicus,1593 Causeless,1,titusandronicus,1593 disturbers,1,titusandronicus,1593 cheerful,1,titusandronicus,1593 Trot,1,titusandronicus,1593 Prometheus,1,titusandronicus,1593 cook,1,titusandronicus,1593 bodes,1,titusandronicus,1593 bachelor,1,titusandronicus,1593 low,1,titusandronicus,1593 eyed,1,titusandronicus,1593 sweat,1,titusandronicus,1593 aloof,1,titusandronicus,1593 trophies,1,titusandronicus,1593 delightful,1,titusandronicus,1593 adorn,1,titusandronicus,1593 captain,1,titusandronicus,1593 kingdom,1,titusandronicus,1593 needful,1,titusandronicus,1593 baby,1,titusandronicus,1593 offspring,1,titusandronicus,1593 pronounced,1,titusandronicus,1593 gnats,1,titusandronicus,1593 seek,1,titusandronicus,1593 fights,1,titusandronicus,1593 Unmannerly,1,titusandronicus,1593 feeling,1,titusandronicus,1593 confederates,1,titusandronicus,1593 skill'd,1,titusandronicus,1593 cousins,1,titusandronicus,1593 auditory,1,titusandronicus,1593 supposed,1,titusandronicus,1593 sports,1,titusandronicus,1593 cow,1,titusandronicus,1593 News,1,titusandronicus,1593 Ne'er,1,titusandronicus,1593 camest,1,titusandronicus,1593 courtesy,1,titusandronicus,1593 Empress,1,titusandronicus,1593 Cometh,1,titusandronicus,1593 Nilus,1,titusandronicus,1593 scribe,1,titusandronicus,1593 battle,1,titusandronicus,1593 debated,1,titusandronicus,1593 Believe,1,titusandronicus,1593 mix'd,1,titusandronicus,1593 crest,1,titusandronicus,1593 berries,1,titusandronicus,1593 Confer,1,titusandronicus,1593 christen,1,titusandronicus,1593 suspects,1,titusandronicus,1593 Dido,1,titusandronicus,1593 traitor,1,titusandronicus,1593 Saturninus',1,titusandronicus,1593 espoused,1,titusandronicus,1593 chequer'd,1,titusandronicus,1593 Pray,1,titusandronicus,1593 Sinon,1,titusandronicus,1593 lightens,1,titusandronicus,1593 Gentlemen,1,titusandronicus,1593 changing,1,titusandronicus,1593 increase,1,titusandronicus,1593 usage,1,titusandronicus,1593 cord,1,titusandronicus,1593 whate'er,1,titusandronicus,1593 heavenly,1,titusandronicus,1593 He'll,1,titusandronicus,1593 hostages,1,titusandronicus,1593 understands,1,titusandronicus,1593 loyalty,1,titusandronicus,1593 nights,1,titusandronicus,1593 heels,1,titusandronicus,1593 therein,1,titusandronicus,1593 wretches,1,titusandronicus,1593 million,1,titusandronicus,1593 tiring,1,titusandronicus,1593 goat,1,titusandronicus,1593 hours,1,titusandronicus,1593 slender,1,titusandronicus,1593 Aries,1,titusandronicus,1593 bait,1,titusandronicus,1593 Reflect,1,titusandronicus,1593 countrymen,1,titusandronicus,1593 tied,1,titusandronicus,1593 port,1,titusandronicus,1593 Send,1,titusandronicus,1593 extremes,1,titusandronicus,1593 prayer,1,titusandronicus,1593 lovers,1,titusandronicus,1593 beheld,1,titusandronicus,1593 blushing,1,titusandronicus,1593 Trim,1,titusandronicus,1593 gusts,1,titusandronicus,1593 gibbet,1,titusandronicus,1593 ravenous,1,titusandronicus,1593 Sent,1,titusandronicus,1593 'Old,1,titusandronicus,1593 floods,1,titusandronicus,1593 tide,1,titusandronicus,1593 vulture,1,titusandronicus,1593 post,1,titusandronicus,1593 Cuts,1,titusandronicus,1593 commiseration,1,titusandronicus,1593 folded,1,titusandronicus,1593 grieves,1,titusandronicus,1593 brightly,1,titusandronicus,1593 ordain'd,1,titusandronicus,1593 bade,1,titusandronicus,1593 betrothed,1,titusandronicus,1593 grieved,1,titusandronicus,1593 Alarbus,1,titusandronicus,1593 Cursed,1,titusandronicus,1593 Feast,1,titusandronicus,1593 regards,1,titusandronicus,1593 barren,1,titusandronicus,1593 reputes,1,titusandronicus,1593 countryman,1,titusandronicus,1593 Phoebe,1,titusandronicus,1593 match,1,titusandronicus,1593 Lastly,1,titusandronicus,1593 gloze,1,titusandronicus,1593 passionate,1,titusandronicus,1593 protest,1,titusandronicus,1593 purpose,1,titusandronicus,1593 aright,1,titusandronicus,1593 March,1,titusandronicus,1593 devoid,1,titusandronicus,1593 safer,1,titusandronicus,1593 couple,1,titusandronicus,1593 codding,1,titusandronicus,1593 detect,1,titusandronicus,1593 coin,1,titusandronicus,1593 chances,1,titusandronicus,1593 coil,1,titusandronicus,1593 chanced,1,titusandronicus,1593 lie,1,titusandronicus,1593 Accuse,1,titusandronicus,1593 sequester'd,1,titusandronicus,1593 until,1,titusandronicus,1593 parcel,1,titusandronicus,1593 footman,1,titusandronicus,1593 laws,1,titusandronicus,1593 credulous,1,titusandronicus,1593 conduit,1,titusandronicus,1593 choke,1,titusandronicus,1593 Nothing,1,titusandronicus,1593 effects,1,titusandronicus,1593 clearness,1,titusandronicus,1593 shive,1,titusandronicus,1593 divining,1,titusandronicus,1593 batter'd,1,titusandronicus,1593 Herself,1,titusandronicus,1593 honesty,1,titusandronicus,1593 petty,1,titusandronicus,1593 map,1,titusandronicus,1593 Knighted,1,titusandronicus,1593 clouds,1,titusandronicus,1593 confound,1,titusandronicus,1593 fiends,1,titusandronicus,1593 Countless,1,titusandronicus,1593 barr'd,1,titusandronicus,1593 betroth'd,1,titusandronicus,1593 VALENTINE,1,titusandronicus,1593 nourish'd,1,titusandronicus,1593 successful,1,titusandronicus,1593 lordships,1,titusandronicus,1593 Gave,1,titusandronicus,1593 However,1,titusandronicus,1593 balance,1,titusandronicus,1593 conduct,1,titusandronicus,1593 crevice,1,titusandronicus,1593 Replying,1,titusandronicus,1593 rapier's,1,titusandronicus,1593 gallant'st,1,titusandronicus,1593 brabble,1,titusandronicus,1593 doing,1,titusandronicus,1593 caterwauling,1,titusandronicus,1593 bonjour,1,titusandronicus,1593 Another,1,titusandronicus,1593 wouldest,1,titusandronicus,1593 Saucy,1,titusandronicus,1593 funerals,1,titusandronicus,1593 remember,1,titusandronicus,1593 chosen,1,titusandronicus,1593 lofty,1,titusandronicus,1593 Oppose,1,titusandronicus,1593 treacherous,1,titusandronicus,1593 disdaineth,1,titusandronicus,1593 mightful,1,titusandronicus,1593 maker,1,titusandronicus,1593 glory,1,titusandronicus,1593 readiness,1,titusandronicus,1593 cheater,1,titusandronicus,1593 meeting,1,titusandronicus,1593 sovereign,1,titusandronicus,1593 ruinous,1,titusandronicus,1593 evils,1,titusandronicus,1593 street,1,titusandronicus,1593 determine,1,titusandronicus,1593 Limbo,1,titusandronicus,1593 digress,1,titusandronicus,1593 'Vengeance,1,titusandronicus,1593 cinders,1,titusandronicus,1593 supplant,1,titusandronicus,1593 burnt,1,titusandronicus,1593 whit,1,titusandronicus,1593 pleasant,1,titusandronicus,1593 merciful,1,titusandronicus,1593 ravisher,1,titusandronicus,1593 Men,1,titusandronicus,1593 body's,1,titusandronicus,1593 playeth,1,titusandronicus,1593 Basely,1,titusandronicus,1593 tenfold,1,titusandronicus,1593 Great,1,titusandronicus,1593 fled,1,titusandronicus,1593 Junius,1,titusandronicus,1593 punishment,1,titusandronicus,1593 sever'd,1,titusandronicus,1593 numb,1,titusandronicus,1593 Tears,1,titusandronicus,1593 warriors,1,titusandronicus,1593 harmony,1,titusandronicus,1593 henceforth,1,titusandronicus,1593 inspired,1,titusandronicus,1593 tosseth,1,titusandronicus,1593 amain,1,titusandronicus,1593 physic,1,titusandronicus,1593 substituted,1,titusandronicus,1593 Indeed,1,titusandronicus,1593 appearing,1,titusandronicus,1593 shafts,1,titusandronicus,1593 beguile,1,titusandronicus,1593 amorous,1,titusandronicus,1593 Marry,1,titusandronicus,1593 Orator,1,titusandronicus,1593 eunuch,1,titusandronicus,1593 servitors,1,titusandronicus,1593 aspired,1,titusandronicus,1593 inherit,1,titusandronicus,1593 thither,1,titusandronicus,1593 lath,1,titusandronicus,1593 limed,1,titusandronicus,1593 beauty,1,titusandronicus,1593 maugre,1,titusandronicus,1593 Looking,1,titusandronicus,1593 extent,1,titusandronicus,1593 fright,1,titusandronicus,1593 slunk,1,titusandronicus,1593 silver,1,titusandronicus,1593 list,1,titusandronicus,1593 harms,1,titusandronicus,1593 whey,1,titusandronicus,1593 Somewhat,1,titusandronicus,1593 Hecuba,1,titusandronicus,1593 lave,1,titusandronicus,1593 Bearers,1,titusandronicus,1593 opportunity,1,titusandronicus,1593 April,1,titusandronicus,1593 Coriolanus,1,titusandronicus,1593 were't,1,titusandronicus,1593 nurse's,1,titusandronicus,1593 don,1,titusandronicus,1593 appetite,1,titusandronicus,1593 Lend,1,titusandronicus,1593 cordial,1,titusandronicus,1593 Upright,1,titusandronicus,1593 deflow'r,1,titusandronicus,1593 Sheathing,1,titusandronicus,1593 cell,1,titusandronicus,1593 stacks,1,titusandronicus,1593 stray'd,1,titusandronicus,1593 leading,1,titusandronicus,1593 conflict,1,titusandronicus,1593 shade,1,titusandronicus,1593 try,1,titusandronicus,1593 witty,1,titusandronicus,1593 sentence,1,titusandronicus,1593 Spotted,1,titusandronicus,1593 date,1,titusandronicus,1593 swooned,1,titusandronicus,1593 entrance,1,titusandronicus,1593 leads,1,titusandronicus,1593 incarnate,1,titusandronicus,1593 cover'd,1,titusandronicus,1593 reverse,1,titusandronicus,1593 yesternight,1,titusandronicus,1593 judges,1,titusandronicus,1593 Religiously,1,titusandronicus,1593 careless,1,titusandronicus,1593 pattern,1,titusandronicus,1593 brag,1,titusandronicus,1593 unhallowed,1,titusandronicus,1593 laid,1,titusandronicus,1593 discovered,1,titusandronicus,1593 respect,1,titusandronicus,1593 centre,1,titusandronicus,1593 mangled,1,titusandronicus,1593 somewhere,1,titusandronicus,1593 happily,1,titusandronicus,1593 brat,1,titusandronicus,1593 mud,1,titusandronicus,1593 dragging,1,titusandronicus,1593 busily,1,titusandronicus,1593 court'sy,1,titusandronicus,1593 lake,1,titusandronicus,1593 shone,1,titusandronicus,1593 architect,1,titusandronicus,1593 overwhelm'd,1,titusandronicus,1593 liquor,1,titusandronicus,1593 land,1,titusandronicus,1593 catch,1,titusandronicus,1593 lawless,1,titusandronicus,1593 survives,1,titusandronicus,1593 cunningly,1,titusandronicus,1593 sent'st,1,titusandronicus,1593 destroy,1,titusandronicus,1593 dispatch,1,titusandronicus,1593 globe,1,titusandronicus,1593 another's,1,titusandronicus,1593 bred,1,titusandronicus,1593 plucking,1,titusandronicus,1593 scimitar's,1,titusandronicus,1593 Threatening,1,titusandronicus,1593 snatch,1,titusandronicus,1593 circumscribed,1,titusandronicus,1593 months,1,titusandronicus,1593 DRAMATIS,1,titusandronicus,1593 slew,1,titusandronicus,1593 certain,1,titusandronicus,1593 Until,1,titusandronicus,1593 leap'd,1,titusandronicus,1593 shift,1,titusandronicus,1593 handsomely,1,titusandronicus,1593 tis,1,titusandronicus,1593 Touch,1,titusandronicus,1593 propose,1,titusandronicus,1593 armed,1,titusandronicus,1593 Desires,1,titusandronicus,1593 Too,1,titusandronicus,1593 frankly,1,titusandronicus,1593 Captive,1,titusandronicus,1593 feebleness,1,titusandronicus,1593 dame,1,titusandronicus,1593 quietly,1,titusandronicus,1593 record,1,titusandronicus,1593 obtain,1,titusandronicus,1593 tired,1,titusandronicus,1593 wills,1,titusandronicus,1593 ascend,1,titusandronicus,1593 Kneeling,1,titusandronicus,1593 cross,1,titusandronicus,1593 cabin,1,titusandronicus,1593 encountered,1,titusandronicus,1593 possibilities,1,titusandronicus,1593 patrons,1,titusandronicus,1593 command,1,titusandronicus,1593 booty,1,titusandronicus,1593 boots,1,titusandronicus,1593 repaid,1,titusandronicus,1593 slip,1,titusandronicus,1593 deflower'd,1,titusandronicus,1593 toads,1,titusandronicus,1593 ten,1,titusandronicus,1593 amen,1,titusandronicus,1593 meanwhile,1,titusandronicus,1593 justly,1,titusandronicus,1593 earth's,1,titusandronicus,1593 charity,1,titusandronicus,1593 Dido's,1,titusandronicus,1593 adjudged,1,titusandronicus,1593 gear,1,titusandronicus,1593 archery,1,titusandronicus,1593 cooling,1,titusandronicus,1593 forbear,1,titusandronicus,1593 remembrance,1,titusandronicus,1593 'Peace,1,titusandronicus,1593 'mongst,1,titusandronicus,1593 avaunt,1,titusandronicus,1593 bids,1,titusandronicus,1593 shape,1,titusandronicus,1593 Fame,1,titusandronicus,1593 bewitch'd,1,titusandronicus,1593 spoils,1,titusandronicus,1593 Thrice,1,titusandronicus,1593 faggot,1,titusandronicus,1593 scrowl,1,titusandronicus,1593 perhaps,1,titusandronicus,1593 crown,1,titusandronicus,1593 undertake,1,titusandronicus,1593 sandy,1,titusandronicus,1593 dim,1,titusandronicus,1593 sands,1,titusandronicus,1593 order,1,titusandronicus,1593 Daunt,1,titusandronicus,1593 turn'd,1,titusandronicus,1593 balcony,1,titusandronicus,1593 Lieth,1,titusandronicus,1593 woo'd,1,titusandronicus,1593 sapling,1,titusandronicus,1593 women,1,titusandronicus,1593 exeunt,1,titusandronicus,1593 insinuate,1,titusandronicus,1593 jet,2,titusandronicus,1593 answer,2,titusandronicus,1593 meet,2,titusandronicus,1593 manes,2,titusandronicus,1593 suffer,2,titusandronicus,1593 smiles,2,titusandronicus,1593 Proud,2,titusandronicus,1593 basin,2,titusandronicus,1593 echo,2,titusandronicus,1593 dames,2,titusandronicus,1593 unrest,2,titusandronicus,1593 double,2,titusandronicus,1593 heir,2,titusandronicus,1593 planted,2,titusandronicus,1593 business,2,titusandronicus,1593 ruthless,2,titusandronicus,1593 stately,2,titusandronicus,1593 alike,2,titusandronicus,1593 Cornelia,2,titusandronicus,1593 rob,2,titusandronicus,1593 suppose,2,titusandronicus,1593 Wilt,2,titusandronicus,1593 Bear,2,titusandronicus,1593 dire,2,titusandronicus,1593 CAIUS,2,titusandronicus,1593 piety,2,titusandronicus,1593 slaughter'd,2,titusandronicus,1593 painted,2,titusandronicus,1593 trunk,2,titusandronicus,1593 braves,2,titusandronicus,1593 vale,2,titusandronicus,1593 Help,2,titusandronicus,1593 irreligious,2,titusandronicus,1593 hearted,2,titusandronicus,1593 hanged,2,titusandronicus,1593 summer's,2,titusandronicus,1593 maintain,2,titusandronicus,1593 melodious,2,titusandronicus,1593 calls,2,titusandronicus,1593 receptacle,2,titusandronicus,1593 rue,2,titusandronicus,1593 lively,2,titusandronicus,1593 run,2,titusandronicus,1593 supplication,2,titusandronicus,1593 Whom,2,titusandronicus,1593 waggon,2,titusandronicus,1593 become,2,titusandronicus,1593 demand,2,titusandronicus,1593 cast,2,titusandronicus,1593 case,2,titusandronicus,1593 vast,2,titusandronicus,1593 mercy,2,titusandronicus,1593 passions,2,titusandronicus,1593 Kinsmen,2,titusandronicus,1593 After,2,titusandronicus,1593 camp,2,titusandronicus,1593 yourself,2,titusandronicus,1593 entrails,2,titusandronicus,1593 pile,2,titusandronicus,1593 resolve,2,titusandronicus,1593 drag,2,titusandronicus,1593 Confederate,2,titusandronicus,1593 lily,2,titusandronicus,1593 Keep,2,titusandronicus,1593 afterwards,2,titusandronicus,1593 plight,2,titusandronicus,1593 Philomela,2,titusandronicus,1593 concerns,2,titusandronicus,1593 Surprised,2,titusandronicus,1593 drew,2,titusandronicus,1593 enemy's,2,titusandronicus,1593 hearing,2,titusandronicus,1593 voices,2,titusandronicus,1593 policy,2,titusandronicus,1593 Meanwhile,2,titusandronicus,1593 Yield,2,titusandronicus,1593 fools,2,titusandronicus,1593 soft,2,titusandronicus,1593 Perchance,2,titusandronicus,1593 pillow,2,titusandronicus,1593 she's,2,titusandronicus,1593 Pantheon,2,titusandronicus,1593 erst,2,titusandronicus,1593 afflict,2,titusandronicus,1593 Oft,2,titusandronicus,1593 wilderness,2,titusandronicus,1593 speeches,2,titusandronicus,1593 sin,2,titusandronicus,1593 Lucrece',2,titusandronicus,1593 light,2,titusandronicus,1593 laugh'd,2,titusandronicus,1593 deceived,2,titusandronicus,1593 Write,2,titusandronicus,1593 scorn,2,titusandronicus,1593 embrace,2,titusandronicus,1593 frosty,2,titusandronicus,1593 winds,2,titusandronicus,1593 shipp'd,2,titusandronicus,1593 stern,2,titusandronicus,1593 Their,2,titusandronicus,1593 study,2,titusandronicus,1593 pitiful,2,titusandronicus,1593 sky,2,titusandronicus,1593 wings,2,titusandronicus,1593 play'd,2,titusandronicus,1593 bewray,2,titusandronicus,1593 swelling,2,titusandronicus,1593 vile,2,titusandronicus,1593 everlasting,2,titusandronicus,1593 mocks,2,titusandronicus,1593 Tereus,2,titusandronicus,1593 guide,2,titusandronicus,1593 fight,2,titusandronicus,1593 snow,2,titusandronicus,1593 piece,2,titusandronicus,1593 Out,2,titusandronicus,1593 Commit,2,titusandronicus,1593 unhallow'd,2,titusandronicus,1593 bliss,2,titusandronicus,1593 prosecute,2,titusandronicus,1593 plots,2,titusandronicus,1593 'Long,2,titusandronicus,1593 eldest,2,titusandronicus,1593 mark'd,2,titusandronicus,1593 showers,2,titusandronicus,1593 fruit,2,titusandronicus,1593 Wherein,2,titusandronicus,1593 pearl,2,titusandronicus,1593 princes,2,titusandronicus,1593 cries,2,titusandronicus,1593 promise,2,titusandronicus,1593 humbly,2,titusandronicus,1593 descend,2,titusandronicus,1593 masters,2,titusandronicus,1593 attired,2,titusandronicus,1593 tiger,2,titusandronicus,1593 seems,2,titusandronicus,1593 One,2,titusandronicus,1593 dearer,2,titusandronicus,1593 know'st,2,titusandronicus,1593 wise,2,titusandronicus,1593 Though,2,titusandronicus,1593 bold,2,titusandronicus,1593 servile,2,titusandronicus,1593 world's,2,titusandronicus,1593 wave,2,titusandronicus,1593 voice,2,titusandronicus,1593 baked,2,titusandronicus,1593 rule,2,titusandronicus,1593 desire,2,titusandronicus,1593 book,2,titusandronicus,1593 framed,2,titusandronicus,1593 Titus's,2,titusandronicus,1593 he's,2,titusandronicus,1593 sick,2,titusandronicus,1593 each,2,titusandronicus,1593 big,2,titusandronicus,1593 grind,2,titusandronicus,1593 tapers,2,titusandronicus,1593 gratify,2,titusandronicus,1593 drown,2,titusandronicus,1593 unkind,2,titusandronicus,1593 What's,2,titusandronicus,1593 sign,2,titusandronicus,1593 At,2,titusandronicus,1593 pay,2,titusandronicus,1593 chaste,2,titusandronicus,1593 Whiles,2,titusandronicus,1593 hew,2,titusandronicus,1593 desperate,2,titusandronicus,1593 murderers,2,titusandronicus,1593 bag,2,titusandronicus,1593 hopes,2,titusandronicus,1593 bad,2,titusandronicus,1593 warrior,2,titusandronicus,1593 cruel,2,titusandronicus,1593 pities,2,titusandronicus,1593 pen,2,titusandronicus,1593 stab,2,titusandronicus,1593 remainder,2,titusandronicus,1593 hit,2,titusandronicus,1593 Ha,2,titusandronicus,1593 flowers,2,titusandronicus,1593 quick,2,titusandronicus,1593 wither'd,2,titusandronicus,1593 play,2,titusandronicus,1593 monstrous,2,titusandronicus,1593 nobly,2,titusandronicus,1593 outlive,2,titusandronicus,1593 devices,2,titusandronicus,1593 trimm'd,2,titusandronicus,1593 sith,2,titusandronicus,1593 sits,2,titusandronicus,1593 espied,2,titusandronicus,1593 Open,2,titusandronicus,1593 spotless,2,titusandronicus,1593 tyrannize,2,titusandronicus,1593 preserved,2,titusandronicus,1593 control,2,titusandronicus,1593 salute,2,titusandronicus,1593 babbling,2,titusandronicus,1593 children,2,titusandronicus,1593 gaze,2,titusandronicus,1593 latest,2,titusandronicus,1593 Followers,2,titusandronicus,1593 complot,2,titusandronicus,1593 Valentine,2,titusandronicus,1593 beyond,2,titusandronicus,1593 shadow,2,titusandronicus,1593 reproachful,2,titusandronicus,1593 Tarquin,2,titusandronicus,1593 theme,2,titusandronicus,1593 friendly,2,titusandronicus,1593 curse,2,titusandronicus,1593 badge,2,titusandronicus,1593 gather'd,2,titusandronicus,1593 used,2,titusandronicus,1593 Traitors,2,titusandronicus,1593 picture,2,titusandronicus,1593 sister's,2,titusandronicus,1593 sing,2,titusandronicus,1593 misty,2,titusandronicus,1593 deer,2,titusandronicus,1593 wreak,2,titusandronicus,1593 engine,2,titusandronicus,1593 promised,2,titusandronicus,1593 image,2,titusandronicus,1593 aim,2,titusandronicus,1593 Soldiers,2,titusandronicus,1593 Traitor,2,titusandronicus,1593 air,2,titusandronicus,1593 raise,2,titusandronicus,1593 Fear,2,titusandronicus,1593 Here's,2,titusandronicus,1593 stood,2,titusandronicus,1593 beat,2,titusandronicus,1593 murderous,2,titusandronicus,1593 Apollo,2,titusandronicus,1593 napkin,2,titusandronicus,1593 weigh'd,2,titusandronicus,1593 deal,2,titusandronicus,1593 whelps,2,titusandronicus,1593 priest,2,titusandronicus,1593 destruction,2,titusandronicus,1593 dismall'st,2,titusandronicus,1593 speed,2,titusandronicus,1593 privilege,2,titusandronicus,1593 accompany,2,titusandronicus,1593 rouse,2,titusandronicus,1593 move,2,titusandronicus,1593 abominable,2,titusandronicus,1593 small,2,titusandronicus,1593 Second,2,titusandronicus,1593 Reads,2,titusandronicus,1593 temper,2,titusandronicus,1593 morn,2,titusandronicus,1593 rapes,2,titusandronicus,1593 enmity,2,titusandronicus,1593 hadst,2,titusandronicus,1593 begg'd,2,titusandronicus,1593 ado,2,titusandronicus,1593 moon,2,titusandronicus,1593 loss,2,titusandronicus,1593 beholding,2,titusandronicus,1593 wherein,2,titusandronicus,1593 spent,2,titusandronicus,1593 bootless,2,titusandronicus,1593 knee,2,titusandronicus,1593 men's,2,titusandronicus,1593 events,2,titusandronicus,1593 easy,2,titusandronicus,1593 kills,2,titusandronicus,1593 hard,2,titusandronicus,1593 discourse,2,titusandronicus,1593 field,2,titusandronicus,1593 afford,2,titusandronicus,1593 hale,2,titusandronicus,1593 knit,2,titusandronicus,1593 verse,2,titusandronicus,1593 senate,2,titusandronicus,1593 perform'd,2,titusandronicus,1593 Trumpets,2,titusandronicus,1593 ladder,2,titusandronicus,1593 Scythia,2,titusandronicus,1593 joyful,2,titusandronicus,1593 city,2,titusandronicus,1593 Under,2,titusandronicus,1593 deaths,2,titusandronicus,1593 weeps,2,titusandronicus,1593 prepare,2,titusandronicus,1593 impatient,2,titusandronicus,1593 delight,2,titusandronicus,1593 money,2,titusandronicus,1593 frown,2,titusandronicus,1593 strive,2,titusandronicus,1593 foot,2,titusandronicus,1593 bosom,2,titusandronicus,1593 worldly,2,titusandronicus,1593 fool,2,titusandronicus,1593 puts,2,titusandronicus,1593 Virginius,2,titusandronicus,1593 fiend,2,titusandronicus,1593 prepared,2,titusandronicus,1593 object,2,titusandronicus,1593 mayst,2,titusandronicus,1593 fold,2,titusandronicus,1593 ingratitude,2,titusandronicus,1593 knock,2,titusandronicus,1593 thanks,2,titusandronicus,1593 Accursed,2,titusandronicus,1593 fed,2,titusandronicus,1593 enjoy,2,titusandronicus,1593 willingly,2,titusandronicus,1593 Art,2,titusandronicus,1593 having,2,titusandronicus,1593 humbleness,2,titusandronicus,1593 Should,2,titusandronicus,1593 hunter's,2,titusandronicus,1593 frenzy,2,titusandronicus,1593 often,2,titusandronicus,1593 room,2,titusandronicus,1593 through,2,titusandronicus,1593 condemn'd,2,titusandronicus,1593 keeps,2,titusandronicus,1593 breeds,2,titusandronicus,1593 shameful,2,titusandronicus,1593 maid,2,titusandronicus,1593 suffrages,2,titusandronicus,1593 mischief,2,titusandronicus,1593 Knock,2,titusandronicus,1593 Tribune,2,titusandronicus,1593 Lords,2,titusandronicus,1593 note,2,titusandronicus,1593 repose,2,titusandronicus,1593 marks,2,titusandronicus,1593 beast,2,titusandronicus,1593 action,2,titusandronicus,1593 scroll,2,titusandronicus,1593 restore,2,titusandronicus,1593 Peace,2,titusandronicus,1593 Presents,2,titusandronicus,1593 guides,2,titusandronicus,1593 Pointing,2,titusandronicus,1593 remedy,2,titusandronicus,1593 things,2,titusandronicus,1593 traitors,2,titusandronicus,1593 sirrah,2,titusandronicus,1593 bottom,2,titusandronicus,1593 Soft,2,titusandronicus,1593 chase,2,titusandronicus,1593 Grave,2,titusandronicus,1593 Sit,2,titusandronicus,1593 charm,2,titusandronicus,1593 mount,2,titusandronicus,1593 High,2,titusandronicus,1593 scars,2,titusandronicus,1593 places,2,titusandronicus,1593 ere,2,titusandronicus,1593 Semiramis,2,titusandronicus,1593 Titan's,2,titusandronicus,1593 precious,2,titusandronicus,1593 yours,2,titusandronicus,1593 other's,2,titusandronicus,1593 milk,2,titusandronicus,1593 Long,2,titusandronicus,1593 shield,2,titusandronicus,1593 Makes,2,titusandronicus,1593 kisses,2,titusandronicus,1593 tempest,2,titusandronicus,1593 bosoms,2,titusandronicus,1593 foolish,2,titusandronicus,1593 Sons,2,titusandronicus,1593 rests,2,titusandronicus,1593 wrought,2,titusandronicus,1593 son's,2,titusandronicus,1593 proudest,2,titusandronicus,1593 crimson,2,titusandronicus,1593 devils,2,titusandronicus,1593 state,2,titusandronicus,1593 let's,2,titusandronicus,1593 SEMPRONIUS,2,titusandronicus,1593 lentus,2,titusandronicus,1593 blow,2,titusandronicus,1593 victorious,2,titusandronicus,1593 heaven's,2,titusandronicus,1593 smoke,2,titusandronicus,1593 Third,2,titusandronicus,1593 dainty,2,titusandronicus,1593 stain,2,titusandronicus,1593 Coming,2,titusandronicus,1593 close,2,titusandronicus,1593 proved,2,titusandronicus,1593 murders,2,titusandronicus,1593 carefully,2,titusandronicus,1593 Friends,2,titusandronicus,1593 Returns,2,titusandronicus,1593 banishment,2,titusandronicus,1593 throw,2,titusandronicus,1593 oft,2,titusandronicus,1593 'Twill,2,titusandronicus,1593 happiness,2,titusandronicus,1593 beastly,2,titusandronicus,1593 walks,2,titusandronicus,1593 relent,2,titusandronicus,1593 walls,2,titusandronicus,1593 flint,2,titusandronicus,1593 dust,2,titusandronicus,1593 called,2,titusandronicus,1593 Shed,2,titusandronicus,1593 wax,2,titusandronicus,1593 flourish,2,titusandronicus,1593 army,2,titusandronicus,1593 growing,2,titusandronicus,1593 commander,2,titusandronicus,1593 themselves,2,titusandronicus,1593 handle,2,titusandronicus,1593 rage,2,titusandronicus,1593 pride,2,titusandronicus,1593 forward,2,titusandronicus,1593 wont,2,titusandronicus,1593 next,2,titusandronicus,1593 possess,2,titusandronicus,1593 hail,2,titusandronicus,1593 requite,2,titusandronicus,1593 seize,2,titusandronicus,1593 ransom,2,titusandronicus,1593 served,2,titusandronicus,1593 taken,2,titusandronicus,1593 what's,2,titusandronicus,1593 require,2,titusandronicus,1593 killing,2,titusandronicus,1593 womb,2,titusandronicus,1593 owe,2,titusandronicus,1593 lopp'd,2,titusandronicus,1593 rain,2,titusandronicus,1593 baleful,2,titusandronicus,1593 doings,2,titusandronicus,1593 Plead,2,titusandronicus,1593 dull,2,titusandronicus,1593 ope,2,titusandronicus,1593 wrong'd,2,titusandronicus,1593 whence,2,titusandronicus,1593 contempt,2,titusandronicus,1593 guilty,2,titusandronicus,1593 table,2,titusandronicus,1593 wept,2,titusandronicus,1593 minds,2,titusandronicus,1593 judge,2,titusandronicus,1593 desert,2,titusandronicus,1593 snake,2,titusandronicus,1593 swells,2,titusandronicus,1593 Greeks,2,titusandronicus,1593 pleased,2,titusandronicus,1593 work,2,titusandronicus,1593 earthy,2,titusandronicus,1593 colours,2,titusandronicus,1593 passing,2,titusandronicus,1593 passion,2,titusandronicus,1593 fill,2,titusandronicus,1593 safety,2,titusandronicus,1593 bark,2,titusandronicus,1593 thereby,2,titusandronicus,1593 duties,2,titusandronicus,1593 wide,2,titusandronicus,1593 Unto,2,titusandronicus,1593 shows,2,titusandronicus,1593 vex,2,titusandronicus,1593 smooth,2,titusandronicus,1593 practise,2,titusandronicus,1593 perceive,2,titusandronicus,1593 beware,2,titusandronicus,1593 wrongfully,2,titusandronicus,1593 Judges,2,titusandronicus,1593 band,2,titusandronicus,1593 feeble,2,titusandronicus,1593 gallant,2,titusandronicus,1593 coal,2,titusandronicus,1593 torment,2,titusandronicus,1593 carry,2,titusandronicus,1593 rapier,2,titusandronicus,1593 openly,2,titusandronicus,1593 Villains,2,titusandronicus,1593 Led,2,titusandronicus,1593 Horace,2,titusandronicus,1593 empire,2,titusandronicus,1593 green,2,titusandronicus,1593 master,2,titusandronicus,1593 giddy,2,titusandronicus,1593 closing,2,titusandronicus,1593 sew'd,2,titusandronicus,1593 controll'd,2,titusandronicus,1593 winter,2,titusandronicus,1593 flood,2,titusandronicus,1593 train'd,2,titusandronicus,1593 seal,2,titusandronicus,1593 cool,2,titusandronicus,1593 aught,2,titusandronicus,1593 seem,2,titusandronicus,1593 presence,2,titusandronicus,1593 adore,2,titusandronicus,1593 Mine,2,titusandronicus,1593 render,2,titusandronicus,1593 Patience,2,titusandronicus,1593 Dian,2,titusandronicus,1593 hound,2,titusandronicus,1593 patricians,2,titusandronicus,1593 corn,2,titusandronicus,1593 troop,2,titusandronicus,1593 pledges,2,titusandronicus,1593 trembles,2,titusandronicus,1593 bail,2,titusandronicus,1593 souls,2,titusandronicus,1593 self,2,titusandronicus,1593 led,2,titusandronicus,1593 undo,2,titusandronicus,1593 alas,2,titusandronicus,1593 cold,2,titusandronicus,1593 highest,2,titusandronicus,1593 triumphs,2,titusandronicus,1593 bestow,2,titusandronicus,1593 unspeakable,2,titusandronicus,1593 threat,2,titusandronicus,1593 triumph,2,titusandronicus,1593 frantic,2,titusandronicus,1593 Patricians,2,titusandronicus,1593 write,2,titusandronicus,1593 cloudy,2,titusandronicus,1593 Agree,2,titusandronicus,1593 sounded,2,titusandronicus,1593 distressed,2,titusandronicus,1593 least,2,titusandronicus,1593 abroad,2,titusandronicus,1593 Saturn,2,titusandronicus,1593 forced,2,titusandronicus,1593 dread,2,titusandronicus,1593 met,2,titusandronicus,1593 armoury,2,titusandronicus,1593 lamenting,2,titusandronicus,1593 Rise,2,titusandronicus,1593 murder'd,2,titusandronicus,1593 graciously,2,titusandronicus,1593 heartily,2,titusandronicus,1593 ravished,2,titusandronicus,1593 withdraw,2,titusandronicus,1593 lion,2,titusandronicus,1593 lark,2,titusandronicus,1593 dismiss,2,titusandronicus,1593 womanhood,2,titusandronicus,1593 terror,2,titusandronicus,1593 sheathe,2,titusandronicus,1593 citizens,2,titusandronicus,1593 Secure,2,titusandronicus,1593 Without,2,titusandronicus,1593 tributary,2,titusandronicus,1593 ragged,2,titusandronicus,1593 Justice,2,titusandronicus,1593 entreats,2,titusandronicus,1593 content,2,titusandronicus,1593 silent,2,titusandronicus,1593 slay,2,titusandronicus,1593 Mutius',2,titusandronicus,1593 honour'd,2,titusandronicus,1593 dark,2,titusandronicus,1593 famish,2,titusandronicus,1593 Falls,2,titusandronicus,1593 Die,2,titusandronicus,1593 Thracian,2,titusandronicus,1593 miseries,2,titusandronicus,1593 sudden,2,titusandronicus,1593 stratagem,2,titusandronicus,1593 top,2,titusandronicus,1593 lamb,2,titusandronicus,1593 inter,2,titusandronicus,1593 Bring,2,titusandronicus,1593 chariot,2,titusandronicus,1593 rescue,2,titusandronicus,1593 pass'd,2,titusandronicus,1593 without,2,titusandronicus,1593 ambitious,2,titusandronicus,1593 trees,2,titusandronicus,1593 dew,2,titusandronicus,1593 private,2,titusandronicus,1593 Fair,2,titusandronicus,1593 awake,2,titusandronicus,1593 stomachs,2,titusandronicus,1593 mutual,2,titusandronicus,1593 spirit,2,titusandronicus,1593 hellish,2,titusandronicus,1593 fragrant,2,titusandronicus,1593 repair,2,titusandronicus,1593 parley,2,titusandronicus,1593 breathe,2,titusandronicus,1593 bide,2,titusandronicus,1593 e'er,2,titusandronicus,1593 dig,2,titusandronicus,1593 ungrateful,2,titusandronicus,1593 summer,2,titusandronicus,1593 in,258,titusandronicus,1593 attended,3,titusandronicus,1593 advanced,3,titusandronicus,1593 V,3,titusandronicus,1593 times,3,titusandronicus,1593 meed,3,titusandronicus,1593 c,3,titusandronicus,1593 guilt,3,titusandronicus,1593 horse,3,titusandronicus,1593 lament,3,titusandronicus,1593 wicked,3,titusandronicus,1593 honours,3,titusandronicus,1593 Villain,3,titusandronicus,1593 melt,3,titusandronicus,1593 writes,3,titusandronicus,1593 sighs,3,titusandronicus,1593 drum,3,titusandronicus,1593 fought,3,titusandronicus,1593 advance,3,titusandronicus,1593 nought,3,titusandronicus,1593 befall,3,titusandronicus,1593 sort,3,titusandronicus,1593 lies,3,titusandronicus,1593 ALARBUS,3,titusandronicus,1593 bowels,3,titusandronicus,1593 spare,3,titusandronicus,1593 loathsome,3,titusandronicus,1593 Poor,3,titusandronicus,1593 martyr'd,3,titusandronicus,1593 saw,3,titusandronicus,1593 chop,3,titusandronicus,1593 golden,3,titusandronicus,1593 rites,3,titusandronicus,1593 stands,3,titusandronicus,1593 warrant,3,titusandronicus,1593 wall,3,titusandronicus,1593 suit,3,titusandronicus,1593 murdered,3,titusandronicus,1593 counsel,3,titusandronicus,1593 beloved,3,titusandronicus,1593 faults,3,titusandronicus,1593 league,3,titusandronicus,1593 sends,3,titusandronicus,1593 received,3,titusandronicus,1593 born,3,titusandronicus,1593 common,3,titusandronicus,1593 loose,3,titusandronicus,1593 elder,3,titusandronicus,1593 grow,3,titusandronicus,1593 want,3,titusandronicus,1593 wipe,3,titusandronicus,1593 warm,3,titusandronicus,1593 pretty,3,titusandronicus,1593 wash,3,titusandronicus,1593 consecrate,3,titusandronicus,1593 matter,3,titusandronicus,1593 urge,3,titusandronicus,1593 has,3,titusandronicus,1593 utter,3,titusandronicus,1593 patience,3,titusandronicus,1593 among,3,titusandronicus,1593 bay,3,titusandronicus,1593 empery,3,titusandronicus,1593 panther,3,titusandronicus,1593 innocent,3,titusandronicus,1593 since,3,titusandronicus,1593 pleasure,3,titusandronicus,1593 Let's,3,titusandronicus,1593 applaud,3,titusandronicus,1593 past,3,titusandronicus,1593 pass,3,titusandronicus,1593 nobility,3,titusandronicus,1593 prove,3,titusandronicus,1593 fields,3,titusandronicus,1593 Emperor,3,titusandronicus,1593 struck,3,titusandronicus,1593 prisoners,3,titusandronicus,1593 woful,3,titusandronicus,1593 Behold,3,titusandronicus,1593 welkin,3,titusandronicus,1593 suddenly,3,titusandronicus,1593 beget,3,titusandronicus,1593 swift,3,titusandronicus,1593 Pallas,3,titusandronicus,1593 solemn,3,titusandronicus,1593 wretch,3,titusandronicus,1593 ha,3,titusandronicus,1593 breast,3,titusandronicus,1593 paste,3,titusandronicus,1593 TITUS's,3,titusandronicus,1593 repent,3,titusandronicus,1593 needs,3,titusandronicus,1593 stone,3,titusandronicus,1593 approach,3,titusandronicus,1593 forget,3,titusandronicus,1593 door,3,titusandronicus,1593 banished,3,titusandronicus,1593 damn'd,3,titusandronicus,1593 Renowned,3,titusandronicus,1593 endure,3,titusandronicus,1593 less,3,titusandronicus,1593 ill,3,titusandronicus,1593 huntsman,3,titusandronicus,1593 ready,3,titusandronicus,1593 climb,3,titusandronicus,1593 hark,3,titusandronicus,1593 basely,3,titusandronicus,1593 executed,3,titusandronicus,1593 axe,3,titusandronicus,1593 speaks,3,titusandronicus,1593 weapon,3,titusandronicus,1593 round,3,titusandronicus,1593 employ'd,3,titusandronicus,1593 More,3,titusandronicus,1593 Full,3,titusandronicus,1593 drawn,3,titusandronicus,1593 praise,3,titusandronicus,1593 pluck,3,titusandronicus,1593 course,3,titusandronicus,1593 Caius,3,titusandronicus,1593 present,3,titusandronicus,1593 return'd,3,titusandronicus,1593 Bassianus',3,titusandronicus,1593 stones,3,titusandronicus,1593 dismal,3,titusandronicus,1593 Andronici,3,titusandronicus,1593 chastity,3,titusandronicus,1593 Lavinia's,3,titusandronicus,1593 tyranny,3,titusandronicus,1593 fresh,3,titusandronicus,1593 Attendant,3,titusandronicus,1593 monument,3,titusandronicus,1593 chance,3,titusandronicus,1593 undone,3,titusandronicus,1593 deadly,3,titusandronicus,1593 ministers,3,titusandronicus,1593 guess,3,titusandronicus,1593 height,3,titusandronicus,1593 far,3,titusandronicus,1593 nay,3,titusandronicus,1593 Ten,3,titusandronicus,1593 silence,3,titusandronicus,1593 indeed,3,titusandronicus,1593 faction,3,titusandronicus,1593 thinks,3,titusandronicus,1593 square,3,titusandronicus,1593 'Ad,3,titusandronicus,1593 oration,3,titusandronicus,1593 borne,3,titusandronicus,1593 perform,3,titusandronicus,1593 Set,3,titusandronicus,1593 misery,3,titusandronicus,1593 awhile,3,titusandronicus,1593 effect,3,titusandronicus,1593 sacrifice,3,titusandronicus,1593 charitable,3,titusandronicus,1593 teeth,3,titusandronicus,1593 soldiers,3,titusandronicus,1593 blush,3,titusandronicus,1593 there's,3,titusandronicus,1593 knows,3,titusandronicus,1593 fountain,3,titusandronicus,1593 issue,3,titusandronicus,1593 achieve,3,titusandronicus,1593 because,3,titusandronicus,1593 wot,3,titusandronicus,1593 won,3,titusandronicus,1593 gates,3,titusandronicus,1593 threatening,3,titusandronicus,1593 trouble,3,titusandronicus,1593 desires,3,titusandronicus,1593 wrath,3,titusandronicus,1593 flies,3,titusandronicus,1593 five,3,titusandronicus,1593 ring,3,titusandronicus,1593 commonweal,3,titusandronicus,1593 morrow,3,titusandronicus,1593 subtle,3,titusandronicus,1593 Mercury,3,titusandronicus,1593 staff,3,titusandronicus,1593 rise,3,titusandronicus,1593 perforce,3,titusandronicus,1593 oath,3,titusandronicus,1593 intend,3,titusandronicus,1593 kinsmen,3,titusandronicus,1593 cursed,3,titusandronicus,1593 hair,3,titusandronicus,1593 takes,3,titusandronicus,1593 virtue's,3,titusandronicus,1593 wondrous,3,titusandronicus,1593 yoke,3,titusandronicus,1593 angry,3,titusandronicus,1593 gifts,3,titusandronicus,1593 Show,3,titusandronicus,1593 create,3,titusandronicus,1593 Many,3,titusandronicus,1593 weapons,3,titusandronicus,1593 humour,3,titusandronicus,1593 company,3,titusandronicus,1593 fie,3,titusandronicus,1593 woods,3,titusandronicus,1593 lines,3,titusandronicus,1593 meaning,3,titusandronicus,1593 base,3,titusandronicus,1593 fast,3,titusandronicus,1593 trumpets,3,titusandronicus,1593 lad,3,titusandronicus,1593 man's,3,titusandronicus,1593 shoot,3,titusandronicus,1593 holy,3,titusandronicus,1593 melody,3,titusandronicus,1593 greet,3,titusandronicus,1593 dangerous,3,titusandronicus,1593 Although,3,titusandronicus,1593 family,3,titusandronicus,1593 task,3,titusandronicus,1593 wife,3,titusandronicus,1593 prayers,3,titusandronicus,1593 hearts,3,titusandronicus,1593 arrows,3,titusandronicus,1593 sacred,3,titusandronicus,1593 person,3,titusandronicus,1593 funeral,3,titusandronicus,1593 prison,3,titusandronicus,1593 deceive,3,titusandronicus,1593 goes,3,titusandronicus,1593 Two,3,titusandronicus,1593 storms,3,titusandronicus,1593 peal,3,titusandronicus,1593 reward,3,titusandronicus,1593 makes,3,titusandronicus,1593 ladies,3,titusandronicus,1593 mourning,3,titusandronicus,1593 nephews,3,titusandronicus,1593 late,3,titusandronicus,1593 hurt,3,titusandronicus,1593 strange,3,titusandronicus,1593 books,3,titusandronicus,1593 going,3,titusandronicus,1593 mouths,3,titusandronicus,1593 spring,3,titusandronicus,1593 doe,3,titusandronicus,1593 princely,3,titusandronicus,1593 Gracious,3,titusandronicus,1593 honour's,3,titusandronicus,1593 swallow,3,titusandronicus,1593 dare,3,titusandronicus,1593 Lest,3,titusandronicus,1593 humbled,3,titusandronicus,1593 dry,3,titusandronicus,1593 reverend,3,titusandronicus,1593 Take,3,titusandronicus,1593 drown'd,3,titusandronicus,1593 den,3,titusandronicus,1593 hunting,3,titusandronicus,1593 enemy,3,titusandronicus,1593 Tut,3,titusandronicus,1593 fortunes,3,titusandronicus,1593 lady,3,titusandronicus,1593 treason,4,titusandronicus,1593 o'er,4,titusandronicus,1593 join,4,titusandronicus,1593 days,4,titusandronicus,1593 writ,4,titusandronicus,1593 Fie,4,titusandronicus,1593 shadows,4,titusandronicus,1593 held,4,titusandronicus,1593 Stay,4,titusandronicus,1593 Kills,4,titusandronicus,1593 violent,4,titusandronicus,1593 prisoner,4,titusandronicus,1593 ravish'd,4,titusandronicus,1593 cave,4,titusandronicus,1593 although,4,titusandronicus,1593 fury,4,titusandronicus,1593 drink,4,titusandronicus,1593 under,4,titusandronicus,1593 prey,4,titusandronicus,1593 truth,4,titusandronicus,1593 trust,4,titusandronicus,1593 wounded,4,titusandronicus,1593 pleasing,4,titusandronicus,1593 soon,4,titusandronicus,1593 jest,4,titusandronicus,1593 years,4,titusandronicus,1593 Rape,4,titusandronicus,1593 Jove,4,titusandronicus,1593 calm,4,titusandronicus,1593 noise,4,titusandronicus,1593 wait,4,titusandronicus,1593 ocean,4,titusandronicus,1593 execution,4,titusandronicus,1593 nothing,4,titusandronicus,1593 merry,4,titusandronicus,1593 wake,4,titusandronicus,1593 'twas,4,titusandronicus,1593 murderer,4,titusandronicus,1593 Was,4,titusandronicus,1593 deserts,4,titusandronicus,1593 looks,4,titusandronicus,1593 Thanks,4,titusandronicus,1593 accursed,4,titusandronicus,1593 fault,4,titusandronicus,1593 above,4,titusandronicus,1593 fearful,4,titusandronicus,1593 blind,4,titusandronicus,1593 choose,4,titusandronicus,1593 flesh,4,titusandronicus,1593 dies,4,titusandronicus,1593 wish,4,titusandronicus,1593 murder,4,titusandronicus,1593 stop,4,titusandronicus,1593 wars,4,titusandronicus,1593 steel,4,titusandronicus,1593 There's,4,titusandronicus,1593 bright,4,titusandronicus,1593 nephew,4,titusandronicus,1593 eternal,4,titusandronicus,1593 govern,4,titusandronicus,1593 Lo,4,titusandronicus,1593 Philomel,4,titusandronicus,1593 Stand,4,titusandronicus,1593 tear,4,titusandronicus,1593 election,4,titusandronicus,1593 Receive,4,titusandronicus,1593 burn,4,titusandronicus,1593 coffin,4,titusandronicus,1593 imperial,4,titusandronicus,1593 Child,4,titusandronicus,1593 put,4,titusandronicus,1593 farewell,4,titusandronicus,1593 turns,4,titusandronicus,1593 begin,4,titusandronicus,1593 said,4,titusandronicus,1593 storm,4,titusandronicus,1593 Rapine,4,titusandronicus,1593 betray,4,titusandronicus,1593 Unless,4,titusandronicus,1593 deaf,4,titusandronicus,1593 stain'd,4,titusandronicus,1593 buried,4,titusandronicus,1593 miserable,4,titusandronicus,1593 resolved,4,titusandronicus,1593 loved,4,titusandronicus,1593 plot,4,titusandronicus,1593 weeds,4,titusandronicus,1593 prince,4,titusandronicus,1593 plain,4,titusandronicus,1593 mighty,4,titusandronicus,1593 arm,4,titusandronicus,1593 forlorn,4,titusandronicus,1593 little,4,titusandronicus,1593 alive,4,titusandronicus,1593 shot,4,titusandronicus,1593 dreadful,4,titusandronicus,1593 Are,4,titusandronicus,1593 King,4,titusandronicus,1593 Sirrah,4,titusandronicus,1593 Hath,4,titusandronicus,1593 Madam,4,titusandronicus,1593 moved,4,titusandronicus,1593 honey,4,titusandronicus,1593 almost,4,titusandronicus,1593 tender,4,titusandronicus,1593 ours,4,titusandronicus,1593 hide,4,titusandronicus,1593 written,4,titusandronicus,1593 device,4,titusandronicus,1593 didst,4,titusandronicus,1593 midwife,4,titusandronicus,1593 mark,4,titusandronicus,1593 known,4,titusandronicus,1593 sorrowful,4,titusandronicus,1593 letters,4,titusandronicus,1593 fire,4,titusandronicus,1593 Were,4,titusandronicus,1593 message,4,titusandronicus,1593 hateful,4,titusandronicus,1593 fetch,4,titusandronicus,1593 Say,4,titusandronicus,1593 save,4,titusandronicus,1593 brother's,4,titusandronicus,1593 survive,4,titusandronicus,1593 happy,4,titusandronicus,1593 Senators,4,titusandronicus,1593 throats,4,titusandronicus,1593 Bid,4,titusandronicus,1593 weeping,4,titusandronicus,1593 drops,4,titusandronicus,1593 Make,4,titusandronicus,1593 ground,4,titusandronicus,1593 wert,4,titusandronicus,1593 Jupiter,4,titusandronicus,1593 fortune,4,titusandronicus,1593 fame,4,titusandronicus,1593 ne'er,4,titusandronicus,1593 traitorous,4,titusandronicus,1593 comfort,4,titusandronicus,1593 deliver'd,4,titusandronicus,1593 Welcome,4,titusandronicus,1593 convey,4,titusandronicus,1593 given,4,titusandronicus,1593 hollow,4,titusandronicus,1593 strong,4,titusandronicus,1593 gives,4,titusandronicus,1593 country's,4,titusandronicus,1593 along,4,titusandronicus,1593 alone,4,titusandronicus,1593 sons',4,titusandronicus,1593 Prince,4,titusandronicus,1593 seen,4,titusandronicus,1593 tidings,4,titusandronicus,1593 sound,4,titusandronicus,1593 tree,4,titusandronicus,1593 Know,4,titusandronicus,1593 raven,4,titusandronicus,1593 slumber,4,titusandronicus,1593 eat,4,titusandronicus,1593 straight,4,titusandronicus,1593 Messenger,4,titusandronicus,1593 Captain,4,titusandronicus,1593 lips,4,titusandronicus,1593 quarrels,4,titusandronicus,1593 virtue,4,titusandronicus,1593 May,4,titusandronicus,1593 revenged,4,titusandronicus,1593 dog,4,titusandronicus,1593 asleep,4,titusandronicus,1593 Did,4,titusandronicus,1593 follow,4,titusandronicus,1593 shine,4,titusandronicus,1593 wouldst,4,titusandronicus,1593 sharp,4,titusandronicus,1593 villany,5,titusandronicus,1593 swords,5,titusandronicus,1593 country,5,titusandronicus,1593 royal,5,titusandronicus,1593 bones,5,titusandronicus,1593 thought,5,titusandronicus,1593 honourable,5,titusandronicus,1593 AEmilius,5,titusandronicus,1593 withal,5,titusandronicus,1593 favor,5,titusandronicus,1593 care,5,titusandronicus,1593 highness,5,titusandronicus,1593 cheer,5,titusandronicus,1593 teach,5,titusandronicus,1593 aged,5,titusandronicus,1593 birds,5,titusandronicus,1593 Farewell,5,titusandronicus,1593 wrong,5,titusandronicus,1593 after,5,titusandronicus,1593 white,5,titusandronicus,1593 worthy,5,titusandronicus,1593 feet,5,titusandronicus,1593 died,5,titusandronicus,1593 wherefore,5,titusandronicus,1593 III,5,titusandronicus,1593 quarrel,5,titusandronicus,1593 beg,5,titusandronicus,1593 Had,5,titusandronicus,1593 best,5,titusandronicus,1593 whose,5,titusandronicus,1593 goodly,5,titusandronicus,1593 Like,5,titusandronicus,1593 burial,5,titusandronicus,1593 tongues,5,titusandronicus,1593 those,5,titusandronicus,1593 knew,5,titusandronicus,1593 half,5,titusandronicus,1593 call'd,5,titusandronicus,1593 re,5,titusandronicus,1593 vengeance,5,titusandronicus,1593 ask,5,titusandronicus,1593 point,5,titusandronicus,1593 detested,5,titusandronicus,1593 Hark,5,titusandronicus,1593 here's,5,titusandronicus,1593 Mutius,5,titusandronicus,1593 Flourish,5,titusandronicus,1593 majesty,5,titusandronicus,1593 strike,5,titusandronicus,1593 Therefore,5,titusandronicus,1593 forest,5,titusandronicus,1593 general,5,titusandronicus,1593 high,5,titusandronicus,1593 All,5,titusandronicus,1593 presently,5,titusandronicus,1593 slave,5,titusandronicus,1593 sake,5,titusandronicus,1593 dishonour,5,titusandronicus,1593 wit,5,titusandronicus,1593 Witness,5,titusandronicus,1593 break,5,titusandronicus,1593 war,5,titusandronicus,1593 Can,5,titusandronicus,1593 news,5,titusandronicus,1593 surprised,5,titusandronicus,1593 dumb,5,titusandronicus,1593 lust,5,titusandronicus,1593 highly,5,titusandronicus,1593 Capitol,5,titusandronicus,1593 vow,5,titusandronicus,1593 hour,5,titusandronicus,1593 law,5,titusandronicus,1593 bind,5,titusandronicus,1593 thank,5,titusandronicus,1593 streets,5,titusandronicus,1593 babe,5,titusandronicus,1593 we'll,5,titusandronicus,1593 return,5,titusandronicus,1593 nurse,5,titusandronicus,1593 limbs,5,titusandronicus,1593 careful,5,titusandronicus,1593 learn,5,titusandronicus,1593 sister,5,titusandronicus,1593 Before,5,titusandronicus,1593 wound,5,titusandronicus,1593 Saturninus,5,titusandronicus,1593 woman,5,titusandronicus,1593 power,5,titusandronicus,1593 himself,5,titusandronicus,1593 stumps,5,titusandronicus,1593 a,261,titusandronicus,1593 brave,6,titusandronicus,1593 told,6,titusandronicus,1593 horns,6,titusandronicus,1593 Nay,6,titusandronicus,1593 advice,6,titusandronicus,1593 boys,6,titusandronicus,1593 vain,6,titusandronicus,1593 Would,6,titusandronicus,1593 world,6,titusandronicus,1593 bearing,6,titusandronicus,1593 Not,6,titusandronicus,1593 bound,6,titusandronicus,1593 enough,6,titusandronicus,1593 against,6,titusandronicus,1593 fell,6,titusandronicus,1593 deliver,6,titusandronicus,1593 Attendants,6,titusandronicus,1593 worse,6,titusandronicus,1593 heavens,6,titusandronicus,1593 Our,6,titusandronicus,1593 kill'd,6,titusandronicus,1593 sun,6,titusandronicus,1593 bride,6,titusandronicus,1593 service,6,titusandronicus,1593 wind,6,titusandronicus,1593 burning,6,titusandronicus,1593 bed,6,titusandronicus,1593 fatal,6,titusandronicus,1593 IV,6,titusandronicus,1593 sport,6,titusandronicus,1593 ears,6,titusandronicus,1593 We,6,titusandronicus,1593 gave,6,titusandronicus,1593 Sirs,6,titusandronicus,1593 people's,6,titusandronicus,1593 safe,6,titusandronicus,1593 thyself,6,titusandronicus,1593 doom,6,titusandronicus,1593 twenty,6,titusandronicus,1593 Because,6,titusandronicus,1593 choice,6,titusandronicus,1593 part,6,titusandronicus,1593 pale,6,titusandronicus,1593 hang,6,titusandronicus,1593 girl,6,titusandronicus,1593 banquet,6,titusandronicus,1593 griefs,6,titusandronicus,1593 water,6,titusandronicus,1593 below,6,titusandronicus,1593 youth,6,titusandronicus,1593 Doth,6,titusandronicus,1593 end,6,titusandronicus,1593 over,6,titusandronicus,1593 get,6,titusandronicus,1593 heavy,6,titusandronicus,1593 between,6,titusandronicus,1593 villains,6,titusandronicus,1593 followers,6,titusandronicus,1593 even,6,titusandronicus,1593 palace,6,titusandronicus,1593 fit,6,titusandronicus,1593 herself,6,titusandronicus,1593 aunt,6,titusandronicus,1593 dam,6,titusandronicus,1593 aloft,6,titusandronicus,1593 home,6,titusandronicus,1593 Troy,6,titusandronicus,1593 hunt,6,titusandronicus,1593 use,6,titusandronicus,1593 cry,6,titusandronicus,1593 wretched,6,titusandronicus,1593 whilst,6,titusandronicus,1593 ear,6,titusandronicus,1593 heinous,6,titusandronicus,1593 Away,6,titusandronicus,1593 last,6,titusandronicus,1593 being,6,titusandronicus,1593 dishonour'd,6,titusandronicus,1593 attend,6,titusandronicus,1593 behold,6,titusandronicus,1593 might,6,titusandronicus,1593 pity,7,titusandronicus,1593 mistress,7,titusandronicus,1593 joy,7,titusandronicus,1593 hell,7,titusandronicus,1593 pray,7,titusandronicus,1593 strength,7,titusandronicus,1593 head,7,titusandronicus,1593 call,7,titusandronicus,1593 another,7,titusandronicus,1593 within,7,titusandronicus,1593 Chiron,7,titusandronicus,1593 daughter,7,titusandronicus,1593 others,7,titusandronicus,1593 friend,7,titusandronicus,1593 bitter,7,titusandronicus,1593 foes,7,titusandronicus,1593 An,7,titusandronicus,1593 His,7,titusandronicus,1593 canst,7,titusandronicus,1593 stay,7,titusandronicus,1593 ease,7,titusandronicus,1593 proud,7,titusandronicus,1593 Murder,7,titusandronicus,1593 valiant,7,titusandronicus,1593 just,7,titusandronicus,1593 God,7,titusandronicus,1593 shed,7,titusandronicus,1593 feast,7,titusandronicus,1593 that's,7,titusandronicus,1593 brothers,7,titusandronicus,1593 show,7,titusandronicus,1593 enemies,7,titusandronicus,1593 new,7,titusandronicus,1593 Have,7,titusandronicus,1593 Your,7,titusandronicus,1593 none,7,titusandronicus,1593 From,7,titusandronicus,1593 Look,7,titusandronicus,1593 leaves,7,titusandronicus,1593 mind,7,titusandronicus,1593 Queen,7,titusandronicus,1593 woe,7,titusandronicus,1593 thing,7,titusandronicus,1593 still,7,titusandronicus,1593 stand,7,titusandronicus,1593 why,7,titusandronicus,1593 woes,7,titusandronicus,1593 loving,7,titusandronicus,1593 barbarous,7,titusandronicus,1593 found,7,titusandronicus,1593 serve,7,titusandronicus,1593 tale,7,titusandronicus,1593 hold,7,titusandronicus,1593 wilt,7,titusandronicus,1593 lives,7,titusandronicus,1593 swear,7,titusandronicus,1593 hounds,7,titusandronicus,1593 Titus',7,titusandronicus,1593 pigeons,7,titusandronicus,1593 first,7,titusandronicus,1593 warlike,7,titusandronicus,1593 witness,7,titusandronicus,1593 kind,7,titusandronicus,1593 kill,7,titusandronicus,1593 tomb,8,titusandronicus,1593 Alas,8,titusandronicus,1593 cheeks,8,titusandronicus,1593 full,8,titusandronicus,1593 sit,8,titusandronicus,1593 sea,8,titusandronicus,1593 read,8,titusandronicus,1593 about,8,titusandronicus,1593 feed,8,titusandronicus,1593 hence,8,titusandronicus,1593 rest,8,titusandronicus,1593 Demetrius,8,titusandronicus,1593 II,8,titusandronicus,1593 means,8,titusandronicus,1593 night,8,titusandronicus,1593 weep,8,titusandronicus,1593 grief,8,titusandronicus,1593 gone,8,titusandronicus,1593 Speak,8,titusandronicus,1593 grandsire,8,titusandronicus,1593 deep,8,titusandronicus,1593 left,8,titusandronicus,1593 husband,8,titusandronicus,1593 devil,8,titusandronicus,1593 keep,8,titusandronicus,1593 hue,8,titusandronicus,1593 forth,8,titusandronicus,1593 First,8,titusandronicus,1593 though,8,titusandronicus,1593 rape,8,titusandronicus,1593 mouth,8,titusandronicus,1593 Tribunes,8,titusandronicus,1593 Some,8,titusandronicus,1593 many,8,titusandronicus,1593 plead,8,titusandronicus,1593 brethren,8,titusandronicus,1593 once,8,titusandronicus,1593 before,8,titusandronicus,1593 same,8,titusandronicus,1593 grave,8,titusandronicus,1593 fits,8,titusandronicus,1593 says,8,titusandronicus,1593 knife,8,titusandronicus,1593 niece,8,titusandronicus,1593 fall,8,titusandronicus,1593 letter,8,titusandronicus,1593 kiss,8,titusandronicus,1593 pardon,8,titusandronicus,1593 hole,8,titusandronicus,1593 back,8,titusandronicus,1593 entreat,8,titusandronicus,1593 mother's,8,titusandronicus,1593 sleep,8,titusandronicus,1593 cannot,8,titusandronicus,1593 king,8,titusandronicus,1593 peace,9,titusandronicus,1593 villain,9,titusandronicus,1593 signs,9,titusandronicus,1593 AEMILIUS,9,titusandronicus,1593 Upon,9,titusandronicus,1593 sad,9,titusandronicus,1593 draw,9,titusandronicus,1593 Give,9,titusandronicus,1593 sorrows,9,titusandronicus,1593 MUTIUS,9,titusandronicus,1593 better,9,titusandronicus,1593 set,9,titusandronicus,1593 turn,9,titusandronicus,1593 mean,9,titusandronicus,1593 else,9,titusandronicus,1593 deeds,9,titusandronicus,1593 It,9,titusandronicus,1593 bid,9,titusandronicus,1593 heads,9,titusandronicus,1593 god,9,titusandronicus,1593 bury,9,titusandronicus,1593 Re,9,titusandronicus,1593 most,9,titusandronicus,1593 Yet,9,titusandronicus,1593 welcome,9,titusandronicus,1593 foul,9,titusandronicus,1593 PUBLIUS,9,titusandronicus,1593 slain,9,titusandronicus,1593 young,9,titusandronicus,1593 very,9,titusandronicus,1593 tribunes,9,titusandronicus,1593 could,9,titusandronicus,1593 Well,9,titusandronicus,1593 Shall,9,titusandronicus,1593 fair,9,titusandronicus,1593 Till,9,titusandronicus,1593 time,9,titusandronicus,1593 hope,9,titusandronicus,1593 lay,9,titusandronicus,1593 reason,9,titusandronicus,1593 send,9,titusandronicus,1593 sent,9,titusandronicus,1593 thoughts,9,titusandronicus,1593 nature,9,titusandronicus,1593 Tell,10,titusandronicus,1593 words,10,titusandronicus,1593 sword,10,titusandronicus,1593 kneel,10,titusandronicus,1593 side,10,titusandronicus,1593 gold,10,titusandronicus,1593 tribune,10,titusandronicus,1593 people,10,titusandronicus,1593 long,10,titusandronicus,1593 Publius,10,titusandronicus,1593 age,10,titusandronicus,1593 Than,10,titusandronicus,1593 eye,10,titusandronicus,1593 near,10,titusandronicus,1593 court,10,titusandronicus,1593 way,10,titusandronicus,1593 Sweet,10,titusandronicus,1593 uncle,10,titusandronicus,1593 talk,10,titusandronicus,1593 lovely,10,titusandronicus,1593 madam,10,titusandronicus,1593 Where,10,titusandronicus,1593 shame,10,titusandronicus,1593 Will,11,titusandronicus,1593 every,11,titusandronicus,1593 soul,11,titusandronicus,1593 Whose,11,titusandronicus,1593 sure,11,titusandronicus,1593 body,11,titusandronicus,1593 There,11,titusandronicus,1593 Do,11,titusandronicus,1593 any,11,titusandronicus,1593 place,11,titusandronicus,1593 See,11,titusandronicus,1593 myself,11,titusandronicus,1593 bloody,11,titusandronicus,1593 wrongs,11,titusandronicus,1593 face,11,titusandronicus,1593 Even,11,titusandronicus,1593 fly,11,titusandronicus,1593 gods,11,titusandronicus,1593 Romans,12,titusandronicus,1593 gracious,12,titusandronicus,1593 cause,12,titusandronicus,1593 fear,12,titusandronicus,1593 empress',12,titusandronicus,1593 Ah,12,titusandronicus,1593 Be,12,titusandronicus,1593 enter,12,titusandronicus,1593 Good,12,titusandronicus,1593 'tis,12,titusandronicus,1593 bear,12,titusandronicus,1593 again,12,titusandronicus,1593 comes,12,titusandronicus,1593 think,12,titusandronicus,1593 off,12,titusandronicus,1593 heard,12,titusandronicus,1593 please,12,titusandronicus,1593 till,12,titusandronicus,1593 unto,12,titusandronicus,1593 emperor's,12,titusandronicus,1593 die,12,titusandronicus,1593 black,13,titusandronicus,1593 These,13,titusandronicus,1593 bring,13,titusandronicus,1593 By,13,titusandronicus,1593 Of,13,titusandronicus,1593 Is,13,titusandronicus,1593 pit,13,titusandronicus,1593 Which,13,titusandronicus,1593 been,13,titusandronicus,1593 brought,13,titusandronicus,1593 They,13,titusandronicus,1593 who,13,titusandronicus,1593 word,13,titusandronicus,1593 thousand,13,titusandronicus,1593 great,13,titusandronicus,1593 house,13,titusandronicus,1593 poor,13,titusandronicus,1593 too,13,titusandronicus,1593 shalt,13,titusandronicus,1593 other,13,titusandronicus,1593 my,269,titusandronicus,1593 ',14,titusandronicus,1593 much,14,titusandronicus,1593 sight,14,titusandronicus,1593 hear,14,titusandronicus,1593 Who,14,titusandronicus,1593 Aside,14,titusandronicus,1593 Go,14,titusandronicus,1593 So,14,titusandronicus,1593 deed,14,titusandronicus,1593 dear,14,titusandronicus,1593 Revenge,14,titusandronicus,1593 grace,14,titusandronicus,1593 revenge,14,titusandronicus,1593 right,14,titusandronicus,1593 ACT,14,titusandronicus,1593 child,14,titusandronicus,1593 queen,14,titusandronicus,1593 whom,14,titusandronicus,1593 hither,14,titusandronicus,1593 mad,14,titusandronicus,1593 leave,14,titusandronicus,1593 and,526,titusandronicus,1593 which,15,titusandronicus,1593 help,15,titusandronicus,1593 Nor,15,titusandronicus,1593 therefore,15,titusandronicus,1593 Goth,15,titusandronicus,1593 earth,15,titusandronicus,1593 gentle,15,titusandronicus,1593 She,15,titusandronicus,1593 Lord,15,titusandronicus,1593 sorrow,15,titusandronicus,1593 'Tis,15,titusandronicus,1593 old,15,titusandronicus,1593 find,15,titusandronicus,1593 Let,15,titusandronicus,1593 cut,15,titusandronicus,1593 eyes,15,titusandronicus,1593 Nurse,15,titusandronicus,1593 men,15,titusandronicus,1593 true,15,titusandronicus,1593 SCENE,15,titusandronicus,1593 Exit,15,titusandronicus,1593 Saturnine,16,titusandronicus,1593 sir,16,titusandronicus,1593 heaven,16,titusandronicus,1593 look,16,titusandronicus,1593 You,16,titusandronicus,1593 Thou,16,titusandronicus,1593 arms,16,titusandronicus,1593 Clown,16,titusandronicus,1593 Thy,16,titusandronicus,1593 Here,17,titusandronicus,1593 name,17,titusandronicus,1593 dost,17,titusandronicus,1593 yet,17,titusandronicus,1593 justice,17,titusandronicus,1593 own,17,titusandronicus,1593 such,18,titusandronicus,1593 With,18,titusandronicus,1593 both,18,titusandronicus,1593 tell,18,titusandronicus,1593 dead,18,titusandronicus,1593 Moor,18,titusandronicus,1593 ye,18,titusandronicus,1593 where,18,titusandronicus,1593 into,18,titusandronicus,1593 Roman,18,titusandronicus,1593 Bassianus,18,titusandronicus,1593 When,18,titusandronicus,1593 friends,19,titusandronicus,1593 Young,19,titusandronicus,1593 mother,19,titusandronicus,1593 No,19,titusandronicus,1593 nor,19,titusandronicus,1593 father's,19,titusandronicus,1593 thine,19,titusandronicus,1593 ever,19,titusandronicus,1593 day,19,titusandronicus,1593 honour,20,titusandronicus,1593 MARTIUS,20,titusandronicus,1593 Ay,20,titusandronicus,1593 tongue,20,titusandronicus,1593 How,20,titusandronicus,1593 out,20,titusandronicus,1593 take,20,titusandronicus,1593 Rome's,20,titusandronicus,1593 QUINTUS,20,titusandronicus,1593 live,20,titusandronicus,1593 there,21,titusandronicus,1593 art,21,titusandronicus,1593 father,21,titusandronicus,1593 In,22,titusandronicus,1593 Or,22,titusandronicus,1593 two,22,titusandronicus,1593 away,23,titusandronicus,1593 never,23,titusandronicus,1593 He,23,titusandronicus,1593 blood,23,titusandronicus,1593 lords,23,titusandronicus,1593 can,24,titusandronicus,1593 doth,24,titusandronicus,1593 boy,25,titusandronicus,1593 Aaron,25,titusandronicus,1593 If,25,titusandronicus,1593 love,25,titusandronicus,1593 give,25,titusandronicus,1593 up,25,titusandronicus,1593 speak,25,titusandronicus,1593 thus,25,titusandronicus,1593 Now,26,titusandronicus,1593 death,26,titusandronicus,1593 Exeunt,26,titusandronicus,1593 done,26,titusandronicus,1593 made,26,titusandronicus,1593 BASSIANUS,26,titusandronicus,1593 Tamora,27,titusandronicus,1593 had,27,titusandronicus,1593 down,27,titusandronicus,1593 well,27,titusandronicus,1593 life,28,titusandronicus,1593 empress,28,titusandronicus,1593 hands,28,titusandronicus,1593 one,28,titusandronicus,1593 man,28,titusandronicus,1593 Come,29,titusandronicus,1593 As,29,titusandronicus,1593 Then,29,titusandronicus,1593 did,29,titusandronicus,1593 sweet,30,titusandronicus,1593 am,31,titusandronicus,1593 noble,31,titusandronicus,1593 were,31,titusandronicus,1593 some,32,titusandronicus,1593 son,32,titusandronicus,1593 go,32,titusandronicus,1593 when,32,titusandronicus,1593 upon,33,titusandronicus,1593 must,33,titusandronicus,1593 than,33,titusandronicus,1593 hast,33,titusandronicus,1593 or,34,titusandronicus,1593 should,34,titusandronicus,1593 mine,34,titusandronicus,1593 say,35,titusandronicus,1593 an,35,titusandronicus,1593 Goths,35,titusandronicus,1593 how,35,titusandronicus,1593 I'll,35,titusandronicus,1593 good,36,titusandronicus,1593 LAVINIA,36,titusandronicus,1593 tears,37,titusandronicus,1593 Titus,37,titusandronicus,1593 may,37,titusandronicus,1593 brother,38,titusandronicus,1593 Why,38,titusandronicus,1593 heart,38,titusandronicus,1593 was,39,titusandronicus,1593 Lavinia,40,titusandronicus,1593 then,41,titusandronicus,1593 know,41,titusandronicus,1593 Marcus,41,titusandronicus,1593 make,41,titusandronicus,1593 see,42,titusandronicus,1593 This,42,titusandronicus,1593 Enter,43,titusandronicus,1593 Lucius,43,titusandronicus,1593 come,43,titusandronicus,1593 like,44,titusandronicus,1593 would,44,titusandronicus,1593 A,45,titusandronicus,1593 What,45,titusandronicus,1593 And,301,titusandronicus,1593 CHIRON,46,titusandronicus,1593 Andronicus,46,titusandronicus,1593 now,46,titusandronicus,1593 emperor,48,titusandronicus,1593 lord,50,titusandronicus,1593 us,50,titusandronicus,1593 hand,50,titusandronicus,1593 these,51,titusandronicus,1593 but,51,titusandronicus,1593 hath,51,titusandronicus,1593 My,52,titusandronicus,1593 more,52,titusandronicus,1593 if,52,titusandronicus,1593 sons,53,titusandronicus,1593 For,54,titusandronicus,1593 DEMETRIUS,55,titusandronicus,1593 of,312,titusandronicus,1593 she,57,titusandronicus,1593 at,57,titusandronicus,1593 they,58,titusandronicus,1593 here,59,titusandronicus,1593 what,59,titusandronicus,1593 TAMORA,64,titusandronicus,1593 no,64,titusandronicus,1593 from,64,titusandronicus,1593 But,65,titusandronicus,1593 SATURNINUS,66,titusandronicus,1593 the,579,titusandronicus,1593 let,68,titusandronicus,1593 O,69,titusandronicus,1593 shall,70,titusandronicus,1593 by,72,titusandronicus,1593 AARON,72,titusandronicus,1593 he,73,titusandronicus,1593 we,73,titusandronicus,1593 their,75,titusandronicus,1593 do,76,titusandronicus,1593 on,76,titusandronicus,1593 The,77,titusandronicus,1593 them,79,titusandronicus,1593 are,79,titusandronicus,1593 our,80,titusandronicus,1593 MARCUS,83,titusandronicus,1593 That,86,titusandronicus,1593 LUCIUS,87,titusandronicus,1593 as,88,titusandronicus,1593 so,88,titusandronicus,1593 Rome,92,titusandronicus,1593 To,94,titusandronicus,1593 all,99,titusandronicus,1593 him,111,titusandronicus,1593 thee,113,titusandronicus,1593 your,120,titusandronicus,1593 will,121,titusandronicus,1593 have,124,titusandronicus,1593 be,139,titusandronicus,1593 her,142,titusandronicus,1593 it,146,titusandronicus,1593 is,149,titusandronicus,1593 to,405,titusandronicus,1593 I,407,titusandronicus,1593 his,152,titusandronicus,1593 TITUS,156,titusandronicus,1593 thou,157,titusandronicus,1593 for,162,titusandronicus,1593 not,166,titusandronicus,1593 this,170,titusandronicus,1593 thy,190,titusandronicus,1593 that,194,titusandronicus,1593 me,196,titusandronicus,1593 ANDRONICUS,202,titusandronicus,1593 you,216,titusandronicus,1593 with,247,titusandronicus,1593 silken,1,loveslabourslost,1594 Alencon,1,loveslabourslost,1594 answered,1,loveslabourslost,1594 'all,1,loveslabourslost,1594 religion,1,loveslabourslost,1594 deputy,1,loveslabourslost,1594 event,1,loveslabourslost,1594 ribbon,1,loveslabourslost,1594 heed,1,loveslabourslost,1594 grandam,1,loveslabourslost,1594 brawl,1,loveslabourslost,1594 Wide,1,loveslabourslost,1594 violates,1,loveslabourslost,1594 possibly,1,loveslabourslost,1594 villany,1,loveslabourslost,1594 pitched,1,loveslabourslost,1594 posteriors,1,loveslabourslost,1594 daws,1,loveslabourslost,1594 clouded,1,loveslabourslost,1594 Reigns,1,loveslabourslost,1594 indited,1,loveslabourslost,1594 B,1,loveslabourslost,1594 scraps,1,loveslabourslost,1594 Despise,1,loveslabourslost,1594 drawing,1,loveslabourslost,1594 verba,1,loveslabourslost,1594 pennyworth,1,loveslabourslost,1594 guard,1,loveslabourslost,1594 meed,1,loveslabourslost,1594 Youth,1,loveslabourslost,1594 declares,1,loveslabourslost,1594 lamentable,1,loveslabourslost,1594 shrouded,1,loveslabourslost,1594 c,1,loveslabourslost,1594 invisible,1,loveslabourslost,1594 o,1,loveslabourslost,1594 address'd,1,loveslabourslost,1594 taking,1,loveslabourslost,1594 i,1,loveslabourslost,1594 u,1,loveslabourslost,1594 y,1,loveslabourslost,1594 dames,1,loveslabourslost,1594 malmsey,1,loveslabourslost,1594 description,1,loveslabourslost,1594 beadle,1,loveslabourslost,1594 Nip,1,loveslabourslost,1594 woolward,1,loveslabourslost,1594 'What's,1,loveslabourslost,1594 fools',1,loveslabourslost,1594 for't,1,loveslabourslost,1594 Loves,1,loveslabourslost,1594 malcontents,1,loveslabourslost,1594 belongs,1,loveslabourslost,1594 Hear,1,loveslabourslost,1594 infamy,1,loveslabourslost,1594 Comfort,1,loveslabourslost,1594 truer,1,loveslabourslost,1594 schoolboy's,1,loveslabourslost,1594 fame's,1,loveslabourslost,1594 Devise,1,loveslabourslost,1594 wears,1,loveslabourslost,1594 brass,1,loveslabourslost,1594 votary,1,loveslabourslost,1594 raw,1,loveslabourslost,1594 planted,1,loveslabourslost,1594 business,1,loveslabourslost,1594 Impose,1,loveslabourslost,1594 Alas,1,loveslabourslost,1594 treasure,1,loveslabourslost,1594 hinder,1,loveslabourslost,1594 Courses,1,loveslabourslost,1594 obtain'd,1,loveslabourslost,1594 alike,1,loveslabourslost,1594 shapeless,1,loveslabourslost,1594 excrement,1,loveslabourslost,1594 Fie,1,loveslabourslost,1594 torn,1,loveslabourslost,1594 entire,1,loveslabourslost,1594 honours,1,loveslabourslost,1594 female,1,loveslabourslost,1594 Fit,1,loveslabourslost,1594 lawful,1,loveslabourslost,1594 Whether,1,loveslabourslost,1594 Paints,1,loveslabourslost,1594 honourably,1,loveslabourslost,1594 Writ,1,loveslabourslost,1594 vane,1,loveslabourslost,1594 suspicious,1,loveslabourslost,1594 sympathized,1,loveslabourslost,1594 haste,1,loveslabourslost,1594 Villain,1,loveslabourslost,1594 replication,1,loveslabourslost,1594 bones,1,loveslabourslost,1594 horse',1,loveslabourslost,1594 culled,1,loveslabourslost,1594 offended,1,loveslabourslost,1594 fructify,1,loveslabourslost,1594 mend,1,loveslabourslost,1594 branch,1,loveslabourslost,1594 heart's,1,loveslabourslost,1594 stopp'd,1,loveslabourslost,1594 apprehended,1,loveslabourslost,1594 triumphing,1,loveslabourslost,1594 speeds,1,loveslabourslost,1594 assistance,1,loveslabourslost,1594 roar,1,loveslabourslost,1594 express,1,loveslabourslost,1594 epitaph,1,loveslabourslost,1594 devouring,1,loveslabourslost,1594 painter,1,loveslabourslost,1594 held,1,loveslabourslost,1594 mell,1,loveslabourslost,1594 Never,1,loveslabourslost,1594 hell,1,loveslabourslost,1594 Lord's,1,loveslabourslost,1594 Exhalest,1,loveslabourslost,1594 swifter,1,loveslabourslost,1594 drowsy,1,loveslabourslost,1594 violets,1,loveslabourslost,1594 pencils,1,loveslabourslost,1594 truly,1,loveslabourslost,1594 dish,1,loveslabourslost,1594 single,1,loveslabourslost,1594 drowns,1,loveslabourslost,1594 younger,1,loveslabourslost,1594 darkness,1,loveslabourslost,1594 Subscribes,1,loveslabourslost,1594 'virgin,1,loveslabourslost,1594 joint,1,loveslabourslost,1594 easier,1,loveslabourslost,1594 philosophy,1,loveslabourslost,1594 richest,1,loveslabourslost,1594 infringe,1,loveslabourslost,1594 ploughmen's,1,loveslabourslost,1594 Despite,1,loveslabourslost,1594 imitate,1,loveslabourslost,1594 wherewith,1,loveslabourslost,1594 lodging,1,loveslabourslost,1594 buttonhole,1,loveslabourslost,1594 celestial,1,loveslabourslost,1594 Black,1,loveslabourslost,1594 o'erheard,1,loveslabourslost,1594 Cried,1,loveslabourslost,1594 roes,1,loveslabourslost,1594 sanguis,1,loveslabourslost,1594 blossom,1,loveslabourslost,1594 prisoner,1,loveslabourslost,1594 grim,1,loveslabourslost,1594 Help,1,loveslabourslost,1594 surveyest,1,loveslabourslost,1594 gorgeous,1,loveslabourslost,1594 drum,1,loveslabourslost,1594 rejoiceth,1,loveslabourslost,1594 honourable,1,loveslabourslost,1594 Fat,1,loveslabourslost,1594 brook,1,loveslabourslost,1594 offer,1,loveslabourslost,1594 intelligo,1,loveslabourslost,1594 scythe's,1,loveslabourslost,1594 looked,1,loveslabourslost,1594 accidentally,1,loveslabourslost,1594 revolutions,1,loveslabourslost,1594 angels,1,loveslabourslost,1594 sneaping,1,loveslabourslost,1594 advance,1,loveslabourslost,1594 forbidden,1,loveslabourslost,1594 sugar,1,loveslabourslost,1594 appear,1,loveslabourslost,1594 flow,1,loveslabourslost,1594 omitted,1,loveslabourslost,1594 coated,1,loveslabourslost,1594 Biron's,1,loveslabourslost,1594 although,1,loveslabourslost,1594 fashioning,1,loveslabourslost,1594 drink,1,loveslabourslost,1594 tittles,1,loveslabourslost,1594 libbard's,1,loveslabourslost,1594 nought,1,loveslabourslost,1594 cheat,1,loveslabourslost,1594 sour,1,loveslabourslost,1594 pied,1,loveslabourslost,1594 worms,1,loveslabourslost,1594 prey,1,loveslabourslost,1594 Priscian,1,loveslabourslost,1594 yonder,1,loveslabourslost,1594 preambulate,1,loveslabourslost,1594 timbered,1,loveslabourslost,1594 solemnized,1,loveslabourslost,1594 mete,1,loveslabourslost,1594 sort,1,loveslabourslost,1594 patron,1,loveslabourslost,1594 lieu,1,loveslabourslost,1594 consorted,1,loveslabourslost,1594 significant,1,loveslabourslost,1594 congratulate,1,loveslabourslost,1594 rated,1,loveslabourslost,1594 vara,1,loveslabourslost,1594 become,1,loveslabourslost,1594 bowler,1,loveslabourslost,1594 whoreson,1,loveslabourslost,1594 specialties,1,loveslabourslost,1594 curious,1,loveslabourslost,1594 PERSONAE,1,loveslabourslost,1594 wither,1,loveslabourslost,1594 greyhound,1,loveslabourslost,1594 boy's,1,loveslabourslost,1594 mute,1,loveslabourslost,1594 partest,1,loveslabourslost,1594 'Thanks,1,loveslabourslost,1594 weathercock,1,loveslabourslost,1594 spare,1,loveslabourslost,1594 saved,1,loveslabourslost,1594 vary,1,loveslabourslost,1594 baited,1,loveslabourslost,1594 lightning,1,loveslabourslost,1594 cast,1,loveslabourslost,1594 crutch,1,loveslabourslost,1594 Jaquenetta's,1,loveslabourslost,1594 teacher,1,loveslabourslost,1594 abhominable,1,loveslabourslost,1594 teaches,1,loveslabourslost,1594 Pretty,1,loveslabourslost,1594 utter'd,1,loveslabourslost,1594 softly,1,loveslabourslost,1594 song,1,loveslabourslost,1594 argues,1,loveslabourslost,1594 pleasing,1,loveslabourslost,1594 breach,1,loveslabourslost,1594 lustre,1,loveslabourslost,1594 stirring,1,loveslabourslost,1594 caelo,1,loveslabourslost,1594 law's,1,loveslabourslost,1594 cauf,1,loveslabourslost,1594 delivered,1,loveslabourslost,1594 parson,1,loveslabourslost,1594 strength,1,loveslabourslost,1594 rescues,1,loveslabourslost,1594 graces,1,loveslabourslost,1594 sever,1,loveslabourslost,1594 Timon,1,loveslabourslost,1594 eruptions,1,loveslabourslost,1594 repasture,1,loveslabourslost,1594 giant,1,loveslabourslost,1594 Apollo's,1,loveslabourslost,1594 hereupon,1,loveslabourslost,1594 conscience,1,loveslabourslost,1594 skilfully,1,loveslabourslost,1594 amazes,1,loveslabourslost,1594 pins,1,loveslabourslost,1594 guards,1,loveslabourslost,1594 Amazed,1,loveslabourslost,1594 sola,1,loveslabourslost,1594 Ruminat,1,loveslabourslost,1594 sold,1,loveslabourslost,1594 Young,1,loveslabourslost,1594 displayed,1,loveslabourslost,1594 Excuse,1,loveslabourslost,1594 sat,1,loveslabourslost,1594 bearing,1,loveslabourslost,1594 precor,1,loveslabourslost,1594 backward,1,loveslabourslost,1594 Give,1,loveslabourslost,1594 hour's,1,loveslabourslost,1594 highness,1,loveslabourslost,1594 Argus,1,loveslabourslost,1594 repast,1,loveslabourslost,1594 opposed,1,loveslabourslost,1594 lamentation,1,loveslabourslost,1594 aforehand,1,loveslabourslost,1594 Caesar's,1,loveslabourslost,1594 witnesseth,1,loveslabourslost,1594 incensed,1,loveslabourslost,1594 lily,1,loveslabourslost,1594 caps,1,loveslabourslost,1594 fixing,1,loveslabourslost,1594 Keep,1,loveslabourslost,1594 'which,1,loveslabourslost,1594 purse,1,loveslabourslost,1594 subjects,1,loveslabourslost,1594 overcome,1,loveslabourslost,1594 trumpet,1,loveslabourslost,1594 cockl'd,1,loveslabourslost,1594 Woo,1,loveslabourslost,1594 revels,1,loveslabourslost,1594 Honey,1,loveslabourslost,1594 worthies,1,loveslabourslost,1594 sententious,1,loveslabourslost,1594 rewarded,1,loveslabourslost,1594 dwarf,1,loveslabourslost,1594 trotting,1,loveslabourslost,1594 policy,1,loveslabourslost,1594 town,1,loveslabourslost,1594 demands,1,loveslabourslost,1594 soonest,1,loveslabourslost,1594 visages,1,loveslabourslost,1594 pipe,1,loveslabourslost,1594 officers,1,loveslabourslost,1594 glass,1,loveslabourslost,1594 finding,1,loveslabourslost,1594 visaged,1,loveslabourslost,1594 chimney,1,loveslabourslost,1594 Climb,1,loveslabourslost,1594 snails,1,loveslabourslost,1594 students,1,loveslabourslost,1594 infringed,1,loveslabourslost,1594 Ethiope,1,loveslabourslost,1594 Cain's,1,loveslabourslost,1594 likeness,1,loveslabourslost,1594 gelded,1,loveslabourslost,1594 affectation,1,loveslabourslost,1594 Mercade,1,loveslabourslost,1594 noise,1,loveslabourslost,1594 soft,1,loveslabourslost,1594 richer,1,loveslabourslost,1594 toys,1,loveslabourslost,1594 Avaunt,1,loveslabourslost,1594 twas,1,loveslabourslost,1594 bombast,1,loveslabourslost,1594 Stuck,1,loveslabourslost,1594 purposeth,1,loveslabourslost,1594 becoming,1,loveslabourslost,1594 wail,1,loveslabourslost,1594 unhold,1,loveslabourslost,1594 Imitari,1,loveslabourslost,1594 moonshine,1,loveslabourslost,1594 Belonging,1,loveslabourslost,1594 Joshua,1,loveslabourslost,1594 towns,1,loveslabourslost,1594 view,1,loveslabourslost,1594 Perchance,1,loveslabourslost,1594 parson's,1,loveslabourslost,1594 godfathers,1,loveslabourslost,1594 seeking,1,loveslabourslost,1594 conceits,1,loveslabourslost,1594 Twenty,1,loveslabourslost,1594 weaker,1,loveslabourslost,1594 Duke,1,loveslabourslost,1594 attainder,1,loveslabourslost,1594 jumps,1,loveslabourslost,1594 compliment,1,loveslabourslost,1594 Oft,1,loveslabourslost,1594 domineering,1,loveslabourslost,1594 deer's,1,loveslabourslost,1594 forage,1,loveslabourslost,1594 Flat,1,loveslabourslost,1594 conceive,1,loveslabourslost,1594 indignity,1,loveslabourslost,1594 contempts,1,loveslabourslost,1594 warrant,1,loveslabourslost,1594 petitioner,1,loveslabourslost,1594 Minime,1,loveslabourslost,1594 knavish,1,loveslabourslost,1594 impossible,1,loveslabourslost,1594 aged,1,loveslabourslost,1594 accompt,1,loveslabourslost,1594 maidens,1,loveslabourslost,1594 tapster,1,loveslabourslost,1594 key,1,loveslabourslost,1594 purses,1,loveslabourslost,1594 ages,1,loveslabourslost,1594 laugh'd,1,loveslabourslost,1594 subdues,1,loveslabourslost,1594 Change,1,loveslabourslost,1594 Cophetua,1,loveslabourslost,1594 perge,1,loveslabourslost,1594 ourself,1,loveslabourslost,1594 Concolinel,1,loveslabourslost,1594 bastard,1,loveslabourslost,1594 tooth,1,loveslabourslost,1594 deity,1,loveslabourslost,1594 paunches,1,loveslabourslost,1594 meetings,1,loveslabourslost,1594 wall,1,loveslabourslost,1594 illustrious,1,loveslabourslost,1594 monarch,1,loveslabourslost,1594 vice,1,loveslabourslost,1594 virtuous,1,loveslabourslost,1594 Forerun,1,loveslabourslost,1594 vici,1,loveslabourslost,1594 whipping,1,loveslabourslost,1594 carrying,1,loveslabourslost,1594 Write,1,loveslabourslost,1594 mustachio,1,loveslabourslost,1594 Dutchman,1,loveslabourslost,1594 coctus,1,loveslabourslost,1594 shrimp,1,loveslabourslost,1594 vidi,1,loveslabourslost,1594 savouring,1,loveslabourslost,1594 beasts,1,loveslabourslost,1594 geese,1,loveslabourslost,1594 fell,1,loveslabourslost,1594 Walk,1,loveslabourslost,1594 manager,1,loveslabourslost,1594 abused,1,loveslabourslost,1594 frosts,1,loveslabourslost,1594 observances,1,loveslabourslost,1594 concern,1,loveslabourslost,1594 betrayed,1,loveslabourslost,1594 council,1,loveslabourslost,1594 embrace,1,loveslabourslost,1594 rubb'd,1,loveslabourslost,1594 educated,1,loveslabourslost,1594 pigeon,1,loveslabourslost,1594 delivers,1,loveslabourslost,1594 bookmates,1,loveslabourslost,1594 sol,1,loveslabourslost,1594 Studies,1,loveslabourslost,1594 terra,1,loveslabourslost,1594 sod,1,loveslabourslost,1594 Ovidius,1,loveslabourslost,1594 confident,1,loveslabourslost,1594 murderer,1,loveslabourslost,1594 sycamore,1,loveslabourslost,1594 nourished,1,loveslabourslost,1594 ratherest,1,loveslabourslost,1594 Gall,1,loveslabourslost,1594 subject,1,loveslabourslost,1594 knotted,1,loveslabourslost,1594 undressed,1,loveslabourslost,1594 Veal,1,loveslabourslost,1594 fangled,1,loveslabourslost,1594 wight,1,loveslabourslost,1594 Thump,1,loveslabourslost,1594 counsel,1,loveslabourslost,1594 nominate,1,loveslabourslost,1594 scout,1,loveslabourslost,1594 attends,1,loveslabourslost,1594 admittance,1,loveslabourslost,1594 tofore,1,loveslabourslost,1594 dazzling,1,loveslabourslost,1594 videlicet,1,loveslabourslost,1594 bow'd,1,loveslabourslost,1594 interview,1,loveslabourslost,1594 design,1,loveslabourslost,1594 acquainted,1,loveslabourslost,1594 second,1,loveslabourslost,1594 deserts,1,loveslabourslost,1594 Hereby,1,loveslabourslost,1594 codpieces,1,loveslabourslost,1594 commends,1,loveslabourslost,1594 wings,1,loveslabourslost,1594 hatch'd,1,loveslabourslost,1594 parish,1,loveslabourslost,1594 Music,1,loveslabourslost,1594 quondam,1,loveslabourslost,1594 Other,1,loveslabourslost,1594 Vilely,1,loveslabourslost,1594 dally,1,loveslabourslost,1594 unvisited,1,loveslabourslost,1594 mother,1,loveslabourslost,1594 stuff,1,loveslabourslost,1594 play'd,1,loveslabourslost,1594 indubitate,1,loveslabourslost,1594 confronted,1,loveslabourslost,1594 smaller,1,loveslabourslost,1594 rackers,1,loveslabourslost,1594 stuck,1,loveslabourslost,1594 skipping,1,loveslabourslost,1594 coach,1,loveslabourslost,1594 esteem,1,loveslabourslost,1594 offence,1,loveslabourslost,1594 taught,1,loveslabourslost,1594 merit,1,loveslabourslost,1594 Needs,1,loveslabourslost,1594 bleach,1,loveslabourslost,1594 standest,1,loveslabourslost,1594 fulfills,1,loveslabourslost,1594 passes,1,loveslabourslost,1594 vanish,1,loveslabourslost,1594 turning,1,loveslabourslost,1594 piece,1,loveslabourslost,1594 dances,1,loveslabourslost,1594 monster,1,loveslabourslost,1594 confounded,1,loveslabourslost,1594 climbing,1,loveslabourslost,1594 falleth,1,loveslabourslost,1594 standeth,1,loveslabourslost,1594 courtier,1,loveslabourslost,1594 twelve,1,loveslabourslost,1594 Normandy,1,loveslabourslost,1594 ways,1,loveslabourslost,1594 unguem,1,loveslabourslost,1594 bore,1,loveslabourslost,1594 Tush,1,loveslabourslost,1594 brags,1,loveslabourslost,1594 shilling,1,loveslabourslost,1594 civil,1,loveslabourslost,1594 ingenuous,1,loveslabourslost,1594 'Lord,1,loveslabourslost,1594 hornbook,1,loveslabourslost,1594 absence,1,loveslabourslost,1594 reek,1,loveslabourslost,1594 dashed,1,loveslabourslost,1594 runs,1,loveslabourslost,1594 exceeding,1,loveslabourslost,1594 Wise,1,loveslabourslost,1594 feat,1,loveslabourslost,1594 Wish,1,loveslabourslost,1594 relate,1,loveslabourslost,1594 envious,1,loveslabourslost,1594 encounter,1,loveslabourslost,1594 Hannibal,1,loveslabourslost,1594 Adriano,1,loveslabourslost,1594 Disfigure,1,loveslabourslost,1594 loiterers,1,loveslabourslost,1594 mark'd,1,loveslabourslost,1594 austere,1,loveslabourslost,1594 untrue,1,loveslabourslost,1594 pease,1,loveslabourslost,1594 swoon,1,loveslabourslost,1594 pageant,1,loveslabourslost,1594 scoff,1,loveslabourslost,1594 thrasonical,1,loveslabourslost,1594 Video,1,loveslabourslost,1594 verbosity,1,loveslabourslost,1594 sub,1,loveslabourslost,1594 cries,1,loveslabourslost,1594 wreathed,1,loveslabourslost,1594 overthrown,1,loveslabourslost,1594 shining,1,loveslabourslost,1594 sup,1,loveslabourslost,1594 brace,1,loveslabourslost,1594 companion,1,loveslabourslost,1594 Fauste,1,loveslabourslost,1594 feed,1,loveslabourslost,1594 rust,1,loveslabourslost,1594 painfully,1,loveslabourslost,1594 feel,1,loveslabourslost,1594 nebor,1,loveslabourslost,1594 infinite,1,loveslabourslost,1594 manus,1,loveslabourslost,1594 beaten,1,loveslabourslost,1594 directed,1,loveslabourslost,1594 saucy,1,loveslabourslost,1594 imperator,1,loveslabourslost,1594 Vow,1,loveslabourslost,1594 infallible,1,loveslabourslost,1594 Ergo,1,loveslabourslost,1594 behaviors,1,loveslabourslost,1594 intimate,1,loveslabourslost,1594 Old,1,loveslabourslost,1594 passion's,1,loveslabourslost,1594 protestation,1,loveslabourslost,1594 choose,1,loveslabourslost,1594 rubbing,1,loveslabourslost,1594 others,1,loveslabourslost,1594 claws,1,loveslabourslost,1594 Suggested,1,loveslabourslost,1594 porter,1,loveslabourslost,1594 manor,1,loveslabourslost,1594 ward,1,loveslabourslost,1594 Devils,1,loveslabourslost,1594 language,1,loveslabourslost,1594 soever,1,loveslabourslost,1594 Dark,1,loveslabourslost,1594 ushered,1,loveslabourslost,1594 Blow,1,loveslabourslost,1594 certes,1,loveslabourslost,1594 Cerberus,1,loveslabourslost,1594 seems,1,loveslabourslost,1594 latter,1,loveslabourslost,1594 rooks,1,loveslabourslost,1594 enjoined,1,loveslabourslost,1594 rent,1,loveslabourslost,1594 expressly,1,loveslabourslost,1594 catch'd,1,loveslabourslost,1594 warily,1,loveslabourslost,1594 wipe,1,loveslabourslost,1594 quasi,1,loveslabourslost,1594 visor,1,loveslabourslost,1594 wholly,1,loveslabourslost,1594 bolt,1,loveslabourslost,1594 ladyship's,1,loveslabourslost,1594 puff'd,1,loveslabourslost,1594 transformed,1,loveslabourslost,1594 immaculate,1,loveslabourslost,1594 requests,1,loveslabourslost,1594 seest,1,loveslabourslost,1594 Immediately,1,loveslabourslost,1594 jerks,1,loveslabourslost,1594 cormorant,1,loveslabourslost,1594 throws,1,loveslabourslost,1594 strewing,1,loveslabourslost,1594 northern,1,loveslabourslost,1594 Fetch,1,loveslabourslost,1594 seem'd,1,loveslabourslost,1594 pierce,1,loveslabourslost,1594 window,1,loveslabourslost,1594 ambassador,1,loveslabourslost,1594 wave,1,loveslabourslost,1594 summon,1,loveslabourslost,1594 stop,1,loveslabourslost,1594 harbour,1,loveslabourslost,1594 wars,1,loveslabourslost,1594 coast,1,loveslabourslost,1594 breeding,1,loveslabourslost,1594 cunning,1,loveslabourslost,1594 during,1,loveslabourslost,1594 Frances,1,loveslabourslost,1594 Deceive,1,loveslabourslost,1594 meal,1,loveslabourslost,1594 office,1,loveslabourslost,1594 Achilles,1,loveslabourslost,1594 Turning,1,loveslabourslost,1594 lunatic,1,loveslabourslost,1594 steep,1,loveslabourslost,1594 observe,1,loveslabourslost,1594 Blessed,1,loveslabourslost,1594 infallibly,1,loveslabourslost,1594 anne,1,loveslabourslost,1594 framed,1,loveslabourslost,1594 canary,1,loveslabourslost,1594 compared,1,loveslabourslost,1594 praises,1,loveslabourslost,1594 wayward,1,loveslabourslost,1594 judgement,1,loveslabourslost,1594 objects,1,loveslabourslost,1594 phantasime,1,loveslabourslost,1594 nickname,1,loveslabourslost,1594 deserves,1,loveslabourslost,1594 seller's,1,loveslabourslost,1594 situate,1,loveslabourslost,1594 aspect,1,loveslabourslost,1594 opening,1,loveslabourslost,1594 parti,1,loveslabourslost,1594 wherefore,1,loveslabourslost,1594 nail,1,loveslabourslost,1594 mistaken,1,loveslabourslost,1594 ycliped,1,loveslabourslost,1594 ventricle,1,loveslabourslost,1594 ha',1,loveslabourslost,1594 chirrah,1,loveslabourslost,1594 pretia,1,loveslabourslost,1594 define,1,loveslabourslost,1594 slaves,1,loveslabourslost,1594 burning,1,loveslabourslost,1594 gratify,1,loveslabourslost,1594 statutes,1,loveslabourslost,1594 precise,1,loveslabourslost,1594 precisely,1,loveslabourslost,1594 hap,1,loveslabourslost,1594 enchanting,1,loveslabourslost,1594 resembling,1,loveslabourslost,1594 abortive,1,loveslabourslost,1594 snuff,1,loveslabourslost,1594 A',1,loveslabourslost,1594 sweeter,1,loveslabourslost,1594 Draws,1,loveslabourslost,1594 defile,1,loveslabourslost,1594 utter,1,loveslabourslost,1594 offend,1,loveslabourslost,1594 understandeth,1,loveslabourslost,1594 hay,1,loveslabourslost,1594 Sick,1,loveslabourslost,1594 crabs,1,loveslabourslost,1594 tendering,1,loveslabourslost,1594 foresaid,1,loveslabourslost,1594 Celestial,1,loveslabourslost,1594 granted,1,loveslabourslost,1594 'Twere,1,loveslabourslost,1594 sores,1,loveslabourslost,1594 flattery,1,loveslabourslost,1594 balls,1,loveslabourslost,1594 deformed,1,loveslabourslost,1594 Am,1,loveslabourslost,1594 stubborn,1,loveslabourslost,1594 strangling,1,loveslabourslost,1594 taller,1,loveslabourslost,1594 surety,1,loveslabourslost,1594 empress,1,loveslabourslost,1594 pap,1,loveslabourslost,1594 mutiny,1,loveslabourslost,1594 colourable,1,loveslabourslost,1594 replete,1,loveslabourslost,1594 chaste,1,loveslabourslost,1594 Him,1,loveslabourslost,1594 loath,1,loveslabourslost,1594 guiltiness,1,loveslabourslost,1594 wassails,1,loveslabourslost,1594 eternal,1,loveslabourslost,1594 sequent,1,loveslabourslost,1594 refined,1,loveslabourslost,1594 tanquam,1,loveslabourslost,1594 vigour,1,loveslabourslost,1594 'Ware,1,loveslabourslost,1594 glass'd,1,loveslabourslost,1594 languages,1,loveslabourslost,1594 reason's,1,loveslabourslost,1594 overhead,1,loveslabourslost,1594 deuce,1,loveslabourslost,1594 Play,1,loveslabourslost,1594 sensibly,1,loveslabourslost,1594 maids',1,loveslabourslost,1594 teen,1,loveslabourslost,1594 career,1,loveslabourslost,1594 Lo,1,loveslabourslost,1594 bad,1,loveslabourslost,1594 Nature,1,loveslabourslost,1594 O',1,loveslabourslost,1594 cockle,1,loveslabourslost,1594 Impossible,1,loveslabourslost,1594 Singing,1,loveslabourslost,1594 Stand,1,loveslabourslost,1594 Sow'd,1,loveslabourslost,1594 proof,1,loveslabourslost,1594 eternity,1,loveslabourslost,1594 gentleness,1,loveslabourslost,1594 speakest,1,loveslabourslost,1594 plea,1,loveslabourslost,1594 subscribe,1,loveslabourslost,1594 arbitrate,1,loveslabourslost,1594 in't,1,loveslabourslost,1594 feminine,1,loveslabourslost,1594 in's,1,loveslabourslost,1594 listen,1,loveslabourslost,1594 Advance,1,loveslabourslost,1594 greatly,1,loveslabourslost,1594 overhear,1,loveslabourslost,1594 Pay,1,loveslabourslost,1594 Zenelophon,1,loveslabourslost,1594 beautiful,1,loveslabourslost,1594 denied,1,loveslabourslost,1594 brings,1,loveslabourslost,1594 Seventh,1,loveslabourslost,1594 tales,1,loveslabourslost,1594 to't,1,loveslabourslost,1594 house's,1,loveslabourslost,1594 shines,1,loveslabourslost,1594 to's,1,loveslabourslost,1594 closely,1,loveslabourslost,1594 affection's,1,loveslabourslost,1594 Within,1,loveslabourslost,1594 damosella,1,loveslabourslost,1594 pardoned,1,loveslabourslost,1594 changed,1,loveslabourslost,1594 motions,1,loveslabourslost,1594 'long,1,loveslabourslost,1594 Something,1,loveslabourslost,1594 Ha,1,loveslabourslost,1594 Offered,1,loveslabourslost,1594 finer,1,loveslabourslost,1594 fingers',1,loveslabourslost,1594 ben,1,loveslabourslost,1594 dinner,1,loveslabourslost,1594 enchanted,1,loveslabourslost,1594 prose,1,loveslabourslost,1594 digest,1,loveslabourslost,1594 triumviry,1,loveslabourslost,1594 braggart,1,loveslabourslost,1594 arrest,1,loveslabourslost,1594 wither'd,1,loveslabourslost,1594 'sorted,1,loveslabourslost,1594 annual,1,loveslabourslost,1594 added,1,loveslabourslost,1594 nourishment,1,loveslabourslost,1594 Mehercle,1,loveslabourslost,1594 vailing,1,loveslabourslost,1594 penthouse,1,loveslabourslost,1594 Had,1,loveslabourslost,1594 pia,1,loveslabourslost,1594 moderately,1,loveslabourslost,1594 wedded,1,loveslabourslost,1594 Almost,1,loveslabourslost,1594 step,1,loveslabourslost,1594 practisers,1,loveslabourslost,1594 Ut,1,loveslabourslost,1594 pox,1,loveslabourslost,1594 vocatur,1,loveslabourslost,1594 'veal',1,loveslabourslost,1594 matched,1,loveslabourslost,1594 grandfather,1,loveslabourslost,1594 Scarce,1,loveslabourslost,1594 cull'd,1,loveslabourslost,1594 Denis,1,loveslabourslost,1594 quantity,1,loveslabourslost,1594 Gone,1,loveslabourslost,1594 stanze,1,loveslabourslost,1594 quiet,1,loveslabourslost,1594 groaning,1,loveslabourslost,1594 Charles,1,loveslabourslost,1594 godfather,1,loveslabourslost,1594 hominem,1,loveslabourslost,1594 'welcome',1,loveslabourslost,1594 badges,1,loveslabourslost,1594 obey,1,loveslabourslost,1594 kiss'd,1,loveslabourslost,1594 brawling,1,loveslabourslost,1594 sirs,1,loveslabourslost,1594 epitheton,1,loveslabourslost,1594 smoothly,1,loveslabourslost,1594 titles,1,loveslabourslost,1594 Adieu,1,loveslabourslost,1594 theft,1,loveslabourslost,1594 plants,1,loveslabourslost,1594 osiers,1,loveslabourslost,1594 gold,1,loveslabourslost,1594 minstrelsy,1,loveslabourslost,1594 royalty,1,loveslabourslost,1594 weed,1,loveslabourslost,1594 thorn,1,loveslabourslost,1594 condign,1,loveslabourslost,1594 maggot,1,loveslabourslost,1594 sorry,1,loveslabourslost,1594 tongue's,1,loveslabourslost,1594 Mend,1,loveslabourslost,1594 welkin's,1,loveslabourslost,1594 remit,1,loveslabourslost,1594 icicles,1,loveslabourslost,1594 bend,1,loveslabourslost,1594 coaches,1,loveslabourslost,1594 metal,1,loveslabourslost,1594 cradle's,1,loveslabourslost,1594 sooner,1,loveslabourslost,1594 unsullied,1,loveslabourslost,1594 Jove's,1,loveslabourslost,1594 fields,1,loveslabourslost,1594 miscarry,1,loveslabourslost,1594 tumble,1,loveslabourslost,1594 'thus,1,loveslabourslost,1594 pollusion,1,loveslabourslost,1594 dout,1,loveslabourslost,1594 hereby,1,loveslabourslost,1594 canon,1,loveslabourslost,1594 Yourself,1,loveslabourslost,1594 hermitage,1,loveslabourslost,1594 jointed,1,loveslabourslost,1594 madman,1,loveslabourslost,1594 prisoners,1,loveslabourslost,1594 Company,1,loveslabourslost,1594 attention,1,loveslabourslost,1594 sounds,1,loveslabourslost,1594 tricks,1,loveslabourslost,1594 shepherds,1,loveslabourslost,1594 strives,1,loveslabourslost,1594 interrupt,1,loveslabourslost,1594 tables,1,loveslabourslost,1594 Bold,1,loveslabourslost,1594 gaze,1,loveslabourslost,1594 wean,1,loveslabourslost,1594 latest,1,loveslabourslost,1594 Save,1,loveslabourslost,1594 bent,1,loveslabourslost,1594 unpolished,1,loveslabourslost,1594 parle,1,loveslabourslost,1594 Behold,1,loveslabourslost,1594 Warble,1,loveslabourslost,1594 enlargement,1,loveslabourslost,1594 estranged,1,loveslabourslost,1594 spending,1,loveslabourslost,1594 unlock,1,loveslabourslost,1594 Put,1,loveslabourslost,1594 piled,1,loveslabourslost,1594 plough,1,loveslabourslost,1594 Death's,1,loveslabourslost,1594 Dies,1,loveslabourslost,1594 lemon,1,loveslabourslost,1594 Varying,1,loveslabourslost,1594 embassage,1,loveslabourslost,1594 curst,1,loveslabourslost,1594 Deaf'd,1,loveslabourslost,1594 buds,1,loveslabourslost,1594 prick'd,1,loveslabourslost,1594 twice,1,loveslabourslost,1594 eaten,1,loveslabourslost,1594 gamester,1,loveslabourslost,1594 prick't,1,loveslabourslost,1594 silk,1,loveslabourslost,1594 extreme,1,loveslabourslost,1594 fifth,1,loveslabourslost,1594 infamonize,1,loveslabourslost,1594 surmounted,1,loveslabourslost,1594 established,1,loveslabourslost,1594 gun,1,loveslabourslost,1594 perttaunt,1,loveslabourslost,1594 Sing,1,loveslabourslost,1594 badge,1,loveslabourslost,1594 bud,1,loveslabourslost,1594 Dares,1,loveslabourslost,1594 likest,1,loveslabourslost,1594 canis,1,loveslabourslost,1594 extravagant,1,loveslabourslost,1594 Teaches,1,loveslabourslost,1594 herein,1,loveslabourslost,1594 Proclaims,1,loveslabourslost,1594 used,1,loveslabourslost,1594 sakes,1,loveslabourslost,1594 o'ersway,1,loveslabourslost,1594 gown,1,loveslabourslost,1594 admired,1,loveslabourslost,1594 craving,1,loveslabourslost,1594 swine,1,loveslabourslost,1594 stabb'd,1,loveslabourslost,1594 sins,1,loveslabourslost,1594 year's,1,loveslabourslost,1594 ambassadors,1,loveslabourslost,1594 consciences,1,loveslabourslost,1594 gate,1,loveslabourslost,1594 epilogue,1,loveslabourslost,1594 'Twas,1,loveslabourslost,1594 beds,1,loveslabourslost,1594 insinuation,1,loveslabourslost,1594 rejoice,1,loveslabourslost,1594 Sans,1,loveslabourslost,1594 a'leven,1,loveslabourslost,1594 ashamed,1,loveslabourslost,1594 importeth,1,loveslabourslost,1594 comprehend,1,loveslabourslost,1594 search'd,1,loveslabourslost,1594 anointed,1,loveslabourslost,1594 grandmother,1,loveslabourslost,1594 Name,1,loveslabourslost,1594 pearls,1,loveslabourslost,1594 magnanimous,1,loveslabourslost,1594 solemn,1,loveslabourslost,1594 dogs,1,loveslabourslost,1594 store,1,loveslabourslost,1594 raught,1,loveslabourslost,1594 deed,1,loveslabourslost,1594 deem,1,loveslabourslost,1594 sain,1,loveslabourslost,1594 sail,1,loveslabourslost,1594 conquering,1,loveslabourslost,1594 forgive,1,loveslabourslost,1594 promised,1,loveslabourslost,1594 ridest,1,loveslabourslost,1594 papers,1,loveslabourslost,1594 Cannot,1,loveslabourslost,1594 ha,1,loveslabourslost,1594 Holla,1,loveslabourslost,1594 Methought,1,loveslabourslost,1594 resolute,1,loveslabourslost,1594 torments,1,loveslabourslost,1594 mons,1,loveslabourslost,1594 singled,1,loveslabourslost,1594 gallows,1,loveslabourslost,1594 lege,1,loveslabourslost,1594 rewarding,1,loveslabourslost,1594 attempted,1,loveslabourslost,1594 spirited,1,loveslabourslost,1594 SONG,1,loveslabourslost,1594 stops,1,loveslabourslost,1594 'with,1,loveslabourslost,1594 jewels,1,loveslabourslost,1594 sheet,1,loveslabourslost,1594 Ill,1,loveslabourslost,1594 sable,1,loveslabourslost,1594 safe,1,loveslabourslost,1594 beat,1,loveslabourslost,1594 stool,1,loveslabourslost,1594 Making,1,loveslabourslost,1594 fa,1,loveslabourslost,1594 tawny,1,loveslabourslost,1594 peregrinate,1,loveslabourslost,1594 intimation,1,loveslabourslost,1594 gain,1,loveslabourslost,1594 tongued,1,loveslabourslost,1594 Apollo,1,loveslabourslost,1594 Disguised,1,loveslabourslost,1594 beam,1,loveslabourslost,1594 staple,1,loveslabourslost,1594 bid'st,1,loveslabourslost,1594 et,1,loveslabourslost,1594 ago,1,loveslabourslost,1594 strung,1,loveslabourslost,1594 Necessity,1,loveslabourslost,1594 interrupt'st,1,loveslabourslost,1594 Guilty,1,loveslabourslost,1594 invocation,1,loveslabourslost,1594 Beggar,1,loveslabourslost,1594 Glory,1,loveslabourslost,1594 gilt,1,loveslabourslost,1594 monger,1,loveslabourslost,1594 wightly,1,loveslabourslost,1594 dignity,1,loveslabourslost,1594 dominator,1,loveslabourslost,1594 victory,1,loveslabourslost,1594 Figures,1,loveslabourslost,1594 priest,1,loveslabourslost,1594 loggerhead,1,loveslabourslost,1594 lent,1,loveslabourslost,1594 interim,1,loveslabourslost,1594 continual,1,loveslabourslost,1594 thrive,1,loveslabourslost,1594 Tapers,1,loveslabourslost,1594 gall,1,loveslabourslost,1594 boast,1,loveslabourslost,1594 Jill,1,loveslabourslost,1594 stole,1,loveslabourslost,1594 defence,1,loveslabourslost,1594 buried,1,loveslabourslost,1594 sufficit,1,loveslabourslost,1594 makest,1,loveslabourslost,1594 ay,1,loveslabourslost,1594 crab,1,loveslabourslost,1594 maketh,1,loveslabourslost,1594 Laus,1,loveslabourslost,1594 privilege,1,loveslabourslost,1594 ad,1,loveslabourslost,1594 crosses,1,loveslabourslost,1594 fixed,1,loveslabourslost,1594 cures,1,loveslabourslost,1594 questions,1,loveslabourslost,1594 ox,1,loveslabourslost,1594 board,1,loveslabourslost,1594 plodding,1,loveslabourslost,1594 barbarism,1,loveslabourslost,1594 fears,1,loveslabourslost,1594 bites,1,loveslabourslost,1594 commendations,1,loveslabourslost,1594 lo,1,loveslabourslost,1594 plant,1,loveslabourslost,1594 potentates,1,loveslabourslost,1594 engenders,1,loveslabourslost,1594 crave,1,loveslabourslost,1594 mellowing,1,loveslabourslost,1594 wrangle,1,loveslabourslost,1594 mi,1,loveslabourslost,1594 ebon,1,loveslabourslost,1594 Told,1,loveslabourslost,1594 entitle,1,loveslabourslost,1594 catastrophe,1,loveslabourslost,1594 Live,1,loveslabourslost,1594 ne,1,loveslabourslost,1594 scholar,1,loveslabourslost,1594 produce,1,loveslabourslost,1594 May's,1,loveslabourslost,1594 facere,1,loveslabourslost,1594 spelt,1,loveslabourslost,1594 studies,1,loveslabourslost,1594 abbominable,1,loveslabourslost,1594 carved,1,loveslabourslost,1594 accomplished,1,loveslabourslost,1594 age,1,loveslabourslost,1594 morn,1,loveslabourslost,1594 value,1,loveslabourslost,1594 crimes,1,loveslabourslost,1594 guerdon,1,loveslabourslost,1594 Begin,1,loveslabourslost,1594 Arts,1,loveslabourslost,1594 glance,1,loveslabourslost,1594 offences,1,loveslabourslost,1594 Renowned,1,loveslabourslost,1594 studied,1,loveslabourslost,1594 lightly,1,loveslabourslost,1594 causes,1,loveslabourslost,1594 causer,1,loveslabourslost,1594 Converses,1,loveslabourslost,1594 parents,1,loveslabourslost,1594 firework,1,loveslabourslost,1594 Fleeter,1,loveslabourslost,1594 fairings,1,loveslabourslost,1594 gallops,1,loveslabourslost,1594 speak'st,1,loveslabourslost,1594 agony,1,loveslabourslost,1594 Thrust,1,loveslabourslost,1594 resolved,1,loveslabourslost,1594 spent,1,loveslabourslost,1594 lest,1,loveslabourslost,1594 statute,1,loveslabourslost,1594 dependents,1,loveslabourslost,1594 quoted,1,loveslabourslost,1594 loved,1,loveslabourslost,1594 ace,1,loveslabourslost,1594 explication,1,loveslabourslost,1594 apparel,1,loveslabourslost,1594 twenty,1,loveslabourslost,1594 blue,1,loveslabourslost,1594 removes,1,loveslabourslost,1594 strains,1,loveslabourslost,1594 removed,1,loveslabourslost,1594 lets,1,loveslabourslost,1594 lock'd,1,loveslabourslost,1594 hearings,1,loveslabourslost,1594 betime,1,loveslabourslost,1594 greater,1,loveslabourslost,1594 bootless,1,loveslabourslost,1594 weeding,1,loveslabourslost,1594 Hesperides,1,loveslabourslost,1594 umpire,1,loveslabourslost,1594 measurable,1,loveslabourslost,1594 knee,1,loveslabourslost,1594 Subscribe,1,loveslabourslost,1594 tyrants,1,loveslabourslost,1594 clamours,1,loveslabourslost,1594 minstrels,1,loveslabourslost,1594 expiration,1,loveslabourslost,1594 rendered,1,loveslabourslost,1594 oppressing,1,loveslabourslost,1594 digression,1,loveslabourslost,1594 Because,1,loveslabourslost,1594 endued,1,loveslabourslost,1594 o'ergone,1,loveslabourslost,1594 zealous,1,loveslabourslost,1594 climb,1,loveslabourslost,1594 choice,1,loveslabourslost,1594 brought,1,loveslabourslost,1594 reasons,1,loveslabourslost,1594 ornaments,1,loveslabourslost,1594 personal,1,loveslabourslost,1594 transgression,1,loveslabourslost,1594 easy,1,loveslabourslost,1594 fierce,1,loveslabourslost,1594 accounted,1,loveslabourslost,1594 doters,1,loveslabourslost,1594 axe,1,loveslabourslost,1594 thumped,1,loveslabourslost,1594 entitled,1,loveslabourslost,1594 imprisonment,1,loveslabourslost,1594 Jack,1,loveslabourslost,1594 outward,1,loveslabourslost,1594 vowels,1,loveslabourslost,1594 strangle,1,loveslabourslost,1594 plume,1,loveslabourslost,1594 incline,1,loveslabourslost,1594 transgressing,1,loveslabourslost,1594 Kate,1,loveslabourslost,1594 remember'd,1,loveslabourslost,1594 madcap,1,loveslabourslost,1594 affects,1,loveslabourslost,1594 fashion's,1,loveslabourslost,1594 hall,1,loveslabourslost,1594 frost,1,loveslabourslost,1594 te,1,loveslabourslost,1594 labouring,1,loveslabourslost,1594 Quare,1,loveslabourslost,1594 beggar's,1,loveslabourslost,1594 Perigort,1,loveslabourslost,1594 knit,1,loveslabourslost,1594 signify,1,loveslabourslost,1594 nearer,1,loveslabourslost,1594 wares,1,loveslabourslost,1594 hests,1,loveslabourslost,1594 basest,1,loveslabourslost,1594 verse,1,loveslabourslost,1594 Call,1,loveslabourslost,1594 intended,1,loveslabourslost,1594 palm,1,loveslabourslost,1594 Jaques,1,loveslabourslost,1594 finish,1,loveslabourslost,1594 shortness,1,loveslabourslost,1594 preyful,1,loveslabourslost,1594 wormwood,1,loveslabourslost,1594 dispensation,1,loveslabourslost,1594 spur,1,loveslabourslost,1594 Gathering,1,loveslabourslost,1594 treads,1,loveslabourslost,1594 Trumpets,1,loveslabourslost,1594 reprobate,1,loveslabourslost,1594 t',1,loveslabourslost,1594 re,1,loveslabourslost,1594 acquittances,1,loveslabourslost,1594 drawn,1,loveslabourslost,1594 qui,1,loveslabourslost,1594 confession,1,loveslabourslost,1594 porridge,1,loveslabourslost,1594 descried,1,loveslabourslost,1594 Satisfy,1,loveslabourslost,1594 thanksgiving,1,loveslabourslost,1594 suitors,1,loveslabourslost,1594 purgation,1,loveslabourslost,1594 restrained,1,loveslabourslost,1594 sweetest,1,loveslabourslost,1594 mighty,1,loveslabourslost,1594 Unseen,1,loveslabourslost,1594 miscarried,1,loveslabourslost,1594 WINTER,1,loveslabourslost,1594 'hobby,1,loveslabourslost,1594 viewest,1,loveslabourslost,1594 course,1,loveslabourslost,1594 She's,1,loveslabourslost,1594 arm,1,loveslabourslost,1594 abhor,1,loveslabourslost,1594 fort,1,loveslabourslost,1594 plighted,1,loveslabourslost,1594 purged,1,loveslabourslost,1594 impatient,1,loveslabourslost,1594 rack'd,1,loveslabourslost,1594 straws,1,loveslabourslost,1594 appertaining,1,loveslabourslost,1594 ship,1,loveslabourslost,1594 vicegerent,1,loveslabourslost,1594 neglect,1,loveslabourslost,1594 pail,1,loveslabourslost,1594 stranger,1,loveslabourslost,1594 hangs,1,loveslabourslost,1594 Ethiopes,1,loveslabourslost,1594 return'd,1,loveslabourslost,1594 fasts,1,loveslabourslost,1594 paid,1,loveslabourslost,1594 fanatical,1,loveslabourslost,1594 spit,1,loveslabourslost,1594 money,1,loveslabourslost,1594 glozes,1,loveslabourslost,1594 logs,1,loveslabourslost,1594 walked,1,loveslabourslost,1594 minute's,1,loveslabourslost,1594 attach,1,loveslabourslost,1594 Samson's,1,loveslabourslost,1594 decides,1,loveslabourslost,1594 shop,1,loveslabourslost,1594 hate,1,loveslabourslost,1594 forlorn,1,loveslabourslost,1594 fear'd,1,loveslabourslost,1594 shot,1,loveslabourslost,1594 transform'd,1,loveslabourslost,1594 proper,1,loveslabourslost,1594 shoe,1,loveslabourslost,1594 enforcest,1,loveslabourslost,1594 detested,1,loveslabourslost,1594 rough,1,loveslabourslost,1594 vowed,1,loveslabourslost,1594 Anointed,1,loveslabourslost,1594 Fell,1,loveslabourslost,1594 gaudy,1,loveslabourslost,1594 food,1,loveslabourslost,1594 contain,1,loveslabourslost,1594 Small,1,loveslabourslost,1594 serpents,1,loveslabourslost,1594 bearer,1,loveslabourslost,1594 reject,1,loveslabourslost,1594 yard,1,loveslabourslost,1594 athwart,1,loveslabourslost,1594 testimony,1,loveslabourslost,1594 excess,1,loveslabourslost,1594 clipt,1,loveslabourslost,1594 push,1,loveslabourslost,1594 Worthy's,1,loveslabourslost,1594 tasker,1,loveslabourslost,1594 elegancy,1,loveslabourslost,1594 assistants,1,loveslabourslost,1594 sacks,1,loveslabourslost,1594 Qualm,1,loveslabourslost,1594 rightly,1,loveslabourslost,1594 folk,1,loveslabourslost,1594 hauf,1,loveslabourslost,1594 Muscovits,1,loveslabourslost,1594 learnt,1,loveslabourslost,1594 fold,1,loveslabourslost,1594 begets,1,loveslabourslost,1594 White,1,loveslabourslost,1594 tombs,1,loveslabourslost,1594 learns,1,loveslabourslost,1594 secret,1,loveslabourslost,1594 speaker's,1,loveslabourslost,1594 competitors,1,loveslabourslost,1594 Arm,1,loveslabourslost,1594 finely,1,loveslabourslost,1594 roll,1,loveslabourslost,1594 banquet,1,loveslabourslost,1594 disputest,1,loveslabourslost,1594 Mirth,1,loveslabourslost,1594 deadly,1,loveslabourslost,1594 sequel,1,loveslabourslost,1594 Hark,1,loveslabourslost,1594 colour'd,1,loveslabourslost,1594 fed,1,loveslabourslost,1594 paradox,1,loveslabourslost,1594 smells,1,loveslabourslost,1594 leer,1,loveslabourslost,1594 cheque,1,loveslabourslost,1594 chides,1,loveslabourslost,1594 behavior,1,loveslabourslost,1594 visited,1,loveslabourslost,1594 Action,1,loveslabourslost,1594 Stoop,1,loveslabourslost,1594 o'erparted,1,loveslabourslost,1594 markets,1,loveslabourslost,1594 Ask,1,loveslabourslost,1594 Little,1,loveslabourslost,1594 enjoy,1,loveslabourslost,1594 gain'd,1,loveslabourslost,1594 willingly,1,loveslabourslost,1594 purifies,1,loveslabourslost,1594 Quis,1,loveslabourslost,1594 Art,1,loveslabourslost,1594 plackets,1,loveslabourslost,1594 guess,1,loveslabourslost,1594 beams,1,loveslabourslost,1594 guest,1,loveslabourslost,1594 cipher,1,loveslabourslost,1594 having,1,loveslabourslost,1594 merrier,1,loveslabourslost,1594 bullet,1,loveslabourslost,1594 precedent,1,loveslabourslost,1594 spoken,1,loveslabourslost,1594 leaf,1,loveslabourslost,1594 superfluous,1,loveslabourslost,1594 odouriferous,1,loveslabourslost,1594 delighted,1,loveslabourslost,1594 noes,1,loveslabourslost,1594 Quoniam,1,loveslabourslost,1594 Between,1,loveslabourslost,1594 coughing,1,loveslabourslost,1594 execute,1,loveslabourslost,1594 annothanize,1,loveslabourslost,1594 Guinover,1,loveslabourslost,1594 outswear,1,loveslabourslost,1594 fan,1,loveslabourslost,1594 borrow,1,loveslabourslost,1594 rays,1,loveslabourslost,1594 roof,1,loveslabourslost,1594 often,1,loveslabourslost,1594 colliers,1,loveslabourslost,1594 Marvellous,1,loveslabourslost,1594 Command,1,loveslabourslost,1594 justice,1,loveslabourslost,1594 Taffeta,1,loveslabourslost,1594 rational,1,loveslabourslost,1594 universal,1,loveslabourslost,1594 keeps,1,loveslabourslost,1594 Shout,1,loveslabourslost,1594 Forbid,1,loveslabourslost,1594 mail,1,loveslabourslost,1594 circum,1,loveslabourslost,1594 equal,1,loveslabourslost,1594 Wounds,1,loveslabourslost,1594 moved,1,loveslabourslost,1594 mortified,1,loveslabourslost,1594 obscene,1,loveslabourslost,1594 Form'd,1,loveslabourslost,1594 hunteth,1,loveslabourslost,1594 carried,1,loveslabourslost,1594 'Thus,1,loveslabourslost,1594 hind,1,loveslabourslost,1594 fostering,1,loveslabourslost,1594 empty,1,loveslabourslost,1594 report,1,loveslabourslost,1594 carries,1,loveslabourslost,1594 flouts,1,loveslabourslost,1594 forehead,1,loveslabourslost,1594 Videsne,1,loveslabourslost,1594 greasily,1,loveslabourslost,1594 clapp'd,1,loveslabourslost,1594 hackney,1,loveslabourslost,1594 sickly,1,loveslabourslost,1594 smallest,1,loveslabourslost,1594 nourish,1,loveslabourslost,1594 fourth,1,loveslabourslost,1594 Satis,1,loveslabourslost,1594 hangeth,1,loveslabourslost,1594 patch,1,loveslabourslost,1594 apply,1,loveslabourslost,1594 Pell,1,loveslabourslost,1594 Venus,1,loveslabourslost,1594 apparell'd,1,loveslabourslost,1594 lack'd,1,loveslabourslost,1594 number'd,1,loveslabourslost,1594 fable,1,loveslabourslost,1594 beast,1,loveslabourslost,1594 wakes,1,loveslabourslost,1594 proceed,1,loveslabourslost,1594 action,1,loveslabourslost,1594 strucken,1,loveslabourslost,1594 mutton,1,loveslabourslost,1594 superscript,1,loveslabourslost,1594 capon,1,loveslabourslost,1594 opposition,1,loveslabourslost,1594 cedar,1,loveslabourslost,1594 pates,1,loveslabourslost,1594 Henceforth,1,loveslabourslost,1594 pommel,1,loveslabourslost,1594 Hang,1,loveslabourslost,1594 apple,1,loveslabourslost,1594 restore,1,loveslabourslost,1594 mounted,1,loveslabourslost,1594 nomi,1,loveslabourslost,1594 demigod,1,loveslabourslost,1594 Ignorance,1,loveslabourslost,1594 guided,1,loveslabourslost,1594 clepeth,1,loveslabourslost,1594 Forestall,1,loveslabourslost,1594 abrogate,1,loveslabourslost,1594 whale's,1,loveslabourslost,1594 Britain,1,loveslabourslost,1594 whining,1,loveslabourslost,1594 exceedingly,1,loveslabourslost,1594 shinest,1,loveslabourslost,1594 Playing,1,loveslabourslost,1594 infancy,1,loveslabourslost,1594 schedule,1,loveslabourslost,1594 brazen,1,loveslabourslost,1594 queens,1,loveslabourslost,1594 spread,1,loveslabourslost,1594 drunkard,1,loveslabourslost,1594 pleaseth,1,loveslabourslost,1594 blunt,1,loveslabourslost,1594 Jew,1,loveslabourslost,1594 traitors,1,loveslabourslost,1594 meanly,1,loveslabourslost,1594 yeas,1,loveslabourslost,1594 entirely,1,loveslabourslost,1594 Alack,1,loveslabourslost,1594 'An,1,loveslabourslost,1594 observed,1,loveslabourslost,1594 Submissive,1,loveslabourslost,1594 pastime,1,loveslabourslost,1594 decrepit,1,loveslabourslost,1594 admire,1,loveslabourslost,1594 glasses,1,loveslabourslost,1594 'By,1,loveslabourslost,1594 strike,1,loveslabourslost,1594 written,1,loveslabourslost,1594 idolatry,1,loveslabourslost,1594 liable,1,loveslabourslost,1594 borne,1,loveslabourslost,1594 picked,1,loveslabourslost,1594 arguments,1,loveslabourslost,1594 thirsty,1,loveslabourslost,1594 affections,1,loveslabourslost,1594 basket,1,loveslabourslost,1594 phantasimes,1,loveslabourslost,1594 garden,1,loveslabourslost,1594 begging,1,loveslabourslost,1594 THE,1,loveslabourslost,1594 outwear,1,loveslabourslost,1594 gingerbread,1,loveslabourslost,1594 allons,1,loveslabourslost,1594 o'ereye,1,loveslabourslost,1594 unhappy,1,loveslabourslost,1594 evermore,1,loveslabourslost,1594 dares,1,loveslabourslost,1594 mouth,1,loveslabourslost,1594 carnation,1,loveslabourslost,1594 doomsday,1,loveslabourslost,1594 Inde,1,loveslabourslost,1594 unbefitting,1,loveslabourslost,1594 enfreedoming,1,loveslabourslost,1594 powers,1,loveslabourslost,1594 mouse,1,loveslabourslost,1594 grievest,1,loveslabourslost,1594 wonder'd,1,loveslabourslost,1594 utters,1,loveslabourslost,1594 Hide,1,loveslabourslost,1594 wall'd,1,loveslabourslost,1594 transparent,1,loveslabourslost,1594 girdles,1,loveslabourslost,1594 Sea,1,loveslabourslost,1594 effect,1,loveslabourslost,1594 consort,1,loveslabourslost,1594 Sola,1,loveslabourslost,1594 Sole,1,loveslabourslost,1594 request'st,1,loveslabourslost,1594 Rebuke,1,loveslabourslost,1594 mill,1,loveslabourslost,1594 razor's,1,loveslabourslost,1594 replenished,1,loveslabourslost,1594 industry,1,loveslabourslost,1594 fares,1,loveslabourslost,1594 deck'd,1,loveslabourslost,1594 singing,1,loveslabourslost,1594 nipp'd,1,loveslabourslost,1594 teeth,1,loveslabourslost,1594 covers,1,loveslabourslost,1594 sonnets,1,loveslabourslost,1594 shield,1,loveslabourslost,1594 Makes,1,loveslabourslost,1594 translation,1,loveslabourslost,1594 purposes,1,loveslabourslost,1594 Play'd,1,loveslabourslost,1594 Persuade,1,loveslabourslost,1594 enriched,1,loveslabourslost,1594 Grant,1,loveslabourslost,1594 fleer'd,1,loveslabourslost,1594 beauties,1,loveslabourslost,1594 slash,1,loveslabourslost,1594 'past,1,loveslabourslost,1594 humorous,1,loveslabourslost,1594 process,1,loveslabourslost,1594 didst,1,loveslabourslost,1594 dowry,1,loveslabourslost,1594 chain,1,loveslabourslost,1594 honorificabilitudinitatibus,1,loveslabourslost,1594 bloods,1,loveslabourslost,1594 lowest,1,loveslabourslost,1594 Queen,1,loveslabourslost,1594 belong,1,loveslabourslost,1594 Navarre's,1,loveslabourslost,1594 egg,1,loveslabourslost,1594 parties,1,loveslabourslost,1594 there's,1,loveslabourslost,1594 chief,1,loveslabourslost,1594 dream,1,loveslabourslost,1594 deform'd,1,loveslabourslost,1594 zany,1,loveslabourslost,1594 monsieur,1,loveslabourslost,1594 ninth,1,loveslabourslost,1594 yell,1,loveslabourslost,1594 'daughter,1,loveslabourslost,1594 blot,1,loveslabourslost,1594 Any,1,loveslabourslost,1594 Bleat,1,loveslabourslost,1594 oracle,1,loveslabourslost,1594 mire,1,loveslabourslost,1594 Presence,1,loveslabourslost,1594 pastimes,1,loveslabourslost,1594 wot,1,loveslabourslost,1594 designs,1,loveslabourslost,1594 infants,1,loveslabourslost,1594 flatter,1,loveslabourslost,1594 gaudeo,1,loveslabourslost,1594 greatest,1,loveslabourslost,1594 painful,1,loveslabourslost,1594 Affliction,1,loveslabourslost,1594 tasks,1,loveslabourslost,1594 canzonet,1,loveslabourslost,1594 addrest,1,loveslabourslost,1594 nit,1,loveslabourslost,1594 chide,1,loveslabourslost,1594 thief,1,loveslabourslost,1594 face's,1,loveslabourslost,1594 miss,1,loveslabourslost,1594 educate,1,loveslabourslost,1594 register'd,1,loveslabourslost,1594 Mediterraneum,1,loveslabourslost,1594 harper's,1,loveslabourslost,1594 seal'd,1,loveslabourslost,1594 'All,1,loveslabourslost,1594 captive,1,loveslabourslost,1594 Folly,1,loveslabourslost,1594 Room,1,loveslabourslost,1594 pained,1,loveslabourslost,1594 graze,1,loveslabourslost,1594 wantonness,1,loveslabourslost,1594 smoke,1,loveslabourslost,1594 Marian's,1,loveslabourslost,1594 coppice,1,loveslabourslost,1594 Being,1,loveslabourslost,1594 arteries,1,loveslabourslost,1594 maskers,1,loveslabourslost,1594 chuck,1,loveslabourslost,1594 Jud,1,loveslabourslost,1594 subdue,1,loveslabourslost,1594 endeavors,1,loveslabourslost,1594 Horns,1,loveslabourslost,1594 stairs,1,loveslabourslost,1594 sayest,1,loveslabourslost,1594 Rome,1,loveslabourslost,1594 Offering,1,loveslabourslost,1594 thorough,1,loveslabourslost,1594 wed,1,loveslabourslost,1594 desired,1,loveslabourslost,1594 hermit,1,loveslabourslost,1594 stain,1,loveslabourslost,1594 consonant,1,loveslabourslost,1594 russet,1,loveslabourslost,1594 fray,1,loveslabourslost,1594 behalf,1,loveslabourslost,1594 breed,1,loveslabourslost,1594 oaks,1,loveslabourslost,1594 'On,1,loveslabourslost,1594 poll,1,loveslabourslost,1594 slight,1,loveslabourslost,1594 passage,1,loveslabourslost,1594 agate,1,loveslabourslost,1594 maids,1,loveslabourslost,1594 opinion,1,loveslabourslost,1594 circa,1,loveslabourslost,1594 overglance,1,loveslabourslost,1594 ode,1,loveslabourslost,1594 wi',1,loveslabourslost,1594 contemplation,1,loveslabourslost,1594 odd,1,loveslabourslost,1594 'No,1,loveslabourslost,1594 flies,1,loveslabourslost,1594 salt,1,loveslabourslost,1594 Maid,1,loveslabourslost,1594 retire,1,loveslabourslost,1594 purchase,1,loveslabourslost,1594 pomp,1,loveslabourslost,1594 safely,1,loveslabourslost,1594 napping,1,loveslabourslost,1594 vede,1,loveslabourslost,1594 Saturday,1,loveslabourslost,1594 experience,1,loveslabourslost,1594 fitteth,1,loveslabourslost,1594 sides,1,loveslabourslost,1594 Armed,1,loveslabourslost,1594 chapmen's,1,loveslabourslost,1594 ushering,1,loveslabourslost,1594 oft,1,loveslabourslost,1594 dominical,1,loveslabourslost,1594 capable,1,loveslabourslost,1594 'Me,1,loveslabourslost,1594 message,1,loveslabourslost,1594 We'll,1,loveslabourslost,1594 bodkin,1,loveslabourslost,1594 scutcheon,1,loveslabourslost,1594 provoke,1,loveslabourslost,1594 hateful,1,loveslabourslost,1594 stomach,1,loveslabourslost,1594 Dread,1,loveslabourslost,1594 receipt,1,loveslabourslost,1594 cure,1,loveslabourslost,1594 Remote,1,loveslabourslost,1594 unbosom,1,loveslabourslost,1594 import,1,loveslabourslost,1594 knife,1,loveslabourslost,1594 ring,1,loveslabourslost,1594 sighted,1,loveslabourslost,1594 happiness,1,loveslabourslost,1594 smock,1,loveslabourslost,1594 usurping,1,loveslabourslost,1594 upright,1,loveslabourslost,1594 passado,1,loveslabourslost,1594 falchion,1,loveslabourslost,1594 unseen,1,loveslabourslost,1594 Disbursed,1,loveslabourslost,1594 influence,1,loveslabourslost,1594 abstinence,1,loveslabourslost,1594 Dead,1,loveslabourslost,1594 collusion,1,loveslabourslost,1594 coxcomb,1,loveslabourslost,1594 handed,1,loveslabourslost,1594 buck,1,loveslabourslost,1594 Dear,1,loveslabourslost,1594 'no',1,loveslabourslost,1594 mumble,1,loveslabourslost,1594 clock,1,loveslabourslost,1594 Importunes,1,loveslabourslost,1594 Saw,1,loveslabourslost,1594 Venice,1,loveslabourslost,1594 hearers,1,loveslabourslost,1594 offending,1,loveslabourslost,1594 Desire,1,loveslabourslost,1594 grosser,1,loveslabourslost,1594 couplement,1,loveslabourslost,1594 salutation,1,loveslabourslost,1594 Construe,1,loveslabourslost,1594 filed,1,loveslabourslost,1594 remains,1,loveslabourslost,1594 integrity,1,loveslabourslost,1594 masks,1,loveslabourslost,1594 nomination,1,loveslabourslost,1594 unconfirmed,1,loveslabourslost,1594 Bows,1,loveslabourslost,1594 flint,1,loveslabourslost,1594 Define,1,loveslabourslost,1594 decrees,1,loveslabourslost,1594 torture,1,loveslabourslost,1594 musical,1,loveslabourslost,1594 humility,1,loveslabourslost,1594 repairing,1,loveslabourslost,1594 comparison,1,loveslabourslost,1594 liker,1,loveslabourslost,1594 Mercury,1,loveslabourslost,1594 sinewy,1,loveslabourslost,1594 beseemeth,1,loveslabourslost,1594 'The,1,loveslabourslost,1594 believe,1,loveslabourslost,1594 army,1,loveslabourslost,1594 staff,1,loveslabourslost,1594 poet,1,loveslabourslost,1594 mounting,1,loveslabourslost,1594 actors,1,loveslabourslost,1594 misprision,1,loveslabourslost,1594 Perge,1,loveslabourslost,1594 'To,1,loveslabourslost,1594 nuptial,1,loveslabourslost,1594 important,1,loveslabourslost,1594 profitable,1,loveslabourslost,1594 insanie,1,loveslabourslost,1594 saluteth,1,loveslabourslost,1594 wag,1,loveslabourslost,1594 intend,1,loveslabourslost,1594 prompting,1,loveslabourslost,1594 spurred,1,loveslabourslost,1594 Piercing,1,loveslabourslost,1594 whirls,1,loveslabourslost,1594 slipper,1,loveslabourslost,1594 rags,1,loveslabourslost,1594 bullets,1,loveslabourslost,1594 Knowing,1,loveslabourslost,1594 apace,1,loveslabourslost,1594 proceeding,1,loveslabourslost,1594 wont,1,loveslabourslost,1594 prick,1,loveslabourslost,1594 supper,1,loveslabourslost,1594 complain,1,loveslabourslost,1594 'mere,1,loveslabourslost,1594 multitude,1,loveslabourslost,1594 'ay,1,loveslabourslost,1594 lettered,1,loveslabourslost,1594 progression,1,loveslabourslost,1594 'an,1,loveslabourslost,1594 Muster,1,loveslabourslost,1594 gravity's,1,loveslabourslost,1594 pence,1,loveslabourslost,1594 walk'd,1,loveslabourslost,1594 happy,1,loveslabourslost,1594 damask,1,loveslabourslost,1594 unpruned,1,loveslabourslost,1594 religiously,1,loveslabourslost,1594 sweets,1,loveslabourslost,1594 intelligis,1,loveslabourslost,1594 betook,1,loveslabourslost,1594 surprised,1,loveslabourslost,1594 Hercules',1,loveslabourslost,1594 godhead,1,loveslabourslost,1594 agree,1,loveslabourslost,1594 solicitor,1,loveslabourslost,1594 expositor,1,loveslabourslost,1594 o'erthrown,1,loveslabourslost,1594 surrender,1,loveslabourslost,1594 numbering,1,loveslabourslost,1594 ransom,1,loveslabourslost,1594 watery,1,loveslabourslost,1594 dainties,1,loveslabourslost,1594 estates,1,loveslabourslost,1594 rotten,1,loveslabourslost,1594 prologue,1,loveslabourslost,1594 Monarcho,1,loveslabourslost,1594 tilting,1,loveslabourslost,1594 Big,1,loveslabourslost,1594 anger,1,loveslabourslost,1594 weeping,1,loveslabourslost,1594 Spaniard's,1,loveslabourslost,1594 devoted,1,loveslabourslost,1594 lute,1,loveslabourslost,1594 womb,1,loveslabourslost,1594 inclination,1,loveslabourslost,1594 caper'd,1,loveslabourslost,1594 rain,1,loveslabourslost,1594 animal,1,loveslabourslost,1594 functions,1,loveslabourslost,1594 Learning,1,loveslabourslost,1594 consent,1,loveslabourslost,1594 gravities,1,loveslabourslost,1594 forester,1,loveslabourslost,1594 demonstration,1,loveslabourslost,1594 clocks,1,loveslabourslost,1594 godlike,1,loveslabourslost,1594 drops,1,loveslabourslost,1594 harvest,1,loveslabourslost,1594 unsatisfied,1,loveslabourslost,1594 flask,1,loveslabourslost,1594 via,1,loveslabourslost,1594 Forbear,1,loveslabourslost,1594 clout,1,loveslabourslost,1594 whence,1,loveslabourslost,1594 authors,1,loveslabourslost,1594 vir,1,loveslabourslost,1594 comparisons,1,loveslabourslost,1594 travelling,1,loveslabourslost,1594 twelvemonth's,1,loveslabourslost,1594 Shot,1,loveslabourslost,1594 glad,1,loveslabourslost,1594 contempt,1,loveslabourslost,1594 heirs,1,loveslabourslost,1594 cried,1,loveslabourslost,1594 Swear,1,loveslabourslost,1594 durst,1,loveslabourslost,1594 Iscariot,1,loveslabourslost,1594 Many,1,loveslabourslost,1594 perfections,1,loveslabourslost,1594 Beauteous,1,loveslabourslost,1594 minds,1,loveslabourslost,1594 Hiems,1,loveslabourslost,1594 Time,1,loveslabourslost,1594 cloth,1,loveslabourslost,1594 tuft,1,loveslabourslost,1594 compile,1,loveslabourslost,1594 doublet,1,loveslabourslost,1594 stolen,1,loveslabourslost,1594 diamonds,1,loveslabourslost,1594 meadows,1,loveslabourslost,1594 retails,1,loveslabourslost,1594 caret,1,loveslabourslost,1594 untrained,1,loveslabourslost,1594 foe,1,loveslabourslost,1594 unpeopled,1,loveslabourslost,1594 o'errule,1,loveslabourslost,1594 pueritia,1,loveslabourslost,1594 mourns,1,loveslabourslost,1594 heaving,1,loveslabourslost,1594 darkly,1,loveslabourslost,1594 answers,1,loveslabourslost,1594 plentifully,1,loveslabourslost,1594 woeful,1,loveslabourslost,1594 scorns,1,loveslabourslost,1594 columbine,1,loveslabourslost,1594 wort,1,loveslabourslost,1594 sapit,1,loveslabourslost,1594 heavily,1,loveslabourslost,1594 fly,1,loveslabourslost,1594 apprehensions,1,loveslabourslost,1594 duello,1,loveslabourslost,1594 passing,1,loveslabourslost,1594 lodged,1,loveslabourslost,1594 pedler,1,loveslabourslost,1594 dancing,1,loveslabourslost,1594 enfranchise,1,loveslabourslost,1594 precedence,1,loveslabourslost,1594 epithets,1,loveslabourslost,1594 festinately,1,loveslabourslost,1594 o'ershot,1,loveslabourslost,1594 Winter,1,loveslabourslost,1594 esteem'd,1,loveslabourslost,1594 minute,1,loveslabourslost,1594 undeserving,1,loveslabourslost,1594 liege's,1,loveslabourslost,1594 misdoubts,1,loveslabourslost,1594 officer,1,loveslabourslost,1594 offices,1,loveslabourslost,1594 perfect,1,loveslabourslost,1594 Bon,1,loveslabourslost,1594 scratch'd,1,loveslabourslost,1594 fill,1,loveslabourslost,1594 pleases,1,loveslabourslost,1594 ribs,1,loveslabourslost,1594 task'd,1,loveslabourslost,1594 continue,1,loveslabourslost,1594 fortuna,1,loveslabourslost,1594 contemplative,1,loveslabourslost,1594 gelida,1,loveslabourslost,1594 engaged,1,loveslabourslost,1594 claw,1,loveslabourslost,1594 smote,1,loveslabourslost,1594 blister,1,loveslabourslost,1594 reprove,1,loveslabourslost,1594 minnow,1,loveslabourslost,1594 compliments,1,loveslabourslost,1594 hose,1,loveslabourslost,1594 bark,1,loveslabourslost,1594 thereby,1,loveslabourslost,1594 'three,1,loveslabourslost,1594 thunder,1,loveslabourslost,1594 Fare,1,loveslabourslost,1594 daisies,1,loveslabourslost,1594 wide,1,loveslabourslost,1594 Unto,1,loveslabourslost,1594 shows,1,loveslabourslost,1594 ratified,1,loveslabourslost,1594 pocket,1,loveslabourslost,1594 uncasing,1,loveslabourslost,1594 Received,1,loveslabourslost,1594 fawn,1,loveslabourslost,1594 linen,1,loveslabourslost,1594 smooth,1,loveslabourslost,1594 practise,1,loveslabourslost,1594 butcher,1,loveslabourslost,1594 mater,1,loveslabourslost,1594 cloven,1,loveslabourslost,1594 larks,1,loveslabourslost,1594 cloves,1,loveslabourslost,1594 wives,1,loveslabourslost,1594 bate,1,loveslabourslost,1594 whither,1,loveslabourslost,1594 watch'd,1,loveslabourslost,1594 scholars,1,loveslabourslost,1594 perfectness,1,loveslabourslost,1594 bepray,1,loveslabourslost,1594 Matchless,1,loveslabourslost,1594 Four,1,loveslabourslost,1594 bird,1,loveslabourslost,1594 standards,1,loveslabourslost,1594 Behavior,1,loveslabourslost,1594 cuckold's,1,loveslabourslost,1594 strikes,1,loveslabourslost,1594 public,1,loveslabourslost,1594 allow'd,1,loveslabourslost,1594 dispraise,1,loveslabourslost,1594 Cut,1,loveslabourslost,1594 bedecking,1,loveslabourslost,1594 dialogue,1,loveslabourslost,1594 deliver'd,1,loveslabourslost,1594 fate,1,loveslabourslost,1594 'Well,1,loveslabourslost,1594 friendship,1,loveslabourslost,1594 loquitur,1,loveslabourslost,1594 Seemeth,1,loveslabourslost,1594 Very,1,loveslabourslost,1594 bedrid,1,loveslabourslost,1594 hoop,1,loveslabourslost,1594 Visit,1,loveslabourslost,1594 LABOUR'S,1,loveslabourslost,1594 tabour,1,loveslabourslost,1594 Academe,1,loveslabourslost,1594 folio,1,loveslabourslost,1594 names,1,loveslabourslost,1594 quillets,1,loveslabourslost,1594 songs,1,loveslabourslost,1594 boldly,1,loveslabourslost,1594 dismay'd,1,loveslabourslost,1594 volumes,1,loveslabourslost,1594 lights,1,loveslabourslost,1594 author,1,loveslabourslost,1594 shepherd,1,loveslabourslost,1594 soul's,1,loveslabourslost,1594 is't,1,loveslabourslost,1594 purblind,1,loveslabourslost,1594 arm'd,1,loveslabourslost,1594 pursents,1,loveslabourslost,1594 parfect,1,loveslabourslost,1594 Delivers,1,loveslabourslost,1594 fruitful,1,loveslabourslost,1594 cup,1,loveslabourslost,1594 provokes,1,loveslabourslost,1594 poetry,1,loveslabourslost,1594 jest's,1,loveslabourslost,1594 perish,1,loveslabourslost,1594 sixth,1,loveslabourslost,1594 audacious,1,loveslabourslost,1594 impress'd,1,loveslabourslost,1594 Assist,1,loveslabourslost,1594 Regent,1,loveslabourslost,1594 tutors,1,loveslabourslost,1594 wild,1,loveslabourslost,1594 Veni,1,loveslabourslost,1594 alms,1,loveslabourslost,1594 homeward,1,loveslabourslost,1594 beshrew,1,loveslabourslost,1594 recorded,1,loveslabourslost,1594 ought,1,loveslabourslost,1594 Horace,1,loveslabourslost,1594 Food,1,loveslabourslost,1594 kersey,1,loveslabourslost,1594 clean,1,loveslabourslost,1594 Deo,1,loveslabourslost,1594 None,1,loveslabourslost,1594 hole,1,loveslabourslost,1594 snuffed,1,loveslabourslost,1594 dozen,1,loveslabourslost,1594 virginity,1,loveslabourslost,1594 temper'd,1,loveslabourslost,1594 devout,1,loveslabourslost,1594 toiling,1,loveslabourslost,1594 plodders,1,loveslabourslost,1594 sweepers,1,loveslabourslost,1594 Lives,1,loveslabourslost,1594 cut,1,loveslabourslost,1594 Nemean,1,loveslabourslost,1594 follows,1,loveslabourslost,1594 fired,1,loveslabourslost,1594 Although,1,loveslabourslost,1594 ostentare,1,loveslabourslost,1594 snap,1,loveslabourslost,1594 dragon,1,loveslabourslost,1594 aforesaid,1,loveslabourslost,1594 Sphinx,1,loveslabourslost,1594 cowards,1,loveslabourslost,1594 Via,1,loveslabourslost,1594 revolt,1,loveslabourslost,1594 'years',1,loveslabourslost,1594 paved,1,loveslabourslost,1594 besieged,1,loveslabourslost,1594 assist,1,loveslabourslost,1594 perplexity,1,loveslabourslost,1594 tire,1,loveslabourslost,1594 amounts,1,loveslabourslost,1594 Cutting,1,loveslabourslost,1594 forsooth,1,loveslabourslost,1594 liver,1,loveslabourslost,1594 streets,1,loveslabourslost,1594 besiege,1,loveslabourslost,1594 gentility,1,loveslabourslost,1594 rabbit,1,loveslabourslost,1594 Dan,1,loveslabourslost,1594 sonneting,1,loveslabourslost,1594 Wherefore,1,loveslabourslost,1594 sparkle,1,loveslabourslost,1594 appertinent,1,loveslabourslost,1594 counsels,1,loveslabourslost,1594 seal,1,loveslabourslost,1594 conceit's,1,loveslabourslost,1594 pecks,1,loveslabourslost,1594 bits,1,loveslabourslost,1594 choler,1,loveslabourslost,1594 scraped,1,loveslabourslost,1594 quod,1,loveslabourslost,1594 gaited,1,loveslabourslost,1594 money's,1,loveslabourslost,1594 vainly,1,loveslabourslost,1594 adieus,1,loveslabourslost,1594 robes,1,loveslabourslost,1594 master'd,1,loveslabourslost,1594 satisfied,1,loveslabourslost,1594 unmeet,1,loveslabourslost,1594 lungs,1,loveslabourslost,1594 yellow,1,loveslabourslost,1594 manage,1,loveslabourslost,1594 Chi,1,loveslabourslost,1594 hairs,1,loveslabourslost,1594 lovely,1,loveslabourslost,1594 sunshine,1,loveslabourslost,1594 elements,1,loveslabourslost,1594 Bacchus,1,loveslabourslost,1594 copy,1,loveslabourslost,1594 cool,1,loveslabourslost,1594 inconsiderate,1,loveslabourslost,1594 Juno,1,loveslabourslost,1594 Curtsy,1,loveslabourslost,1594 convince,1,loveslabourslost,1594 neglected,1,loveslabourslost,1594 inward,1,loveslabourslost,1594 packet,1,loveslabourslost,1594 sweat,1,loveslabourslost,1594 prodigally,1,loveslabourslost,1594 delightful,1,loveslabourslost,1594 drunk,1,loveslabourslost,1594 states,1,loveslabourslost,1594 fadge,1,loveslabourslost,1594 babe,1,loveslabourslost,1594 conquerors,1,loveslabourslost,1594 woodcocks,1,loveslabourslost,1594 needful,1,loveslabourslost,1594 thereto,1,loveslabourslost,1594 Right,1,loveslabourslost,1594 Nestor,1,loveslabourslost,1594 aught,1,loveslabourslost,1594 knowest,1,loveslabourslost,1594 feathers,1,loveslabourslost,1594 singular,1,loveslabourslost,1594 Beauties,1,loveslabourslost,1594 handful,1,loveslabourslost,1594 reap'd,1,loveslabourslost,1594 either,1,loveslabourslost,1594 cog,1,loveslabourslost,1594 south,1,loveslabourslost,1594 Truly,1,loveslabourslost,1594 defend,1,loveslabourslost,1594 adore,1,loveslabourslost,1594 whimpled,1,loveslabourslost,1594 progeny,1,loveslabourslost,1594 lowliness,1,loveslabourslost,1594 us',1,loveslabourslost,1594 Ne'er,1,loveslabourslost,1594 Spied,1,loveslabourslost,1594 arrows,1,loveslabourslost,1594 others',1,loveslabourslost,1594 divorce,1,loveslabourslost,1594 valued,1,loveslabourslost,1594 garnished,1,loveslabourslost,1594 peeping,1,loveslabourslost,1594 condition,1,loveslabourslost,1594 liking,1,loveslabourslost,1594 render,1,loveslabourslost,1594 cramm'd,1,loveslabourslost,1594 jangling,1,loveslabourslost,1594 hound,1,loveslabourslost,1594 crest,1,loveslabourslost,1594 estimation,1,loveslabourslost,1594 captivated,1,loveslabourslost,1594 abbreviated,1,loveslabourslost,1594 thereon,1,loveslabourslost,1594 setting,1,loveslabourslost,1594 traitor,1,loveslabourslost,1594 replied,1,loveslabourslost,1594 marking,1,loveslabourslost,1594 'Your,1,loveslabourslost,1594 needless,1,loveslabourslost,1594 merriness,1,loveslabourslost,1594 secrecy,1,loveslabourslost,1594 audaciously,1,loveslabourslost,1594 threshold,1,loveslabourslost,1594 expecting,1,loveslabourslost,1594 taffeta,1,loveslabourslost,1594 Gentlemen,1,loveslabourslost,1594 changing,1,loveslabourslost,1594 hearken,1,loveslabourslost,1594 dispense,1,loveslabourslost,1594 Haste,1,loveslabourslost,1594 Metheglin,1,loveslabourslost,1594 Tyburn,1,loveslabourslost,1594 avoid,1,loveslabourslost,1594 loveth,1,loveslabourslost,1594 eyne,1,loveslabourslost,1594 pour,1,loveslabourslost,1594 nights,1,loveslabourslost,1594 downright,1,loveslabourslost,1594 blame,1,loveslabourslost,1594 Things,1,loveslabourslost,1594 wretches,1,loveslabourslost,1594 trembles,1,loveslabourslost,1594 slender,1,loveslabourslost,1594 Toward,1,loveslabourslost,1594 saucers,1,loveslabourslost,1594 wretched,1,loveslabourslost,1594 Subtle,1,loveslabourslost,1594 heedfully,1,loveslabourslost,1594 George's,1,loveslabourslost,1594 caudle,1,loveslabourslost,1594 Trim,1,loveslabourslost,1594 gods,1,loveslabourslost,1594 Trip,1,loveslabourslost,1594 enrich'd,1,loveslabourslost,1594 guerra,1,loveslabourslost,1594 raven,1,loveslabourslost,1594 excellence,1,loveslabourslost,1594 coursing,1,loveslabourslost,1594 ye'll,1,loveslabourslost,1594 nutmeg,1,loveslabourslost,1594 commixture,1,loveslabourslost,1594 aloud,1,loveslabourslost,1594 overheard,1,loveslabourslost,1594 Meantime,1,loveslabourslost,1594 post,1,loveslabourslost,1594 cases,1,loveslabourslost,1594 bankrupt,1,loveslabourslost,1594 'One,1,loveslabourslost,1594 commiseration,1,loveslabourslost,1594 prison,1,loveslabourslost,1594 sheeps,1,loveslabourslost,1594 hooting,1,loveslabourslost,1594 folded,1,loveslabourslost,1594 pigeons,1,loveslabourslost,1594 allowed,1,loveslabourslost,1594 undo,1,loveslabourslost,1594 colt,1,loveslabourslost,1594 alas,1,loveslabourslost,1594 adds,1,loveslabourslost,1594 drawer,1,loveslabourslost,1594 talk'd,1,loveslabourslost,1594 swell,1,loveslabourslost,1594 Roman,1,loveslabourslost,1594 erewhile,1,loveslabourslost,1594 strict'st,1,loveslabourslost,1594 regards,1,loveslabourslost,1594 winters,1,loveslabourslost,1594 Muscovy,1,loveslabourslost,1594 bandied,1,loveslabourslost,1594 junior,1,loveslabourslost,1594 reputes,1,loveslabourslost,1594 sickness,1,loveslabourslost,1594 Following,1,loveslabourslost,1594 Phoebe,1,loveslabourslost,1594 uneducated,1,loveslabourslost,1594 Prize,1,loveslabourslost,1594 passionate,1,loveslabourslost,1594 highest,1,loveslabourslost,1594 Chirrah,1,loveslabourslost,1594 aright,1,loveslabourslost,1594 inkle,1,loveslabourslost,1594 novum,1,loveslabourslost,1594 Madame,1,loveslabourslost,1594 attaint,1,loveslabourslost,1594 bolder,1,loveslabourslost,1594 invite,1,loveslabourslost,1594 coin,1,loveslabourslost,1594 dungeons,1,loveslabourslost,1594 ebb,1,loveslabourslost,1594 until,1,loveslabourslost,1594 Two,1,loveslabourslost,1594 meekly,1,loveslabourslost,1594 parcel,1,loveslabourslost,1594 trow,1,loveslabourslost,1594 thread,1,loveslabourslost,1594 frantic,1,loveslabourslost,1594 choke,1,loveslabourslost,1594 Raining,1,loveslabourslost,1594 eat,1,loveslabourslost,1594 hospital,1,loveslabourslost,1594 perjure,1,loveslabourslost,1594 Liege,1,loveslabourslost,1594 Spring,1,loveslabourslost,1594 Proceeded,1,loveslabourslost,1594 honesty,1,loveslabourslost,1594 uprising,1,loveslabourslost,1594 debate,1,loveslabourslost,1594 nated,1,loveslabourslost,1594 apostraphas,1,loveslabourslost,1594 confound,1,loveslabourslost,1594 wearing,1,loveslabourslost,1594 quando,1,loveslabourslost,1594 barr'd,1,loveslabourslost,1594 Kisses,1,loveslabourslost,1594 peal,1,loveslabourslost,1594 encounters,1,loveslabourslost,1594 Greater,1,loveslabourslost,1594 maintained,1,loveslabourslost,1594 threes,1,loveslabourslost,1594 conn'd,1,loveslabourslost,1594 spite,1,loveslabourslost,1594 afeard,1,loveslabourslost,1594 treys,1,loveslabourslost,1594 unlike,1,loveslabourslost,1594 Pepin,1,loveslabourslost,1594 seldom,1,loveslabourslost,1594 Ilion,1,loveslabourslost,1594 obscenely,1,loveslabourslost,1594 'damsel,1,loveslabourslost,1594 starve,1,loveslabourslost,1594 dread,1,loveslabourslost,1594 cittern,1,loveslabourslost,1594 cleaving,1,loveslabourslost,1594 poesy,1,loveslabourslost,1594 Bruise,1,loveslabourslost,1594 dealing,1,loveslabourslost,1594 dishclout,1,loveslabourslost,1594 sister,1,loveslabourslost,1594 headed,1,loveslabourslost,1594 lofty,1,loveslabourslost,1594 ounce,1,loveslabourslost,1594 upward,1,loveslabourslost,1594 venue,1,loveslabourslost,1594 elbow,1,loveslabourslost,1594 tires,1,loveslabourslost,1594 reformation,1,loveslabourslost,1594 street,1,loveslabourslost,1594 heatest,1,loveslabourslost,1594 shrows,1,loveslabourslost,1594 chucks,1,loveslabourslost,1594 seduced,1,loveslabourslost,1594 venuto,1,loveslabourslost,1594 burns,1,loveslabourslost,1594 repay,1,loveslabourslost,1594 intituled,1,loveslabourslost,1594 limit,1,loveslabourslost,1594 debtor,1,loveslabourslost,1594 Men,1,loveslabourslost,1594 body's,1,loveslabourslost,1594 O's,1,loveslabourslost,1594 'paritors,1,loveslabourslost,1594 ravished,1,loveslabourslost,1594 flee,1,loveslabourslost,1594 flea,1,loveslabourslost,1594 mocker,1,loveslabourslost,1594 incision,1,loveslabourslost,1594 Abate,1,loveslabourslost,1594 pernicious,1,loveslabourslost,1594 withdraw,1,loveslabourslost,1594 inspired,1,loveslabourslost,1594 ideas,1,loveslabourslost,1594 amain,1,loveslabourslost,1594 on't,1,loveslabourslost,1594 indiscreet,1,loveslabourslost,1594 intellects,1,loveslabourslost,1594 marriage,1,loveslabourslost,1594 beguile,1,loveslabourslost,1594 beholdest,1,loveslabourslost,1594 hail',1,loveslabourslost,1594 German,1,loveslabourslost,1594 insert,1,loveslabourslost,1594 thereupon,1,loveslabourslost,1594 dismiss,1,loveslabourslost,1594 jesting,1,loveslabourslost,1594 tumbler's,1,loveslabourslost,1594 lass,1,loveslabourslost,1594 terror,1,loveslabourslost,1594 eunuch,1,loveslabourslost,1594 military,1,loveslabourslost,1594 maladies,1,loveslabourslost,1594 peck,1,loveslabourslost,1594 credit,1,loveslabourslost,1594 Man,1,loveslabourslost,1594 flaw,1,loveslabourslost,1594 flat,1,loveslabourslost,1594 spill,1,loveslabourslost,1594 fasting,1,loveslabourslost,1594 flap,1,loveslabourslost,1594 pomewater,1,loveslabourslost,1594 preposterous,1,loveslabourslost,1594 tenderness,1,loveslabourslost,1594 SPRING,1,loveslabourslost,1594 Green,1,loveslabourslost,1594 gibing,1,loveslabourslost,1594 adjunct,1,loveslabourslost,1594 supervise,1,loveslabourslost,1594 copper,1,loveslabourslost,1594 truant,1,loveslabourslost,1594 shroud,1,loveslabourslost,1594 Callest,1,loveslabourslost,1594 orthography,1,loveslabourslost,1594 May,1,loveslabourslost,1594 lining,1,loveslabourslost,1594 recompense,1,loveslabourslost,1594 cleped,1,loveslabourslost,1594 lisp,1,loveslabourslost,1594 'Via,1,loveslabourslost,1594 impart,1,loveslabourslost,1594 felicity,1,loveslabourslost,1594 reprehend,1,loveslabourslost,1594 tutored,1,loveslabourslost,1594 nature,1,loveslabourslost,1594 neigh,1,loveslabourslost,1594 bias,1,loveslabourslost,1594 wooers,1,loveslabourslost,1594 defiles,1,loveslabourslost,1594 Novi,1,loveslabourslost,1594 content,1,loveslabourslost,1594 conflict,1,loveslabourslost,1594 shrewd,1,loveslabourslost,1594 witty,1,loveslabourslost,1594 sentence,1,loveslabourslost,1594 pers,1,loveslabourslost,1594 pert,1,loveslabourslost,1594 witness,1,loveslabourslost,1594 inconstancy,1,loveslabourslost,1594 reply,1,loveslabourslost,1594 extremely,1,loveslabourslost,1594 shaft,1,loveslabourslost,1594 therewithal,1,loveslabourslost,1594 tharborough,1,loveslabourslost,1594 expense,1,loveslabourslost,1594 dash,1,loveslabourslost,1594 Tis,1,loveslabourslost,1594 confirm,1,loveslabourslost,1594 bran,1,loveslabourslost,1594 parishioners,1,loveslabourslost,1594 Whoe'er,1,loveslabourslost,1594 dart,1,loveslabourslost,1594 princely,1,loveslabourslost,1594 savages,1,loveslabourslost,1594 student,1,loveslabourslost,1594 Whip,1,loveslabourslost,1594 crushest,1,loveslabourslost,1594 Die,1,loveslabourslost,1594 frame,1,loveslabourslost,1594 impudency,1,loveslabourslost,1594 solace,1,loveslabourslost,1594 toe,1,loveslabourslost,1594 weight,1,loveslabourslost,1594 He's,1,loveslabourslost,1594 catch,1,loveslabourslost,1594 Luna,1,loveslabourslost,1594 insinuateth,1,loveslabourslost,1594 pent,1,loveslabourslost,1594 brooding,1,loveslabourslost,1594 blessing,1,loveslabourslost,1594 instruction,1,loveslabourslost,1594 roasted,1,loveslabourslost,1594 top,1,loveslabourslost,1594 Alencon's,1,loveslabourslost,1594 fellowship,1,loveslabourslost,1594 lame,1,loveslabourslost,1594 proclamation,1,loveslabourslost,1594 poisons,1,loveslabourslost,1594 blossoms,1,loveslabourslost,1594 misbecomed,1,loveslabourslost,1594 snatch,1,loveslabourslost,1594 reverend,1,loveslabourslost,1594 overshot,1,loveslabourslost,1594 months,1,loveslabourslost,1594 wonders,1,loveslabourslost,1594 cadence,1,loveslabourslost,1594 DRAMATIS,1,loveslabourslost,1594 Negligent,1,loveslabourslost,1594 hyperboles,1,loveslabourslost,1594 shake,1,loveslabourslost,1594 Teach,1,loveslabourslost,1594 Suggestions,1,loveslabourslost,1594 pruning,1,loveslabourslost,1594 unpaid,1,loveslabourslost,1594 grapple,1,loveslabourslost,1594 duller,1,loveslabourslost,1594 Tom,1,loveslabourslost,1594 gnat,1,loveslabourslost,1594 flows,1,loveslabourslost,1594 ambitious,1,loveslabourslost,1594 tempt,1,loveslabourslost,1594 obedient,1,loveslabourslost,1594 tired,1,loveslabourslost,1594 trees,1,loveslabourslost,1594 wills,1,loveslabourslost,1594 pedantical,1,loveslabourslost,1594 det,1,loveslabourslost,1594 dew,1,loveslabourslost,1594 encountered,1,loveslabourslost,1594 impotent,1,loveslabourslost,1594 umbra,1,loveslabourslost,1594 kind,1,loveslabourslost,1594 inheritor,1,loveslabourslost,1594 Staying,1,loveslabourslost,1594 repaid,1,loveslabourslost,1594 squier,1,loveslabourslost,1594 figures,1,loveslabourslost,1594 pecus,1,loveslabourslost,1594 stomachs,1,loveslabourslost,1594 unlearned,1,loveslabourslost,1594 eyelids,1,loveslabourslost,1594 earth's,1,loveslabourslost,1594 haunted,1,loveslabourslost,1594 False,1,loveslabourslost,1594 Honest,1,loveslabourslost,1594 cannon,1,loveslabourslost,1594 shooter,1,loveslabourslost,1594 gear,1,loveslabourslost,1594 justle,1,loveslabourslost,1594 candles,1,loveslabourslost,1594 remembrance,1,loveslabourslost,1594 parley,1,loveslabourslost,1594 breathe,1,loveslabourslost,1594 bids,1,loveslabourslost,1594 upshoot,1,loveslabourslost,1594 th',1,loveslabourslost,1594 market,1,loveslabourslost,1594 breaths,1,loveslabourslost,1594 Thrice,1,loveslabourslost,1594 bide,1,loveslabourslost,1594 hunting,1,loveslabourslost,1594 venit,1,loveslabourslost,1594 crown,1,loveslabourslost,1594 oaten,1,loveslabourslost,1594 undertake,1,loveslabourslost,1594 slop,1,loveslabourslost,1594 Huge,1,loveslabourslost,1594 durance,1,loveslabourslost,1594 Holding,1,loveslabourslost,1594 ships,1,loveslabourslost,1594 dig,1,loveslabourslost,1594 gazes,1,loveslabourslost,1594 unseeming,1,loveslabourslost,1594 Retiring,1,loveslabourslost,1594 vilely,1,loveslabourslost,1594 woo'd,1,loveslabourslost,1594 punished,1,loveslabourslost,1594 degrees,1,loveslabourslost,1594 ending,1,loveslabourslost,1594 hedge,1,loveslabourslost,1594 fortunes,1,loveslabourslost,1594 targe,1,loveslabourslost,1594 heroical,1,loveslabourslost,1594 maculate,1,loveslabourslost,1594 Dismask'd,1,loveslabourslost,1594 plagues,2,loveslabourslost,1594 sleeve,2,loveslabourslost,1594 forbid,2,loveslabourslost,1594 V,2,loveslabourslost,1594 Stands,2,loveslabourslost,1594 pity,2,loveslabourslost,1594 d,2,loveslabourslost,1594 b,2,loveslabourslost,1594 suffer,2,loveslabourslost,1594 smiles,2,loveslabourslost,1594 t,2,loveslabourslost,1594 Proud,2,loveslabourslost,1594 fancy,2,loveslabourslost,1594 drop,2,loveslabourslost,1594 infected,2,loveslabourslost,1594 reputation,2,loveslabourslost,1594 Adam,2,loveslabourslost,1594 speech,2,loveslabourslost,1594 generous,2,loveslabourslost,1594 vizards,2,loveslabourslost,1594 dine,2,loveslabourslost,1594 brows,2,loveslabourslost,1594 lower,2,loveslabourslost,1594 implore,2,loveslabourslost,1594 riddle,2,loveslabourslost,1594 foolery,2,loveslabourslost,1594 scene,2,loveslabourslost,1594 easily,2,loveslabourslost,1594 space,2,loveslabourslost,1594 Blackamoors,2,loveslabourslost,1594 boys,2,loveslabourslost,1594 Stay,2,loveslabourslost,1594 mess,2,loveslabourslost,1594 insociable,2,loveslabourslost,1594 enigma,2,loveslabourslost,1594 jig,2,loveslabourslost,1594 mere,2,loveslabourslost,1594 sight,2,loveslabourslost,1594 toil,2,loveslabourslost,1594 whipped,2,loveslabourslost,1594 paradise,2,loveslabourslost,1594 naked,2,loveslabourslost,1594 hanged,2,loveslabourslost,1594 understand,2,loveslabourslost,1594 fury,2,loveslabourslost,1594 derive,2,loveslabourslost,1594 signs,2,loveslabourslost,1594 beauty's,2,loveslabourslost,1594 pick,2,loveslabourslost,1594 pleasures,2,loveslabourslost,1594 trust,2,loveslabourslost,1594 Upon,2,loveslabourslost,1594 thicket,2,loveslabourslost,1594 recreation,2,loveslabourslost,1594 Light,2,loveslabourslost,1594 Eve,2,loveslabourslost,1594 demand,2,loveslabourslost,1594 case,2,loveslabourslost,1594 thumb,2,loveslabourslost,1594 mistook,2,loveslabourslost,1594 acute,2,loveslabourslost,1594 plague,2,loveslabourslost,1594 soon,2,loveslabourslost,1594 charge,2,loveslabourslost,1594 sons,2,loveslabourslost,1594 working,2,loveslabourslost,1594 pine,2,loveslabourslost,1594 sole,2,loveslabourslost,1594 resolve,2,loveslabourslost,1594 corner,2,loveslabourslost,1594 limb,2,loveslabourslost,1594 Much,2,loveslabourslost,1594 heat,2,loveslabourslost,1594 Gardon,2,loveslabourslost,1594 seemeth,2,loveslabourslost,1594 wants,2,loveslabourslost,1594 breaks,2,loveslabourslost,1594 rider,2,loveslabourslost,1594 making,2,loveslabourslost,1594 wait,2,loveslabourslost,1594 ingenious,2,loveslabourslost,1594 something,2,loveslabourslost,1594 visitation,2,loveslabourslost,1594 moving,2,loveslabourslost,1594 ladies',2,loveslabourslost,1594 deserve,2,loveslabourslost,1594 embassy,2,loveslabourslost,1594 speeches,2,loveslabourslost,1594 endeavor,2,loveslabourslost,1594 stands,2,loveslabourslost,1594 faithfully,2,loveslabourslost,1594 body,2,loveslabourslost,1594 invention,2,loveslabourslost,1594 sea,2,loveslabourslost,1594 disposed,2,loveslabourslost,1594 score,2,loveslabourslost,1594 deliver,2,loveslabourslost,1594 steps,2,loveslabourslost,1594 skill,2,loveslabourslost,1594 followed,2,loveslabourslost,1594 'Fair',2,loveslabourslost,1594 whereuntil,2,loveslabourslost,1594 Pompion,2,loveslabourslost,1594 chat,2,loveslabourslost,1594 sky,2,loveslabourslost,1594 pieces,2,loveslabourslost,1594 thin,2,loveslabourslost,1594 Spain,2,loveslabourslost,1594 becomes,2,loveslabourslost,1594 affect,2,loveslabourslost,1594 sends,2,loveslabourslost,1594 poverty,2,loveslabourslost,1594 Anthony,2,loveslabourslost,1594 vile,2,loveslabourslost,1594 Brabant,2,loveslabourslost,1594 received,2,loveslabourslost,1594 staring,2,loveslabourslost,1594 conceit,2,loveslabourslost,1594 habit,2,loveslabourslost,1594 kill'd,2,loveslabourslost,1594 terms,2,loveslabourslost,1594 pearl,2,loveslabourslost,1594 scurrility,2,loveslabourslost,1594 minority,2,loveslabourslost,1594 coloured,2,loveslabourslost,1594 speechless,2,loveslabourslost,1594 elder,2,loveslabourslost,1594 accent,2,loveslabourslost,1594 rein,2,loveslabourslost,1594 bowl,2,loveslabourslost,1594 girls,2,loveslabourslost,1594 lances,2,loveslabourslost,1594 baser,2,loveslabourslost,1594 whisper,2,loveslabourslost,1594 weather,2,loveslabourslost,1594 wink,2,loveslabourslost,1594 Latin,2,loveslabourslost,1594 Hence,2,loveslabourslost,1594 snip,2,loveslabourslost,1594 comedy,2,loveslabourslost,1594 Might,2,loveslabourslost,1594 Please,2,loveslabourslost,1594 hence,2,loveslabourslost,1594 complements,2,loveslabourslost,1594 'For,2,loveslabourslost,1594 bold,2,loveslabourslost,1594 anon,2,loveslabourslost,1594 died,2,loveslabourslost,1594 eagle,2,loveslabourslost,1594 voice,2,loveslabourslost,1594 dice,2,loveslabourslost,1594 bone,2,loveslabourslost,1594 Ates,2,loveslabourslost,1594 party,2,loveslabourslost,1594 colour,2,loveslabourslost,1594 tent,2,loveslabourslost,1594 he's,2,loveslabourslost,1594 bitter,2,loveslabourslost,1594 big,2,loveslabourslost,1594 senses,2,loveslabourslost,1594 Faith,2,loveslabourslost,1594 stumble,2,loveslabourslost,1594 stir,2,loveslabourslost,1594 morning,2,loveslabourslost,1594 strongly,2,loveslabourslost,1594 shooting,2,loveslabourslost,1594 Hold,2,loveslabourslost,1594 backs,2,loveslabourslost,1594 crack,2,loveslabourslost,1594 III,2,loveslabourslost,1594 Ba,2,loveslabourslost,1594 tonight,2,loveslabourslost,1594 scarce,2,loveslabourslost,1594 bon,2,loveslabourslost,1594 heresy,2,loveslabourslost,1594 Be,2,loveslabourslost,1594 blows,2,loveslabourslost,1594 extemporal,2,loveslabourslost,1594 strangers,2,loveslabourslost,1594 knowing,2,loveslabourslost,1594 wash'd,2,loveslabourslost,1594 blown,2,loveslabourslost,1594 smile,2,loveslabourslost,1594 Me,2,loveslabourslost,1594 smocks,2,loveslabourslost,1594 ladyship,2,loveslabourslost,1594 Falconbridge,2,loveslabourslost,1594 unless,2,loveslabourslost,1594 butt,2,loveslabourslost,1594 belike,2,loveslabourslost,1594 star,2,loveslabourslost,1594 Spaniard,2,loveslabourslost,1594 wisdom,2,loveslabourslost,1594 flowers,2,loveslabourslost,1594 means,2,loveslabourslost,1594 meant,2,loveslabourslost,1594 sovereignty,2,loveslabourslost,1594 whole,2,loveslabourslost,1594 surely,2,loveslabourslost,1594 Katharine,2,loveslabourslost,1594 past,2,loveslabourslost,1594 buys,2,loveslabourslost,1594 greasy,2,loveslabourslost,1594 domine,2,loveslabourslost,1594 glorious,2,loveslabourslost,1594 pot,2,loveslabourslost,1594 yourselves,2,loveslabourslost,1594 heads,2,loveslabourslost,1594 Naso,2,loveslabourslost,1594 begot,2,loveslabourslost,1594 critic,2,loveslabourslost,1594 weep,2,loveslabourslost,1594 bene,2,loveslabourslost,1594 bush,2,loveslabourslost,1594 moreover,2,loveslabourslost,1594 dote,2,loveslabourslost,1594 devised,2,loveslabourslost,1594 people,2,loveslabourslost,1594 Solomon,2,loveslabourslost,1594 fifty,2,loveslabourslost,1594 welkin,2,loveslabourslost,1594 hobby,2,loveslabourslost,1594 meanest,2,loveslabourslost,1594 suddenly,2,loveslabourslost,1594 farewell,2,loveslabourslost,1594 degree,2,loveslabourslost,1594 Ajax,2,loveslabourslost,1594 travel,2,loveslabourslost,1594 longer,2,loveslabourslost,1594 About,2,loveslabourslost,1594 divine,2,loveslabourslost,1594 paint,2,loveslabourslost,1594 picture,2,loveslabourslost,1594 noted,2,loveslabourslost,1594 God's,2,loveslabourslost,1594 instant,2,loveslabourslost,1594 stay'd,2,loveslabourslost,1594 'that,2,loveslabourslost,1594 betray,2,loveslabourslost,1594 servant,2,loveslabourslost,1594 de,2,loveslabourslost,1594 repute,2,loveslabourslost,1594 left,2,loveslabourslost,1594 debt,2,loveslabourslost,1594 legs,2,loveslabourslost,1594 liberal,2,loveslabourslost,1594 gait,2,loveslabourslost,1594 dead,2,loveslabourslost,1594 seeing,2,loveslabourslost,1594 Muscovites,2,loveslabourslost,1594 enforce,2,loveslabourslost,1594 laughing,2,loveslabourslost,1594 speed,2,loveslabourslost,1594 pierced,2,loveslabourslost,1594 forget,2,loveslabourslost,1594 amend,2,loveslabourslost,1594 newly,2,loveslabourslost,1594 thyself,2,loveslabourslost,1594 door,2,loveslabourslost,1594 Adramadio,2,loveslabourslost,1594 crossed,2,loveslabourslost,1594 armipotent,2,loveslabourslost,1594 necessity,2,loveslabourslost,1594 complexions,2,loveslabourslost,1594 mote,2,loveslabourslost,1594 thankful,2,loveslabourslost,1594 illustrate,2,loveslabourslost,1594 imp,2,loveslabourslost,1594 noble,2,loveslabourslost,1594 hadst,2,loveslabourslost,1594 endure,2,loveslabourslost,1594 add,2,loveslabourslost,1594 ho,2,loveslabourslost,1594 hogshead,2,loveslabourslost,1594 continent,2,loveslabourslost,1594 serious,2,loveslabourslost,1594 hot,2,loveslabourslost,1594 harm,2,loveslabourslost,1594 killed,2,loveslabourslost,1594 running,2,loveslabourslost,1594 tempted,2,loveslabourslost,1594 kills,2,loveslabourslost,1594 Break,2,loveslabourslost,1594 weeks,2,loveslabourslost,1594 keel,2,loveslabourslost,1594 Venetia,2,loveslabourslost,1594 hue,2,loveslabourslost,1594 ti,2,loveslabourslost,1594 Arme,2,loveslabourslost,1594 kingly,2,loveslabourslost,1594 weeds,2,loveslabourslost,1594 call'd,2,loveslabourslost,1594 repeat,2,loveslabourslost,1594 appears,2,loveslabourslost,1594 liberty,2,loveslabourslost,1594 shut,2,loveslabourslost,1594 unlettered,2,loveslabourslost,1594 joyful,2,loveslabourslost,1594 school,2,loveslabourslost,1594 pluck,2,loveslabourslost,1594 nightly,2,loveslabourslost,1594 fiery,2,loveslabourslost,1594 forswore,2,loveslabourslost,1594 Prepare,2,loveslabourslost,1594 strive,2,loveslabourslost,1594 twain,2,loveslabourslost,1594 bosom,2,loveslabourslost,1594 dreadful,2,loveslabourslost,1594 rogue,2,loveslabourslost,1594 combat,2,loveslabourslost,1594 concerning,2,loveslabourslost,1594 duke's,2,loveslabourslost,1594 object,2,loveslabourslost,1594 fresh,2,loveslabourslost,1594 maiden,2,loveslabourslost,1594 chance,2,loveslabourslost,1594 thanks,2,loveslabourslost,1594 theirs,2,loveslabourslost,1594 few,2,loveslabourslost,1594 purchased,2,loveslabourslost,1594 Sirrah,2,loveslabourslost,1594 native,2,loveslabourslost,1594 wooing,2,loveslabourslost,1594 hiss,2,loveslabourslost,1594 trial,2,loveslabourslost,1594 excel,2,loveslabourslost,1594 here's,2,loveslabourslost,1594 Should,2,loveslabourslost,1594 lean,2,loveslabourslost,1594 draweth,2,loveslabourslost,1594 leap,2,loveslabourslost,1594 frozen,2,loveslabourslost,1594 Beauty,2,loveslabourslost,1594 ballad,2,loveslabourslost,1594 honey,2,loveslabourslost,1594 Against,2,loveslabourslost,1594 tokens,2,loveslabourslost,1594 hill,2,loveslabourslost,1594 griefs,2,loveslabourslost,1594 shouldst,2,loveslabourslost,1594 breathed,2,loveslabourslost,1594 rose,2,loveslabourslost,1594 antique,2,loveslabourslost,1594 express'd,2,loveslabourslost,1594 'Gainst,2,loveslabourslost,1594 prosperity,2,loveslabourslost,1594 Else,2,loveslabourslost,1594 rare,2,loveslabourslost,1594 trencher,2,loveslabourslost,1594 obscure,2,loveslabourslost,1594 prodigal,2,loveslabourslost,1594 entertainment,2,loveslabourslost,1594 beard,2,loveslabourslost,1594 velvet,2,loveslabourslost,1594 courtship,2,loveslabourslost,1594 ours,2,loveslabourslost,1594 companions,2,loveslabourslost,1594 hide,2,loveslabourslost,1594 year,2,loveslabourslost,1594 sirrah,2,loveslabourslost,1594 mock'd,2,loveslabourslost,1594 Soft,2,loveslabourslost,1594 quickly,2,loveslabourslost,1594 voluble,2,loveslabourslost,1594 Consider,2,loveslabourslost,1594 fairs,2,loveslabourslost,1594 presented,2,loveslabourslost,1594 Dost,2,loveslabourslost,1594 recount,2,loveslabourslost,1594 See,2,loveslabourslost,1594 congruent,2,loveslabourslost,1594 device,2,loveslabourslost,1594 lodge,2,loveslabourslost,1594 other's,2,loveslabourslost,1594 milk,2,loveslabourslost,1594 fantastical,2,loveslabourslost,1594 mild,2,loveslabourslost,1594 spruce,2,loveslabourslost,1594 Air,2,loveslabourslost,1594 Hector's,2,loveslabourslost,1594 non,2,loveslabourslost,1594 soldiers,2,loveslabourslost,1594 gardon,2,loveslabourslost,1594 conclusion,2,loveslabourslost,1594 strict,2,loveslabourslost,1594 knave,2,loveslabourslost,1594 purposed,2,loveslabourslost,1594 blinded,2,loveslabourslost,1594 observation,2,loveslabourslost,1594 mint,2,loveslabourslost,1594 merrily,2,loveslabourslost,1594 keeper,2,loveslabourslost,1594 reading,2,loveslabourslost,1594 'gainst,2,loveslabourslost,1594 tents,2,loveslabourslost,1594 varnish,2,loveslabourslost,1594 dearest,2,loveslabourslost,1594 kissing,2,loveslabourslost,1594 known,2,loveslabourslost,1594 woe,2,loveslabourslost,1594 vein,2,loveslabourslost,1594 let's,2,loveslabourslost,1594 quote,2,loveslabourslost,1594 leaden,2,loveslabourslost,1594 need,2,loveslabourslost,1594 mountain,2,loveslabourslost,1594 peremptory,2,loveslabourslost,1594 constable,2,loveslabourslost,1594 hypocrisy,2,loveslabourslost,1594 'So,2,loveslabourslost,1594 number,2,loveslabourslost,1594 marvel,2,loveslabourslost,1594 desires,2,loveslabourslost,1594 vapour,2,loveslabourslost,1594 hight,2,loveslabourslost,1594 Nine,2,loveslabourslost,1594 losing,2,loveslabourslost,1594 taste,2,loveslabourslost,1594 pole,2,loveslabourslost,1594 desolation,2,loveslabourslost,1594 apology,2,loveslabourslost,1594 sale,2,loveslabourslost,1594 near,2,loveslabourslost,1594 neck,2,loveslabourslost,1594 understanding,2,loveslabourslost,1594 throw,2,loveslabourslost,1594 style,2,loveslabourslost,1594 Twice,2,loveslabourslost,1594 impose,2,loveslabourslost,1594 pathetical,2,loveslabourslost,1594 third,2,loveslabourslost,1594 sitting,2,loveslabourslost,1594 sonnet,2,loveslabourslost,1594 dunghill,2,loveslabourslost,1594 ripe,2,loveslabourslost,1594 pauca,2,loveslabourslost,1594 Jude,2,loveslabourslost,1594 Thine,2,loveslabourslost,1594 wax,2,loveslabourslost,1594 flourish,2,loveslabourslost,1594 Can,2,loveslabourslost,1594 barbarous,2,loveslabourslost,1594 receive,2,loveslabourslost,1594 between,2,loveslabourslost,1594 print,2,loveslabourslost,1594 commander,2,loveslabourslost,1594 posterior,2,loveslabourslost,1594 themselves,2,loveslabourslost,1594 wood,2,loveslabourslost,1594 they'll,2,loveslabourslost,1594 rage,2,loveslabourslost,1594 tallest,2,loveslabourslost,1594 forward,2,loveslabourslost,1594 saith,2,loveslabourslost,1594 ends,2,loveslabourslost,1594 price,2,loveslabourslost,1594 Armado's,2,loveslabourslost,1594 next,2,loveslabourslost,1594 Three,2,loveslabourslost,1594 possess,2,loveslabourslost,1594 caught,2,loveslabourslost,1594 notice,2,loveslabourslost,1594 hail,2,loveslabourslost,1594 faced,2,loveslabourslost,1594 edict,2,loveslabourslost,1594 duke,2,loveslabourslost,1594 conference,2,loveslabourslost,1594 omne,2,loveslabourslost,1594 what's,2,loveslabourslost,1594 forfeit,2,loveslabourslost,1594 spleen,2,loveslabourslost,1594 owe,2,loveslabourslost,1594 facility,2,loveslabourslost,1594 dull,2,loveslabourslost,1594 views,2,loveslabourslost,1594 Even,2,loveslabourslost,1594 grass,2,loveslabourslost,1594 table,2,loveslabourslost,1594 wholesome,2,loveslabourslost,1594 Make,2,loveslabourslost,1594 profane,2,loveslabourslost,1594 giving,2,loveslabourslost,1594 That's,2,loveslabourslost,1594 crystal,2,loveslabourslost,1594 snake,2,loveslabourslost,1594 article,2,loveslabourslost,1594 cloud,2,loveslabourslost,1594 phrases,2,loveslabourslost,1594 Proceed,2,loveslabourslost,1594 grant,2,loveslabourslost,1594 surnamed,2,loveslabourslost,1594 silly,2,loveslabourslost,1594 wore,2,loveslabourslost,1594 do't,2,loveslabourslost,1594 west,2,loveslabourslost,1594 Mars,2,loveslabourslost,1594 profit,2,loveslabourslost,1594 Boy,2,loveslabourslost,1594 savage,2,loveslabourslost,1594 shown,2,loveslabourslost,1594 Vows,2,loveslabourslost,1594 ostentation,2,loveslabourslost,1594 wealth,2,loveslabourslost,1594 an't,2,loveslabourslost,1594 queen,2,loveslabourslost,1594 member,2,loveslabourslost,1594 comfort,2,loveslabourslost,1594 allusion,2,loveslabourslost,1594 large,2,loveslabourslost,1594 fare,2,loveslabourslost,1594 Welcome,2,loveslabourslost,1594 tale,2,loveslabourslost,1594 law,2,loveslabourslost,1594 Christmas,2,loveslabourslost,1594 falsely,2,loveslabourslost,1594 jests,2,loveslabourslost,1594 Mocks,2,loveslabourslost,1594 Holofernes,2,loveslabourslost,1594 concludes,2,loveslabourslost,1594 holy,2,loveslabourslost,1594 quis,2,loveslabourslost,1594 Allons,2,loveslabourslost,1594 greet,2,loveslabourslost,1594 dangerous,2,loveslabourslost,1594 pupil,2,loveslabourslost,1594 academes,2,loveslabourslost,1594 carve,2,loveslabourslost,1594 presents,2,loveslabourslost,1594 strong,2,loveslabourslost,1594 lives,2,loveslabourslost,1594 commonwealth,2,loveslabourslost,1594 Where's,2,loveslabourslost,1594 falsehood,2,loveslabourslost,1594 task,2,loveslabourslost,1594 masked,2,loveslabourslost,1594 Ver,2,loveslabourslost,1594 fitted,2,loveslabourslost,1594 intents,2,loveslabourslost,1594 Troy,2,loveslabourslost,1594 hunt,2,loveslabourslost,1594 alone,2,loveslabourslost,1594 contents,2,loveslabourslost,1594 always,2,loveslabourslost,1594 magnificent,2,loveslabourslost,1594 use,2,loveslabourslost,1594 decree,2,loveslabourslost,1594 seem,2,loveslabourslost,1594 presence,2,loveslabourslost,1594 marvellous,2,loveslabourslost,1594 ended,2,loveslabourslost,1594 discretion,2,loveslabourslost,1594 understood,2,loveslabourslost,1594 Steps,2,loveslabourslost,1594 sees,2,loveslabourslost,1594 pricks,2,loveslabourslost,1594 vessel,2,loveslabourslost,1594 fellows,2,loveslabourslost,1594 wisdom's,2,loveslabourslost,1594 corn,2,loveslabourslost,1594 cry,2,loveslabourslost,1594 Dick,2,loveslabourslost,1594 Unpleasing,2,loveslabourslost,1594 votaries,2,loveslabourslost,1594 Know,2,loveslabourslost,1594 Through,2,loveslabourslost,1594 hours,2,loveslabourslost,1594 glove,2,loveslabourslost,1594 suffice,2,loveslabourslost,1594 blushing,2,loveslabourslost,1594 capacity,2,loveslabourslost,1594 incony,2,loveslabourslost,1594 gloss,2,loveslabourslost,1594 leg,2,loveslabourslost,1594 compiled,2,loveslabourslost,1594 Neither,2,loveslabourslost,1594 mother's,2,loveslabourslost,1594 together,2,loveslabourslost,1594 herald,2,loveslabourslost,1594 chose,2,loveslabourslost,1594 season,2,loveslabourslost,1594 pore,2,loveslabourslost,1594 bestow,2,loveslabourslost,1594 triumph,2,loveslabourslost,1594 farthings,2,loveslabourslost,1594 laws,2,loveslabourslost,1594 sleep,2,loveslabourslost,1594 suitor,2,loveslabourslost,1594 'Item,2,loveslabourslost,1594 queen's,2,loveslabourslost,1594 mar,2,loveslabourslost,1594 turtles,2,loveslabourslost,1594 Gave,2,loveslabourslost,1594 abroad,2,loveslabourslost,1594 Signior,2,loveslabourslost,1594 conduct,2,loveslabourslost,1594 pasture,2,loveslabourslost,1594 smiling,2,loveslabourslost,1594 begins,2,loveslabourslost,1594 learn,2,loveslabourslost,1594 Another,2,loveslabourslost,1594 straight,2,loveslabourslost,1594 sadness,2,loveslabourslost,1594 brooch,2,loveslabourslost,1594 margent,2,loveslabourslost,1594 met,2,loveslabourslost,1594 glory,2,loveslabourslost,1594 sovereign,2,loveslabourslost,1594 employment,2,loveslabourslost,1594 whit,2,loveslabourslost,1594 Away,2,loveslabourslost,1594 ebony,2,loveslabourslost,1594 punishment,2,loveslabourslost,1594 harmony,2,loveslabourslost,1594 physic,2,loveslabourslost,1594 Amen,2,loveslabourslost,1594 mourning,2,loveslabourslost,1594 Indeed,2,loveslabourslost,1594 sometimes,2,loveslabourslost,1594 respects,2,loveslabourslost,1594 fever,2,loveslabourslost,1594 inherit,2,loveslabourslost,1594 Promethean,2,loveslabourslost,1594 fright,2,loveslabourslost,1594 Without,2,loveslabourslost,1594 silver,2,loveslabourslost,1594 breaking,2,loveslabourslost,1594 Troyan,2,loveslabourslost,1594 Lend,2,loveslabourslost,1594 going,2,loveslabourslost,1594 silent,2,loveslabourslost,1594 lover's,2,loveslabourslost,1594 respect,2,loveslabourslost,1594 attend,2,loveslabourslost,1594 harsh,2,loveslabourslost,1594 dare,2,loveslabourslost,1594 weigh,2,loveslabourslost,1594 due,2,loveslabourslost,1594 land,2,loveslabourslost,1594 toy,2,loveslabourslost,1594 dispatch,2,loveslabourslost,1594 dry,2,loveslabourslost,1594 bred,2,loveslabourslost,1594 swallowed,2,loveslabourslost,1594 lamb,2,loveslabourslost,1594 inches,2,loveslabourslost,1594 flout,2,loveslabourslost,1594 Dun,2,loveslabourslost,1594 tis,2,loveslabourslost,1594 flower,2,loveslabourslost,1594 Too,2,loveslabourslost,1594 exit,2,loveslabourslost,1594 greatness,2,loveslabourslost,1594 cross,2,loveslabourslost,1594 smell,2,loveslabourslost,1594 gentles,2,loveslabourslost,1594 command,2,loveslabourslost,1594 den,2,loveslabourslost,1594 corporal,2,loveslabourslost,1594 immured,2,loveslabourslost,1594 pronounce,2,loveslabourslost,1594 repair,2,loveslabourslost,1594 lack,2,loveslabourslost,1594 doctrine,2,loveslabourslost,1594 perhaps,2,loveslabourslost,1594 epithet,2,loveslabourslost,1594 wouldst,2,loveslabourslost,1594 esteemed,2,loveslabourslost,1594 women,2,loveslabourslost,1594 majestical,2,loveslabourslost,1594 daughters,2,loveslabourslost,1594 brave,3,loveslabourslost,1594 answer,3,loveslabourslost,1594 moral,3,loveslabourslost,1594 L,3,loveslabourslost,1594 ignorance,3,loveslabourslost,1594 advised,3,loveslabourslost,1594 e,3,loveslabourslost,1594 gallants,3,loveslabourslost,1594 infant,3,loveslabourslost,1594 took,3,loveslabourslost,1594 yielding,3,loveslabourslost,1594 double,3,loveslabourslost,1594 country,3,loveslabourslost,1594 forswear,3,loveslabourslost,1594 writ,3,loveslabourslost,1594 woman's,3,loveslabourslost,1594 help,3,loveslabourslost,1594 health,3,loveslabourslost,1594 joy,3,loveslabourslost,1594 villain,3,loveslabourslost,1594 Tell,3,loveslabourslost,1594 penalty,3,loveslabourslost,1594 painted,3,loveslabourslost,1594 finger,3,loveslabourslost,1594 Joan,3,loveslabourslost,1594 amber,3,loveslabourslost,1594 throat,3,loveslabourslost,1594 befall,3,loveslabourslost,1594 ravish,3,loveslabourslost,1594 contrary,3,loveslabourslost,1594 Would,3,loveslabourslost,1594 mercy,3,loveslabourslost,1594 Dictynna,3,loveslabourslost,1594 counted,3,loveslabourslost,1594 birth,3,loveslabourslost,1594 Whose,3,loveslabourslost,1594 Only,3,loveslabourslost,1594 cheek,3,loveslabourslost,1594 hearing,3,loveslabourslost,1594 golden,3,loveslabourslost,1594 soil,3,loveslabourslost,1594 complexion,3,loveslabourslost,1594 teach,3,loveslabourslost,1594 she's,3,loveslabourslost,1594 penance,3,loveslabourslost,1594 disclosed,3,loveslabourslost,1594 walk,3,loveslabourslost,1594 deceived,3,loveslabourslost,1594 traveller,3,loveslabourslost,1594 society,3,loveslabourslost,1594 'twas,3,loveslabourslost,1594 yield,3,loveslabourslost,1594 nine,3,loveslabourslost,1594 birds,3,loveslabourslost,1594 Farewell,3,loveslabourslost,1594 looking,3,loveslabourslost,1594 disgrace,3,loveslabourslost,1594 groans,3,loveslabourslost,1594 doubt,3,loveslabourslost,1594 Attendants,3,loveslabourslost,1594 worst,3,loveslabourslost,1594 worse,3,loveslabourslost,1594 mocks,3,loveslabourslost,1594 fight,3,loveslabourslost,1594 'Great,3,loveslabourslost,1594 Princess,3,loveslabourslost,1594 Out,3,loveslabourslost,1594 common,3,loveslabourslost,1594 daughter,3,loveslabourslost,1594 figure,3,loveslabourslost,1594 Pardon,3,loveslabourslost,1594 willing,3,loveslabourslost,1594 sue,3,loveslabourslost,1594 complete,3,loveslabourslost,1594 Vouchsafe,3,loveslabourslost,1594 soldier,3,loveslabourslost,1594 title,3,loveslabourslost,1594 want,3,loveslabourslost,1594 Advancing,3,loveslabourslost,1594 Ladies,3,loveslabourslost,1594 goddess,3,loveslabourslost,1594 farthing,3,loveslabourslost,1594 knowledge,3,loveslabourslost,1594 authority,3,loveslabourslost,1594 hat,3,loveslabourslost,1594 While,3,loveslabourslost,1594 What's,3,loveslabourslost,1594 sign,3,loveslabourslost,1594 sorel,3,loveslabourslost,1594 delights,3,loveslabourslost,1594 bow,3,loveslabourslost,1594 Those,3,loveslabourslost,1594 among,3,loveslabourslost,1594 penn'd,3,loveslabourslost,1594 sensible,3,loveslabourslost,1594 canst,3,loveslabourslost,1594 force,3,loveslabourslost,1594 tear,3,loveslabourslost,1594 bee,3,loveslabourslost,1594 IV,3,loveslabourslost,1594 bless,3,loveslabourslost,1594 bid,3,loveslabourslost,1594 Let's,3,loveslabourslost,1594 pin,3,loveslabourslost,1594 thickest,3,loveslabourslost,1594 enrolled,3,loveslabourslost,1594 god,3,loveslabourslost,1594 costard,3,loveslabourslost,1594 grief,3,loveslabourslost,1594 Remuneration,3,loveslabourslost,1594 cap,3,loveslabourslost,1594 Speak,3,loveslabourslost,1594 overcame,3,loveslabourslost,1594 jewel,3,loveslabourslost,1594 swift,3,loveslabourslost,1594 vassal,3,loveslabourslost,1594 Above,3,loveslabourslost,1594 pitch,3,loveslabourslost,1594 grace's,3,loveslabourslost,1594 turns,3,loveslabourslost,1594 crowns,3,loveslabourslost,1594 i',3,loveslabourslost,1594 virgin,3,loveslabourslost,1594 deep,3,loveslabourslost,1594 affection,3,loveslabourslost,1594 yea,3,loveslabourslost,1594 excellent,3,loveslabourslost,1594 painting,3,loveslabourslost,1594 yes,3,loveslabourslost,1594 plays,3,loveslabourslost,1594 Alexander,3,loveslabourslost,1594 waist,3,loveslabourslost,1594 game,3,loveslabourslost,1594 memory,3,loveslabourslost,1594 humours,3,loveslabourslost,1594 feast,3,loveslabourslost,1594 betray'd,3,loveslabourslost,1594 small,3,loveslabourslost,1594 varied,3,loveslabourslost,1594 halfpenny,3,loveslabourslost,1594 idle,3,loveslabourslost,1594 sometime,3,loveslabourslost,1594 la,3,loveslabourslost,1594 lost,3,loveslabourslost,1594 Russians,3,loveslabourslost,1594 nimble,3,loveslabourslost,1594 forgot,3,loveslabourslost,1594 men's,3,loveslabourslost,1594 valour,3,loveslabourslost,1594 discourse,3,loveslabourslost,1594 speaks,3,loveslabourslost,1594 keen,3,loveslabourslost,1594 afford,3,loveslabourslost,1594 amount,3,loveslabourslost,1594 text,3,loveslabourslost,1594 shallow,3,loveslabourslost,1594 pale,3,loveslabourslost,1594 prince,3,loveslabourslost,1594 forth,3,loveslabourslost,1594 excuse,3,loveslabourslost,1594 Under,3,loveslabourslost,1594 prepare,3,loveslabourslost,1594 profound,3,loveslabourslost,1594 devise,3,loveslabourslost,1594 curate,3,loveslabourslost,1594 faithful,3,loveslabourslost,1594 girl,3,loveslabourslost,1594 forms,3,loveslabourslost,1594 ye,3,loveslabourslost,1594 error,3,loveslabourslost,1594 trick,3,loveslabourslost,1594 bought,3,loveslabourslost,1594 touch,3,loveslabourslost,1594 sweetly,3,loveslabourslost,1594 watch,3,loveslabourslost,1594 occasion,3,loveslabourslost,1594 damsel,3,loveslabourslost,1594 mask'd,3,loveslabourslost,1594 pedant,3,loveslabourslost,1594 Finely,3,loveslabourslost,1594 retires,3,loveslabourslost,1594 water,3,loveslabourslost,1594 club,3,loveslabourslost,1594 intellect,3,loveslabourslost,1594 penny,3,loveslabourslost,1594 you'll,3,loveslabourslost,1594 mistresses,3,loveslabourslost,1594 precious,3,loveslabourslost,1594 question,3,loveslabourslost,1594 general,3,loveslabourslost,1594 likewise,3,loveslabourslost,1594 leaves,3,loveslabourslost,1594 stars,3,loveslabourslost,1594 Mantuan,3,loveslabourslost,1594 already,3,loveslabourslost,1594 blush,3,loveslabourslost,1594 mask,3,loveslabourslost,1594 slave,3,loveslabourslost,1594 woo,3,loveslabourslost,1594 beside,3,loveslabourslost,1594 shoulder,3,loveslabourslost,1594 special,3,loveslabourslost,1594 letters,3,loveslabourslost,1594 gig,3,loveslabourslost,1594 Giving,3,loveslabourslost,1594 sans,3,loveslabourslost,1594 almighty,3,loveslabourslost,1594 close,3,loveslabourslost,1594 proved,3,loveslabourslost,1594 example,3,loveslabourslost,1594 hears,3,loveslabourslost,1594 talent,3,loveslabourslost,1594 vow'd,3,loveslabourslost,1594 war,3,loveslabourslost,1594 Worthy,3,loveslabourslost,1594 intent,3,loveslabourslost,1594 arts,3,loveslabourslost,1594 women's,3,loveslabourslost,1594 belly,3,loveslabourslost,1594 familiar,3,loveslabourslost,1594 faces,3,loveslabourslost,1594 earthly,3,loveslabourslost,1594 virtue's,3,loveslabourslost,1594 smelling,3,loveslabourslost,1594 touching,3,loveslabourslost,1594 fox,3,loveslabourslost,1594 fain,3,loveslabourslost,1594 evil,3,loveslabourslost,1594 Till,3,loveslabourslost,1594 fall,3,loveslabourslost,1594 methinks,3,loveslabourslost,1594 fame,3,loveslabourslost,1594 pleased,3,loveslabourslost,1594 wit's,3,loveslabourslost,1594 worn,3,loveslabourslost,1594 worthiness,3,loveslabourslost,1594 roses,3,loveslabourslost,1594 even,3,loveslabourslost,1594 passion,3,loveslabourslost,1594 folly,3,loveslabourslost,1594 worship,3,loveslabourslost,1594 herself,3,loveslabourslost,1594 lines,3,loveslabourslost,1594 depart,3,loveslabourslost,1594 meaning,3,loveslabourslost,1594 secrets,3,loveslabourslost,1594 man's,3,loveslabourslost,1594 given,3,loveslabourslost,1594 carry,3,loveslabourslost,1594 rapier,3,loveslabourslost,1594 wilt,3,loveslabourslost,1594 unto,3,loveslabourslost,1594 writing,3,loveslabourslost,1594 goodman,3,loveslabourslost,1594 hearts,3,loveslabourslost,1594 along,3,loveslabourslost,1594 low,3,loveslabourslost,1594 reckoning,3,loveslabourslost,1594 feeling,3,loveslabourslost,1594 thereof,3,loveslabourslost,1594 sound,3,loveslabourslost,1594 tree,3,loveslabourslost,1594 entreat,3,loveslabourslost,1594 huge,3,loveslabourslost,1594 Maria,3,loveslabourslost,1594 sell,3,loveslabourslost,1594 pavilion,3,loveslabourslost,1594 barren,3,loveslabourslost,1594 beamed,3,loveslabourslost,1594 mad,3,loveslabourslost,1594 eel,3,loveslabourslost,1594 remember,3,loveslabourslost,1594 correction,3,loveslabourslost,1594 study's,3,loveslabourslost,1594 Since,3,loveslabourslost,1594 Parson,3,loveslabourslost,1594 thoughts,3,loveslabourslost,1594 lion,3,loveslabourslost,1594 telling,3,loveslabourslost,1594 thither,3,loveslabourslost,1594 late,3,loveslabourslost,1594 shade,3,loveslabourslost,1594 spring,3,loveslabourslost,1594 You'll,3,loveslabourslost,1594 payment,3,loveslabourslost,1594 employ,3,loveslabourslost,1594 wounding,3,loveslabourslost,1594 sudden,3,loveslabourslost,1594 eyesight,3,loveslabourslost,1594 Until,3,loveslabourslost,1594 pass'd,3,loveslabourslost,1594 bargain,3,loveslabourslost,1594 he'll,3,loveslabourslost,1594 private,3,loveslabourslost,1594 charity,3,loveslabourslost,1594 forbear,3,loveslabourslost,1594 neighbour,3,loveslabourslost,1594 shirt,3,loveslabourslost,1594 Don,3,loveslabourslost,1594 schoolmaster,3,loveslabourslost,1594 told,4,loveslabourslost,1594 motion,4,loveslabourslost,1594 heir,4,loveslabourslost,1594 weary,4,loveslabourslost,1594 following,4,loveslabourslost,1594 alack,4,loveslabourslost,1594 zeal,4,loveslabourslost,1594 laughter,4,loveslabourslost,1594 groan,4,loveslabourslost,1594 sighs,4,loveslabourslost,1594 run,4,loveslabourslost,1594 cheeks,4,loveslabourslost,1594 care,4,loveslabourslost,1594 Once,4,loveslabourslost,1594 sad,4,loveslabourslost,1594 gracious,4,loveslabourslost,1594 broken,4,loveslabourslost,1594 habits,4,loveslabourslost,1594 sure,4,loveslabourslost,1594 another,4,loveslabourslost,1594 visit,4,loveslabourslost,1594 enough,4,loveslabourslost,1594 saying,4,loveslabourslost,1594 scorn,4,loveslabourslost,1594 love's,4,loveslabourslost,1594 Such,4,loveslabourslost,1594 Was,4,loveslabourslost,1594 countenance,4,loveslabourslost,1594 looks,4,loveslabourslost,1594 faults,4,loveslabourslost,1594 heavens,4,loveslabourslost,1594 snow,4,loveslabourslost,1594 brain,4,loveslabourslost,1594 affected,4,loveslabourslost,1594 about,4,loveslabourslost,1594 sum,4,loveslabourslost,1594 feet,4,loveslabourslost,1594 blind,4,loveslabourslost,1594 sword,4,loveslabourslost,1594 bring,4,loveslabourslost,1594 rude,4,loveslabourslost,1594 wind,4,loveslabourslost,1594 edge,4,loveslabourslost,1594 Though,4,loveslabourslost,1594 bright,4,loveslabourslost,1594 Love's,4,loveslabourslost,1594 merriment,4,loveslabourslost,1594 Nathaniel,4,loveslabourslost,1594 patience,4,loveslabourslost,1594 Still,4,loveslabourslost,1594 pen,4,loveslabourslost,1594 II,4,loveslabourslost,1594 beg,4,loveslabourslost,1594 pleasure,4,loveslabourslost,1594 east,4,loveslabourslost,1594 conqueror,4,loveslabourslost,1594 ears,4,loveslabourslost,1594 proud,4,loveslabourslost,1594 Tu,4,loveslabourslost,1594 gave,4,loveslabourslost,1594 week,4,loveslabourslost,1594 wear,4,loveslabourslost,1594 Saint,4,loveslabourslost,1594 sing,4,loveslabourslost,1594 north,4,loveslabourslost,1594 miles,4,loveslabourslost,1594 air,4,loveslabourslost,1594 keeping,4,loveslabourslost,1594 gift,4,loveslabourslost,1594 needs,4,loveslabourslost,1594 tongues,4,loveslabourslost,1594 rhymes,4,loveslabourslost,1594 attending,4,loveslabourslost,1594 commend,4,loveslabourslost,1594 train,4,loveslabourslost,1594 lover,4,loveslabourslost,1594 ink,4,loveslabourslost,1594 Yes,4,loveslabourslost,1594 less,4,loveslabourslost,1594 devil,4,loveslabourslost,1594 beauteous,4,loveslabourslost,1594 knew,4,loveslabourslost,1594 show'd,4,loveslabourslost,1594 thrice,4,loveslabourslost,1594 Moth,4,loveslabourslost,1594 hang,4,loveslabourslost,1594 Lady,4,loveslabourslost,1594 Full,4,loveslabourslost,1594 First,4,loveslabourslost,1594 delight,4,loveslabourslost,1594 point,4,loveslabourslost,1594 ass,4,loveslabourslost,1594 haud,4,loveslabourslost,1594 term,4,loveslabourslost,1594 King,4,loveslabourslost,1594 rhetoric,4,loveslabourslost,1594 broke,4,loveslabourslost,1594 Hath,4,loveslabourslost,1594 far,4,loveslabourslost,1594 Lords,4,loveslabourslost,1594 nose,4,loveslabourslost,1594 learning,4,loveslabourslost,1594 young,4,loveslabourslost,1594 ignorant,4,loveslabourslost,1594 Look,4,loveslabourslost,1594 foolish,4,loveslabourslost,1594 knows,4,loveslabourslost,1594 won,4,loveslabourslost,1594 blow,4,loveslabourslost,1594 gates,4,loveslabourslost,1594 father's,4,loveslabourslost,1594 free,4,loveslabourslost,1594 dainty,4,loveslabourslost,1594 disguised,4,loveslabourslost,1594 could,4,loveslabourslost,1594 living,4,loveslabourslost,1594 proves,4,loveslabourslost,1594 get,4,loveslabourslost,1594 sorrow,4,loveslabourslost,1594 measured,4,loveslabourslost,1594 morrow,4,loveslabourslost,1594 Say,4,loveslabourslost,1594 duty,4,loveslabourslost,1594 audience,4,loveslabourslost,1594 pride,4,loveslabourslost,1594 wanton,4,loveslabourslost,1594 coming,4,loveslabourslost,1594 hair,4,loveslabourslost,1594 news,4,loveslabourslost,1594 vulgar,4,loveslabourslost,1594 Cupid's,4,loveslabourslost,1594 marry,4,loveslabourslost,1594 angel,4,loveslabourslost,1594 clown,4,loveslabourslost,1594 wert,4,loveslabourslost,1594 tune,4,loveslabourslost,1594 colours,4,loveslabourslost,1594 company,4,loveslabourslost,1594 fine,4,loveslabourslost,1594 married,4,loveslabourslost,1594 Cuckoo,4,loveslabourslost,1594 credo,4,loveslabourslost,1594 gallant,4,loveslabourslost,1594 lay,4,loveslabourslost,1594 home,4,loveslabourslost,1594 green,4,loveslabourslost,1594 wife,4,loveslabourslost,1594 fairer,4,loveslabourslost,1594 back,4,loveslabourslost,1594 shapes,4,loveslabourslost,1594 Pray,4,loveslabourslost,1594 'twill,4,loveslabourslost,1594 return,4,loveslabourslost,1594 goes,4,loveslabourslost,1594 clouds,4,loveslabourslost,1594 Before,4,loveslabourslost,1594 pleasant,4,loveslabourslost,1594 whip,4,loveslabourslost,1594 lips,4,loveslabourslost,1594 last,4,loveslabourslost,1594 Russian,4,loveslabourslost,1594 books,4,loveslabourslost,1594 plantain,4,loveslabourslost,1594 simple,4,loveslabourslost,1594 numbers,4,loveslabourslost,1594 Thy,4,loveslabourslost,1594 follow,4,loveslabourslost,1594 shine,4,loveslabourslost,1594 Take,4,loveslabourslost,1594 kill,4,loveslabourslost,1594 himself,4,loveslabourslost,1594 turn'd,4,loveslabourslost,1594 sharp,4,loveslabourslost,1594 summer,4,loveslabourslost,1594 treason,5,loveslabourslost,1594 meet,5,loveslabourslost,1594 times,5,loveslabourslost,1594 royal,5,loveslabourslost,1594 adding,5,loveslabourslost,1594 while,5,loveslabourslost,1594 years',5,loveslabourslost,1594 withal,5,loveslabourslost,1594 laugh,5,loveslabourslost,1594 under,5,loveslabourslost,1594 friends,5,loveslabourslost,1594 Jove,5,loveslabourslost,1594 sit,5,loveslabourslost,1594 sin,5,loveslabourslost,1594 bound,5,loveslabourslost,1594 mocking,5,loveslabourslost,1594 Study,5,loveslabourslost,1594 ourselves,5,loveslabourslost,1594 wrong,5,loveslabourslost,1594 There,5,loveslabourslost,1594 fault,5,loveslabourslost,1594 worthy,5,loveslabourslost,1594 grow,5,loveslabourslost,1594 service,5,loveslabourslost,1594 false,5,loveslabourslost,1594 flesh,5,loveslabourslost,1594 friend,5,loveslabourslost,1594 matter,5,loveslabourslost,1594 There's,5,loveslabourslost,1594 French,5,loveslabourslost,1594 parts,5,loveslabourslost,1594 spoke,5,loveslabourslost,1594 Ah,5,loveslabourslost,1594 music,5,loveslabourslost,1594 Samson,5,loveslabourslost,1594 sings,5,loveslabourslost,1594 hid,5,loveslabourslost,1594 Go,5,loveslabourslost,1594 since,5,loveslabourslost,1594 nice,5,loveslabourslost,1594 Like,5,loveslabourslost,1594 begin,5,loveslabourslost,1594 said,5,loveslabourslost,1594 breast,5,loveslabourslost,1594 bear,5,loveslabourslost,1594 lady's,5,loveslabourslost,1594 approach,5,loveslabourslost,1594 move,5,loveslabourslost,1594 MERCADE,5,loveslabourslost,1594 month,5,loveslabourslost,1594 aside,5,loveslabourslost,1594 earth,5,loveslabourslost,1594 afternoon,5,loveslabourslost,1594 spend,5,loveslabourslost,1594 lose,5,loveslabourslost,1594 place,5,loveslabourslost,1594 pure,5,loveslabourslost,1594 field,5,loveslabourslost,1594 verses,5,loveslabourslost,1594 juvenal,5,loveslabourslost,1594 Maccabaeus,5,loveslabourslost,1594 ask,5,loveslabourslost,1594 shin,5,loveslabourslost,1594 pain,5,loveslabourslost,1594 ape,5,loveslabourslost,1594 mock,5,loveslabourslost,1594 ridiculous,5,loveslabourslost,1594 tough,5,loveslabourslost,1594 maid,5,loveslabourslost,1594 wonder,5,loveslabourslost,1594 into,5,loveslabourslost,1594 bears,5,loveslabourslost,1594 youth,5,loveslabourslost,1594 several,5,loveslabourslost,1594 Doth,5,loveslabourslost,1594 high,5,loveslabourslost,1594 exchange,5,loveslabourslost,1594 beggar,5,loveslabourslost,1594 senior,5,loveslabourslost,1594 state,5,loveslabourslost,1594 quoth,5,loveslabourslost,1594 heaven's,5,loveslabourslost,1594 over,5,loveslabourslost,1594 apart,5,loveslabourslost,1594 save,5,loveslabourslost,1594 called,5,loveslabourslost,1594 'Tis,5,loveslabourslost,1594 found,5,loveslabourslost,1594 assure,5,loveslabourslost,1594 owl,5,loveslabourslost,1594 Monsieur,5,loveslabourslost,1594 knight,5,loveslabourslost,1594 hundred,5,loveslabourslost,1594 guilty,5,loveslabourslost,1594 humour,5,loveslabourslost,1594 fit,5,loveslabourslost,1594 ne'er,5,loveslabourslost,1594 horn,5,loveslabourslost,1594 holds,5,loveslabourslost,1594 proclaimed,5,loveslabourslost,1594 gives,5,loveslabourslost,1594 person,5,loveslabourslost,1594 self,5,loveslabourslost,1594 send,5,loveslabourslost,1594 carriage,5,loveslabourslost,1594 protest,5,loveslabourslost,1594 slow,5,loveslabourslost,1594 spirits,5,loveslabourslost,1594 perjury,5,loveslabourslost,1594 least,5,loveslabourslost,1594 simplicity,5,loveslabourslost,1594 fashion,5,loveslabourslost,1594 Marry,5,loveslabourslost,1594 vizard,5,loveslabourslost,1594 live,5,loveslabourslost,1594 virtue,5,loveslabourslost,1594 strange,5,loveslabourslost,1594 behold,5,loveslabourslost,1594 shape,5,loveslabourslost,1594 tread,5,loveslabourslost,1594 horns,6,loveslabourslost,1594 red,6,loveslabourslost,1594 thought,6,loveslabourslost,1594 pray,6,loveslabourslost,1594 odds,6,loveslabourslost,1594 life,6,loveslabourslost,1594 yourself,6,loveslabourslost,1594 grows,6,loveslabourslost,1594 gross,6,loveslabourslost,1594 calf,6,loveslabourslost,1594 Forester,6,loveslabourslost,1594 Cupid,6,loveslabourslost,1594 Dull,6,loveslabourslost,1594 set,6,loveslabourslost,1594 salve,6,loveslabourslost,1594 Their,6,loveslabourslost,1594 cause,6,loveslabourslost,1594 fellow,6,loveslabourslost,1594 after,6,loveslabourslost,1594 humble,6,loveslabourslost,1594 desire,6,loveslabourslost,1594 fairest,6,loveslabourslost,1594 sigh,6,loveslabourslost,1594 At,6,loveslabourslost,1594 His,6,loveslabourslost,1594 neither,6,loveslabourslost,1594 On,6,loveslabourslost,1594 Her,6,loveslabourslost,1594 pass,6,loveslabourslost,1594 whose,6,loveslabourslost,1594 Re,6,loveslabourslost,1594 dost,6,loveslabourslost,1594 buy,6,loveslabourslost,1594 sheep,6,loveslabourslost,1594 hands,6,loveslabourslost,1594 Master,6,loveslabourslost,1594 More,6,loveslabourslost,1594 deny,6,loveslabourslost,1594 Are,6,loveslabourslost,1594 pricket,6,loveslabourslost,1594 new,6,loveslabourslost,1594 lead,6,loveslabourslost,1594 fat,6,loveslabourslost,1594 through,6,loveslabourslost,1594 nay,6,loveslabourslost,1594 Peace,6,loveslabourslost,1594 majesty,6,loveslabourslost,1594 mortal,6,loveslabourslost,1594 mile,6,loveslabourslost,1594 nor,6,loveslabourslost,1594 mind,6,loveslabourslost,1594 because,6,loveslabourslost,1594 Alisander,6,loveslabourslost,1594 twelvemonth,6,loveslabourslost,1594 win,6,loveslabourslost,1594 heavy,6,loveslabourslost,1594 Shall,6,loveslabourslost,1594 lived,6,loveslabourslost,1594 kiss,6,loveslabourslost,1594 gentleman,6,loveslabourslost,1594 talk,6,loveslabourslost,1594 shoot,6,loveslabourslost,1594 pardon,6,loveslabourslost,1594 honest,6,loveslabourslost,1594 troth,6,loveslabourslost,1594 True,6,loveslabourslost,1594 lovers,6,loveslabourslost,1594 hither,6,loveslabourslost,1594 sent,6,loveslabourslost,1594 purpose,6,loveslabourslost,1594 Nothing,6,loveslabourslost,1594 leave,6,loveslabourslost,1594 mistress,7,loveslabourslost,1594 horse,7,loveslabourslost,1594 peace,7,loveslabourslost,1594 tears,7,loveslabourslost,1594 lies,7,loveslabourslost,1594 perjured,7,loveslabourslost,1594 death,7,loveslabourslost,1594 against,7,loveslabourslost,1594 suit,7,loveslabourslost,1594 worth,7,loveslabourslost,1594 king's,7,loveslabourslost,1594 loose,7,loveslabourslost,1594 honour,7,loveslabourslost,1594 swore,7,loveslabourslost,1594 cuckoo,7,loveslabourslost,1594 mirth,7,loveslabourslost,1594 sense,7,loveslabourslost,1594 else,7,loveslabourslost,1594 sick,7,loveslabourslost,1594 each,7,loveslabourslost,1594 side,7,loveslabourslost,1594 melancholy,7,loveslabourslost,1594 itself,7,loveslabourslost,1594 challenge,7,loveslabourslost,1594 learned,7,loveslabourslost,1594 quite,7,loveslabourslost,1594 deer,7,loveslabourslost,1594 loves,7,loveslabourslost,1594 Yet,7,loveslabourslost,1594 hard,7,loveslabourslost,1594 park,7,loveslabourslost,1594 things,7,loveslabourslost,1594 ere,7,loveslabourslost,1594 fire,7,loveslabourslost,1594 Were,7,loveslabourslost,1594 off,7,loveslabourslost,1594 says,7,loveslabourslost,1594 Thus,7,loveslabourslost,1594 ground,7,loveslabourslost,1594 rich,7,loveslabourslost,1594 hour,7,loveslabourslost,1594 argument,7,loveslabourslost,1594 favours,7,loveslabourslost,1594 converse,7,loveslabourslost,1594 courtesy,7,loveslabourslost,1594 heavenly,7,loveslabourslost,1594 house,7,loveslabourslost,1594 brow,7,loveslabourslost,1594 write,7,loveslabourslost,1594 liege,7,loveslabourslost,1594 dark,7,loveslabourslost,1594 certain,7,loveslabourslost,1594 wenches,7,loveslabourslost,1594 spirit,7,loveslabourslost,1594 days,8,loveslabourslost,1594 rather,8,loveslabourslost,1594 black,8,loveslabourslost,1594 Aquitaine,8,loveslabourslost,1594 These,8,loveslabourslost,1594 born,8,loveslabourslost,1594 rhyme,8,loveslabourslost,1594 sun,8,loveslabourslost,1594 One,8,loveslabourslost,1594 Good,8,loveslabourslost,1594 gone,8,loveslabourslost,1594 a',8,loveslabourslost,1594 breath,8,loveslabourslost,1594 confess,8,loveslabourslost,1594 favour,8,loveslabourslost,1594 that's,8,loveslabourslost,1594 welcome,8,loveslabourslost,1594 foul,8,loveslabourslost,1594 page,8,loveslabourslost,1594 present,8,loveslabourslost,1594 apt,8,loveslabourslost,1594 foot,8,loveslabourslost,1594 change,8,loveslabourslost,1594 Madam,8,loveslabourslost,1594 indeed,8,loveslabourslost,1594 note,8,loveslabourslost,1594 tender,8,loveslabourslost,1594 Love,8,loveslabourslost,1594 myself,8,loveslabourslost,1594 once,8,loveslabourslost,1594 thine,8,loveslabourslost,1594 sake,8,loveslabourslost,1594 stand,8,loveslabourslost,1594 loving,8,loveslabourslost,1594 heard,8,loveslabourslost,1594 arms,8,loveslabourslost,1594 serve,8,loveslabourslost,1594 taken,8,loveslabourslost,1594 remuneration,8,loveslabourslost,1594 till,8,loveslabourslost,1594 thousand,8,loveslabourslost,1594 short,8,loveslabourslost,1594 thank,8,loveslabourslost,1594 adieu,8,loveslabourslost,1594 seek,8,loveslabourslost,1594 poor,8,loveslabourslost,1594 lie,8,loveslabourslost,1594 shalt,8,loveslabourslost,1594 power,8,loveslabourslost,1594 oaths,8,loveslabourslost,1594 die,8,loveslabourslost,1594 o'er,9,loveslabourslost,1594 soul,9,loveslabourslost,1594 sore,9,loveslabourslost,1594 LABOURS,9,loveslabourslost,1594 merry,9,loveslabourslost,1594 Aside,9,loveslabourslost,1594 within,9,loveslabourslost,1594 turn,9,loveslabourslost,1594 goose,9,loveslabourslost,1594 wise,9,loveslabourslost,1594 world's,9,loveslabourslost,1594 rest,9,loveslabourslost,1594 book,9,loveslabourslost,1594 measure,9,loveslabourslost,1594 enter,9,loveslabourslost,1594 night,9,loveslabourslost,1594 Jaquenetta,9,loveslabourslost,1594 vouchsafe,9,loveslabourslost,1594 manner,9,loveslabourslost,1594 done,9,loveslabourslost,1594 o',9,loveslabourslost,1594 ill,9,loveslabourslost,1594 form,9,loveslabourslost,1594 hast,9,loveslabourslost,1594 Than,9,loveslabourslost,1594 right,9,loveslabourslost,1594 ACT,9,loveslabourslost,1594 She,9,loveslabourslost,1594 yours,9,loveslabourslost,1594 swain,9,loveslabourslost,1594 five,9,loveslabourslost,1594 only,9,loveslabourslost,1594 beseech,9,loveslabourslost,1594 find,9,loveslabourslost,1594 vow,9,loveslabourslost,1594 Dumain,9,loveslabourslost,1594 Did,9,loveslabourslost,1594 might,9,loveslabourslost,1594 Nay,10,loveslabourslost,1594 Will,10,loveslabourslost,1594 LOST,10,loveslabourslost,1594 truth,10,loveslabourslost,1594 saw,10,loveslabourslost,1594 years,10,loveslabourslost,1594 full,10,loveslabourslost,1594 fools,10,loveslabourslost,1594 Nor,10,loveslabourslost,1594 read,10,loveslabourslost,1594 France,10,loveslabourslost,1594 fear,10,loveslabourslost,1594 Here,10,loveslabourslost,1594 wish,10,loveslabourslost,1594 pretty,10,loveslabourslost,1594 wits,10,loveslabourslost,1594 hit,10,loveslabourslost,1594 down,10,loveslabourslost,1594 LOVE'S,10,loveslabourslost,1594 wench,10,loveslabourslost,1594 moon,10,loveslabourslost,1594 Hercules,10,loveslabourslost,1594 though,10,loveslabourslost,1594 gentle,10,loveslabourslost,1594 From,10,loveslabourslost,1594 mark,10,loveslabourslost,1594 before,10,loveslabourslost,1594 thing,10,loveslabourslost,1594 base,10,loveslabourslost,1594 hope,10,loveslabourslost,1594 Armado,10,loveslabourslost,1594 Rosaline,10,loveslabourslost,1594 seen,10,loveslabourslost,1594 Great,10,loveslabourslost,1594 SCENE,10,loveslabourslost,1594 Fair,10,loveslabourslost,1594 vain,11,loveslabourslost,1594 dance,11,loveslabourslost,1594 call,11,loveslabourslost,1594 better,11,loveslabourslost,1594 mean,11,loveslabourslost,1594 An,11,loveslabourslost,1594 stay,11,loveslabourslost,1594 quick,11,loveslabourslost,1594 sport,11,loveslabourslost,1594 'tis,11,loveslabourslost,1594 yet,11,loveslabourslost,1594 long,11,loveslabourslost,1594 any,11,loveslabourslost,1594 Most,11,loveslabourslost,1594 four,11,loveslabourslost,1594 plain,11,loveslabourslost,1594 Have,11,loveslabourslost,1594 faith,11,loveslabourslost,1594 none,11,loveslabourslost,1594 Therefore,11,loveslabourslost,1594 child,11,loveslabourslost,1594 many,11,loveslabourslost,1594 Longaville,11,loveslabourslost,1594 reason,11,loveslabourslost,1594 Let,11,loveslabourslost,1594 swear,11,loveslabourslost,1594 ear,11,loveslabourslost,1594 makes,11,loveslabourslost,1594 ladies,11,loveslabourslost,1594 beauty,11,loveslabourslost,1594 Boyet,12,loveslabourslost,1594 jest,12,loveslabourslost,1594 Come,12,loveslabourslost,1594 head,12,loveslabourslost,1594 paper,12,loveslabourslost,1594 came,12,loveslabourslost,1594 Who,12,loveslabourslost,1594 sworn,12,loveslabourslost,1594 Our,12,loveslabourslost,1594 white,12,loveslabourslost,1594 Do,12,loveslabourslost,1594 play,12,loveslabourslost,1594 those,12,loveslabourslost,1594 Navarre,12,loveslabourslost,1594 half,12,loveslabourslost,1594 All,12,loveslabourslost,1594 who,12,loveslabourslost,1594 think,12,loveslabourslost,1594 break,12,loveslabourslost,1594 please,12,loveslabourslost,1594 Sweet,12,loveslabourslost,1594 fast,12,loveslabourslost,1594 whom,12,loveslabourslost,1594 two,12,loveslabourslost,1594 Where,12,loveslabourslost,1594 without,12,loveslabourslost,1594 Worthies,12,loveslabourslost,1594 shame,12,loveslabourslost,1594 heaven,13,loveslabourslost,1594 boy,13,loveslabourslost,1594 best,13,loveslabourslost,1594 dear,13,loveslabourslost,1594 made,13,loveslabourslost,1594 Some,13,loveslabourslost,1594 way,13,loveslabourslost,1594 Costard,13,loveslabourslost,1594 first,13,loveslabourslost,1594 being,13,loveslabourslost,1594 father,13,loveslabourslost,1594 nothing,14,loveslabourslost,1594 both,14,loveslabourslost,1594 blood,14,loveslabourslost,1594 Or,14,loveslabourslost,1594 part,14,loveslabourslost,1594 end,14,loveslabourslost,1594 ever,14,loveslabourslost,1594 hold,14,loveslabourslost,1594 Judas,14,loveslabourslost,1594 woman,14,loveslabourslost,1594 words,15,loveslabourslost,1594 tell,15,loveslabourslost,1594 therefore,15,loveslabourslost,1594 keep,15,loveslabourslost,1594 art,15,loveslabourslost,1594 fool,15,loveslabourslost,1594 very,15,loveslabourslost,1594 same,15,loveslabourslost,1594 court,15,loveslabourslost,1594 oath,15,loveslabourslost,1594 princess,15,loveslabourslost,1594 l'envoy,16,loveslabourslost,1594 look,16,loveslabourslost,1594 speak,16,loveslabourslost,1594 little,16,loveslabourslost,1594 lords,16,loveslabourslost,1594 comes,16,loveslabourslost,1594 thus,16,loveslabourslost,1594 cannot,16,loveslabourslost,1594 Exit,16,loveslabourslost,1594 other,16,loveslabourslost,1594 name,17,loveslabourslost,1594 He,17,loveslabourslost,1594 Is,17,loveslabourslost,1594 prove,17,loveslabourslost,1594 Which,17,loveslabourslost,1594 Exeunt,17,loveslabourslost,1594 been,17,loveslabourslost,1594 Reads,17,loveslabourslost,1594 forsworn,17,loveslabourslost,1594 Your,17,loveslabourslost,1594 again,17,loveslabourslost,1594 why,17,loveslabourslost,1594 time,17,loveslabourslost,1594 Hector,17,loveslabourslost,1594 With,18,loveslabourslost,1594 put,18,loveslabourslost,1594 go,18,loveslabourslost,1594 hand,18,loveslabourslost,1594 show,18,loveslabourslost,1594 Thou,18,loveslabourslost,1594 take,18,loveslabourslost,1594 madam,18,loveslabourslost,1594 had,19,loveslabourslost,1594 So,19,loveslabourslost,1594 still,19,loveslabourslost,1594 Now,20,loveslabourslost,1594 Not,20,loveslabourslost,1594 study,20,loveslabourslost,1594 Sir,20,loveslabourslost,1594 They,20,loveslabourslost,1594 Well,20,loveslabourslost,1594 old,20,loveslabourslost,1594 great,20,loveslabourslost,1594 master,20,loveslabourslost,1594 JAQUENETTA,20,loveslabourslost,1594 upon,21,loveslabourslost,1594 world,21,loveslabourslost,1594 hear,21,loveslabourslost,1594 Why,21,loveslabourslost,1594 Ay,21,loveslabourslost,1594 tongue,21,loveslabourslost,1594 Pompey,21,loveslabourslost,1594 up,21,loveslabourslost,1594 where,21,loveslabourslost,1594 men,21,loveslabourslost,1594 every,22,loveslabourslost,1594 DULL,22,loveslabourslost,1594 Lord,22,loveslabourslost,1594 Then,22,loveslabourslost,1594 true,22,loveslabourslost,1594 My,23,loveslabourslost,1594 In,23,loveslabourslost,1594 should,23,loveslabourslost,1594 mine,23,loveslabourslost,1594 own,23,loveslabourslost,1594 than,24,loveslabourslost,1594 never,24,loveslabourslost,1594 Of,24,loveslabourslost,1594 We,24,loveslabourslost,1594 letter,24,loveslabourslost,1594 Biron,25,loveslabourslost,1594 away,25,loveslabourslost,1594 It,25,loveslabourslost,1594 How,25,loveslabourslost,1594 No,26,loveslabourslost,1594 God,26,loveslabourslost,1594 how,26,loveslabourslost,1594 SIR,26,loveslabourslost,1594 face,26,loveslabourslost,1594 day,26,loveslabourslost,1594 NATHANIEL,26,loveslabourslost,1594 When,26,loveslabourslost,1594 must,27,loveslabourslost,1594 light,27,loveslabourslost,1594 there,27,loveslabourslost,1594 praise,27,loveslabourslost,1594 give,28,loveslabourslost,1594 let,28,loveslabourslost,1594 can,29,loveslabourslost,1594 grace,29,loveslabourslost,1594 MARIA,29,loveslabourslost,1594 Enter,29,loveslabourslost,1594 I'll,29,loveslabourslost,1594 king,29,loveslabourslost,1594 now,30,loveslabourslost,1594 such,31,loveslabourslost,1594 By,31,loveslabourslost,1594 come,31,loveslabourslost,1594 lady,31,loveslabourslost,1594 is,287,loveslabourslost,1594 As,32,loveslabourslost,1594 eyes,32,loveslabourslost,1594 KATHARINE,32,loveslabourslost,1594 If,33,loveslabourslost,1594 lord,33,loveslabourslost,1594 hath,33,loveslabourslost,1594 This,33,loveslabourslost,1594 word,33,loveslabourslost,1594 wit,34,loveslabourslost,1594 eye,35,loveslabourslost,1594 heart,35,loveslabourslost,1594 from,35,loveslabourslost,1594 when,35,loveslabourslost,1594 ',36,loveslabourslost,1594 these,36,loveslabourslost,1594 she,37,loveslabourslost,1594 see,37,loveslabourslost,1594 For,37,loveslabourslost,1594 us,37,loveslabourslost,1594 make,37,loveslabourslost,1594 much,38,loveslabourslost,1594 here,38,loveslabourslost,1594 some,38,loveslabourslost,1594 doth,38,loveslabourslost,1594 out,38,loveslabourslost,1594 them,39,loveslabourslost,1594 more,39,loveslabourslost,1594 like,41,loveslabourslost,1594 most,41,loveslabourslost,1594 you,297,loveslabourslost,1594 know,42,loveslabourslost,1594 say,43,loveslabourslost,1594 well,43,loveslabourslost,1594 may,43,loveslabourslost,1594 You,44,loveslabourslost,1594 did,44,loveslabourslost,1594 What,44,loveslabourslost,1594 fair,45,loveslabourslost,1594 man,46,loveslabourslost,1594 in,302,loveslabourslost,1594 their,47,loveslabourslost,1594 three,47,loveslabourslost,1594 good,48,loveslabourslost,1594 if,48,loveslabourslost,1594 which,49,loveslabourslost,1594 LONGAVILLE,49,loveslabourslost,1594 were,49,loveslabourslost,1594 our,50,loveslabourslost,1594 then,51,loveslabourslost,1594 would,51,loveslabourslost,1594 or,52,loveslabourslost,1594 But,52,loveslabourslost,1594 am,54,loveslabourslost,1594 him,55,loveslabourslost,1594 thee,56,loveslabourslost,1594 at,56,loveslabourslost,1594 an,56,loveslabourslost,1594 sweet,57,loveslabourslost,1594 too,57,loveslabourslost,1594 That,60,loveslabourslost,1594 HOLOFERNES,61,loveslabourslost,1594 they,61,loveslabourslost,1594 DUMAIN,63,loveslabourslost,1594 no,63,loveslabourslost,1594 what,63,loveslabourslost,1594 one,65,loveslabourslost,1594 To,70,loveslabourslost,1594 thy,70,loveslabourslost,1594 O,71,loveslabourslost,1594 all,73,loveslabourslost,1594 was,73,loveslabourslost,1594 thou,75,loveslabourslost,1594 on,75,loveslabourslost,1594 we,76,loveslabourslost,1594 A,77,loveslabourslost,1594 do,81,loveslabourslost,1594 ROSALINE,83,loveslabourslost,1594 shall,83,loveslabourslost,1594 sir,84,loveslabourslost,1594 her,89,loveslabourslost,1594 by,89,loveslabourslost,1594 BOYET,90,loveslabourslost,1594 MOTH,93,loveslabourslost,1594 love,95,loveslabourslost,1594 COSTARD,100,loveslabourslost,1594 are,101,loveslabourslost,1594 he,103,loveslabourslost,1594 The,105,loveslabourslost,1594 but,110,loveslabourslost,1594 ADRIANO,111,loveslabourslost,1594 DE,111,loveslabourslost,1594 ARMADO,111,loveslabourslost,1594 DON,111,loveslabourslost,1594 PRINCESS,112,loveslabourslost,1594 have,115,loveslabourslost,1594 as,116,loveslabourslost,1594 this,124,loveslabourslost,1594 FERDINAND,127,loveslabourslost,1594 so,128,loveslabourslost,1594 be,141,loveslabourslost,1594 with,147,loveslabourslost,1594 your,147,loveslabourslost,1594 me,148,loveslabourslost,1594 to,404,loveslabourslost,1594 his,149,loveslabourslost,1594 of,416,loveslabourslost,1594 And,162,loveslabourslost,1594 a,420,loveslabourslost,1594 will,166,loveslabourslost,1594 and,424,loveslabourslost,1594 BIRON,169,loveslabourslost,1594 not,196,loveslabourslost,1594 for,199,loveslabourslost,1594 it,209,loveslabourslost,1594 my,211,loveslabourslost,1594 that,223,loveslabourslost,1594 I,494,loveslabourslost,1594 the,753,loveslabourslost,1594 brave,1,merchantofvenice,1596 intermission,1,merchantofvenice,1596 religion,1,merchantofvenice,1596 cripple,1,merchantofvenice,1596 generation,1,merchantofvenice,1596 jet,1,merchantofvenice,1596 grandam,1,merchantofvenice,1596 impugn,1,merchantofvenice,1596 troubled,1,merchantofvenice,1596 vessel's,1,merchantofvenice,1596 regard,1,merchantofvenice,1596 villany,1,merchantofvenice,1596 Mislike,1,merchantofvenice,1596 asses,1,merchantofvenice,1596 sped,1,merchantofvenice,1596 willow,1,merchantofvenice,1596 relief,1,merchantofvenice,1596 neighing,1,merchantofvenice,1596 pennyworth,1,merchantofvenice,1596 piers,1,merchantofvenice,1596 guard,1,merchantofvenice,1596 riveted,1,merchantofvenice,1596 'and,1,merchantofvenice,1596 Prove,1,merchantofvenice,1596 happier,1,merchantofvenice,1596 peasantry,1,merchantofvenice,1596 forfeitures,1,merchantofvenice,1596 confused,1,merchantofvenice,1596 suffer,1,merchantofvenice,1596 cutting,1,merchantofvenice,1596 address'd,1,merchantofvenice,1596 smiles,1,merchantofvenice,1596 taking,1,merchantofvenice,1596 ports,1,merchantofvenice,1596 red,1,merchantofvenice,1596 days,1,merchantofvenice,1596 cut'st,1,merchantofvenice,1596 advice,1,merchantofvenice,1596 cureless,1,merchantofvenice,1596 derived,1,merchantofvenice,1596 doubly,1,merchantofvenice,1596 fathers,1,merchantofvenice,1596 for't,1,merchantofvenice,1596 tops,1,merchantofvenice,1596 country,1,merchantofvenice,1596 speech,1,merchantofvenice,1596 viands,1,merchantofvenice,1596 pageants,1,merchantofvenice,1596 raw,1,merchantofvenice,1596 prophet,1,merchantofvenice,1596 wish'd,1,merchantofvenice,1596 publican,1,merchantofvenice,1596 laughable,1,merchantofvenice,1596 planted,1,merchantofvenice,1596 rat,1,merchantofvenice,1596 lawyer's,1,merchantofvenice,1596 possible,1,merchantofvenice,1596 following,1,merchantofvenice,1596 treasure,1,merchantofvenice,1596 quietness,1,merchantofvenice,1596 knell,1,merchantofvenice,1596 neighbours,1,merchantofvenice,1596 woman's,1,merchantofvenice,1596 bleared,1,merchantofvenice,1596 Barrabas,1,merchantofvenice,1596 excrement,1,merchantofvenice,1596 New,1,merchantofvenice,1596 capering,1,merchantofvenice,1596 shadows,1,merchantofvenice,1596 peruse,1,merchantofvenice,1596 follies,1,merchantofvenice,1596 o'erlook'd,1,merchantofvenice,1596 dine,1,merchantofvenice,1596 advantage,1,merchantofvenice,1596 honours,1,merchantofvenice,1596 ran,1,merchantofvenice,1596 peace,1,merchantofvenice,1596 villain's,1,merchantofvenice,1596 lawful,1,merchantofvenice,1596 broth,1,merchantofvenice,1596 lower,1,merchantofvenice,1596 'Confess',1,merchantofvenice,1596 'away,1,merchantofvenice,1596 zeal,1,merchantofvenice,1596 bones,1,merchantofvenice,1596 preparation,1,merchantofvenice,1596 wren,1,merchantofvenice,1596 offended,1,merchantofvenice,1596 bonds,1,merchantofvenice,1596 shoulders,1,merchantofvenice,1596 rob,1,merchantofvenice,1596 recant,1,merchantofvenice,1596 interpreter,1,merchantofvenice,1596 steals,1,merchantofvenice,1596 Wilt,1,merchantofvenice,1596 wiving,1,merchantofvenice,1596 glean'd,1,merchantofvenice,1596 epitaph,1,merchantofvenice,1596 boys,1,merchantofvenice,1596 painter,1,merchantofvenice,1596 agitation,1,merchantofvenice,1596 jot,1,merchantofvenice,1596 Solyman,1,merchantofvenice,1596 held,1,merchantofvenice,1596 fangs,1,merchantofvenice,1596 Venus',1,merchantofvenice,1596 moiety,1,merchantofvenice,1596 alien,1,merchantofvenice,1596 laughter,1,merchantofvenice,1596 warning,1,merchantofvenice,1596 dish,1,merchantofvenice,1596 single,1,merchantofvenice,1596 Montferrat,1,merchantofvenice,1596 Laban's,1,merchantofvenice,1596 throstle,1,merchantofvenice,1596 inserted,1,merchantofvenice,1596 writes,1,merchantofvenice,1596 mesh,1,merchantofvenice,1596 Hanging,1,merchantofvenice,1596 clothes,1,merchantofvenice,1596 easier,1,merchantofvenice,1596 Marquis,1,merchantofvenice,1596 hers,1,merchantofvenice,1596 uphold,1,merchantofvenice,1596 unreasonable,1,merchantofvenice,1596 herd,1,merchantofvenice,1596 mere,1,merchantofvenice,1596 decay,1,merchantofvenice,1596 repents,1,merchantofvenice,1596 Black,1,merchantofvenice,1596 braver,1,merchantofvenice,1596 chest,1,merchantofvenice,1596 besmear,1,merchantofvenice,1596 sighs,1,merchantofvenice,1596 Neapolitan,1,merchantofvenice,1596 drum,1,merchantofvenice,1596 learn'd,1,merchantofvenice,1596 cottages,1,merchantofvenice,1596 adversary,1,merchantofvenice,1596 rib,1,merchantofvenice,1596 looked,1,merchantofvenice,1596 Pause,1,merchantofvenice,1596 Garnish'd,1,merchantofvenice,1596 sugar,1,merchantofvenice,1596 martlet,1,merchantofvenice,1596 unforfeited,1,merchantofvenice,1596 sayings,1,merchantofvenice,1596 frutify,1,merchantofvenice,1596 fury,1,merchantofvenice,1596 drink,1,merchantofvenice,1596 throat,1,merchantofvenice,1596 Sisters,1,merchantofvenice,1596 charter,1,merchantofvenice,1596 pied,1,merchantofvenice,1596 Exceed,1,merchantofvenice,1596 Medea,1,merchantofvenice,1596 worms,1,merchantofvenice,1596 prey,1,merchantofvenice,1596 alighted,1,merchantofvenice,1596 yonder,1,merchantofvenice,1596 innocence,1,merchantofvenice,1596 dreaming,1,merchantofvenice,1596 solemnized,1,merchantofvenice,1596 Endymion,1,merchantofvenice,1596 prest,1,merchantofvenice,1596 sonties,1,merchantofvenice,1596 conceiving,1,merchantofvenice,1596 sore,1,merchantofvenice,1596 Jacks,1,merchantofvenice,1596 Oracle,1,merchantofvenice,1596 inspirations,1,merchantofvenice,1596 kinder,1,merchantofvenice,1596 works,1,merchantofvenice,1596 joys,1,merchantofvenice,1596 Whom,1,merchantofvenice,1596 scruple,1,merchantofvenice,1596 infuse,1,merchantofvenice,1596 PERSONAE,1,merchantofvenice,1596 Opening,1,merchantofvenice,1596 Continent,1,merchantofvenice,1596 boy's,1,merchantofvenice,1596 demand,1,merchantofvenice,1596 spare,1,merchantofvenice,1596 saved,1,merchantofvenice,1596 cast,1,merchantofvenice,1596 mingled,1,merchantofvenice,1596 Nerissa's,1,merchantofvenice,1596 early,1,merchantofvenice,1596 droppeth,1,merchantofvenice,1596 indirect,1,merchantofvenice,1596 pursue,1,merchantofvenice,1596 stoops,1,merchantofvenice,1596 stirring,1,merchantofvenice,1596 beneath,1,merchantofvenice,1596 plague,1,merchantofvenice,1596 shuddering,1,merchantofvenice,1596 Over,1,merchantofvenice,1596 delivered,1,merchantofvenice,1596 advantages,1,merchantofvenice,1596 strength,1,merchantofvenice,1596 chin,1,merchantofvenice,1596 VIII,1,merchantofvenice,1596 order'd,1,merchantofvenice,1596 palates,1,merchantofvenice,1596 graces,1,merchantofvenice,1596 Forget,1,merchantofvenice,1596 ostents,1,merchantofvenice,1596 seven,1,merchantofvenice,1596 plies,1,merchantofvenice,1596 birth,1,merchantofvenice,1596 amazed,1,merchantofvenice,1596 feather,1,merchantofvenice,1596 After,1,merchantofvenice,1596 jest,1,merchantofvenice,1596 stock,1,merchantofvenice,1596 reddest,1,merchantofvenice,1596 sole,1,merchantofvenice,1596 beefs,1,merchantofvenice,1596 sold,1,merchantofvenice,1596 confusion,1,merchantofvenice,1596 wrung,1,merchantofvenice,1596 Young,1,merchantofvenice,1596 grieving,1,merchantofvenice,1596 mastership,1,merchantofvenice,1596 fulsome,1,merchantofvenice,1596 backward,1,merchantofvenice,1596 losers,1,merchantofvenice,1596 line,1,merchantofvenice,1596 fortunate,1,merchantofvenice,1596 Argus,1,merchantofvenice,1596 OLD,1,merchantofvenice,1596 circumstance,1,merchantofvenice,1596 Cold,1,merchantofvenice,1596 opposed,1,merchantofvenice,1596 limp,1,merchantofvenice,1596 pilgrimage,1,merchantofvenice,1596 outstare,1,merchantofvenice,1596 dram,1,merchantofvenice,1596 boards,1,merchantofvenice,1596 'cover',1,merchantofvenice,1596 enthroned,1,merchantofvenice,1596 snore,1,merchantofvenice,1596 obdurate,1,merchantofvenice,1596 subjects,1,merchantofvenice,1596 budge,1,merchantofvenice,1596 drew,1,merchantofvenice,1596 Fled,1,merchantofvenice,1596 worthier,1,merchantofvenice,1596 contrive,1,merchantofvenice,1596 exclaim,1,merchantofvenice,1596 soften,1,merchantofvenice,1596 shadow's,1,merchantofvenice,1596 pines,1,merchantofvenice,1596 shadow'd,1,merchantofvenice,1596 untread,1,merchantofvenice,1596 hanging,1,merchantofvenice,1596 howso'er,1,merchantofvenice,1596 cobwebs,1,merchantofvenice,1596 healed,1,merchantofvenice,1596 rites,1,merchantofvenice,1596 likeness,1,merchantofvenice,1596 enacted,1,merchantofvenice,1596 pillar,1,merchantofvenice,1596 blessed,1,merchantofvenice,1596 abode,1,merchantofvenice,1596 Dardanian,1,merchantofvenice,1596 visit,1,merchantofvenice,1596 inhuman,1,merchantofvenice,1596 wait,1,merchantofvenice,1596 drones,1,merchantofvenice,1596 kin,1,merchantofvenice,1596 paltry,1,merchantofvenice,1596 Cupid,1,merchantofvenice,1596 visitation,1,merchantofvenice,1596 Chance,1,merchantofvenice,1596 adventuring,1,merchantofvenice,1596 Gentle,1,merchantofvenice,1596 sinful,1,merchantofvenice,1596 discovery,1,merchantofvenice,1596 owners,1,merchantofvenice,1596 ocean,1,merchantofvenice,1596 outface,1,merchantofvenice,1596 conceits,1,merchantofvenice,1596 Nearest,1,merchantofvenice,1596 weaker,1,merchantofvenice,1596 hereafter,1,merchantofvenice,1596 slightly,1,merchantofvenice,1596 waft,1,merchantofvenice,1596 monkeys,1,merchantofvenice,1596 flatly,1,merchantofvenice,1596 throned,1,merchantofvenice,1596 'honest,1,merchantofvenice,1596 wilderness,1,merchantofvenice,1596 sums,1,merchantofvenice,1596 mincing,1,merchantofvenice,1596 Get,1,merchantofvenice,1596 faithfully,1,merchantofvenice,1596 conceive,1,merchantofvenice,1596 talker,1,merchantofvenice,1596 comments,1,merchantofvenice,1596 warrant,1,merchantofvenice,1596 Phoebus',1,merchantofvenice,1596 trebled,1,merchantofvenice,1596 impossible,1,merchantofvenice,1596 deceased,1,merchantofvenice,1596 paying,1,merchantofvenice,1596 penance,1,merchantofvenice,1596 possessor,1,merchantofvenice,1596 Obscures,1,merchantofvenice,1596 wearer,1,merchantofvenice,1596 wall,1,merchantofvenice,1596 constitution,1,merchantofvenice,1596 vice,1,merchantofvenice,1596 virtuous,1,merchantofvenice,1596 coals,1,merchantofvenice,1596 Pawn'd,1,merchantofvenice,1596 wake,1,merchantofvenice,1596 Deserved,1,merchantofvenice,1596 mending,1,merchantofvenice,1596 slaughter,1,merchantofvenice,1596 chiefest,1,merchantofvenice,1596 'twas,1,merchantofvenice,1596 wedding,1,merchantofvenice,1596 peevish,1,merchantofvenice,1596 weather'd,1,merchantofvenice,1596 disabled,1,merchantofvenice,1596 scorn,1,merchantofvenice,1596 love's,1,merchantofvenice,1596 deliver,1,merchantofvenice,1596 embrace,1,merchantofvenice,1596 cradle,1,merchantofvenice,1596 earnestly,1,merchantofvenice,1596 branches,1,merchantofvenice,1596 hearsed,1,merchantofvenice,1596 steps,1,merchantofvenice,1596 'Shylock,1,merchantofvenice,1596 gaberdine,1,merchantofvenice,1596 nourished,1,merchantofvenice,1596 'a,1,merchantofvenice,1596 follower,1,merchantofvenice,1596 raised,1,merchantofvenice,1596 mantle,1,merchantofvenice,1596 followed,1,merchantofvenice,1596 lawfully,1,merchantofvenice,1596 apparent,1,merchantofvenice,1596 'I,1,merchantofvenice,1596 Silence,1,merchantofvenice,1596 usual,1,merchantofvenice,1596 cozen,1,merchantofvenice,1596 Their,1,merchantofvenice,1596 livers,1,merchantofvenice,1596 'scuse,1,merchantofvenice,1596 forthwith,1,merchantofvenice,1596 impertinent,1,merchantofvenice,1596 Builds,1,merchantofvenice,1596 competency,1,merchantofvenice,1596 multitudes,1,merchantofvenice,1596 clerk's,1,merchantofvenice,1596 beloved,1,merchantofvenice,1596 commends,1,merchantofvenice,1596 level,1,merchantofvenice,1596 groans,1,merchantofvenice,1596 knapped,1,merchantofvenice,1596 lambs,1,merchantofvenice,1596 childhood,1,merchantofvenice,1596 faults,1,merchantofvenice,1596 Doctor,1,merchantofvenice,1596 Consisteth,1,merchantofvenice,1596 Thanks,1,merchantofvenice,1596 stuff,1,merchantofvenice,1596 shallows,1,merchantofvenice,1596 becomes,1,merchantofvenice,1596 amiss,1,merchantofvenice,1596 baron,1,merchantofvenice,1596 poverty,1,merchantofvenice,1596 purchasing,1,merchantofvenice,1596 woolly,1,merchantofvenice,1596 skipping,1,merchantofvenice,1596 swelling,1,merchantofvenice,1596 coach,1,merchantofvenice,1596 Frankfort,1,merchantofvenice,1596 offence,1,merchantofvenice,1596 tranect,1,merchantofvenice,1596 taught,1,merchantofvenice,1596 'choose,1,merchantofvenice,1596 felt,1,merchantofvenice,1596 wroth,1,merchantofvenice,1596 fight,1,merchantofvenice,1596 redeem,1,merchantofvenice,1596 received,1,merchantofvenice,1596 squealing,1,merchantofvenice,1596 showed,1,merchantofvenice,1596 France,1,merchantofvenice,1596 lingering,1,merchantofvenice,1596 snow,1,merchantofvenice,1596 portly,1,merchantofvenice,1596 brain,1,merchantofvenice,1596 fawning,1,merchantofvenice,1596 stickest,1,merchantofvenice,1596 monster,1,merchantofvenice,1596 cousin's,1,merchantofvenice,1596 marring,1,merchantofvenice,1596 gormandise,1,merchantofvenice,1596 chased,1,merchantofvenice,1596 Cato's,1,merchantofvenice,1596 o'ertrip,1,merchantofvenice,1596 palaces,1,merchantofvenice,1596 unhallow'd,1,merchantofvenice,1596 wive,1,merchantofvenice,1596 twelve,1,merchantofvenice,1596 guarded,1,merchantofvenice,1596 Officers,1,merchantofvenice,1596 woollen,1,merchantofvenice,1596 loathes,1,merchantofvenice,1596 Whereof,1,merchantofvenice,1596 figure,1,merchantofvenice,1596 civil,1,merchantofvenice,1596 reed,1,merchantofvenice,1596 Destinies,1,merchantofvenice,1596 plots,1,merchantofvenice,1596 Aloud,1,merchantofvenice,1596 endeavours,1,merchantofvenice,1596 variable,1,merchantofvenice,1596 detain,1,merchantofvenice,1596 envious,1,merchantofvenice,1596 loose,1,merchantofvenice,1596 seeks,1,merchantofvenice,1596 dearly,1,merchantofvenice,1596 fruit,1,merchantofvenice,1596 civility,1,merchantofvenice,1596 relation,1,merchantofvenice,1596 traffickers,1,merchantofvenice,1596 Leave,1,merchantofvenice,1596 princes,1,merchantofvenice,1596 crossing,1,merchantofvenice,1596 speechless,1,merchantofvenice,1596 Lichas,1,merchantofvenice,1596 Report,1,merchantofvenice,1596 sup,1,merchantofvenice,1596 elder,1,merchantofvenice,1596 conveniency,1,merchantofvenice,1596 singed,1,merchantofvenice,1596 fearful,1,merchantofvenice,1596 rein,1,merchantofvenice,1596 feel,1,merchantofvenice,1596 rush,1,merchantofvenice,1596 slavish,1,merchantofvenice,1596 infinite,1,merchantofvenice,1596 humbly,1,merchantofvenice,1596 desirest,1,merchantofvenice,1596 'amen,1,merchantofvenice,1596 beaten,1,merchantofvenice,1596 temporal,1,merchantofvenice,1596 masters,1,merchantofvenice,1596 costly,1,merchantofvenice,1596 cuckoo,1,merchantofvenice,1596 Ergo,1,merchantofvenice,1596 corrupt,1,merchantofvenice,1596 torturer,1,merchantofvenice,1596 weather,1,merchantofvenice,1596 manna,1,merchantofvenice,1596 speaking,1,merchantofvenice,1596 lion's,1,merchantofvenice,1596 wishes,1,merchantofvenice,1596 unbated,1,merchantofvenice,1596 Gifts,1,merchantofvenice,1596 ceremony,1,merchantofvenice,1596 applause,1,merchantofvenice,1596 Spits,1,merchantofvenice,1596 Fly,1,merchantofvenice,1596 conveniently,1,merchantofvenice,1596 keenness,1,merchantofvenice,1596 soldier,1,merchantofvenice,1596 shrine,1,merchantofvenice,1596 Latin,1,merchantofvenice,1596 turquoise,1,merchantofvenice,1596 cuckold,1,merchantofvenice,1596 wins,1,merchantofvenice,1596 rend,1,merchantofvenice,1596 vendible,1,merchantofvenice,1596 Crying,1,merchantofvenice,1596 respective,1,merchantofvenice,1596 latter,1,merchantofvenice,1596 wether,1,merchantofvenice,1596 rent,1,merchantofvenice,1596 expressly,1,merchantofvenice,1596 want,1,merchantofvenice,1596 Gratiano's,1,merchantofvenice,1596 Musicians,1,merchantofvenice,1596 edge,1,merchantofvenice,1596 harmless,1,merchantofvenice,1596 Friend,1,merchantofvenice,1596 superfluity,1,merchantofvenice,1596 peize,1,merchantofvenice,1596 sign'd,1,merchantofvenice,1596 Englishman,1,merchantofvenice,1596 know'st,1,merchantofvenice,1596 gaged,1,merchantofvenice,1596 goose,1,merchantofvenice,1596 renew,1,merchantofvenice,1596 transformed,1,merchantofvenice,1596 uncheck'd,1,merchantofvenice,1596 exact'st,1,merchantofvenice,1596 Immediately,1,merchantofvenice,1596 died,1,merchantofvenice,1596 directly,1,merchantofvenice,1596 Slubber,1,merchantofvenice,1596 murder,1,merchantofvenice,1596 Janus,1,merchantofvenice,1596 throws,1,merchantofvenice,1596 displeasure,1,merchantofvenice,1596 sense,1,merchantofvenice,1596 indebted,1,merchantofvenice,1596 window,1,merchantofvenice,1596 ambassador,1,merchantofvenice,1596 summon,1,merchantofvenice,1596 bidding,1,merchantofvenice,1596 warm,1,merchantofvenice,1596 shrive,1,merchantofvenice,1596 harbour,1,merchantofvenice,1596 merely,1,merchantofvenice,1596 coast,1,merchantofvenice,1596 dice,1,merchantofvenice,1596 threatenest,1,merchantofvenice,1596 breeding,1,merchantofvenice,1596 cunning,1,merchantofvenice,1596 sunny,1,merchantofvenice,1596 rule,1,merchantofvenice,1596 bone,1,merchantofvenice,1596 office,1,merchantofvenice,1596 Turning,1,merchantofvenice,1596 casualty,1,merchantofvenice,1596 sweating,1,merchantofvenice,1596 observe,1,merchantofvenice,1596 book,1,merchantofvenice,1596 shedding,1,merchantofvenice,1596 Supply,1,merchantofvenice,1596 forgave,1,merchantofvenice,1596 framed,1,merchantofvenice,1596 party,1,merchantofvenice,1596 Repair,1,merchantofvenice,1596 colour,1,merchantofvenice,1596 Follow,1,merchantofvenice,1596 sceptre,1,merchantofvenice,1596 Draw,1,merchantofvenice,1596 fairest,1,merchantofvenice,1596 nephew,1,merchantofvenice,1596 each,1,merchantofvenice,1596 big,1,merchantofvenice,1596 senses,1,merchantofvenice,1596 parti,1,merchantofvenice,1596 wherefore,1,merchantofvenice,1596 knowledge,1,merchantofvenice,1596 preferr'd,1,merchantofvenice,1596 rival,1,merchantofvenice,1596 grievous,1,merchantofvenice,1596 Jewess',1,merchantofvenice,1596 Saxony's,1,merchantofvenice,1596 heiress,1,merchantofvenice,1596 contrived,1,merchantofvenice,1596 merriment,1,merchantofvenice,1596 keys,1,merchantofvenice,1596 slaves,1,merchantofvenice,1596 cudgel,1,merchantofvenice,1596 burning,1,merchantofvenice,1596 gratify,1,merchantofvenice,1596 drown,1,merchantofvenice,1596 unkind,1,merchantofvenice,1596 enjoy'd,1,merchantofvenice,1596 strongly,1,merchantofvenice,1596 melancholy,1,merchantofvenice,1596 Hold,1,merchantofvenice,1596 Hagar's,1,merchantofvenice,1596 seasoned,1,merchantofvenice,1596 hat,1,merchantofvenice,1596 aboard,1,merchantofvenice,1596 drudge,1,merchantofvenice,1596 bushels,1,merchantofvenice,1596 What's,1,merchantofvenice,1596 Dobbin,1,merchantofvenice,1596 sweeter,1,merchantofvenice,1596 utter,1,merchantofvenice,1596 delivering,1,merchantofvenice,1596 Servitor,1,merchantofvenice,1596 obtained,1,merchantofvenice,1596 resemble,1,merchantofvenice,1596 quiring,1,merchantofvenice,1596 Thisbe,1,merchantofvenice,1596 inter'gatories,1,merchantofvenice,1596 balls,1,merchantofvenice,1596 perfection,1,merchantofvenice,1596 controversy,1,merchantofvenice,1596 infection,1,merchantofvenice,1596 showing,1,merchantofvenice,1596 stubborn,1,merchantofvenice,1596 tonight,1,merchantofvenice,1596 mistrust,1,merchantofvenice,1596 quarrel,1,merchantofvenice,1596 compromised,1,merchantofvenice,1596 informed,1,merchantofvenice,1596 chaste,1,merchantofvenice,1596 Hie,1,merchantofvenice,1596 heresy,1,merchantofvenice,1596 loathing,1,merchantofvenice,1596 approaching,1,merchantofvenice,1596 youthful,1,merchantofvenice,1596 box,1,merchantofvenice,1596 bow,1,merchantofvenice,1596 loath,1,merchantofvenice,1596 Whiles,1,merchantofvenice,1596 knowing,1,merchantofvenice,1596 reason'd,1,merchantofvenice,1596 govern,1,merchantofvenice,1596 beggar'd,1,merchantofvenice,1596 cursed'st,1,merchantofvenice,1596 Le,1,merchantofvenice,1596 behold'st,1,merchantofvenice,1596 voluntary,1,merchantofvenice,1596 smile,1,merchantofvenice,1596 blent,1,merchantofvenice,1596 flats,1,merchantofvenice,1596 Nature,1,merchantofvenice,1596 secretly,1,merchantofvenice,1596 imagined,1,merchantofvenice,1596 bay,1,merchantofvenice,1596 pays,1,merchantofvenice,1596 furthermore,1,merchantofvenice,1596 lands,1,merchantofvenice,1596 Charybdis,1,merchantofvenice,1596 Giddy,1,merchantofvenice,1596 proof,1,merchantofvenice,1596 ladyship,1,merchantofvenice,1596 Falconbridge,1,merchantofvenice,1596 treble,1,merchantofvenice,1596 gentleness,1,merchantofvenice,1596 patines,1,merchantofvenice,1596 doves,1,merchantofvenice,1596 riping,1,merchantofvenice,1596 dimensions,1,merchantofvenice,1596 Albeit,1,merchantofvenice,1596 Persian,1,merchantofvenice,1596 Pay,1,merchantofvenice,1596 beautiful,1,merchantofvenice,1596 quaintly,1,merchantofvenice,1596 denied,1,merchantofvenice,1596 contending,1,merchantofvenice,1596 pen,1,merchantofvenice,1596 reasoning,1,merchantofvenice,1596 house's,1,merchantofvenice,1596 Oh,1,merchantofvenice,1596 Sibylla,1,merchantofvenice,1596 interior,1,merchantofvenice,1596 hie,1,merchantofvenice,1596 finds,1,merchantofvenice,1596 Cornets,1,merchantofvenice,1596 motions,1,merchantofvenice,1596 habitation,1,merchantofvenice,1596 tear,1,merchantofvenice,1596 Something,1,merchantofvenice,1596 Ha,1,merchantofvenice,1596 approve,1,merchantofvenice,1596 fatal,1,merchantofvenice,1596 Ho,1,merchantofvenice,1596 meant,1,merchantofvenice,1596 Fetching,1,merchantofvenice,1596 IX,1,merchantofvenice,1596 enchanted,1,merchantofvenice,1596 unfurnish'd,1,merchantofvenice,1596 neighbourly,1,merchantofvenice,1596 gambols,1,merchantofvenice,1596 quick,1,merchantofvenice,1596 digest,1,merchantofvenice,1596 cuckolds,1,merchantofvenice,1596 braggart,1,merchantofvenice,1596 Engaged,1,merchantofvenice,1596 despair,1,merchantofvenice,1596 exhortation,1,merchantofvenice,1596 Let's,1,merchantofvenice,1596 Notwithstanding,1,merchantofvenice,1596 commendation,1,merchantofvenice,1596 thoroughfares,1,merchantofvenice,1596 Troilus,1,merchantofvenice,1596 temples,1,merchantofvenice,1596 matched,1,merchantofvenice,1596 ague,1,merchantofvenice,1596 nice,1,merchantofvenice,1596 vesture,1,merchantofvenice,1596 VI,1,merchantofvenice,1596 formerly,1,merchantofvenice,1596 riseth,1,merchantofvenice,1596 Gold,1,merchantofvenice,1596 impenetrable,1,merchantofvenice,1596 snapper,1,merchantofvenice,1596 outlive,1,merchantofvenice,1596 attentive,1,merchantofvenice,1596 churches,1,merchantofvenice,1596 became,1,merchantofvenice,1596 temple,1,merchantofvenice,1596 begot,1,merchantofvenice,1596 jaundice,1,merchantofvenice,1596 obey,1,merchantofvenice,1596 valour's,1,merchantofvenice,1596 Adieu,1,merchantofvenice,1596 outcries,1,merchantofvenice,1596 Forgive,1,merchantofvenice,1596 strain'd,1,merchantofvenice,1596 sought,1,merchantofvenice,1596 messages,1,merchantofvenice,1596 depending,1,merchantofvenice,1596 worshipped,1,merchantofvenice,1596 knowist,1,merchantofvenice,1596 valiant,1,merchantofvenice,1596 be'st,1,merchantofvenice,1596 tossing,1,merchantofvenice,1596 exhibit,1,merchantofvenice,1596 Fading,1,merchantofvenice,1596 unhandled,1,merchantofvenice,1596 proportion,1,merchantofvenice,1596 icicles,1,merchantofvenice,1596 bend,1,merchantofvenice,1596 stray,1,merchantofvenice,1596 urine,1,merchantofvenice,1596 grief,1,merchantofvenice,1596 whereby,1,merchantofvenice,1596 sooner,1,merchantofvenice,1596 rebel,1,merchantofvenice,1596 fields,1,merchantofvenice,1596 suffer'd,1,merchantofvenice,1596 Thou'lt,1,merchantofvenice,1596 coffin,1,merchantofvenice,1596 hymn,1,merchantofvenice,1596 Yourself,1,merchantofvenice,1596 children,1,merchantofvenice,1596 awaked,1,merchantofvenice,1596 notary's,1,merchantofvenice,1596 tricks,1,merchantofvenice,1596 moreover,1,merchantofvenice,1596 dote,1,merchantofvenice,1596 wrecked,1,merchantofvenice,1596 furnished,1,merchantofvenice,1596 devised,1,merchantofvenice,1596 weak,1,merchantofvenice,1596 wedlock,1,merchantofvenice,1596 treasons,1,merchantofvenice,1596 livings,1,merchantofvenice,1596 Entreat,1,merchantofvenice,1596 Behold,1,merchantofvenice,1596 Snail,1,merchantofvenice,1596 sustain,1,merchantofvenice,1596 Lies,1,merchantofvenice,1596 Speak,1,merchantofvenice,1596 unlock,1,merchantofvenice,1596 Put,1,merchantofvenice,1596 jealous,1,merchantofvenice,1596 Avenue,1,merchantofvenice,1596 Waste,1,merchantofvenice,1596 sepulchre,1,merchantofvenice,1596 Arabia,1,merchantofvenice,1596 burghers,1,merchantofvenice,1596 tempts,1,merchantofvenice,1596 prating,1,merchantofvenice,1596 Chus,1,merchantofvenice,1596 a',1,merchantofvenice,1596 serpent,1,merchantofvenice,1596 gondola,1,merchantofvenice,1596 jewel,1,merchantofvenice,1596 Didst,1,merchantofvenice,1596 despise,1,merchantofvenice,1596 drowning,1,merchantofvenice,1596 established,1,merchantofvenice,1596 friendly,1,merchantofvenice,1596 curse,1,merchantofvenice,1596 badge,1,merchantofvenice,1596 swift,1,merchantofvenice,1596 likest,1,merchantofvenice,1596 vows,1,merchantofvenice,1596 masqued,1,merchantofvenice,1596 Above,1,merchantofvenice,1596 gather'd,1,merchantofvenice,1596 used,1,merchantofvenice,1596 survey,1,merchantofvenice,1596 Meet,1,merchantofvenice,1596 masques,1,merchantofvenice,1596 prolixity,1,merchantofvenice,1596 people's,1,merchantofvenice,1596 divine,1,merchantofvenice,1596 jump,1,merchantofvenice,1596 beds,1,merchantofvenice,1596 smack,1,merchantofvenice,1596 Whither,1,merchantofvenice,1596 Midas,1,merchantofvenice,1596 grace's,1,merchantofvenice,1596 vantage,1,merchantofvenice,1596 footing,1,merchantofvenice,1596 grandsire,1,merchantofvenice,1596 orderly,1,merchantofvenice,1596 Stolen,1,merchantofvenice,1596 immortal,1,merchantofvenice,1596 lately,1,merchantofvenice,1596 trades,1,merchantofvenice,1596 acceptance,1,merchantofvenice,1596 crowned,1,merchantofvenice,1596 search'd,1,merchantofvenice,1596 opens,1,merchantofvenice,1596 begin,1,merchantofvenice,1596 quite,1,merchantofvenice,1596 pearls,1,merchantofvenice,1596 envy's,1,merchantofvenice,1596 dogs,1,merchantofvenice,1596 entertain,1,merchantofvenice,1596 storm,1,merchantofvenice,1596 deliverance,1,merchantofvenice,1596 solely,1,merchantofvenice,1596 promised,1,merchantofvenice,1596 inter'gatory,1,merchantofvenice,1596 wretch,1,merchantofvenice,1596 mood,1,merchantofvenice,1596 eloquence,1,merchantofvenice,1596 unpractised,1,merchantofvenice,1596 aim,1,merchantofvenice,1596 Goodly,1,merchantofvenice,1596 Methought,1,merchantofvenice,1596 keeping,1,merchantofvenice,1596 yea,1,merchantofvenice,1596 barely,1,merchantofvenice,1596 doit,1,merchantofvenice,1596 excellent,1,merchantofvenice,1596 shrug,1,merchantofvenice,1596 burial,1,merchantofvenice,1596 SONG,1,merchantofvenice,1596 faster,1,merchantofvenice,1596 oddly,1,merchantofvenice,1596 consider,1,merchantofvenice,1596 current,1,merchantofvenice,1596 runaway,1,merchantofvenice,1596 sheep,1,merchantofvenice,1596 prevented,1,merchantofvenice,1596 safe,1,merchantofvenice,1596 colts,1,merchantofvenice,1596 wreck,1,merchantofvenice,1596 Making,1,merchantofvenice,1596 yes,1,merchantofvenice,1596 rightful,1,merchantofvenice,1596 praying,1,merchantofvenice,1596 legs,1,merchantofvenice,1596 notes,1,merchantofvenice,1596 blesseth,1,merchantofvenice,1596 Past,1,merchantofvenice,1596 swearing,1,merchantofvenice,1596 rails,1,merchantofvenice,1596 stone,1,merchantofvenice,1596 plays,1,merchantofvenice,1596 unlocks,1,merchantofvenice,1596 deal,1,merchantofvenice,1596 stony,1,merchantofvenice,1596 autumn,1,merchantofvenice,1596 Revenge,1,merchantofvenice,1596 depends,1,merchantofvenice,1596 dignity,1,merchantofvenice,1596 gild,1,merchantofvenice,1596 likely,1,merchantofvenice,1596 lent,1,merchantofvenice,1596 played,1,merchantofvenice,1596 Return,1,merchantofvenice,1596 seeming,1,merchantofvenice,1596 stain'd,1,merchantofvenice,1596 enforce,1,merchantofvenice,1596 edifice,1,merchantofvenice,1596 touch'd,1,merchantofvenice,1596 unwillingly,1,merchantofvenice,1596 accused,1,merchantofvenice,1596 stole,1,merchantofvenice,1596 sponge,1,merchantofvenice,1596 Sultan,1,merchantofvenice,1596 Rest,1,merchantofvenice,1596 demurely,1,merchantofvenice,1596 buried,1,merchantofvenice,1596 usurer,1,merchantofvenice,1596 lends,1,merchantofvenice,1596 quaint,1,merchantofvenice,1596 enfold,1,merchantofvenice,1596 comforts,1,merchantofvenice,1596 Leonardo,1,merchantofvenice,1596 Directly,1,merchantofvenice,1596 shed,1,merchantofvenice,1596 slips,1,merchantofvenice,1596 approach,1,merchantofvenice,1596 manner,1,merchantofvenice,1596 wench,1,merchantofvenice,1596 displeased,1,merchantofvenice,1596 crosses,1,merchantofvenice,1596 humours,1,merchantofvenice,1596 Salanio,1,merchantofvenice,1596 rouse,1,merchantofvenice,1596 dried,1,merchantofvenice,1596 prosper,1,merchantofvenice,1596 idiot,1,merchantofvenice,1596 underprizing,1,merchantofvenice,1596 attending,1,merchantofvenice,1596 damn'd,1,merchantofvenice,1596 slink,1,merchantofvenice,1596 Yonder,1,merchantofvenice,1596 fledged,1,merchantofvenice,1596 small,1,merchantofvenice,1596 demi,1,merchantofvenice,1596 wisely,1,merchantofvenice,1596 fairness,1,merchantofvenice,1596 crave,1,merchantofvenice,1596 aside,1,merchantofvenice,1596 wrinkles,1,merchantofvenice,1596 Italian,1,merchantofvenice,1596 outrageous,1,merchantofvenice,1596 moth,1,merchantofvenice,1596 wrinkled,1,merchantofvenice,1596 sceptred,1,merchantofvenice,1596 Happiest,1,merchantofvenice,1596 Live,1,merchantofvenice,1596 corruptly,1,merchantofvenice,1596 deface,1,merchantofvenice,1596 Myself,1,merchantofvenice,1596 scholar,1,merchantofvenice,1596 Ready,1,merchantofvenice,1596 temper,1,merchantofvenice,1596 India,1,merchantofvenice,1596 accomplished,1,merchantofvenice,1596 dock'd,1,merchantofvenice,1596 loves,1,merchantofvenice,1596 hadst,1,merchantofvenice,1596 Renowned,1,merchantofvenice,1596 studied,1,merchantofvenice,1596 impediment,1,merchantofvenice,1596 offer'd,1,merchantofvenice,1596 curbed,1,merchantofvenice,1596 ado,1,merchantofvenice,1596 commands,1,merchantofvenice,1596 add,1,merchantofvenice,1596 beholding,1,merchantofvenice,1596 diamond,1,merchantofvenice,1596 semblance,1,merchantofvenice,1596 Servants,1,merchantofvenice,1596 wherein,1,merchantofvenice,1596 Faster,1,merchantofvenice,1596 twinkling,1,merchantofvenice,1596 weakest,1,merchantofvenice,1596 spend,1,merchantofvenice,1596 apparel,1,merchantofvenice,1596 continent,1,merchantofvenice,1596 necessary,1,merchantofvenice,1596 lets,1,merchantofvenice,1596 beauteous,1,merchantofvenice,1596 confusions,1,merchantofvenice,1596 lock'd,1,merchantofvenice,1596 bootless,1,merchantofvenice,1596 strand,1,merchantofvenice,1596 commandment,1,merchantofvenice,1596 Creep,1,merchantofvenice,1596 cerecloth,1,merchantofvenice,1596 forgot,1,merchantofvenice,1596 attain,1,merchantofvenice,1596 wo,1,merchantofvenice,1596 pure,1,merchantofvenice,1596 natures,1,merchantofvenice,1596 men's,1,merchantofvenice,1596 Move,1,merchantofvenice,1596 wisest,1,merchantofvenice,1596 Double,1,merchantofvenice,1596 Came,1,merchantofvenice,1596 presume,1,merchantofvenice,1596 harm,1,merchantofvenice,1596 tucket,1,merchantofvenice,1596 killed,1,merchantofvenice,1596 events,1,merchantofvenice,1596 hardly,1,merchantofvenice,1596 brought,1,merchantofvenice,1596 gravel,1,merchantofvenice,1596 clime,1,merchantofvenice,1596 reasons,1,merchantofvenice,1596 running,1,merchantofvenice,1596 cherubins,1,merchantofvenice,1596 o'erta'en,1,merchantofvenice,1596 hare,1,merchantofvenice,1596 axe,1,merchantofvenice,1596 discourse,1,merchantofvenice,1596 puny,1,merchantofvenice,1596 unmannerly,1,merchantofvenice,1596 park,1,merchantofvenice,1596 smith,1,merchantofvenice,1596 Ran,1,merchantofvenice,1596 reasonable,1,merchantofvenice,1596 Pythagoras,1,merchantofvenice,1596 remember'd,1,merchantofvenice,1596 lewd,1,merchantofvenice,1596 hall,1,merchantofvenice,1596 frost,1,merchantofvenice,1596 crow,1,merchantofvenice,1596 Brutus',1,merchantofvenice,1596 neat's,1,merchantofvenice,1596 misbeliever,1,merchantofvenice,1596 text,1,merchantofvenice,1596 shallow,1,merchantofvenice,1596 Call,1,merchantofvenice,1596 pale,1,merchantofvenice,1596 fashion'd,1,merchantofvenice,1596 employ'd,1,merchantofvenice,1596 Happy,1,merchantofvenice,1596 acknowledge,1,merchantofvenice,1596 call'd,1,merchantofvenice,1596 trade,1,merchantofvenice,1596 treads,1,merchantofvenice,1596 hang,1,merchantofvenice,1596 Pluck,1,merchantofvenice,1596 shun,1,merchantofvenice,1596 muttons,1,merchantofvenice,1596 reach,1,merchantofvenice,1596 draws,1,merchantofvenice,1596 overpeer,1,merchantofvenice,1596 confession,1,merchantofvenice,1596 mitigate,1,merchantofvenice,1596 sweetest,1,merchantofvenice,1596 Scylla,1,merchantofvenice,1596 Indies,1,merchantofvenice,1596 sucking,1,merchantofvenice,1596 acquaintance,1,merchantofvenice,1596 governor,1,merchantofvenice,1596 city,1,merchantofvenice,1596 open,1,merchantofvenice,1596 page,1,merchantofvenice,1596 describe,1,merchantofvenice,1596 refused,1,merchantofvenice,1596 brothers,1,merchantofvenice,1596 occasions,1,merchantofvenice,1596 form,1,merchantofvenice,1596 knocks,1,merchantofvenice,1596 cite,1,merchantofvenice,1596 Commend,1,merchantofvenice,1596 rack'd,1,merchantofvenice,1596 riddance,1,merchantofvenice,1596 harder,1,merchantofvenice,1596 pain,1,merchantofvenice,1596 heaviness,1,merchantofvenice,1596 fellows',1,merchantofvenice,1596 diest,1,merchantofvenice,1596 extremest,1,merchantofvenice,1596 trunks,1,merchantofvenice,1596 spurn'd,1,merchantofvenice,1596 fore,1,merchantofvenice,1596 mock,1,merchantofvenice,1596 profound,1,merchantofvenice,1596 frown,1,merchantofvenice,1596 owes,1,merchantofvenice,1596 incurr'd,1,merchantofvenice,1596 scatter,1,merchantofvenice,1596 urgest,1,merchantofvenice,1596 Silver'd,1,merchantofvenice,1596 devise,1,merchantofvenice,1596 twain,1,merchantofvenice,1596 pace,1,merchantofvenice,1596 kindest,1,merchantofvenice,1596 Indian,1,merchantofvenice,1596 pack,1,merchantofvenice,1596 fear'd,1,merchantofvenice,1596 shot,1,merchantofvenice,1596 dreadful,1,merchantofvenice,1596 pertains,1,merchantofvenice,1596 crisped,1,merchantofvenice,1596 puts,1,merchantofvenice,1596 supposition,1,merchantofvenice,1596 garnish,1,merchantofvenice,1596 bespeak,1,merchantofvenice,1596 shoe,1,merchantofvenice,1596 Vailing,1,merchantofvenice,1596 awe,1,merchantofvenice,1596 font,1,merchantofvenice,1596 graved,1,merchantofvenice,1596 rough,1,merchantofvenice,1596 producing,1,merchantofvenice,1596 gaudy,1,merchantofvenice,1596 tyranny,1,merchantofvenice,1596 prepared,1,merchantofvenice,1596 streak'd,1,merchantofvenice,1596 famished,1,merchantofvenice,1596 unthrift,1,merchantofvenice,1596 renowned,1,merchantofvenice,1596 object,1,merchantofvenice,1596 attempts,1,merchantofvenice,1596 appeareth,1,merchantofvenice,1596 maiden,1,merchantofvenice,1596 beards,1,merchantofvenice,1596 ingratitude,1,merchantofvenice,1596 tombs,1,merchantofvenice,1596 term,1,merchantofvenice,1596 gauge,1,merchantofvenice,1596 discontinued,1,merchantofvenice,1596 ceremoniously,1,merchantofvenice,1596 hive,1,merchantofvenice,1596 Hast,1,merchantofvenice,1596 foppery,1,merchantofvenice,1596 defended,1,merchantofvenice,1596 thanks,1,merchantofvenice,1596 aweary,1,merchantofvenice,1596 Among,1,merchantofvenice,1596 undone,1,merchantofvenice,1596 few,1,merchantofvenice,1596 colour'd,1,merchantofvenice,1596 cleared,1,merchantofvenice,1596 exaction,1,merchantofvenice,1596 Sirrah,1,merchantofvenice,1596 native,1,merchantofvenice,1596 Hard,1,merchantofvenice,1596 sweetly,1,merchantofvenice,1596 enemies,1,merchantofvenice,1596 Pick'd,1,merchantofvenice,1596 visited,1,merchantofvenice,1596 daring,1,merchantofvenice,1596 wooing,1,merchantofvenice,1596 Content,1,merchantofvenice,1596 trial,1,merchantofvenice,1596 ceases,1,merchantofvenice,1596 Ash,1,merchantofvenice,1596 Stood,1,merchantofvenice,1596 Art,1,merchantofvenice,1596 Hate,1,merchantofvenice,1596 feign,1,merchantofvenice,1596 guess,1,merchantofvenice,1596 howling,1,merchantofvenice,1596 beams,1,merchantofvenice,1596 guest,1,merchantofvenice,1596 prays,1,merchantofvenice,1596 moves,1,merchantofvenice,1596 precedent,1,merchantofvenice,1596 Colchos',1,merchantofvenice,1596 scapes,1,merchantofvenice,1596 Gilded,1,merchantofvenice,1596 fooling,1,merchantofvenice,1596 height,1,merchantofvenice,1596 unthrifty,1,merchantofvenice,1596 Disguise,1,merchantofvenice,1596 Between,1,merchantofvenice,1596 execute,1,merchantofvenice,1596 fat,1,merchantofvenice,1596 yesterday,1,merchantofvenice,1596 outswear,1,merchantofvenice,1596 stockish,1,merchantofvenice,1596 roof,1,merchantofvenice,1596 Comes,1,merchantofvenice,1596 exposition,1,merchantofvenice,1596 contented,1,merchantofvenice,1596 leap,1,merchantofvenice,1596 tediousness,1,merchantofvenice,1596 render'd,1,merchantofvenice,1596 Lock,1,merchantofvenice,1596 Carthage,1,merchantofvenice,1596 universal,1,merchantofvenice,1596 garments,1,merchantofvenice,1596 Misfortune,1,merchantofvenice,1596 inexecrable,1,merchantofvenice,1596 enow,1,merchantofvenice,1596 moved,1,merchantofvenice,1596 surgeon,1,merchantofvenice,1596 Grecian,1,merchantofvenice,1596 brewing,1,merchantofvenice,1596 page's,1,merchantofvenice,1596 younker,1,merchantofvenice,1596 torchbearers,1,merchantofvenice,1596 carries,1,merchantofvenice,1596 redoubted,1,merchantofvenice,1596 nations,1,merchantofvenice,1596 dress'd,1,merchantofvenice,1596 griefs,1,merchantofvenice,1596 shouldst,1,merchantofvenice,1596 alabaster,1,merchantofvenice,1596 undeserved,1,merchantofvenice,1596 breathed,1,merchantofvenice,1596 inscriptions,1,merchantofvenice,1596 AEson,1,merchantofvenice,1596 riding,1,merchantofvenice,1596 guiled,1,merchantofvenice,1596 smallest,1,merchantofvenice,1596 unknown,1,merchantofvenice,1596 fourth,1,merchantofvenice,1596 patch,1,merchantofvenice,1596 advisedly,1,merchantofvenice,1596 envy,1,merchantofvenice,1596 Seven,1,merchantofvenice,1596 beast,1,merchantofvenice,1596 fraught,1,merchantofvenice,1596 wakes,1,merchantofvenice,1596 proceed,1,merchantofvenice,1596 wonder,1,merchantofvenice,1596 obscure,1,merchantofvenice,1596 hire,1,merchantofvenice,1596 peel'd,1,merchantofvenice,1596 presages,1,merchantofvenice,1596 magnificoes,1,merchantofvenice,1596 grazed,1,merchantofvenice,1596 Hang,1,merchantofvenice,1596 apple,1,merchantofvenice,1596 gently,1,merchantofvenice,1596 Peace,1,merchantofvenice,1596 mounted,1,merchantofvenice,1596 scale,1,merchantofvenice,1596 paler,1,merchantofvenice,1596 allows,1,merchantofvenice,1596 below,1,merchantofvenice,1596 majesty,1,merchantofvenice,1596 disgraced,1,merchantofvenice,1596 schedule,1,merchantofvenice,1596 rash,1,merchantofvenice,1596 courtship,1,merchantofvenice,1596 faint,1,merchantofvenice,1596 pleaseth,1,merchantofvenice,1596 Scripture,1,merchantofvenice,1596 blunt,1,merchantofvenice,1596 companions,1,merchantofvenice,1596 tenor,1,merchantofvenice,1596 entirely,1,merchantofvenice,1596 overtake,1,merchantofvenice,1596 bestows,1,merchantofvenice,1596 call'dst,1,merchantofvenice,1596 unburden,1,merchantofvenice,1596 kneels,1,merchantofvenice,1596 bottom,1,merchantofvenice,1596 burthens,1,merchantofvenice,1596 Wear,1,merchantofvenice,1596 Slander,1,merchantofvenice,1596 oration,1,merchantofvenice,1596 Soft,1,merchantofvenice,1596 Down,1,merchantofvenice,1596 Bars,1,merchantofvenice,1596 written,1,merchantofvenice,1596 Enter'd,1,merchantofvenice,1596 Court,1,merchantofvenice,1596 citizen,1,merchantofvenice,1596 philosopher,1,merchantofvenice,1596 ewe,1,merchantofvenice,1596 borne,1,merchantofvenice,1596 moneys',1,merchantofvenice,1596 admit,1,merchantofvenice,1596 hasted,1,merchantofvenice,1596 Promise,1,merchantofvenice,1596 basket,1,merchantofvenice,1596 garden,1,merchantofvenice,1596 escaped,1,merchantofvenice,1596 perform,1,merchantofvenice,1596 who's,1,merchantofvenice,1596 Monday,1,merchantofvenice,1596 ignorant,1,merchantofvenice,1596 unhappy,1,merchantofvenice,1596 Approach,1,merchantofvenice,1596 chins,1,merchantofvenice,1596 mouth,1,merchantofvenice,1596 several,1,merchantofvenice,1596 Turks,1,merchantofvenice,1596 scarf,1,merchantofvenice,1596 spend'st,1,merchantofvenice,1596 powers,1,merchantofvenice,1596 Thyself,1,merchantofvenice,1596 Turns,1,merchantofvenice,1596 Tartars,1,merchantofvenice,1596 placed,1,merchantofvenice,1596 general,1,merchantofvenice,1596 sigh'd,1,merchantofvenice,1596 Lisbon,1,merchantofvenice,1596 ferry,1,merchantofvenice,1596 seasons,1,merchantofvenice,1596 device,1,merchantofvenice,1596 strife,1,merchantofvenice,1596 daylight,1,merchantofvenice,1596 'many',1,merchantofvenice,1596 mortal,1,merchantofvenice,1596 likewise,1,merchantofvenice,1596 Outbrave,1,merchantofvenice,1596 expires,1,merchantofvenice,1596 accepted,1,merchantofvenice,1596 milk,1,merchantofvenice,1596 exchange,1,merchantofvenice,1596 'If,1,merchantofvenice,1596 'Gobbo,1,merchantofvenice,1596 teeth,1,merchantofvenice,1596 stride,1,merchantofvenice,1596 rehearsed,1,merchantofvenice,1596 inscroll'd,1,merchantofvenice,1596 start,1,merchantofvenice,1596 qualities,1,merchantofvenice,1596 satisfaction,1,merchantofvenice,1596 strict,1,merchantofvenice,1596 creditor,1,merchantofvenice,1596 Govern'd,1,merchantofvenice,1596 Exact,1,merchantofvenice,1596 purposes,1,merchantofvenice,1596 paleness,1,merchantofvenice,1596 unpleasant'st,1,merchantofvenice,1596 bosoms,1,merchantofvenice,1596 Shylock's,1,merchantofvenice,1596 beauties,1,merchantofvenice,1596 fortnight,1,merchantofvenice,1596 inlaid,1,merchantofvenice,1596 wrought,1,merchantofvenice,1596 blush,1,merchantofvenice,1596 process,1,merchantofvenice,1596 dowry,1,merchantofvenice,1596 bloods,1,merchantofvenice,1596 Queen,1,merchantofvenice,1596 obscured,1,merchantofvenice,1596 courage,1,merchantofvenice,1596 Could,1,merchantofvenice,1596 curtsy,1,merchantofvenice,1596 beach,1,merchantofvenice,1596 skip,1,merchantofvenice,1596 tents,1,merchantofvenice,1596 concord,1,merchantofvenice,1596 organs,1,merchantofvenice,1596 'Do,1,merchantofvenice,1596 chief,1,merchantofvenice,1596 dream,1,merchantofvenice,1596 temptation,1,merchantofvenice,1596 comer,1,merchantofvenice,1596 ALL,1,merchantofvenice,1596 mart,1,merchantofvenice,1596 shrew,1,merchantofvenice,1596 persuaded,1,merchantofvenice,1596 thick,1,merchantofvenice,1596 congregate,1,merchantofvenice,1596 wry,1,merchantofvenice,1596 chapels,1,merchantofvenice,1596 slave,1,merchantofvenice,1596 Count,1,merchantofvenice,1596 furnish'd,1,merchantofvenice,1596 because,1,merchantofvenice,1596 infinitely,1,merchantofvenice,1596 flatter,1,merchantofvenice,1596 Gentile,1,merchantofvenice,1596 greatest,1,merchantofvenice,1596 bondman's,1,merchantofvenice,1596 Enrobe,1,merchantofvenice,1596 gates,1,merchantofvenice,1596 labour,1,merchantofvenice,1596 eke,1,merchantofvenice,1596 County,1,merchantofvenice,1596 maps,1,merchantofvenice,1596 vinegar,1,merchantofvenice,1596 special,1,merchantofvenice,1596 miss,1,merchantofvenice,1596 incarnal,1,merchantofvenice,1596 mountain,1,merchantofvenice,1596 higher,1,merchantofvenice,1596 northward,1,merchantofvenice,1596 free,1,merchantofvenice,1596 engender'd,1,merchantofvenice,1596 bleat,1,merchantofvenice,1596 whispering,1,merchantofvenice,1596 worthless,1,merchantofvenice,1596 borrow'd,1,merchantofvenice,1596 marvel,1,merchantofvenice,1596 Descend,1,merchantofvenice,1596 breeders,1,merchantofvenice,1596 warmed,1,merchantofvenice,1596 stratagems,1,merchantofvenice,1596 division,1,merchantofvenice,1596 stairs,1,merchantofvenice,1596 mistress',1,merchantofvenice,1596 Perhaps,1,merchantofvenice,1596 sayest,1,merchantofvenice,1596 Rome,1,merchantofvenice,1596 scanted,1,merchantofvenice,1596 firm,1,merchantofvenice,1596 converted,1,merchantofvenice,1596 hermit,1,merchantofvenice,1596 inland,1,merchantofvenice,1596 scimitar,1,merchantofvenice,1596 abridged,1,merchantofvenice,1596 fray,1,merchantofvenice,1596 banks,1,merchantofvenice,1596 behalf,1,merchantofvenice,1596 losing,1,merchantofvenice,1596 accoutred,1,merchantofvenice,1596 bellowing,1,merchantofvenice,1596 affairs,1,merchantofvenice,1596 marvellously,1,merchantofvenice,1596 'for,1,merchantofvenice,1596 scarfed,1,merchantofvenice,1596 vasty,1,merchantofvenice,1596 sting,1,merchantofvenice,1596 predicament,1,merchantofvenice,1596 portrait,1,merchantofvenice,1596 unfeeling,1,merchantofvenice,1596 Sabbath,1,merchantofvenice,1596 bettered,1,merchantofvenice,1596 contemplation,1,merchantofvenice,1596 odd,1,merchantofvenice,1596 gem,1,merchantofvenice,1596 'No,1,merchantofvenice,1596 stale,1,merchantofvenice,1596 neck,1,merchantofvenice,1596 abate,1,merchantofvenice,1596 roars,1,merchantofvenice,1596 Patiently,1,merchantofvenice,1596 twelvemonth,1,merchantofvenice,1596 safely,1,merchantofvenice,1596 throw,1,merchantofvenice,1596 wis,1,merchantofvenice,1596 pond,1,merchantofvenice,1596 stamp,1,merchantofvenice,1596 five,1,merchantofvenice,1596 Defy,1,merchantofvenice,1596 Dobbin's,1,merchantofvenice,1596 goats,1,merchantofvenice,1596 privy,1,merchantofvenice,1596 thoroughly,1,merchantofvenice,1596 stomach,1,merchantofvenice,1596 'Twill,1,merchantofvenice,1596 torchbearer,1,merchantofvenice,1596 herbs,1,merchantofvenice,1596 regreets,1,merchantofvenice,1596 curb,1,merchantofvenice,1596 receipt,1,merchantofvenice,1596 glitters,1,merchantofvenice,1596 hears,1,merchantofvenice,1596 notary,1,merchantofvenice,1596 Nazarite,1,merchantofvenice,1596 happiness,1,merchantofvenice,1596 baned,1,merchantofvenice,1596 sitting,1,merchantofvenice,1596 Infused,1,merchantofvenice,1596 measures,1,merchantofvenice,1596 abundance,1,merchantofvenice,1596 creation,1,merchantofvenice,1596 manifest,1,merchantofvenice,1596 city's,1,merchantofvenice,1596 walks,1,merchantofvenice,1596 Often,1,merchantofvenice,1596 'mong,1,merchantofvenice,1596 Antipodes,1,merchantofvenice,1596 relent,1,merchantofvenice,1596 quicken,1,merchantofvenice,1596 questionless,1,merchantofvenice,1596 walls,1,merchantofvenice,1596 healths,1,merchantofvenice,1596 ripe,1,merchantofvenice,1596 Germany,1,merchantofvenice,1596 ostent,1,merchantofvenice,1596 standing,1,merchantofvenice,1596 death's,1,merchantofvenice,1596 continuance,1,merchantofvenice,1596 flint,1,merchantofvenice,1596 decrees,1,merchantofvenice,1596 certainly,1,merchantofvenice,1596 torture,1,merchantofvenice,1596 protection,1,merchantofvenice,1596 humility,1,merchantofvenice,1596 comparison,1,merchantofvenice,1596 forerunner,1,merchantofvenice,1596 unseal,1,merchantofvenice,1596 bringeth,1,merchantofvenice,1596 likes,1,merchantofvenice,1596 called,1,merchantofvenice,1596 'The,1,merchantofvenice,1596 quarrelling,1,merchantofvenice,1596 Shed,1,merchantofvenice,1596 stage,1,merchantofvenice,1596 flourish,1,merchantofvenice,1596 army,1,merchantofvenice,1596 poet,1,merchantofvenice,1596 linger,1,merchantofvenice,1596 duty,1,merchantofvenice,1596 tailor,1,merchantofvenice,1596 barbarous,1,merchantofvenice,1596 hovel,1,merchantofvenice,1596 commanded,1,merchantofvenice,1596 'gree,1,merchantofvenice,1596 fancy's,1,merchantofvenice,1596 nuptial,1,merchantofvenice,1596 profitable,1,merchantofvenice,1596 intent,1,merchantofvenice,1596 Fates,1,merchantofvenice,1596 threatens,1,merchantofvenice,1596 wag,1,merchantofvenice,1596 arrow,1,merchantofvenice,1596 they'll,1,merchantofvenice,1596 Hiding,1,merchantofvenice,1596 maiden's,1,merchantofvenice,1596 forward,1,merchantofvenice,1596 mules,1,merchantofvenice,1596 usances,1,merchantofvenice,1596 bereft,1,merchantofvenice,1596 bedfellow,1,merchantofvenice,1596 insculp'd,1,merchantofvenice,1596 moonlight,1,merchantofvenice,1596 spurrer,1,merchantofvenice,1596 proceeding,1,merchantofvenice,1596 husbands',1,merchantofvenice,1596 prick,1,merchantofvenice,1596 warmth,1,merchantofvenice,1596 Glancing,1,merchantofvenice,1596 Beg,1,merchantofvenice,1596 penalties,1,merchantofvenice,1596 belly,1,merchantofvenice,1596 bounty,1,merchantofvenice,1596 dross,1,merchantofvenice,1596 Monsieur,1,merchantofvenice,1596 caught,1,merchantofvenice,1596 ginger,1,merchantofvenice,1596 Gives,1,merchantofvenice,1596 grossness,1,merchantofvenice,1596 requite,1,merchantofvenice,1596 eaters,1,merchantofvenice,1596 husbandry,1,merchantofvenice,1596 agree,1,merchantofvenice,1596 faces,1,merchantofvenice,1596 seize,1,merchantofvenice,1596 blotted,1,merchantofvenice,1596 Bid,1,merchantofvenice,1596 Straight,1,merchantofvenice,1596 Heaven,1,merchantofvenice,1596 muddy,1,merchantofvenice,1596 Cupid's,1,merchantofvenice,1596 takes,1,merchantofvenice,1596 faithless,1,merchantofvenice,1596 estates,1,merchantofvenice,1596 fallen,1,merchantofvenice,1596 rotten,1,merchantofvenice,1596 certainty,1,merchantofvenice,1596 poison,1,merchantofvenice,1596 fife,1,merchantofvenice,1596 coffer,1,merchantofvenice,1596 Commends,1,merchantofvenice,1596 weeping,1,merchantofvenice,1596 foreign,1,merchantofvenice,1596 roads,1,merchantofvenice,1596 sways,1,merchantofvenice,1596 compulsion,1,merchantofvenice,1596 cheerest,1,merchantofvenice,1596 leisures,1,merchantofvenice,1596 rail,1,merchantofvenice,1596 supply,1,merchantofvenice,1596 imputation,1,merchantofvenice,1596 rain,1,merchantofvenice,1596 Hugg'd,1,merchantofvenice,1596 torturest,1,merchantofvenice,1596 pries,1,merchantofvenice,1596 lineaments,1,merchantofvenice,1596 intercessors,1,merchantofvenice,1596 yoke,1,merchantofvenice,1596 farther,1,merchantofvenice,1596 godlike,1,merchantofvenice,1596 touching,1,merchantofvenice,1596 wooer,1,merchantofvenice,1596 falling,1,merchantofvenice,1596 went,1,merchantofvenice,1596 distinct,1,merchantofvenice,1596 gifts,1,merchantofvenice,1596 grass,1,merchantofvenice,1596 guilty,1,merchantofvenice,1596 heirs,1,merchantofvenice,1596 sails,1,merchantofvenice,1596 clown,1,merchantofvenice,1596 thaws,1,merchantofvenice,1596 cubs,1,merchantofvenice,1596 fretten,1,merchantofvenice,1596 wept,1,merchantofvenice,1596 diseases,1,merchantofvenice,1596 wanted,1,merchantofvenice,1596 lead'st,1,merchantofvenice,1596 'Conscience,1,merchantofvenice,1596 weapons,1,merchantofvenice,1596 doublet,1,merchantofvenice,1596 stolen,1,merchantofvenice,1596 covered,1,merchantofvenice,1596 desert,1,merchantofvenice,1596 miracle,1,merchantofvenice,1596 snaky,1,merchantofvenice,1596 quest,1,merchantofvenice,1596 orb,1,merchantofvenice,1596 Proceed,1,merchantofvenice,1596 Scottish,1,merchantofvenice,1596 wert,1,merchantofvenice,1596 estimable,1,merchantofvenice,1596 race,1,merchantofvenice,1596 kinsman,1,merchantofvenice,1596 misfortune,1,merchantofvenice,1596 humour,1,merchantofvenice,1596 tricksy,1,merchantofvenice,1596 eanlings,1,merchantofvenice,1596 wounds,1,merchantofvenice,1596 discover,1,merchantofvenice,1596 worthiness,1,merchantofvenice,1596 lodged,1,merchantofvenice,1596 skilful,1,merchantofvenice,1596 Meetest,1,merchantofvenice,1596 silks,1,merchantofvenice,1596 Mars,1,merchantofvenice,1596 endeavour,1,merchantofvenice,1596 fit,1,merchantofvenice,1596 officer,1,merchantofvenice,1596 wheat,1,merchantofvenice,1596 Bon,1,merchantofvenice,1596 moderate,1,merchantofvenice,1596 bridegroom's,1,merchantofvenice,1596 savage,1,merchantofvenice,1596 engaged,1,merchantofvenice,1596 damnation,1,merchantofvenice,1596 cackling,1,merchantofvenice,1596 horn,1,merchantofvenice,1596 Fast,1,merchantofvenice,1596 hose,1,merchantofvenice,1596 lordship,1,merchantofvenice,1596 'Love,1,merchantofvenice,1596 defending,1,merchantofvenice,1596 mansion,1,merchantofvenice,1596 unschool'd,1,merchantofvenice,1596 ratified,1,merchantofvenice,1596 pocket,1,merchantofvenice,1596 divers,1,merchantofvenice,1596 unfold,1,merchantofvenice,1596 solemnize,1,merchantofvenice,1596 masquing,1,merchantofvenice,1596 smug,1,merchantofvenice,1596 uncle,1,merchantofvenice,1596 an't,1,merchantofvenice,1596 practise,1,merchantofvenice,1596 queen,1,merchantofvenice,1596 depart,1,merchantofvenice,1596 perceive,1,merchantofvenice,1596 Barbary,1,merchantofvenice,1596 mates,1,merchantofvenice,1596 beware,1,merchantofvenice,1596 Wrest,1,merchantofvenice,1596 patient,1,merchantofvenice,1596 Plucking,1,merchantofvenice,1596 bate,1,merchantofvenice,1596 member,1,merchantofvenice,1596 waver,1,merchantofvenice,1596 salvation,1,merchantofvenice,1596 Stealing,1,merchantofvenice,1596 bars,1,merchantofvenice,1596 reproach,1,merchantofvenice,1596 bird,1,merchantofvenice,1596 Achieved,1,merchantofvenice,1596 thanked,1,merchantofvenice,1596 qualify,1,merchantofvenice,1596 deliver'd,1,merchantofvenice,1596 observance,1,merchantofvenice,1596 bank,1,merchantofvenice,1596 Very,1,merchantofvenice,1596 hoop,1,merchantofvenice,1596 cream,1,merchantofvenice,1596 bounds,1,merchantofvenice,1596 dismay'd,1,merchantofvenice,1596 sentences,1,merchantofvenice,1596 flock,1,merchantofvenice,1596 lights,1,merchantofvenice,1596 Enow,1,merchantofvenice,1596 shepherd,1,merchantofvenice,1596 ecstasy,1,merchantofvenice,1596 tale,1,merchantofvenice,1596 is't,1,merchantofvenice,1596 buzzing,1,merchantofvenice,1596 Partly,1,merchantofvenice,1596 tall,1,merchantofvenice,1596 departure,1,merchantofvenice,1596 farthest,1,merchantofvenice,1596 obliged,1,merchantofvenice,1596 Issuing,1,merchantofvenice,1596 Lean,1,merchantofvenice,1596 Leah,1,merchantofvenice,1596 bind,1,merchantofvenice,1596 deliberate,1,merchantofvenice,1596 poetry,1,merchantofvenice,1596 Stamped,1,merchantofvenice,1596 torment,1,merchantofvenice,1596 carry,1,merchantofvenice,1596 Fiend,1,merchantofvenice,1596 thwarted,1,merchantofvenice,1596 greets,1,merchantofvenice,1596 Every,1,merchantofvenice,1596 recorded,1,merchantofvenice,1596 huddled,1,merchantofvenice,1596 shore,1,merchantofvenice,1596 getting,1,merchantofvenice,1596 accident,1,merchantofvenice,1596 sternest,1,merchantofvenice,1596 interposer,1,merchantofvenice,1596 quit,1,merchantofvenice,1596 virgins,1,merchantofvenice,1596 short,1,merchantofvenice,1596 Clamber,1,merchantofvenice,1596 inscription,1,merchantofvenice,1596 green,1,merchantofvenice,1596 stand'st,1,merchantofvenice,1596 hollow,1,merchantofvenice,1596 defect,1,merchantofvenice,1596 aforesaid,1,merchantofvenice,1596 Who's,1,merchantofvenice,1596 counterfeit,1,merchantofvenice,1596 spices,1,merchantofvenice,1596 cowards,1,merchantofvenice,1596 sunder,1,merchantofvenice,1596 hogs,1,merchantofvenice,1596 carcasses,1,merchantofvenice,1596 Erebus,1,merchantofvenice,1596 hangman's,1,merchantofvenice,1596 winter,1,merchantofvenice,1596 monastery,1,merchantofvenice,1596 liver,1,merchantofvenice,1596 streets,1,merchantofvenice,1596 state's,1,merchantofvenice,1596 Repent,1,merchantofvenice,1596 grudge,1,merchantofvenice,1596 virtues,1,merchantofvenice,1596 undertook,1,merchantofvenice,1596 counsels,1,merchantofvenice,1596 train'd,1,merchantofvenice,1596 falsehood,1,merchantofvenice,1596 rendering,1,merchantofvenice,1596 'Fair,1,merchantofvenice,1596 convenient,1,merchantofvenice,1596 Inquire,1,merchantofvenice,1596 neck'd,1,merchantofvenice,1596 Reply,1,merchantofvenice,1596 Gramercy,1,merchantofvenice,1596 shout,1,merchantofvenice,1596 inevitable,1,merchantofvenice,1596 lungs,1,merchantofvenice,1596 cope,1,merchantofvenice,1596 manage,1,merchantofvenice,1596 abject,1,merchantofvenice,1596 gudgeon,1,merchantofvenice,1596 Troy,1,merchantofvenice,1596 beset,1,merchantofvenice,1596 lovely,1,merchantofvenice,1596 rigorous,1,merchantofvenice,1596 Sophy,1,merchantofvenice,1596 feeder,1,merchantofvenice,1596 cool,1,merchantofvenice,1596 lying,1,merchantofvenice,1596 contents,1,merchantofvenice,1596 waiting,1,merchantofvenice,1596 always,1,merchantofvenice,1596 disabling,1,merchantofvenice,1596 inward,1,merchantofvenice,1596 bachelor,1,merchantofvenice,1596 importunity,1,merchantofvenice,1596 ugly,1,merchantofvenice,1596 drunk,1,merchantofvenice,1596 meagre,1,merchantofvenice,1596 cutler's,1,merchantofvenice,1596 kingdom,1,merchantofvenice,1596 publish,1,merchantofvenice,1596 lightest,1,merchantofvenice,1596 offspring,1,merchantofvenice,1596 Seem,1,merchantofvenice,1596 Nestor,1,merchantofvenice,1596 burnish'd,1,merchantofvenice,1596 seed,1,merchantofvenice,1596 Serving,1,merchantofvenice,1596 gnats,1,merchantofvenice,1596 troth,1,merchantofvenice,1596 defend,1,merchantofvenice,1596 cousins,1,merchantofvenice,1596 supposed,1,merchantofvenice,1596 look'd,1,merchantofvenice,1596 meantime,1,merchantofvenice,1596 hindered,1,merchantofvenice,1596 'twixt,1,merchantofvenice,1596 squandered,1,merchantofvenice,1596 discretion,1,merchantofvenice,1596 sees,1,merchantofvenice,1596 valued,1,merchantofvenice,1596 vehement,1,merchantofvenice,1596 Mine,1,merchantofvenice,1596 Hyrcanian,1,merchantofvenice,1596 True,1,merchantofvenice,1596 Dido,1,merchantofvenice,1596 Veiling,1,merchantofvenice,1596 thrust,1,merchantofvenice,1596 preferment,1,merchantofvenice,1596 sacred,1,merchantofvenice,1596 exploit,1,merchantofvenice,1596 cry,1,merchantofvenice,1596 threshold,1,merchantofvenice,1596 confirm'd,1,merchantofvenice,1596 Gentlemen,1,merchantofvenice,1596 cord,1,merchantofvenice,1596 monkey,1,merchantofvenice,1596 person,1,merchantofvenice,1596 namest,1,merchantofvenice,1596 modest,1,merchantofvenice,1596 'twill,1,merchantofvenice,1596 understands,1,merchantofvenice,1596 tree,1,merchantofvenice,1596 Empties,1,merchantofvenice,1596 musician,1,merchantofvenice,1596 Know,1,merchantofvenice,1596 Deliver,1,merchantofvenice,1596 chests,1,merchantofvenice,1596 million,1,merchantofvenice,1596 offend'st,1,merchantofvenice,1596 greedy,1,merchantofvenice,1596 huge,1,merchantofvenice,1596 wretched,1,merchantofvenice,1596 blinking,1,merchantofvenice,1596 warranty,1,merchantofvenice,1596 dislike,1,merchantofvenice,1596 Use,1,merchantofvenice,1596 beheld,1,merchantofvenice,1596 gusts,1,merchantofvenice,1596 gods,1,merchantofvenice,1596 ravenous,1,merchantofvenice,1596 floods,1,merchantofvenice,1596 Meantime,1,merchantofvenice,1596 meshes,1,merchantofvenice,1596 oppose,1,merchantofvenice,1596 commiseration,1,merchantofvenice,1596 bleeding,1,merchantofvenice,1596 led,1,merchantofvenice,1596 fearfully,1,merchantofvenice,1596 roaring,1,merchantofvenice,1596 Neither,1,merchantofvenice,1596 pigeons,1,merchantofvenice,1596 hedged,1,merchantofvenice,1596 reputed,1,merchantofvenice,1596 colt,1,merchantofvenice,1596 brightly,1,merchantofvenice,1596 'Farewell,1,merchantofvenice,1596 skull,1,merchantofvenice,1596 Roman,1,merchantofvenice,1596 grieved,1,merchantofvenice,1596 Cursed,1,merchantofvenice,1596 certified,1,merchantofvenice,1596 barren,1,merchantofvenice,1596 unwearied,1,merchantofvenice,1596 season,1,merchantofvenice,1596 wolvish,1,merchantofvenice,1596 'amen',1,merchantofvenice,1596 Lastly,1,merchantofvenice,1596 protest,1,merchantofvenice,1596 attendeth,1,merchantofvenice,1596 afterward,1,merchantofvenice,1596 Miss,1,merchantofvenice,1596 bonnet,1,merchantofvenice,1596 bestow,1,merchantofvenice,1596 coin,1,merchantofvenice,1596 piper,1,merchantofvenice,1596 Jews,1,merchantofvenice,1596 chanced,1,merchantofvenice,1596 Hearing,1,merchantofvenice,1596 wilds,1,merchantofvenice,1596 heated,1,merchantofvenice,1596 Two,1,merchantofvenice,1596 parcel,1,merchantofvenice,1596 scorned,1,merchantofvenice,1596 regarded,1,merchantofvenice,1596 spider,1,merchantofvenice,1596 slow,1,merchantofvenice,1596 dealings,1,merchantofvenice,1596 Nothing,1,merchantofvenice,1596 converting,1,merchantofvenice,1596 lading,1,merchantofvenice,1596 sleep,1,merchantofvenice,1596 borrowed,1,merchantofvenice,1596 Rating,1,merchantofvenice,1596 persuade,1,merchantofvenice,1596 suitor,1,merchantofvenice,1596 feasting,1,merchantofvenice,1596 Serve,1,merchantofvenice,1596 lays,1,merchantofvenice,1596 seated,1,merchantofvenice,1596 write,1,merchantofvenice,1596 mar,1,merchantofvenice,1596 wands,1,merchantofvenice,1596 confound,1,merchantofvenice,1596 expressing,1,merchantofvenice,1596 limbs,1,merchantofvenice,1596 perjury,1,merchantofvenice,1596 gains,1,merchantofvenice,1596 dulcet,1,merchantofvenice,1596 heinous,1,merchantofvenice,1596 Gave,1,merchantofvenice,1596 least,1,merchantofvenice,1596 thrifty,1,merchantofvenice,1596 mercenary,1,merchantofvenice,1596 balance,1,merchantofvenice,1596 conduct,1,merchantofvenice,1596 rheum,1,merchantofvenice,1596 consequence,1,merchantofvenice,1596 smiling,1,merchantofvenice,1596 'Hath,1,merchantofvenice,1596 christening,1,merchantofvenice,1596 starve,1,merchantofvenice,1596 highways,1,merchantofvenice,1596 laughed,1,merchantofvenice,1596 Messenger,1,merchantofvenice,1596 'Nearest,1,merchantofvenice,1596 chosen,1,merchantofvenice,1596 gelt,1,merchantofvenice,1596 courageous,1,merchantofvenice,1596 headed,1,merchantofvenice,1596 defendant,1,merchantofvenice,1596 leaps,1,merchantofvenice,1596 misconstrued,1,merchantofvenice,1596 glory,1,merchantofvenice,1596 Grieve,1,merchantofvenice,1596 readiness,1,merchantofvenice,1596 elbow,1,merchantofvenice,1596 meeting,1,merchantofvenice,1596 mortifying,1,merchantofvenice,1596 determine,1,merchantofvenice,1596 rights,1,merchantofvenice,1596 conjured,1,merchantofvenice,1596 frays,1,merchantofvenice,1596 repay,1,merchantofvenice,1596 whiter,1,merchantofvenice,1596 Except,1,merchantofvenice,1596 animals,1,merchantofvenice,1596 debtor,1,merchantofvenice,1596 Men,1,merchantofvenice,1596 mocked,1,merchantofvenice,1596 flew,1,merchantofvenice,1596 debating,1,merchantofvenice,1596 simplicity,1,merchantofvenice,1596 mocker,1,merchantofvenice,1596 incision,1,merchantofvenice,1596 lay'st,1,merchantofvenice,1596 sever'd,1,merchantofvenice,1596 eleven,1,merchantofvenice,1596 quarrels,1,merchantofvenice,1596 wound,1,merchantofvenice,1596 'love',1,merchantofvenice,1596 question's,1,merchantofvenice,1596 appropriation,1,merchantofvenice,1596 Orpheus,1,merchantofvenice,1596 Andrew,1,merchantofvenice,1596 on's,1,merchantofvenice,1596 lion,1,merchantofvenice,1596 enjoying,1,merchantofvenice,1596 Hates,1,merchantofvenice,1596 on't,1,merchantofvenice,1596 Bellario's,1,merchantofvenice,1596 Indeed,1,merchantofvenice,1596 lark,1,merchantofvenice,1596 'Launcelot,1,merchantofvenice,1596 amorous,1,merchantofvenice,1596 grains,1,merchantofvenice,1596 Sleep,1,merchantofvenice,1596 mannerly,1,merchantofvenice,1596 German,1,merchantofvenice,1596 dismiss,1,merchantofvenice,1596 determinations,1,merchantofvenice,1596 sometimes,1,merchantofvenice,1596 eaning,1,merchantofvenice,1596 rasher,1,merchantofvenice,1596 prettier,1,merchantofvenice,1596 earliest,1,merchantofvenice,1596 flat,1,merchantofvenice,1596 thither,1,merchantofvenice,1596 gravity,1,merchantofvenice,1596 tickle,1,merchantofvenice,1596 highway,1,merchantofvenice,1596 VII,1,merchantofvenice,1596 betimes,1,merchantofvenice,1596 suspect,1,merchantofvenice,1596 customary,1,merchantofvenice,1596 Without,1,merchantofvenice,1596 peep,1,merchantofvenice,1596 besides,1,merchantofvenice,1596 Neapolitan's,1,merchantofvenice,1596 pagan,1,merchantofvenice,1596 whet,1,merchantofvenice,1596 Commits,1,merchantofvenice,1596 April,1,merchantofvenice,1596 hurt,1,merchantofvenice,1596 'Via,1,merchantofvenice,1596 impart,1,merchantofvenice,1596 summary,1,merchantofvenice,1596 prouder,1,merchantofvenice,1596 appetite,1,merchantofvenice,1596 Troyan,1,merchantofvenice,1596 ragged,1,merchantofvenice,1596 couching,1,merchantofvenice,1596 wooers,1,merchantofvenice,1596 moe,1,merchantofvenice,1596 sway'd,1,merchantofvenice,1596 stray'd,1,merchantofvenice,1596 twentieth,1,merchantofvenice,1596 floor,1,merchantofvenice,1596 leading,1,merchantofvenice,1596 shrewd,1,merchantofvenice,1596 Cressid,1,merchantofvenice,1596 rebels,1,merchantofvenice,1596 Death,1,merchantofvenice,1596 assumes,1,merchantofvenice,1596 mouths,1,merchantofvenice,1596 reply,1,merchantofvenice,1596 denying,1,merchantofvenice,1596 You'll,1,merchantofvenice,1596 enjoin'd,1,merchantofvenice,1596 presage,1,merchantofvenice,1596 shaft,1,merchantofvenice,1596 employ,1,merchantofvenice,1596 fail'd,1,merchantofvenice,1596 laid,1,merchantofvenice,1596 instructions,1,merchantofvenice,1596 honour'd,1,merchantofvenice,1596 substitute,1,merchantofvenice,1596 harsh,1,merchantofvenice,1596 happily,1,merchantofvenice,1596 hollaing,1,merchantofvenice,1596 princely,1,merchantofvenice,1596 nightingale,1,merchantofvenice,1596 offender's,1,merchantofvenice,1596 boldest,1,merchantofvenice,1596 perchance,1,merchantofvenice,1596 shone,1,merchantofvenice,1596 unworthier,1,merchantofvenice,1596 miseries,1,merchantofvenice,1596 condition'd,1,merchantofvenice,1596 pent,1,merchantofvenice,1596 fifteen,1,merchantofvenice,1596 ivory,1,merchantofvenice,1596 instruction,1,merchantofvenice,1596 dispatch,1,merchantofvenice,1596 top,1,merchantofvenice,1596 dry,1,merchantofvenice,1596 begotten,1,merchantofvenice,1596 lamb,1,merchantofvenice,1596 proclamation,1,merchantofvenice,1596 DRAMATIS,1,merchantofvenice,1596 slew,1,merchantofvenice,1596 Laban,1,merchantofvenice,1596 success,1,merchantofvenice,1596 shift,1,merchantofvenice,1596 Peering,1,merchantofvenice,1596 princes',1,merchantofvenice,1596 shake,1,merchantofvenice,1596 unlock'd,1,merchantofvenice,1596 uncapable,1,merchantofvenice,1596 Too,1,merchantofvenice,1596 bechanced,1,merchantofvenice,1596 damn,1,merchantofvenice,1596 bargain,1,merchantofvenice,1596 record,1,merchantofvenice,1596 fence,1,merchantofvenice,1596 brassy,1,merchantofvenice,1596 divided,1,merchantofvenice,1596 greatness,1,merchantofvenice,1596 crost,1,merchantofvenice,1596 smell,1,merchantofvenice,1596 Goodwins,1,merchantofvenice,1596 'good,1,merchantofvenice,1596 pirates,1,merchantofvenice,1596 Drops,1,merchantofvenice,1596 dew,1,merchantofvenice,1596 jealousy,1,merchantofvenice,1596 immured,1,merchantofvenice,1596 cater,1,merchantofvenice,1596 gloves,1,merchantofvenice,1596 stomachs,1,merchantofvenice,1596 mutual,1,merchantofvenice,1596 hellish,1,merchantofvenice,1596 Try,1,merchantofvenice,1596 injunctions,1,merchantofvenice,1596 Fall,1,merchantofvenice,1596 remorse,1,merchantofvenice,1596 candles,1,merchantofvenice,1596 cooling,1,merchantofvenice,1596 forbear,1,merchantofvenice,1596 remembrance,1,merchantofvenice,1596 shape,1,merchantofvenice,1596 spoils,1,merchantofvenice,1596 Parted,1,merchantofvenice,1596 conspired,1,merchantofvenice,1596 privately,1,merchantofvenice,1596 crown,1,merchantofvenice,1596 sandy,1,merchantofvenice,1596 dim,1,merchantofvenice,1596 contain'd,1,merchantofvenice,1596 e'en,1,merchantofvenice,1596 order,1,merchantofvenice,1596 turn'd,1,merchantofvenice,1596 Desired,1,merchantofvenice,1596 unlesson'd,1,merchantofvenice,1596 negro's,1,merchantofvenice,1596 sharp,1,merchantofvenice,1596 degrees,1,merchantofvenice,1596 women,1,merchantofvenice,1596 sway,1,merchantofvenice,1596 exeunt,1,merchantofvenice,1596 swan,1,merchantofvenice,1596 attended,2,merchantofvenice,1596 heed,2,merchantofvenice,1596 quality,2,merchantofvenice,1596 forbid,2,merchantofvenice,1596 Quick,2,merchantofvenice,1596 fancy,2,merchantofvenice,1596 took,2,merchantofvenice,1596 description,2,merchantofvenice,1596 motion,2,merchantofvenice,1596 mightiest,2,merchantofvenice,1596 leisure,2,merchantofvenice,1596 Hear,2,merchantofvenice,1596 double,2,merchantofvenice,1596 Frenchman,2,merchantofvenice,1596 writ,2,merchantofvenice,1596 obtain'd,2,merchantofvenice,1596 royal,2,merchantofvenice,1596 Portia's,2,merchantofvenice,1596 dagger,2,merchantofvenice,1596 help,2,merchantofvenice,1596 thankfully,2,merchantofvenice,1596 doubtful,2,merchantofvenice,1596 heart's,2,merchantofvenice,1596 road,2,merchantofvenice,1596 villain,2,merchantofvenice,1596 Magnificoes,2,merchantofvenice,1596 rhenish,2,merchantofvenice,1596 SHYLOCK'S,2,merchantofvenice,1596 truly,2,merchantofvenice,1596 frowning,2,merchantofvenice,1596 season'd,2,merchantofvenice,1596 brook,2,merchantofvenice,1596 Beshrew,2,merchantofvenice,1596 commodity,2,merchantofvenice,1596 praising,2,merchantofvenice,1596 although,2,merchantofvenice,1596 Ere,2,merchantofvenice,1596 nought,2,merchantofvenice,1596 nominated,2,merchantofvenice,1596 Mexico,2,merchantofvenice,1596 press,2,merchantofvenice,1596 lieu,2,merchantofvenice,1596 strumpet,2,merchantofvenice,1596 trust,2,merchantofvenice,1596 contrary,2,merchantofvenice,1596 rated,2,merchantofvenice,1596 goest,2,merchantofvenice,1596 teaches,2,merchantofvenice,1596 attempt,2,merchantofvenice,1596 Express'd,2,merchantofvenice,1596 passions,2,merchantofvenice,1596 surfeit,2,merchantofvenice,1596 drive,2,merchantofvenice,1596 Whose,2,merchantofvenice,1596 bearing,2,merchantofvenice,1596 outside,2,merchantofvenice,1596 stream,2,merchantofvenice,1596 bagpipe,2,merchantofvenice,1596 gracious,2,merchantofvenice,1596 trumpet,2,merchantofvenice,1596 heat,2,merchantofvenice,1596 cheek,2,merchantofvenice,1596 wants,2,merchantofvenice,1596 hearing,2,merchantofvenice,1596 madness,2,merchantofvenice,1596 visages,2,merchantofvenice,1596 bragging,2,merchantofvenice,1596 Tarry,2,merchantofvenice,1596 glass,2,merchantofvenice,1596 veins,2,merchantofvenice,1596 noise,2,merchantofvenice,1596 Methinks,2,merchantofvenice,1596 bated,2,merchantofvenice,1596 freedom,2,merchantofvenice,1596 amity,2,merchantofvenice,1596 Abram,2,merchantofvenice,1596 further,2,merchantofvenice,1596 she's,2,merchantofvenice,1596 shames,2,merchantofvenice,1596 Duke,2,merchantofvenice,1596 sit,2,merchantofvenice,1596 stands,2,merchantofvenice,1596 'twere,2,merchantofvenice,1596 fleet,2,merchantofvenice,1596 bastard,2,merchantofvenice,1596 walk,2,merchantofvenice,1596 monarch,2,merchantofvenice,1596 touches,2,merchantofvenice,1596 nine,2,merchantofvenice,1596 halter,2,merchantofvenice,1596 church,2,merchantofvenice,1596 winds,2,merchantofvenice,1596 subject,2,merchantofvenice,1596 livery,2,merchantofvenice,1596 deserts,2,merchantofvenice,1596 wager,2,merchantofvenice,1596 wings,2,merchantofvenice,1596 Attendants,2,merchantofvenice,1596 daughter's,2,merchantofvenice,1596 stuck,2,merchantofvenice,1596 ergo,2,merchantofvenice,1596 gaoler,2,merchantofvenice,1596 vile,2,merchantofvenice,1596 merit,2,merchantofvenice,1596 heavens,2,merchantofvenice,1596 Morocco,2,merchantofvenice,1596 conceit,2,merchantofvenice,1596 born,2,merchantofvenice,1596 bliss,2,merchantofvenice,1596 direct,2,merchantofvenice,1596 Turn,2,merchantofvenice,1596 exceeding,2,merchantofvenice,1596 commit,2,merchantofvenice,1596 Pardon,2,merchantofvenice,1596 white,2,merchantofvenice,1596 'Tween,2,merchantofvenice,1596 directed,2,merchantofvenice,1596 claim,2,merchantofvenice,1596 malice,2,merchantofvenice,1596 accept,2,merchantofvenice,1596 Old,2,merchantofvenice,1596 rude,2,merchantofvenice,1596 title,2,merchantofvenice,1596 mirth,2,merchantofvenice,1596 length,2,merchantofvenice,1596 stead,2,merchantofvenice,1596 hates,2,merchantofvenice,1596 Diana,2,merchantofvenice,1596 turned,2,merchantofvenice,1596 custom,2,merchantofvenice,1596 sooth,2,merchantofvenice,1596 infidel,2,merchantofvenice,1596 pierce,2,merchantofvenice,1596 pretty,2,merchantofvenice,1596 meat,2,merchantofvenice,1596 ruled,2,merchantofvenice,1596 manly,2,merchantofvenice,1596 bright,2,merchantofvenice,1596 offers,2,merchantofvenice,1596 aspect,2,merchantofvenice,1596 unquiet,2,merchantofvenice,1596 urge,2,merchantofvenice,1596 authority,2,merchantofvenice,1596 side,2,merchantofvenice,1596 manners,2,merchantofvenice,1596 Certainly,2,merchantofvenice,1596 has,2,merchantofvenice,1596 synagogue,2,merchantofvenice,1596 sign,2,merchantofvenice,1596 offend,2,merchantofvenice,1596 sigh,2,merchantofvenice,1596 measure,2,merchantofvenice,1596 At,2,merchantofvenice,1596 'Twere,2,merchantofvenice,1596 acquitted,2,merchantofvenice,1596 fool's,2,merchantofvenice,1596 hang'd,2,merchantofvenice,1596 surety,2,merchantofvenice,1596 patience,2,merchantofvenice,1596 strangers,2,merchantofvenice,1596 deeds,2,merchantofvenice,1596 bag,2,merchantofvenice,1596 sensible,2,merchantofvenice,1596 kings,2,merchantofvenice,1596 cruel,2,merchantofvenice,1596 gossip,2,merchantofvenice,1596 kept,2,merchantofvenice,1596 creature,2,merchantofvenice,1596 lottery,2,merchantofvenice,1596 tales,2,merchantofvenice,1596 sings,2,merchantofvenice,1596 Her,2,merchantofvenice,1596 hip,2,merchantofvenice,1596 changed,2,merchantofvenice,1596 cooled,2,merchantofvenice,1596 hit,2,merchantofvenice,1596 beg,2,merchantofvenice,1596 pleasure,2,merchantofvenice,1596 enter,2,merchantofvenice,1596 deserved,2,merchantofvenice,1596 tribute,2,merchantofvenice,1596 sport,2,merchantofvenice,1596 casements,2,merchantofvenice,1596 past,2,merchantofvenice,1596 pass,2,merchantofvenice,1596 pig,2,merchantofvenice,1596 election,2,merchantofvenice,1596 Is't,2,merchantofvenice,1596 Ding,2,merchantofvenice,1596 Jewish,2,merchantofvenice,1596 dressed,2,merchantofvenice,1596 sits,2,merchantofvenice,1596 Salarino,2,merchantofvenice,1596 absent,2,merchantofvenice,1596 metal,2,merchantofvenice,1596 bell,2,merchantofvenice,1596 awards,2,merchantofvenice,1596 goodly,2,merchantofvenice,1596 immediately,2,merchantofvenice,1596 yon,2,merchantofvenice,1596 gaze,2,merchantofvenice,1596 signiors,2,merchantofvenice,1596 people,2,merchantofvenice,1596 courtesies,2,merchantofvenice,1596 suddenly,2,merchantofvenice,1596 just,2,merchantofvenice,1596 fifth,2,merchantofvenice,1596 tedious,2,merchantofvenice,1596 doctor's,2,merchantofvenice,1596 worship's,2,merchantofvenice,1596 About,2,merchantofvenice,1596 sins,2,merchantofvenice,1596 gate,2,merchantofvenice,1596 deservings,2,merchantofvenice,1596 scrubbed,2,merchantofvenice,1596 ashamed,2,merchantofvenice,1596 argosies,2,merchantofvenice,1596 said,2,merchantofvenice,1596 store,2,merchantofvenice,1596 Alcides,2,merchantofvenice,1596 Palatine,2,merchantofvenice,1596 virgin,2,merchantofvenice,1596 deep,2,merchantofvenice,1596 instant,2,merchantofvenice,1596 stay'd,2,merchantofvenice,1596 miles,2,merchantofvenice,1596 Cannot,2,merchantofvenice,1596 breast,2,merchantofvenice,1596 gallows,2,merchantofvenice,1596 servant,2,merchantofvenice,1596 repent,2,merchantofvenice,1596 Here's,2,merchantofvenice,1596 favour,2,merchantofvenice,1596 dwell,2,merchantofvenice,1596 choosing,2,merchantofvenice,1596 thrive,2,merchantofvenice,1596 memory,2,merchantofvenice,1596 cruelty,2,merchantofvenice,1596 thyself,2,merchantofvenice,1596 door,2,merchantofvenice,1596 dong,2,merchantofvenice,1596 commend,2,merchantofvenice,1596 necessity,2,merchantofvenice,1596 abide,2,merchantofvenice,1596 teaching,2,merchantofvenice,1596 argosy,2,merchantofvenice,1596 Jasons,2,merchantofvenice,1596 age,2,merchantofvenice,1596 lover,2,merchantofvenice,1596 stillness,2,merchantofvenice,1596 loud,2,merchantofvenice,1596 Yea,2,merchantofvenice,1596 speak'st,2,merchantofvenice,1596 spent,2,merchantofvenice,1596 afternoon,2,merchantofvenice,1596 greater,2,merchantofvenice,1596 usance,2,merchantofvenice,1596 hot,2,merchantofvenice,1596 hark,2,merchantofvenice,1596 easy,2,merchantofvenice,1596 hue,2,merchantofvenice,1596 round,2,merchantofvenice,1596 shut,2,merchantofvenice,1596 Moor,2,merchantofvenice,1596 school,2,merchantofvenice,1596 excuse,2,merchantofvenice,1596 pluck,2,merchantofvenice,1596 commendable,2,merchantofvenice,1596 stranger,2,merchantofvenice,1596 delight,2,merchantofvenice,1596 forsworn,2,merchantofvenice,1596 alive,2,merchantofvenice,1596 dismay,2,merchantofvenice,1596 rings,2,merchantofvenice,1596 proper,2,merchantofvenice,1596 moan,2,merchantofvenice,1596 food,2,merchantofvenice,1596 contain,2,merchantofvenice,1596 signior,2,merchantofvenice,1596 bearer,2,merchantofvenice,1596 excess,2,merchantofvenice,1596 fond,2,merchantofvenice,1596 rightly,2,merchantofvenice,1596 error,2,merchantofvenice,1596 secret,2,merchantofvenice,1596 chance,2,merchantofvenice,1596 liveries,2,merchantofvenice,1596 inquire,2,merchantofvenice,1596 fed,2,merchantofvenice,1596 touch,2,merchantofvenice,1596 'you,2,merchantofvenice,1596 behavior,2,merchantofvenice,1596 varnish'd,2,merchantofvenice,1596 here's,2,merchantofvenice,1596 humbleness,2,merchantofvenice,1596 borrow,2,merchantofvenice,1596 often,2,merchantofvenice,1596 occasion,2,merchantofvenice,1596 equal,2,merchantofvenice,1596 destiny,2,merchantofvenice,1596 main,2,merchantofvenice,1596 Become,2,merchantofvenice,1596 tarry,2,merchantofvenice,1596 nay,2,merchantofvenice,1596 scant,2,merchantofvenice,1596 rank,2,merchantofvenice,1596 empty,2,merchantofvenice,1596 rams,2,merchantofvenice,1596 lords,2,merchantofvenice,1596 express'd,2,merchantofvenice,1596 water,2,merchantofvenice,1596 thinks,2,merchantofvenice,1596 nose,2,merchantofvenice,1596 proverb,2,merchantofvenice,1596 rare,2,merchantofvenice,1596 locks,2,merchantofvenice,1596 curtains,2,merchantofvenice,1596 rats,2,merchantofvenice,1596 ducat,2,merchantofvenice,1596 tender,2,merchantofvenice,1596 beard,2,merchantofvenice,1596 ours,2,merchantofvenice,1596 sirrah,2,merchantofvenice,1596 specify,2,merchantofvenice,1596 Love,2,merchantofvenice,1596 Sit,2,merchantofvenice,1596 alter,2,merchantofvenice,1596 narrow,2,merchantofvenice,1596 stays,2,merchantofvenice,1596 misery,2,merchantofvenice,1596 evermore,2,merchantofvenice,1596 awhile,2,merchantofvenice,1596 spurn,2,merchantofvenice,1596 towards,2,merchantofvenice,1596 sacrifice,2,merchantofvenice,1596 prize,2,merchantofvenice,1596 saving,2,merchantofvenice,1596 knave,2,merchantofvenice,1596 foolish,2,merchantofvenice,1596 woven,2,merchantofvenice,1596 beggar,2,merchantofvenice,1596 bloody,2,merchantofvenice,1596 dearest,2,merchantofvenice,1596 issue,2,merchantofvenice,1596 attribute,2,merchantofvenice,1596 let's,2,merchantofvenice,1596 woo,2,merchantofvenice,1596 leaden,2,merchantofvenice,1596 blow,2,merchantofvenice,1596 starved,2,merchantofvenice,1596 chaff,2,merchantofvenice,1596 thief,2,merchantofvenice,1596 fish,2,merchantofvenice,1596 discharge,2,merchantofvenice,1596 Being,2,merchantofvenice,1596 letters,2,merchantofvenice,1596 trouble,2,merchantofvenice,1596 stake,2,merchantofvenice,1596 living,2,merchantofvenice,1596 breed,2,merchantofvenice,1596 taste,2,merchantofvenice,1596 close,2,merchantofvenice,1596 maids,2,merchantofvenice,1596 proved,2,merchantofvenice,1596 grave,2,merchantofvenice,1596 example,2,merchantofvenice,1596 'My,2,merchantofvenice,1596 We'll,2,merchantofvenice,1596 morrow,2,merchantofvenice,1596 allay,2,merchantofvenice,1596 bestow'd,2,merchantofvenice,1596 Dear,2,merchantofvenice,1596 clock,2,merchantofvenice,1596 flight,2,merchantofvenice,1596 save,2,merchantofvenice,1596 widows,2,merchantofvenice,1596 heavy,2,merchantofvenice,1596 Hebrew,2,merchantofvenice,1596 believe,2,merchantofvenice,1596 able,2,merchantofvenice,1596 bleed,2,merchantofvenice,1596 sufferance,2,merchantofvenice,1596 rage,2,merchantofvenice,1596 wanton,2,merchantofvenice,1596 imposition,2,merchantofvenice,1596 price,2,merchantofvenice,1596 confiscate,2,merchantofvenice,1596 multitude,2,merchantofvenice,1596 grossly,2,merchantofvenice,1596 Margery,2,merchantofvenice,1596 watery,2,merchantofvenice,1596 served,2,merchantofvenice,1596 Balthasar,2,merchantofvenice,1596 earthly,2,merchantofvenice,1596 wondrous,2,merchantofvenice,1596 wife's,2,merchantofvenice,1596 wolf,2,merchantofvenice,1596 drops,2,merchantofvenice,1596 serves,2,merchantofvenice,1596 uttermost,2,merchantofvenice,1596 ope,2,merchantofvenice,1596 followers,2,merchantofvenice,1596 Presenting,2,merchantofvenice,1596 grieve,2,merchantofvenice,1596 evil,2,merchantofvenice,1596 Make,2,merchantofvenice,1596 Many,2,merchantofvenice,1596 giving,2,merchantofvenice,1596 modesty,2,merchantofvenice,1596 Till,2,merchantofvenice,1596 That's,2,merchantofvenice,1596 saint,2,merchantofvenice,1596 wilful,2,merchantofvenice,1596 answers,2,merchantofvenice,1596 fly,2,merchantofvenice,1596 esteem'd,2,merchantofvenice,1596 impeach,2,merchantofvenice,1596 gazing,2,merchantofvenice,1596 passion,2,merchantofvenice,1596 vow,2,merchantofvenice,1596 profit,2,merchantofvenice,1596 fill,2,merchantofvenice,1596 assume,2,merchantofvenice,1596 bark,2,merchantofvenice,1596 bare,2,merchantofvenice,1596 ta'en,2,merchantofvenice,1596 wide,2,merchantofvenice,1596 'Budge,2,merchantofvenice,1596 partly,2,merchantofvenice,1596 base,2,merchantofvenice,1596 undervalued,2,merchantofvenice,1596 public,2,merchantofvenice,1596 friendship,2,merchantofvenice,1596 Wednesday,2,merchantofvenice,1596 hood,2,merchantofvenice,1596 trains,2,merchantofvenice,1596 dam,2,merchantofvenice,1596 constant,2,merchantofvenice,1596 arm'd,2,merchantofvenice,1596 gentlemen,2,merchantofvenice,1596 sufficient,2,merchantofvenice,1596 shoot,2,merchantofvenice,1596 creep,2,merchantofvenice,1596 holds,2,merchantofvenice,1596 clear,2,merchantofvenice,1596 None,2,merchantofvenice,1596 follows,2,merchantofvenice,1596 request,2,merchantofvenice,1596 flood,2,merchantofvenice,1596 lives,2,merchantofvenice,1596 commonwealth,2,merchantofvenice,1596 entrap,2,merchantofvenice,1596 writing,2,merchantofvenice,1596 notwithstanding,2,merchantofvenice,1596 prayers,2,merchantofvenice,1596 seas,2,merchantofvenice,1596 seat,2,merchantofvenice,1596 hairs,2,merchantofvenice,1596 sweat,2,merchantofvenice,1596 aloof,2,merchantofvenice,1596 Prince,2,merchantofvenice,1596 converse,2,merchantofvenice,1596 decree,2,merchantofvenice,1596 pronounced,2,merchantofvenice,1596 seem,2,merchantofvenice,1596 either,2,merchantofvenice,1596 presence,2,merchantofvenice,1596 Truly,2,merchantofvenice,1596 Lie,2,merchantofvenice,1596 vessel,2,merchantofvenice,1596 tells,2,merchantofvenice,1596 cost,2,merchantofvenice,1596 fellows,2,merchantofvenice,1596 English,2,merchantofvenice,1596 wearies,2,merchantofvenice,1596 heavenly,2,merchantofvenice,1596 heels,2,merchantofvenice,1596 therein,2,merchantofvenice,1596 blame,2,merchantofvenice,1596 curtain,2,merchantofvenice,1596 bait,2,merchantofvenice,1596 countrymen,2,merchantofvenice,1596 suffice,2,merchantofvenice,1596 port,2,merchantofvenice,1596 lovers,2,merchantofvenice,1596 fairly,2,merchantofvenice,1596 indirectly,2,merchantofvenice,1596 sell,2,merchantofvenice,1596 posy,2,merchantofvenice,1596 bankrupt,2,merchantofvenice,1596 hither,2,merchantofvenice,1596 goes,2,merchantofvenice,1596 chose,2,merchantofvenice,1596 match,2,merchantofvenice,1596 currish,2,merchantofvenice,1596 Mistress,2,merchantofvenice,1596 master's,2,merchantofvenice,1596 bags,2,merchantofvenice,1596 brow,2,merchantofvenice,1596 torch,2,merchantofvenice,1596 eat,2,merchantofvenice,1596 petty,2,merchantofvenice,1596 'scape,2,merchantofvenice,1596 unlike,2,merchantofvenice,1596 trusted,2,merchantofvenice,1596 sadness,2,merchantofvenice,1596 bargains,2,merchantofvenice,1596 merciful,2,merchantofvenice,1596 ladies,2,merchantofvenice,1596 parrots,2,merchantofvenice,1596 heartily,2,merchantofvenice,1596 lips,2,merchantofvenice,1596 Away,2,merchantofvenice,1596 bethink,2,merchantofvenice,1596 fashion,2,merchantofvenice,1596 harmony,2,merchantofvenice,1596 credit,2,merchantofvenice,1596 beauty,2,merchantofvenice,1596 chooses,2,merchantofvenice,1596 sailors,2,merchantofvenice,1596 extend,2,merchantofvenice,1596 human,2,merchantofvenice,1596 suited,2,merchantofvenice,1596 corners,2,merchantofvenice,1596 books,2,merchantofvenice,1596 try,2,merchantofvenice,1596 Thy,2,merchantofvenice,1596 attend,2,merchantofvenice,1596 dark,2,merchantofvenice,1596 weigh,2,merchantofvenice,1596 weight,2,merchantofvenice,1596 catch,2,merchantofvenice,1596 land,2,merchantofvenice,1596 lord's,2,merchantofvenice,1596 Arragon,2,merchantofvenice,1596 reverend,2,merchantofvenice,1596 instantly,2,merchantofvenice,1596 behold,2,merchantofvenice,1596 Parts,2,merchantofvenice,1596 ambitious,2,merchantofvenice,1596 trees,2,merchantofvenice,1596 creditors,2,merchantofvenice,1596 cross,2,merchantofvenice,1596 command,2,merchantofvenice,1596 tainted,2,merchantofvenice,1596 kill,2,merchantofvenice,1596 charity,2,merchantofvenice,1596 gear,2,merchantofvenice,1596 neighbour,2,merchantofvenice,1596 bids,2,merchantofvenice,1596 direction,2,merchantofvenice,1596 wouldst,2,merchantofvenice,1596 vilely,2,merchantofvenice,1596 treason,3,merchantofvenice,1596 parted,3,merchantofvenice,1596 advised,3,merchantofvenice,1596 V,3,merchantofvenice,1596 debts,3,merchantofvenice,1596 pity,3,merchantofvenice,1596 drop,3,merchantofvenice,1596 Fie,3,merchantofvenice,1596 Whether,3,merchantofvenice,1596 hell,3,merchantofvenice,1596 sleeps,3,merchantofvenice,1596 honourable,3,merchantofvenice,1596 tears,3,merchantofvenice,1596 richly,3,merchantofvenice,1596 calls,3,merchantofvenice,1596 sort,3,merchantofvenice,1596 care,3,merchantofvenice,1596 soon,3,merchantofvenice,1596 yourself,3,merchantofvenice,1596 years,3,merchantofvenice,1596 judge's,3,merchantofvenice,1596 grows,3,merchantofvenice,1596 prop,3,merchantofvenice,1596 purse,3,merchantofvenice,1596 Only,3,merchantofvenice,1596 gross,3,merchantofvenice,1596 making,3,merchantofvenice,1596 BALTHASAR,3,merchantofvenice,1596 sin,3,merchantofvenice,1596 fleece,3,merchantofvenice,1596 key,3,merchantofvenice,1596 deceived,3,merchantofvenice,1596 peril,3,merchantofvenice,1596 Farewell,3,merchantofvenice,1596 Was,3,merchantofvenice,1596 acquainted,3,merchantofvenice,1596 looks,3,merchantofvenice,1596 thieves,3,merchantofvenice,1596 worst,3,merchantofvenice,1596 These,3,merchantofvenice,1596 turning,3,merchantofvenice,1596 merchants,3,merchantofvenice,1596 Out,3,merchantofvenice,1596 Our,3,merchantofvenice,1596 ways,3,merchantofvenice,1596 common,3,merchantofvenice,1596 habit,3,merchantofvenice,1596 absence,3,merchantofvenice,1596 fault,3,merchantofvenice,1596 falls,3,merchantofvenice,1596 Wherein,3,merchantofvenice,1596 sun,3,merchantofvenice,1596 reverence,3,merchantofvenice,1596 swore,3,merchantofvenice,1596 brief,3,merchantofvenice,1596 ancient,3,merchantofvenice,1596 false,3,merchantofvenice,1596 wine,3,merchantofvenice,1596 dies,3,merchantofvenice,1596 ruin,3,merchantofvenice,1596 Though,3,merchantofvenice,1596 bold,3,merchantofvenice,1596 anon,3,merchantofvenice,1596 There's,3,merchantofvenice,1596 French,3,merchantofvenice,1596 scarce,3,merchantofvenice,1596 shortly,3,merchantofvenice,1596 Still,3,merchantofvenice,1596 hopes,3,merchantofvenice,1596 bad,3,merchantofvenice,1596 bar,3,merchantofvenice,1596 gratis,3,merchantofvenice,1596 canst,3,merchantofvenice,1596 void,3,merchantofvenice,1596 brings,3,merchantofvenice,1596 shines,3,merchantofvenice,1596 hid,3,merchantofvenice,1596 wisdom,3,merchantofvenice,1596 Within,3,merchantofvenice,1596 blest,3,merchantofvenice,1596 bless,3,merchantofvenice,1596 whole,3,merchantofvenice,1596 courteous,3,merchantofvenice,1596 god,3,merchantofvenice,1596 sorry,3,merchantofvenice,1596 behind,3,merchantofvenice,1596 kindness,3,merchantofvenice,1596 cat,3,merchantofvenice,1596 breathing,3,merchantofvenice,1596 ornament,3,merchantofvenice,1596 anything,3,merchantofvenice,1596 twice,3,merchantofvenice,1596 buy,3,merchantofvenice,1596 herein,3,merchantofvenice,1596 longer,3,merchantofvenice,1596 picture,3,merchantofvenice,1596 sing,3,merchantofvenice,1596 forgive,3,merchantofvenice,1596 Fortune,3,merchantofvenice,1596 air,3,merchantofvenice,1596 embraced,3,merchantofvenice,1596 carrion,3,merchantofvenice,1596 stood,3,merchantofvenice,1596 debt,3,merchantofvenice,1596 Unless,3,merchantofvenice,1596 liberal,3,merchantofvenice,1596 Besides,3,merchantofvenice,1596 hands,3,merchantofvenice,1596 makest,3,merchantofvenice,1596 ay,3,merchantofvenice,1596 fourscore,3,merchantofvenice,1596 month,3,merchantofvenice,1596 account,3,merchantofvenice,1596 loss,3,merchantofvenice,1596 act,3,merchantofvenice,1596 outward,3,merchantofvenice,1596 speaks,3,merchantofvenice,1596 keen,3,merchantofvenice,1596 nation,3,merchantofvenice,1596 More,3,merchantofvenice,1596 Hercules,3,merchantofvenice,1596 thrift,3,merchantofvenice,1596 husband's,3,merchantofvenice,1596 suitors,3,merchantofvenice,1596 provided,3,merchantofvenice,1596 miscarried,3,merchantofvenice,1596 course,3,merchantofvenice,1596 ask,3,merchantofvenice,1596 return'd,3,merchantofvenice,1596 spit,3,merchantofvenice,1596 bosom,3,merchantofvenice,1596 girl,3,merchantofvenice,1596 mayst,3,merchantofvenice,1596 furnish,3,merchantofvenice,1596 purchased,3,merchantofvenice,1596 naughty,3,merchantofvenice,1596 tried,3,merchantofvenice,1596 through,3,merchantofvenice,1596 venture,3,merchantofvenice,1596 contains,3,merchantofvenice,1596 scroll,3,merchantofvenice,1596 rate,3,merchantofvenice,1596 deserving,3,merchantofvenice,1596 bears,3,merchantofvenice,1596 ewes,3,merchantofvenice,1596 year,3,merchantofvenice,1596 Alack,3,merchantofvenice,1596 substance,3,merchantofvenice,1596 learning,3,merchantofvenice,1596 affections,3,merchantofvenice,1596 you'll,3,merchantofvenice,1596 masque,3,merchantofvenice,1596 freely,3,merchantofvenice,1596 Doth,3,merchantofvenice,1596 precious,3,merchantofvenice,1596 See,3,merchantofvenice,1596 Sola,3,merchantofvenice,1596 Look,3,merchantofvenice,1596 doors,3,merchantofvenice,1596 already,3,merchantofvenice,1596 'gainst,3,merchantofvenice,1596 All,3,merchantofvenice,1596 Father,3,merchantofvenice,1596 there's,3,merchantofvenice,1596 mark,3,merchantofvenice,1596 known,3,merchantofvenice,1596 need,3,merchantofvenice,1596 search,3,merchantofvenice,1596 trifle,3,merchantofvenice,1596 desires,3,merchantofvenice,1596 o'clock,3,merchantofvenice,1596 wealthy,3,merchantofvenice,1596 Italy,3,merchantofvenice,1596 pause,3,merchantofvenice,1596 win,3,merchantofvenice,1596 oft,3,merchantofvenice,1596 Tripolis,3,merchantofvenice,1596 loving,3,merchantofvenice,1596 Say,3,merchantofvenice,1596 Thus,3,merchantofvenice,1596 staff,3,merchantofvenice,1596 Can,3,merchantofvenice,1596 receive,3,merchantofvenice,1596 danger,3,merchantofvenice,1596 happy,3,merchantofvenice,1596 enforced,3,merchantofvenice,1596 taken,3,merchantofvenice,1596 angel,3,merchantofvenice,1596 dumb,3,merchantofvenice,1596 waste,3,merchantofvenice,1596 cover,3,merchantofvenice,1596 ground,3,merchantofvenice,1596 rack,3,merchantofvenice,1596 work,3,merchantofvenice,1596 fie,3,merchantofvenice,1596 offices,3,merchantofvenice,1596 fine,3,merchantofvenice,1596 ribs,3,merchantofvenice,1596 Fare,3,merchantofvenice,1596 tail,3,merchantofvenice,1596 herself,3,merchantofvenice,1596 meaning,3,merchantofvenice,1596 dangerous,3,merchantofvenice,1596 cur,3,merchantofvenice,1596 gaping,3,merchantofvenice,1596 gives,3,merchantofvenice,1596 satisfied,3,merchantofvenice,1596 along,3,merchantofvenice,1596 alone,3,merchantofvenice,1596 fairer,3,merchantofvenice,1596 eyed,3,merchantofvenice,1596 we'll,3,merchantofvenice,1596 condition,3,merchantofvenice,1596 Believe,3,merchantofvenice,1596 estimation,3,merchantofvenice,1596 souls,3,merchantofvenice,1596 according,3,merchantofvenice,1596 post,3,merchantofvenice,1596 whilst,3,merchantofvenice,1596 send,3,merchantofvenice,1596 sent,3,merchantofvenice,1596 cold,3,merchantofvenice,1596 pork,3,merchantofvenice,1596 merchandise,3,merchantofvenice,1596 until,3,merchantofvenice,1596 principal,3,merchantofvenice,1596 sealed,3,merchantofvenice,1596 abroad,3,merchantofvenice,1596 afeard,3,merchantofvenice,1596 Clerk,3,merchantofvenice,1596 learn,3,merchantofvenice,1596 dread,3,merchantofvenice,1596 remember,3,merchantofvenice,1596 Stephano,3,merchantofvenice,1596 late,3,merchantofvenice,1596 nature,3,merchantofvenice,1596 Justice,3,merchantofvenice,1596 dwells,3,merchantofvenice,1596 Jacob's,3,merchantofvenice,1596 sentence,3,merchantofvenice,1596 witness,3,merchantofvenice,1596 respect,3,merchantofvenice,1596 due,3,merchantofvenice,1596 rocks,3,merchantofvenice,1596 Bring,3,merchantofvenice,1596 shame,3,merchantofvenice,1596 king,3,merchantofvenice,1596 oaths,3,merchantofvenice,1596 merchant's,3,merchantofvenice,1596 e'er,3,merchantofvenice,1596 enemy,3,merchantofvenice,1596 summer,3,merchantofvenice,1596 horse,4,merchantofvenice,1596 business,4,merchantofvenice,1596 Never,4,merchantofvenice,1596 Must,4,merchantofvenice,1596 lodging,4,merchantofvenice,1596 laugh,4,merchantofvenice,1596 lies,4,merchantofvenice,1596 damned,4,merchantofvenice,1596 Jacob,4,merchantofvenice,1596 charge,4,merchantofvenice,1596 toward,4,merchantofvenice,1596 cheer,4,merchantofvenice,1596 complexion,4,merchantofvenice,1596 yield,4,merchantofvenice,1596 Such,4,merchantofvenice,1596 second,4,merchantofvenice,1596 Music,4,merchantofvenice,1596 read,4,merchantofvenice,1596 Venetian,4,merchantofvenice,1596 fellow,4,merchantofvenice,1596 terms,4,merchantofvenice,1596 worthy,4,merchantofvenice,1596 service,4,merchantofvenice,1596 others,4,merchantofvenice,1596 moneys,4,merchantofvenice,1596 steal,4,merchantofvenice,1596 stop,4,merchantofvenice,1596 among,4,merchantofvenice,1596 plea,4,merchantofvenice,1596 On,4,merchantofvenice,1596 since,4,merchantofvenice,1596 IV,4,merchantofvenice,1596 husbands,4,merchantofvenice,1596 goods,4,merchantofvenice,1596 ears,4,merchantofvenice,1596 prove,4,merchantofvenice,1596 difference,4,merchantofvenice,1596 shadow,4,merchantofvenice,1596 farewell,4,merchantofvenice,1596 pains,4,merchantofvenice,1596 Like,4,merchantofvenice,1596 i',4,merchantofvenice,1596 God's,4,merchantofvenice,1596 sail,4,merchantofvenice,1596 breath,4,merchantofvenice,1596 confess,4,merchantofvenice,1596 gift,4,merchantofvenice,1596 jewels,4,merchantofvenice,1596 needs,4,merchantofvenice,1596 gain,4,merchantofvenice,1596 LEONARDO,4,merchantofvenice,1596 possess'd,4,merchantofvenice,1596 feast,4,merchantofvenice,1596 whereof,4,merchantofvenice,1596 train,4,merchantofvenice,1596 moon,4,merchantofvenice,1596 ho,4,merchantofvenice,1596 lest,4,merchantofvenice,1596 ill,4,merchantofvenice,1596 Genoa,4,merchantofvenice,1596 ready,4,merchantofvenice,1596 messenger,4,merchantofvenice,1596 signify,4,merchantofvenice,1596 appears,4,merchantofvenice,1596 First,4,merchantofvenice,1596 hate,4,merchantofvenice,1596 foot,4,merchantofvenice,1596 revenge,4,merchantofvenice,1596 ye,4,merchantofvenice,1596 fee,4,merchantofvenice,1596 tribe,4,merchantofvenice,1596 having,4,merchantofvenice,1596 change,4,merchantofvenice,1596 Into,4,merchantofvenice,1596 watch,4,merchantofvenice,1596 luck,4,merchantofvenice,1596 ventures,4,merchantofvenice,1596 silence,4,merchantofvenice,1596 note,4,merchantofvenice,1596 almost,4,merchantofvenice,1596 Flourish,4,merchantofvenice,1596 estate,4,merchantofvenice,1596 candle,4,merchantofvenice,1596 Christians,4,merchantofvenice,1596 child,4,merchantofvenice,1596 over,4,merchantofvenice,1596 sand,4,merchantofvenice,1596 fire,4,merchantofvenice,1596 thine,4,merchantofvenice,1596 knife,4,merchantofvenice,1596 upright,4,merchantofvenice,1596 themselves,4,merchantofvenice,1596 wont,4,merchantofvenice,1596 dull,4,merchantofvenice,1596 waters,4,merchantofvenice,1596 sober,4,merchantofvenice,1596 table,4,merchantofvenice,1596 fall,4,merchantofvenice,1596 methinks,4,merchantofvenice,1596 married,4,merchantofvenice,1596 shows,4,merchantofvenice,1596 wives,4,merchantofvenice,1596 fast,4,merchantofvenice,1596 fare,4,merchantofvenice,1596 given,4,merchantofvenice,1596 England,4,merchantofvenice,1596 Gaoler,4,merchantofvenice,1596 hearts,4,merchantofvenice,1596 low,4,merchantofvenice,1596 seen,4,merchantofvenice,1596 courtesy,4,merchantofvenice,1596 hours,4,merchantofvenice,1596 entreat,4,merchantofvenice,1596 prayer,4,merchantofvenice,1596 alas,4,merchantofvenice,1596 laws,4,merchantofvenice,1596 servants,4,merchantofvenice,1596 ear,4,merchantofvenice,1596 mad,4,merchantofvenice,1596 spirits,4,merchantofvenice,1596 marriage,4,merchantofvenice,1596 Marry,4,merchantofvenice,1596 virtue,4,merchantofvenice,1596 content,4,merchantofvenice,1596 simple,4,merchantofvenice,1596 cornets,4,merchantofvenice,1596 losses,4,merchantofvenice,1596 dare,4,merchantofvenice,1596 bred,4,merchantofvenice,1596 Until,4,merchantofvenice,1596 Talk,4,merchantofvenice,1596 lack,4,merchantofvenice,1596 die,4,merchantofvenice,1596 ships,4,merchantofvenice,1596 fortunes,4,merchantofvenice,1596 assured,5,merchantofvenice,1596 Tell,5,merchantofvenice,1596 penalty,5,merchantofvenice,1596 finger,5,merchantofvenice,1596 while,5,merchantofvenice,1596 Would,5,merchantofvenice,1596 Salerio,5,merchantofvenice,1596 sola,5,merchantofvenice,1596 saw,5,merchantofvenice,1596 paper,5,merchantofvenice,1596 fools,5,merchantofvenice,1596 soft,5,merchantofvenice,1596 view,5,merchantofvenice,1596 deserve,5,merchantofvenice,1596 six,5,merchantofvenice,1596 against,5,merchantofvenice,1596 fell,5,merchantofvenice,1596 sworn,5,merchantofvenice,1596 counsel,5,merchantofvenice,1596 cause,5,merchantofvenice,1596 doubt,5,merchantofvenice,1596 worse,5,merchantofvenice,1596 above,5,merchantofvenice,1596 feed,5,merchantofvenice,1596 One,5,merchantofvenice,1596 parts,5,merchantofvenice,1596 spoke,5,merchantofvenice,1596 sick,5,merchantofvenice,1596 refuse,5,merchantofvenice,1596 force,5,merchantofvenice,1596 sounds,5,merchantofvenice,1596 affection,5,merchantofvenice,1596 ha,5,merchantofvenice,1596 raise,5,merchantofvenice,1596 dead,5,merchantofvenice,1596 speed,5,merchantofvenice,1596 earth,5,merchantofvenice,1596 Reads,5,merchantofvenice,1596 begg'd,5,merchantofvenice,1596 those,5,merchantofvenice,1596 knew,5,merchantofvenice,1596 Because,5,merchantofvenice,1596 choice,5,merchantofvenice,1596 Most,5,merchantofvenice,1596 praise,5,merchantofvenice,1596 expect,5,merchantofvenice,1596 paid,5,merchantofvenice,1596 stones,5,merchantofvenice,1596 bought,5,merchantofvenice,1596 Should,5,merchantofvenice,1596 prodigal,5,merchantofvenice,1596 She,5,merchantofvenice,1596 Sir,5,merchantofvenice,1596 Antonio's,5,merchantofvenice,1596 high,5,merchantofvenice,1596 knows,5,merchantofvenice,1596 won,5,merchantofvenice,1596 sake,5,merchantofvenice,1596 found,5,merchantofvenice,1596 supper,5,merchantofvenice,1596 coming,5,merchantofvenice,1596 next,5,merchantofvenice,1596 hair,5,merchantofvenice,1596 marry,5,merchantofvenice,1596 owe,5,merchantofvenice,1596 grant,5,merchantofvenice,1596 ne'er,5,merchantofvenice,1596 answer'd,5,merchantofvenice,1596 worship,5,merchantofvenice,1596 kiss,5,merchantofvenice,1596 lay,5,merchantofvenice,1596 man's,5,merchantofvenice,1596 STEPHANO,5,merchantofvenice,1596 wilt,5,merchantofvenice,1596 PRINCE,5,merchantofvenice,1596 adieu,5,merchantofvenice,1596 aught,5,merchantofvenice,1596 render,5,merchantofvenice,1596 sound,5,merchantofvenice,1596 Pray,5,merchantofvenice,1596 self,5,merchantofvenice,1596 together,5,merchantofvenice,1596 doing,5,merchantofvenice,1596 Before,5,merchantofvenice,1596 Padua,5,merchantofvenice,1596 May,5,merchantofvenice,1596 blessing,5,merchantofvenice,1596 Rialto,5,merchantofvenice,1596 mistress,6,merchantofvenice,1596 haste,6,merchantofvenice,1596 joy,6,merchantofvenice,1596 understand,6,merchantofvenice,1596 become,6,merchantofvenice,1596 set,6,merchantofvenice,1596 mother,6,merchantofvenice,1596 after,6,merchantofvenice,1596 promise,6,merchantofvenice,1596 blind,6,merchantofvenice,1596 hence,6,merchantofvenice,1596 voice,6,merchantofvenice,1596 matter,6,merchantofvenice,1596 deserves,6,merchantofvenice,1596 morning,6,merchantofvenice,1596 itself,6,merchantofvenice,1596 Daniel,6,merchantofvenice,1596 unless,6,merchantofvenice,1596 Had,6,merchantofvenice,1596 Good,6,merchantofvenice,1596 got,6,merchantofvenice,1596 put,6,merchantofvenice,1596 Gobbo,6,merchantofvenice,1596 less,6,merchantofvenice,1596 loved,6,merchantofvenice,1596 thrice,6,merchantofvenice,1596 whether,6,merchantofvenice,1596 though,6,merchantofvenice,1596 Have,6,merchantofvenice,1596 maid,6,merchantofvenice,1596 ere,6,merchantofvenice,1596 question,6,merchantofvenice,1596 father's,6,merchantofvenice,1596 Were,6,merchantofvenice,1596 opinion,6,merchantofvenice,1596 near,6,merchantofvenice,1596 third,6,merchantofvenice,1596 face,6,merchantofvenice,1596 fail,6,merchantofvenice,1596 pleased,6,merchantofvenice,1596 Mark,6,merchantofvenice,1596 Unto,6,merchantofvenice,1596 wild,6,merchantofvenice,1596 seal,6,merchantofvenice,1596 interest,6,merchantofvenice,1596 back,6,merchantofvenice,1596 purpose,6,merchantofvenice,1596 caskets,6,merchantofvenice,1596 straight,6,merchantofvenice,1596 thoughts,6,merchantofvenice,1596 Did,6,merchantofvenice,1596 follow,6,merchantofvenice,1596 certain,6,merchantofvenice,1596 Take,6,merchantofvenice,1596 Fair,6,merchantofvenice,1596 ten,6,merchantofvenice,1596 me,262,merchantofvenice,1596 meet,7,merchantofvenice,1596 o'er,7,merchantofvenice,1596 offer,7,merchantofvenice,1596 appear,7,merchantofvenice,1596 withal,7,merchantofvenice,1596 under,7,merchantofvenice,1596 golden,7,merchantofvenice,1596 teach,7,merchantofvenice,1596 body,7,merchantofvenice,1596 saying,7,merchantofvenice,1596 sea,7,merchantofvenice,1596 worth,7,merchantofvenice,1596 within,7,merchantofvenice,1596 Bassanio's,7,merchantofvenice,1596 about,7,merchantofvenice,1596 grow,7,merchantofvenice,1596 mean,7,merchantofvenice,1596 pay,7,merchantofvenice,1596 ARRAGON,7,merchantofvenice,1596 learned,7,merchantofvenice,1596 wear,7,merchantofvenice,1596 tongue,7,merchantofvenice,1596 deed,7,merchantofvenice,1596 long,7,merchantofvenice,1596 that's,7,merchantofvenice,1596 value,7,merchantofvenice,1596 noble,7,merchantofvenice,1596 lost,7,merchantofvenice,1596 Yet,7,merchantofvenice,1596 Yes,7,merchantofvenice,1596 four,7,merchantofvenice,1596 plain,7,merchantofvenice,1596 prepare,7,merchantofvenice,1596 PORTIA'S,7,merchantofvenice,1596 ship,7,merchantofvenice,1596 far,7,merchantofvenice,1596 Madam,7,merchantofvenice,1596 end,7,merchantofvenice,1596 once,7,merchantofvenice,1596 why,7,merchantofvenice,1596 beseech,7,merchantofvenice,1596 serve,7,merchantofvenice,1596 what's,7,merchantofvenice,1596 company,7,merchantofvenice,1596 wealth,7,merchantofvenice,1596 hour,7,merchantofvenice,1596 great,7,merchantofvenice,1596 holy,7,merchantofvenice,1596 seek,7,merchantofvenice,1596 lie,7,merchantofvenice,1596 Signior,7,merchantofvenice,1596 Since,7,merchantofvenice,1596 forfeiture,7,merchantofvenice,1596 strange,7,merchantofvenice,1596 might,7,merchantofvenice,1596 woman,7,merchantofvenice,1596 truth,8,merchantofvenice,1596 draw,8,merchantofvenice,1596 full,8,merchantofvenice,1596 came,8,merchantofvenice,1596 light,8,merchantofvenice,1596 Aside,8,merchantofvenice,1596 bring,8,merchantofvenice,1596 III,8,merchantofvenice,1596 An,8,merchantofvenice,1596 down,8,merchantofvenice,1596 whose,8,merchantofvenice,1596 dost,8,merchantofvenice,1596 left,8,merchantofvenice,1596 bear,8,merchantofvenice,1596 new,8,merchantofvenice,1596 room,8,merchantofvenice,1596 youth,8,merchantofvenice,1596 presently,8,merchantofvenice,1596 still,8,merchantofvenice,1596 heard,8,merchantofvenice,1596 'Tis,8,merchantofvenice,1596 Three,8,merchantofvenice,1596 Bellario,8,merchantofvenice,1596 glad,8,merchantofvenice,1596 even,8,merchantofvenice,1596 Sweet,8,merchantofvenice,1596 talk,8,merchantofvenice,1596 reason,8,merchantofvenice,1596 pardon,8,merchantofvenice,1596 home,8,merchantofvenice,1596 return,8,merchantofvenice,1596 madam,8,merchantofvenice,1596 merchant,8,merchantofvenice,1596 makes,8,merchantofvenice,1596 street,8,merchantofvenice,1596 last,8,merchantofvenice,1596 silver,8,merchantofvenice,1596 dog,8,merchantofvenice,1596 months,8,merchantofvenice,1596 without,8,merchantofvenice,1596 in,264,merchantofvenice,1596 thought,9,merchantofvenice,1596 Tubal,9,merchantofvenice,1596 sad,9,merchantofvenice,1596 conscience,9,merchantofvenice,1596 Servant,9,merchantofvenice,1596 sum,9,merchantofvenice,1596 wind,9,merchantofvenice,1596 wise,9,merchantofvenice,1596 else,9,merchantofvenice,1596 name,9,merchantofvenice,1596 bed,9,merchantofvenice,1596 play,9,merchantofvenice,1596 best,9,merchantofvenice,1596 lend,9,merchantofvenice,1596 done,9,merchantofvenice,1596 hard,9,merchantofvenice,1596 prince,9,merchantofvenice,1596 present,9,merchantofvenice,1596 fool,9,merchantofvenice,1596 fiend,9,merchantofvenice,1596 hast,9,merchantofvenice,1596 right,9,merchantofvenice,1596 lead,9,merchantofvenice,1596 Some,9,merchantofvenice,1596 They,9,merchantofvenice,1596 off,9,merchantofvenice,1596 break,9,merchantofvenice,1596 only,9,merchantofvenice,1596 between,9,merchantofvenice,1596 oath,9,merchantofvenice,1596 Shall,9,merchantofvenice,1596 SALERIO,9,merchantofvenice,1596 please,9,merchantofvenice,1596 till,9,merchantofvenice,1596 unto,9,merchantofvenice,1596 Where,9,merchantofvenice,1596 Nay,10,merchantofvenice,1596 Will,10,merchantofvenice,1596 Upon,10,merchantofvenice,1596 words,10,merchantofvenice,1596 sure,10,merchantofvenice,1596 call,10,merchantofvenice,1596 another,10,merchantofvenice,1596 something,10,merchantofvenice,1596 death,10,merchantofvenice,1596 enough,10,merchantofvenice,1596 merry,10,merchantofvenice,1596 son,10,merchantofvenice,1596 turn,10,merchantofvenice,1596 stay,10,merchantofvenice,1596 gave,10,merchantofvenice,1596 TUBAL,10,merchantofvenice,1596 husband,10,merchantofvenice,1596 twenty,10,merchantofvenice,1596 grace,10,merchantofvenice,1596 keep,10,merchantofvenice,1596 art,10,merchantofvenice,1596 judgment,10,merchantofvenice,1596 Hath,10,merchantofvenice,1596 eye,10,merchantofvenice,1596 things,10,merchantofvenice,1596 could,10,merchantofvenice,1596 thing,10,merchantofvenice,1596 wit,10,merchantofvenice,1596 Even,10,merchantofvenice,1596 gentleman,10,merchantofvenice,1596 hold,10,merchantofvenice,1596 thank,10,merchantofvenice,1596 use,10,merchantofvenice,1596 thus,10,merchantofvenice,1596 Jew's,10,merchantofvenice,1596 spirit,10,merchantofvenice,1596 Who,11,merchantofvenice,1596 bound,11,merchantofvenice,1596 suit,11,merchantofvenice,1596 rest,11,merchantofvenice,1596 desire,11,merchantofvenice,1596 Ay,11,merchantofvenice,1596 His,11,merchantofvenice,1596 neither,11,merchantofvenice,1596 Be,11,merchantofvenice,1596 means,11,merchantofvenice,1596 dinner,11,merchantofvenice,1596 MOROCCO,11,merchantofvenice,1596 dear,11,merchantofvenice,1596 Master,11,merchantofvenice,1596 place,11,merchantofvenice,1596 forth,11,merchantofvenice,1596 Are,11,merchantofvenice,1596 hazard,11,merchantofvenice,1596 Then,11,merchantofvenice,1596 casket,11,merchantofvenice,1596 get,11,merchantofvenice,1596 pound,11,merchantofvenice,1596 way,11,merchantofvenice,1596 duke,11,merchantofvenice,1596 forfeit,11,merchantofvenice,1596 rich,11,merchantofvenice,1596 cut,11,merchantofvenice,1596 honest,11,merchantofvenice,1596 'Who,11,merchantofvenice,1596 whom,11,merchantofvenice,1596 first,11,merchantofvenice,1596 chooseth,11,merchantofvenice,1596 shalt,11,merchantofvenice,1596 power,11,merchantofvenice,1596 told,12,merchantofvenice,1596 rather,12,merchantofvenice,1596 every,12,merchantofvenice,1596 Give,12,merchantofvenice,1596 Now,12,merchantofvenice,1596 Nor,12,merchantofvenice,1596 Not,12,merchantofvenice,1596 honour,12,merchantofvenice,1596 'tis,12,merchantofvenice,1596 lose,12,merchantofvenice,1596 up,12,merchantofvenice,1596 little,12,merchantofvenice,1596 Than,12,merchantofvenice,1596 gentle,12,merchantofvenice,1596 none,12,merchantofvenice,1596 into,12,merchantofvenice,1596 From,12,merchantofvenice,1596 Lord,12,merchantofvenice,1596 state,12,merchantofvenice,1596 word,12,merchantofvenice,1596 ever,12,merchantofvenice,1596 hope,12,merchantofvenice,1596 poor,12,merchantofvenice,1596 kind,12,merchantofvenice,1596 himself,12,merchantofvenice,1596 friends,13,merchantofvenice,1596 mercy,13,merchantofvenice,1596 wrong,13,merchantofvenice,1596 wish,13,merchantofvenice,1596 Do,13,merchantofvenice,1596 II,13,merchantofvenice,1596 We,13,merchantofvenice,1596 been,13,merchantofvenice,1596 deny,13,merchantofvenice,1596 indeed,13,merchantofvenice,1596 Therefore,13,merchantofvenice,1596 clerk,13,merchantofvenice,1596 answer,14,merchantofvenice,1596 run,14,merchantofvenice,1596 head,14,merchantofvenice,1596 both,14,merchantofvenice,1596 music,14,merchantofvenice,1596 gold,14,merchantofvenice,1596 gone,14,merchantofvenice,1596 devil,14,merchantofvenice,1596 half,14,merchantofvenice,1596 justice,14,merchantofvenice,1596 faith,14,merchantofvenice,1596 again,14,merchantofvenice,1596 news,14,merchantofvenice,1596 being,14,merchantofvenice,1596 times,15,merchantofvenice,1596 soul,15,merchantofvenice,1596 world,15,merchantofvenice,1596 fear,15,merchantofvenice,1596 heaven,15,merchantofvenice,1596 Belmont,15,merchantofvenice,1596 blood,15,merchantofvenice,1596 God,15,merchantofvenice,1596 most,15,merchantofvenice,1596 money,15,merchantofvenice,1596 court,15,merchantofvenice,1596 says,15,merchantofvenice,1596 Gratiano,15,merchantofvenice,1596 sweet,15,merchantofvenice,1596 Come,16,merchantofvenice,1596 boy,16,merchantofvenice,1596 Go,16,merchantofvenice,1596 how,16,merchantofvenice,1596 show,16,merchantofvenice,1596 yours,16,merchantofvenice,1596 doctor,16,merchantofvenice,1596 find,16,merchantofvenice,1596 law,16,merchantofvenice,1596 live,16,merchantofvenice,1596 bid,17,merchantofvenice,1596 Or,17,merchantofvenice,1596 welcome,17,merchantofvenice,1596 Shylock,17,merchantofvenice,1596 mind,17,merchantofvenice,1596 Nerissa,18,merchantofvenice,1596 therefore,18,merchantofvenice,1596 made,18,merchantofvenice,1596 Portia,18,merchantofvenice,1596 myself,18,merchantofvenice,1596 fortune,18,merchantofvenice,1596 three,18,merchantofvenice,1596 letter,18,merchantofvenice,1596 cannot,18,merchantofvenice,1596 away,19,merchantofvenice,1596 Here,19,merchantofvenice,1596 look,19,merchantofvenice,1596 part,19,merchantofvenice,1596 Your,19,merchantofvenice,1596 before,19,merchantofvenice,1596 heart,19,merchantofvenice,1596 wife,19,merchantofvenice,1596 When,19,merchantofvenice,1596 Exit,19,merchantofvenice,1596 So,20,merchantofvenice,1596 ACT,20,merchantofvenice,1596 who,20,merchantofvenice,1596 own,20,merchantofvenice,1596 eyes,20,merchantofvenice,1596 better,21,merchantofvenice,1596 daughter,21,merchantofvenice,1596 By,21,merchantofvenice,1596 No,21,merchantofvenice,1596 Is,21,merchantofvenice,1596 DUKE,21,merchantofvenice,1596 where,21,merchantofvenice,1596 THE,21,merchantofvenice,1596 Thou,21,merchantofvenice,1596 many,21,merchantofvenice,1596 comes,21,merchantofvenice,1596 stand,21,merchantofvenice,1596 MERCHANT,21,merchantofvenice,1596 out,21,merchantofvenice,1596 judge,21,merchantofvenice,1596 thousand,21,merchantofvenice,1596 master,21,merchantofvenice,1596 SCENE,21,merchantofvenice,1596 life,22,merchantofvenice,1596 nothing,22,merchantofvenice,1596 There,22,merchantofvenice,1596 With,22,merchantofvenice,1596 Christian,22,merchantofvenice,1596 hand,22,merchantofvenice,1596 speak,22,merchantofvenice,1596 nor,22,merchantofvenice,1596 This,22,merchantofvenice,1596 VENICE,22,merchantofvenice,1596 old,22,merchantofvenice,1596 time,22,merchantofvenice,1596 Let,22,merchantofvenice,1596 hear,23,merchantofvenice,1596 GOBBO,23,merchantofvenice,1596 flesh,23,merchantofvenice,1596 young,23,merchantofvenice,1596 Well,23,merchantofvenice,1596 swear,23,merchantofvenice,1596 true,23,merchantofvenice,1596 other,23,merchantofvenice,1596 some,24,merchantofvenice,1596 Lorenzo,24,merchantofvenice,1596 It,24,merchantofvenice,1596 Jessica,24,merchantofvenice,1596 mine,24,merchantofvenice,1596 think,24,merchantofvenice,1596 leave,24,merchantofvenice,1596 men,24,merchantofvenice,1596 can,25,merchantofvenice,1596 their,25,merchantofvenice,1596 SALANIO,25,merchantofvenice,1596 same,25,merchantofvenice,1596 choose,26,merchantofvenice,1596 tell,26,merchantofvenice,1596 As,26,merchantofvenice,1596 Exeunt,26,merchantofvenice,1596 any,26,merchantofvenice,1596 our,26,merchantofvenice,1596 two,26,merchantofvenice,1596 friend,27,merchantofvenice,1596 OF,27,merchantofvenice,1596 day,27,merchantofvenice,1596 lady,27,merchantofvenice,1596 never,28,merchantofvenice,1596 yet,28,merchantofvenice,1596 fair,28,merchantofvenice,1596 these,29,merchantofvenice,1596 Which,29,merchantofvenice,1596 very,29,merchantofvenice,1596 ducats,29,merchantofvenice,1596 were,29,merchantofvenice,1596 father,29,merchantofvenice,1596 too,29,merchantofvenice,1596 He,30,merchantofvenice,1596 Launcelot,30,merchantofvenice,1596 us,30,merchantofvenice,1596 Venice,30,merchantofvenice,1596 which,31,merchantofvenice,1596 must,31,merchantofvenice,1596 like,31,merchantofvenice,1596 My,31,merchantofvenice,1596 Of,31,merchantofvenice,1596 make,32,merchantofvenice,1596 may,32,merchantofvenice,1596 O,33,merchantofvenice,1596 she,33,merchantofvenice,1596 Why,33,merchantofvenice,1596 night,33,merchantofvenice,1596 sir,34,merchantofvenice,1596 they,34,merchantofvenice,1596 lord,34,merchantofvenice,1596 or,34,merchantofvenice,1596 house,34,merchantofvenice,1596 had,35,merchantofvenice,1596 Bassanio,35,merchantofvenice,1596 JESSICA,35,merchantofvenice,1596 now,35,merchantofvenice,1596 doth,36,merchantofvenice,1596 SALARINO,36,merchantofvenice,1596 pray,37,merchantofvenice,1596 give,37,merchantofvenice,1596 ring,37,merchantofvenice,1596 take,37,merchantofvenice,1596 when,37,merchantofvenice,1596 such,39,merchantofvenice,1596 bond,39,merchantofvenice,1596 In,39,merchantofvenice,1596 upon,40,merchantofvenice,1596 hath,40,merchantofvenice,1596 say,41,merchantofvenice,1596 go,41,merchantofvenice,1596 ',42,merchantofvenice,1596 see,42,merchantofvenice,1596 them,42,merchantofvenice,1596 know,42,merchantofvenice,1596 How,42,merchantofvenice,1596 one,43,merchantofvenice,1596 an,44,merchantofvenice,1596 was,44,merchantofvenice,1596 did,44,merchantofvenice,1596 Antonio,45,merchantofvenice,1596 let,45,merchantofvenice,1596 If,46,merchantofvenice,1596 should,46,merchantofvenice,1596 What,46,merchantofvenice,1596 NERISSA,47,merchantofvenice,1596 I'll,47,merchantofvenice,1596 much,48,merchantofvenice,1596 For,48,merchantofvenice,1596 Enter,48,merchantofvenice,1596 come,48,merchantofvenice,1596 here,49,merchantofvenice,1596 than,51,merchantofvenice,1596 we,51,merchantofvenice,1596 LAUNCELOT,52,merchantofvenice,1596 then,53,merchantofvenice,1596 there,53,merchantofvenice,1596 You,55,merchantofvenice,1596 good,56,merchantofvenice,1596 love,56,merchantofvenice,1596 ANTONIO,56,merchantofvenice,1596 from,56,merchantofvenice,1596 man,56,merchantofvenice,1596 LORENZO,57,merchantofvenice,1596 well,57,merchantofvenice,1596 thy,57,merchantofvenice,1596 GRATIANO,58,merchantofvenice,1596 A,59,merchantofvenice,1596 Jew,59,merchantofvenice,1596 what,60,merchantofvenice,1596 more,61,merchantofvenice,1596 thee,64,merchantofvenice,1596 at,64,merchantofvenice,1596 her,65,merchantofvenice,1596 on,65,merchantofvenice,1596 That,67,merchantofvenice,1596 would,67,merchantofvenice,1596 no,71,merchantofvenice,1596 if,73,merchantofvenice,1596 But,73,merchantofvenice,1596 my,330,merchantofvenice,1596 am,76,merchantofvenice,1596 all,79,merchantofvenice,1596 thou,82,merchantofvenice,1596 by,83,merchantofvenice,1596 BASSANIO,83,merchantofvenice,1596 SHYLOCK,88,merchantofvenice,1596 are,90,merchantofvenice,1596 The,97,merchantofvenice,1596 so,98,merchantofvenice,1596 do,99,merchantofvenice,1596 shall,100,merchantofvenice,1596 To,102,merchantofvenice,1596 but,108,merchantofvenice,1596 him,110,merchantofvenice,1596 as,115,merchantofvenice,1596 to,374,merchantofvenice,1596 will,122,merchantofvenice,1596 this,124,merchantofvenice,1596 you,384,merchantofvenice,1596 PORTIA,130,merchantofvenice,1596 a,392,merchantofvenice,1596 I,655,merchantofvenice,1596 he,146,merchantofvenice,1596 his,149,merchantofvenice,1596 your,156,merchantofvenice,1596 have,156,merchantofvenice,1596 of,422,merchantofvenice,1596 with,170,merchantofvenice,1596 and,430,merchantofvenice,1596 for,176,merchantofvenice,1596 be,177,merchantofvenice,1596 And,182,merchantofvenice,1596 that,190,merchantofvenice,1596 not,207,merchantofvenice,1596 it,209,merchantofvenice,1596 the,740,merchantofvenice,1596 is,242,merchantofvenice,1596 profession,1,tamingoftheshrew,1593 befal,1,tamingoftheshrew,1593 quarrelsome,1,tamingoftheshrew,1593 metaphysics,1,tamingoftheshrew,1593 sleekly,1,tamingoftheshrew,1593 You're,1,tamingoftheshrew,1593 event,1,tamingoftheshrew,1593 alehouse,1,tamingoftheshrew,1593 jills,1,tamingoftheshrew,1593 brawl,1,tamingoftheshrew,1593 unpink'd,1,tamingoftheshrew,1593 o'er,1,tamingoftheshrew,1593 somebody,1,tamingoftheshrew,1593 pitched,1,tamingoftheshrew,1593 rudesby,1,tamingoftheshrew,1593 Quick,1,tamingoftheshrew,1593 neighing,1,tamingoftheshrew,1593 Bentivolii,1,tamingoftheshrew,1593 advised,1,tamingoftheshrew,1593 Unbind,1,tamingoftheshrew,1593 grew,1,tamingoftheshrew,1593 debts,1,tamingoftheshrew,1593 grey,1,tamingoftheshrew,1593 pity,1,tamingoftheshrew,1593 happier,1,tamingoftheshrew,1593 c,1,tamingoftheshrew,1593 suffer,1,tamingoftheshrew,1593 continency,1,tamingoftheshrew,1593 Yours,1,tamingoftheshrew,1593 pith,1,tamingoftheshrew,1593 hangings,1,tamingoftheshrew,1593 Conformable,1,tamingoftheshrew,1593 gallants,1,tamingoftheshrew,1593 Few,1,tamingoftheshrew,1593 'Alla,1,tamingoftheshrew,1593 advice,1,tamingoftheshrew,1593 extremity,1,tamingoftheshrew,1593 drop,1,tamingoftheshrew,1593 John,1,tamingoftheshrew,1593 infected,1,tamingoftheshrew,1593 echo,1,tamingoftheshrew,1593 dined,1,tamingoftheshrew,1593 darest,1,tamingoftheshrew,1593 Loved,1,tamingoftheshrew,1593 motion,1,tamingoftheshrew,1593 feed'st,1,tamingoftheshrew,1593 lengthens,1,tamingoftheshrew,1593 Head,1,tamingoftheshrew,1593 Uncase,1,tamingoftheshrew,1593 Adam,1,tamingoftheshrew,1593 belongs,1,tamingoftheshrew,1593 resist,1,tamingoftheshrew,1593 Wonder,1,tamingoftheshrew,1593 jay,1,tamingoftheshrew,1593 orders,1,tamingoftheshrew,1593 brass,1,tamingoftheshrew,1593 wears,1,tamingoftheshrew,1593 twig,1,tamingoftheshrew,1593 obtain'd,1,tamingoftheshrew,1593 bleared,1,tamingoftheshrew,1593 Daphne,1,tamingoftheshrew,1593 Al'ce,1,tamingoftheshrew,1593 dine,1,tamingoftheshrew,1593 entire,1,tamingoftheshrew,1593 rag,1,tamingoftheshrew,1593 ran,1,tamingoftheshrew,1593 villain's,1,tamingoftheshrew,1593 lawful,1,tamingoftheshrew,1593 sewed,1,tamingoftheshrew,1593 dagger,1,tamingoftheshrew,1593 jacks,1,tamingoftheshrew,1593 nostra,1,tamingoftheshrew,1593 distinguish'd,1,tamingoftheshrew,1593 offended,1,tamingoftheshrew,1593 junkets,1,tamingoftheshrew,1593 assured,1,tamingoftheshrew,1593 scent,1,tamingoftheshrew,1593 hemp,1,tamingoftheshrew,1593 fleeter,1,tamingoftheshrew,1593 doubtful,1,tamingoftheshrew,1593 roe,1,tamingoftheshrew,1593 pupils,1,tamingoftheshrew,1593 Wilt,1,tamingoftheshrew,1593 roar,1,tamingoftheshrew,1593 Women,1,tamingoftheshrew,1593 worshipful,1,tamingoftheshrew,1593 express,1,tamingoftheshrew,1593 unparted,1,tamingoftheshrew,1593 boys,1,tamingoftheshrew,1593 cypress,1,tamingoftheshrew,1593 jot,1,tamingoftheshrew,1593 Grim,1,tamingoftheshrew,1593 toes,1,tamingoftheshrew,1593 Lord's,1,tamingoftheshrew,1593 Stay,1,tamingoftheshrew,1593 laughter,1,tamingoftheshrew,1593 warning,1,tamingoftheshrew,1593 swiftly,1,tamingoftheshrew,1593 truly,1,tamingoftheshrew,1593 mess,1,tamingoftheshrew,1593 miss'd,1,tamingoftheshrew,1593 vail,1,tamingoftheshrew,1593 thorny,1,tamingoftheshrew,1593 hers,1,tamingoftheshrew,1593 aptly,1,tamingoftheshrew,1593 trunk,1,tamingoftheshrew,1593 Saving,1,tamingoftheshrew,1593 herd,1,tamingoftheshrew,1593 Iron,1,tamingoftheshrew,1593 coral,1,tamingoftheshrew,1593 braves,1,tamingoftheshrew,1593 ruffian,1,tamingoftheshrew,1593 disease,1,tamingoftheshrew,1593 super,1,tamingoftheshrew,1593 lutes,1,tamingoftheshrew,1593 trenchers,1,tamingoftheshrew,1593 skirts,1,tamingoftheshrew,1593 Neapolitan,1,tamingoftheshrew,1593 errand,1,tamingoftheshrew,1593 toil,1,tamingoftheshrew,1593 honourable,1,tamingoftheshrew,1593 brook,1,tamingoftheshrew,1593 Joan,1,tamingoftheshrew,1593 whipped,1,tamingoftheshrew,1593 commodity,1,tamingoftheshrew,1593 looked,1,tamingoftheshrew,1593 amber,1,tamingoftheshrew,1593 feeds,1,tamingoftheshrew,1593 maintain,1,tamingoftheshrew,1593 richly,1,tamingoftheshrew,1593 fury,1,tamingoftheshrew,1593 Conceives,1,tamingoftheshrew,1593 Ere,1,tamingoftheshrew,1593 match'd,1,tamingoftheshrew,1593 throat,1,tamingoftheshrew,1593 signs,1,tamingoftheshrew,1593 nought,1,tamingoftheshrew,1593 stumbled,1,tamingoftheshrew,1593 laugh,1,tamingoftheshrew,1593 soul,1,tamingoftheshrew,1593 worms,1,tamingoftheshrew,1593 Christopher,1,tamingoftheshrew,1593 alighted,1,tamingoftheshrew,1593 first's,1,tamingoftheshrew,1593 jades,1,tamingoftheshrew,1593 Tedious,1,tamingoftheshrew,1593 yonder,1,tamingoftheshrew,1593 beauty's,1,tamingoftheshrew,1593 Wrapp'd,1,tamingoftheshrew,1593 sort,1,tamingoftheshrew,1593 lively,1,tamingoftheshrew,1593 odds,1,tamingoftheshrew,1593 Tripoli,1,tamingoftheshrew,1593 damned,1,tamingoftheshrew,1593 sore,1,tamingoftheshrew,1593 truth,1,tamingoftheshrew,1593 stamp'd,1,tamingoftheshrew,1593 Vincentio's,1,tamingoftheshrew,1593 bridle,1,tamingoftheshrew,1593 Began,1,tamingoftheshrew,1593 rates,1,tamingoftheshrew,1593 thirst,1,tamingoftheshrew,1593 bemoiled,1,tamingoftheshrew,1593 lief,1,tamingoftheshrew,1593 rated,1,tamingoftheshrew,1593 wing'd,1,tamingoftheshrew,1593 baggage,1,tamingoftheshrew,1593 wounded,1,tamingoftheshrew,1593 cheques,1,tamingoftheshrew,1593 Stephen,1,tamingoftheshrew,1593 cheeks,1,tamingoftheshrew,1593 unconstant,1,tamingoftheshrew,1593 curious,1,tamingoftheshrew,1593 specialties,1,tamingoftheshrew,1593 unwilling,1,tamingoftheshrew,1593 PERSONAE,1,tamingoftheshrew,1593 chequed,1,tamingoftheshrew,1593 considering,1,tamingoftheshrew,1593 proclaim,1,tamingoftheshrew,1593 card,1,tamingoftheshrew,1593 greyhound,1,tamingoftheshrew,1593 mute,1,tamingoftheshrew,1593 agreed,1,tamingoftheshrew,1593 casa,1,tamingoftheshrew,1593 clamorous,1,tamingoftheshrew,1593 spare,1,tamingoftheshrew,1593 cart,1,tamingoftheshrew,1593 Scratching,1,tamingoftheshrew,1593 imprimendum,1,tamingoftheshrew,1593 lyingest,1,tamingoftheshrew,1593 laced,1,tamingoftheshrew,1593 coffers,1,tamingoftheshrew,1593 garment,1,tamingoftheshrew,1593 worser,1,tamingoftheshrew,1593 liar,1,tamingoftheshrew,1593 mistook,1,tamingoftheshrew,1593 perdonato,1,tamingoftheshrew,1593 pursue,1,tamingoftheshrew,1593 joyous,1,tamingoftheshrew,1593 interrupted,1,tamingoftheshrew,1593 Poor,1,tamingoftheshrew,1593 strength,1,tamingoftheshrew,1593 walnut,1,tamingoftheshrew,1593 reign,1,tamingoftheshrew,1593 disdain,1,tamingoftheshrew,1593 patroness,1,tamingoftheshrew,1593 spied,1,tamingoftheshrew,1593 everything,1,tamingoftheshrew,1593 feather,1,tamingoftheshrew,1593 draw,1,tamingoftheshrew,1593 stock,1,tamingoftheshrew,1593 Fellow,1,tamingoftheshrew,1593 unpolish'd,1,tamingoftheshrew,1593 pine,1,tamingoftheshrew,1593 grove,1,tamingoftheshrew,1593 Young,1,tamingoftheshrew,1593 happened,1,tamingoftheshrew,1593 grown,1,tamingoftheshrew,1593 scarlet,1,tamingoftheshrew,1593 link,1,tamingoftheshrew,1593 comondy,1,tamingoftheshrew,1593 Jove,1,tamingoftheshrew,1593 affability,1,tamingoftheshrew,1593 broach'd,1,tamingoftheshrew,1593 call'st,1,tamingoftheshrew,1593 repast,1,tamingoftheshrew,1593 account'st,1,tamingoftheshrew,1593 cuffs,1,tamingoftheshrew,1593 opposed,1,tamingoftheshrew,1593 limp,1,tamingoftheshrew,1593 corner,1,tamingoftheshrew,1593 An't,1,tamingoftheshrew,1593 Ovid,1,tamingoftheshrew,1593 Rescue,1,tamingoftheshrew,1593 boldness,1,tamingoftheshrew,1593 injury,1,tamingoftheshrew,1593 thou'rt,1,tamingoftheshrew,1593 purse,1,tamingoftheshrew,1593 Forward,1,tamingoftheshrew,1593 stalls,1,tamingoftheshrew,1593 awry,1,tamingoftheshrew,1593 possessed,1,tamingoftheshrew,1593 budge,1,tamingoftheshrew,1593 cake,1,tamingoftheshrew,1593 frolic,1,tamingoftheshrew,1593 contrive,1,tamingoftheshrew,1593 heedless,1,tamingoftheshrew,1593 Induction,1,tamingoftheshrew,1593 Only,1,tamingoftheshrew,1593 seemeth,1,tamingoftheshrew,1593 Persons,1,tamingoftheshrew,1593 fingers,1,tamingoftheshrew,1593 Forgot,1,tamingoftheshrew,1593 policy,1,tamingoftheshrew,1593 Nicholas,1,tamingoftheshrew,1593 golden,1,tamingoftheshrew,1593 petitioners,1,tamingoftheshrew,1593 Pitchers,1,tamingoftheshrew,1593 teacheth,1,tamingoftheshrew,1593 breaks,1,tamingoftheshrew,1593 paper,1,tamingoftheshrew,1593 Tarry,1,tamingoftheshrew,1593 meacock,1,tamingoftheshrew,1593 unsuspected,1,tamingoftheshrew,1593 glass,1,tamingoftheshrew,1593 cobwebs,1,tamingoftheshrew,1593 rites,1,tamingoftheshrew,1593 beseem,1,tamingoftheshrew,1593 Methinks,1,tamingoftheshrew,1593 riches,1,tamingoftheshrew,1593 Beside,1,tamingoftheshrew,1593 fume,1,tamingoftheshrew,1593 Pegasus,1,tamingoftheshrew,1593 abode,1,tamingoftheshrew,1593 wait,1,tamingoftheshrew,1593 slippers,1,tamingoftheshrew,1593 congeal'd,1,tamingoftheshrew,1593 boar,1,tamingoftheshrew,1593 ingenious,1,tamingoftheshrew,1593 paltry,1,tamingoftheshrew,1593 coldly,1,tamingoftheshrew,1593 Saw'st,1,tamingoftheshrew,1593 oftentimes,1,tamingoftheshrew,1593 companies,1,tamingoftheshrew,1593 ''Gamut',1,tamingoftheshrew,1593 Tyrian,1,tamingoftheshrew,1593 ladies',1,tamingoftheshrew,1593 soar,1,tamingoftheshrew,1593 Fellows,1,tamingoftheshrew,1593 untoward,1,tamingoftheshrew,1593 pillow,1,tamingoftheshrew,1593 six,1,tamingoftheshrew,1593 lasts,1,tamingoftheshrew,1593 Minion,1,tamingoftheshrew,1593 flatly,1,tamingoftheshrew,1593 whatsoever,1,tamingoftheshrew,1593 history,1,tamingoftheshrew,1593 sip,1,tamingoftheshrew,1593 sums,1,tamingoftheshrew,1593 deeper,1,tamingoftheshrew,1593 'Sirrah,1,tamingoftheshrew,1593 Pedascule,1,tamingoftheshrew,1593 rebused,1,tamingoftheshrew,1593 Happily,1,tamingoftheshrew,1593 purses,1,tamingoftheshrew,1593 penance,1,tamingoftheshrew,1593 fleet,1,tamingoftheshrew,1593 saddle,1,tamingoftheshrew,1593 tooth,1,tamingoftheshrew,1593 'E,1,tamingoftheshrew,1593 'C,1,tamingoftheshrew,1593 'D,1,tamingoftheshrew,1593 'B,1,tamingoftheshrew,1593 sew,1,tamingoftheshrew,1593 shrill,1,tamingoftheshrew,1593 Curster,1,tamingoftheshrew,1593 mocking,1,tamingoftheshrew,1593 muscadel,1,tamingoftheshrew,1593 arguing,1,tamingoftheshrew,1593 Jeronimy,1,tamingoftheshrew,1593 roaming,1,tamingoftheshrew,1593 catching,1,tamingoftheshrew,1593 chronicles,1,tamingoftheshrew,1593 chapeless,1,tamingoftheshrew,1593 suit,1,tamingoftheshrew,1593 Thou'ldst,1,tamingoftheshrew,1593 peevish,1,tamingoftheshrew,1593 laying,1,tamingoftheshrew,1593 lions,1,tamingoftheshrew,1593 prettiest,1,tamingoftheshrew,1593 scorn,1,tamingoftheshrew,1593 abused,1,tamingoftheshrew,1593 frosts,1,tamingoftheshrew,1593 peril,1,tamingoftheshrew,1593 livest,1,tamingoftheshrew,1593 mercatante,1,tamingoftheshrew,1593 charging,1,tamingoftheshrew,1593 murdered,1,tamingoftheshrew,1593 steps,1,tamingoftheshrew,1593 stripling,1,tamingoftheshrew,1593 moralize,1,tamingoftheshrew,1593 subject,1,tamingoftheshrew,1593 extempore,1,tamingoftheshrew,1593 followed,1,tamingoftheshrew,1593 swayed,1,tamingoftheshrew,1593 usual,1,tamingoftheshrew,1593 attends,1,tamingoftheshrew,1593 bow'd,1,tamingoftheshrew,1593 't,1,tamingoftheshrew,1593 Wait,1,tamingoftheshrew,1593 bashful,1,tamingoftheshrew,1593 qualified,1,tamingoftheshrew,1593 studs,1,tamingoftheshrew,1593 dowery,1,tamingoftheshrew,1593 second,1,tamingoftheshrew,1593 'larums,1,tamingoftheshrew,1593 hunted,1,tamingoftheshrew,1593 shipping,1,tamingoftheshrew,1593 gather,1,tamingoftheshrew,1593 hatch'd,1,tamingoftheshrew,1593 sadder,1,tamingoftheshrew,1593 chattering,1,tamingoftheshrew,1593 suck,1,tamingoftheshrew,1593 minimo,1,tamingoftheshrew,1593 pieces,1,tamingoftheshrew,1593 Spake,1,tamingoftheshrew,1593 play'd,1,tamingoftheshrew,1593 regia,1,tamingoftheshrew,1593 nill,1,tamingoftheshrew,1593 girth,1,tamingoftheshrew,1593 awful,1,tamingoftheshrew,1593 sends,1,tamingoftheshrew,1593 daughter's,1,tamingoftheshrew,1593 swept,1,tamingoftheshrew,1593 apples,1,tamingoftheshrew,1593 unreverent,1,tamingoftheshrew,1593 satiety,1,tamingoftheshrew,1593 declining,1,tamingoftheshrew,1593 swelling,1,tamingoftheshrew,1593 thieves,1,tamingoftheshrew,1593 ergo,1,tamingoftheshrew,1593 offence,1,tamingoftheshrew,1593 Pewter,1,tamingoftheshrew,1593 diligent,1,tamingoftheshrew,1593 heavens,1,tamingoftheshrew,1593 breeches,1,tamingoftheshrew,1593 embracements,1,tamingoftheshrew,1593 readiest,1,tamingoftheshrew,1593 doublets,1,tamingoftheshrew,1593 Forswear,1,tamingoftheshrew,1593 clang,1,tamingoftheshrew,1593 points,1,tamingoftheshrew,1593 brain,1,tamingoftheshrew,1593 unkindly,1,tamingoftheshrew,1593 merest,1,tamingoftheshrew,1593 skies,1,tamingoftheshrew,1593 afraid,1,tamingoftheshrew,1593 shower,1,tamingoftheshrew,1593 common,1,tamingoftheshrew,1593 respecting,1,tamingoftheshrew,1593 undress,1,tamingoftheshrew,1593 Slys,1,tamingoftheshrew,1593 moulded,1,tamingoftheshrew,1593 tempting,1,tamingoftheshrew,1593 figure,1,tamingoftheshrew,1593 Whereof,1,tamingoftheshrew,1593 cuore,1,tamingoftheshrew,1593 kill'd,1,tamingoftheshrew,1593 bliss,1,tamingoftheshrew,1593 bestrew,1,tamingoftheshrew,1593 Bianco's,1,tamingoftheshrew,1593 toucheth,1,tamingoftheshrew,1593 beggarly,1,tamingoftheshrew,1593 shuns,1,tamingoftheshrew,1593 feat,1,tamingoftheshrew,1593 envious,1,tamingoftheshrew,1593 proceeders,1,tamingoftheshrew,1593 bots,1,tamingoftheshrew,1593 unfeigned,1,tamingoftheshrew,1593 seeks,1,tamingoftheshrew,1593 affected,1,tamingoftheshrew,1593 Sound,1,tamingoftheshrew,1593 quaff,1,tamingoftheshrew,1593 unable,1,tamingoftheshrew,1593 consented,1,tamingoftheshrew,1593 willing,1,tamingoftheshrew,1593 Leave,1,tamingoftheshrew,1593 thence,1,tamingoftheshrew,1593 Whilst,1,tamingoftheshrew,1593 crossing,1,tamingoftheshrew,1593 physicians,1,tamingoftheshrew,1593 tush,1,tamingoftheshrew,1593 sup,1,tamingoftheshrew,1593 brach,1,tamingoftheshrew,1593 grumble,1,tamingoftheshrew,1593 poorest,1,tamingoftheshrew,1593 reverence,1,tamingoftheshrew,1593 bowl,1,tamingoftheshrew,1593 spaniel,1,tamingoftheshrew,1593 cease,1,tamingoftheshrew,1593 descent,1,tamingoftheshrew,1593 legg'd,1,tamingoftheshrew,1593 humbly,1,tamingoftheshrew,1593 winded,1,tamingoftheshrew,1593 whoever,1,tamingoftheshrew,1593 galleys,1,tamingoftheshrew,1593 tight,1,tamingoftheshrew,1593 costly,1,tamingoftheshrew,1593 elders,1,tamingoftheshrew,1593 sword,1,tamingoftheshrew,1593 lances,1,tamingoftheshrew,1593 'Now,1,tamingoftheshrew,1593 false,1,tamingoftheshrew,1593 weather,1,tamingoftheshrew,1593 artillery,1,tamingoftheshrew,1593 wine,1,tamingoftheshrew,1593 patrimony,1,tamingoftheshrew,1593 wink,1,tamingoftheshrew,1593 stuff'd,1,tamingoftheshrew,1593 abjured,1,tamingoftheshrew,1593 soldier,1,tamingoftheshrew,1593 irksome,1,tamingoftheshrew,1593 wished,1,tamingoftheshrew,1593 Hence,1,tamingoftheshrew,1593 nails,1,tamingoftheshrew,1593 cavil,1,tamingoftheshrew,1593 snip,1,tamingoftheshrew,1593 kneel,1,tamingoftheshrew,1593 comedy,1,tamingoftheshrew,1593 usurp,1,tamingoftheshrew,1593 mirth,1,tamingoftheshrew,1593 knees,1,tamingoftheshrew,1593 Please,1,tamingoftheshrew,1593 steal,1,tamingoftheshrew,1593 edge,1,tamingoftheshrew,1593 heaven,1,tamingoftheshrew,1593 appendix,1,tamingoftheshrew,1593 know'st,1,tamingoftheshrew,1593 displease,1,tamingoftheshrew,1593 puff'd,1,tamingoftheshrew,1593 travellest,1,tamingoftheshrew,1593 counsel's,1,tamingoftheshrew,1593 turned,1,tamingoftheshrew,1593 Florentius',1,tamingoftheshrew,1593 Accept,1,tamingoftheshrew,1593 custom,1,tamingoftheshrew,1593 murder,1,tamingoftheshrew,1593 cullion,1,tamingoftheshrew,1593 travellers,1,tamingoftheshrew,1593 part's,1,tamingoftheshrew,1593 gawds,1,tamingoftheshrew,1593 seem'd,1,tamingoftheshrew,1593 malady,1,tamingoftheshrew,1593 stop,1,tamingoftheshrew,1593 pretty,1,tamingoftheshrew,1593 throughly,1,tamingoftheshrew,1593 spites,1,tamingoftheshrew,1593 pittance,1,tamingoftheshrew,1593 join'd,1,tamingoftheshrew,1593 naturally,1,tamingoftheshrew,1593 prodigy,1,tamingoftheshrew,1593 rules,1,tamingoftheshrew,1593 There's,1,tamingoftheshrew,1593 gentleman's,1,tamingoftheshrew,1593 wits,1,tamingoftheshrew,1593 carousing,1,tamingoftheshrew,1593 praised,1,tamingoftheshrew,1593 spoke,1,tamingoftheshrew,1593 school'd,1,tamingoftheshrew,1593 colour,1,tamingoftheshrew,1593 Draw,1,tamingoftheshrew,1593 'cum,1,tamingoftheshrew,1593 conditions,1,tamingoftheshrew,1593 Pimpernell,1,tamingoftheshrew,1593 bit,1,tamingoftheshrew,1593 jarring,1,tamingoftheshrew,1593 privilegio,1,tamingoftheshrew,1593 appurtenances,1,tamingoftheshrew,1593 bills,1,tamingoftheshrew,1593 nail,1,tamingoftheshrew,1593 Drinks,1,tamingoftheshrew,1593 knowledge,1,tamingoftheshrew,1593 rival,1,tamingoftheshrew,1593 side,1,tamingoftheshrew,1593 I',1,tamingoftheshrew,1593 stir,1,tamingoftheshrew,1593 slaves,1,tamingoftheshrew,1593 gratify,1,tamingoftheshrew,1593 leases,1,tamingoftheshrew,1593 unkind,1,tamingoftheshrew,1593 melancholy,1,tamingoftheshrew,1593 drinking,1,tamingoftheshrew,1593 rusty,1,tamingoftheshrew,1593 backs,1,tamingoftheshrew,1593 aboard,1,tamingoftheshrew,1593 drudge,1,tamingoftheshrew,1593 offend,1,tamingoftheshrew,1593 serving,1,tamingoftheshrew,1593 Jamy,1,tamingoftheshrew,1593 sigh,1,tamingoftheshrew,1593 resemble,1,tamingoftheshrew,1593 delights,1,tamingoftheshrew,1593 twink,1,tamingoftheshrew,1593 Ah,1,tamingoftheshrew,1593 controversy,1,tamingoftheshrew,1593 packing,1,tamingoftheshrew,1593 womanly,1,tamingoftheshrew,1593 tonight,1,tamingoftheshrew,1593 onion,1,tamingoftheshrew,1593 mistrust,1,tamingoftheshrew,1593 taller,1,tamingoftheshrew,1593 meads,1,tamingoftheshrew,1593 chaste,1,tamingoftheshrew,1593 Hic,1,tamingoftheshrew,1593 amort,1,tamingoftheshrew,1593 drunkard's,1,tamingoftheshrew,1593 bow,1,tamingoftheshrew,1593 loath,1,tamingoftheshrew,1593 hurly,1,tamingoftheshrew,1593 Softer,1,tamingoftheshrew,1593 strangers,1,tamingoftheshrew,1593 knowing,1,tamingoftheshrew,1593 distilled,1,tamingoftheshrew,1593 adversaries,1,tamingoftheshrew,1593 wash'd,1,tamingoftheshrew,1593 languages,1,tamingoftheshrew,1593 Counsel,1,tamingoftheshrew,1593 desperate,1,tamingoftheshrew,1593 Hope,1,tamingoftheshrew,1593 doctors,1,tamingoftheshrew,1593 itself,1,tamingoftheshrew,1593 hen,1,tamingoftheshrew,1593 Having,1,tamingoftheshrew,1593 'lord,1,tamingoftheshrew,1593 hopes,1,tamingoftheshrew,1593 Me,1,tamingoftheshrew,1593 wrings,1,tamingoftheshrew,1593 O',1,tamingoftheshrew,1593 Mi,1,tamingoftheshrew,1593 bay,1,tamingoftheshrew,1593 cockle,1,tamingoftheshrew,1593 bar,1,tamingoftheshrew,1593 Singing,1,tamingoftheshrew,1593 Stand,1,tamingoftheshrew,1593 blots,1,tamingoftheshrew,1593 Leda's,1,tamingoftheshrew,1593 treble,1,tamingoftheshrew,1593 cruel,1,tamingoftheshrew,1593 subscribe,1,tamingoftheshrew,1593 unless,1,tamingoftheshrew,1593 denier,1,tamingoftheshrew,1593 in't,1,tamingoftheshrew,1593 in's,1,tamingoftheshrew,1593 scarfs,1,tamingoftheshrew,1593 Walter,1,tamingoftheshrew,1593 creature,1,tamingoftheshrew,1593 star,1,tamingoftheshrew,1593 grumbling,1,tamingoftheshrew,1593 brings,1,tamingoftheshrew,1593 fouler,1,tamingoftheshrew,1593 studying,1,tamingoftheshrew,1593 contending,1,tamingoftheshrew,1593 diligence,1,tamingoftheshrew,1593 resteth,1,tamingoftheshrew,1593 sings,1,tamingoftheshrew,1593 gamesome,1,tamingoftheshrew,1593 closely,1,tamingoftheshrew,1593 hie,1,tamingoftheshrew,1593 conceives,1,tamingoftheshrew,1593 hid,1,tamingoftheshrew,1593 hic,1,tamingoftheshrew,1593 Asses,1,tamingoftheshrew,1593 wisdom,1,tamingoftheshrew,1593 conceived,1,tamingoftheshrew,1593 miracles,1,tamingoftheshrew,1593 buzz,1,tamingoftheshrew,1593 'Imprimis,1,tamingoftheshrew,1593 hipped,1,tamingoftheshrew,1593 cheerfully,1,tamingoftheshrew,1593 notorious,1,tamingoftheshrew,1593 Lucrece,1,tamingoftheshrew,1593 flourisheth,1,tamingoftheshrew,1593 dullest,1,tamingoftheshrew,1593 bless,1,tamingoftheshrew,1593 Io,1,tamingoftheshrew,1593 quick,1,tamingoftheshrew,1593 ease,1,tamingoftheshrew,1593 tribute,1,tamingoftheshrew,1593 pantaloon,1,tamingoftheshrew,1593 denial,1,tamingoftheshrew,1593 despair,1,tamingoftheshrew,1593 Had,1,tamingoftheshrew,1593 adder,1,tamingoftheshrew,1593 pie,1,tamingoftheshrew,1593 Hap,1,tamingoftheshrew,1593 pip,1,tamingoftheshrew,1593 gambold,1,tamingoftheshrew,1593 wedded,1,tamingoftheshrew,1593 changes,1,tamingoftheshrew,1593 Troilus,1,tamingoftheshrew,1593 fives,1,tamingoftheshrew,1593 grandfather,1,tamingoftheshrew,1593 nice,1,tamingoftheshrew,1593 noddle,1,tamingoftheshrew,1593 matches,1,tamingoftheshrew,1593 witless,1,tamingoftheshrew,1593 quantity,1,tamingoftheshrew,1593 Dine,1,tamingoftheshrew,1593 sire,1,tamingoftheshrew,1593 obey,1,tamingoftheshrew,1593 Cytherea,1,tamingoftheshrew,1593 titles,1,tamingoftheshrew,1593 'only',1,tamingoftheshrew,1593 Adieu,1,tamingoftheshrew,1593 trimm'd,1,tamingoftheshrew,1593 counterpoints,1,tamingoftheshrew,1593 god,1,tamingoftheshrew,1593 glanders,1,tamingoftheshrew,1593 Naps,1,tamingoftheshrew,1593 dresser,1,tamingoftheshrew,1593 dressed,1,tamingoftheshrew,1593 Thou'rt,1,tamingoftheshrew,1593 dumps,1,tamingoftheshrew,1593 liberality,1,tamingoftheshrew,1593 sith,1,tamingoftheshrew,1593 sits,1,tamingoftheshrew,1593 absent,1,tamingoftheshrew,1593 whereby,1,tamingoftheshrew,1593 'the,1,tamingoftheshrew,1593 Allot,1,tamingoftheshrew,1593 bush,1,tamingoftheshrew,1593 sooner,1,tamingoftheshrew,1593 rebel,1,tamingoftheshrew,1593 longly,1,tamingoftheshrew,1593 narrowly,1,tamingoftheshrew,1593 Prithee,1,tamingoftheshrew,1593 coffin,1,tamingoftheshrew,1593 chattels,1,tamingoftheshrew,1593 prisoners,1,tamingoftheshrew,1593 pry,1,tamingoftheshrew,1593 sorted,1,tamingoftheshrew,1593 orchard,1,tamingoftheshrew,1593 defects,1,tamingoftheshrew,1593 hungerly,1,tamingoftheshrew,1593 furnished,1,tamingoftheshrew,1593 couch,1,tamingoftheshrew,1593 Cock's,1,tamingoftheshrew,1593 somewhat,1,tamingoftheshrew,1593 parle,1,tamingoftheshrew,1593 gall'd,1,tamingoftheshrew,1593 beyond,1,tamingoftheshrew,1593 bugs,1,tamingoftheshrew,1593 Happier,1,tamingoftheshrew,1593 pithy,1,tamingoftheshrew,1593 fifty,1,tamingoftheshrew,1593 idleness,1,tamingoftheshrew,1593 welkin,1,tamingoftheshrew,1593 jealous,1,tamingoftheshrew,1593 Born,1,tamingoftheshrew,1593 waving,1,tamingoftheshrew,1593 Sly's,1,tamingoftheshrew,1593 meanest,1,tamingoftheshrew,1593 suddenly,1,tamingoftheshrew,1593 prating,1,tamingoftheshrew,1593 antic,1,tamingoftheshrew,1593 buds,1,tamingoftheshrew,1593 a',1,tamingoftheshrew,1593 sheathing,1,tamingoftheshrew,1593 jewel,1,tamingoftheshrew,1593 persuasion,1,tamingoftheshrew,1593 Didst,1,tamingoftheshrew,1593 keep'st,1,tamingoftheshrew,1593 eaten,1,tamingoftheshrew,1593 gamester,1,tamingoftheshrew,1593 hereof,1,tamingoftheshrew,1593 'Con,1,tamingoftheshrew,1593 fifth,1,tamingoftheshrew,1593 testify,1,tamingoftheshrew,1593 curse,1,tamingoftheshrew,1593 'knocking,1,tamingoftheshrew,1593 beget,1,tamingoftheshrew,1593 likest,1,tamingoftheshrew,1593 buy,1,tamingoftheshrew,1593 Neighbour,1,tamingoftheshrew,1593 Ajax,1,tamingoftheshrew,1593 Ye,1,tamingoftheshrew,1593 Above,1,tamingoftheshrew,1593 sakes,1,tamingoftheshrew,1593 disguise,1,tamingoftheshrew,1593 About,1,tamingoftheshrew,1593 Whate'er,1,tamingoftheshrew,1593 swine,1,tamingoftheshrew,1593 paint,1,tamingoftheshrew,1593 garters,1,tamingoftheshrew,1593 jump,1,tamingoftheshrew,1593 Whither,1,tamingoftheshrew,1593 smack,1,tamingoftheshrew,1593 savours,1,tamingoftheshrew,1593 vantage,1,tamingoftheshrew,1593 grandsire,1,tamingoftheshrew,1593 immortal,1,tamingoftheshrew,1593 importune,1,tamingoftheshrew,1593 chafed,1,tamingoftheshrew,1593 entertain'st,1,tamingoftheshrew,1593 argosies,1,tamingoftheshrew,1593 university,1,tamingoftheshrew,1593 incredible,1,tamingoftheshrew,1593 holidame,1,tamingoftheshrew,1593 oxen,1,tamingoftheshrew,1593 bargain'd,1,tamingoftheshrew,1593 caged,1,tamingoftheshrew,1593 oweth,1,tamingoftheshrew,1593 wingdalls,1,tamingoftheshrew,1593 canopies,1,tamingoftheshrew,1593 custard,1,tamingoftheshrew,1593 solemn,1,tamingoftheshrew,1593 dogs,1,tamingoftheshrew,1593 store,1,tamingoftheshrew,1593 noted,1,tamingoftheshrew,1593 entertain,1,tamingoftheshrew,1593 deed,1,tamingoftheshrew,1593 solely,1,tamingoftheshrew,1593 pumps,1,tamingoftheshrew,1593 virgin,1,tamingoftheshrew,1593 Theretake,1,tamingoftheshrew,1593 deer,1,tamingoftheshrew,1593 twangling,1,tamingoftheshrew,1593 Prefer,1,tamingoftheshrew,1593 concealing,1,tamingoftheshrew,1593 stay'd,1,tamingoftheshrew,1593 modesties,1,tamingoftheshrew,1593 harness,1,tamingoftheshrew,1593 wretch,1,tamingoftheshrew,1593 plate,1,tamingoftheshrew,1593 image,1,tamingoftheshrew,1593 eloquence,1,tamingoftheshrew,1593 Baccare,1,tamingoftheshrew,1593 blowing,1,tamingoftheshrew,1593 quarts,1,tamingoftheshrew,1593 air,1,tamingoftheshrew,1593 beck,1,tamingoftheshrew,1593 doff,1,tamingoftheshrew,1593 yea,1,tamingoftheshrew,1593 raise,1,tamingoftheshrew,1593 satisfy,1,tamingoftheshrew,1593 slish,1,tamingoftheshrew,1593 Dally,1,tamingoftheshrew,1593 stops,1,tamingoftheshrew,1593 repute,1,tamingoftheshrew,1593 waspish,1,tamingoftheshrew,1593 sheer,1,tamingoftheshrew,1593 prevented,1,tamingoftheshrew,1593 Rheims,1,tamingoftheshrew,1593 'Jack,1,tamingoftheshrew,1593 milch,1,tamingoftheshrew,1593 debt,1,tamingoftheshrew,1593 needs,1,tamingoftheshrew,1593 Kated,1,tamingoftheshrew,1593 stoop,1,tamingoftheshrew,1593 trovato,1,tamingoftheshrew,1593 gentlewomen,1,tamingoftheshrew,1593 napkin,1,tamingoftheshrew,1593 amendment,1,tamingoftheshrew,1593 Achieve,1,tamingoftheshrew,1593 swearing,1,tamingoftheshrew,1593 rails,1,tamingoftheshrew,1593 stone,1,tamingoftheshrew,1593 plays,1,tamingoftheshrew,1593 unworthy,1,tamingoftheshrew,1593 jugs,1,tamingoftheshrew,1593 deal,1,tamingoftheshrew,1593 instrument's,1,tamingoftheshrew,1593 autumn,1,tamingoftheshrew,1593 liberal,1,tamingoftheshrew,1593 eyeing,1,tamingoftheshrew,1593 aims,1,tamingoftheshrew,1593 submissive,1,tamingoftheshrew,1593 seeing,1,tamingoftheshrew,1593 likely,1,tamingoftheshrew,1593 Last,1,tamingoftheshrew,1593 brooked,1,tamingoftheshrew,1593 thrive,1,tamingoftheshrew,1593 lend,1,tamingoftheshrew,1593 enforce,1,tamingoftheshrew,1593 lighted,1,tamingoftheshrew,1593 gale,1,tamingoftheshrew,1593 touch'd,1,tamingoftheshrew,1593 treats,1,tamingoftheshrew,1593 laughing,1,tamingoftheshrew,1593 waits,1,tamingoftheshrew,1593 generally,1,tamingoftheshrew,1593 houses,1,tamingoftheshrew,1593 yields,1,tamingoftheshrew,1593 apes,1,tamingoftheshrew,1593 memory,1,tamingoftheshrew,1593 ad,1,tamingoftheshrew,1593 heating,1,tamingoftheshrew,1593 accompany,1,tamingoftheshrew,1593 manner,1,tamingoftheshrew,1593 Blows,1,tamingoftheshrew,1593 thyself,1,tamingoftheshrew,1593 Hearest,1,tamingoftheshrew,1593 temperate,1,tamingoftheshrew,1593 piercing,1,tamingoftheshrew,1593 bless'd,1,tamingoftheshrew,1593 halves,1,tamingoftheshrew,1593 dried,1,tamingoftheshrew,1593 board,1,tamingoftheshrew,1593 ox,1,tamingoftheshrew,1593 attending,1,tamingoftheshrew,1593 I'faith,1,tamingoftheshrew,1593 crossed,1,tamingoftheshrew,1593 bestraught,1,tamingoftheshrew,1593 bodies,1,tamingoftheshrew,1593 sufficeth,1,tamingoftheshrew,1593 demi,1,tamingoftheshrew,1593 fastest,1,tamingoftheshrew,1593 engenders,1,tamingoftheshrew,1593 banish,1,tamingoftheshrew,1593 crave,1,tamingoftheshrew,1593 idly,1,tamingoftheshrew,1593 novices,1,tamingoftheshrew,1593 quarters,1,tamingoftheshrew,1593 Italian,1,tamingoftheshrew,1593 wrinkled,1,tamingoftheshrew,1593 disquiet,1,tamingoftheshrew,1593 whereof,1,tamingoftheshrew,1593 thankful,1,tamingoftheshrew,1593 entitle,1,tamingoftheshrew,1593 delicious,1,tamingoftheshrew,1593 earth,1,tamingoftheshrew,1593 Imprimis,1,tamingoftheshrew,1593 cousin,1,tamingoftheshrew,1593 carved,1,tamingoftheshrew,1593 mightiness,1,tamingoftheshrew,1593 accomplished,1,tamingoftheshrew,1593 morn,1,tamingoftheshrew,1593 captum,1,tamingoftheshrew,1593 train,1,tamingoftheshrew,1593 scornful,1,tamingoftheshrew,1593 glance,1,tamingoftheshrew,1593 hadst,1,tamingoftheshrew,1593 Swinge,1,tamingoftheshrew,1593 studied,1,tamingoftheshrew,1593 mose,1,tamingoftheshrew,1593 offer'd,1,tamingoftheshrew,1593 la,1,tamingoftheshrew,1593 grooms,1,tamingoftheshrew,1593 ado,1,tamingoftheshrew,1593 parents,1,tamingoftheshrew,1593 lost,1,tamingoftheshrew,1593 loss,1,tamingoftheshrew,1593 Minerva,1,tamingoftheshrew,1593 joltheads,1,tamingoftheshrew,1593 achieved,1,tamingoftheshrew,1593 plash,1,tamingoftheshrew,1593 wherein,1,tamingoftheshrew,1593 spent,1,tamingoftheshrew,1593 lest,1,tamingoftheshrew,1593 effectual,1,tamingoftheshrew,1593 Nathaniel's,1,tamingoftheshrew,1593 tames,1,tamingoftheshrew,1593 il,1,tamingoftheshrew,1593 dole,1,tamingoftheshrew,1593 spend,1,tamingoftheshrew,1593 Skipper,1,tamingoftheshrew,1593 Preposterous,1,tamingoftheshrew,1593 removes,1,tamingoftheshrew,1593 Genoa,1,tamingoftheshrew,1593 strand,1,tamingoftheshrew,1593 winner,1,tamingoftheshrew,1593 show'd,1,tamingoftheshrew,1593 Travelling,1,tamingoftheshrew,1593 spouse,1,tamingoftheshrew,1593 jerkin,1,tamingoftheshrew,1593 combed,1,tamingoftheshrew,1593 slack,1,tamingoftheshrew,1593 minstrels,1,tamingoftheshrew,1593 Kiss,1,tamingoftheshrew,1593 marr'd,1,tamingoftheshrew,1593 kernels,1,tamingoftheshrew,1593 harm,1,tamingoftheshrew,1593 thrice,1,tamingoftheshrew,1593 Whence,1,tamingoftheshrew,1593 reasons,1,tamingoftheshrew,1593 Haply,1,tamingoftheshrew,1593 warm'd,1,tamingoftheshrew,1593 running,1,tamingoftheshrew,1593 ornaments,1,tamingoftheshrew,1593 chestnut,1,tamingoftheshrew,1593 catched,1,tamingoftheshrew,1593 logger,1,tamingoftheshrew,1593 kills,1,tamingoftheshrew,1593 catches,1,tamingoftheshrew,1593 park,1,tamingoftheshrew,1593 Brought,1,tamingoftheshrew,1593 tripe,1,tamingoftheshrew,1593 ut,1,tamingoftheshrew,1593 frighted,1,tamingoftheshrew,1593 weapon,1,tamingoftheshrew,1593 sailmaker,1,tamingoftheshrew,1593 remember'd,1,tamingoftheshrew,1593 lewd,1,tamingoftheshrew,1593 pull,1,tamingoftheshrew,1593 hue,1,tamingoftheshrew,1593 frost,1,tamingoftheshrew,1593 crow,1,tamingoftheshrew,1593 te,1,tamingoftheshrew,1593 askance,1,tamingoftheshrew,1593 outright,1,tamingoftheshrew,1593 Christian,1,tamingoftheshrew,1593 knit,1,tamingoftheshrew,1593 Wincot,1,tamingoftheshrew,1593 senseless,1,tamingoftheshrew,1593 neat's,1,tamingoftheshrew,1593 shallow,1,tamingoftheshrew,1593 coldest,1,tamingoftheshrew,1593 fashion'd,1,tamingoftheshrew,1593 shortness,1,tamingoftheshrew,1593 Hercules,1,tamingoftheshrew,1593 Read,1,tamingoftheshrew,1593 planteth,1,tamingoftheshrew,1593 trade,1,tamingoftheshrew,1593 rushes,1,tamingoftheshrew,1593 Pluck,1,tamingoftheshrew,1593 appears,1,tamingoftheshrew,1593 consume,1,tamingoftheshrew,1593 forthcoming,1,tamingoftheshrew,1593 reach,1,tamingoftheshrew,1593 prince,1,tamingoftheshrew,1593 Full,1,tamingoftheshrew,1593 Grumio's,1,tamingoftheshrew,1593 mew'd,1,tamingoftheshrew,1593 descried,1,tamingoftheshrew,1593 accord,1,tamingoftheshrew,1593 forty,1,tamingoftheshrew,1593 joyful,1,tamingoftheshrew,1593 restrained,1,tamingoftheshrew,1593 legged,1,tamingoftheshrew,1593 provided,1,tamingoftheshrew,1593 shell,1,tamingoftheshrew,1593 acquaintance,1,tamingoftheshrew,1593 governor,1,tamingoftheshrew,1593 expect,1,tamingoftheshrew,1593 commendable,1,tamingoftheshrew,1593 open,1,tamingoftheshrew,1593 page,1,tamingoftheshrew,1593 She's,1,tamingoftheshrew,1593 vengeance,1,tamingoftheshrew,1593 weeps,1,tamingoftheshrew,1593 bondmaid,1,tamingoftheshrew,1593 knocks,1,tamingoftheshrew,1593 hawk,1,tamingoftheshrew,1593 Bend,1,tamingoftheshrew,1593 straws,1,tamingoftheshrew,1593 Provide,1,tamingoftheshrew,1593 tomorrow,1,tamingoftheshrew,1593 pain,1,tamingoftheshrew,1593 Hush,1,tamingoftheshrew,1593 pail,1,tamingoftheshrew,1593 hangs,1,tamingoftheshrew,1593 delight,1,tamingoftheshrew,1593 paid,1,tamingoftheshrew,1593 fiery,1,tamingoftheshrew,1593 plotted,1,tamingoftheshrew,1593 Puts,1,tamingoftheshrew,1593 Husband,1,tamingoftheshrew,1593 this's,1,tamingoftheshrew,1593 may'st,1,tamingoftheshrew,1593 Schoolmasters,1,tamingoftheshrew,1593 apt,1,tamingoftheshrew,1593 walked,1,tamingoftheshrew,1593 haven,1,tamingoftheshrew,1593 owes,1,tamingoftheshrew,1593 coverlet,1,tamingoftheshrew,1593 copatain,1,tamingoftheshrew,1593 point,1,tamingoftheshrew,1593 strive,1,tamingoftheshrew,1593 deceitful,1,tamingoftheshrew,1593 howsoe'er,1,tamingoftheshrew,1593 twain,1,tamingoftheshrew,1593 shop,1,tamingoftheshrew,1593 kindest,1,tamingoftheshrew,1593 bosom,1,tamingoftheshrew,1593 alive,1,tamingoftheshrew,1593 shot,1,tamingoftheshrew,1593 armory,1,tamingoftheshrew,1593 bespeak,1,tamingoftheshrew,1593 'madam,1,tamingoftheshrew,1593 proper,1,tamingoftheshrew,1593 frets,1,tamingoftheshrew,1593 chastity,1,tamingoftheshrew,1593 Xanthippe,1,tamingoftheshrew,1593 flatter'd,1,tamingoftheshrew,1593 duke's,1,tamingoftheshrew,1593 food,1,tamingoftheshrew,1593 contain,1,tamingoftheshrew,1593 prepared,1,tamingoftheshrew,1593 revenge,1,tamingoftheshrew,1593 renowned,1,tamingoftheshrew,1593 beetle,1,tamingoftheshrew,1593 greybeard,1,tamingoftheshrew,1593 monument,1,tamingoftheshrew,1593 gird,1,tamingoftheshrew,1593 maiden,1,tamingoftheshrew,1593 error,1,tamingoftheshrew,1593 drank,1,tamingoftheshrew,1593 secret,1,tamingoftheshrew,1593 studded,1,tamingoftheshrew,1593 Hast,1,tamingoftheshrew,1593 Youngling,1,tamingoftheshrew,1593 finely,1,tamingoftheshrew,1593 Baptists,1,tamingoftheshrew,1593 disdainful,1,tamingoftheshrew,1593 inquire,1,tamingoftheshrew,1593 Among,1,tamingoftheshrew,1593 deadly,1,tamingoftheshrew,1593 few,1,tamingoftheshrew,1593 colour'd,1,tamingoftheshrew,1593 hits,1,tamingoftheshrew,1593 fed,1,tamingoftheshrew,1593 arras,1,tamingoftheshrew,1593 Echo,1,tamingoftheshrew,1593 pricked,1,tamingoftheshrew,1593 leet,1,tamingoftheshrew,1593 shotten,1,tamingoftheshrew,1593 chides,1,tamingoftheshrew,1593 sweetly,1,tamingoftheshrew,1593 Sometimes,1,tamingoftheshrew,1593 domineer,1,tamingoftheshrew,1593 Carouse,1,tamingoftheshrew,1593 maim'd,1,tamingoftheshrew,1593 token,1,tamingoftheshrew,1593 politicly,1,tamingoftheshrew,1593 Peter's,1,tamingoftheshrew,1593 ruffling,1,tamingoftheshrew,1593 rhetoric,1,tamingoftheshrew,1593 brain'd,1,tamingoftheshrew,1593 Ask,1,tamingoftheshrew,1593 enjoy,1,tamingoftheshrew,1593 willingly,1,tamingoftheshrew,1593 lunacy,1,tamingoftheshrew,1593 guess,1,tamingoftheshrew,1593 guest,1,tamingoftheshrew,1593 having,1,tamingoftheshrew,1593 prays,1,tamingoftheshrew,1593 moves,1,tamingoftheshrew,1593 spoken,1,tamingoftheshrew,1593 scapes,1,tamingoftheshrew,1593 rope,1,tamingoftheshrew,1593 George,1,tamingoftheshrew,1593 fay,1,tamingoftheshrew,1593 execute,1,tamingoftheshrew,1593 Mates,1,tamingoftheshrew,1593 Valance,1,tamingoftheshrew,1593 borrow,1,tamingoftheshrew,1593 frenzy,1,tamingoftheshrew,1593 roof,1,tamingoftheshrew,1593 tumbling,1,tamingoftheshrew,1593 'honour',1,tamingoftheshrew,1593 Burtonheath,1,tamingoftheshrew,1593 honorato,1,tamingoftheshrew,1593 nap,1,tamingoftheshrew,1593 frozen,1,tamingoftheshrew,1593 deceiving,1,tamingoftheshrew,1593 Carthage,1,tamingoftheshrew,1593 sobriety,1,tamingoftheshrew,1593 breathes,1,tamingoftheshrew,1593 garments,1,tamingoftheshrew,1593 keeps,1,tamingoftheshrew,1593 ordnance,1,tamingoftheshrew,1593 incomparable,1,tamingoftheshrew,1593 Virtue,1,tamingoftheshrew,1593 Fiddler,1,tamingoftheshrew,1593 fiddler,1,tamingoftheshrew,1593 helping,1,tamingoftheshrew,1593 bedchamber,1,tamingoftheshrew,1593 jested,1,tamingoftheshrew,1593 Sorry,1,tamingoftheshrew,1593 honey,1,tamingoftheshrew,1593 Spoke,1,tamingoftheshrew,1593 empty,1,tamingoftheshrew,1593 tokens,1,tamingoftheshrew,1593 flouts,1,tamingoftheshrew,1593 dress'd,1,tamingoftheshrew,1593 unluckily,1,tamingoftheshrew,1593 reported,1,tamingoftheshrew,1593 Merriman,1,tamingoftheshrew,1593 hilt,1,tamingoftheshrew,1593 echoes,1,tamingoftheshrew,1593 undeserved,1,tamingoftheshrew,1593 breathed,1,tamingoftheshrew,1593 rascals,1,tamingoftheshrew,1593 discreetly,1,tamingoftheshrew,1593 bravery,1,tamingoftheshrew,1593 trimmed,1,tamingoftheshrew,1593 baby's,1,tamingoftheshrew,1593 clamour,1,tamingoftheshrew,1593 scape,1,tamingoftheshrew,1593 clapp'd,1,tamingoftheshrew,1593 taketh,1,tamingoftheshrew,1593 mountains,1,tamingoftheshrew,1593 riding,1,tamingoftheshrew,1593 built,1,tamingoftheshrew,1593 smallest,1,tamingoftheshrew,1593 Better,1,tamingoftheshrew,1593 broil'd,1,tamingoftheshrew,1593 repose,1,tamingoftheshrew,1593 fourth,1,tamingoftheshrew,1593 Hall,1,tamingoftheshrew,1593 nose,1,tamingoftheshrew,1593 midst,1,tamingoftheshrew,1593 apply,1,tamingoftheshrew,1593 curstest,1,tamingoftheshrew,1593 marks,1,tamingoftheshrew,1593 envy,1,tamingoftheshrew,1593 unmanner'd,1,tamingoftheshrew,1593 furniture,1,tamingoftheshrew,1593 bedazzled,1,tamingoftheshrew,1593 mutton,1,tamingoftheshrew,1593 Henceforth,1,tamingoftheshrew,1593 Strive,1,tamingoftheshrew,1593 penny,1,tamingoftheshrew,1593 pinch'd,1,tamingoftheshrew,1593 fretting,1,tamingoftheshrew,1593 signor,1,tamingoftheshrew,1593 knack,1,tamingoftheshrew,1593 Flourish,1,tamingoftheshrew,1593 volubility,1,tamingoftheshrew,1593 rout,1,tamingoftheshrew,1593 slipp'd,1,tamingoftheshrew,1593 beard,1,tamingoftheshrew,1593 clothe,1,tamingoftheshrew,1593 bravely,1,tamingoftheshrew,1593 estate,1,tamingoftheshrew,1593 Turph,1,tamingoftheshrew,1593 knots,1,tamingoftheshrew,1593 companions,1,tamingoftheshrew,1593 hide,1,tamingoftheshrew,1593 hawks,1,tamingoftheshrew,1593 overtake,1,tamingoftheshrew,1593 tutto,1,tamingoftheshrew,1593 'Ay,1,tamingoftheshrew,1593 austerity,1,tamingoftheshrew,1593 observed,1,tamingoftheshrew,1593 misuse,1,tamingoftheshrew,1593 bottom,1,tamingoftheshrew,1593 admire,1,tamingoftheshrew,1593 gate',1,tamingoftheshrew,1593 glasses,1,tamingoftheshrew,1593 wandering,1,tamingoftheshrew,1593 Soft,1,tamingoftheshrew,1593 likelihood,1,tamingoftheshrew,1593 Affection's,1,tamingoftheshrew,1593 Renown'd,1,tamingoftheshrew,1593 'Be,1,tamingoftheshrew,1593 perused,1,tamingoftheshrew,1593 Sit,1,tamingoftheshrew,1593 narrow,1,tamingoftheshrew,1593 mount,1,tamingoftheshrew,1593 thirsty,1,tamingoftheshrew,1593 affections,1,tamingoftheshrew,1593 skein,1,tamingoftheshrew,1593 quickly,1,tamingoftheshrew,1593 stirrups,1,tamingoftheshrew,1593 Basins,1,tamingoftheshrew,1593 staggers,1,tamingoftheshrew,1593 parsley,1,tamingoftheshrew,1593 Marseilles',1,tamingoftheshrew,1593 chine,1,tamingoftheshrew,1593 who's,1,tamingoftheshrew,1593 ignorant,1,tamingoftheshrew,1593 Set,1,tamingoftheshrew,1593 Balm,1,tamingoftheshrew,1593 misery,1,tamingoftheshrew,1593 unhappy,1,tamingoftheshrew,1593 Balk,1,tamingoftheshrew,1593 Train,1,tamingoftheshrew,1593 Vincetino,1,tamingoftheshrew,1593 schoolmasters,1,tamingoftheshrew,1593 Cicely,1,tamingoftheshrew,1593 freely,1,tamingoftheshrew,1593 quarter,1,tamingoftheshrew,1593 famous,1,tamingoftheshrew,1593 tapestry,1,tamingoftheshrew,1593 Semiramis,1,tamingoftheshrew,1593 maze,1,tamingoftheshrew,1593 withholds,1,tamingoftheshrew,1593 Loud,1,tamingoftheshrew,1593 precious,1,tamingoftheshrew,1593 grateful,1,tamingoftheshrew,1593 unusual,1,tamingoftheshrew,1593 soundly',1,tamingoftheshrew,1593 unprovided,1,tamingoftheshrew,1593 mourn,1,tamingoftheshrew,1593 Knows,1,tamingoftheshrew,1593 discontent,1,tamingoftheshrew,1593 attire,1,tamingoftheshrew,1593 gorged,1,tamingoftheshrew,1593 commune,1,tamingoftheshrew,1593 Evermore,1,tamingoftheshrew,1593 Graybeard,1,tamingoftheshrew,1593 'He,1,tamingoftheshrew,1593 mortal,1,tamingoftheshrew,1593 other's,1,tamingoftheshrew,1593 stare,1,tamingoftheshrew,1593 Richard,1,tamingoftheshrew,1593 elsewhere,1,tamingoftheshrew,1593 sessa,1,tamingoftheshrew,1593 Long,1,tamingoftheshrew,1593 spruce,1,tamingoftheshrew,1593 yellows,1,tamingoftheshrew,1593 Joseph,1,tamingoftheshrew,1593 teeth,1,tamingoftheshrew,1593 bleeds,1,tamingoftheshrew,1593 protesting,1,tamingoftheshrew,1593 rehearsed,1,tamingoftheshrew,1593 qualities,1,tamingoftheshrew,1593 prize,1,tamingoftheshrew,1593 conclusion,1,tamingoftheshrew,1593 kisses,1,tamingoftheshrew,1593 housekeeping,1,tamingoftheshrew,1593 escape,1,tamingoftheshrew,1593 Persuade,1,tamingoftheshrew,1593 Sufficeth,1,tamingoftheshrew,1593 slash,1,tamingoftheshrew,1593 Barthol'mew,1,tamingoftheshrew,1593 vent,1,tamingoftheshrew,1593 rests,1,tamingoftheshrew,1593 beads,1,tamingoftheshrew,1593 Costly,1,tamingoftheshrew,1593 wrought,1,tamingoftheshrew,1593 keeper,1,tamingoftheshrew,1593 successfully,1,tamingoftheshrew,1593 malt,1,tamingoftheshrew,1593 Sugarsop,1,tamingoftheshrew,1593 belong,1,tamingoftheshrew,1593 'gainst,1,tamingoftheshrew,1593 Could,1,tamingoftheshrew,1593 curtsy,1,tamingoftheshrew,1593 skin,1,tamingoftheshrew,1593 tents,1,tamingoftheshrew,1593 overblown,1,tamingoftheshrew,1593 annoy'd,1,tamingoftheshrew,1593 velure,1,tamingoftheshrew,1593 throughout,1,tamingoftheshrew,1593 mart,1,tamingoftheshrew,1593 comet,1,tamingoftheshrew,1593 thick,1,tamingoftheshrew,1593 fountain,1,tamingoftheshrew,1593 Son,1,tamingoftheshrew,1593 let't,1,tamingoftheshrew,1593 woe,1,tamingoftheshrew,1593 Marian,1,tamingoftheshrew,1593 devils,1,tamingoftheshrew,1593 hawking,1,tamingoftheshrew,1593 carpets,1,tamingoftheshrew,1593 habiliments,1,tamingoftheshrew,1593 quench,1,tamingoftheshrew,1593 combless,1,tamingoftheshrew,1593 Flies,1,tamingoftheshrew,1593 Ferdinand,1,tamingoftheshrew,1593 starved,1,tamingoftheshrew,1593 miry,1,tamingoftheshrew,1593 craves,1,tamingoftheshrew,1593 chafe,1,tamingoftheshrew,1593 greatest,1,tamingoftheshrew,1593 painful,1,tamingoftheshrew,1593 Soto,1,tamingoftheshrew,1593 beside,1,tamingoftheshrew,1593 Antonio,1,tamingoftheshrew,1593 nit,1,tamingoftheshrew,1593 craven,1,tamingoftheshrew,1593 heaven's,1,tamingoftheshrew,1593 nip,1,tamingoftheshrew,1593 miss,1,tamingoftheshrew,1593 assisting,1,tamingoftheshrew,1593 fret,1,tamingoftheshrew,1593 seal'd,1,tamingoftheshrew,1593 threatening,1,tamingoftheshrew,1593 peremptory,1,tamingoftheshrew,1593 Agenor,1,tamingoftheshrew,1593 stags,1,tamingoftheshrew,1593 repaired,1,tamingoftheshrew,1593 worthless,1,tamingoftheshrew,1593 abandon'd,1,tamingoftheshrew,1593 Being,1,tamingoftheshrew,1593 Whatever,1,tamingoftheshrew,1593 letters,1,tamingoftheshrew,1593 Sacred,1,tamingoftheshrew,1593 ceremonies,1,tamingoftheshrew,1593 ingrate,1,tamingoftheshrew,1593 mockery,1,tamingoftheshrew,1593 Horns,1,tamingoftheshrew,1593 trouble,1,tamingoftheshrew,1593 Huntsmen,1,tamingoftheshrew,1593 sayest,1,tamingoftheshrew,1593 Rome,1,tamingoftheshrew,1593 louder,1,tamingoftheshrew,1593 celsa,1,tamingoftheshrew,1593 possession,1,tamingoftheshrew,1593 bolster,1,tamingoftheshrew,1593 Lombardy,1,tamingoftheshrew,1593 disfigure,1,tamingoftheshrew,1593 woodcock,1,tamingoftheshrew,1593 fray,1,tamingoftheshrew,1593 milder,1,tamingoftheshrew,1593 stall,1,tamingoftheshrew,1593 curiously,1,tamingoftheshrew,1593 same,1,tamingoftheshrew,1593 Bergamo,1,tamingoftheshrew,1593 taste,1,tamingoftheshrew,1593 pause,1,tamingoftheshrew,1593 opinion,1,tamingoftheshrew,1593 'Twixt,1,tamingoftheshrew,1593 AEacides,1,tamingoftheshrew,1593 neat,1,tamingoftheshrew,1593 merits,1,tamingoftheshrew,1593 Intolerable,1,tamingoftheshrew,1593 carefully,1,tamingoftheshrew,1593 abate,1,tamingoftheshrew,1593 retire,1,tamingoftheshrew,1593 napping,1,tamingoftheshrew,1593 knock'd,1,tamingoftheshrew,1593 banishment,1,tamingoftheshrew,1593 wis,1,tamingoftheshrew,1593 Adriatic,1,tamingoftheshrew,1593 Confess,1,tamingoftheshrew,1593 Braved,1,tamingoftheshrew,1593 experience,1,tamingoftheshrew,1593 discipline,1,tamingoftheshrew,1593 sides,1,tamingoftheshrew,1593 stamp,1,tamingoftheshrew,1593 five,1,tamingoftheshrew,1593 whirlwinds,1,tamingoftheshrew,1593 oft,1,tamingoftheshrew,1593 scatters,1,tamingoftheshrew,1593 Unapt,1,tamingoftheshrew,1593 Went,1,tamingoftheshrew,1593 ceremonial,1,tamingoftheshrew,1593 arrival,1,tamingoftheshrew,1593 'Lo,1,tamingoftheshrew,1593 thoroughly,1,tamingoftheshrew,1593 sorrow,1,tamingoftheshrew,1593 'Twill,1,tamingoftheshrew,1593 curb,1,tamingoftheshrew,1593 cure,1,tamingoftheshrew,1593 footboy,1,tamingoftheshrew,1593 publish'd,1,tamingoftheshrew,1593 import,1,tamingoftheshrew,1593 heath,1,tamingoftheshrew,1593 Procure,1,tamingoftheshrew,1593 happiness,1,tamingoftheshrew,1593 Sixscore,1,tamingoftheshrew,1593 traffic,1,tamingoftheshrew,1593 bandy,1,tamingoftheshrew,1593 beastly,1,tamingoftheshrew,1593 waking,1,tamingoftheshrew,1593 meaner,1,tamingoftheshrew,1593 sermon,1,tamingoftheshrew,1593 coxcomb,1,tamingoftheshrew,1593 bestow'd,1,tamingoftheshrew,1593 lightness,1,tamingoftheshrew,1593 detain'd,1,tamingoftheshrew,1593 Saw,1,tamingoftheshrew,1593 quicken,1,tamingoftheshrew,1593 walls,1,tamingoftheshrew,1593 hearkening,1,tamingoftheshrew,1593 falcon,1,tamingoftheshrew,1593 choked,1,tamingoftheshrew,1593 alarums,1,tamingoftheshrew,1593 standing,1,tamingoftheshrew,1593 Construe,1,tamingoftheshrew,1593 They're,1,tamingoftheshrew,1593 you're,1,tamingoftheshrew,1593 remains,1,tamingoftheshrew,1593 nursery,1,tamingoftheshrew,1593 speeding,1,tamingoftheshrew,1593 'supposed,1,tamingoftheshrew,1593 'Simois,1,tamingoftheshrew,1593 maidenhead,1,tamingoftheshrew,1593 trance,1,tamingoftheshrew,1593 renown'd,1,tamingoftheshrew,1593 fling,1,tamingoftheshrew,1593 Suitors,1,tamingoftheshrew,1593 Think,1,tamingoftheshrew,1593 stumbling,1,tamingoftheshrew,1593 'The,1,tamingoftheshrew,1593 stage,1,tamingoftheshrew,1593 mould,1,tamingoftheshrew,1593 able,1,tamingoftheshrew,1593 rise,1,tamingoftheshrew,1593 tuned,1,tamingoftheshrew,1593 Remove,1,tamingoftheshrew,1593 intent,1,tamingoftheshrew,1593 fancies',1,tamingoftheshrew,1593 oats,1,tamingoftheshrew,1593 themselves,1,tamingoftheshrew,1593 arts,1,tamingoftheshrew,1593 lure,1,tamingoftheshrew,1593 Hiding,1,tamingoftheshrew,1593 'leges,1,tamingoftheshrew,1593 Confounds,1,tamingoftheshrew,1593 nightingales,1,tamingoftheshrew,1593 bereft,1,tamingoftheshrew,1593 Spit,1,tamingoftheshrew,1593 Cretan,1,tamingoftheshrew,1593 moonlight,1,tamingoftheshrew,1593 complain,1,tamingoftheshrew,1593 pounds,1,tamingoftheshrew,1593 Sister,1,tamingoftheshrew,1593 cushions,1,tamingoftheshrew,1593 belly,1,tamingoftheshrew,1593 Throws,1,tamingoftheshrew,1593 pence,1,tamingoftheshrew,1593 survive,1,tamingoftheshrew,1593 stoop'd,1,tamingoftheshrew,1593 festival,1,tamingoftheshrew,1593 caught,1,tamingoftheshrew,1593 galliases,1,tamingoftheshrew,1593 hair,1,tamingoftheshrew,1593 sweets,1,tamingoftheshrew,1593 mightily,1,tamingoftheshrew,1593 surprised,1,tamingoftheshrew,1593 chiders,1,tamingoftheshrew,1593 faces,1,tamingoftheshrew,1593 Greece,1,tamingoftheshrew,1593 oblivion,1,tamingoftheshrew,1593 watery,1,tamingoftheshrew,1593 Heaven,1,tamingoftheshrew,1593 takes,1,tamingoftheshrew,1593 dainties,1,tamingoftheshrew,1593 fallen,1,tamingoftheshrew,1593 conference,1,tamingoftheshrew,1593 HORTENSIO'S,1,tamingoftheshrew,1593 rotten,1,tamingoftheshrew,1593 listening,1,tamingoftheshrew,1593 keeper's,1,tamingoftheshrew,1593 Thinkest,1,tamingoftheshrew,1593 angel,1,tamingoftheshrew,1593 fondly,1,tamingoftheshrew,1593 weeping,1,tamingoftheshrew,1593 owe,1,tamingoftheshrew,1593 droop,1,tamingoftheshrew,1593 rain,1,tamingoftheshrew,1593 Plead,1,tamingoftheshrew,1593 cups,1,tamingoftheshrew,1593 waters,1,tamingoftheshrew,1593 Maid's,1,tamingoftheshrew,1593 fry,1,tamingoftheshrew,1593 serves,1,tamingoftheshrew,1593 skills,1,tamingoftheshrew,1593 fox,1,tamingoftheshrew,1593 beguiled,1,tamingoftheshrew,1593 uttermost,1,tamingoftheshrew,1593 stepp'd,1,tamingoftheshrew,1593 SERVING,1,tamingoftheshrew,1593 went,1,tamingoftheshrew,1593 asketh,1,tamingoftheshrew,1593 consolation,1,tamingoftheshrew,1593 fail,1,tamingoftheshrew,1593 gifts,1,tamingoftheshrew,1593 cricket,1,tamingoftheshrew,1593 compare,1,tamingoftheshrew,1593 fain,1,tamingoftheshrew,1593 wholesome,1,tamingoftheshrew,1593 dispatch'd,1,tamingoftheshrew,1593 lustful,1,tamingoftheshrew,1593 Swear,1,tamingoftheshrew,1593 pheeze,1,tamingoftheshrew,1593 'if,1,tamingoftheshrew,1593 pedlar,1,tamingoftheshrew,1593 diseases,1,tamingoftheshrew,1593 molto,1,tamingoftheshrew,1593 Thither,1,tamingoftheshrew,1593 doublet,1,tamingoftheshrew,1593 sportful,1,tamingoftheshrew,1593 clef,1,tamingoftheshrew,1593 Brother,1,tamingoftheshrew,1593 Vincetino's,1,tamingoftheshrew,1593 saint,1,tamingoftheshrew,1593 begnawn,1,tamingoftheshrew,1593 deluding,1,tamingoftheshrew,1593 amends,1,tamingoftheshrew,1593 wander,1,tamingoftheshrew,1593 mourns,1,tamingoftheshrew,1593 Call'd,1,tamingoftheshrew,1593 fame,1,tamingoftheshrew,1593 silly,1,tamingoftheshrew,1593 kites,1,tamingoftheshrew,1593 uttereth,1,tamingoftheshrew,1593 threw,1,tamingoftheshrew,1593 fly,1,tamingoftheshrew,1593 clerk,1,tamingoftheshrew,1593 roses,1,tamingoftheshrew,1593 husbanded,1,tamingoftheshrew,1593 lodged,1,tamingoftheshrew,1593 ride,1,tamingoftheshrew,1593 Roundly,1,tamingoftheshrew,1593 fans,1,tamingoftheshrew,1593 'em,1,tamingoftheshrew,1593 esteem'd,1,tamingoftheshrew,1593 Sorrow,1,tamingoftheshrew,1593 perfect,1,tamingoftheshrew,1593 Supposing,1,tamingoftheshrew,1593 fill,1,tamingoftheshrew,1593 glances,1,tamingoftheshrew,1593 affied,1,tamingoftheshrew,1593 bridegroom's,1,tamingoftheshrew,1593 barber's,1,tamingoftheshrew,1593 friar,1,tamingoftheshrew,1593 buckled,1,tamingoftheshrew,1593 external,1,tamingoftheshrew,1593 brushed,1,tamingoftheshrew,1593 buckler,1,tamingoftheshrew,1593 Imagine,1,tamingoftheshrew,1593 dotard,1,tamingoftheshrew,1593 barn,1,tamingoftheshrew,1593 thereby,1,tamingoftheshrew,1593 Near,1,tamingoftheshrew,1593 unexperienced,1,tamingoftheshrew,1593 minded,1,tamingoftheshrew,1593 bare,1,tamingoftheshrew,1593 meddle,1,tamingoftheshrew,1593 arrogance,1,tamingoftheshrew,1593 masquing,1,tamingoftheshrew,1593 vex,1,tamingoftheshrew,1593 smooth,1,tamingoftheshrew,1593 queen,1,tamingoftheshrew,1593 Measures,1,tamingoftheshrew,1593 beware,1,tamingoftheshrew,1593 betters,1,tamingoftheshrew,1593 wives,1,tamingoftheshrew,1593 bate,1,tamingoftheshrew,1593 whither,1,tamingoftheshrew,1593 Glad,1,tamingoftheshrew,1593 boss'd,1,tamingoftheshrew,1593 watch'd,1,tamingoftheshrew,1593 bars,1,tamingoftheshrew,1593 hour,1,tamingoftheshrew,1593 incur,1,tamingoftheshrew,1593 strikes,1,tamingoftheshrew,1593 thanked,1,tamingoftheshrew,1593 mouth'd,1,tamingoftheshrew,1593 Knocks,1,tamingoftheshrew,1593 Trembled,1,tamingoftheshrew,1593 slanderous,1,tamingoftheshrew,1593 peereth,1,tamingoftheshrew,1593 helding,1,tamingoftheshrew,1593 devote,1,tamingoftheshrew,1593 Very,1,tamingoftheshrew,1593 Officer,1,tamingoftheshrew,1593 Visit,1,tamingoftheshrew,1593 weakness,1,tamingoftheshrew,1593 names,1,tamingoftheshrew,1593 trapp'd,1,tamingoftheshrew,1593 Sibyl,1,tamingoftheshrew,1593 named,1,tamingoftheshrew,1593 Each,1,tamingoftheshrew,1593 fare,1,tamingoftheshrew,1593 surly,1,tamingoftheshrew,1593 waded,1,tamingoftheshrew,1593 favourable,1,tamingoftheshrew,1593 farm,1,tamingoftheshrew,1593 gallant,1,tamingoftheshrew,1593 tall,1,tamingoftheshrew,1593 coat,1,tamingoftheshrew,1593 Listen,1,tamingoftheshrew,1593 accoutrements,1,tamingoftheshrew,1593 Beloved,1,tamingoftheshrew,1593 reckon'd,1,tamingoftheshrew,1593 amiable,1,tamingoftheshrew,1593 man's,1,tamingoftheshrew,1593 welcomed,1,tamingoftheshrew,1593 Christmas,1,tamingoftheshrew,1593 Error,1,tamingoftheshrew,1593 'Sigeia,1,tamingoftheshrew,1593 aloft,1,tamingoftheshrew,1593 tart,1,tamingoftheshrew,1593 fresher,1,tamingoftheshrew,1593 whatsoe'er,1,tamingoftheshrew,1593 otherwise,1,tamingoftheshrew,1593 compassed,1,tamingoftheshrew,1593 Henry,1,tamingoftheshrew,1593 given,1,tamingoftheshrew,1593 Trust,1,tamingoftheshrew,1593 jests,1,tamingoftheshrew,1593 Worse,1,tamingoftheshrew,1593 Socrates',1,tamingoftheshrew,1593 lampass,1,tamingoftheshrew,1593 intolerable,1,tamingoftheshrew,1593 Assist,1,tamingoftheshrew,1593 refresh,1,tamingoftheshrew,1593 tutors,1,tamingoftheshrew,1593 openly,1,tamingoftheshrew,1593 trumpets',1,tamingoftheshrew,1593 'lordship,1,tamingoftheshrew,1593 pledge,1,tamingoftheshrew,1593 shook,1,tamingoftheshrew,1593 Travel,1,tamingoftheshrew,1593 jogging,1,tamingoftheshrew,1593 swears,1,tamingoftheshrew,1593 kersey,1,tamingoftheshrew,1593 quit,1,tamingoftheshrew,1593 short,1,tamingoftheshrew,1593 clear,1,tamingoftheshrew,1593 portion,1,tamingoftheshrew,1593 hole,1,tamingoftheshrew,1593 mothy,1,tamingoftheshrew,1593 greyhounds,1,tamingoftheshrew,1593 dozen,1,tamingoftheshrew,1593 sciences,1,tamingoftheshrew,1593 Cunning,1,tamingoftheshrew,1593 MEN,1,tamingoftheshrew,1593 unknit,1,tamingoftheshrew,1593 hollow,1,tamingoftheshrew,1593 Lives,1,tamingoftheshrew,1593 cur,1,tamingoftheshrew,1593 covenants,1,tamingoftheshrew,1593 follows,1,tamingoftheshrew,1593 Although,1,tamingoftheshrew,1593 Alcides',1,tamingoftheshrew,1593 'cerns,1,tamingoftheshrew,1593 feasts,1,tamingoftheshrew,1593 fires,1,tamingoftheshrew,1593 HORTENSIA,1,tamingoftheshrew,1593 oyster,1,tamingoftheshrew,1593 schools,1,tamingoftheshrew,1593 widowhood,1,tamingoftheshrew,1593 asking,1,tamingoftheshrew,1593 decreased,1,tamingoftheshrew,1593 assist,1,tamingoftheshrew,1593 depth,1,tamingoftheshrew,1593 discomfited,1,tamingoftheshrew,1593 amounts,1,tamingoftheshrew,1593 lives,1,tamingoftheshrew,1593 streets,1,tamingoftheshrew,1593 rabbit,1,tamingoftheshrew,1593 remnant,1,tamingoftheshrew,1593 queas,1,tamingoftheshrew,1593 writing,1,tamingoftheshrew,1593 resolution,1,tamingoftheshrew,1593 virtues,1,tamingoftheshrew,1593 seal,1,tamingoftheshrew,1593 Kindness,1,tamingoftheshrew,1593 favours,1,tamingoftheshrew,1593 gives,1,tamingoftheshrew,1593 choler,1,tamingoftheshrew,1593 thrall'd,1,tamingoftheshrew,1593 goodman,1,tamingoftheshrew,1593 fitted,1,tamingoftheshrew,1593 Seize,1,tamingoftheshrew,1593 Anon,1,tamingoftheshrew,1593 packthread,1,tamingoftheshrew,1593 hearts,1,tamingoftheshrew,1593 satisfied,1,tamingoftheshrew,1593 manage,1,tamingoftheshrew,1593 abject,1,tamingoftheshrew,1593 hung,1,tamingoftheshrew,1593 perils,1,tamingoftheshrew,1593 perfumed,1,tamingoftheshrew,1593 beset,1,tamingoftheshrew,1593 fourteen,1,tamingoftheshrew,1593 Trow,1,tamingoftheshrew,1593 cool,1,tamingoftheshrew,1593 lying,1,tamingoftheshrew,1593 briefer,1,tamingoftheshrew,1593 attendance,1,tamingoftheshrew,1593 Anne,1,tamingoftheshrew,1593 Anna,1,tamingoftheshrew,1593 favour'd,1,tamingoftheshrew,1593 fairer,1,tamingoftheshrew,1593 packet,1,tamingoftheshrew,1593 sweat,1,tamingoftheshrew,1593 womankind,1,tamingoftheshrew,1593 Binaca,1,tamingoftheshrew,1593 drunk,1,tamingoftheshrew,1593 daunt,1,tamingoftheshrew,1593 serviceable,1,tamingoftheshrew,1593 expound,1,tamingoftheshrew,1593 aglet,1,tamingoftheshrew,1593 suits,1,tamingoftheshrew,1593 quaff'd,1,tamingoftheshrew,1593 baby,1,tamingoftheshrew,1593 reckoning,1,tamingoftheshrew,1593 insolence,1,tamingoftheshrew,1593 quam,1,tamingoftheshrew,1593 aught,1,tamingoftheshrew,1593 sexton's,1,tamingoftheshrew,1593 comb,1,tamingoftheshrew,1593 knowest,1,tamingoftheshrew,1593 talking,1,tamingoftheshrew,1593 presence,1,tamingoftheshrew,1593 bracelets,1,tamingoftheshrew,1593 'Priami,1,tamingoftheshrew,1593 gold's,1,tamingoftheshrew,1593 ear'd,1,tamingoftheshrew,1593 unkindness,1,tamingoftheshrew,1593 supposed,1,tamingoftheshrew,1593 faded,1,tamingoftheshrew,1593 marvellous,1,tamingoftheshrew,1593 coy,1,tamingoftheshrew,1593 supposes,1,tamingoftheshrew,1593 sees,1,tamingoftheshrew,1593 pick'd,1,tamingoftheshrew,1593 drunken,1,tamingoftheshrew,1593 conclude,1,tamingoftheshrew,1593 pricks,1,tamingoftheshrew,1593 presenters,1,tamingoftheshrew,1593 condition,1,tamingoftheshrew,1593 cost,1,tamingoftheshrew,1593 kennel,1,tamingoftheshrew,1593 battle,1,tamingoftheshrew,1593 spangle,1,tamingoftheshrew,1593 hound,1,tamingoftheshrew,1593 crest,1,tamingoftheshrew,1593 simile,1,tamingoftheshrew,1593 Beggars,1,tamingoftheshrew,1593 setting,1,tamingoftheshrew,1593 ranging,1,tamingoftheshrew,1593 traitor,1,tamingoftheshrew,1593 replied,1,tamingoftheshrew,1593 transmutation,1,tamingoftheshrew,1593 ruffs,1,tamingoftheshrew,1593 thrust,1,tamingoftheshrew,1593 preferment,1,tamingoftheshrew,1593 changing,1,tamingoftheshrew,1593 hearken,1,tamingoftheshrew,1593 stoics,1,tamingoftheshrew,1593 diaper,1,tamingoftheshrew,1593 Obey,1,tamingoftheshrew,1593 deign,1,tamingoftheshrew,1593 scrivener,1,tamingoftheshrew,1593 He'll,1,tamingoftheshrew,1593 'twill,1,tamingoftheshrew,1593 loveth,1,tamingoftheshrew,1593 eyne,1,tamingoftheshrew,1593 nourisheth,1,tamingoftheshrew,1593 jointure,1,tamingoftheshrew,1593 contributors,1,tamingoftheshrew,1593 chests,1,tamingoftheshrew,1593 million,1,tamingoftheshrew,1593 Voice,1,tamingoftheshrew,1593 motion's,1,tamingoftheshrew,1593 outcast,1,tamingoftheshrew,1593 jolly,1,tamingoftheshrew,1593 countrymen,1,tamingoftheshrew,1593 suffice,1,tamingoftheshrew,1593 awaken'd,1,tamingoftheshrew,1593 Send,1,tamingoftheshrew,1593 extremes,1,tamingoftheshrew,1593 parentage,1,tamingoftheshrew,1593 secure,1,tamingoftheshrew,1593 infused,1,tamingoftheshrew,1593 self,1,tamingoftheshrew,1593 gusts,1,tamingoftheshrew,1593 prying,1,tamingoftheshrew,1593 Conqueror,1,tamingoftheshrew,1593 Moved,1,tamingoftheshrew,1593 floods,1,tamingoftheshrew,1593 groweth,1,tamingoftheshrew,1593 Just,1,tamingoftheshrew,1593 workmanly,1,tamingoftheshrew,1593 cases,1,tamingoftheshrew,1593 Ralph,1,tamingoftheshrew,1593 see'st,1,tamingoftheshrew,1593 rudiments,1,tamingoftheshrew,1593 leg,1,tamingoftheshrew,1593 sheeps,1,tamingoftheshrew,1593 led,1,tamingoftheshrew,1593 Belman,1,tamingoftheshrew,1593 mated,1,tamingoftheshrew,1593 mother's,1,tamingoftheshrew,1593 porringer,1,tamingoftheshrew,1593 Basta,1,tamingoftheshrew,1593 ordain'd,1,tamingoftheshrew,1593 hailed,1,tamingoftheshrew,1593 bade,1,tamingoftheshrew,1593 censer,1,tamingoftheshrew,1593 nurse,1,tamingoftheshrew,1593 Roman,1,tamingoftheshrew,1593 deceive,1,tamingoftheshrew,1593 Feast,1,tamingoftheshrew,1593 greeting,1,tamingoftheshrew,1593 herald,1,tamingoftheshrew,1593 paucas,1,tamingoftheshrew,1593 wrangling,1,tamingoftheshrew,1593 format,1,tamingoftheshrew,1593 plunge,1,tamingoftheshrew,1593 Rage,1,tamingoftheshrew,1593 formal,1,tamingoftheshrew,1593 fearing,1,tamingoftheshrew,1593 sickness,1,tamingoftheshrew,1593 purpose,1,tamingoftheshrew,1593 currish,1,tamingoftheshrew,1593 Clowder,1,tamingoftheshrew,1593 invite,1,tamingoftheshrew,1593 lip,1,tamingoftheshrew,1593 gogs,1,tamingoftheshrew,1593 Mistrust,1,tamingoftheshrew,1593 sheets,1,tamingoftheshrew,1593 Hearing,1,tamingoftheshrew,1593 bags,1,tamingoftheshrew,1593 budding,1,tamingoftheshrew,1593 untie,1,tamingoftheshrew,1593 triumph,1,tamingoftheshrew,1593 until,1,tamingoftheshrew,1593 Two,1,tamingoftheshrew,1593 trot,1,tamingoftheshrew,1593 trow,1,tamingoftheshrew,1593 brow,1,tamingoftheshrew,1593 credulous,1,tamingoftheshrew,1593 storms,1,tamingoftheshrew,1593 frantic,1,tamingoftheshrew,1593 beareth,1,tamingoftheshrew,1593 Nothing,1,tamingoftheshrew,1593 effects,1,tamingoftheshrew,1593 amid,1,tamingoftheshrew,1593 perpetually,1,tamingoftheshrew,1593 fustian,1,tamingoftheshrew,1593 persuade,1,tamingoftheshrew,1593 Silver,1,tamingoftheshrew,1593 commits,1,tamingoftheshrew,1593 mar,1,tamingoftheshrew,1593 spirits,1,tamingoftheshrew,1593 Walter's,1,tamingoftheshrew,1593 needlework,1,tamingoftheshrew,1593 overjoy'd,1,tamingoftheshrew,1593 vicar,1,tamingoftheshrew,1593 peat,1,tamingoftheshrew,1593 sounded,1,tamingoftheshrew,1593 dulcet,1,tamingoftheshrew,1593 successful,1,tamingoftheshrew,1593 construe,1,tamingoftheshrew,1593 maintained,1,tamingoftheshrew,1593 o'Sunday,1,tamingoftheshrew,1593 Gave,1,tamingoftheshrew,1593 darkest,1,tamingoftheshrew,1593 spite,1,tamingoftheshrew,1593 abroad,1,tamingoftheshrew,1593 conduct,1,tamingoftheshrew,1593 obeisance,1,tamingoftheshrew,1593 hostess,1,tamingoftheshrew,1593 unlike,1,tamingoftheshrew,1593 forced,1,tamingoftheshrew,1593 eel,1,tamingoftheshrew,1593 begins,1,tamingoftheshrew,1593 steeds,1,tamingoftheshrew,1593 Paris,1,tamingoftheshrew,1593 doing,1,tamingoftheshrew,1593 spavins,1,tamingoftheshrew,1593 poesy,1,tamingoftheshrew,1593 tails,1,tamingoftheshrew,1593 inferior,1,tamingoftheshrew,1593 chosen,1,tamingoftheshrew,1593 mew,1,tamingoftheshrew,1593 readiness,1,tamingoftheshrew,1593 According,1,tamingoftheshrew,1593 Rise,1,tamingoftheshrew,1593 stirrup,1,tamingoftheshrew,1593 fatherly,1,tamingoftheshrew,1593 sovereign,1,tamingoftheshrew,1593 pallabris,1,tamingoftheshrew,1593 street,1,tamingoftheshrew,1593 'I'll,1,tamingoftheshrew,1593 lectures,1,tamingoftheshrew,1593 digress,1,tamingoftheshrew,1593 Turkey,1,tamingoftheshrew,1593 heartily,1,tamingoftheshrew,1593 flea,1,tamingoftheshrew,1593 Neighbours,1,tamingoftheshrew,1593 bethink,1,tamingoftheshrew,1593 concerneth,1,tamingoftheshrew,1593 crafty,1,tamingoftheshrew,1593 solum,1,tamingoftheshrew,1593 eleven,1,tamingoftheshrew,1593 wound,1,tamingoftheshrew,1593 carouses,1,tamingoftheshrew,1593 parlor,1,tamingoftheshrew,1593 'Madam,1,tamingoftheshrew,1593 Muddy,1,tamingoftheshrew,1593 homage,1,tamingoftheshrew,1593 Adonis,1,tamingoftheshrew,1593 E'en,1,tamingoftheshrew,1593 telling,1,tamingoftheshrew,1593 wouns,1,tamingoftheshrew,1593 ewers,1,tamingoftheshrew,1593 flat,1,tamingoftheshrew,1593 caparisoned,1,tamingoftheshrew,1593 flap,1,tamingoftheshrew,1593 saddles,1,tamingoftheshrew,1593 bestrew'd,1,tamingoftheshrew,1593 conferring,1,tamingoftheshrew,1593 fardingales,1,tamingoftheshrew,1593 'point,1,tamingoftheshrew,1593 CHRISTOPHER,1,tamingoftheshrew,1593 Sings,1,tamingoftheshrew,1593 better'd,1,tamingoftheshrew,1593 commonly,1,tamingoftheshrew,1593 lodgers,1,tamingoftheshrew,1593 frivolous,1,tamingoftheshrew,1593 Eat,1,tamingoftheshrew,1593 Aristotle's,1,tamingoftheshrew,1593 Gabriel's,1,tamingoftheshrew,1593 gets,1,tamingoftheshrew,1593 silver,1,tamingoftheshrew,1593 knave's,1,tamingoftheshrew,1593 harms,1,tamingoftheshrew,1593 lave,1,tamingoftheshrew,1593 breeching,1,tamingoftheshrew,1593 ragged,1,tamingoftheshrew,1593 nature,1,tamingoftheshrew,1593 Lend,1,tamingoftheshrew,1593 Crowns,1,tamingoftheshrew,1593 bias,1,tamingoftheshrew,1593 entreaty,1,tamingoftheshrew,1593 going,1,tamingoftheshrew,1593 despiteful,1,tamingoftheshrew,1593 witty,1,tamingoftheshrew,1593 spring,1,tamingoftheshrew,1593 entrance,1,tamingoftheshrew,1593 risen,1,tamingoftheshrew,1593 gartered,1,tamingoftheshrew,1593 lover's,1,tamingoftheshrew,1593 You'll,1,tamingoftheshrew,1593 payment,1,tamingoftheshrew,1593 nuts,1,tamingoftheshrew,1593 institute,1,tamingoftheshrew,1593 careless,1,tamingoftheshrew,1593 laid,1,tamingoftheshrew,1593 discovered,1,tamingoftheshrew,1593 Face,1,tamingoftheshrew,1593 asleep,1,tamingoftheshrew,1593 instructions,1,tamingoftheshrew,1593 dart,1,tamingoftheshrew,1593 princely,1,tamingoftheshrew,1593 nightingale,1,tamingoftheshrew,1593 losses,1,tamingoftheshrew,1593 honour's,1,tamingoftheshrew,1593 famish,1,tamingoftheshrew,1593 Falls,1,tamingoftheshrew,1593 maintenance,1,tamingoftheshrew,1593 Lest,1,tamingoftheshrew,1593 Gentles,1,tamingoftheshrew,1593 logic,1,tamingoftheshrew,1593 weight,1,tamingoftheshrew,1593 He's,1,tamingoftheshrew,1593 Grissel,1,tamingoftheshrew,1593 lane,1,tamingoftheshrew,1593 pillory,1,tamingoftheshrew,1593 ivory,1,tamingoftheshrew,1593 roasted,1,tamingoftheshrew,1593 dry,1,tamingoftheshrew,1593 plucking,1,tamingoftheshrew,1593 lamb,1,tamingoftheshrew,1593 needed,1,tamingoftheshrew,1593 DRAMATIS,1,tamingoftheshrew,1593 inches,1,tamingoftheshrew,1593 Until,1,tamingoftheshrew,1593 guests,1,tamingoftheshrew,1593 filthy,1,tamingoftheshrew,1593 propose,1,tamingoftheshrew,1593 answerable,1,tamingoftheshrew,1593 prerogative,1,tamingoftheshrew,1593 armed,1,tamingoftheshrew,1593 sweeting,1,tamingoftheshrew,1593 dame,1,tamingoftheshrew,1593 largess,1,tamingoftheshrew,1593 Left,1,tamingoftheshrew,1593 quietly,1,tamingoftheshrew,1593 entreated,1,tamingoftheshrew,1593 cakes,1,tamingoftheshrew,1593 Kneeling,1,tamingoftheshrew,1593 Affection,1,tamingoftheshrew,1593 smell,1,tamingoftheshrew,1593 dew,1,tamingoftheshrew,1593 gentler,1,tamingoftheshrew,1593 king,1,tamingoftheshrew,1593 strewed,1,tamingoftheshrew,1593 private,1,tamingoftheshrew,1593 kine,1,tamingoftheshrew,1593 dwelling,1,tamingoftheshrew,1593 possessions,1,tamingoftheshrew,1593 wenches,1,tamingoftheshrew,1593 mio,1,tamingoftheshrew,1593 repaid,1,tamingoftheshrew,1593 slip,1,tamingoftheshrew,1593 emboss'd,1,tamingoftheshrew,1593 slit,1,tamingoftheshrew,1593 'Will't,1,tamingoftheshrew,1593 buttery,1,tamingoftheshrew,1593 Fall,1,tamingoftheshrew,1593 kill,1,tamingoftheshrew,1593 cannon,1,tamingoftheshrew,1593 forbear,1,tamingoftheshrew,1593 repair,1,tamingoftheshrew,1593 'mongst,1,tamingoftheshrew,1593 Fine,1,tamingoftheshrew,1593 flattering,1,tamingoftheshrew,1593 oaths,1,tamingoftheshrew,1593 bids,1,tamingoftheshrew,1593 lack,1,tamingoftheshrew,1593 petticoat,1,tamingoftheshrew,1593 market,1,tamingoftheshrew,1593 Thrice,1,tamingoftheshrew,1593 hunting,1,tamingoftheshrew,1593 cardmaker,1,tamingoftheshrew,1593 privately,1,tamingoftheshrew,1593 direction,1,tamingoftheshrew,1593 merchant's,1,tamingoftheshrew,1593 Florentine,1,tamingoftheshrew,1593 offer'st,1,tamingoftheshrew,1593 'Frets,1,tamingoftheshrew,1593 share,1,tamingoftheshrew,1593 ships,1,tamingoftheshrew,1593 'Redime,1,tamingoftheshrew,1593 presumes,1,tamingoftheshrew,1593 sharp,1,tamingoftheshrew,1593 Brach,1,tamingoftheshrew,1593 degrees,1,tamingoftheshrew,1593 hedge,1,tamingoftheshrew,1593 sway,1,tamingoftheshrew,1593 busied,1,tamingoftheshrew,1593 heed,2,tamingoftheshrew,1593 heel,2,tamingoftheshrew,1593 sleeve,2,tamingoftheshrew,1593 regard,2,tamingoftheshrew,1593 villany,2,tamingoftheshrew,1593 lusty,2,tamingoftheshrew,1593 instruments,2,tamingoftheshrew,1593 moral,2,tamingoftheshrew,1593 sped,2,tamingoftheshrew,1593 bonny,2,tamingoftheshrew,1593 mistaking,2,tamingoftheshrew,1593 red,2,tamingoftheshrew,1593 days,2,tamingoftheshrew,1593 basin,2,tamingoftheshrew,1593 fathers,2,tamingoftheshrew,1593 double,2,tamingoftheshrew,1593 country,2,tamingoftheshrew,1593 forswear,2,tamingoftheshrew,1593 dream'd,2,tamingoftheshrew,1593 speech,2,tamingoftheshrew,1593 weary,2,tamingoftheshrew,1593 following,2,tamingoftheshrew,1593 Alas,2,tamingoftheshrew,1593 peasant,2,tamingoftheshrew,1593 Fit,2,tamingoftheshrew,1593 brown,2,tamingoftheshrew,1593 hasty,2,tamingoftheshrew,1593 mend,2,tamingoftheshrew,1593 proclaim'd,2,tamingoftheshrew,1593 road,2,tamingoftheshrew,1593 Never,2,tamingoftheshrew,1593 wealthily,2,tamingoftheshrew,1593 dirt,2,tamingoftheshrew,1593 Must,2,tamingoftheshrew,1593 finger,2,tamingoftheshrew,1593 lowly,2,tamingoftheshrew,1593 weighty,2,tamingoftheshrew,1593 thirty,2,tamingoftheshrew,1593 mete,2,tamingoftheshrew,1593 patron,2,tamingoftheshrew,1593 Whom,2,tamingoftheshrew,1593 sops,2,tamingoftheshrew,1593 cast,2,tamingoftheshrew,1593 loathsome,2,tamingoftheshrew,1593 pleasing,2,tamingoftheshrew,1593 mercy,2,tamingoftheshrew,1593 sad,2,tamingoftheshrew,1593 'What,2,tamingoftheshrew,1593 Whose,2,tamingoftheshrew,1593 bearing,2,tamingoftheshrew,1593 dance,2,tamingoftheshrew,1593 cape,2,tamingoftheshrew,1593 Give,2,tamingoftheshrew,1593 broken,2,tamingoftheshrew,1593 caps,2,tamingoftheshrew,1593 trumpet,2,tamingoftheshrew,1593 Much,2,tamingoftheshrew,1593 Gramercies,2,tamingoftheshrew,1593 Hortensio's,2,tamingoftheshrew,1593 making,2,tamingoftheshrew,1593 Simois,2,tamingoftheshrew,1593 visit,2,tamingoftheshrew,1593 vied,2,tamingoftheshrew,1593 something,2,tamingoftheshrew,1593 Twenty,2,tamingoftheshrew,1593 Mistake,2,tamingoftheshrew,1593 Off,2,tamingoftheshrew,1593 conceive,2,tamingoftheshrew,1593 haggard,2,tamingoftheshrew,1593 deceased,2,tamingoftheshrew,1593 fingering,2,tamingoftheshrew,1593 'A,2,tamingoftheshrew,1593 moveable,2,tamingoftheshrew,1593 she'll,2,tamingoftheshrew,1593 sea,2,tamingoftheshrew,1593 bridal,2,tamingoftheshrew,1593 fell,2,tamingoftheshrew,1593 dough,2,tamingoftheshrew,1593 deliver,2,tamingoftheshrew,1593 embrace,2,tamingoftheshrew,1593 worth,2,tamingoftheshrew,1593 sol,2,tamingoftheshrew,1593 bringing,2,tamingoftheshrew,1593 winds,2,tamingoftheshrew,1593 Farewell,2,tamingoftheshrew,1593 pictures,2,tamingoftheshrew,1593 fashions,2,tamingoftheshrew,1593 where's,2,tamingoftheshrew,1593 ashore,2,tamingoftheshrew,1593 counsel,2,tamingoftheshrew,1593 cozen,2,tamingoftheshrew,1593 Their,2,tamingoftheshrew,1593 forthwith,2,tamingoftheshrew,1593 acquainted,2,tamingoftheshrew,1593 deeply,2,tamingoftheshrew,1593 thin,2,tamingoftheshrew,1593 Attendants,2,tamingoftheshrew,1593 pieced,2,tamingoftheshrew,1593 affect,2,tamingoftheshrew,1593 indifferent,2,tamingoftheshrew,1593 taught,2,tamingoftheshrew,1593 vile,2,tamingoftheshrew,1593 compound,2,tamingoftheshrew,1593 conceit,2,tamingoftheshrew,1593 monster,2,tamingoftheshrew,1593 profess,2,tamingoftheshrew,1593 crupper,2,tamingoftheshrew,1593 wive,2,tamingoftheshrew,1593 twelve,2,tamingoftheshrew,1593 born,2,tamingoftheshrew,1593 Tush,2,tamingoftheshrew,1593 'celsa,2,tamingoftheshrew,1593 Priami,2,tamingoftheshrew,1593 runs,2,tamingoftheshrew,1593 scold,2,tamingoftheshrew,1593 terms,2,tamingoftheshrew,1593 encounter,2,tamingoftheshrew,1593 loose,2,tamingoftheshrew,1593 mark'd,2,tamingoftheshrew,1593 worthy,2,tamingoftheshrew,1593 Wherein,2,tamingoftheshrew,1593 thaw,2,tamingoftheshrew,1593 feed,2,tamingoftheshrew,1593 taming,2,tamingoftheshrew,1593 rush,2,tamingoftheshrew,1593 feet,2,tamingoftheshrew,1593 grow,2,tamingoftheshrew,1593 Old,2,tamingoftheshrew,1593 bauble,2,tamingoftheshrew,1593 flesh,2,tamingoftheshrew,1593 seems,2,tamingoftheshrew,1593 title,2,tamingoftheshrew,1593 expressly,2,tamingoftheshrew,1593 One,2,tamingoftheshrew,1593 want,2,tamingoftheshrew,1593 stead,2,tamingoftheshrew,1593 wise,2,tamingoftheshrew,1593 witnesses,2,tamingoftheshrew,1593 stocks,2,tamingoftheshrew,1593 rule,2,tamingoftheshrew,1593 wash,2,tamingoftheshrew,1593 mistake,2,tamingoftheshrew,1593 boot,2,tamingoftheshrew,1593 wasp,2,tamingoftheshrew,1593 circumstances,2,tamingoftheshrew,1593 desire,2,tamingoftheshrew,1593 revel,2,tamingoftheshrew,1593 coats,2,tamingoftheshrew,1593 parts,2,tamingoftheshrew,1593 fairest,2,tamingoftheshrew,1593 Softly,2,tamingoftheshrew,1593 each,2,tamingoftheshrew,1593 big,2,tamingoftheshrew,1593 wherefore,2,tamingoftheshrew,1593 aim'd,2,tamingoftheshrew,1593 ha',2,tamingoftheshrew,1593 merriment,2,tamingoftheshrew,1593 manners,2,tamingoftheshrew,1593 hap,2,tamingoftheshrew,1593 A',2,tamingoftheshrew,1593 crack,2,tamingoftheshrew,1593 Belike,2,tamingoftheshrew,1593 sign,2,tamingoftheshrew,1593 measure,2,tamingoftheshrew,1593 At,2,tamingoftheshrew,1593 pay,2,tamingoftheshrew,1593 hang'd,2,tamingoftheshrew,1593 Nathaniel,2,tamingoftheshrew,1593 inventions,2,tamingoftheshrew,1593 among,2,tamingoftheshrew,1593 smile,2,tamingoftheshrew,1593 sensible,2,tamingoftheshrew,1593 perfume,2,tamingoftheshrew,1593 proof,2,tamingoftheshrew,1593 kept,2,tamingoftheshrew,1593 belike,2,tamingoftheshrew,1593 to't,2,tamingoftheshrew,1593 Within,2,tamingoftheshrew,1593 ply,2,tamingoftheshrew,1593 flowers,2,tamingoftheshrew,1593 meant,2,tamingoftheshrew,1593 'With,2,tamingoftheshrew,1593 husbands,2,tamingoftheshrew,1593 pate,2,tamingoftheshrew,1593 sport,2,tamingoftheshrew,1593 yourselves,2,tamingoftheshrew,1593 heads,2,tamingoftheshrew,1593 kiss'd,2,tamingoftheshrew,1593 brawling,2,tamingoftheshrew,1593 sirs,2,tamingoftheshrew,1593 courteous,2,tamingoftheshrew,1593 week,2,tamingoftheshrew,1593 grief,2,tamingoftheshrew,1593 leather,2,tamingoftheshrew,1593 dove,2,tamingoftheshrew,1593 burn,2,tamingoftheshrew,1593 got,2,tamingoftheshrew,1593 cat,2,tamingoftheshrew,1593 struck,2,tamingoftheshrew,1593 madman,2,tamingoftheshrew,1593 sounds,2,tamingoftheshrew,1593 tricks,2,tamingoftheshrew,1593 devilish,2,tamingoftheshrew,1593 Sirs,2,tamingoftheshrew,1593 gaze,2,tamingoftheshrew,1593 weak,2,tamingoftheshrew,1593 'greed,2,tamingoftheshrew,1593 Put,2,tamingoftheshrew,1593 twice,2,tamingoftheshrew,1593 extreme,2,tamingoftheshrew,1593 swift,2,tamingoftheshrew,1593 amongst,2,tamingoftheshrew,1593 pains,2,tamingoftheshrew,1593 sister's,2,tamingoftheshrew,1593 sing,2,tamingoftheshrew,1593 orderly,2,tamingoftheshrew,1593 headstrong,2,tamingoftheshrew,1593 Both,2,tamingoftheshrew,1593 convey'd,2,tamingoftheshrew,1593 quite,2,tamingoftheshrew,1593 storm,2,tamingoftheshrew,1593 deep,2,tamingoftheshrew,1593 breath,2,tamingoftheshrew,1593 affection,2,tamingoftheshrew,1593 ha,2,tamingoftheshrew,1593 Holla,2,tamingoftheshrew,1593 gift,2,tamingoftheshrew,1593 favour,2,tamingoftheshrew,1593 Kates,2,tamingoftheshrew,1593 deck,2,tamingoftheshrew,1593 stood,2,tamingoftheshrew,1593 safe,2,tamingoftheshrew,1593 stool,2,tamingoftheshrew,1593 fa,2,tamingoftheshrew,1593 PHILIP,2,tamingoftheshrew,1593 gain,2,tamingoftheshrew,1593 Apollo,2,tamingoftheshrew,1593 notes,2,tamingoftheshrew,1593 ago,2,tamingoftheshrew,1593 Unless,2,tamingoftheshrew,1593 dead,2,tamingoftheshrew,1593 Besides,2,tamingoftheshrew,1593 seeming,2,tamingoftheshrew,1593 sack,2,tamingoftheshrew,1593 stockings,2,tamingoftheshrew,1593 ice,2,tamingoftheshrew,1593 quaint,2,tamingoftheshrew,1593 crab,2,tamingoftheshrew,1593 shed,2,tamingoftheshrew,1593 forget,2,tamingoftheshrew,1593 newly,2,tamingoftheshrew,1593 move,2,tamingoftheshrew,1593 wonderful,2,tamingoftheshrew,1593 commend,2,tamingoftheshrew,1593 rayed,2,tamingoftheshrew,1593 fears,2,tamingoftheshrew,1593 bodied,2,tamingoftheshrew,1593 o',2,tamingoftheshrew,1593 mi,2,tamingoftheshrew,1593 idle,2,tamingoftheshrew,1593 teaching,2,tamingoftheshrew,1593 argosy,2,tamingoftheshrew,1593 Myself,2,tamingoftheshrew,1593 studies,2,tamingoftheshrew,1593 endure,2,tamingoftheshrew,1593 beholding,2,tamingoftheshrew,1593 add,2,tamingoftheshrew,1593 ill,2,tamingoftheshrew,1593 afternoon,2,tamingoftheshrew,1593 loved,2,tamingoftheshrew,1593 blue,2,tamingoftheshrew,1593 greater,2,tamingoftheshrew,1593 supremacy,2,tamingoftheshrew,1593 journey,2,tamingoftheshrew,1593 hop,2,tamingoftheshrew,1593 presume,2,tamingoftheshrew,1593 hardly,2,tamingoftheshrew,1593 Seeing,2,tamingoftheshrew,1593 slide,2,tamingoftheshrew,1593 Jack,2,tamingoftheshrew,1593 'pointed,2,tamingoftheshrew,1593 Hacket,2,tamingoftheshrew,1593 More,2,tamingoftheshrew,1593 perform'd,2,tamingoftheshrew,1593 husband's,2,tamingoftheshrew,1593 see't,2,tamingoftheshrew,1593 Happy,2,tamingoftheshrew,1593 re,2,tamingoftheshrew,1593 liberty,2,tamingoftheshrew,1593 'regia,2,tamingoftheshrew,1593 four,2,tamingoftheshrew,1593 halt,2,tamingoftheshrew,1593 excuse,2,tamingoftheshrew,1593 course,2,tamingoftheshrew,1593 stranger,2,tamingoftheshrew,1593 mended,2,tamingoftheshrew,1593 pack,2,tamingoftheshrew,1593 fiend,2,tamingoftheshrew,1593 fresh,2,tamingoftheshrew,1593 mayst,2,tamingoftheshrew,1593 trick,2,tamingoftheshrew,1593 Luke's,2,tamingoftheshrew,1593 array,2,tamingoftheshrew,1593 rivals,2,tamingoftheshrew,1593 broke,2,tamingoftheshrew,1593 Art,2,tamingoftheshrew,1593 'longeth,2,tamingoftheshrew,1593 restored,2,tamingoftheshrew,1593 occasion,2,tamingoftheshrew,1593 education,2,tamingoftheshrew,1593 freeze,2,tamingoftheshrew,1593 venture,2,tamingoftheshrew,1593 hill,2,tamingoftheshrew,1593 rose,2,tamingoftheshrew,1593 needle,2,tamingoftheshrew,1593 unknown,2,tamingoftheshrew,1593 apparell'd,2,tamingoftheshrew,1593 almost,2,tamingoftheshrew,1593 farmer's,2,tamingoftheshrew,1593 apple,2,tamingoftheshrew,1593 dress,2,tamingoftheshrew,1593 gently,2,tamingoftheshrew,1593 below,2,tamingoftheshrew,1593 mildness,2,tamingoftheshrew,1593 entertainment,2,tamingoftheshrew,1593 remedy,2,tamingoftheshrew,1593 bears,2,tamingoftheshrew,1593 tender,2,tamingoftheshrew,1593 drunkard,2,tamingoftheshrew,1593 velvet,2,tamingoftheshrew,1593 ours,2,tamingoftheshrew,1593 candle,2,tamingoftheshrew,1593 ewer,2,tamingoftheshrew,1593 pastime,2,tamingoftheshrew,1593 strike,2,tamingoftheshrew,1593 From,2,tamingoftheshrew,1593 borough,2,tamingoftheshrew,1593 charm,2,tamingoftheshrew,1593 LUCENTIO'S,2,tamingoftheshrew,1593 stays,2,tamingoftheshrew,1593 garden,2,tamingoftheshrew,1593 parting,2,tamingoftheshrew,1593 mouth,2,tamingoftheshrew,1593 places,2,tamingoftheshrew,1593 youth,2,tamingoftheshrew,1593 Antonio's,2,tamingoftheshrew,1593 cloak,2,tamingoftheshrew,1593 Peter,2,tamingoftheshrew,1593 Dost,2,tamingoftheshrew,1593 device,2,tamingoftheshrew,1593 high,2,tamingoftheshrew,1593 strife,2,tamingoftheshrew,1593 specially,2,tamingoftheshrew,1593 leaves,2,tamingoftheshrew,1593 stark,2,tamingoftheshrew,1593 spoiled,2,tamingoftheshrew,1593 mild,2,tamingoftheshrew,1593 exchange,2,tamingoftheshrew,1593 fares,2,tamingoftheshrew,1593 nod,2,tamingoftheshrew,1593 stars,2,tamingoftheshrew,1593 plead,2,tamingoftheshrew,1593 PETRUCHIO'S,2,tamingoftheshrew,1593 jars,2,tamingoftheshrew,1593 beggar,2,tamingoftheshrew,1593 presently,2,tamingoftheshrew,1593 mark,2,tamingoftheshrew,1593 ALL,2,tamingoftheshrew,1593 veriest,2,tamingoftheshrew,1593 proudest,2,tamingoftheshrew,1593 state,2,tamingoftheshrew,1593 because,2,tamingoftheshrew,1593 Florence,2,tamingoftheshrew,1593 inch,2,tamingoftheshrew,1593 shoulder,2,tamingoftheshrew,1593 chide,2,tamingoftheshrew,1593 special,2,tamingoftheshrew,1593 INDUCTION,2,tamingoftheshrew,1593 Made,2,tamingoftheshrew,1593 marvel,2,tamingoftheshrew,1593 dainty,2,tamingoftheshrew,1593 Perhaps,2,tamingoftheshrew,1593 sedges,2,tamingoftheshrew,1593 firm,2,tamingoftheshrew,1593 o'clock,2,tamingoftheshrew,1593 ones,2,tamingoftheshrew,1593 wealthy,2,tamingoftheshrew,1593 Italy,2,tamingoftheshrew,1593 close,2,tamingoftheshrew,1593 sting,2,tamingoftheshrew,1593 odd,2,tamingoftheshrew,1593 stale,2,tamingoftheshrew,1593 rogues,2,tamingoftheshrew,1593 pound,2,tamingoftheshrew,1593 former,2,tamingoftheshrew,1593 throw,2,tamingoftheshrew,1593 swain,2,tamingoftheshrew,1593 KATARINA,2,tamingoftheshrew,1593 ring,2,tamingoftheshrew,1593 third,2,tamingoftheshrew,1593 ducats,2,tamingoftheshrew,1593 heavy,2,tamingoftheshrew,1593 called,2,tamingoftheshrew,1593 arms,2,tamingoftheshrew,1593 between,2,tamingoftheshrew,1593 trusty,2,tamingoftheshrew,1593 commanded,2,tamingoftheshrew,1593 found,2,tamingoftheshrew,1593 graceless,2,tamingoftheshrew,1593 wanton,2,tamingoftheshrew,1593 apace,2,tamingoftheshrew,1593 villains,2,tamingoftheshrew,1593 witted,2,tamingoftheshrew,1593 enforced,2,tamingoftheshrew,1593 raging,2,tamingoftheshrew,1593 agree,2,tamingoftheshrew,1593 Bid,2,tamingoftheshrew,1593 duke,2,tamingoftheshrew,1593 charged,2,tamingoftheshrew,1593 anger,2,tamingoftheshrew,1593 spleen,2,tamingoftheshrew,1593 wondrous,2,tamingoftheshrew,1593 supply,2,tamingoftheshrew,1593 sober,2,tamingoftheshrew,1593 whence,2,tamingoftheshrew,1593 Presenting,2,tamingoftheshrew,1593 glad,2,tamingoftheshrew,1593 table,2,tamingoftheshrew,1593 cried,2,tamingoftheshrew,1593 Make,2,tamingoftheshrew,1593 durst,2,tamingoftheshrew,1593 ground,2,tamingoftheshrew,1593 stolen,2,tamingoftheshrew,1593 cares,2,tamingoftheshrew,1593 affable,2,tamingoftheshrew,1593 Proceed,2,tamingoftheshrew,1593 wert,2,tamingoftheshrew,1593 pleased,2,tamingoftheshrew,1593 work,2,tamingoftheshrew,1593 Sweet,2,tamingoftheshrew,1593 vow,2,tamingoftheshrew,1593 JOSEPH,2,tamingoftheshrew,1593 profit,2,tamingoftheshrew,1593 banns,2,tamingoftheshrew,1593 continue,2,tamingoftheshrew,1593 horn,2,tamingoftheshrew,1593 Beats,2,tamingoftheshrew,1593 hose,2,tamingoftheshrew,1593 thunder,2,tamingoftheshrew,1593 bite,2,tamingoftheshrew,1593 herself,2,tamingoftheshrew,1593 linen,2,tamingoftheshrew,1593 perceive,2,tamingoftheshrew,1593 madly,2,tamingoftheshrew,1593 bird,2,tamingoftheshrew,1593 comfort,2,tamingoftheshrew,1593 public,2,tamingoftheshrew,1593 appointed,2,tamingoftheshrew,1593 cock,2,tamingoftheshrew,1593 thimble,2,tamingoftheshrew,1593 plainness,2,tamingoftheshrew,1593 dam,2,tamingoftheshrew,1593 is't,2,tamingoftheshrew,1593 lessons,2,tamingoftheshrew,1593 arm'd,2,tamingoftheshrew,1593 farthest,2,tamingoftheshrew,1593 fruitful,2,tamingoftheshrew,1593 cup,2,tamingoftheshrew,1593 poetry,2,tamingoftheshrew,1593 sufficient,2,tamingoftheshrew,1593 perish,2,tamingoftheshrew,1593 wild,2,tamingoftheshrew,1593 hazel,2,tamingoftheshrew,1593 bigger,2,tamingoftheshrew,1593 green,2,tamingoftheshrew,1593 lackey,2,tamingoftheshrew,1593 counterfeit,2,tamingoftheshrew,1593 request,2,tamingoftheshrew,1593 winter,2,tamingoftheshrew,1593 forsooth,2,tamingoftheshrew,1593 NICHOLAS,2,tamingoftheshrew,1593 waning,2,tamingoftheshrew,1593 Where's,2,tamingoftheshrew,1593 robes,2,tamingoftheshrew,1593 approved,2,tamingoftheshrew,1593 seas,2,tamingoftheshrew,1593 hunt,2,tamingoftheshrew,1593 cook,2,tamingoftheshrew,1593 contents,2,tamingoftheshrew,1593 bodes,2,tamingoftheshrew,1593 adieu,2,tamingoftheshrew,1593 low,2,tamingoftheshrew,1593 babe,2,tamingoftheshrew,1593 cony,2,tamingoftheshrew,1593 Serving,2,tamingoftheshrew,1593 tells,2,tamingoftheshrew,1593 liking,2,tamingoftheshrew,1593 fellows,2,tamingoftheshrew,1593 Patience,2,tamingoftheshrew,1593 whate'er,2,tamingoftheshrew,1593 modest,2,tamingoftheshrew,1593 Know,2,tamingoftheshrew,1593 blame,2,tamingoftheshrew,1593 kindred,2,tamingoftheshrew,1593 tied,2,tamingoftheshrew,1593 port,2,tamingoftheshrew,1593 whilst,2,tamingoftheshrew,1593 return,2,tamingoftheshrew,1593 prison,2,tamingoftheshrew,1593 prayed,2,tamingoftheshrew,1593 talk'd,2,tamingoftheshrew,1593 grieved,2,tamingoftheshrew,1593 sullen,2,tamingoftheshrew,1593 countryman,2,tamingoftheshrew,1593 couple,2,tamingoftheshrew,1593 bestow,2,tamingoftheshrew,1593 merchant,2,tamingoftheshrew,1593 endured,2,tamingoftheshrew,1593 ear,2,tamingoftheshrew,1593 clouds,2,tamingoftheshrew,1593 afeard,2,tamingoftheshrew,1593 remember,2,tamingoftheshrew,1593 sadness,2,tamingoftheshrew,1593 Gregory,2,tamingoftheshrew,1593 headed,2,tamingoftheshrew,1593 Since,2,tamingoftheshrew,1593 venuto,2,tamingoftheshrew,1593 burnt,2,tamingoftheshrew,1593 fully,2,tamingoftheshrew,1593 ladies,2,tamingoftheshrew,1593 harmony,2,tamingoftheshrew,1593 Amen,2,tamingoftheshrew,1593 beguile,2,tamingoftheshrew,1593 lark,2,tamingoftheshrew,1593 players,2,tamingoftheshrew,1593 whiles,2,tamingoftheshrew,1593 sometimes,2,tamingoftheshrew,1593 credit,2,tamingoftheshrew,1593 tut,2,tamingoftheshrew,1593 thither,2,tamingoftheshrew,1593 Greek,2,tamingoftheshrew,1593 late,2,tamingoftheshrew,1593 citizens,2,tamingoftheshrew,1593 May,2,tamingoftheshrew,1593 severally,2,tamingoftheshrew,1593 jade,2,tamingoftheshrew,1593 revenged,2,tamingoftheshrew,1593 Philip,2,tamingoftheshrew,1593 try,2,tamingoftheshrew,1593 harsh,2,tamingoftheshrew,1593 'hic,2,tamingoftheshrew,1593 follow,2,tamingoftheshrew,1593 frame,2,tamingoftheshrew,1593 sudden,2,tamingoftheshrew,1593 catch,2,tamingoftheshrew,1593 ha't,2,tamingoftheshrew,1593 turtle,2,tamingoftheshrew,1593 toy,2,tamingoftheshrew,1593 mum,2,tamingoftheshrew,1593 shift,2,tamingoftheshrew,1593 shake,2,tamingoftheshrew,1593 burden,2,tamingoftheshrew,1593 Too,2,tamingoftheshrew,1593 Christendom,2,tamingoftheshrew,1593 Christophero,2,tamingoftheshrew,1593 tired,2,tamingoftheshrew,1593 Talk,2,tamingoftheshrew,1593 awake,2,tamingoftheshrew,1593 stomachs,2,tamingoftheshrew,1593 charity,2,tamingoftheshrew,1593 breathe,2,tamingoftheshrew,1593 din,2,tamingoftheshrew,1593 dissemble,2,tamingoftheshrew,1593 e'er,2,tamingoftheshrew,1593 Tut,2,tamingoftheshrew,1593 fortunes,2,tamingoftheshrew,1593 Sigeia,2,tamingoftheshrew,1593 brave,3,tamingoftheshrew,1593 affords,3,tamingoftheshrew,1593 silken,3,tamingoftheshrew,1593 troubled,3,tamingoftheshrew,1593 forbid,3,tamingoftheshrew,1593 mathematics,3,tamingoftheshrew,1593 V,3,tamingoftheshrew,1593 times,3,tamingoftheshrew,1593 groom,3,tamingoftheshrew,1593 heir,3,tamingoftheshrew,1593 rap,3,tamingoftheshrew,1593 treasure,3,tamingoftheshrew,1593 peace,3,tamingoftheshrew,1593 Villain,3,tamingoftheshrew,1593 joy,3,tamingoftheshrew,1593 thought,3,tamingoftheshrew,1593 hell,3,tamingoftheshrew,1593 dish,3,tamingoftheshrew,1593 painted,3,tamingoftheshrew,1593 philosophy,3,tamingoftheshrew,1593 lodging,3,tamingoftheshrew,1593 braved,3,tamingoftheshrew,1593 Help,3,tamingoftheshrew,1593 rid,3,tamingoftheshrew,1593 sour,3,tamingoftheshrew,1593 calls,3,tamingoftheshrew,1593 run,3,tamingoftheshrew,1593 become,3,tamingoftheshrew,1593 whoreson,3,tamingoftheshrew,1593 Carry,3,tamingoftheshrew,1593 seven,3,tamingoftheshrew,1593 birth,3,tamingoftheshrew,1593 amazed,3,tamingoftheshrew,1593 slept,3,tamingoftheshrew,1593 resolve,3,tamingoftheshrew,1593 choleric,3,tamingoftheshrew,1593 Keep,3,tamingoftheshrew,1593 wants,3,tamingoftheshrew,1593 knaves,3,tamingoftheshrew,1593 teach,3,tamingoftheshrew,1593 blessed,3,tamingoftheshrew,1593 bound,3,tamingoftheshrew,1593 impossible,3,tamingoftheshrew,1593 'twere,3,tamingoftheshrew,1593 deceived,3,tamingoftheshrew,1593 score,3,tamingoftheshrew,1593 tellus,3,tamingoftheshrew,1593 ibat,3,tamingoftheshrew,1593 looking,3,tamingoftheshrew,1593 kindly,3,tamingoftheshrew,1593 firmly,3,tamingoftheshrew,1593 study,3,tamingoftheshrew,1593 beloved,3,tamingoftheshrew,1593 Music,3,tamingoftheshrew,1593 faults,3,tamingoftheshrew,1593 PETER,3,tamingoftheshrew,1593 mother,3,tamingoftheshrew,1593 amiss,3,tamingoftheshrew,1593 ourselves,3,tamingoftheshrew,1593 esteem,3,tamingoftheshrew,1593 These,3,tamingoftheshrew,1593 piece,3,tamingoftheshrew,1593 Out,3,tamingoftheshrew,1593 Our,3,tamingoftheshrew,1593 senis,3,tamingoftheshrew,1593 household,3,tamingoftheshrew,1593 white,3,tamingoftheshrew,1593 pearl,3,tamingoftheshrew,1593 humble,3,tamingoftheshrew,1593 elder,3,tamingoftheshrew,1593 above,3,tamingoftheshrew,1593 feel,3,tamingoftheshrew,1593 beaten,3,tamingoftheshrew,1593 brief,3,tamingoftheshrew,1593 wind,3,tamingoftheshrew,1593 others,3,tamingoftheshrew,1593 Latin,3,tamingoftheshrew,1593 tinker,3,tamingoftheshrew,1593 roundly,3,tamingoftheshrew,1593 sense,3,tamingoftheshrew,1593 devil's,3,tamingoftheshrew,1593 window,3,tamingoftheshrew,1593 lunatic,3,tamingoftheshrew,1593 bright,3,tamingoftheshrew,1593 he's,3,tamingoftheshrew,1593 bitter,3,tamingoftheshrew,1593 sweeter,3,tamingoftheshrew,1593 III,3,tamingoftheshrew,1593 By,3,tamingoftheshrew,1593 neither,3,tamingoftheshrew,1593 deeds,3,tamingoftheshrew,1593 butt,3,tamingoftheshrew,1593 beautiful,3,tamingoftheshrew,1593 On,3,tamingoftheshrew,1593 shines,3,tamingoftheshrew,1593 changed,3,tamingoftheshrew,1593 ben,3,tamingoftheshrew,1593 surely,3,tamingoftheshrew,1593 goods,3,tamingoftheshrew,1593 wither'd,3,tamingoftheshrew,1593 agreement,3,tamingoftheshrew,1593 past,3,tamingoftheshrew,1593 proud,3,tamingoftheshrew,1593 pot,3,tamingoftheshrew,1593 monstrous,3,tamingoftheshrew,1593 blood,3,tamingoftheshrew,1593 gave,3,tamingoftheshrew,1593 weep,3,tamingoftheshrew,1593 busy,3,tamingoftheshrew,1593 Lucentio's,3,tamingoftheshrew,1593 whose,3,tamingoftheshrew,1593 children,3,tamingoftheshrew,1593 friendly,3,tamingoftheshrew,1593 despite,3,tamingoftheshrew,1593 Like,3,tamingoftheshrew,1593 ashamed,3,tamingoftheshrew,1593 turns,3,tamingoftheshrew,1593 God's,3,tamingoftheshrew,1593 yes,3,tamingoftheshrew,1593 legs,3,tamingoftheshrew,1593 gait,3,tamingoftheshrew,1593 aside,3,tamingoftheshrew,1593 scholar,3,tamingoftheshrew,1593 loves,3,tamingoftheshrew,1593 tamed,3,tamingoftheshrew,1593 loud,3,tamingoftheshrew,1593 Yes,3,tamingoftheshrew,1593 resolved,3,tamingoftheshrew,1593 less,3,tamingoftheshrew,1593 lose,3,tamingoftheshrew,1593 beauteous,3,tamingoftheshrew,1593 forgot,3,tamingoftheshrew,1593 grace,3,tamingoftheshrew,1593 choice,3,tamingoftheshrew,1593 hark,3,tamingoftheshrew,1593 hard,3,tamingoftheshrew,1593 field,3,tamingoftheshrew,1593 round,3,tamingoftheshrew,1593 pale,3,tamingoftheshrew,1593 hang,3,tamingoftheshrew,1593 deny,3,tamingoftheshrew,1593 drawn,3,tamingoftheshrew,1593 mighty,3,tamingoftheshrew,1593 pluck,3,tamingoftheshrew,1593 impatient,3,tamingoftheshrew,1593 pair,3,tamingoftheshrew,1593 money,3,tamingoftheshrew,1593 forsworn,3,tamingoftheshrew,1593 rings,3,tamingoftheshrew,1593 Content,3,tamingoftheshrew,1593 change,3,tamingoftheshrew,1593 lead,3,tamingoftheshrew,1593 fat,3,tamingoftheshrew,1593 contented,3,tamingoftheshrew,1593 often,3,tamingoftheshrew,1593 room,3,tamingoftheshrew,1593 moved,3,tamingoftheshrew,1593 shouldst,3,tamingoftheshrew,1593 silence,3,tamingoftheshrew,1593 Knock,3,tamingoftheshrew,1593 lords,3,tamingoftheshrew,1593 note,3,tamingoftheshrew,1593 thinks,3,tamingoftheshrew,1593 beast,3,tamingoftheshrew,1593 wakes,3,tamingoftheshrew,1593 waked,3,tamingoftheshrew,1593 action,3,tamingoftheshrew,1593 Peace,3,tamingoftheshrew,1593 conserves,3,tamingoftheshrew,1593 blunt,3,tamingoftheshrew,1593 est,3,tamingoftheshrew,1593 year,3,tamingoftheshrew,1593 Love,3,tamingoftheshrew,1593 learning,3,tamingoftheshrew,1593 you'll,3,tamingoftheshrew,1593 say'st,3,tamingoftheshrew,1593 Doth,3,tamingoftheshrew,1593 Will't,3,tamingoftheshrew,1593 child,3,tamingoftheshrew,1593 yours,3,tamingoftheshrew,1593 effect,3,tamingoftheshrew,1593 didst,3,tamingoftheshrew,1593 there's,3,tamingoftheshrew,1593 knows,3,tamingoftheshrew,1593 raiment,3,tamingoftheshrew,1593 slave,3,tamingoftheshrew,1593 achieve,3,tamingoftheshrew,1593 labour,3,tamingoftheshrew,1593 disguised,3,tamingoftheshrew,1593 mistress',3,tamingoftheshrew,1593 lecture,3,tamingoftheshrew,1593 sleeves,3,tamingoftheshrew,1593 grave,3,tamingoftheshrew,1593 neck,3,tamingoftheshrew,1593 wit,3,tamingoftheshrew,1593 We'll,3,tamingoftheshrew,1593 stomach,3,tamingoftheshrew,1593 cross'd,3,tamingoftheshrew,1593 loving,3,tamingoftheshrew,1593 beseech,3,tamingoftheshrew,1593 likes,3,tamingoftheshrew,1593 war,3,tamingoftheshrew,1593 intend,3,tamingoftheshrew,1593 wood,3,tamingoftheshrew,1593 next,3,tamingoftheshrew,1593 dreams,3,tamingoftheshrew,1593 Servingman,3,tamingoftheshrew,1593 haply,3,tamingoftheshrew,1593 consent,3,tamingoftheshrew,1593 farther,3,tamingoftheshrew,1593 modesty,3,tamingoftheshrew,1593 That's,3,tamingoftheshrew,1593 fall,3,tamingoftheshrew,1593 methinks,3,tamingoftheshrew,1593 cuff,3,tamingoftheshrew,1593 even,3,tamingoftheshrew,1593 scolding,3,tamingoftheshrew,1593 passion,3,tamingoftheshrew,1593 tail,3,tamingoftheshrew,1593 buzzard,3,tamingoftheshrew,1593 wealth,3,tamingoftheshrew,1593 mates,3,tamingoftheshrew,1593 patient,3,tamingoftheshrew,1593 base,3,tamingoftheshrew,1593 bill,3,tamingoftheshrew,1593 folks,3,tamingoftheshrew,1593 Lay,3,tamingoftheshrew,1593 giddy,3,tamingoftheshrew,1593 along,3,tamingoftheshrew,1593 Right,3,tamingoftheshrew,1593 seek,3,tamingoftheshrew,1593 hounds,3,tamingoftheshrew,1593 look'd,3,tamingoftheshrew,1593 courtesy,3,tamingoftheshrew,1593 Dian,3,tamingoftheshrew,1593 Believe,3,tamingoftheshrew,1593 heavenly,3,tamingoftheshrew,1593 lovest,3,tamingoftheshrew,1593 hours,3,tamingoftheshrew,1593 slender,3,tamingoftheshrew,1593 beheld,3,tamingoftheshrew,1593 gods,3,tamingoftheshrew,1593 steterat,3,tamingoftheshrew,1593 slow,3,tamingoftheshrew,1593 learn,3,tamingoftheshrew,1593 burst,3,tamingoftheshrew,1593 Messenger,3,tamingoftheshrew,1593 whit,3,tamingoftheshrew,1593 lips,3,tamingoftheshrew,1593 amorous,3,tamingoftheshrew,1593 virtue,3,tamingoftheshrew,1593 besides,3,tamingoftheshrew,1593 wooers,3,tamingoftheshrew,1593 simple,3,tamingoftheshrew,1593 dog,3,tamingoftheshrew,1593 Did,3,tamingoftheshrew,1593 fifteen,3,tamingoftheshrew,1593 reverend,3,tamingoftheshrew,1593 cross,3,tamingoftheshrew,1593 Fair,3,tamingoftheshrew,1593 boots,3,tamingoftheshrew,1593 ten,3,tamingoftheshrew,1593 shoes,3,tamingoftheshrew,1593 perhaps,3,tamingoftheshrew,1593 undertake,3,tamingoftheshrew,1593 schoolmaster,3,tamingoftheshrew,1593 answer,4,tamingoftheshrew,1593 fancy,4,tamingoftheshrew,1593 took,4,tamingoftheshrew,1593 woman's,4,tamingoftheshrew,1593 rascal,4,tamingoftheshrew,1593 clothes,4,tamingoftheshrew,1593 sight,4,tamingoftheshrew,1593 tears,4,tamingoftheshrew,1593 lies,4,tamingoftheshrew,1593 Would,4,tamingoftheshrew,1593 case,4,tamingoftheshrew,1593 Players,4,tamingoftheshrew,1593 After,4,tamingoftheshrew,1593 Petruchio's,4,tamingoftheshrew,1593 hearing,4,tamingoftheshrew,1593 town,4,tamingoftheshrew,1593 warrant,4,tamingoftheshrew,1593 body,4,tamingoftheshrew,1593 against,4,tamingoftheshrew,1593 virtuous,4,tamingoftheshrew,1593 'twas,4,tamingoftheshrew,1593 Player,4,tamingoftheshrew,1593 chat,4,tamingoftheshrew,1593 becomes,4,tamingoftheshrew,1593 ways,4,tamingoftheshrew,1593 habit,4,tamingoftheshrew,1593 fault,4,tamingoftheshrew,1593 Bianca's,4,tamingoftheshrew,1593 eldest,4,tamingoftheshrew,1593 service,4,tamingoftheshrew,1593 swore,4,tamingoftheshrew,1593 accept,4,tamingoftheshrew,1593 ancient,4,tamingoftheshrew,1593 choose,4,tamingoftheshrew,1593 sooth,4,tamingoftheshrew,1593 book,4,tamingoftheshrew,1593 morning,4,tamingoftheshrew,1593 'Twere,4,tamingoftheshrew,1593 quarrel,4,tamingoftheshrew,1593 patience,4,tamingoftheshrew,1593 lands,4,tamingoftheshrew,1593 begun,4,tamingoftheshrew,1593 hit,4,tamingoftheshrew,1593 Is't,4,tamingoftheshrew,1593 behind,4,tamingoftheshrew,1593 dost,4,tamingoftheshrew,1593 gaol,4,tamingoftheshrew,1593 gate,4,tamingoftheshrew,1593 'Twas,4,tamingoftheshrew,1593 promised,4,tamingoftheshrew,1593 Fear,4,tamingoftheshrew,1593 excellent,4,tamingoftheshrew,1593 Here's,4,tamingoftheshrew,1593 dear,4,tamingoftheshrew,1593 dower,4,tamingoftheshrew,1593 speed,4,tamingoftheshrew,1593 gamut,4,tamingoftheshrew,1593 age,4,tamingoftheshrew,1593 Yea,4,tamingoftheshrew,1593 plain,4,tamingoftheshrew,1593 school,4,tamingoftheshrew,1593 city,4,tamingoftheshrew,1593 Mantua,4,tamingoftheshrew,1593 rogue,4,tamingoftheshrew,1593 rough,4,tamingoftheshrew,1593 yard,4,tamingoftheshrew,1593 ass,4,tamingoftheshrew,1593 ye,4,tamingoftheshrew,1593 Strikes,4,tamingoftheshrew,1593 banquet,4,tamingoftheshrew,1593 undone,4,tamingoftheshrew,1593 Hath,4,tamingoftheshrew,1593 Should,4,tamingoftheshrew,1593 tarry,4,tamingoftheshrew,1593 nay,4,tamingoftheshrew,1593 pedant,4,tamingoftheshrew,1593 Therefore,4,tamingoftheshrew,1593 Look,4,tamingoftheshrew,1593 arrived,4,tamingoftheshrew,1593 foolish,4,tamingoftheshrew,1593 Father,4,tamingoftheshrew,1593 dream,4,tamingoftheshrew,1593 known,4,tamingoftheshrew,1593 won,4,tamingoftheshrew,1593 blow,4,tamingoftheshrew,1593 Sly,4,tamingoftheshrew,1593 need,4,tamingoftheshrew,1593 Were,4,tamingoftheshrew,1593 knavery,4,tamingoftheshrew,1593 near,4,tamingoftheshrew,1593 only,4,tamingoftheshrew,1593 faced,4,tamingoftheshrew,1593 rail,4,tamingoftheshrew,1593 Till,4,tamingoftheshrew,1593 officer,4,tamingoftheshrew,1593 lordship,4,tamingoftheshrew,1593 meaning,4,tamingoftheshrew,1593 Welcome,4,tamingoftheshrew,1593 lad,4,tamingoftheshrew,1593 lay,4,tamingoftheshrew,1593 puppet,4,tamingoftheshrew,1593 we'll,4,tamingoftheshrew,1593 either,4,tamingoftheshrew,1593 'twixt,4,tamingoftheshrew,1593 Pray,4,tamingoftheshrew,1593 fairly,4,tamingoftheshrew,1593 sent,4,tamingoftheshrew,1593 goes,4,tamingoftheshrew,1593 lie,4,tamingoftheshrew,1593 thread,4,tamingoftheshrew,1593 least,4,tamingoftheshrew,1593 Another,4,tamingoftheshrew,1593 thoughts,4,tamingoftheshrew,1593 fashion,4,tamingoftheshrew,1593 last,4,tamingoftheshrew,1593 attendants,4,tamingoftheshrew,1593 shrewd,4,tamingoftheshrew,1593 witness,4,tamingoftheshrew,1593 attend,4,tamingoftheshrew,1593 land,4,tamingoftheshrew,1593 obedient,4,tamingoftheshrew,1593 he'll,4,tamingoftheshrew,1593 soundly,4,tamingoftheshrew,1593 neighbour,4,tamingoftheshrew,1593 obedience,4,tamingoftheshrew,1593 himself,4,tamingoftheshrew,1593 woo'd,4,tamingoftheshrew,1593 daughters,4,tamingoftheshrew,1593 Fie,5,tamingoftheshrew,1593 haste,5,tamingoftheshrew,1593 health,5,tamingoftheshrew,1593 rather,5,tamingoftheshrew,1593 younger,5,tamingoftheshrew,1593 offer,5,tamingoftheshrew,1593 instrument,5,tamingoftheshrew,1593 understand,5,tamingoftheshrew,1593 drink,5,tamingoftheshrew,1593 under,5,tamingoftheshrew,1593 advise,5,tamingoftheshrew,1593 Upon,5,tamingoftheshrew,1593 bridegroom,5,tamingoftheshrew,1593 soon,5,tamingoftheshrew,1593 grows,5,tamingoftheshrew,1593 Not,5,tamingoftheshrew,1593 light,5,tamingoftheshrew,1593 wager,5,tamingoftheshrew,1593 worst,5,tamingoftheshrew,1593 turn,5,tamingoftheshrew,1593 Pardon,5,tamingoftheshrew,1593 access,5,tamingoftheshrew,1593 bold,5,tamingoftheshrew,1593 cunning,5,tamingoftheshrew,1593 office,5,tamingoftheshrew,1593 hat,5,tamingoftheshrew,1593 dinner,5,tamingoftheshrew,1593 Let's,5,tamingoftheshrew,1593 ears,5,tamingoftheshrew,1593 quiet,5,tamingoftheshrew,1593 kindness,5,tamingoftheshrew,1593 Saint,5,tamingoftheshrew,1593 farewell,5,tamingoftheshrew,1593 beef,5,tamingoftheshrew,1593 left,5,tamingoftheshrew,1593 beat,5,tamingoftheshrew,1593 ay,5,tamingoftheshrew,1593 ale,5,tamingoftheshrew,1593 gentlewoman,5,tamingoftheshrew,1593 feast,5,tamingoftheshrew,1593 small,5,tamingoftheshrew,1593 Reads,5,tamingoftheshrew,1593 those,5,tamingoftheshrew,1593 Haberdasher,5,tamingoftheshrew,1593 hot,5,tamingoftheshrew,1593 call'd,5,tamingoftheshrew,1593 suitors,5,tamingoftheshrew,1593 present,5,tamingoftheshrew,1593 girl,5,tamingoftheshrew,1593 chance,5,tamingoftheshrew,1593 thanks,5,tamingoftheshrew,1593 Hark,5,tamingoftheshrew,1593 behavior,5,tamingoftheshrew,1593 report,5,tamingoftheshrew,1593 water,5,tamingoftheshrew,1593 Some,5,tamingoftheshrew,1593 All,5,tamingoftheshrew,1593 quoth,5,tamingoftheshrew,1593 off,5,tamingoftheshrew,1593 court,5,tamingoftheshrew,1593 break,5,tamingoftheshrew,1593 youngest,5,tamingoftheshrew,1593 Venice,5,tamingoftheshrew,1593 Thus,5,tamingoftheshrew,1593 BAPTISTA'S,5,tamingoftheshrew,1593 tailor,5,tamingoftheshrew,1593 oath,5,tamingoftheshrew,1593 serve,5,tamingoftheshrew,1593 happy,5,tamingoftheshrew,1593 lute,5,tamingoftheshrew,1593 angry,5,tamingoftheshrew,1593 fortune,5,tamingoftheshrew,1593 tune,5,tamingoftheshrew,1593 fit,5,tamingoftheshrew,1593 worship,5,tamingoftheshrew,1593 Unto,5,tamingoftheshrew,1593 practise,5,tamingoftheshrew,1593 tame,5,tamingoftheshrew,1593 fast,5,tamingoftheshrew,1593 law,5,tamingoftheshrew,1593 pardon,5,tamingoftheshrew,1593 mustard,5,tamingoftheshrew,1593 prithee,5,tamingoftheshrew,1593 lovely,5,tamingoftheshrew,1593 seen,5,tamingoftheshrew,1593 seem,5,tamingoftheshrew,1593 match,5,tamingoftheshrew,1593 madam,5,tamingoftheshrew,1593 NATHANIEL,5,tamingoftheshrew,1593 'Hic,5,tamingoftheshrew,1593 suitor,5,tamingoftheshrew,1593 met,5,tamingoftheshrew,1593 makes,5,tamingoftheshrew,1593 live,5,tamingoftheshrew,1593 Sunday,5,tamingoftheshrew,1593 list,5,tamingoftheshrew,1593 strange,5,tamingoftheshrew,1593 happily,5,tamingoftheshrew,1593 dare,5,tamingoftheshrew,1593 liest,5,tamingoftheshrew,1593 shalt,5,tamingoftheshrew,1593 might,5,tamingoftheshrew,1593 spirit,5,tamingoftheshrew,1593 order,5,tamingoftheshrew,1593 women,5,tamingoftheshrew,1593 And,261,tamingoftheshrew,1593 leisure,6,tamingoftheshrew,1593 business,6,tamingoftheshrew,1593 possible,6,tamingoftheshrew,1593 trust,6,tamingoftheshrew,1593 care,6,tamingoftheshrew,1593 charge,6,tamingoftheshrew,1593 years,6,tamingoftheshrew,1593 toward,6,tamingoftheshrew,1593 sure,6,tamingoftheshrew,1593 cheer,6,tamingoftheshrew,1593 another,6,tamingoftheshrew,1593 soft,6,tamingoftheshrew,1593 death,6,tamingoftheshrew,1593 stands,6,tamingoftheshrew,1593 walk,6,tamingoftheshrew,1593 set,6,tamingoftheshrew,1593 Was,6,tamingoftheshrew,1593 instruct,6,tamingoftheshrew,1593 doubt,6,tamingoftheshrew,1593 stuff,6,tamingoftheshrew,1593 worse,6,tamingoftheshrew,1593 promise,6,tamingoftheshrew,1593 masters,6,tamingoftheshrew,1593 Hostess,6,tamingoftheshrew,1593 wish,6,tamingoftheshrew,1593 Though,6,tamingoftheshrew,1593 warm,6,tamingoftheshrew,1593 While,6,tamingoftheshrew,1593 What's,6,tamingoftheshrew,1593 An,6,tamingoftheshrew,1593 His,6,tamingoftheshrew,1593 II,6,tamingoftheshrew,1593 pleasure,6,tamingoftheshrew,1593 IV,6,tamingoftheshrew,1593 gold,6,tamingoftheshrew,1593 goodly,6,tamingoftheshrew,1593 cap,6,tamingoftheshrew,1593 crowns,6,tamingoftheshrew,1593 servant,6,tamingoftheshrew,1593 does,6,tamingoftheshrew,1593 wench,6,tamingoftheshrew,1593 door,6,tamingoftheshrew,1593 that's,6,tamingoftheshrew,1593 ho,6,tamingoftheshrew,1593 devil,6,tamingoftheshrew,1593 Because,6,tamingoftheshrew,1593 Call,6,tamingoftheshrew,1593 frown,6,tamingoftheshrew,1593 Are,6,tamingoftheshrew,1593 Than,6,tamingoftheshrew,1593 wooing,6,tamingoftheshrew,1593 new,6,tamingoftheshrew,1593 here's,6,tamingoftheshrew,1593 Madam,6,tamingoftheshrew,1593 faith,6,tamingoftheshrew,1593 wonder,6,tamingoftheshrew,1593 eye,6,tamingoftheshrew,1593 Verona,6,tamingoftheshrew,1593 See,6,tamingoftheshrew,1593 knave,6,tamingoftheshrew,1593 end,6,tamingoftheshrew,1593 dowry,6,tamingoftheshrew,1593 free,6,tamingoftheshrew,1593 Third,6,tamingoftheshrew,1593 still,6,tamingoftheshrew,1593 win,6,tamingoftheshrew,1593 believe,6,tamingoftheshrew,1593 assure,6,tamingoftheshrew,1593 supper,6,tamingoftheshrew,1593 Shall,6,tamingoftheshrew,1593 hundred,6,tamingoftheshrew,1593 Even,6,tamingoftheshrew,1593 fine,6,tamingoftheshrew,1593 ta'en,6,tamingoftheshrew,1593 reason,6,tamingoftheshrew,1593 honest,6,tamingoftheshrew,1593 horses,6,tamingoftheshrew,1593 swear,6,tamingoftheshrew,1593 back,6,tamingoftheshrew,1593 sound,6,tamingoftheshrew,1593 Gentlemen,6,tamingoftheshrew,1593 musician,6,tamingoftheshrew,1593 together,6,tamingoftheshrew,1593 Minola,6,tamingoftheshrew,1593 Curtis,6,tamingoftheshrew,1593 Baptista's,6,tamingoftheshrew,1593 servants,6,tamingoftheshrew,1593 marriage,6,tamingoftheshrew,1593 without,6,tamingoftheshrew,1593 shame,6,tamingoftheshrew,1593 woman,6,tamingoftheshrew,1593 die,6,tamingoftheshrew,1593 told,7,tamingoftheshrew,1593 help,7,tamingoftheshrew,1593 yourself,7,tamingoftheshrew,1593 full,7,tamingoftheshrew,1593 enough,7,tamingoftheshrew,1593 wedding,7,tamingoftheshrew,1593 cause,7,tamingoftheshrew,1593 looks,7,tamingoftheshrew,1593 matter,7,tamingoftheshrew,1593 Faith,7,tamingoftheshrew,1593 Am,7,tamingoftheshrew,1593 Be,7,tamingoftheshrew,1593 canst,7,tamingoftheshrew,1593 pass,7,tamingoftheshrew,1593 wear,7,tamingoftheshrew,1593 put,7,tamingoftheshrew,1593 begin,7,tamingoftheshrew,1593 confess,7,tamingoftheshrew,1593 most,7,tamingoftheshrew,1593 apparel,7,tamingoftheshrew,1593 brought,7,tamingoftheshrew,1593 foul,7,tamingoftheshrew,1593 ask,7,tamingoftheshrew,1593 touch,7,tamingoftheshrew,1593 far,7,tamingoftheshrew,1593 indeed,7,tamingoftheshrew,1593 sirrah,7,tamingoftheshrew,1593 many,7,tamingoftheshrew,1593 They,7,tamingoftheshrew,1593 could,7,tamingoftheshrew,1593 wed,7,tamingoftheshrew,1593 save,7,tamingoftheshrew,1593 Cambio,7,tamingoftheshrew,1593 humour,7,tamingoftheshrew,1593 Licio,7,tamingoftheshrew,1593 passing,7,tamingoftheshrew,1593 rich,7,tamingoftheshrew,1593 ne'er,7,tamingoftheshrew,1593 cut,7,tamingoftheshrew,1593 eyes,7,tamingoftheshrew,1593 alone,7,tamingoftheshrew,1593 send,7,tamingoftheshrew,1593 Mistress,7,tamingoftheshrew,1593 sleep,7,tamingoftheshrew,1593 Before,7,tamingoftheshrew,1593 pleasant,7,tamingoftheshrew,1593 Marry,7,tamingoftheshrew,1593 kind,7,tamingoftheshrew,1593 meet,8,tamingoftheshrew,1593 Tell,8,tamingoftheshrew,1593 saw,8,tamingoftheshrew,1593 Nor,8,tamingoftheshrew,1593 church,8,tamingoftheshrew,1593 Such,8,tamingoftheshrew,1593 countenance,8,tamingoftheshrew,1593 within,8,tamingoftheshrew,1593 wrong,8,tamingoftheshrew,1593 fellow,8,tamingoftheshrew,1593 fear,8,tamingoftheshrew,1593 after,8,tamingoftheshrew,1593 about,8,tamingoftheshrew,1593 froward,8,tamingoftheshrew,1593 chamber,8,tamingoftheshrew,1593 has,8,tamingoftheshrew,1593 i',8,tamingoftheshrew,1593 Second,8,tamingoftheshrew,1593 moon,8,tamingoftheshrew,1593 Servants,8,tamingoftheshrew,1593 place,8,tamingoftheshrew,1593 half,8,tamingoftheshrew,1593 foot,8,tamingoftheshrew,1593 right,8,tamingoftheshrew,1593 watch,8,tamingoftheshrew,1593 Have,8,tamingoftheshrew,1593 through,8,tamingoftheshrew,1593 ere,8,tamingoftheshrew,1593 let's,8,tamingoftheshrew,1593 over,8,tamingoftheshrew,1593 who,8,tamingoftheshrew,1593 sake,8,tamingoftheshrew,1593 fetch,8,tamingoftheshrew,1593 what's,8,tamingoftheshrew,1593 hope,8,tamingoftheshrew,1593 tale,8,tamingoftheshrew,1593 thousand,8,tamingoftheshrew,1593 Let,8,tamingoftheshrew,1593 use,8,tamingoftheshrew,1593 cold,8,tamingoftheshrew,1593 poor,8,tamingoftheshrew,1593 master's,8,tamingoftheshrew,1593 eat,8,tamingoftheshrew,1593 straight,8,tamingoftheshrew,1593 Away,8,tamingoftheshrew,1593 beauty,8,tamingoftheshrew,1593 books,8,tamingoftheshrew,1593 widow,8,tamingoftheshrew,1593 Thy,8,tamingoftheshrew,1593 friends,9,tamingoftheshrew,1593 merry,9,tamingoftheshrew,1593 Aside,9,tamingoftheshrew,1593 There,9,tamingoftheshrew,1593 friend,9,tamingoftheshrew,1593 Do,9,tamingoftheshrew,1593 music,9,tamingoftheshrew,1593 means,9,tamingoftheshrew,1593 We,9,tamingoftheshrew,1593 gone,9,tamingoftheshrew,1593 said,9,tamingoftheshrew,1593 priest,9,tamingoftheshrew,1593 noble,9,tamingoftheshrew,1593 twenty,9,tamingoftheshrew,1593 part,9,tamingoftheshrew,1593 forth,9,tamingoftheshrew,1593 show,9,tamingoftheshrew,1593 things,9,tamingoftheshrew,1593 thine,9,tamingoftheshrew,1593 thing,9,tamingoftheshrew,1593 Huntsman,9,tamingoftheshrew,1593 says,9,tamingoftheshrew,1593 Say,9,tamingoftheshrew,1593 forward,9,tamingoftheshrew,1593 fie,9,tamingoftheshrew,1593 talk,9,tamingoftheshrew,1593 wilt,9,tamingoftheshrew,1593 whom,9,tamingoftheshrew,1593 assurance,9,tamingoftheshrew,1593 command,9,tamingoftheshrew,1593 lady,9,tamingoftheshrew,1593 villain,10,tamingoftheshrew,1593 every,10,tamingoftheshrew,1593 withal,10,tamingoftheshrew,1593 jest,10,tamingoftheshrew,1593 Who,10,tamingoftheshrew,1593 read,10,tamingoftheshrew,1593 sun,10,tamingoftheshrew,1593 bride,10,tamingoftheshrew,1593 honour,10,tamingoftheshrew,1593 boy,10,tamingoftheshrew,1593 since,10,tamingoftheshrew,1593 prove,10,tamingoftheshrew,1593 Good,10,tamingoftheshrew,1593 curst,10,tamingoftheshrew,1593 Master,10,tamingoftheshrew,1593 Yet,10,tamingoftheshrew,1593 keep,10,tamingoftheshrew,1593 art,10,tamingoftheshrew,1593 Your,10,tamingoftheshrew,1593 gentle,10,tamingoftheshrew,1593 into,10,tamingoftheshrew,1593 mind,10,tamingoftheshrew,1593 shrew,10,tamingoftheshrew,1593 morrow,10,tamingoftheshrew,1593 own,10,tamingoftheshrew,1593 face,10,tamingoftheshrew,1593 three,10,tamingoftheshrew,1593 gentlemen,10,tamingoftheshrew,1593 thank,10,tamingoftheshrew,1593 content,10,tamingoftheshrew,1593 Take,10,tamingoftheshrew,1593 Will,11,tamingoftheshrew,1593 Page,11,tamingoftheshrew,1593 came,11,tamingoftheshrew,1593 she's,11,tamingoftheshrew,1593 sit,11,tamingoftheshrew,1593 hence,11,tamingoftheshrew,1593 rest,11,tamingoftheshrew,1593 meat,11,tamingoftheshrew,1593 Of,11,tamingoftheshrew,1593 Which,11,tamingoftheshrew,1593 down,11,tamingoftheshrew,1593 hands,11,tamingoftheshrew,1593 knew,11,tamingoftheshrew,1593 none,11,tamingoftheshrew,1593 once,11,tamingoftheshrew,1593 stand,11,tamingoftheshrew,1593 coming,11,tamingoftheshrew,1593 find,11,tamingoftheshrew,1593 till,11,tamingoftheshrew,1593 kiss,11,tamingoftheshrew,1593 hold,11,tamingoftheshrew,1593 true,11,tamingoftheshrew,1593 words,12,tamingoftheshrew,1593 head,12,tamingoftheshrew,1593 nothing,12,tamingoftheshrew,1593 With,12,tamingoftheshrew,1593 bring,12,tamingoftheshrew,1593 play,12,tamingoftheshrew,1593 night,12,tamingoftheshrew,1593 So,12,tamingoftheshrew,1593 tongue,12,tamingoftheshrew,1593 little,12,tamingoftheshrew,1593 fool,12,tamingoftheshrew,1593 Sirrah,12,tamingoftheshrew,1593 made,12,tamingoftheshrew,1593 ACT,12,tamingoftheshrew,1593 young,12,tamingoftheshrew,1593 Widow,12,tamingoftheshrew,1593 woo,12,tamingoftheshrew,1593 news,12,tamingoftheshrew,1593 married,12,tamingoftheshrew,1593 entreat,12,tamingoftheshrew,1593 hither,12,tamingoftheshrew,1593 being,12,tamingoftheshrew,1593 When,12,tamingoftheshrew,1593 cannot,12,tamingoftheshrew,1593 while,13,tamingoftheshrew,1593 away,13,tamingoftheshrew,1593 Her,13,tamingoftheshrew,1593 doth,13,tamingoftheshrew,1593 Biondello,13,tamingoftheshrew,1593 maid,13,tamingoftheshrew,1593 Thou,13,tamingoftheshrew,1593 again,13,tamingoftheshrew,1593 father's,13,tamingoftheshrew,1593 heart,13,tamingoftheshrew,1593 heard,13,tamingoftheshrew,1593 marry,13,tamingoftheshrew,1593 company,13,tamingoftheshrew,1593 word,13,tamingoftheshrew,1593 better,14,tamingoftheshrew,1593 bed,14,tamingoftheshrew,1593 Is,14,tamingoftheshrew,1593 gown,14,tamingoftheshrew,1593 bear,14,tamingoftheshrew,1593 fire,14,tamingoftheshrew,1593 home,14,tamingoftheshrew,1593 sister,14,tamingoftheshrew,1593 men,14,tamingoftheshrew,1593 much,15,tamingoftheshrew,1593 Pisa,15,tamingoftheshrew,1593 which,15,tamingoftheshrew,1593 SHREW,15,tamingoftheshrew,1593 else,15,tamingoftheshrew,1593 OF,15,tamingoftheshrew,1593 hast,15,tamingoftheshrew,1593 way,15,tamingoftheshrew,1593 great,15,tamingoftheshrew,1593 TAMING,15,tamingoftheshrew,1593 SCENE,15,tamingoftheshrew,1593 other,15,tamingoftheshrew,1593 both,16,tamingoftheshrew,1593 best,16,tamingoftheshrew,1593 God,16,tamingoftheshrew,1593 done,16,tamingoftheshrew,1593 ready,16,tamingoftheshrew,1593 hand,16,tamingoftheshrew,1593 knock,16,tamingoftheshrew,1593 This,16,tamingoftheshrew,1593 why,16,tamingoftheshrew,1593 duty,16,tamingoftheshrew,1593 ever,16,tamingoftheshrew,1593 had,17,tamingoftheshrew,1593 stay,17,tamingoftheshrew,1593 No,17,tamingoftheshrew,1593 enter,17,tamingoftheshrew,1593 In,17,tamingoftheshrew,1593 Re,17,tamingoftheshrew,1593 been,17,tamingoftheshrew,1593 look,17,tamingoftheshrew,1593 long,17,tamingoftheshrew,1593 speak,17,tamingoftheshrew,1593 though,17,tamingoftheshrew,1593 Vincentio,17,tamingoftheshrew,1593 Tailor,17,tamingoftheshrew,1593 think,17,tamingoftheshrew,1593 first,17,tamingoftheshrew,1593 Here,18,tamingoftheshrew,1593 He,18,tamingoftheshrew,1593 It,18,tamingoftheshrew,1593 bid,18,tamingoftheshrew,1593 husband,18,tamingoftheshrew,1593 welcome,18,tamingoftheshrew,1593 First,18,tamingoftheshrew,1593 nor,18,tamingoftheshrew,1593 before,18,tamingoftheshrew,1593 get,18,tamingoftheshrew,1593 out,18,tamingoftheshrew,1593 unto,18,tamingoftheshrew,1593 Where,18,tamingoftheshrew,1593 horse,19,tamingoftheshrew,1593 there,19,tamingoftheshrew,1593 Go,19,tamingoftheshrew,1593 Or,19,tamingoftheshrew,1593 myself,19,tamingoftheshrew,1593 Then,19,tamingoftheshrew,1593 Well,19,tamingoftheshrew,1593 please,19,tamingoftheshrew,1593 mad,19,tamingoftheshrew,1593 two,19,tamingoftheshrew,1593 upon,20,tamingoftheshrew,1593 call,20,tamingoftheshrew,1593 mean,20,tamingoftheshrew,1593 can,20,tamingoftheshrew,1593 their,20,tamingoftheshrew,1593 where,20,tamingoftheshrew,1593 fair,20,tamingoftheshrew,1593 life,21,tamingoftheshrew,1593 Sir,21,tamingoftheshrew,1593 'Tis,21,tamingoftheshrew,1593 gentleman,21,tamingoftheshrew,1593 thus,21,tamingoftheshrew,1593 did,21,tamingoftheshrew,1593 mistress,22,tamingoftheshrew,1593 Grumio,22,tamingoftheshrew,1593 She,22,tamingoftheshrew,1593 very,22,tamingoftheshrew,1593 Come,23,tamingoftheshrew,1593 CURTIS,23,tamingoftheshrew,1593 they,23,tamingoftheshrew,1593 Gremio,23,tamingoftheshrew,1593 yet,23,tamingoftheshrew,1593 any,23,tamingoftheshrew,1593 give,23,tamingoftheshrew,1593 day,23,tamingoftheshrew,1593 leave,23,tamingoftheshrew,1593 hear,24,tamingoftheshrew,1593 Servant,24,tamingoftheshrew,1593 Ay,24,tamingoftheshrew,1593 therefore,24,tamingoftheshrew,1593 How,24,tamingoftheshrew,1593 time,24,tamingoftheshrew,1593 too,24,tamingoftheshrew,1593 Nay,25,tamingoftheshrew,1593 world,25,tamingoftheshrew,1593 name,25,tamingoftheshrew,1593 us,25,tamingoftheshrew,1593 Baptista,25,tamingoftheshrew,1593 Lord,25,tamingoftheshrew,1593 Exeunt,26,tamingoftheshrew,1593 up,26,tamingoftheshrew,1593 mine,26,tamingoftheshrew,1593 comes,26,tamingoftheshrew,1593 some,27,tamingoftheshrew,1593 these,27,tamingoftheshrew,1593 lord,27,tamingoftheshrew,1593 sweet,27,tamingoftheshrew,1593 when,27,tamingoftheshrew,1593 Katharina,28,tamingoftheshrew,1593 must,29,tamingoftheshrew,1593 Pedant,29,tamingoftheshrew,1593 never,29,tamingoftheshrew,1593 Hortensio,29,tamingoftheshrew,1593 SLY,29,tamingoftheshrew,1593 my,285,tamingoftheshrew,1593 If,30,tamingoftheshrew,1593 should,30,tamingoftheshrew,1593 THE,30,tamingoftheshrew,1593 VINCENTIO,30,tamingoftheshrew,1593 pray,31,tamingoftheshrew,1593 'tis,31,tamingoftheshrew,1593 hath,31,tamingoftheshrew,1593 would,31,tamingoftheshrew,1593 Now,32,tamingoftheshrew,1593 was,32,tamingoftheshrew,1593 tell,33,tamingoftheshrew,1593 My,33,tamingoftheshrew,1593 from,33,tamingoftheshrew,1593 take,33,tamingoftheshrew,1593 wife,33,tamingoftheshrew,1593 Exit,33,tamingoftheshrew,1593 son,34,tamingoftheshrew,1593 daughter,34,tamingoftheshrew,1593 Petruchio,34,tamingoftheshrew,1593 Padua,34,tamingoftheshrew,1593 such,35,tamingoftheshrew,1593 than,35,tamingoftheshrew,1593 Bianca,35,tamingoftheshrew,1593 Tranio,35,tamingoftheshrew,1593 make,36,tamingoftheshrew,1593 old,36,tamingoftheshrew,1593 were,36,tamingoftheshrew,1593 The,36,tamingoftheshrew,1593 like,37,tamingoftheshrew,1593 Lucentio,37,tamingoftheshrew,1593 them,38,tamingoftheshrew,1593 master,38,tamingoftheshrew,1593 house,38,tamingoftheshrew,1593 an,40,tamingoftheshrew,1593 As,41,tamingoftheshrew,1593 our,41,tamingoftheshrew,1593 let,41,tamingoftheshrew,1593 man,41,tamingoftheshrew,1593 You,42,tamingoftheshrew,1593 Signior,42,tamingoftheshrew,1593 then,44,tamingoftheshrew,1593 Enter,45,tamingoftheshrew,1593 ',46,tamingoftheshrew,1593 see,46,tamingoftheshrew,1593 one,47,tamingoftheshrew,1593 how,48,tamingoftheshrew,1593 may,48,tamingoftheshrew,1593 BIANCA,49,tamingoftheshrew,1593 For,49,tamingoftheshrew,1593 go,49,tamingoftheshrew,1593 O,50,tamingoftheshrew,1593 now,50,tamingoftheshrew,1593 father,50,tamingoftheshrew,1593 more,51,tamingoftheshrew,1593 know,51,tamingoftheshrew,1593 here,52,tamingoftheshrew,1593 Why,52,tamingoftheshrew,1593 A,55,tamingoftheshrew,1593 say,55,tamingoftheshrew,1593 on,59,tamingoftheshrew,1593 love,60,tamingoftheshrew,1593 we,60,tamingoftheshrew,1593 I'll,60,tamingoftheshrew,1593 What,60,tamingoftheshrew,1593 Kate,62,tamingoftheshrew,1593 BIONDELLO,62,tamingoftheshrew,1593 do,63,tamingoftheshrew,1593 But,63,tamingoftheshrew,1593 come,64,tamingoftheshrew,1593 or,65,tamingoftheshrew,1593 what,66,tamingoftheshrew,1593 by,67,tamingoftheshrew,1593 at,67,tamingoftheshrew,1593 That,67,tamingoftheshrew,1593 GREMIO,69,tamingoftheshrew,1593 well,70,tamingoftheshrew,1593 To,71,tamingoftheshrew,1593 good,72,tamingoftheshrew,1593 am,73,tamingoftheshrew,1593 GRUMIO,74,tamingoftheshrew,1593 if,75,tamingoftheshrew,1593 no,77,tamingoftheshrew,1593 thy,77,tamingoftheshrew,1593 LUCENTIO,79,tamingoftheshrew,1593 BAPTISTA,80,tamingoftheshrew,1593 are,81,tamingoftheshrew,1593 thee,83,tamingoftheshrew,1593 but,84,tamingoftheshrew,1593 HORTENSIO,85,tamingoftheshrew,1593 his,93,tamingoftheshrew,1593 shall,97,tamingoftheshrew,1593 KATHARINA,98,tamingoftheshrew,1593 thou,105,tamingoftheshrew,1593 TRANIO,106,tamingoftheshrew,1593 she,111,tamingoftheshrew,1593 all,112,tamingoftheshrew,1593 he,114,tamingoftheshrew,1593 him,115,tamingoftheshrew,1593 I,629,tamingoftheshrew,1593 this,118,tamingoftheshrew,1593 sir,119,tamingoftheshrew,1593 a,385,tamingoftheshrew,1593 so,137,tamingoftheshrew,1593 as,146,tamingoftheshrew,1593 will,146,tamingoftheshrew,1593 have,155,tamingoftheshrew,1593 that,165,tamingoftheshrew,1593 PETRUCHIO,174,tamingoftheshrew,1593 your,175,tamingoftheshrew,1593 with,178,tamingoftheshrew,1593 it,178,tamingoftheshrew,1593 for,179,tamingoftheshrew,1593 her,180,tamingoftheshrew,1593 to,452,tamingoftheshrew,1593 be,198,tamingoftheshrew,1593 you,467,tamingoftheshrew,1593 the,470,tamingoftheshrew,1593 not,225,tamingoftheshrew,1593 in,234,tamingoftheshrew,1593 of,238,tamingoftheshrew,1593 me,241,tamingoftheshrew,1593 is,248,tamingoftheshrew,1593 and,505,tamingoftheshrew,1593 attended,1,antonyandcleopatra,1606 holding,1,antonyandcleopatra,1606 treason,1,antonyandcleopatra,1606 lamentably,1,antonyandcleopatra,1606 befal,1,antonyandcleopatra,1606 discharged,1,antonyandcleopatra,1606 silken,1,antonyandcleopatra,1606 religion,1,antonyandcleopatra,1606 You're,1,antonyandcleopatra,1606 O'erflows,1,antonyandcleopatra,1606 heed,1,antonyandcleopatra,1606 corrigible,1,antonyandcleopatra,1606 Euphrates,1,antonyandcleopatra,1606 rushing,1,antonyandcleopatra,1606 villany,1,antonyandcleopatra,1606 armies,1,antonyandcleopatra,1606 uttering,1,antonyandcleopatra,1606 chairs,1,antonyandcleopatra,1606 concern'd,1,antonyandcleopatra,1606 Finish,1,antonyandcleopatra,1606 M,1,antonyandcleopatra,1606 ignorance,1,antonyandcleopatra,1606 H,1,antonyandcleopatra,1606 watchmen,1,antonyandcleopatra,1606 Quick,1,antonyandcleopatra,1606 T,1,antonyandcleopatra,1606 meek,1,antonyandcleopatra,1606 venomous,1,antonyandcleopatra,1606 Stands,1,antonyandcleopatra,1606 grew,1,antonyandcleopatra,1606 riveted,1,antonyandcleopatra,1606 grey,1,antonyandcleopatra,1606 Prove,1,antonyandcleopatra,1606 Downy,1,antonyandcleopatra,1606 myrtle,1,antonyandcleopatra,1606 c,1,antonyandcleopatra,1606 invisible,1,antonyandcleopatra,1606 digested,1,antonyandcleopatra,1606 ports,1,antonyandcleopatra,1606 dispraised,1,antonyandcleopatra,1606 Proud,1,antonyandcleopatra,1606 advice,1,antonyandcleopatra,1606 vouchsafing,1,antonyandcleopatra,1606 drop,1,antonyandcleopatra,1606 took,1,antonyandcleopatra,1606 reputation,1,antonyandcleopatra,1606 Favours,1,antonyandcleopatra,1606 composition,1,antonyandcleopatra,1606 cheer'd,1,antonyandcleopatra,1606 yielding,1,antonyandcleopatra,1606 transmigrates,1,antonyandcleopatra,1606 Inform'd,1,antonyandcleopatra,1606 station,1,antonyandcleopatra,1606 leisure,1,antonyandcleopatra,1606 Pity,1,antonyandcleopatra,1606 country,1,antonyandcleopatra,1606 necessities,1,antonyandcleopatra,1606 diminution,1,antonyandcleopatra,1606 viands,1,antonyandcleopatra,1606 wears,1,antonyandcleopatra,1606 pageants,1,antonyandcleopatra,1606 writ,1,antonyandcleopatra,1606 Yare,1,antonyandcleopatra,1606 wish'd,1,antonyandcleopatra,1606 bleed'st,1,antonyandcleopatra,1606 planted,1,antonyandcleopatra,1606 Bacchanals,1,antonyandcleopatra,1606 Alas,1,antonyandcleopatra,1606 especially,1,antonyandcleopatra,1606 Grew,1,antonyandcleopatra,1606 abominations,1,antonyandcleopatra,1606 hinder,1,antonyandcleopatra,1606 Trouble,1,antonyandcleopatra,1606 diver,1,antonyandcleopatra,1606 New,1,antonyandcleopatra,1606 dislimns,1,antonyandcleopatra,1606 Fie,1,antonyandcleopatra,1606 shadows,1,antonyandcleopatra,1606 honours,1,antonyandcleopatra,1606 flush,1,antonyandcleopatra,1606 ram,1,antonyandcleopatra,1606 shelters,1,antonyandcleopatra,1606 lawful,1,antonyandcleopatra,1606 alack,1,antonyandcleopatra,1606 Eye,1,antonyandcleopatra,1606 dagger,1,antonyandcleopatra,1606 rock,1,antonyandcleopatra,1606 Messengers,1,antonyandcleopatra,1606 bones,1,antonyandcleopatra,1606 Antoniad,1,antonyandcleopatra,1606 dryness,1,antonyandcleopatra,1606 purge,1,antonyandcleopatra,1606 Parthians,1,antonyandcleopatra,1606 dolphin,1,antonyandcleopatra,1606 element,1,antonyandcleopatra,1606 breathless,1,antonyandcleopatra,1606 ruminated,1,antonyandcleopatra,1606 shoulders,1,antonyandcleopatra,1606 Uplift,1,antonyandcleopatra,1606 scene,1,antonyandcleopatra,1606 publicly,1,antonyandcleopatra,1606 triumphing,1,antonyandcleopatra,1606 speeds,1,antonyandcleopatra,1606 mandate,1,antonyandcleopatra,1606 trivial,1,antonyandcleopatra,1606 proclaim'd,1,antonyandcleopatra,1606 easily,1,antonyandcleopatra,1606 jot,1,antonyandcleopatra,1606 Philippan,1,antonyandcleopatra,1606 sealing,1,antonyandcleopatra,1606 Never,1,antonyandcleopatra,1606 hell,1,antonyandcleopatra,1606 Belong,1,antonyandcleopatra,1606 swifter,1,antonyandcleopatra,1606 moiety,1,antonyandcleopatra,1606 wager'd,1,antonyandcleopatra,1606 Stay,1,antonyandcleopatra,1606 trull,1,antonyandcleopatra,1606 Woo't,1,antonyandcleopatra,1606 Kills,1,antonyandcleopatra,1606 revengers,1,antonyandcleopatra,1606 freer,1,antonyandcleopatra,1606 strumpets,1,antonyandcleopatra,1606 poisonous,1,antonyandcleopatra,1606 whine,1,antonyandcleopatra,1606 lieutenantry,1,antonyandcleopatra,1606 Neptune,1,antonyandcleopatra,1606 younger,1,antonyandcleopatra,1606 darkness,1,antonyandcleopatra,1606 painted,1,antonyandcleopatra,1606 groan,1,antonyandcleopatra,1606 bounteous,1,antonyandcleopatra,1606 Hoists,1,antonyandcleopatra,1606 herd,1,antonyandcleopatra,1606 fetters,1,antonyandcleopatra,1606 mere,1,antonyandcleopatra,1606 mean'st,1,antonyandcleopatra,1606 Cried,1,antonyandcleopatra,1606 ruffian,1,antonyandcleopatra,1606 security,1,antonyandcleopatra,1606 loathness,1,antonyandcleopatra,1606 prosperous,1,antonyandcleopatra,1606 errand,1,antonyandcleopatra,1606 toil,1,antonyandcleopatra,1606 aprons,1,antonyandcleopatra,1606 drum,1,antonyandcleopatra,1606 comest,1,antonyandcleopatra,1606 learn'd,1,antonyandcleopatra,1606 puzzle,1,antonyandcleopatra,1606 answering,1,antonyandcleopatra,1606 rumour,1,antonyandcleopatra,1606 rig,1,antonyandcleopatra,1606 dodge,1,antonyandcleopatra,1606 instrument,1,antonyandcleopatra,1606 rods,1,antonyandcleopatra,1606 looked,1,antonyandcleopatra,1606 naked,1,antonyandcleopatra,1606 advance,1,antonyandcleopatra,1606 slander,1,antonyandcleopatra,1606 understand,1,antonyandcleopatra,1606 writings,1,antonyandcleopatra,1606 strangler,1,antonyandcleopatra,1606 praising,1,antonyandcleopatra,1606 flow,1,antonyandcleopatra,1606 its,1,antonyandcleopatra,1606 richly,1,antonyandcleopatra,1606 exactly,1,antonyandcleopatra,1606 although,1,antonyandcleopatra,1606 Frighted,1,antonyandcleopatra,1606 lordliness,1,antonyandcleopatra,1606 appeal,1,antonyandcleopatra,1606 nought,1,antonyandcleopatra,1606 foams,1,antonyandcleopatra,1606 jaded,1,antonyandcleopatra,1606 prey,1,antonyandcleopatra,1606 thirty,1,antonyandcleopatra,1606 terrible,1,antonyandcleopatra,1606 taunts,1,antonyandcleopatra,1606 dreaming,1,antonyandcleopatra,1606 swerving,1,antonyandcleopatra,1606 yarely,1,antonyandcleopatra,1606 advise,1,antonyandcleopatra,1606 earns,1,antonyandcleopatra,1606 nick'd,1,antonyandcleopatra,1606 iron,1,antonyandcleopatra,1606 sore,1,antonyandcleopatra,1606 worm's,1,antonyandcleopatra,1606 Acquire,1,antonyandcleopatra,1606 Condemning,1,antonyandcleopatra,1606 worky,1,antonyandcleopatra,1606 builds,1,antonyandcleopatra,1606 Unpolicied,1,antonyandcleopatra,1606 rates,1,antonyandcleopatra,1606 Pour,1,antonyandcleopatra,1606 AEMILIUS,1,antonyandcleopatra,1606 resolution's,1,antonyandcleopatra,1606 lief,1,antonyandcleopatra,1606 rated,1,antonyandcleopatra,1606 wing'd,1,antonyandcleopatra,1606 Vanish,1,antonyandcleopatra,1606 Married,1,antonyandcleopatra,1606 goest,1,antonyandcleopatra,1606 shoved,1,antonyandcleopatra,1606 whoreson,1,antonyandcleopatra,1606 muss,1,antonyandcleopatra,1606 curious,1,antonyandcleopatra,1606 PERSONAE,1,antonyandcleopatra,1606 wither,1,antonyandcleopatra,1606 province,1,antonyandcleopatra,1606 moist,1,antonyandcleopatra,1606 demand,1,antonyandcleopatra,1606 agreed,1,antonyandcleopatra,1606 saved,1,antonyandcleopatra,1606 battled,1,antonyandcleopatra,1606 lightning,1,antonyandcleopatra,1606 Horrible,1,antonyandcleopatra,1606 mingled,1,antonyandcleopatra,1606 Ionian,1,antonyandcleopatra,1606 battles,1,antonyandcleopatra,1606 Ballad,1,antonyandcleopatra,1606 Pont,1,antonyandcleopatra,1606 softly,1,antonyandcleopatra,1606 chares,1,antonyandcleopatra,1606 walking,1,antonyandcleopatra,1606 derogately,1,antonyandcleopatra,1606 Alps,1,antonyandcleopatra,1606 ascended,1,antonyandcleopatra,1606 bridegroom,1,antonyandcleopatra,1606 spared,1,antonyandcleopatra,1606 lustre,1,antonyandcleopatra,1606 performance,1,antonyandcleopatra,1606 Peloponnesus,1,antonyandcleopatra,1606 stirring,1,antonyandcleopatra,1606 practised,1,antonyandcleopatra,1606 Poor,1,antonyandcleopatra,1606 passions,1,antonyandcleopatra,1606 bending,1,antonyandcleopatra,1606 chid,1,antonyandcleopatra,1606 plied,1,antonyandcleopatra,1606 palates,1,antonyandcleopatra,1606 graces,1,antonyandcleopatra,1606 seven,1,antonyandcleopatra,1606 preys,1,antonyandcleopatra,1606 sons,1,antonyandcleopatra,1606 grasp'd,1,antonyandcleopatra,1606 whatsome'er,1,antonyandcleopatra,1606 Patient,1,antonyandcleopatra,1606 repays,1,antonyandcleopatra,1606 commission's,1,antonyandcleopatra,1606 birth,1,antonyandcleopatra,1606 Rare,1,antonyandcleopatra,1606 crownets,1,antonyandcleopatra,1606 instructed,1,antonyandcleopatra,1606 feather,1,antonyandcleopatra,1606 After,1,antonyandcleopatra,1606 drive,1,antonyandcleopatra,1606 spies,1,antonyandcleopatra,1606 slept,1,antonyandcleopatra,1606 pink,1,antonyandcleopatra,1606 Asia,1,antonyandcleopatra,1606 confusion,1,antonyandcleopatra,1606 compelling,1,antonyandcleopatra,1606 'Yes,1,antonyandcleopatra,1606 thousands,1,antonyandcleopatra,1606 charms,1,antonyandcleopatra,1606 reconciler,1,antonyandcleopatra,1606 reconciles,1,antonyandcleopatra,1606 grieving,1,antonyandcleopatra,1606 piteously,1,antonyandcleopatra,1606 sap,1,antonyandcleopatra,1606 befits,1,antonyandcleopatra,1606 dance,1,antonyandcleopatra,1606 stream,1,antonyandcleopatra,1606 voiced,1,antonyandcleopatra,1606 fortunate,1,antonyandcleopatra,1606 atone,1,antonyandcleopatra,1606 bathe,1,antonyandcleopatra,1606 sorrows,1,antonyandcleopatra,1606 Cold,1,antonyandcleopatra,1606 opposed,1,antonyandcleopatra,1606 silver'd,1,antonyandcleopatra,1606 Provoked,1,antonyandcleopatra,1606 corner,1,antonyandcleopatra,1606 outstare,1,antonyandcleopatra,1606 crying,1,antonyandcleopatra,1606 broken,1,antonyandcleopatra,1606 Aboard,1,antonyandcleopatra,1606 discandying,1,antonyandcleopatra,1606 sennet,1,antonyandcleopatra,1606 caps,1,antonyandcleopatra,1606 sought'st,1,antonyandcleopatra,1606 afterwards,1,antonyandcleopatra,1606 Rank,1,antonyandcleopatra,1606 prophesying,1,antonyandcleopatra,1606 enthroned,1,antonyandcleopatra,1606 plight,1,antonyandcleopatra,1606 Bliss,1,antonyandcleopatra,1606 posts,1,antonyandcleopatra,1606 Remember,1,antonyandcleopatra,1606 concerns,1,antonyandcleopatra,1606 awry,1,antonyandcleopatra,1606 anchor,1,antonyandcleopatra,1606 revels,1,antonyandcleopatra,1606 Woe,1,antonyandcleopatra,1606 dejected,1,antonyandcleopatra,1606 enemy's,1,antonyandcleopatra,1606 undoing,1,antonyandcleopatra,1606 undid,1,antonyandcleopatra,1606 Only,1,antonyandcleopatra,1606 wants,1,antonyandcleopatra,1606 spurns,1,antonyandcleopatra,1606 adjacent,1,antonyandcleopatra,1606 hearing,1,antonyandcleopatra,1606 soften,1,antonyandcleopatra,1606 lowering,1,antonyandcleopatra,1606 madness,1,antonyandcleopatra,1606 babes,1,antonyandcleopatra,1606 golden,1,antonyandcleopatra,1606 knaves,1,antonyandcleopatra,1606 calm,1,antonyandcleopatra,1606 demands,1,antonyandcleopatra,1606 soonest,1,antonyandcleopatra,1606 gross,1,antonyandcleopatra,1606 nests,1,antonyandcleopatra,1606 Ambassador,1,antonyandcleopatra,1606 officers,1,antonyandcleopatra,1606 making,1,antonyandcleopatra,1606 deities,1,antonyandcleopatra,1606 chains,1,antonyandcleopatra,1606 teach,1,antonyandcleopatra,1606 gests,1,antonyandcleopatra,1606 veins,1,antonyandcleopatra,1606 Methinks,1,antonyandcleopatra,1606 Laugh,1,antonyandcleopatra,1606 toys,1,antonyandcleopatra,1606 target,1,antonyandcleopatra,1606 furious,1,antonyandcleopatra,1606 targes,1,antonyandcleopatra,1606 Avaunt,1,antonyandcleopatra,1606 squadrons,1,antonyandcleopatra,1606 pillar,1,antonyandcleopatra,1606 abode,1,antonyandcleopatra,1606 visit,1,antonyandcleopatra,1606 blossoming,1,antonyandcleopatra,1606 XIV,1,antonyandcleopatra,1606 lesser,1,antonyandcleopatra,1606 purposeth,1,antonyandcleopatra,1606 boar,1,antonyandcleopatra,1606 intrinsicate,1,antonyandcleopatra,1606 paltry,1,antonyandcleopatra,1606 slippery,1,antonyandcleopatra,1606 partner,1,antonyandcleopatra,1606 adornings,1,antonyandcleopatra,1606 unseminar'd,1,antonyandcleopatra,1606 Met'st,1,antonyandcleopatra,1606 stanch,1,antonyandcleopatra,1606 general's,1,antonyandcleopatra,1606 moving,1,antonyandcleopatra,1606 batter,1,antonyandcleopatra,1606 prosecution,1,antonyandcleopatra,1606 cities,1,antonyandcleopatra,1606 impress,1,antonyandcleopatra,1606 Perchance,1,antonyandcleopatra,1606 Demuring,1,antonyandcleopatra,1606 barks,1,antonyandcleopatra,1606 deserve,1,antonyandcleopatra,1606 pillow,1,antonyandcleopatra,1606 shamed,1,antonyandcleopatra,1606 weaker,1,antonyandcleopatra,1606 hereafter,1,antonyandcleopatra,1606 wage,1,antonyandcleopatra,1606 acted,1,antonyandcleopatra,1606 joining,1,antonyandcleopatra,1606 shames,1,antonyandcleopatra,1606 Off,1,antonyandcleopatra,1606 compliment,1,antonyandcleopatra,1606 throned,1,antonyandcleopatra,1606 spheres,1,antonyandcleopatra,1606 boat,1,antonyandcleopatra,1606 proclaims,1,antonyandcleopatra,1606 accumulation,1,antonyandcleopatra,1606 afflict,1,antonyandcleopatra,1606 sin,1,antonyandcleopatra,1606 innocents,1,antonyandcleopatra,1606 conceive,1,antonyandcleopatra,1606 prevail'd,1,antonyandcleopatra,1606 orbs,1,antonyandcleopatra,1606 pursed,1,antonyandcleopatra,1606 Happily,1,antonyandcleopatra,1606 Soundly,1,antonyandcleopatra,1606 Beyond,1,antonyandcleopatra,1606 'twere,1,antonyandcleopatra,1606 droven,1,antonyandcleopatra,1606 wearer,1,antonyandcleopatra,1606 scourge,1,antonyandcleopatra,1606 noises,1,antonyandcleopatra,1606 'A,1,antonyandcleopatra,1606 walk,1,antonyandcleopatra,1606 invention,1,antonyandcleopatra,1606 sworder,1,antonyandcleopatra,1606 vice,1,antonyandcleopatra,1606 Observe,1,antonyandcleopatra,1606 deceived,1,antonyandcleopatra,1606 Kneel,1,antonyandcleopatra,1606 flying,1,antonyandcleopatra,1606 justest,1,antonyandcleopatra,1606 catching,1,antonyandcleopatra,1606 gipsy's,1,antonyandcleopatra,1606 languish,1,antonyandcleopatra,1606 laying,1,antonyandcleopatra,1606 lions,1,antonyandcleopatra,1606 beasts,1,antonyandcleopatra,1606 scorn,1,antonyandcleopatra,1606 Walk,1,antonyandcleopatra,1606 Caelius,1,antonyandcleopatra,1606 score,1,antonyandcleopatra,1606 love's,1,antonyandcleopatra,1606 betrayed,1,antonyandcleopatra,1606 actor,1,antonyandcleopatra,1606 Tempt,1,antonyandcleopatra,1606 deliver,1,antonyandcleopatra,1606 embrace,1,antonyandcleopatra,1606 earnestly,1,antonyandcleopatra,1606 thunders,1,antonyandcleopatra,1606 vanishest,1,antonyandcleopatra,1606 equalness,1,antonyandcleopatra,1606 vine,1,antonyandcleopatra,1606 darting,1,antonyandcleopatra,1606 Such,1,antonyandcleopatra,1606 stripes,1,antonyandcleopatra,1606 considerate,1,antonyandcleopatra,1606 nourishes,1,antonyandcleopatra,1606 becomed,1,antonyandcleopatra,1606 bringing,1,antonyandcleopatra,1606 augurer,1,antonyandcleopatra,1606 subject,1,antonyandcleopatra,1606 Rememberest,1,antonyandcleopatra,1606 way's,1,antonyandcleopatra,1606 where's,1,antonyandcleopatra,1606 counsel,1,antonyandcleopatra,1606 ashore,1,antonyandcleopatra,1606 kindle,1,antonyandcleopatra,1606 dignities,1,antonyandcleopatra,1606 hotter,1,antonyandcleopatra,1606 cropp'd,1,antonyandcleopatra,1606 persisted,1,antonyandcleopatra,1606 it's,1,antonyandcleopatra,1606 sued,1,antonyandcleopatra,1606 livery,1,antonyandcleopatra,1606 design,1,antonyandcleopatra,1606 sues,1,antonyandcleopatra,1606 acquainted,1,antonyandcleopatra,1606 disgrace,1,antonyandcleopatra,1606 permit,1,antonyandcleopatra,1606 study,1,antonyandcleopatra,1606 hunted,1,antonyandcleopatra,1606 deserts,1,antonyandcleopatra,1606 level,1,antonyandcleopatra,1606 squares,1,antonyandcleopatra,1606 sky,1,antonyandcleopatra,1606 scythe,1,antonyandcleopatra,1606 wings,1,antonyandcleopatra,1606 unmatchable,1,antonyandcleopatra,1606 Setting,1,antonyandcleopatra,1606 Itself,1,antonyandcleopatra,1606 rarer,1,antonyandcleopatra,1606 doubt,1,antonyandcleopatra,1606 Thanks,1,antonyandcleopatra,1606 pieces,1,antonyandcleopatra,1606 stuff,1,antonyandcleopatra,1606 mother,1,antonyandcleopatra,1606 Spake,1,antonyandcleopatra,1606 dearth,1,antonyandcleopatra,1606 mattress,1,antonyandcleopatra,1606 betwixt,1,antonyandcleopatra,1606 Silvius,1,antonyandcleopatra,1606 Walk'd,1,antonyandcleopatra,1606 amiss,1,antonyandcleopatra,1606 Experience,1,antonyandcleopatra,1606 denounced,1,antonyandcleopatra,1606 throes,1,antonyandcleopatra,1606 Authority,1,antonyandcleopatra,1606 stuck,1,antonyandcleopatra,1606 coward's,1,antonyandcleopatra,1606 abstract,1,antonyandcleopatra,1606 civilly,1,antonyandcleopatra,1606 swelling,1,antonyandcleopatra,1606 declining,1,antonyandcleopatra,1606 goddesses,1,antonyandcleopatra,1606 thieves,1,antonyandcleopatra,1606 appetites,1,antonyandcleopatra,1606 rear,1,antonyandcleopatra,1606 gaoler,1,antonyandcleopatra,1606 taught,1,antonyandcleopatra,1606 merit,1,antonyandcleopatra,1606 mocks,1,antonyandcleopatra,1606 Immortal,1,antonyandcleopatra,1606 runner,1,antonyandcleopatra,1606 harried,1,antonyandcleopatra,1606 waged,1,antonyandcleopatra,1606 quail,1,antonyandcleopatra,1606 landmen,1,antonyandcleopatra,1606 merchants,1,antonyandcleopatra,1606 lingering,1,antonyandcleopatra,1606 hautboys,1,antonyandcleopatra,1606 Wast,1,antonyandcleopatra,1606 snow,1,antonyandcleopatra,1606 courtiers,1,antonyandcleopatra,1606 ante,1,antonyandcleopatra,1606 dancer,1,antonyandcleopatra,1606 monster,1,antonyandcleopatra,1606 marring,1,antonyandcleopatra,1606 afraid,1,antonyandcleopatra,1606 Cheer,1,antonyandcleopatra,1606 builded,1,antonyandcleopatra,1606 give's,1,antonyandcleopatra,1606 Higher,1,antonyandcleopatra,1606 head's,1,antonyandcleopatra,1606 daughter,1,antonyandcleopatra,1606 mirror's,1,antonyandcleopatra,1606 laden,1,antonyandcleopatra,1606 Disgrace,1,antonyandcleopatra,1606 proceeded,1,antonyandcleopatra,1606 reed,1,antonyandcleopatra,1606 Wash,1,antonyandcleopatra,1606 reel,1,antonyandcleopatra,1606 combined,1,antonyandcleopatra,1606 Wars,1,antonyandcleopatra,1606 lucky,1,antonyandcleopatra,1606 falls,1,antonyandcleopatra,1606 Splitted,1,antonyandcleopatra,1606 salad,1,antonyandcleopatra,1606 raises,1,antonyandcleopatra,1606 adulterous,1,antonyandcleopatra,1606 commit,1,antonyandcleopatra,1606 Sound,1,antonyandcleopatra,1606 lated,1,antonyandcleopatra,1606 mark'd,1,antonyandcleopatra,1606 showers,1,antonyandcleopatra,1606 household,1,antonyandcleopatra,1606 pearl,1,antonyandcleopatra,1606 weep't,1,antonyandcleopatra,1606 bestrid,1,antonyandcleopatra,1606 sty,1,antonyandcleopatra,1606 humble,1,antonyandcleopatra,1606 coloured,1,antonyandcleopatra,1606 Lichas,1,antonyandcleopatra,1606 Embracing,1,antonyandcleopatra,1606 Report,1,antonyandcleopatra,1606 sup,1,antonyandcleopatra,1606 paragon,1,antonyandcleopatra,1606 elder,1,antonyandcleopatra,1606 Seeming,1,antonyandcleopatra,1606 palter,1,antonyandcleopatra,1606 rigg'd,1,antonyandcleopatra,1606 fearful,1,antonyandcleopatra,1606 ancestor,1,antonyandcleopatra,1606 speediest,1,antonyandcleopatra,1606 cease,1,antonyandcleopatra,1606 Sardinia,1,antonyandcleopatra,1606 defeat'st,1,antonyandcleopatra,1606 sauce,1,antonyandcleopatra,1606 variety,1,antonyandcleopatra,1606 Ptolemies',1,antonyandcleopatra,1606 humbly,1,antonyandcleopatra,1606 'No',1,antonyandcleopatra,1606 galleys,1,antonyandcleopatra,1606 tight,1,antonyandcleopatra,1606 brief,1,antonyandcleopatra,1606 malice,1,antonyandcleopatra,1606 Servitors,1,antonyandcleopatra,1606 upon's,1,antonyandcleopatra,1606 cuckoo,1,antonyandcleopatra,1606 brine,1,antonyandcleopatra,1606 Betwixt,1,antonyandcleopatra,1606 baser,1,antonyandcleopatra,1606 hales,1,antonyandcleopatra,1606 captainship,1,antonyandcleopatra,1606 speaking,1,antonyandcleopatra,1606 choose,1,antonyandcleopatra,1606 lion's,1,antonyandcleopatra,1606 teller,1,antonyandcleopatra,1606 attires,1,antonyandcleopatra,1606 Bestow,1,antonyandcleopatra,1606 prized,1,antonyandcleopatra,1606 ceremony,1,antonyandcleopatra,1606 bolts,1,antonyandcleopatra,1606 fought'st,1,antonyandcleopatra,1606 Retire,1,antonyandcleopatra,1606 browsed'st,1,antonyandcleopatra,1606 bourn,1,antonyandcleopatra,1606 from's,1,antonyandcleopatra,1606 Pack'd,1,antonyandcleopatra,1606 oily,1,antonyandcleopatra,1606 caves,1,antonyandcleopatra,1606 rend,1,antonyandcleopatra,1606 Laden,1,antonyandcleopatra,1606 Blow,1,antonyandcleopatra,1606 night's,1,antonyandcleopatra,1606 title,1,antonyandcleopatra,1606 latter,1,antonyandcleopatra,1606 outwork,1,antonyandcleopatra,1606 Please,1,antonyandcleopatra,1606 entertained,1,antonyandcleopatra,1606 steal,1,antonyandcleopatra,1606 rely,1,antonyandcleopatra,1606 strew'd,1,antonyandcleopatra,1606 wipe,1,antonyandcleopatra,1606 Friend,1,antonyandcleopatra,1606 wholly,1,antonyandcleopatra,1606 Broad,1,antonyandcleopatra,1606 know'st,1,antonyandcleopatra,1606 diet,1,antonyandcleopatra,1606 trifles,1,antonyandcleopatra,1606 go'st,1,antonyandcleopatra,1606 requests,1,antonyandcleopatra,1606 turned,1,antonyandcleopatra,1606 anon,1,antonyandcleopatra,1606 fortress,1,antonyandcleopatra,1606 custom,1,antonyandcleopatra,1606 eagle,1,antonyandcleopatra,1606 imperious,1,antonyandcleopatra,1606 wire,1,antonyandcleopatra,1606 property,1,antonyandcleopatra,1606 displeasure,1,antonyandcleopatra,1606 vials,1,antonyandcleopatra,1606 staying,1,antonyandcleopatra,1606 seem'd,1,antonyandcleopatra,1606 pierce,1,antonyandcleopatra,1606 window,1,antonyandcleopatra,1606 hatch,1,antonyandcleopatra,1606 voice,1,antonyandcleopatra,1606 harbour,1,antonyandcleopatra,1606 crescent,1,antonyandcleopatra,1606 Detain,1,antonyandcleopatra,1606 bond,1,antonyandcleopatra,1606 dice,1,antonyandcleopatra,1606 breeding,1,antonyandcleopatra,1606 meat,1,antonyandcleopatra,1606 triple,1,antonyandcleopatra,1606 rule,1,antonyandcleopatra,1606 Burn,1,antonyandcleopatra,1606 meal,1,antonyandcleopatra,1606 mistake,1,antonyandcleopatra,1606 join'd,1,antonyandcleopatra,1606 stirr'd,1,antonyandcleopatra,1606 Turning,1,antonyandcleopatra,1606 steed,1,antonyandcleopatra,1606 revel,1,antonyandcleopatra,1606 steel,1,antonyandcleopatra,1606 domestic,1,antonyandcleopatra,1606 rules,1,antonyandcleopatra,1606 Ladies,1,antonyandcleopatra,1606 distrust,1,antonyandcleopatra,1606 sweating,1,antonyandcleopatra,1606 dear'st,1,antonyandcleopatra,1606 Nereides,1,antonyandcleopatra,1606 riggish,1,antonyandcleopatra,1606 steer,1,antonyandcleopatra,1606 book,1,antonyandcleopatra,1606 chastised,1,antonyandcleopatra,1606 manhood,1,antonyandcleopatra,1606 bright,1,antonyandcleopatra,1606 feeders,1,antonyandcleopatra,1606 Traduced,1,antonyandcleopatra,1606 party,1,antonyandcleopatra,1606 presageth,1,antonyandcleopatra,1606 sceptre,1,antonyandcleopatra,1606 praises,1,antonyandcleopatra,1606 distraction,1,antonyandcleopatra,1606 hungry,1,antonyandcleopatra,1606 healthful,1,antonyandcleopatra,1606 Descended,1,antonyandcleopatra,1606 Drive,1,antonyandcleopatra,1606 deserver,1,antonyandcleopatra,1606 patch'd,1,antonyandcleopatra,1606 Raised,1,antonyandcleopatra,1606 conditions,1,antonyandcleopatra,1606 project,1,antonyandcleopatra,1606 aspect,1,antonyandcleopatra,1606 Sentinels,1,antonyandcleopatra,1606 shorter,1,antonyandcleopatra,1606 grind,1,antonyandcleopatra,1606 receive't,1,antonyandcleopatra,1606 Forborne,1,antonyandcleopatra,1606 stir,1,antonyandcleopatra,1606 emptiness,1,antonyandcleopatra,1606 daff't,1,antonyandcleopatra,1606 slaves,1,antonyandcleopatra,1606 drown,1,antonyandcleopatra,1606 mediation,1,antonyandcleopatra,1606 Leaving,1,antonyandcleopatra,1606 Taken,1,antonyandcleopatra,1606 strongly,1,antonyandcleopatra,1606 melancholy,1,antonyandcleopatra,1606 hap,1,antonyandcleopatra,1606 visible,1,antonyandcleopatra,1606 enchanting,1,antonyandcleopatra,1606 approof,1,antonyandcleopatra,1606 backs,1,antonyandcleopatra,1606 slackness,1,antonyandcleopatra,1606 planet,1,antonyandcleopatra,1606 Themselves,1,antonyandcleopatra,1606 aboard,1,antonyandcleopatra,1606 While,1,antonyandcleopatra,1606 A',1,antonyandcleopatra,1606 adjoining,1,antonyandcleopatra,1606 trimming,1,antonyandcleopatra,1606 crack,1,antonyandcleopatra,1606 Unstate,1,antonyandcleopatra,1606 Draws,1,antonyandcleopatra,1606 neigh'd,1,antonyandcleopatra,1606 Belike,1,antonyandcleopatra,1606 serving,1,antonyandcleopatra,1606 talks,1,antonyandcleopatra,1606 chronicle,1,antonyandcleopatra,1606 delights,1,antonyandcleopatra,1606 Poison'd,1,antonyandcleopatra,1606 exercise,1,antonyandcleopatra,1606 'Twere,1,antonyandcleopatra,1606 Possess,1,antonyandcleopatra,1606 twins,1,antonyandcleopatra,1606 wheel'd,1,antonyandcleopatra,1606 balls,1,antonyandcleopatra,1606 perfection,1,antonyandcleopatra,1606 flatters,1,antonyandcleopatra,1606 Am,1,antonyandcleopatra,1606 womanly,1,antonyandcleopatra,1606 tonight,1,antonyandcleopatra,1606 quarrel,1,antonyandcleopatra,1606 Ionia,1,antonyandcleopatra,1606 wronged,1,antonyandcleopatra,1606 variance,1,antonyandcleopatra,1606 mutiny,1,antonyandcleopatra,1606 approaching,1,antonyandcleopatra,1606 pendent,1,antonyandcleopatra,1606 bow,1,antonyandcleopatra,1606 loath,1,antonyandcleopatra,1606 Whiles,1,antonyandcleopatra,1606 wassails,1,antonyandcleopatra,1606 eternal,1,antonyandcleopatra,1606 bereave,1,antonyandcleopatra,1606 inclines,1,antonyandcleopatra,1606 knowing,1,antonyandcleopatra,1606 dungy,1,antonyandcleopatra,1606 shortly,1,antonyandcleopatra,1606 beggar'd,1,antonyandcleopatra,1606 pyramises,1,antonyandcleopatra,1606 lance,1,antonyandcleopatra,1606 desperate,1,antonyandcleopatra,1606 behold'st,1,antonyandcleopatra,1606 Sovereign,1,antonyandcleopatra,1606 Still,1,antonyandcleopatra,1606 spoil'd,1,antonyandcleopatra,1606 spots,1,antonyandcleopatra,1606 plough'd,1,antonyandcleopatra,1606 Drink,1,antonyandcleopatra,1606 Me,1,antonyandcleopatra,1606 warrior,1,antonyandcleopatra,1606 O',1,antonyandcleopatra,1606 perfume,1,antonyandcleopatra,1606 Stand,1,antonyandcleopatra,1606 enmities,1,antonyandcleopatra,1606 routed,1,antonyandcleopatra,1606 proof,1,antonyandcleopatra,1606 treble,1,antonyandcleopatra,1606 loof'd,1,antonyandcleopatra,1606 cruel,1,antonyandcleopatra,1606 subscribe,1,antonyandcleopatra,1606 Bocchus,1,antonyandcleopatra,1606 Says,1,antonyandcleopatra,1606 greatly,1,antonyandcleopatra,1606 belike,1,antonyandcleopatra,1606 canst,1,antonyandcleopatra,1606 creature,1,antonyandcleopatra,1606 Answer,1,antonyandcleopatra,1606 exceed,1,antonyandcleopatra,1606 lottery,1,antonyandcleopatra,1606 dreaded,1,antonyandcleopatra,1606 fouler,1,antonyandcleopatra,1606 Cilicia,1,antonyandcleopatra,1606 begun,1,antonyandcleopatra,1606 shines,1,antonyandcleopatra,1606 stag,1,antonyandcleopatra,1606 to's,1,antonyandcleopatra,1606 hid,1,antonyandcleopatra,1606 innocent,1,antonyandcleopatra,1606 Within,1,antonyandcleopatra,1606 wot'st,1,antonyandcleopatra,1606 helmet,1,antonyandcleopatra,1606 ashes,1,antonyandcleopatra,1606 tear,1,antonyandcleopatra,1606 Something,1,antonyandcleopatra,1606 flowers,1,antonyandcleopatra,1606 medicine,1,antonyandcleopatra,1606 required,1,antonyandcleopatra,1606 approve,1,antonyandcleopatra,1606 dinner,1,antonyandcleopatra,1606 blest,1,antonyandcleopatra,1606 fanning,1,antonyandcleopatra,1606 carbuncled,1,antonyandcleopatra,1606 fortune's,1,antonyandcleopatra,1606 Lethe'd,1,antonyandcleopatra,1606 triumvirs,1,antonyandcleopatra,1606 pinches,1,antonyandcleopatra,1606 bruised,1,antonyandcleopatra,1606 wither'd,1,antonyandcleopatra,1606 unhair,1,antonyandcleopatra,1606 revenue,1,antonyandcleopatra,1606 despair,1,antonyandcleopatra,1606 Doubt,1,antonyandcleopatra,1606 mermaid,1,antonyandcleopatra,1606 boggler,1,antonyandcleopatra,1606 greasy,1,antonyandcleopatra,1606 Swallows,1,antonyandcleopatra,1606 earn,1,antonyandcleopatra,1606 nobility,1,antonyandcleopatra,1606 Up,1,antonyandcleopatra,1606 nice,1,antonyandcleopatra,1606 admiral,1,antonyandcleopatra,1606 yourselves,1,antonyandcleopatra,1606 formerly,1,antonyandcleopatra,1606 devotion,1,antonyandcleopatra,1606 outlive,1,antonyandcleopatra,1606 curled,1,antonyandcleopatra,1606 attentive,1,antonyandcleopatra,1606 perceive't,1,antonyandcleopatra,1606 absurd,1,antonyandcleopatra,1606 Seems,1,antonyandcleopatra,1606 became,1,antonyandcleopatra,1606 demon,1,antonyandcleopatra,1606 Submits,1,antonyandcleopatra,1606 lipp'd,1,antonyandcleopatra,1606 sirs,1,antonyandcleopatra,1606 courteous,1,antonyandcleopatra,1606 priests,1,antonyandcleopatra,1606 XV,1,antonyandcleopatra,1606 sought,1,antonyandcleopatra,1606 plants,1,antonyandcleopatra,1606 unequal,1,antonyandcleopatra,1606 haunt,1,antonyandcleopatra,1606 Continues,1,antonyandcleopatra,1606 Drop,1,antonyandcleopatra,1606 moons,1,antonyandcleopatra,1606 Murder,1,antonyandcleopatra,1606 royalty,1,antonyandcleopatra,1606 Thou'rt,1,antonyandcleopatra,1606 bulk,1,antonyandcleopatra,1606 challenge,1,antonyandcleopatra,1606 weet,1,antonyandcleopatra,1606 Ventidius's,1,antonyandcleopatra,1606 bluest,1,antonyandcleopatra,1606 hills,1,antonyandcleopatra,1606 branded,1,antonyandcleopatra,1606 bend,1,antonyandcleopatra,1606 stray,1,antonyandcleopatra,1606 abides,1,antonyandcleopatra,1606 mankind,1,antonyandcleopatra,1606 Heard,1,antonyandcleopatra,1606 Importeth,1,antonyandcleopatra,1606 malefactor,1,antonyandcleopatra,1606 Jove's,1,antonyandcleopatra,1606 engender,1,antonyandcleopatra,1606 Heart,1,antonyandcleopatra,1606 imagine,1,antonyandcleopatra,1606 belief,1,antonyandcleopatra,1606 bury,1,antonyandcleopatra,1606 eclipsed,1,antonyandcleopatra,1606 tumble,1,antonyandcleopatra,1606 suffer'd,1,antonyandcleopatra,1606 Melt,1,antonyandcleopatra,1606 drench,1,antonyandcleopatra,1606 dove,1,antonyandcleopatra,1606 thunderbolt,1,antonyandcleopatra,1606 bell,1,antonyandcleopatra,1606 affect'st,1,antonyandcleopatra,1606 Emperor,1,antonyandcleopatra,1606 cherish'd,1,antonyandcleopatra,1606 kindness,1,antonyandcleopatra,1606 posture,1,antonyandcleopatra,1606 car,1,antonyandcleopatra,1606 breathing,1,antonyandcleopatra,1606 Ingross'd,1,antonyandcleopatra,1606 harping,1,antonyandcleopatra,1606 Transform,1,antonyandcleopatra,1606 awaked,1,antonyandcleopatra,1606 tell'st,1,antonyandcleopatra,1606 sounds,1,antonyandcleopatra,1606 Plant,1,antonyandcleopatra,1606 tricks,1,antonyandcleopatra,1606 thickens,1,antonyandcleopatra,1606 'tween,1,antonyandcleopatra,1606 Seest,1,antonyandcleopatra,1606 strives,1,antonyandcleopatra,1606 defects,1,antonyandcleopatra,1606 reference,1,antonyandcleopatra,1606 darkling,1,antonyandcleopatra,1606 couch,1,antonyandcleopatra,1606 devised,1,antonyandcleopatra,1606 muleters,1,antonyandcleopatra,1606 Confined,1,antonyandcleopatra,1606 scuffles,1,antonyandcleopatra,1606 bent,1,antonyandcleopatra,1606 treasons,1,antonyandcleopatra,1606 infectious,1,antonyandcleopatra,1606 Strange,1,antonyandcleopatra,1606 Salt,1,antonyandcleopatra,1606 Life,1,antonyandcleopatra,1606 beyond,1,antonyandcleopatra,1606 frailties,1,antonyandcleopatra,1606 lamps,1,antonyandcleopatra,1606 shadow,1,antonyandcleopatra,1606 Wishes,1,antonyandcleopatra,1606 lackeying,1,antonyandcleopatra,1606 lank'd,1,antonyandcleopatra,1606 'greed,1,antonyandcleopatra,1606 reaping,1,antonyandcleopatra,1606 Enthroned,1,antonyandcleopatra,1606 plough,1,antonyandcleopatra,1606 courtesies,1,antonyandcleopatra,1606 Arabia,1,antonyandcleopatra,1606 meanest,1,antonyandcleopatra,1606 Drawing,1,antonyandcleopatra,1606 bended,1,antonyandcleopatra,1606 buds,1,antonyandcleopatra,1606 mused,1,antonyandcleopatra,1606 Sossius,1,antonyandcleopatra,1606 jewel,1,antonyandcleopatra,1606 despise,1,antonyandcleopatra,1606 prorogue,1,antonyandcleopatra,1606 planks,1,antonyandcleopatra,1606 Holds,1,antonyandcleopatra,1606 theme,1,antonyandcleopatra,1606 Sink,1,antonyandcleopatra,1606 friendly,1,antonyandcleopatra,1606 dissembling,1,antonyandcleopatra,1606 quails,1,antonyandcleopatra,1606 cantle,1,antonyandcleopatra,1606 discomfort,1,antonyandcleopatra,1606 vows,1,antonyandcleopatra,1606 Ajax,1,antonyandcleopatra,1606 Claps,1,antonyandcleopatra,1606 tailors,1,antonyandcleopatra,1606 disguise,1,antonyandcleopatra,1606 dependency,1,antonyandcleopatra,1606 halter'd,1,antonyandcleopatra,1606 About,1,antonyandcleopatra,1606 Demurely,1,antonyandcleopatra,1606 Whate'er,1,antonyandcleopatra,1606 divine,1,antonyandcleopatra,1606 shifts,1,antonyandcleopatra,1606 ambassadors,1,antonyandcleopatra,1606 paint,1,antonyandcleopatra,1606 sink,1,antonyandcleopatra,1606 jump,1,antonyandcleopatra,1606 'Twas,1,antonyandcleopatra,1606 snaffle,1,antonyandcleopatra,1606 sister's,1,antonyandcleopatra,1606 Whither,1,antonyandcleopatra,1606 stretch,1,antonyandcleopatra,1606 moody,1,antonyandcleopatra,1606 hourly,1,antonyandcleopatra,1606 Mede,1,antonyandcleopatra,1606 assign'd,1,antonyandcleopatra,1606 begs,1,antonyandcleopatra,1606 ashamed,1,antonyandcleopatra,1606 turns,1,antonyandcleopatra,1606 Tiber,1,antonyandcleopatra,1606 crownet,1,antonyandcleopatra,1606 immortal,1,antonyandcleopatra,1606 hurts,1,antonyandcleopatra,1606 Chief,1,antonyandcleopatra,1606 importune,1,antonyandcleopatra,1606 crowned,1,antonyandcleopatra,1606 Thessaly,1,antonyandcleopatra,1606 crowns,1,antonyandcleopatra,1606 beck'd,1,antonyandcleopatra,1606 jealousies,1,antonyandcleopatra,1606 Naught,1,antonyandcleopatra,1606 Evils,1,antonyandcleopatra,1606 Name,1,antonyandcleopatra,1606 abysm,1,antonyandcleopatra,1606 pearls,1,antonyandcleopatra,1606 sleepers,1,antonyandcleopatra,1606 solemn,1,antonyandcleopatra,1606 dogs,1,antonyandcleopatra,1606 store,1,antonyandcleopatra,1606 unexecuted,1,antonyandcleopatra,1606 entertain,1,antonyandcleopatra,1606 Alcides,1,antonyandcleopatra,1606 'Fool,1,antonyandcleopatra,1606 taints,1,antonyandcleopatra,1606 raught,1,antonyandcleopatra,1606 Ink,1,antonyandcleopatra,1606 Thrives,1,antonyandcleopatra,1606 deep,1,antonyandcleopatra,1606 instant,1,antonyandcleopatra,1606 wretch,1,antonyandcleopatra,1606 plate,1,antonyandcleopatra,1606 harness,1,antonyandcleopatra,1606 mood,1,antonyandcleopatra,1606 eloquence,1,antonyandcleopatra,1606 Edge,1,antonyandcleopatra,1606 Wherefore's,1,antonyandcleopatra,1606 supplying,1,antonyandcleopatra,1606 betray,1,antonyandcleopatra,1606 magic,1,antonyandcleopatra,1606 aim,1,antonyandcleopatra,1606 citadel,1,antonyandcleopatra,1606 expedience,1,antonyandcleopatra,1606 beck,1,antonyandcleopatra,1606 keeping,1,antonyandcleopatra,1606 puddle,1,antonyandcleopatra,1606 embraced,1,antonyandcleopatra,1606 yea,1,antonyandcleopatra,1606 gift,1,antonyandcleopatra,1606 Mock,1,antonyandcleopatra,1606 raise,1,antonyandcleopatra,1606 principalities,1,antonyandcleopatra,1606 SONG,1,antonyandcleopatra,1606 faster,1,antonyandcleopatra,1606 strut,1,antonyandcleopatra,1606 consider,1,antonyandcleopatra,1606 overtopp'd,1,antonyandcleopatra,1606 jewels,1,antonyandcleopatra,1606 Destroy'd,1,antonyandcleopatra,1606 ooze,1,antonyandcleopatra,1606 violence,1,antonyandcleopatra,1606 promontory,1,antonyandcleopatra,1606 blushest,1,antonyandcleopatra,1606 stool,1,antonyandcleopatra,1606 Making,1,antonyandcleopatra,1606 tawny,1,antonyandcleopatra,1606 stoop,1,antonyandcleopatra,1606 Bless,1,antonyandcleopatra,1606 gain,1,antonyandcleopatra,1606 yes,1,antonyandcleopatra,1606 legs,1,antonyandcleopatra,1606 handsome,1,antonyandcleopatra,1606 gentlewomen,1,antonyandcleopatra,1606 leader's,1,antonyandcleopatra,1606 whereon,1,antonyandcleopatra,1606 unworthy,1,antonyandcleopatra,1606 stablishment,1,antonyandcleopatra,1606 autumn,1,antonyandcleopatra,1606 liberal,1,antonyandcleopatra,1606 gait,1,antonyandcleopatra,1606 depends,1,antonyandcleopatra,1606 dignity,1,antonyandcleopatra,1606 deaf,1,antonyandcleopatra,1606 Noblest,1,antonyandcleopatra,1606 Feed,1,antonyandcleopatra,1606 worthily,1,antonyandcleopatra,1606 pluck'd,1,antonyandcleopatra,1606 Pays,1,antonyandcleopatra,1606 itch,1,antonyandcleopatra,1606 tower'd,1,antonyandcleopatra,1606 Wrinkles,1,antonyandcleopatra,1606 seeming,1,antonyandcleopatra,1606 accuses,1,antonyandcleopatra,1606 stain'd,1,antonyandcleopatra,1606 lighted,1,antonyandcleopatra,1606 Alexander,1,antonyandcleopatra,1606 dwarfish,1,antonyandcleopatra,1606 boast,1,antonyandcleopatra,1606 destruction,1,antonyandcleopatra,1606 heeded,1,antonyandcleopatra,1606 melts,1,antonyandcleopatra,1606 torches,1,antonyandcleopatra,1606 laughing,1,antonyandcleopatra,1606 edges,1,antonyandcleopatra,1606 treaty,1,antonyandcleopatra,1606 Rest,1,antonyandcleopatra,1606 Divide,1,antonyandcleopatra,1606 List,1,antonyandcleopatra,1606 members,1,antonyandcleopatra,1606 appeared,1,antonyandcleopatra,1606 ay,1,antonyandcleopatra,1606 pall'd,1,antonyandcleopatra,1606 Yon,1,antonyandcleopatra,1606 speed,1,antonyandcleopatra,1606 voluptuousness,1,antonyandcleopatra,1606 cocks,1,antonyandcleopatra,1606 game,1,antonyandcleopatra,1606 Pawn,1,antonyandcleopatra,1606 possess'd,1,antonyandcleopatra,1606 Applies,1,antonyandcleopatra,1606 Contemning,1,antonyandcleopatra,1606 cruelty,1,antonyandcleopatra,1606 staged,1,antonyandcleopatra,1606 thyself,1,antonyandcleopatra,1606 slimy,1,antonyandcleopatra,1606 Neptune's,1,antonyandcleopatra,1606 wench,1,antonyandcleopatra,1606 forgotten,1,antonyandcleopatra,1606 rouse,1,antonyandcleopatra,1606 cured,1,antonyandcleopatra,1606 dried,1,antonyandcleopatra,1606 tinct,1,antonyandcleopatra,1606 Pansa,1,antonyandcleopatra,1606 wonderful,1,antonyandcleopatra,1606 ask'd,1,antonyandcleopatra,1606 cowardly,1,antonyandcleopatra,1606 board,1,antonyandcleopatra,1606 commend,1,antonyandcleopatra,1606 attending,1,antonyandcleopatra,1606 Burn'd,1,antonyandcleopatra,1606 threaten,1,antonyandcleopatra,1606 rain'd,1,antonyandcleopatra,1606 fears,1,antonyandcleopatra,1606 scribes,1,antonyandcleopatra,1606 bodies,1,antonyandcleopatra,1606 delay,1,antonyandcleopatra,1606 'Caesar,1,antonyandcleopatra,1606 demi,1,antonyandcleopatra,1606 boars,1,antonyandcleopatra,1606 preparedly,1,antonyandcleopatra,1606 Relieved,1,antonyandcleopatra,1606 Goes,1,antonyandcleopatra,1606 wrangle,1,antonyandcleopatra,1606 sceptres,1,antonyandcleopatra,1606 disquiet,1,antonyandcleopatra,1606 Early,1,antonyandcleopatra,1606 thankful,1,antonyandcleopatra,1606 Fortune's,1,antonyandcleopatra,1606 delicious,1,antonyandcleopatra,1606 idle,1,antonyandcleopatra,1606 Gods,1,antonyandcleopatra,1606 playfellow,1,antonyandcleopatra,1606 sometime,1,antonyandcleopatra,1606 milks,1,antonyandcleopatra,1606 scholar,1,antonyandcleopatra,1606 blackness,1,antonyandcleopatra,1606 varletry,1,antonyandcleopatra,1606 look'st,1,antonyandcleopatra,1606 Took,1,antonyandcleopatra,1606 tippling,1,antonyandcleopatra,1606 Malchus,1,antonyandcleopatra,1606 dolorous,1,antonyandcleopatra,1606 caused,1,antonyandcleopatra,1606 temper,1,antonyandcleopatra,1606 trail,1,antonyandcleopatra,1606 age,1,antonyandcleopatra,1606 Diseases,1,antonyandcleopatra,1606 quickens,1,antonyandcleopatra,1606 spell,1,antonyandcleopatra,1606 hadst,1,antonyandcleopatra,1606 Celerity,1,antonyandcleopatra,1606 gipsy,1,antonyandcleopatra,1606 ink,1,antonyandcleopatra,1606 miserable,1,antonyandcleopatra,1606 impediment,1,antonyandcleopatra,1606 offer'd,1,antonyandcleopatra,1606 lightly,1,antonyandcleopatra,1606 la,1,antonyandcleopatra,1606 Yea,1,antonyandcleopatra,1606 Wouldst,1,antonyandcleopatra,1606 infects,1,antonyandcleopatra,1606 add,1,antonyandcleopatra,1606 gibe,1,antonyandcleopatra,1606 speak'st,1,antonyandcleopatra,1606 achieved,1,antonyandcleopatra,1606 resolved,1,antonyandcleopatra,1606 Servants,1,antonyandcleopatra,1606 wherein,1,antonyandcleopatra,1606 frustrate,1,antonyandcleopatra,1606 spent,1,antonyandcleopatra,1606 celebrate,1,antonyandcleopatra,1606 soils,1,antonyandcleopatra,1606 potent,1,antonyandcleopatra,1606 dispose,1,antonyandcleopatra,1606 bides,1,antonyandcleopatra,1606 earing,1,antonyandcleopatra,1606 blue,1,antonyandcleopatra,1606 continent,1,antonyandcleopatra,1606 Grace,1,antonyandcleopatra,1606 defy,1,antonyandcleopatra,1606 necessary,1,antonyandcleopatra,1606 feats,1,antonyandcleopatra,1606 beauteous,1,antonyandcleopatra,1606 betime,1,antonyandcleopatra,1606 bench,1,antonyandcleopatra,1606 poor'st,1,antonyandcleopatra,1606 meanings,1,antonyandcleopatra,1606 supremacy,1,antonyandcleopatra,1606 spot,1,antonyandcleopatra,1606 Messina,1,antonyandcleopatra,1606 haters,1,antonyandcleopatra,1606 forgot,1,antonyandcleopatra,1606 treasure's,1,antonyandcleopatra,1606 serious,1,antonyandcleopatra,1606 knee,1,antonyandcleopatra,1606 Kiss,1,antonyandcleopatra,1606 uprise,1,antonyandcleopatra,1606 unpress'd,1,antonyandcleopatra,1606 pure,1,antonyandcleopatra,1606 indulgent,1,antonyandcleopatra,1606 Because,1,antonyandcleopatra,1606 treaties,1,antonyandcleopatra,1606 fallible,1,antonyandcleopatra,1606 Came,1,antonyandcleopatra,1606 harm,1,antonyandcleopatra,1606 choice,1,antonyandcleopatra,1606 graver,1,antonyandcleopatra,1606 Whence,1,antonyandcleopatra,1606 basely,1,antonyandcleopatra,1606 Haply,1,antonyandcleopatra,1606 eats,1,antonyandcleopatra,1606 plot,1,antonyandcleopatra,1606 oppression,1,antonyandcleopatra,1606 personal,1,antonyandcleopatra,1606 Splits,1,antonyandcleopatra,1606 fierce,1,antonyandcleopatra,1606 kills,1,antonyandcleopatra,1606 scratch,1,antonyandcleopatra,1606 outward,1,antonyandcleopatra,1606 Gorgon,1,antonyandcleopatra,1606 induce,1,antonyandcleopatra,1606 Brought,1,antonyandcleopatra,1606 Perform,1,antonyandcleopatra,1606 bends,1,antonyandcleopatra,1606 uncaught,1,antonyandcleopatra,1606 smite,1,antonyandcleopatra,1606 faints,1,antonyandcleopatra,1606 Ram,1,antonyandcleopatra,1606 incline,1,antonyandcleopatra,1606 frighted,1,antonyandcleopatra,1606 isle,1,antonyandcleopatra,1606 scutcheons,1,antonyandcleopatra,1606 sinks,1,antonyandcleopatra,1606 contestation,1,antonyandcleopatra,1606 labouring,1,antonyandcleopatra,1606 beggar's,1,antonyandcleopatra,1606 kingly,1,antonyandcleopatra,1606 Lack,1,antonyandcleopatra,1606 signify,1,antonyandcleopatra,1606 Restores,1,antonyandcleopatra,1606 Enobarb,1,antonyandcleopatra,1606 rhymers,1,antonyandcleopatra,1606 employ'd,1,antonyandcleopatra,1606 finish,1,antonyandcleopatra,1606 palate,1,antonyandcleopatra,1606 Read,1,antonyandcleopatra,1606 weeds,1,antonyandcleopatra,1606 spur,1,antonyandcleopatra,1606 acknowledge,1,antonyandcleopatra,1606 serpent's,1,antonyandcleopatra,1606 trade,1,antonyandcleopatra,1606 strings,1,antonyandcleopatra,1606 Follow'd,1,antonyandcleopatra,1606 Lady,1,antonyandcleopatra,1606 liberty,1,antonyandcleopatra,1606 prince,1,antonyandcleopatra,1606 Full,1,antonyandcleopatra,1606 consuls,1,antonyandcleopatra,1606 dens,1,antonyandcleopatra,1606 hardness,1,antonyandcleopatra,1606 ladder,1,antonyandcleopatra,1606 Moon,1,antonyandcleopatra,1606 feasted,1,antonyandcleopatra,1606 descried,1,antonyandcleopatra,1606 Enjoy,1,antonyandcleopatra,1606 pinion'd,1,antonyandcleopatra,1606 suitors,1,antonyandcleopatra,1606 forty,1,antonyandcleopatra,1606 joyful,1,antonyandcleopatra,1606 gaunt,1,antonyandcleopatra,1606 drave,1,antonyandcleopatra,1606 sweetest,1,antonyandcleopatra,1606 mighty,1,antonyandcleopatra,1606 provided,1,antonyandcleopatra,1606 rudest,1,antonyandcleopatra,1606 particulars,1,antonyandcleopatra,1606 halt,1,antonyandcleopatra,1606 daintily,1,antonyandcleopatra,1606 perpetual,1,antonyandcleopatra,1606 combating,1,antonyandcleopatra,1606 applies,1,antonyandcleopatra,1606 Petition,1,antonyandcleopatra,1606 unlawful,1,antonyandcleopatra,1606 Distract,1,antonyandcleopatra,1606 open,1,antonyandcleopatra,1606 Fury,1,antonyandcleopatra,1606 constrain'd,1,antonyandcleopatra,1606 midnight,1,antonyandcleopatra,1606 deaths,1,antonyandcleopatra,1606 Caius,1,antonyandcleopatra,1606 weeps,1,antonyandcleopatra,1606 purged,1,antonyandcleopatra,1606 laurel,1,antonyandcleopatra,1606 Commend,1,antonyandcleopatra,1606 plighter,1,antonyandcleopatra,1606 Equality,1,antonyandcleopatra,1606 Provide,1,antonyandcleopatra,1606 auguring,1,antonyandcleopatra,1606 wastes,1,antonyandcleopatra,1606 Expected,1,antonyandcleopatra,1606 delight,1,antonyandcleopatra,1606 heaviness,1,antonyandcleopatra,1606 fiery,1,antonyandcleopatra,1606 Husband,1,antonyandcleopatra,1606 acquire,1,antonyandcleopatra,1606 carouse,1,antonyandcleopatra,1606 Sufficing,1,antonyandcleopatra,1606 Luxuriously,1,antonyandcleopatra,1606 pyramid,1,antonyandcleopatra,1606 haven,1,antonyandcleopatra,1606 Dispatch,1,antonyandcleopatra,1606 Hipparchus,1,antonyandcleopatra,1606 shakes,1,antonyandcleopatra,1606 grimly,1,antonyandcleopatra,1606 tempests,1,antonyandcleopatra,1606 pace,1,antonyandcleopatra,1606 Photinus,1,antonyandcleopatra,1606 O'ertake,1,antonyandcleopatra,1606 pack,1,antonyandcleopatra,1606 alive,1,antonyandcleopatra,1606 shot,1,antonyandcleopatra,1606 transform'd,1,antonyandcleopatra,1606 mandragora,1,antonyandcleopatra,1606 Cast,1,antonyandcleopatra,1606 Crassus',1,antonyandcleopatra,1606 combat,1,antonyandcleopatra,1606 proper,1,antonyandcleopatra,1606 pyramides,1,antonyandcleopatra,1606 Adallas,1,antonyandcleopatra,1606 chastity,1,antonyandcleopatra,1606 frets,1,antonyandcleopatra,1606 consideration,1,antonyandcleopatra,1606 dragonish,1,antonyandcleopatra,1606 Be'st,1,antonyandcleopatra,1606 gaudy,1,antonyandcleopatra,1606 outstrike,1,antonyandcleopatra,1606 inclips,1,antonyandcleopatra,1606 Hop,1,antonyandcleopatra,1606 fainted,1,antonyandcleopatra,1606 Epicurean,1,antonyandcleopatra,1606 creatures,1,antonyandcleopatra,1606 tearing,1,antonyandcleopatra,1606 obey'd,1,antonyandcleopatra,1606 renowned,1,antonyandcleopatra,1606 beetle,1,antonyandcleopatra,1606 epicure,1,antonyandcleopatra,1606 girl,1,antonyandcleopatra,1606 rear'd,1,antonyandcleopatra,1606 sworest,1,antonyandcleopatra,1606 Addition,1,antonyandcleopatra,1606 forms,1,antonyandcleopatra,1606 mayst,1,antonyandcleopatra,1606 ebbs,1,antonyandcleopatra,1606 urgent,1,antonyandcleopatra,1606 lock,1,antonyandcleopatra,1606 nearly,1,antonyandcleopatra,1606 conclusions,1,antonyandcleopatra,1606 Orodes,1,antonyandcleopatra,1606 Breed,1,antonyandcleopatra,1606 poorer,1,antonyandcleopatra,1606 secret,1,antonyandcleopatra,1606 president,1,antonyandcleopatra,1606 competitors,1,antonyandcleopatra,1606 beggars,1,antonyandcleopatra,1606 olive,1,antonyandcleopatra,1606 roll,1,antonyandcleopatra,1606 disdainful,1,antonyandcleopatra,1606 trick,1,antonyandcleopatra,1606 borders,1,antonyandcleopatra,1606 inquire,1,antonyandcleopatra,1606 distinction,1,antonyandcleopatra,1606 deadly,1,antonyandcleopatra,1606 unloved,1,antonyandcleopatra,1606 Courteous,1,antonyandcleopatra,1606 theirs,1,antonyandcleopatra,1606 purchased,1,antonyandcleopatra,1606 colour'd,1,antonyandcleopatra,1606 hits,1,antonyandcleopatra,1606 beggary,1,antonyandcleopatra,1606 touch,1,antonyandcleopatra,1606 disponge,1,antonyandcleopatra,1606 partaker,1,antonyandcleopatra,1606 cheque,1,antonyandcleopatra,1606 chides,1,antonyandcleopatra,1606 Sometimes,1,antonyandcleopatra,1606 behavior,1,antonyandcleopatra,1606 timelier,1,antonyandcleopatra,1606 keels,1,antonyandcleopatra,1606 Vouchsafed,1,antonyandcleopatra,1606 panted,1,antonyandcleopatra,1606 token,1,antonyandcleopatra,1606 pleach'd,1,antonyandcleopatra,1606 sicken,1,antonyandcleopatra,1606 conversation,1,antonyandcleopatra,1606 Content,1,antonyandcleopatra,1606 trial,1,antonyandcleopatra,1606 hazard,1,antonyandcleopatra,1606 gain'd,1,antonyandcleopatra,1606 Stood,1,antonyandcleopatra,1606 willingly,1,antonyandcleopatra,1606 strongest,1,antonyandcleopatra,1606 guess,1,antonyandcleopatra,1606 magical,1,antonyandcleopatra,1606 here's,1,antonyandcleopatra,1606 scolds,1,antonyandcleopatra,1606 root,1,antonyandcleopatra,1606 treasurer,1,antonyandcleopatra,1606 Tawny,1,antonyandcleopatra,1606 precedent,1,antonyandcleopatra,1606 leaf,1,antonyandcleopatra,1606 jaws,1,antonyandcleopatra,1606 superfluous,1,antonyandcleopatra,1606 Cyprus,1,antonyandcleopatra,1606 Lock'd,1,antonyandcleopatra,1606 triumph'd,1,antonyandcleopatra,1606 watch,1,antonyandcleopatra,1606 fat,1,antonyandcleopatra,1606 wheels,1,antonyandcleopatra,1606 yesterday,1,antonyandcleopatra,1606 regiment,1,antonyandcleopatra,1606 fan,1,antonyandcleopatra,1606 strumpet's,1,antonyandcleopatra,1606 rural,1,antonyandcleopatra,1606 borrow,1,antonyandcleopatra,1606 roof,1,antonyandcleopatra,1606 Lament,1,antonyandcleopatra,1606 Comes,1,antonyandcleopatra,1606 dumb'd,1,antonyandcleopatra,1606 Plumpy,1,antonyandcleopatra,1606 Command,1,antonyandcleopatra,1606 forspoke,1,antonyandcleopatra,1606 distractions,1,antonyandcleopatra,1606 Scant,1,antonyandcleopatra,1606 render'd,1,antonyandcleopatra,1606 Cappadocia,1,antonyandcleopatra,1606 spritely,1,antonyandcleopatra,1606 nag,1,antonyandcleopatra,1606 perceived,1,antonyandcleopatra,1606 condemn'd,1,antonyandcleopatra,1606 unrestored,1,antonyandcleopatra,1606 effected,1,antonyandcleopatra,1606 Phoebus,1,antonyandcleopatra,1606 stomaching,1,antonyandcleopatra,1606 breather,1,antonyandcleopatra,1606 keeps,1,antonyandcleopatra,1606 Shout,1,antonyandcleopatra,1606 becomings,1,antonyandcleopatra,1606 grizzled,1,antonyandcleopatra,1606 destiny,1,antonyandcleopatra,1606 enow,1,antonyandcleopatra,1606 main,1,antonyandcleopatra,1606 sprightly,1,antonyandcleopatra,1606 expected,1,antonyandcleopatra,1606 surfeiter,1,antonyandcleopatra,1606 shave't,1,antonyandcleopatra,1606 shameful,1,antonyandcleopatra,1606 woo't,1,antonyandcleopatra,1606 consider'd,1,antonyandcleopatra,1606 Demand,1,antonyandcleopatra,1606 carried,1,antonyandcleopatra,1606 glow,1,antonyandcleopatra,1606 reporter,1,antonyandcleopatra,1606 rank,1,antonyandcleopatra,1606 errors,1,antonyandcleopatra,1606 Spoke,1,antonyandcleopatra,1606 Manage,1,antonyandcleopatra,1606 Neglected,1,antonyandcleopatra,1606 empty,1,antonyandcleopatra,1606 Ten,1,antonyandcleopatra,1606 carries,1,antonyandcleopatra,1606 ghosted,1,antonyandcleopatra,1606 griefs,1,antonyandcleopatra,1606 Admired,1,antonyandcleopatra,1606 forehead,1,antonyandcleopatra,1606 prisons,1,antonyandcleopatra,1606 breathed,1,antonyandcleopatra,1606 finest,1,antonyandcleopatra,1606 broad,1,antonyandcleopatra,1606 clapp'd,1,antonyandcleopatra,1606 faction,1,antonyandcleopatra,1606 billiards,1,antonyandcleopatra,1606 built,1,antonyandcleopatra,1606 whelp,1,antonyandcleopatra,1606 sickly,1,antonyandcleopatra,1606 Pleased,1,antonyandcleopatra,1606 unknown,1,antonyandcleopatra,1606 Better,1,antonyandcleopatra,1606 darts,1,antonyandcleopatra,1606 repose,1,antonyandcleopatra,1606 thinks,1,antonyandcleopatra,1606 club,1,antonyandcleopatra,1606 primal,1,antonyandcleopatra,1606 rooted,1,antonyandcleopatra,1606 patch,1,antonyandcleopatra,1606 Rarely,1,antonyandcleopatra,1606 deposed,1,antonyandcleopatra,1606 apply,1,antonyandcleopatra,1606 envy,1,antonyandcleopatra,1606 Ptolemies,1,antonyandcleopatra,1606 beast,1,antonyandcleopatra,1606 Crack,1,antonyandcleopatra,1606 trencher,1,antonyandcleopatra,1606 ribaudred,1,antonyandcleopatra,1606 infamous,1,antonyandcleopatra,1606 proceed,1,antonyandcleopatra,1606 wonder,1,antonyandcleopatra,1606 disgraces,1,antonyandcleopatra,1606 workman,1,antonyandcleopatra,1606 levell'd,1,antonyandcleopatra,1606 excusable,1,antonyandcleopatra,1606 estridge,1,antonyandcleopatra,1606 occupation,1,antonyandcleopatra,1606 scroll,1,antonyandcleopatra,1606 presages,1,antonyandcleopatra,1606 accusations,1,antonyandcleopatra,1606 beats,1,antonyandcleopatra,1606 Hang,1,antonyandcleopatra,1606 dulness,1,antonyandcleopatra,1606 Believe't,1,antonyandcleopatra,1606 scald,1,antonyandcleopatra,1606 noon,1,antonyandcleopatra,1606 circle,1,antonyandcleopatra,1606 guides,1,antonyandcleopatra,1606 Pointing,1,antonyandcleopatra,1606 rate,1,antonyandcleopatra,1606 pales,1,antonyandcleopatra,1606 deserving,1,antonyandcleopatra,1606 mislike,1,antonyandcleopatra,1606 cloy,1,antonyandcleopatra,1606 homager,1,antonyandcleopatra,1606 soberly,1,antonyandcleopatra,1606 scottish,1,antonyandcleopatra,1606 tended,1,antonyandcleopatra,1606 disgraced,1,antonyandcleopatra,1606 brazen,1,antonyandcleopatra,1606 beard,1,antonyandcleopatra,1606 bravely,1,antonyandcleopatra,1606 faint,1,antonyandcleopatra,1606 pleaseth,1,antonyandcleopatra,1606 'Take,1,antonyandcleopatra,1606 Affairs,1,antonyandcleopatra,1606 hasten,1,antonyandcleopatra,1606 armourer,1,antonyandcleopatra,1606 solder,1,antonyandcleopatra,1606 feature,1,antonyandcleopatra,1606 entirely,1,antonyandcleopatra,1606 pleasest,1,antonyandcleopatra,1606 rioting,1,antonyandcleopatra,1606 castaway,1,antonyandcleopatra,1606 banners,1,antonyandcleopatra,1606 slew'st,1,antonyandcleopatra,1606 kneels,1,antonyandcleopatra,1606 descended,1,antonyandcleopatra,1606 pregnant,1,antonyandcleopatra,1606 'Ah,1,antonyandcleopatra,1606 chaps,1,antonyandcleopatra,1606 dangers,1,antonyandcleopatra,1606 bellows,1,antonyandcleopatra,1606 'Agrippa,1,antonyandcleopatra,1606 Soft,1,antonyandcleopatra,1606 tissue,1,antonyandcleopatra,1606 excuses,1,antonyandcleopatra,1606 Lethe,1,antonyandcleopatra,1606 Down,1,antonyandcleopatra,1606 maul,1,antonyandcleopatra,1606 roughest,1,antonyandcleopatra,1606 Intends,1,antonyandcleopatra,1606 cringe,1,antonyandcleopatra,1606 Unreconciliable,1,antonyandcleopatra,1606 Subdue,1,antonyandcleopatra,1606 Briefly,1,antonyandcleopatra,1606 chare,1,antonyandcleopatra,1606 visage,1,antonyandcleopatra,1606 learning,1,antonyandcleopatra,1606 narrow,1,antonyandcleopatra,1606 sticks,1,antonyandcleopatra,1606 stays,1,antonyandcleopatra,1606 equally,1,antonyandcleopatra,1606 mate,1,antonyandcleopatra,1606 garden,1,antonyandcleopatra,1606 arise,1,antonyandcleopatra,1606 Assuredly,1,antonyandcleopatra,1606 misdoubt,1,antonyandcleopatra,1606 fairy,1,antonyandcleopatra,1606 escaped,1,antonyandcleopatra,1606 THE,1,antonyandcleopatra,1606 perform,1,antonyandcleopatra,1606 paces,1,antonyandcleopatra,1606 parting,1,antonyandcleopatra,1606 loses,1,antonyandcleopatra,1606 shards,1,antonyandcleopatra,1606 who's,1,antonyandcleopatra,1606 horned,1,antonyandcleopatra,1606 Set,1,antonyandcleopatra,1606 misery,1,antonyandcleopatra,1606 unhappy,1,antonyandcleopatra,1606 mouth,1,antonyandcleopatra,1606 housewife,1,antonyandcleopatra,1606 be't,1,antonyandcleopatra,1606 places,1,antonyandcleopatra,1606 doomsday,1,antonyandcleopatra,1606 vales,1,antonyandcleopatra,1606 Mesopotamia,1,antonyandcleopatra,1606 islands,1,antonyandcleopatra,1606 anger'd,1,antonyandcleopatra,1606 gallantly,1,antonyandcleopatra,1606 quarter,1,antonyandcleopatra,1606 Lycaonia,1,antonyandcleopatra,1606 Age,1,antonyandcleopatra,1606 opulent,1,antonyandcleopatra,1606 Riotous,1,antonyandcleopatra,1606 Will't,1,antonyandcleopatra,1606 vanquish'd,1,antonyandcleopatra,1606 precious,1,antonyandcleopatra,1606 trespasses,1,antonyandcleopatra,1606 resisted,1,antonyandcleopatra,1606 turpitude,1,antonyandcleopatra,1606 gladness,1,antonyandcleopatra,1606 appointment,1,antonyandcleopatra,1606 breese,1,antonyandcleopatra,1606 attire,1,antonyandcleopatra,1606 spurn,1,antonyandcleopatra,1606 Sole,1,antonyandcleopatra,1606 strife,1,antonyandcleopatra,1606 graceful,1,antonyandcleopatra,1606 lodge,1,antonyandcleopatra,1606 doors,1,antonyandcleopatra,1606 inhoop'd,1,antonyandcleopatra,1606 revolution,1,antonyandcleopatra,1606 'Ho,1,antonyandcleopatra,1606 leaver,1,antonyandcleopatra,1606 stark,1,antonyandcleopatra,1606 Free,1,antonyandcleopatra,1606 sacrifice,1,antonyandcleopatra,1606 chariots,1,antonyandcleopatra,1606 realms,1,antonyandcleopatra,1606 picturing,1,antonyandcleopatra,1606 nod,1,antonyandcleopatra,1606 Long,1,antonyandcleopatra,1606 Shrewdness,1,antonyandcleopatra,1606 Widow,1,antonyandcleopatra,1606 non,1,antonyandcleopatra,1606 probable,1,antonyandcleopatra,1606 Paphlagonia,1,antonyandcleopatra,1606 start,1,antonyandcleopatra,1606 qualities,1,antonyandcleopatra,1606 prize,1,antonyandcleopatra,1606 embattle,1,antonyandcleopatra,1606 conclusion,1,antonyandcleopatra,1606 filth,1,antonyandcleopatra,1606 plead,1,antonyandcleopatra,1606 dared,1,antonyandcleopatra,1606 escape,1,antonyandcleopatra,1606 Remains,1,antonyandcleopatra,1606 foolish,1,antonyandcleopatra,1606 foul'st,1,antonyandcleopatra,1606 AEneas,1,antonyandcleopatra,1606 performs,1,antonyandcleopatra,1606 Longing,1,antonyandcleopatra,1606 vent,1,antonyandcleopatra,1606 tackle,1,antonyandcleopatra,1606 process,1,antonyandcleopatra,1606 Grates,1,antonyandcleopatra,1606 hereditary,1,antonyandcleopatra,1606 straightway,1,antonyandcleopatra,1606 steers,1,antonyandcleopatra,1606 celerity,1,antonyandcleopatra,1606 Adore,1,antonyandcleopatra,1606 Could,1,antonyandcleopatra,1606 annex'd,1,antonyandcleopatra,1606 mantles,1,antonyandcleopatra,1606 tribunal,1,antonyandcleopatra,1606 parties,1,antonyandcleopatra,1606 organs,1,antonyandcleopatra,1606 partake,1,antonyandcleopatra,1606 'Do,1,antonyandcleopatra,1606 maritime,1,antonyandcleopatra,1606 dismission,1,antonyandcleopatra,1606 contradiction,1,antonyandcleopatra,1606 dream,1,antonyandcleopatra,1606 coward,1,antonyandcleopatra,1606 son's,1,antonyandcleopatra,1606 ninth,1,antonyandcleopatra,1606 ranks,1,antonyandcleopatra,1606 maliciously,1,antonyandcleopatra,1606 injuries,1,antonyandcleopatra,1606 pickle,1,antonyandcleopatra,1606 bringer,1,antonyandcleopatra,1606 furnish'd,1,antonyandcleopatra,1606 habiliments,1,antonyandcleopatra,1606 Quarter'd,1,antonyandcleopatra,1606 landing,1,antonyandcleopatra,1606 quoth,1,antonyandcleopatra,1606 designs,1,antonyandcleopatra,1606 ungentle,1,antonyandcleopatra,1606 flatter,1,antonyandcleopatra,1606 craves,1,antonyandcleopatra,1606 chafe,1,antonyandcleopatra,1606 Apace,1,antonyandcleopatra,1606 beside,1,antonyandcleopatra,1606 enlarge,1,antonyandcleopatra,1606 victorious,1,antonyandcleopatra,1606 chide,1,antonyandcleopatra,1606 pauses,1,antonyandcleopatra,1606 thief,1,antonyandcleopatra,1606 Unregister'd,1,antonyandcleopatra,1606 mountain,1,antonyandcleopatra,1606 arch,1,antonyandcleopatra,1606 benefit,1,antonyandcleopatra,1606 fish,1,antonyandcleopatra,1606 seal'd,1,antonyandcleopatra,1606 Philadelphos,1,antonyandcleopatra,1606 threatening,1,antonyandcleopatra,1606 captive,1,antonyandcleopatra,1606 Room,1,antonyandcleopatra,1606 snare,1,antonyandcleopatra,1606 sorrowful,1,antonyandcleopatra,1606 penetrative,1,antonyandcleopatra,1606 ordinary,1,antonyandcleopatra,1606 heaviest,1,antonyandcleopatra,1606 rive,1,antonyandcleopatra,1606 fuming,1,antonyandcleopatra,1606 gashes,1,antonyandcleopatra,1606 chuck,1,antonyandcleopatra,1606 Choose,1,antonyandcleopatra,1606 division,1,antonyandcleopatra,1606 inroads,1,antonyandcleopatra,1606 Cneius,1,antonyandcleopatra,1606 wet,1,antonyandcleopatra,1606 cookery,1,antonyandcleopatra,1606 sucks,1,antonyandcleopatra,1606 unfolded,1,antonyandcleopatra,1606 wrath,1,antonyandcleopatra,1606 constrained,1,antonyandcleopatra,1606 Avoid,1,antonyandcleopatra,1606 stain,1,antonyandcleopatra,1606 possession,1,antonyandcleopatra,1606 forego,1,antonyandcleopatra,1606 musters,1,antonyandcleopatra,1606 exigent,1,antonyandcleopatra,1606 Feeds,1,antonyandcleopatra,1606 bequeath,1,antonyandcleopatra,1606 proves,1,antonyandcleopatra,1606 stall,1,antonyandcleopatra,1606 losing,1,antonyandcleopatra,1606 uncuckolded,1,antonyandcleopatra,1606 Shines,1,antonyandcleopatra,1606 pareil,1,antonyandcleopatra,1606 sharpness,1,antonyandcleopatra,1606 ducking,1,antonyandcleopatra,1606 slight,1,antonyandcleopatra,1606 pole,1,antonyandcleopatra,1606 affairs,1,antonyandcleopatra,1606 censuring,1,antonyandcleopatra,1606 desolation,1,antonyandcleopatra,1606 opinion,1,antonyandcleopatra,1606 proved,1,antonyandcleopatra,1606 'Twixt,1,antonyandcleopatra,1606 renown,1,antonyandcleopatra,1606 semblable,1,antonyandcleopatra,1606 claims,1,antonyandcleopatra,1606 sting,1,antonyandcleopatra,1606 Chain,1,antonyandcleopatra,1606 They'll,1,antonyandcleopatra,1606 Thetis,1,antonyandcleopatra,1606 prescience,1,antonyandcleopatra,1606 cough,1,antonyandcleopatra,1606 briefest,1,antonyandcleopatra,1606 merits,1,antonyandcleopatra,1606 example,1,antonyandcleopatra,1606 gem,1,antonyandcleopatra,1606 'No,1,antonyandcleopatra,1606 salt,1,antonyandcleopatra,1606 at's,1,antonyandcleopatra,1606 tabourines,1,antonyandcleopatra,1606 branchless,1,antonyandcleopatra,1606 sake,1,antonyandcleopatra,1606 purchase,1,antonyandcleopatra,1606 pomp,1,antonyandcleopatra,1606 fits,1,antonyandcleopatra,1606 experience,1,antonyandcleopatra,1606 fragment,1,antonyandcleopatra,1606 lessens,1,antonyandcleopatra,1606 Discredit,1,antonyandcleopatra,1606 persons,1,antonyandcleopatra,1606 message,1,antonyandcleopatra,1606 scatters,1,antonyandcleopatra,1606 diadem,1,antonyandcleopatra,1606 We'ld,1,antonyandcleopatra,1606 privy,1,antonyandcleopatra,1606 hateful,1,antonyandcleopatra,1606 provoke,1,antonyandcleopatra,1606 Antonius',1,antonyandcleopatra,1606 stomach,1,antonyandcleopatra,1606 'Twill,1,antonyandcleopatra,1606 bands,1,antonyandcleopatra,1606 Desist,1,antonyandcleopatra,1606 relieved,1,antonyandcleopatra,1606 courser's,1,antonyandcleopatra,1606 hears,1,antonyandcleopatra,1606 Unarm,1,antonyandcleopatra,1606 soothsay,1,antonyandcleopatra,1606 thrived,1,antonyandcleopatra,1606 happiness,1,antonyandcleopatra,1606 loving,1,antonyandcleopatra,1606 provinces,1,antonyandcleopatra,1606 smock,1,antonyandcleopatra,1606 hammers,1,antonyandcleopatra,1606 gay,1,antonyandcleopatra,1606 Dream,1,antonyandcleopatra,1606 measures,1,antonyandcleopatra,1606 allay,1,antonyandcleopatra,1606 Guess,1,antonyandcleopatra,1606 unseen,1,antonyandcleopatra,1606 humanity,1,antonyandcleopatra,1606 beastly,1,antonyandcleopatra,1606 moment,1,antonyandcleopatra,1606 allegiance,1,antonyandcleopatra,1606 meaner,1,antonyandcleopatra,1606 city's,1,antonyandcleopatra,1606 mariners,1,antonyandcleopatra,1606 decays,1,antonyandcleopatra,1606 lightness,1,antonyandcleopatra,1606 conspire,1,antonyandcleopatra,1606 walks,1,antonyandcleopatra,1606 handed,1,antonyandcleopatra,1606 stew'd,1,antonyandcleopatra,1606 'Say,1,antonyandcleopatra,1606 scantly,1,antonyandcleopatra,1606 Saw,1,antonyandcleopatra,1606 Rogue,1,antonyandcleopatra,1606 tributaries,1,antonyandcleopatra,1606 flight,1,antonyandcleopatra,1606 walls,1,antonyandcleopatra,1606 Mithridates,1,antonyandcleopatra,1606 choked,1,antonyandcleopatra,1606 Alarums,1,antonyandcleopatra,1606 standing,1,antonyandcleopatra,1606 lictors,1,antonyandcleopatra,1606 you're,1,antonyandcleopatra,1606 crown's,1,antonyandcleopatra,1606 buffet,1,antonyandcleopatra,1606 Phoenicians,1,antonyandcleopatra,1606 flint,1,antonyandcleopatra,1606 certainly,1,antonyandcleopatra,1606 finn'd,1,antonyandcleopatra,1606 renown'd,1,antonyandcleopatra,1606 burthen,1,antonyandcleopatra,1606 Libya,1,antonyandcleopatra,1606 dust,1,antonyandcleopatra,1606 Mercury,1,antonyandcleopatra,1606 stiff,1,antonyandcleopatra,1606 oars,1,antonyandcleopatra,1606 Weep,1,antonyandcleopatra,1606 spacious,1,antonyandcleopatra,1606 staff,1,antonyandcleopatra,1606 tuned,1,antonyandcleopatra,1606 able,1,antonyandcleopatra,1606 Worthy,1,antonyandcleopatra,1606 prevail,1,antonyandcleopatra,1606 drives,1,antonyandcleopatra,1606 commanded,1,antonyandcleopatra,1606 Reprove,1,antonyandcleopatra,1606 intent,1,antonyandcleopatra,1606 ambition,1,antonyandcleopatra,1606 bleed,1,antonyandcleopatra,1606 libertine,1,antonyandcleopatra,1606 garland,1,antonyandcleopatra,1606 enraged,1,antonyandcleopatra,1606 almanacs,1,antonyandcleopatra,1606 determines,1,antonyandcleopatra,1606 they'll,1,antonyandcleopatra,1606 Corrupted,1,antonyandcleopatra,1606 juice,1,antonyandcleopatra,1606 greetings,1,antonyandcleopatra,1606 mules,1,antonyandcleopatra,1606 thereabouts,1,antonyandcleopatra,1606 bedfellow,1,antonyandcleopatra,1606 rids,1,antonyandcleopatra,1606 Knowing,1,antonyandcleopatra,1606 Lucius,1,antonyandcleopatra,1606 vessels,1,antonyandcleopatra,1606 declare,1,antonyandcleopatra,1606 Proportion'd,1,antonyandcleopatra,1606 disarms,1,antonyandcleopatra,1606 bearded,1,antonyandcleopatra,1606 Endure,1,antonyandcleopatra,1606 warmth,1,antonyandcleopatra,1606 Beg,1,antonyandcleopatra,1606 Detest,1,antonyandcleopatra,1606 women's,1,antonyandcleopatra,1606 earn'd,1,antonyandcleopatra,1606 wheel,1,antonyandcleopatra,1606 leprosy,1,antonyandcleopatra,1606 breakfast,1,antonyandcleopatra,1606 stayed,1,antonyandcleopatra,1606 threats,1,antonyandcleopatra,1606 possess,1,antonyandcleopatra,1606 Pharsalia,1,antonyandcleopatra,1606 caught,1,antonyandcleopatra,1606 notice,1,antonyandcleopatra,1606 swan's,1,antonyandcleopatra,1606 into't,1,antonyandcleopatra,1606 terrene,1,antonyandcleopatra,1606 flags,1,antonyandcleopatra,1606 sweets,1,antonyandcleopatra,1606 curstness,1,antonyandcleopatra,1606 rift,1,antonyandcleopatra,1606 salutes,1,antonyandcleopatra,1606 grossly,1,antonyandcleopatra,1606 Gives,1,antonyandcleopatra,1606 mightily,1,antonyandcleopatra,1606 surprised,1,antonyandcleopatra,1606 angle,1,antonyandcleopatra,1606 vulgar,1,antonyandcleopatra,1606 familiar,1,antonyandcleopatra,1606 adores,1,antonyandcleopatra,1606 gladly,1,antonyandcleopatra,1606 Rid,1,antonyandcleopatra,1606 prompt,1,antonyandcleopatra,1606 SEXTUS,1,antonyandcleopatra,1606 breadth,1,antonyandcleopatra,1606 plebeians,1,antonyandcleopatra,1606 faces,1,antonyandcleopatra,1606 Immoment,1,antonyandcleopatra,1606 mettle,1,antonyandcleopatra,1606 seize,1,antonyandcleopatra,1606 darken,1,antonyandcleopatra,1606 o'erthrown,1,antonyandcleopatra,1606 oblivion,1,antonyandcleopatra,1606 Straight,1,antonyandcleopatra,1606 ransom,1,antonyandcleopatra,1606 penitent,1,antonyandcleopatra,1606 estates,1,antonyandcleopatra,1606 brooch'd,1,antonyandcleopatra,1606 edict,1,antonyandcleopatra,1606 conference,1,antonyandcleopatra,1606 earthly,1,antonyandcleopatra,1606 Hail,1,antonyandcleopatra,1606 rotten,1,antonyandcleopatra,1606 Juno's,1,antonyandcleopatra,1606 charged,1,antonyandcleopatra,1606 Swell,1,antonyandcleopatra,1606 angel,1,antonyandcleopatra,1606 anger,1,antonyandcleopatra,1606 Extended,1,antonyandcleopatra,1606 hack'd,1,antonyandcleopatra,1606 opposite,1,antonyandcleopatra,1606 inclination,1,antonyandcleopatra,1606 rail,1,antonyandcleopatra,1606 haply,1,antonyandcleopatra,1606 cups,1,antonyandcleopatra,1606 pinion,1,antonyandcleopatra,1606 longings,1,antonyandcleopatra,1606 forbear't,1,antonyandcleopatra,1606 waters,1,antonyandcleopatra,1606 farther,1,antonyandcleopatra,1606 mends,1,antonyandcleopatra,1606 unity,1,antonyandcleopatra,1606 enfranched,1,antonyandcleopatra,1606 grain,1,antonyandcleopatra,1606 drops,1,antonyandcleopatra,1606 determined,1,antonyandcleopatra,1606 Nobler,1,antonyandcleopatra,1606 harvest,1,antonyandcleopatra,1606 serves,1,antonyandcleopatra,1606 spaniel'd,1,antonyandcleopatra,1606 unheard,1,antonyandcleopatra,1606 waste,1,antonyandcleopatra,1606 marble,1,antonyandcleopatra,1606 beguiled,1,antonyandcleopatra,1606 sober,1,antonyandcleopatra,1606 falling,1,antonyandcleopatra,1606 stirs,1,antonyandcleopatra,1606 discontents,1,antonyandcleopatra,1606 wrong'd,1,antonyandcleopatra,1606 consolation,1,antonyandcleopatra,1606 Ever,1,antonyandcleopatra,1606 comparisons,1,antonyandcleopatra,1606 fill'd,1,antonyandcleopatra,1606 Whispers,1,antonyandcleopatra,1606 vie,1,antonyandcleopatra,1606 mince,1,antonyandcleopatra,1606 missive,1,antonyandcleopatra,1606 glad,1,antonyandcleopatra,1606 Bear'st,1,antonyandcleopatra,1606 contempt,1,antonyandcleopatra,1606 neighs,1,antonyandcleopatra,1606 heirs,1,antonyandcleopatra,1606 prescript,1,antonyandcleopatra,1606 doubled,1,antonyandcleopatra,1606 meered,1,antonyandcleopatra,1606 violate,1,antonyandcleopatra,1606 fretted,1,antonyandcleopatra,1606 dispatch'd,1,antonyandcleopatra,1606 ebb'd,1,antonyandcleopatra,1606 beloving,1,antonyandcleopatra,1606 wharfs,1,antonyandcleopatra,1606 ground,1,antonyandcleopatra,1606 Many,1,antonyandcleopatra,1606 wanted,1,antonyandcleopatra,1606 minds,1,antonyandcleopatra,1606 Time,1,antonyandcleopatra,1606 cloth,1,antonyandcleopatra,1606 Thither,1,antonyandcleopatra,1606 augmented,1,antonyandcleopatra,1606 Brother,1,antonyandcleopatra,1606 Swoons,1,antonyandcleopatra,1606 utterly,1,antonyandcleopatra,1606 Exceeds,1,antonyandcleopatra,1606 orb,1,antonyandcleopatra,1606 Praying,1,antonyandcleopatra,1606 acknowledged,1,antonyandcleopatra,1606 foe,1,antonyandcleopatra,1606 creature's,1,antonyandcleopatra,1606 wander,1,antonyandcleopatra,1606 wert,1,antonyandcleopatra,1606 Shake,1,antonyandcleopatra,1606 graveless,1,antonyandcleopatra,1606 answers,1,antonyandcleopatra,1606 swells,1,antonyandcleopatra,1606 barber'd,1,antonyandcleopatra,1606 rack,1,antonyandcleopatra,1606 Herculean,1,antonyandcleopatra,1606 cards,1,antonyandcleopatra,1606 Rises,1,antonyandcleopatra,1606 Capitol,1,antonyandcleopatra,1606 viciousness,1,antonyandcleopatra,1606 serve's,1,antonyandcleopatra,1606 fighting,1,antonyandcleopatra,1606 clay,1,antonyandcleopatra,1606 dancing,1,antonyandcleopatra,1606 enfranchise,1,antonyandcleopatra,1606 fig,1,antonyandcleopatra,1606 fans,1,antonyandcleopatra,1606 precedence,1,antonyandcleopatra,1606 Deny,1,antonyandcleopatra,1606 endeavour,1,antonyandcleopatra,1606 grape,1,antonyandcleopatra,1606 gazing,1,antonyandcleopatra,1606 Sweep,1,antonyandcleopatra,1606 perfect,1,antonyandcleopatra,1606 Doing,1,antonyandcleopatra,1606 wheat,1,antonyandcleopatra,1606 Supposing,1,antonyandcleopatra,1606 swallow'd,1,antonyandcleopatra,1606 discandy,1,antonyandcleopatra,1606 separation,1,antonyandcleopatra,1606 savage,1,antonyandcleopatra,1606 engaged,1,antonyandcleopatra,1606 buckled,1,antonyandcleopatra,1606 lascivious,1,antonyandcleopatra,1606 external,1,antonyandcleopatra,1606 pants,1,antonyandcleopatra,1606 unshown,1,antonyandcleopatra,1606 buckles,1,antonyandcleopatra,1606 Polemon,1,antonyandcleopatra,1606 Menecrates,1,antonyandcleopatra,1606 Hirtius,1,antonyandcleopatra,1606 Worthily,1,antonyandcleopatra,1606 thunder,1,antonyandcleopatra,1606 answer'd,1,antonyandcleopatra,1606 biddings,1,antonyandcleopatra,1606 wide,1,antonyandcleopatra,1606 worship,1,antonyandcleopatra,1606 ostentation,1,antonyandcleopatra,1606 divers,1,antonyandcleopatra,1606 bite,1,antonyandcleopatra,1606 mermaids,1,antonyandcleopatra,1606 kill'st,1,antonyandcleopatra,1606 herself,1,antonyandcleopatra,1606 poison'd,1,antonyandcleopatra,1606 smooth,1,antonyandcleopatra,1606 wived,1,antonyandcleopatra,1606 Measures,1,antonyandcleopatra,1606 Work,1,antonyandcleopatra,1606 perceive,1,antonyandcleopatra,1606 Triple,1,antonyandcleopatra,1606 Thank,1,antonyandcleopatra,1606 warr'd,1,antonyandcleopatra,1606 emphasis,1,antonyandcleopatra,1606 senators,1,antonyandcleopatra,1606 noting,1,antonyandcleopatra,1606 'Good,1,antonyandcleopatra,1606 burgonet,1,antonyandcleopatra,1606 sharers,1,antonyandcleopatra,1606 nook'd,1,antonyandcleopatra,1606 POMPEIUS,1,antonyandcleopatra,1606 meetly,1,antonyandcleopatra,1606 forenoon,1,antonyandcleopatra,1606 increasing,1,antonyandcleopatra,1606 Four,1,antonyandcleopatra,1606 register,1,antonyandcleopatra,1606 bird,1,antonyandcleopatra,1606 Labienus,1,antonyandcleopatra,1606 strikes,1,antonyandcleopatra,1606 undinted,1,antonyandcleopatra,1606 prophesy,1,antonyandcleopatra,1606 Cut,1,antonyandcleopatra,1606 extenuate,1,antonyandcleopatra,1606 marcheth,1,antonyandcleopatra,1606 observance,1,antonyandcleopatra,1606 grapes,1,antonyandcleopatra,1606 fats,1,antonyandcleopatra,1606 Amyntas,1,antonyandcleopatra,1606 plainness,1,antonyandcleopatra,1606 contriving,1,antonyandcleopatra,1606 balm,1,antonyandcleopatra,1606 motive,1,antonyandcleopatra,1606 hoop,1,antonyandcleopatra,1606 tremblingly,1,antonyandcleopatra,1606 weakness,1,antonyandcleopatra,1606 prognostication,1,antonyandcleopatra,1606 factors,1,antonyandcleopatra,1606 Eternity,1,antonyandcleopatra,1606 names,1,antonyandcleopatra,1606 large,1,antonyandcleopatra,1606 van,1,antonyandcleopatra,1606 cooks,1,antonyandcleopatra,1606 Field,1,antonyandcleopatra,1606 farest,1,antonyandcleopatra,1606 evidence,1,antonyandcleopatra,1606 powder,1,antonyandcleopatra,1606 boldly,1,antonyandcleopatra,1606 drinks,1,antonyandcleopatra,1606 author,1,antonyandcleopatra,1606 tale,1,antonyandcleopatra,1606 Livia,1,antonyandcleopatra,1606 lap,1,antonyandcleopatra,1606 cloyless,1,antonyandcleopatra,1606 indistinct,1,antonyandcleopatra,1606 law,1,antonyandcleopatra,1606 Invited,1,antonyandcleopatra,1606 vented,1,antonyandcleopatra,1606 constant,1,antonyandcleopatra,1606 reckon'd,1,antonyandcleopatra,1606 kite,1,antonyandcleopatra,1606 witchcraft,1,antonyandcleopatra,1606 cable,1,antonyandcleopatra,1606 departure,1,antonyandcleopatra,1606 comedians,1,antonyandcleopatra,1606 farthest,1,antonyandcleopatra,1606 Modena,1,antonyandcleopatra,1606 orient,1,antonyandcleopatra,1606 source,1,antonyandcleopatra,1606 Extemporally,1,antonyandcleopatra,1606 unpeople,1,antonyandcleopatra,1606 tart,1,antonyandcleopatra,1606 destroys,1,antonyandcleopatra,1606 jests,1,antonyandcleopatra,1606 Trust,1,antonyandcleopatra,1606 Assist,1,antonyandcleopatra,1606 reproof,1,antonyandcleopatra,1606 Already,1,antonyandcleopatra,1606 triumvirate,1,antonyandcleopatra,1606 alms,1,antonyandcleopatra,1606 unslipping,1,antonyandcleopatra,1606 Every,1,antonyandcleopatra,1606 doughty,1,antonyandcleopatra,1606 Sharpen,1,antonyandcleopatra,1606 pledge,1,antonyandcleopatra,1606 Speaks,1,antonyandcleopatra,1606 getting,1,antonyandcleopatra,1606 Requires,1,antonyandcleopatra,1606 visiting,1,antonyandcleopatra,1606 QUEEN,1,antonyandcleopatra,1606 Lay,1,antonyandcleopatra,1606 fertile,1,antonyandcleopatra,1606 aspic's,1,antonyandcleopatra,1606 Truth,1,antonyandcleopatra,1606 populous,1,antonyandcleopatra,1606 stand'st,1,antonyandcleopatra,1606 Lives,1,antonyandcleopatra,1606 method,1,antonyandcleopatra,1606 settle,1,antonyandcleopatra,1606 Crested,1,antonyandcleopatra,1606 ripens,1,antonyandcleopatra,1606 Arise,1,antonyandcleopatra,1606 Applauding,1,antonyandcleopatra,1606 defect,1,antonyandcleopatra,1606 ranges,1,antonyandcleopatra,1606 fires,1,antonyandcleopatra,1606 dimpled,1,antonyandcleopatra,1606 oyster,1,antonyandcleopatra,1606 peerless,1,antonyandcleopatra,1606 cowards,1,antonyandcleopatra,1606 ranged,1,antonyandcleopatra,1606 useful,1,antonyandcleopatra,1606 argument,1,antonyandcleopatra,1606 consist,1,antonyandcleopatra,1606 Chiefly,1,antonyandcleopatra,1606 assist,1,antonyandcleopatra,1606 Hectors,1,antonyandcleopatra,1606 winter,1,antonyandcleopatra,1606 forsooth,1,antonyandcleopatra,1606 liver,1,antonyandcleopatra,1606 defeat,1,antonyandcleopatra,1606 Repent,1,antonyandcleopatra,1606 horses,1,antonyandcleopatra,1606 wrestle,1,antonyandcleopatra,1606 Brown,1,antonyandcleopatra,1606 Awake,1,antonyandcleopatra,1606 falsehood,1,antonyandcleopatra,1606 task,1,antonyandcleopatra,1606 unnoble,1,antonyandcleopatra,1606 Vex,1,antonyandcleopatra,1606 adieus,1,antonyandcleopatra,1606 unpitied,1,antonyandcleopatra,1606 shout,1,antonyandcleopatra,1606 fumblest,1,antonyandcleopatra,1606 robes,1,antonyandcleopatra,1606 satisfied,1,antonyandcleopatra,1606 inevitable,1,antonyandcleopatra,1606 Applying,1,antonyandcleopatra,1606 country's,1,antonyandcleopatra,1606 Arabian,1,antonyandcleopatra,1606 have't,1,antonyandcleopatra,1606 perfumed,1,antonyandcleopatra,1606 hearty,1,antonyandcleopatra,1606 cheerful,1,antonyandcleopatra,1606 Bacchus,1,antonyandcleopatra,1606 assembled,1,antonyandcleopatra,1606 PACORUS,1,antonyandcleopatra,1606 June,1,antonyandcleopatra,1606 Narcissus,1,antonyandcleopatra,1606 Juno,1,antonyandcleopatra,1606 Serves,1,antonyandcleopatra,1606 'Where's,1,antonyandcleopatra,1606 inward,1,antonyandcleopatra,1606 comforting,1,antonyandcleopatra,1606 sinew'd,1,antonyandcleopatra,1606 lot,1,antonyandcleopatra,1606 eyed,1,antonyandcleopatra,1606 sweat,1,antonyandcleopatra,1606 ugly,1,antonyandcleopatra,1606 Waged,1,antonyandcleopatra,1606 sinking,1,antonyandcleopatra,1606 puppet,1,antonyandcleopatra,1606 baby,1,antonyandcleopatra,1606 healing,1,antonyandcleopatra,1606 thereto,1,antonyandcleopatra,1606 deputation,1,antonyandcleopatra,1606 landlord,1,antonyandcleopatra,1606 discredited,1,antonyandcleopatra,1606 Seek,1,antonyandcleopatra,1606 took't,1,antonyandcleopatra,1606 nineteen,1,antonyandcleopatra,1606 approves,1,antonyandcleopatra,1606 insolence,1,antonyandcleopatra,1606 burnish'd,1,antonyandcleopatra,1606 aught,1,antonyandcleopatra,1606 gnats,1,antonyandcleopatra,1606 seel,1,antonyandcleopatra,1606 fitting,1,antonyandcleopatra,1606 vesper's,1,antonyandcleopatra,1606 satisfies,1,antonyandcleopatra,1606 Truly,1,antonyandcleopatra,1606 defend,1,antonyandcleopatra,1606 Parcel,1,antonyandcleopatra,1606 unpurposed,1,antonyandcleopatra,1606 nerves,1,antonyandcleopatra,1606 unkindness,1,antonyandcleopatra,1606 sports,1,antonyandcleopatra,1606 cow,1,antonyandcleopatra,1606 ended,1,antonyandcleopatra,1606 News,1,antonyandcleopatra,1606 look'd,1,antonyandcleopatra,1606 Seizes,1,antonyandcleopatra,1606 'twixt,1,antonyandcleopatra,1606 discretion,1,antonyandcleopatra,1606 navy's,1,antonyandcleopatra,1606 courtesy,1,antonyandcleopatra,1606 scrupulous,1,antonyandcleopatra,1606 Empress,1,antonyandcleopatra,1606 Herod's,1,antonyandcleopatra,1606 others',1,antonyandcleopatra,1606 pick'd,1,antonyandcleopatra,1606 drunken,1,antonyandcleopatra,1606 valued,1,antonyandcleopatra,1606 differing,1,antonyandcleopatra,1606 steep'd,1,antonyandcleopatra,1606 Atlas,1,antonyandcleopatra,1606 cost,1,antonyandcleopatra,1606 render,1,antonyandcleopatra,1606 Patience,1,antonyandcleopatra,1606 Believe,1,antonyandcleopatra,1606 True,1,antonyandcleopatra,1606 bowls,1,antonyandcleopatra,1606 shaped,1,antonyandcleopatra,1606 expectation,1,antonyandcleopatra,1606 Smarting,1,antonyandcleopatra,1606 thereon,1,antonyandcleopatra,1606 Speaking,1,antonyandcleopatra,1606 Unloading,1,antonyandcleopatra,1606 Forsake,1,antonyandcleopatra,1606 Dido,1,antonyandcleopatra,1606 bards,1,antonyandcleopatra,1606 'Stroy'd,1,antonyandcleopatra,1606 replied,1,antonyandcleopatra,1606 'Your,1,antonyandcleopatra,1606 thee't,1,antonyandcleopatra,1606 secrecy,1,antonyandcleopatra,1606 wearied,1,antonyandcleopatra,1606 increase,1,antonyandcleopatra,1606 Pacorus,1,antonyandcleopatra,1606 whate'er,1,antonyandcleopatra,1606 pestilent,1,antonyandcleopatra,1606 heavenly,1,antonyandcleopatra,1606 entangled,1,antonyandcleopatra,1606 Obey,1,antonyandcleopatra,1606 ties,1,antonyandcleopatra,1606 Haste,1,antonyandcleopatra,1606 divisions,1,antonyandcleopatra,1606 modest,1,antonyandcleopatra,1606 deign,1,antonyandcleopatra,1606 hostages,1,antonyandcleopatra,1606 'twill,1,antonyandcleopatra,1606 eyne,1,antonyandcleopatra,1606 Trumpeters,1,antonyandcleopatra,1606 pour,1,antonyandcleopatra,1606 nourisheth,1,antonyandcleopatra,1606 loyalty,1,antonyandcleopatra,1606 Frowns,1,antonyandcleopatra,1606 Things,1,antonyandcleopatra,1606 chests,1,antonyandcleopatra,1606 mallard,1,antonyandcleopatra,1606 drugs,1,antonyandcleopatra,1606 generals,1,antonyandcleopatra,1606 cistern,1,antonyandcleopatra,1606 safed,1,antonyandcleopatra,1606 rebukeable,1,antonyandcleopatra,1606 Toward,1,antonyandcleopatra,1606 reneges,1,antonyandcleopatra,1606 heartbreaking,1,antonyandcleopatra,1606 wretched,1,antonyandcleopatra,1606 strikest,1,antonyandcleopatra,1606 replies,1,antonyandcleopatra,1606 funeral,1,antonyandcleopatra,1606 entangles,1,antonyandcleopatra,1606 trembled,1,antonyandcleopatra,1606 Purple,1,antonyandcleopatra,1606 tied,1,antonyandcleopatra,1606 dislike,1,antonyandcleopatra,1606 Use,1,antonyandcleopatra,1606 reapers,1,antonyandcleopatra,1606 souls,1,antonyandcleopatra,1606 remove,1,antonyandcleopatra,1606 Prays,1,antonyandcleopatra,1606 gibbet,1,antonyandcleopatra,1606 fairly,1,antonyandcleopatra,1606 modern,1,antonyandcleopatra,1606 remarkable,1,antonyandcleopatra,1606 capacity,1,antonyandcleopatra,1606 'God,1,antonyandcleopatra,1606 aloud,1,antonyandcleopatra,1606 Quicken,1,antonyandcleopatra,1606 pavilion,1,antonyandcleopatra,1606 see'st,1,antonyandcleopatra,1606 oppose,1,antonyandcleopatra,1606 Phoenicia,1,antonyandcleopatra,1606 Next,1,antonyandcleopatra,1606 glow'd,1,antonyandcleopatra,1606 Rail,1,antonyandcleopatra,1606 roaring,1,antonyandcleopatra,1606 mother's,1,antonyandcleopatra,1606 ghosts,1,antonyandcleopatra,1606 doits,1,antonyandcleopatra,1606 trusting,1,antonyandcleopatra,1606 o'erpower'd,1,antonyandcleopatra,1606 squeaking,1,antonyandcleopatra,1606 talk'd,1,antonyandcleopatra,1606 swell,1,antonyandcleopatra,1606 Admit,1,antonyandcleopatra,1606 rebound,1,antonyandcleopatra,1606 shoots,1,antonyandcleopatra,1606 Bravest,1,antonyandcleopatra,1606 grieved,1,antonyandcleopatra,1606 carriage,1,antonyandcleopatra,1606 wrangling,1,antonyandcleopatra,1606 sullen,1,antonyandcleopatra,1606 barren,1,antonyandcleopatra,1606 formal,1,antonyandcleopatra,1606 statue,1,antonyandcleopatra,1606 season,1,antonyandcleopatra,1606 fearing,1,antonyandcleopatra,1606 match,1,antonyandcleopatra,1606 lastly,1,antonyandcleopatra,1606 seizes,1,antonyandcleopatra,1606 Remain,1,antonyandcleopatra,1606 blast,1,antonyandcleopatra,1606 merchant,1,antonyandcleopatra,1606 Undo,1,antonyandcleopatra,1606 coin,1,antonyandcleopatra,1606 Quarrel,1,antonyandcleopatra,1606 poop,1,antonyandcleopatra,1606 Hearing,1,antonyandcleopatra,1606 merchandise,1,antonyandcleopatra,1606 Justeius,1,antonyandcleopatra,1606 untie,1,antonyandcleopatra,1606 Wisdom,1,antonyandcleopatra,1606 outroar,1,antonyandcleopatra,1606 parcel,1,antonyandcleopatra,1606 donn'd,1,antonyandcleopatra,1606 sorely,1,antonyandcleopatra,1606 brow,1,antonyandcleopatra,1606 slow,1,antonyandcleopatra,1606 storms,1,antonyandcleopatra,1606 licence,1,antonyandcleopatra,1606 torch,1,antonyandcleopatra,1606 foison,1,antonyandcleopatra,1606 effects,1,antonyandcleopatra,1606 servants,1,antonyandcleopatra,1606 requested,1,antonyandcleopatra,1606 persuade,1,antonyandcleopatra,1606 submerged,1,antonyandcleopatra,1606 feasting,1,antonyandcleopatra,1606 unbuckles,1,antonyandcleopatra,1606 perjure,1,antonyandcleopatra,1606 enclouded,1,antonyandcleopatra,1606 Dercetas,1,antonyandcleopatra,1606 midway,1,antonyandcleopatra,1606 queen's,1,antonyandcleopatra,1606 berry,1,antonyandcleopatra,1606 abhorring,1,antonyandcleopatra,1606 debate,1,antonyandcleopatra,1606 mar,1,antonyandcleopatra,1606 commits,1,antonyandcleopatra,1606 targets,1,antonyandcleopatra,1606 token'd,1,antonyandcleopatra,1606 Eunuchs,1,antonyandcleopatra,1606 sounded,1,antonyandcleopatra,1606 starts,1,antonyandcleopatra,1606 careful,1,antonyandcleopatra,1606 'scape,1,antonyandcleopatra,1606 Absolute,1,antonyandcleopatra,1606 pasture,1,antonyandcleopatra,1606 unlike,1,antonyandcleopatra,1606 rheum,1,antonyandcleopatra,1606 seldom,1,antonyandcleopatra,1606 footmen,1,antonyandcleopatra,1606 waned,1,antonyandcleopatra,1606 fervency,1,antonyandcleopatra,1606 reward,1,antonyandcleopatra,1606 shackles,1,antonyandcleopatra,1606 Grants,1,antonyandcleopatra,1606 Falling,1,antonyandcleopatra,1606 burst,1,antonyandcleopatra,1606 unto't,1,antonyandcleopatra,1606 rivality,1,antonyandcleopatra,1606 poets,1,antonyandcleopatra,1606 look'dst,1,antonyandcleopatra,1606 Amiss,1,antonyandcleopatra,1606 straight,1,antonyandcleopatra,1606 forked,1,antonyandcleopatra,1606 trusted,1,antonyandcleopatra,1606 'Make,1,antonyandcleopatra,1606 diminutives,1,antonyandcleopatra,1606 courageous,1,antonyandcleopatra,1606 Eunuch,1,antonyandcleopatra,1606 Antick'd,1,antonyandcleopatra,1606 Sooth,1,antonyandcleopatra,1606 trim,1,antonyandcleopatra,1606 refusing,1,antonyandcleopatra,1606 obeying,1,antonyandcleopatra,1606 vilest,1,antonyandcleopatra,1606 Captain,1,antonyandcleopatra,1606 link'd,1,antonyandcleopatra,1606 angling,1,antonyandcleopatra,1606 tires,1,antonyandcleopatra,1606 Rise,1,antonyandcleopatra,1606 Valiantly,1,antonyandcleopatra,1606 pitifully,1,antonyandcleopatra,1606 murder'd,1,antonyandcleopatra,1606 congealment,1,antonyandcleopatra,1606 determine,1,antonyandcleopatra,1606 comforted,1,antonyandcleopatra,1606 Gallus,1,antonyandcleopatra,1606 abuse,1,antonyandcleopatra,1606 cinders,1,antonyandcleopatra,1606 burnt,1,antonyandcleopatra,1606 hares,1,antonyandcleopatra,1606 shrowd,1,antonyandcleopatra,1606 debtor,1,antonyandcleopatra,1606 Assemble,1,antonyandcleopatra,1606 widower,1,antonyandcleopatra,1606 envied,1,antonyandcleopatra,1606 powerful,1,antonyandcleopatra,1606 thinking,1,antonyandcleopatra,1606 counts,1,antonyandcleopatra,1606 fashion,1,antonyandcleopatra,1606 punishment,1,antonyandcleopatra,1606 sever'd,1,antonyandcleopatra,1606 murmuring,1,antonyandcleopatra,1606 Dealt,1,antonyandcleopatra,1606 Varrius,1,antonyandcleopatra,1606 Eight,1,antonyandcleopatra,1606 Faints,1,antonyandcleopatra,1606 reels,1,antonyandcleopatra,1606 casts,1,antonyandcleopatra,1606 unbar,1,antonyandcleopatra,1606 carouses,1,antonyandcleopatra,1606 banner,1,antonyandcleopatra,1606 vagabond,1,antonyandcleopatra,1606 faultiness,1,antonyandcleopatra,1606 lion,1,antonyandcleopatra,1606 Apollodorus,1,antonyandcleopatra,1606 partisan,1,antonyandcleopatra,1606 seedsman,1,antonyandcleopatra,1606 homage,1,antonyandcleopatra,1606 Sleep,1,antonyandcleopatra,1606 portends,1,antonyandcleopatra,1606 Cupids,1,antonyandcleopatra,1606 E'en,1,antonyandcleopatra,1606 telling,1,antonyandcleopatra,1606 volley,1,antonyandcleopatra,1606 Stomach,1,antonyandcleopatra,1606 uncurbable,1,antonyandcleopatra,1606 lass,1,antonyandcleopatra,1606 fever,1,antonyandcleopatra,1606 vestal,1,antonyandcleopatra,1606 phrase,1,antonyandcleopatra,1606 peck,1,antonyandcleopatra,1606 revenger,1,antonyandcleopatra,1606 synod,1,antonyandcleopatra,1606 Basan,1,antonyandcleopatra,1606 flaw,1,antonyandcleopatra,1606 Crassus,1,antonyandcleopatra,1606 spill,1,antonyandcleopatra,1606 flag,1,antonyandcleopatra,1606 thither,1,antonyandcleopatra,1606 Publicola,1,antonyandcleopatra,1606 eastern,1,antonyandcleopatra,1606 citizens,1,antonyandcleopatra,1606 compel,1,antonyandcleopatra,1606 chooses,1,antonyandcleopatra,1606 Looking,1,antonyandcleopatra,1606 betimes,1,antonyandcleopatra,1606 suspect,1,antonyandcleopatra,1606 discontented,1,antonyandcleopatra,1606 besides,1,antonyandcleopatra,1606 unqualitied,1,antonyandcleopatra,1606 extend,1,antonyandcleopatra,1606 gets,1,antonyandcleopatra,1606 silver,1,antonyandcleopatra,1606 unhack'd,1,antonyandcleopatra,1606 unbewail'd,1,antonyandcleopatra,1606 Round,1,antonyandcleopatra,1606 soulless,1,antonyandcleopatra,1606 revenged,1,antonyandcleopatra,1606 hurt,1,antonyandcleopatra,1606 April,1,antonyandcleopatra,1606 misthought,1,antonyandcleopatra,1606 hurl,1,antonyandcleopatra,1606 squire,1,antonyandcleopatra,1606 Comagene,1,antonyandcleopatra,1606 levying,1,antonyandcleopatra,1606 appetite,1,antonyandcleopatra,1606 fell'st,1,antonyandcleopatra,1606 compose,1,antonyandcleopatra,1606 entreaty,1,antonyandcleopatra,1606 o'erflowing,1,antonyandcleopatra,1606 windows,1,antonyandcleopatra,1606 entreats,1,antonyandcleopatra,1606 disaster,1,antonyandcleopatra,1606 shrewd,1,antonyandcleopatra,1606 silent,1,antonyandcleopatra,1606 Death,1,antonyandcleopatra,1606 assurance,1,antonyandcleopatra,1606 despiteful,1,antonyandcleopatra,1606 spring,1,antonyandcleopatra,1606 clouts,1,antonyandcleopatra,1606 numbers,1,antonyandcleopatra,1606 reply,1,antonyandcleopatra,1606 brows',1,antonyandcleopatra,1606 hazarded,1,antonyandcleopatra,1606 Tie,1,antonyandcleopatra,1606 wounding,1,antonyandcleopatra,1606 laid,1,antonyandcleopatra,1606 Mount,1,antonyandcleopatra,1606 asleep,1,antonyandcleopatra,1606 mangled,1,antonyandcleopatra,1606 confine,1,antonyandcleopatra,1606 with's,1,antonyandcleopatra,1606 princely,1,antonyandcleopatra,1606 savages,1,antonyandcleopatra,1606 nightingale,1,antonyandcleopatra,1606 dark,1,antonyandcleopatra,1606 Gracious,1,antonyandcleopatra,1606 novice,1,antonyandcleopatra,1606 wail'd,1,antonyandcleopatra,1606 ensued,1,antonyandcleopatra,1606 weigh,1,antonyandcleopatra,1606 embers,1,antonyandcleopatra,1606 dug,1,antonyandcleopatra,1606 Thracian,1,antonyandcleopatra,1606 Together,1,antonyandcleopatra,1606 weighs,1,antonyandcleopatra,1606 Bestow'd,1,antonyandcleopatra,1606 tow,1,antonyandcleopatra,1606 soothsayer,1,antonyandcleopatra,1606 roasted,1,antonyandcleopatra,1606 top,1,antonyandcleopatra,1606 injurious,1,antonyandcleopatra,1606 Telamon,1,antonyandcleopatra,1606 another's,1,antonyandcleopatra,1606 fellowship,1,antonyandcleopatra,1606 unparallel'd,1,antonyandcleopatra,1606 leaner,1,antonyandcleopatra,1606 snatch,1,antonyandcleopatra,1606 instantly,1,antonyandcleopatra,1606 resting,1,antonyandcleopatra,1606 emperor's,1,antonyandcleopatra,1606 mature,1,antonyandcleopatra,1606 DRAMATIS,1,antonyandcleopatra,1606 inches,1,antonyandcleopatra,1606 lamp,1,antonyandcleopatra,1606 chariot,1,antonyandcleopatra,1606 whores,1,antonyandcleopatra,1606 shift,1,antonyandcleopatra,1606 childishness,1,antonyandcleopatra,1606 rescue,1,antonyandcleopatra,1606 shine,1,antonyandcleopatra,1606 Archelaus,1,antonyandcleopatra,1606 physician,1,antonyandcleopatra,1606 obstruct,1,antonyandcleopatra,1606 damp,1,antonyandcleopatra,1606 window'd,1,antonyandcleopatra,1606 armed,1,antonyandcleopatra,1606 flower,1,antonyandcleopatra,1606 shiny,1,antonyandcleopatra,1606 dame,1,antonyandcleopatra,1606 rewards,1,antonyandcleopatra,1606 damn,1,antonyandcleopatra,1606 bark'd,1,antonyandcleopatra,1606 flows,1,antonyandcleopatra,1606 Nessus,1,antonyandcleopatra,1606 he'll,1,antonyandcleopatra,1606 meeter,1,antonyandcleopatra,1606 ascend,1,antonyandcleopatra,1606 frail,1,antonyandcleopatra,1606 Ride,1,antonyandcleopatra,1606 cross,1,antonyandcleopatra,1606 smell,1,antonyandcleopatra,1606 surfeits,1,antonyandcleopatra,1606 cabin,1,antonyandcleopatra,1606 dew,1,antonyandcleopatra,1606 Tarentum,1,antonyandcleopatra,1606 dear'd,1,antonyandcleopatra,1606 scotches,1,antonyandcleopatra,1606 sourest,1,antonyandcleopatra,1606 drown'd,1,antonyandcleopatra,1606 wenches,1,antonyandcleopatra,1606 scaled,1,antonyandcleopatra,1606 darkens,1,antonyandcleopatra,1606 plated,1,antonyandcleopatra,1606 brim,1,antonyandcleopatra,1606 scales,1,antonyandcleopatra,1606 emboss'd,1,antonyandcleopatra,1606 awake,1,antonyandcleopatra,1606 figures,1,antonyandcleopatra,1606 take't,1,antonyandcleopatra,1606 fullest,1,antonyandcleopatra,1606 Marcellus,1,antonyandcleopatra,1606 princess,1,antonyandcleopatra,1606 plates,1,antonyandcleopatra,1606 mutual,1,antonyandcleopatra,1606 Carries,1,antonyandcleopatra,1606 depart'st,1,antonyandcleopatra,1606 defences,1,antonyandcleopatra,1606 amen,1,antonyandcleopatra,1606 Fall,1,antonyandcleopatra,1606 done't,1,antonyandcleopatra,1606 usher,1,antonyandcleopatra,1606 repair,1,antonyandcleopatra,1606 Humbly,1,antonyandcleopatra,1606 augurers,1,antonyandcleopatra,1606 shirt,1,antonyandcleopatra,1606 solemnity,1,antonyandcleopatra,1606 lace,1,antonyandcleopatra,1606 Find,1,antonyandcleopatra,1606 obedience,1,antonyandcleopatra,1606 hangman,1,antonyandcleopatra,1606 petticoat,1,antonyandcleopatra,1606 queasy,1,antonyandcleopatra,1606 Betray'd,1,antonyandcleopatra,1606 leaky,1,antonyandcleopatra,1606 tread,1,antonyandcleopatra,1606 breaths,1,antonyandcleopatra,1606 Thrice,1,antonyandcleopatra,1606 Whistling,1,antonyandcleopatra,1606 pelleted,1,antonyandcleopatra,1606 Brundusium,1,antonyandcleopatra,1606 doctrine,1,antonyandcleopatra,1606 propertied,1,antonyandcleopatra,1606 bondman,1,antonyandcleopatra,1606 favouring,1,antonyandcleopatra,1606 sands,1,antonyandcleopatra,1606 din,1,antonyandcleopatra,1606 esteemed,1,antonyandcleopatra,1606 Fill,1,antonyandcleopatra,1606 enemy,1,antonyandcleopatra,1606 fortuned,1,antonyandcleopatra,1606 degrees,1,antonyandcleopatra,1606 hedge,1,antonyandcleopatra,1606 composure,1,antonyandcleopatra,1606 sway,1,antonyandcleopatra,1606 lads,1,antonyandcleopatra,1606 Tug,1,antonyandcleopatra,1606 heel,2,antonyandcleopatra,1606 horns,2,antonyandcleopatra,1606 accordingly,2,antonyandcleopatra,1606 parted,2,antonyandcleopatra,1606 Taurus,2,antonyandcleopatra,1606 X,2,antonyandcleopatra,1606 join,2,antonyandcleopatra,1606 Toryne,2,antonyandcleopatra,1606 pestilence,2,antonyandcleopatra,1606 afar,2,antonyandcleopatra,1606 You've,2,antonyandcleopatra,1606 darest,2,antonyandcleopatra,1606 description,2,antonyandcleopatra,1606 Romans,2,antonyandcleopatra,1606 dream'd,2,antonyandcleopatra,1606 following,2,antonyandcleopatra,1606 quietness,2,antonyandcleopatra,1606 lament,2,antonyandcleopatra,1606 advantage,2,antonyandcleopatra,1606 brown,2,antonyandcleopatra,1606 lower,2,antonyandcleopatra,1606 rot,2,antonyandcleopatra,1606 o'ertake,2,antonyandcleopatra,1606 robe,2,antonyandcleopatra,1606 highness',2,antonyandcleopatra,1606 Beat,2,antonyandcleopatra,1606 lowness,2,antonyandcleopatra,1606 day's,2,antonyandcleopatra,1606 sleeps,2,antonyandcleopatra,1606 helm,2,antonyandcleopatra,1606 truly,2,antonyandcleopatra,1606 dish,2,antonyandcleopatra,1606 hers,2,antonyandcleopatra,1606 dropp'd,2,antonyandcleopatra,1606 Domitius,2,antonyandcleopatra,1606 Beguiled,2,antonyandcleopatra,1606 sighs,2,antonyandcleopatra,1606 sight,2,antonyandcleopatra,1606 hearted,2,antonyandcleopatra,1606 fury,2,antonyandcleopatra,1606 declined,2,antonyandcleopatra,1606 Ere,2,antonyandcleopatra,1606 throat,2,antonyandcleopatra,1606 soul,2,antonyandcleopatra,1606 teachest,2,antonyandcleopatra,1606 yonder,2,antonyandcleopatra,1606 Alexandrian,2,antonyandcleopatra,1606 pinch,2,antonyandcleopatra,1606 Were't,2,antonyandcleopatra,1606 wounded,2,antonyandcleopatra,1606 proclaim,2,antonyandcleopatra,1606 Media,2,antonyandcleopatra,1606 liar,2,antonyandcleopatra,1606 worser,2,antonyandcleopatra,1606 pursue,2,antonyandcleopatra,1606 Once,2,antonyandcleopatra,1606 mercy,2,antonyandcleopatra,1606 VIII,2,antonyandcleopatra,1606 pine,2,antonyandcleopatra,1606 matters,2,antonyandcleopatra,1606 sat,2,antonyandcleopatra,1606 bearing,2,antonyandcleopatra,1606 years,2,antonyandcleopatra,1606 grows,2,antonyandcleopatra,1606 highness,2,antonyandcleopatra,1606 hoist,2,antonyandcleopatra,1606 Keep,2,antonyandcleopatra,1606 horror,2,antonyandcleopatra,1606 trumpet,2,antonyandcleopatra,1606 heat,2,antonyandcleopatra,1606 toward,2,antonyandcleopatra,1606 drew,2,antonyandcleopatra,1606 cheer,2,antonyandcleopatra,1606 Nilus',2,antonyandcleopatra,1606 policy,2,antonyandcleopatra,1606 paper,2,antonyandcleopatra,1606 galley,2,antonyandcleopatra,1606 fools,2,antonyandcleopatra,1606 blessed,2,antonyandcleopatra,1606 freedom,2,antonyandcleopatra,1606 wait,2,antonyandcleopatra,1606 mann'd,2,antonyandcleopatra,1606 black,2,antonyandcleopatra,1606 snakes,2,antonyandcleopatra,1606 six,2,antonyandcleopatra,1606 Egyptians,2,antonyandcleopatra,1606 Lydia,2,antonyandcleopatra,1606 warrant,2,antonyandcleopatra,1606 Phoebus',2,antonyandcleopatra,1606 impossible,2,antonyandcleopatra,1606 smites,2,antonyandcleopatra,1606 subdued,2,antonyandcleopatra,1606 worthiest,2,antonyandcleopatra,1606 sex,2,antonyandcleopatra,1606 barge,2,antonyandcleopatra,1606 monarch,2,antonyandcleopatra,1606 shrill,2,antonyandcleopatra,1606 wake,2,antonyandcleopatra,1606 touches,2,antonyandcleopatra,1606 kneel'd,2,antonyandcleopatra,1606 XII,2,antonyandcleopatra,1606 disposed,2,antonyandcleopatra,1606 fell,2,antonyandcleopatra,1606 concern,2,antonyandcleopatra,1606 council,2,antonyandcleopatra,1606 sworn,2,antonyandcleopatra,1606 winds,2,antonyandcleopatra,1606 looking,2,antonyandcleopatra,1606 'O,2,antonyandcleopatra,1606 'I,2,antonyandcleopatra,1606 countenance,2,antonyandcleopatra,1606 larger,2,antonyandcleopatra,1606 kindly,2,antonyandcleopatra,1606 taunt,2,antonyandcleopatra,1606 second,2,antonyandcleopatra,1606 shipping,2,antonyandcleopatra,1606 camps,2,antonyandcleopatra,1606 appear'd,2,antonyandcleopatra,1606 vile,2,antonyandcleopatra,1606 felt,2,antonyandcleopatra,1606 wrote,2,antonyandcleopatra,1606 received,2,antonyandcleopatra,1606 points,2,antonyandcleopatra,1606 Be't,2,antonyandcleopatra,1606 shower,2,antonyandcleopatra,1606 twelve,2,antonyandcleopatra,1606 ways,2,antonyandcleopatra,1606 born,2,antonyandcleopatra,1606 Officers,2,antonyandcleopatra,1606 civil,2,antonyandcleopatra,1606 absence,2,antonyandcleopatra,1606 king's,2,antonyandcleopatra,1606 detain,2,antonyandcleopatra,1606 terms,2,antonyandcleopatra,1606 encounter,2,antonyandcleopatra,1606 loose,2,antonyandcleopatra,1606 Pardon,2,antonyandcleopatra,1606 white,2,antonyandcleopatra,1606 Wherein,2,antonyandcleopatra,1606 Leave,2,antonyandcleopatra,1606 thence,2,antonyandcleopatra,1606 sue,2,antonyandcleopatra,1606 cries,2,antonyandcleopatra,1606 sum,2,antonyandcleopatra,1606 companion,2,antonyandcleopatra,1606 feed,2,antonyandcleopatra,1606 rush,2,antonyandcleopatra,1606 promise,2,antonyandcleopatra,1606 noblest,2,antonyandcleopatra,1606 cleave,2,antonyandcleopatra,1606 masters,2,antonyandcleopatra,1606 upon't,2,antonyandcleopatra,1606 wing,2,antonyandcleopatra,1606 Fly,2,antonyandcleopatra,1606 cuckold,2,antonyandcleopatra,1606 nails,2,antonyandcleopatra,1606 negligent,2,antonyandcleopatra,1606 sphere,2,antonyandcleopatra,1606 rarely,2,antonyandcleopatra,1606 seems,2,antonyandcleopatra,1606 length,2,antonyandcleopatra,1606 edge,2,antonyandcleopatra,1606 hated,2,antonyandcleopatra,1606 ruin,2,antonyandcleopatra,1606 accuse,2,antonyandcleopatra,1606 ambassador,2,antonyandcleopatra,1606 world's,2,antonyandcleopatra,1606 bidding,2,antonyandcleopatra,1606 stop,2,antonyandcleopatra,1606 warm,2,antonyandcleopatra,1606 pretty,2,antonyandcleopatra,1606 wash,2,antonyandcleopatra,1606 boot,2,antonyandcleopatra,1606 wast,2,antonyandcleopatra,1606 praised,2,antonyandcleopatra,1606 tent,2,antonyandcleopatra,1606 goddess,2,antonyandcleopatra,1606 urge,2,antonyandcleopatra,1606 ha',2,antonyandcleopatra,1606 Hold,2,antonyandcleopatra,1606 utter,2,antonyandcleopatra,1606 offend,2,antonyandcleopatra,1606 measure,2,antonyandcleopatra,1606 granted,2,antonyandcleopatra,1606 decorum,2,antonyandcleopatra,1606 pay,2,antonyandcleopatra,1606 onion,2,antonyandcleopatra,1606 hang'd,2,antonyandcleopatra,1606 empress,2,antonyandcleopatra,1606 scarce,2,antonyandcleopatra,1606 Hie,2,antonyandcleopatra,1606 Becomes,2,antonyandcleopatra,1606 govern,2,antonyandcleopatra,1606 Having,2,antonyandcleopatra,1606 Lo,2,antonyandcleopatra,1606 Ourselves,2,antonyandcleopatra,1606 pays,2,antonyandcleopatra,1606 star,2,antonyandcleopatra,1606 tales,2,antonyandcleopatra,1606 pitied,2,antonyandcleopatra,1606 wisdom,2,antonyandcleopatra,1606 Ha,2,antonyandcleopatra,1606 beg,2,antonyandcleopatra,1606 requires,2,antonyandcleopatra,1606 ills,2,antonyandcleopatra,1606 IX,2,antonyandcleopatra,1606 troops,2,antonyandcleopatra,1606 proud,2,antonyandcleopatra,1606 Is't,2,antonyandcleopatra,1606 nobly,2,antonyandcleopatra,1606 heads,2,antonyandcleopatra,1606 kiss'd,2,antonyandcleopatra,1606 Forgive,2,antonyandcleopatra,1606 broached,2,antonyandcleopatra,1606 XI,2,antonyandcleopatra,1606 divide,2,antonyandcleopatra,1606 aspic,2,antonyandcleopatra,1606 was't,2,antonyandcleopatra,1606 rebel,2,antonyandcleopatra,1606 Sits,2,antonyandcleopatra,1606 difference,2,antonyandcleopatra,1606 goodly,2,antonyandcleopatra,1606 burn,2,antonyandcleopatra,1606 got,2,antonyandcleopatra,1606 cap,2,antonyandcleopatra,1606 Yourself,2,antonyandcleopatra,1606 immediate,2,antonyandcleopatra,1606 gaze,2,antonyandcleopatra,1606 wear,2,antonyandcleopatra,1606 Behold,2,antonyandcleopatra,1606 sustain,2,antonyandcleopatra,1606 fifty,2,antonyandcleopatra,1606 nodded,2,antonyandcleopatra,1606 a',2,antonyandcleopatra,1606 twice,2,antonyandcleopatra,1606 Didst,2,antonyandcleopatra,1606 just,2,antonyandcleopatra,1606 mechanic,2,antonyandcleopatra,1606 conquest,2,antonyandcleopatra,1606 swift,2,antonyandcleopatra,1606 vassal,2,antonyandcleopatra,1606 travel,2,antonyandcleopatra,1606 used,2,antonyandcleopatra,1606 preserve,2,antonyandcleopatra,1606 vacancy,2,antonyandcleopatra,1606 O'er,2,antonyandcleopatra,1606 Enough,2,antonyandcleopatra,1606 admired,2,antonyandcleopatra,1606 stronger,2,antonyandcleopatra,1606 beds,2,antonyandcleopatra,1606 lamented,2,antonyandcleopatra,1606 vantage,2,antonyandcleopatra,1606 river,2,antonyandcleopatra,1606 storm,2,antonyandcleopatra,1606 overplus,2,antonyandcleopatra,1606 story,2,antonyandcleopatra,1606 forgive,2,antonyandcleopatra,1606 confess,2,antonyandcleopatra,1606 Cannot,2,antonyandcleopatra,1606 satisfy,2,antonyandcleopatra,1606 aid,2,antonyandcleopatra,1606 battery,2,antonyandcleopatra,1606 prevented,2,antonyandcleopatra,1606 tongued,2,antonyandcleopatra,1606 swearing,2,antonyandcleopatra,1606 stone,2,antonyandcleopatra,1606 plays,2,antonyandcleopatra,1606 victory,2,antonyandcleopatra,1606 lent,2,antonyandcleopatra,1606 Last,2,antonyandcleopatra,1606 time's,2,antonyandcleopatra,1606 thrive,2,antonyandcleopatra,1606 lend,2,antonyandcleopatra,1606 comforts,2,antonyandcleopatra,1606 memory,2,antonyandcleopatra,1606 forget,2,antonyandcleopatra,1606 newly,2,antonyandcleopatra,1606 door,2,antonyandcleopatra,1606 doom,2,antonyandcleopatra,1606 know't,2,antonyandcleopatra,1606 small,2,antonyandcleopatra,1606 necessity,2,antonyandcleopatra,1606 aside,2,antonyandcleopatra,1606 crave,2,antonyandcleopatra,1606 wrinkled,2,antonyandcleopatra,1606 abide,2,antonyandcleopatra,1606 Kingdoms,2,antonyandcleopatra,1606 POMPEY's,2,antonyandcleopatra,1606 'twould,2,antonyandcleopatra,1606 lots,2,antonyandcleopatra,1606 begg'd,2,antonyandcleopatra,1606 studied,2,antonyandcleopatra,1606 pursued,2,antonyandcleopatra,1606 endure,2,antonyandcleopatra,1606 commands,2,antonyandcleopatra,1606 playing,2,antonyandcleopatra,1606 partners,2,antonyandcleopatra,1606 devil,2,antonyandcleopatra,1606 knot,2,antonyandcleopatra,1606 Caesarion,2,antonyandcleopatra,1606 It's,2,antonyandcleopatra,1606 show'd,2,antonyandcleopatra,1606 journey,2,antonyandcleopatra,1606 hot,2,antonyandcleopatra,1606 Been,2,antonyandcleopatra,1606 hark,2,antonyandcleopatra,1606 events,2,antonyandcleopatra,1606 hardly,2,antonyandcleopatra,1606 hard,2,antonyandcleopatra,1606 soldiership,2,antonyandcleopatra,1606 Jack,2,antonyandcleopatra,1606 pale,2,antonyandcleopatra,1606 Tend,2,antonyandcleopatra,1606 palm,2,antonyandcleopatra,1606 Hercules,2,antonyandcleopatra,1606 perform'd,2,antonyandcleopatra,1606 husband's,2,antonyandcleopatra,1606 natural,2,antonyandcleopatra,1606 see't,2,antonyandcleopatra,1606 excuse,2,antonyandcleopatra,1606 expect,2,antonyandcleopatra,1606 She's,2,antonyandcleopatra,1606 rashness,2,antonyandcleopatra,1606 pain,2,antonyandcleopatra,1606 Hush,2,antonyandcleopatra,1606 money,2,antonyandcleopatra,1606 fronted,2,antonyandcleopatra,1606 fear'd,2,antonyandcleopatra,1606 fishes,2,antonyandcleopatra,1606 flatter'd,2,antonyandcleopatra,1606 food,2,antonyandcleopatra,1606 ass,2,antonyandcleopatra,1606 accidents,2,antonyandcleopatra,1606 rightly,2,antonyandcleopatra,1606 ingratitude,2,antonyandcleopatra,1606 King,2,antonyandcleopatra,1606 Strikes,2,antonyandcleopatra,1606 banquet,2,antonyandcleopatra,1606 undone,2,antonyandcleopatra,1606 yet',2,antonyandcleopatra,1606 ministers,2,antonyandcleopatra,1606 mares,2,antonyandcleopatra,1606 Art,2,antonyandcleopatra,1606 guest,2,antonyandcleopatra,1606 moves,2,antonyandcleopatra,1606 march,2,antonyandcleopatra,1606 height,2,antonyandcleopatra,1606 nobler,2,antonyandcleopatra,1606 luck,2,antonyandcleopatra,1606 lean,2,antonyandcleopatra,1606 delicate,2,antonyandcleopatra,1606 leap,2,antonyandcleopatra,1606 justice,2,antonyandcleopatra,1606 Captains,2,antonyandcleopatra,1606 occasion,2,antonyandcleopatra,1606 universal,2,antonyandcleopatra,1606 moved,2,antonyandcleopatra,1606 Become,2,antonyandcleopatra,1606 maid,2,antonyandcleopatra,1606 garboils,2,antonyandcleopatra,1606 hill,2,antonyandcleopatra,1606 reported,2,antonyandcleopatra,1606 rose,2,antonyandcleopatra,1606 fugitive,2,antonyandcleopatra,1606 triumphant,2,antonyandcleopatra,1606 faith,2,antonyandcleopatra,1606 Half,2,antonyandcleopatra,1606 nose,2,antonyandcleopatra,1606 midst,2,antonyandcleopatra,1606 Venus,2,antonyandcleopatra,1606 begone,2,antonyandcleopatra,1606 lack'd,2,antonyandcleopatra,1606 rare,2,antonyandcleopatra,1606 dress,2,antonyandcleopatra,1606 rudder,2,antonyandcleopatra,1606 gently,2,antonyandcleopatra,1606 temperance,2,antonyandcleopatra,1606 hint,2,antonyandcleopatra,1606 entertainment,2,antonyandcleopatra,1606 bears,2,antonyandcleopatra,1606 year,2,antonyandcleopatra,1606 Love,2,antonyandcleopatra,1606 foresee,2,antonyandcleopatra,1606 charm,2,antonyandcleopatra,1606 All's,2,antonyandcleopatra,1606 mount,2,antonyandcleopatra,1606 affections,2,antonyandcleopatra,1606 High,2,antonyandcleopatra,1606 Further,2,antonyandcleopatra,1606 ignorant,2,antonyandcleopatra,1606 dares,2,antonyandcleopatra,1606 freely,2,antonyandcleopatra,1606 famous,2,antonyandcleopatra,1606 placed,2,antonyandcleopatra,1606 towards,2,antonyandcleopatra,1606 Drums,2,antonyandcleopatra,1606 shield,2,antonyandcleopatra,1606 Makes,2,antonyandcleopatra,1606 blush,2,antonyandcleopatra,1606 beggar,2,antonyandcleopatra,1606 bloody,2,antonyandcleopatra,1606 Queen,2,antonyandcleopatra,1606 reading,2,antonyandcleopatra,1606 chief,2,antonyandcleopatra,1606 mark,2,antonyandcleopatra,1606 issue,2,antonyandcleopatra,1606 won,2,antonyandcleopatra,1606 judgments,2,antonyandcleopatra,1606 inch,2,antonyandcleopatra,1606 gates,2,antonyandcleopatra,1606 Determine,2,antonyandcleopatra,1606 blasted,2,antonyandcleopatra,1606 vapour,2,antonyandcleopatra,1606 firm,2,antonyandcleopatra,1606 desired,2,antonyandcleopatra,1606 maids,2,antonyandcleopatra,1606 odd,2,antonyandcleopatra,1606 stale,2,antonyandcleopatra,1606 retire,2,antonyandcleopatra,1606 dishonour,2,antonyandcleopatra,1606 five,2,antonyandcleopatra,1606 though't,2,antonyandcleopatra,1606 operation,2,antonyandcleopatra,1606 import,2,antonyandcleopatra,1606 services,2,antonyandcleopatra,1606 gap,2,antonyandcleopatra,1606 recover,2,antonyandcleopatra,1606 Dear,2,antonyandcleopatra,1606 files,2,antonyandcleopatra,1606 death's,2,antonyandcleopatra,1606 count,2,antonyandcleopatra,1606 torture,2,antonyandcleopatra,1606 crown'd,2,antonyandcleopatra,1606 called,2,antonyandcleopatra,1606 flourish,2,antonyandcleopatra,1606 heave,2,antonyandcleopatra,1606 perforce,2,antonyandcleopatra,1606 oath,2,antonyandcleopatra,1606 intend,2,antonyandcleopatra,1606 they'ld,2,antonyandcleopatra,1606 blemish,2,antonyandcleopatra,1606 danger,2,antonyandcleopatra,1606 admitted,2,antonyandcleopatra,1606 supper,2,antonyandcleopatra,1606 coming,2,antonyandcleopatra,1606 Sister,2,antonyandcleopatra,1606 Three,2,antonyandcleopatra,1606 throats,2,antonyandcleopatra,1606 robb'd,2,antonyandcleopatra,1606 competitor,2,antonyandcleopatra,1606 baseness,2,antonyandcleopatra,1606 dreams,2,antonyandcleopatra,1606 takes,2,antonyandcleopatra,1606 morsel,2,antonyandcleopatra,1606 varying,2,antonyandcleopatra,1606 reports,2,antonyandcleopatra,1606 size,2,antonyandcleopatra,1606 blemishes,2,antonyandcleopatra,1606 inform,2,antonyandcleopatra,1606 require,2,antonyandcleopatra,1606 womb,2,antonyandcleopatra,1606 owe,2,antonyandcleopatra,1606 disposition,2,antonyandcleopatra,1606 rain,2,antonyandcleopatra,1606 clip,2,antonyandcleopatra,1606 movest,2,antonyandcleopatra,1606 fail,2,antonyandcleopatra,1606 minister,2,antonyandcleopatra,1606 garlands,2,antonyandcleopatra,1606 cried,2,antonyandcleopatra,1606 wept,2,antonyandcleopatra,1606 yond,2,antonyandcleopatra,1606 modesty,2,antonyandcleopatra,1606 cares,2,antonyandcleopatra,1606 article,2,antonyandcleopatra,1606 Hadst,2,antonyandcleopatra,1606 truths,2,antonyandcleopatra,1606 race,2,antonyandcleopatra,1606 methinks,2,antonyandcleopatra,1606 grand,2,antonyandcleopatra,1606 worn,2,antonyandcleopatra,1606 discover,2,antonyandcleopatra,1606 tune,2,antonyandcleopatra,1606 company,2,antonyandcleopatra,1606 wore,2,antonyandcleopatra,1606 fit,2,antonyandcleopatra,1606 Excellent,2,antonyandcleopatra,1606 fine,2,antonyandcleopatra,1606 profit,2,antonyandcleopatra,1606 safety,2,antonyandcleopatra,1606 rattling,2,antonyandcleopatra,1606 Near,2,antonyandcleopatra,1606 rebuke,2,antonyandcleopatra,1606 Fare,2,antonyandcleopatra,1606 Unto,2,antonyandcleopatra,1606 pocket,2,antonyandcleopatra,1606 practise,2,antonyandcleopatra,1606 Beneath,2,antonyandcleopatra,1606 partly,2,antonyandcleopatra,1606 wives,2,antonyandcleopatra,1606 gilded,2,antonyandcleopatra,1606 base,2,antonyandcleopatra,1606 ditch,2,antonyandcleopatra,1606 band,2,antonyandcleopatra,1606 friendship,2,antonyandcleopatra,1606 hook,2,antonyandcleopatra,1606 creeps,2,antonyandcleopatra,1606 Cup,2,antonyandcleopatra,1606 fast,2,antonyandcleopatra,1606 trumpets,2,antonyandcleopatra,1606 talk,2,antonyandcleopatra,1606 man's,2,antonyandcleopatra,1606 arm'd,2,antonyandcleopatra,1606 fruitful,2,antonyandcleopatra,1606 bind,2,antonyandcleopatra,1606 aloft,2,antonyandcleopatra,1606 Appear,2,antonyandcleopatra,1606 convey,2,antonyandcleopatra,1606 perish,2,antonyandcleopatra,1606 holes,2,antonyandcleopatra,1606 sixty,2,antonyandcleopatra,1606 Rather,2,antonyandcleopatra,1606 shook,2,antonyandcleopatra,1606 clear,2,antonyandcleopatra,1606 short,2,antonyandcleopatra,1606 greet,2,antonyandcleopatra,1606 famine,2,antonyandcleopatra,1606 feasts,2,antonyandcleopatra,1606 request,2,antonyandcleopatra,1606 condemn,2,antonyandcleopatra,1606 Cassius,2,antonyandcleopatra,1606 resolution,2,antonyandcleopatra,1606 prayers,2,antonyandcleopatra,1606 seat,2,antonyandcleopatra,1606 Thyreus,2,antonyandcleopatra,1606 hairs,2,antonyandcleopatra,1606 along,2,antonyandcleopatra,1606 cool,2,antonyandcleopatra,1606 Cydnus,2,antonyandcleopatra,1606 adieu,2,antonyandcleopatra,1606 fairer,2,antonyandcleopatra,1606 fights,2,antonyandcleopatra,1606 either,2,antonyandcleopatra,1606 Lie,2,antonyandcleopatra,1606 meantime,2,antonyandcleopatra,1606 vessel,2,antonyandcleopatra,1606 period,2,antonyandcleopatra,1606 XIII,2,antonyandcleopatra,1606 sacred,2,antonyandcleopatra,1606 cry,2,antonyandcleopatra,1606 heels,2,antonyandcleopatra,1606 million,2,antonyandcleopatra,1606 goal,2,antonyandcleopatra,1606 huge,2,antonyandcleopatra,1606 jolly,2,antonyandcleopatra,1606 extremes,2,antonyandcleopatra,1606 beheld,2,antonyandcleopatra,1606 self,2,antonyandcleopatra,1606 tide,2,antonyandcleopatra,1606 post,2,antonyandcleopatra,1606 levity,2,antonyandcleopatra,1606 bade,2,antonyandcleopatra,1606 nurse,2,antonyandcleopatra,1606 residing,2,antonyandcleopatra,1606 countryman,2,antonyandcleopatra,1606 invite,2,antonyandcleopatra,1606 lip,2,antonyandcleopatra,1606 master's,2,antonyandcleopatra,1606 sheets,2,antonyandcleopatra,1606 nature's,2,antonyandcleopatra,1606 until,2,antonyandcleopatra,1606 abroad,2,antonyandcleopatra,1606 afeard,2,antonyandcleopatra,1606 cement,2,antonyandcleopatra,1606 smiling,2,antonyandcleopatra,1606 forced,2,antonyandcleopatra,1606 Armenia,2,antonyandcleopatra,1606 dread,2,antonyandcleopatra,1606 warlike,2,antonyandcleopatra,1606 meeting,2,antonyandcleopatra,1606 street,2,antonyandcleopatra,1606 whip,2,antonyandcleopatra,1606 fully,2,antonyandcleopatra,1606 crocodile,2,antonyandcleopatra,1606 biting,2,antonyandcleopatra,1606 Away,2,antonyandcleopatra,1606 Dissolve,2,antonyandcleopatra,1606 henceforth,2,antonyandcleopatra,1606 strokes,2,antonyandcleopatra,1606 Amen,2,antonyandcleopatra,1606 sometimes,2,antonyandcleopatra,1606 fleeting,2,antonyandcleopatra,1606 attendants,2,antonyandcleopatra,1606 Without,2,antonyandcleopatra,1606 peep,2,antonyandcleopatra,1606 harms,2,antonyandcleopatra,1606 breaking,2,antonyandcleopatra,1606 contend,2,antonyandcleopatra,1606 content,2,antonyandcleopatra,1606 simple,2,antonyandcleopatra,1606 witness,2,antonyandcleopatra,1606 hired,2,antonyandcleopatra,1606 lover's,2,antonyandcleopatra,1606 Note,2,antonyandcleopatra,1606 employ,2,antonyandcleopatra,1606 dog,2,antonyandcleopatra,1606 honour'd,2,antonyandcleopatra,1606 harsh,2,antonyandcleopatra,1606 mud,2,antonyandcleopatra,1606 perchance,2,antonyandcleopatra,1606 Whip,2,antonyandcleopatra,1606 frame,2,antonyandcleopatra,1606 Rich,2,antonyandcleopatra,1606 ha't,2,antonyandcleopatra,1606 withhold,2,antonyandcleopatra,1606 instruction,2,antonyandcleopatra,1606 bred,2,antonyandcleopatra,1606 tie,2,antonyandcleopatra,1606 Touch,2,antonyandcleopatra,1606 dotage,2,antonyandcleopatra,1606 Too,2,antonyandcleopatra,1606 entreated,2,antonyandcleopatra,1606 divided,2,antonyandcleopatra,1606 pirates,2,antonyandcleopatra,1606 stol'n,2,antonyandcleopatra,1606 private,2,antonyandcleopatra,1606 shouting,2,antonyandcleopatra,1606 doting,2,antonyandcleopatra,1606 forbear,2,antonyandcleopatra,1606 remembrance,2,antonyandcleopatra,1606 breathe,2,antonyandcleopatra,1606 bids,2,antonyandcleopatra,1606 shape,2,antonyandcleopatra,1606 flutes,2,antonyandcleopatra,1606 'Antony,2,antonyandcleopatra,1606 order,2,antonyandcleopatra,1606 e'er,2,antonyandcleopatra,1606 turn'd,2,antonyandcleopatra,1606 sharp,2,antonyandcleopatra,1606 schoolmaster,2,antonyandcleopatra,1606 troubled,3,antonyandcleopatra,1606 meet,3,antonyandcleopatra,1606 quality,3,antonyandcleopatra,1606 forbid,3,antonyandcleopatra,1606 swords,3,antonyandcleopatra,1606 taking,3,antonyandcleopatra,1606 Sextus,3,antonyandcleopatra,1606 fancy,3,antonyandcleopatra,1606 Philippi,3,antonyandcleopatra,1606 motion,3,antonyandcleopatra,1606 preparation,3,antonyandcleopatra,1606 offended,3,antonyandcleopatra,1606 mend,3,antonyandcleopatra,1606 Wilt,3,antonyandcleopatra,1606 space,3,antonyandcleopatra,1606 reserved,3,antonyandcleopatra,1606 single,3,antonyandcleopatra,1606 spake,3,antonyandcleopatra,1606 while,3,antonyandcleopatra,1606 offer,3,antonyandcleopatra,1606 withal,3,antonyandcleopatra,1606 signs,3,antonyandcleopatra,1606 under,3,antonyandcleopatra,1606 odds,3,antonyandcleopatra,1606 cheeks,3,antonyandcleopatra,1606 sold,3,antonyandcleopatra,1606 thou'rt,3,antonyandcleopatra,1606 cheek,3,antonyandcleopatra,1606 amity,3,antonyandcleopatra,1606 she's,3,antonyandcleopatra,1606 ocean,3,antonyandcleopatra,1606 sit,3,antonyandcleopatra,1606 bound,3,antonyandcleopatra,1606 light,3,antonyandcleopatra,1606 think'st,3,antonyandcleopatra,1606 fleet,3,antonyandcleopatra,1606 'twas,3,antonyandcleopatra,1606 throne,3,antonyandcleopatra,1606 abused,3,antonyandcleopatra,1606 peril,3,antonyandcleopatra,1606 beloved,3,antonyandcleopatra,1606 play'd,3,antonyandcleopatra,1606 sends,3,antonyandcleopatra,1606 read,3,antonyandcleopatra,1606 Diomed,3,antonyandcleopatra,1606 worst,3,antonyandcleopatra,1606 offence,3,antonyandcleopatra,1606 wrong,3,antonyandcleopatra,1606 heavens,3,antonyandcleopatra,1606 common,3,antonyandcleopatra,1606 Turn,3,antonyandcleopatra,1606 seeks,3,antonyandcleopatra,1606 dearly,3,antonyandcleopatra,1606 Whilst,3,antonyandcleopatra,1606 above,3,antonyandcleopatra,1606 girls,3,antonyandcleopatra,1606 feet,3,antonyandcleopatra,1606 punish,3,antonyandcleopatra,1606 saucy,3,antonyandcleopatra,1606 flesh,3,antonyandcleopatra,1606 Hence,3,antonyandcleopatra,1606 Might,3,antonyandcleopatra,1606 mirth,3,antonyandcleopatra,1606 wise,3,antonyandcleopatra,1606 sense,3,antonyandcleopatra,1606 merely,3,antonyandcleopatra,1606 authority,3,antonyandcleopatra,1606 chamber,3,antonyandcleopatra,1606 'But,3,antonyandcleopatra,1606 drinking,3,antonyandcleopatra,1606 neither,3,antonyandcleopatra,1606 blows,3,antonyandcleopatra,1606 blown,3,antonyandcleopatra,1606 brings,3,antonyandcleopatra,1606 meant,3,antonyandcleopatra,1606 bless,3,antonyandcleopatra,1606 east,3,antonyandcleopatra,1606 conqueror,3,antonyandcleopatra,1606 pass,3,antonyandcleopatra,1606 VI,3,antonyandcleopatra,1606 monstrous,3,antonyandcleopatra,1606 Julius,3,antonyandcleopatra,1606 prove,3,antonyandcleopatra,1606 whore,3,antonyandcleopatra,1606 valiant,3,antonyandcleopatra,1606 sits,3,antonyandcleopatra,1606 grief,3,antonyandcleopatra,1606 children,3,antonyandcleopatra,1606 struck,3,antonyandcleopatra,1606 weak,3,antonyandcleopatra,1606 captains,3,antonyandcleopatra,1606 Dies,3,antonyandcleopatra,1606 serpent,3,antonyandcleopatra,1606 Mecaenas,3,antonyandcleopatra,1606 pains,3,antonyandcleopatra,1606 Both,3,antonyandcleopatra,1606 quite,3,antonyandcleopatra,1606 impatience,3,antonyandcleopatra,1606 conquering,3,antonyandcleopatra,1606 affection,3,antonyandcleopatra,1606 ha,3,antonyandcleopatra,1606 promises,3,antonyandcleopatra,1606 servant,3,antonyandcleopatra,1606 repent,3,antonyandcleopatra,1606 Here's,3,antonyandcleopatra,1606 Best,3,antonyandcleopatra,1606 favour,3,antonyandcleopatra,1606 safe,3,antonyandcleopatra,1606 tongues,3,antonyandcleopatra,1606 enforce,3,antonyandcleopatra,1606 Egypt's,3,antonyandcleopatra,1606 touch'd,3,antonyandcleopatra,1606 buried,3,antonyandcleopatra,1606 approach,3,antonyandcleopatra,1606 slime,3,antonyandcleopatra,1606 move,3,antonyandcleopatra,1606 spend,3,antonyandcleopatra,1606 ready,3,antonyandcleopatra,1606 valour,3,antonyandcleopatra,1606 front,3,antonyandcleopatra,1606 Pompey's,3,antonyandcleopatra,1606 Army,3,antonyandcleopatra,1606 knit,3,antonyandcleopatra,1606 appears,3,antonyandcleopatra,1606 nobleness,3,antonyandcleopatra,1606 four,3,antonyandcleopatra,1606 foul,3,antonyandcleopatra,1606 marching,3,antonyandcleopatra,1606 city,3,antonyandcleopatra,1606 brothers,3,antonyandcleopatra,1606 asp,3,antonyandcleopatra,1606 ship,3,antonyandcleopatra,1606 mock,3,antonyandcleopatra,1606 point,3,antonyandcleopatra,1606 bosom,3,antonyandcleopatra,1606 yielded,3,antonyandcleopatra,1606 serpents,3,antonyandcleopatra,1606 yare,3,antonyandcleopatra,1606 fold,3,antonyandcleopatra,1606 Into,3,antonyandcleopatra,1606 witch,3,antonyandcleopatra,1606 Between,3,antonyandcleopatra,1606 equal,3,antonyandcleopatra,1606 Actium,3,antonyandcleopatra,1606 couldst,3,antonyandcleopatra,1606 Octavius,3,antonyandcleopatra,1606 knew'st,3,antonyandcleopatra,1606 below,3,antonyandcleopatra,1606 Misenum,3,antonyandcleopatra,1606 Silius,3,antonyandcleopatra,1606 Alack,3,antonyandcleopatra,1606 sirrah,3,antonyandcleopatra,1606 slain,3,antonyandcleopatra,1606 written,3,antonyandcleopatra,1606 young,3,antonyandcleopatra,1606 basket,3,antonyandcleopatra,1606 Royal,3,antonyandcleopatra,1606 Approach,3,antonyandcleopatra,1606 Train,3,antonyandcleopatra,1606 scars,3,antonyandcleopatra,1606 powers,3,antonyandcleopatra,1606 child,3,antonyandcleopatra,1606 question,3,antonyandcleopatra,1606 approaches,3,antonyandcleopatra,1606 kisses,3,antonyandcleopatra,1606 didst,3,antonyandcleopatra,1606 courage,3,antonyandcleopatra,1606 dearest,3,antonyandcleopatra,1606 kissing,3,antonyandcleopatra,1606 thick,3,antonyandcleopatra,1606 woe,3,antonyandcleopatra,1606 devils,3,antonyandcleopatra,1606 blow,3,antonyandcleopatra,1606 need,3,antonyandcleopatra,1606 higher,3,antonyandcleopatra,1606 over,3,antonyandcleopatra,1606 number,3,antonyandcleopatra,1606 apart,3,antonyandcleopatra,1606 Parthian,3,antonyandcleopatra,1606 desires,3,antonyandcleopatra,1606 close,3,antonyandcleopatra,1606 VARRIUS,3,antonyandcleopatra,1606 get,3,antonyandcleopatra,1606 Friends,3,antonyandcleopatra,1606 oft,3,antonyandcleopatra,1606 court,3,antonyandcleopatra,1606 knife,3,antonyandcleopatra,1606 fetch,3,antonyandcleopatra,1606 believe,3,antonyandcleopatra,1606 arms,3,antonyandcleopatra,1606 ends,3,antonyandcleopatra,1606 Fourth,3,antonyandcleopatra,1606 hair,3,antonyandcleopatra,1606 taken,3,antonyandcleopatra,1606 marry,3,antonyandcleopatra,1606 figs,3,antonyandcleopatra,1606 what's,3,antonyandcleopatra,1606 dull,3,antonyandcleopatra,1606 Forbear,3,antonyandcleopatra,1606 went,3,antonyandcleopatra,1606 followers,3,antonyandcleopatra,1606 Strike,3,antonyandcleopatra,1606 Antony's,3,antonyandcleopatra,1606 cloud,3,antonyandcleopatra,1606 Jupiter,3,antonyandcleopatra,1606 letter,3,antonyandcleopatra,1606 Ptolemy,3,antonyandcleopatra,1606 'em,3,antonyandcleopatra,1606 minute,3,antonyandcleopatra,1606 officer,3,antonyandcleopatra,1606 fill,3,antonyandcleopatra,1606 folly,3,antonyandcleopatra,1606 particular,3,antonyandcleopatra,1606 Lead,3,antonyandcleopatra,1606 host,3,antonyandcleopatra,1606 shows,3,antonyandcleopatra,1606 whither,3,antonyandcleopatra,1606 fate,3,antonyandcleopatra,1606 Very,3,antonyandcleopatra,1606 Officer,3,antonyandcleopatra,1606 Each,3,antonyandcleopatra,1606 tall,3,antonyandcleopatra,1606 cup,3,antonyandcleopatra,1606 carry,3,antonyandcleopatra,1606 wilt,3,antonyandcleopatra,1606 shore,3,antonyandcleopatra,1606 Pompeius,3,antonyandcleopatra,1606 holy,3,antonyandcleopatra,1606 quit,3,antonyandcleopatra,1606 None,3,antonyandcleopatra,1606 green,3,antonyandcleopatra,1606 cut,3,antonyandcleopatra,1606 Who's,3,antonyandcleopatra,1606 revolt,3,antonyandcleopatra,1606 feeding,3,antonyandcleopatra,1606 Wherefore,3,antonyandcleopatra,1606 seal,3,antonyandcleopatra,1606 gives,3,antonyandcleopatra,1606 intents,3,antonyandcleopatra,1606 elements,3,antonyandcleopatra,1606 low,3,antonyandcleopatra,1606 captain's,3,antonyandcleopatra,1606 acts,3,antonyandcleopatra,1606 goodness,3,antonyandcleopatra,1606 presence,3,antonyandcleopatra,1606 Nilus,3,antonyandcleopatra,1606 tells,3,antonyandcleopatra,1606 He'll,3,antonyandcleopatra,1606 entreat,3,antonyandcleopatra,1606 port,3,antonyandcleopatra,1606 greeting,3,antonyandcleopatra,1606 sickness,3,antonyandcleopatra,1606 Nothing,3,antonyandcleopatra,1606 honesty,3,antonyandcleopatra,1606 spirits,3,antonyandcleopatra,1606 Kisses,3,antonyandcleopatra,1606 least,3,antonyandcleopatra,1606 revolted,3,antonyandcleopatra,1606 begins,3,antonyandcleopatra,1606 learn,3,antonyandcleopatra,1606 remember,3,antonyandcleopatra,1606 glory,3,antonyandcleopatra,1606 Does,3,antonyandcleopatra,1606 fled,3,antonyandcleopatra,1606 Indeed,3,antonyandcleopatra,1606 marriage,3,antonyandcleopatra,1606 amorous,3,antonyandcleopatra,1606 beauty,3,antonyandcleopatra,1606 VII,3,antonyandcleopatra,1606 list,3,antonyandcleopatra,1606 widow,3,antonyandcleopatra,1606 You'll,3,antonyandcleopatra,1606 Lest,3,antonyandcleopatra,1606 sudden,3,antonyandcleopatra,1606 record,3,antonyandcleopatra,1606 trees,3,antonyandcleopatra,1606 kill,3,antonyandcleopatra,1606 market,3,antonyandcleopatra,1606 Sicyon,3,antonyandcleopatra,1606 e'en,3,antonyandcleopatra,1606 Brutus,4,antonyandcleopatra,1606 suffer,4,antonyandcleopatra,1606 days,4,antonyandcleopatra,1606 haste,4,antonyandcleopatra,1606 joy,4,antonyandcleopatra,1606 villain,4,antonyandcleopatra,1606 melt,4,antonyandcleopatra,1606 held,4,antonyandcleopatra,1606 Tell,4,antonyandcleopatra,1606 laugh,4,antonyandcleopatra,1606 run,4,antonyandcleopatra,1606 truth,4,antonyandcleopatra,1606 remain,4,antonyandcleopatra,1606 Whom,4,antonyandcleopatra,1606 care,4,antonyandcleopatra,1606 cast,4,antonyandcleopatra,1606 PHILO,4,antonyandcleopatra,1606 grown,4,antonyandcleopatra,1606 gracious,4,antonyandcleopatra,1606 DEMETRIUS,4,antonyandcleopatra,1606 came,4,antonyandcleopatra,1606 Gentle,4,antonyandcleopatra,1606 view,4,antonyandcleopatra,1606 stands,4,antonyandcleopatra,1606 laugh'd,4,antonyandcleopatra,1606 worth,4,antonyandcleopatra,1606 son,4,antonyandcleopatra,1606 looks,4,antonyandcleopatra,1606 Music,4,antonyandcleopatra,1606 worse,4,antonyandcleopatra,1606 piece,4,antonyandcleopatra,1606 fault,4,antonyandcleopatra,1606 Athens,4,antonyandcleopatra,1606 feel,4,antonyandcleopatra,1606 Antonius,4,antonyandcleopatra,1606 infinite,4,antonyandcleopatra,1606 beaten,4,antonyandcleopatra,1606 grow,4,antonyandcleopatra,1606 wind,4,antonyandcleopatra,1606 wishes,4,antonyandcleopatra,1606 kneel,4,antonyandcleopatra,1606 One,4,antonyandcleopatra,1606 want,4,antonyandcleopatra,1606 rest,4,antonyandcleopatra,1606 cunning,4,antonyandcleopatra,1606 parts,4,antonyandcleopatra,1606 Follow,4,antonyandcleopatra,1606 offers,4,antonyandcleopatra,1606 sick,4,antonyandcleopatra,1606 knowledge,4,antonyandcleopatra,1606 I',4,antonyandcleopatra,1606 morning,4,antonyandcleopatra,1606 At,4,antonyandcleopatra,1606 deeds,4,antonyandcleopatra,1606 bad,4,antonyandcleopatra,1606 denied,4,antonyandcleopatra,1606 to't,4,antonyandcleopatra,1606 Ho,4,antonyandcleopatra,1606 means,4,antonyandcleopatra,1606 sport,4,antonyandcleopatra,1606 Had,4,antonyandcleopatra,1606 past,4,antonyandcleopatra,1606 ears,4,antonyandcleopatra,1606 navy,4,antonyandcleopatra,1606 obey,4,antonyandcleopatra,1606 god,4,antonyandcleopatra,1606 sorry,4,antonyandcleopatra,1606 Prithee,4,antonyandcleopatra,1606 dost,4,antonyandcleopatra,1606 Put,4,antonyandcleopatra,1606 ANTONY's,4,antonyandcleopatra,1606 longer,4,antonyandcleopatra,1606 sing,4,antonyandcleopatra,1606 breath,4,antonyandcleopatra,1606 breast,4,antonyandcleopatra,1606 excellent,4,antonyandcleopatra,1606 stood,4,antonyandcleopatra,1606 Jewry,4,antonyandcleopatra,1606 husband,4,antonyandcleopatra,1606 betray'd,4,antonyandcleopatra,1606 mingle,4,antonyandcleopatra,1606 morn,4,antonyandcleopatra,1606 train,4,antonyandcleopatra,1606 loss,4,antonyandcleopatra,1606 men's,4,antonyandcleopatra,1606 easy,4,antonyandcleopatra,1606 soldier's,4,antonyandcleopatra,1606 round,4,antonyandcleopatra,1606 Trumpets,4,antonyandcleopatra,1606 deny,4,antonyandcleopatra,1606 plain,4,antonyandcleopatra,1606 drawn,4,antonyandcleopatra,1606 pluck,4,antonyandcleopatra,1606 kingdoms,4,antonyandcleopatra,1606 pair,4,antonyandcleopatra,1606 paid,4,antonyandcleopatra,1606 twain,4,antonyandcleopatra,1606 hate,4,antonyandcleopatra,1606 fall'n,4,antonyandcleopatra,1606 Alarum,4,antonyandcleopatra,1606 ye,4,antonyandcleopatra,1606 armour,4,antonyandcleopatra,1606 right,4,antonyandcleopatra,1606 new,4,antonyandcleopatra,1606 having,4,antonyandcleopatra,1606 spoken,4,antonyandcleopatra,1606 MENECRATES,4,antonyandcleopatra,1606 nay,4,antonyandcleopatra,1606 Against,4,antonyandcleopatra,1606 lords,4,antonyandcleopatra,1606 square,4,antonyandcleopatra,1606 almost,4,antonyandcleopatra,1606 Sicily,4,antonyandcleopatra,1606 conquer'd,4,antonyandcleopatra,1606 Sit,4,antonyandcleopatra,1606 you'll,4,antonyandcleopatra,1606 Therefore,4,antonyandcleopatra,1606 awhile,4,antonyandcleopatra,1606 Lord,4,antonyandcleopatra,1606 several,4,antonyandcleopatra,1606 Dost,4,antonyandcleopatra,1606 mortal,4,antonyandcleopatra,1606 leaves,4,antonyandcleopatra,1606 teeth,4,antonyandcleopatra,1606 stars,4,antonyandcleopatra,1606 presently,4,antonyandcleopatra,1606 slave,4,antonyandcleopatra,1606 Mardian,4,antonyandcleopatra,1606 father's,4,antonyandcleopatra,1606 naught,4,antonyandcleopatra,1606 Being,4,antonyandcleopatra,1606 fire,4,antonyandcleopatra,1606 grave,4,antonyandcleopatra,1606 neck,4,antonyandcleopatra,1606 sides,4,antonyandcleopatra,1606 Guardsman,4,antonyandcleopatra,1606 third,4,antonyandcleopatra,1606 Dead,4,antonyandcleopatra,1606 heavy,4,antonyandcleopatra,1606 Think,4,antonyandcleopatra,1606 Can,4,antonyandcleopatra,1606 duty,4,antonyandcleopatra,1606 rise,4,antonyandcleopatra,1606 audience,4,antonyandcleopatra,1606 rage,4,antonyandcleopatra,1606 apace,4,antonyandcleopatra,1606 bounty,4,antonyandcleopatra,1606 happy,4,antonyandcleopatra,1606 hail,4,antonyandcleopatra,1606 Bid,4,antonyandcleopatra,1606 Herod,4,antonyandcleopatra,1606 poison,4,antonyandcleopatra,1606 angry,4,antonyandcleopatra,1606 messengers,4,antonyandcleopatra,1606 grant,4,antonyandcleopatra,1606 fame,4,antonyandcleopatra,1606 pleased,4,antonyandcleopatra,1606 wounds,4,antonyandcleopatra,1606 even,4,antonyandcleopatra,1606 fie,4,antonyandcleopatra,1606 Fulvia's,4,antonyandcleopatra,1606 public,4,antonyandcleopatra,1606 fare,4,antonyandcleopatra,1606 thousand,4,antonyandcleopatra,1606 reason,4,antonyandcleopatra,1606 stroke,4,antonyandcleopatra,1606 wild,4,antonyandcleopatra,1606 home,4,antonyandcleopatra,1606 streets,4,antonyandcleopatra,1606 legions,4,antonyandcleopatra,1606 Cleopatra's,4,antonyandcleopatra,1606 drunk,4,antonyandcleopatra,1606 kingdom,4,antonyandcleopatra,1606 drums,4,antonyandcleopatra,1606 Seleucus,4,antonyandcleopatra,1606 therein,4,antonyandcleopatra,1606 Through,4,antonyandcleopatra,1606 goes,4,antonyandcleopatra,1606 confound,4,antonyandcleopatra,1606 met,4,antonyandcleopatra,1606 Great,4,antonyandcleopatra,1606 wound,4,antonyandcleopatra,1606 virtue,4,antonyandcleopatra,1606 follow'd,4,antonyandcleopatra,1606 try,4,antonyandcleopatra,1606 catch,4,antonyandcleopatra,1606 success,4,antonyandcleopatra,1606 TAURUS,4,antonyandcleopatra,1606 king,4,antonyandcleopatra,1606 ten,4,antonyandcleopatra,1606 lack,4,antonyandcleopatra,1606 told,5,antonyandcleopatra,1606 for't,5,antonyandcleopatra,1606 speech,5,antonyandcleopatra,1606 treasure,5,antonyandcleopatra,1606 alike,5,antonyandcleopatra,1606 help,5,antonyandcleopatra,1606 Help,5,antonyandcleopatra,1606 honourable,5,antonyandcleopatra,1606 absolute,5,antonyandcleopatra,1606 become,5,antonyandcleopatra,1606 case,5,antonyandcleopatra,1606 soon,5,antonyandcleopatra,1606 Jove,5,antonyandcleopatra,1606 something,5,antonyandcleopatra,1606 merry,5,antonyandcleopatra,1606 's,5,antonyandcleopatra,1606 faults,5,antonyandcleopatra,1606 ourselves,5,antonyandcleopatra,1606 brain,5,antonyandcleopatra,1606 Out,5,antonyandcleopatra,1606 sun,5,antonyandcleopatra,1606 dies,5,antonyandcleopatra,1606 Proculeius,5,antonyandcleopatra,1606 office,5,antonyandcleopatra,1606 desire,5,antonyandcleopatra,1606 Draw,5,antonyandcleopatra,1606 conquer,5,antonyandcleopatra,1606 music,5,antonyandcleopatra,1606 deserved,5,antonyandcleopatra,1606 Adieu,5,antonyandcleopatra,1606 gave,5,antonyandcleopatra,1606 behind,5,antonyandcleopatra,1606 doth,5,antonyandcleopatra,1606 idleness,5,antonyandcleopatra,1606 begin,5,antonyandcleopatra,1606 deed,5,antonyandcleopatra,1606 Fortune,5,antonyandcleopatra,1606 beat,5,antonyandcleopatra,1606 manner,5,antonyandcleopatra,1606 Yes,5,antonyandcleopatra,1606 twenty,5,antonyandcleopatra,1606 Marcus,5,antonyandcleopatra,1606 brought,5,antonyandcleopatra,1606 speaks,5,antonyandcleopatra,1606 Call,5,antonyandcleopatra,1606 More,5,antonyandcleopatra,1606 course,5,antonyandcleopatra,1606 foot,5,antonyandcleopatra,1606 Hast,5,antonyandcleopatra,1606 Hark,5,antonyandcleopatra,1606 judgment,5,antonyandcleopatra,1606 action,5,antonyandcleopatra,1606 eye,5,antonyandcleopatra,1606 SILIUS,5,antonyandcleopatra,1606 borne,5,antonyandcleopatra,1606 quickly,5,antonyandcleopatra,1606 youth,5,antonyandcleopatra,1606 knave,5,antonyandcleopatra,1606 purposes,5,antonyandcleopatra,1606 mind,5,antonyandcleopatra,1606 there's,5,antonyandcleopatra,1606 labour,5,antonyandcleopatra,1606 free,5,antonyandcleopatra,1606 Made,5,antonyandcleopatra,1606 Nile,5,antonyandcleopatra,1606 lieutenant,5,antonyandcleopatra,1606 Italy,5,antonyandcleopatra,1606 flies,5,antonyandcleopatra,1606 former,5,antonyandcleopatra,1606 throw,5,antonyandcleopatra,1606 win,5,antonyandcleopatra,1606 beseech,5,antonyandcleopatra,1606 stage,5,antonyandcleopatra,1606 lust,5,antonyandcleopatra,1606 Noble,5,antonyandcleopatra,1606 Show,5,antonyandcleopatra,1606 That's,5,antonyandcleopatra,1606 work,5,antonyandcleopatra,1606 Mars,5,antonyandcleopatra,1606 passion,5,antonyandcleopatra,1606 shown,5,antonyandcleopatra,1606 thank,5,antonyandcleopatra,1606 lives,5,antonyandcleopatra,1606 Ventidius,5,antonyandcleopatra,1606 seek,5,antonyandcleopatra,1606 fellows,5,antonyandcleopatra,1606 tidings,5,antonyandcleopatra,1606 battle,5,antonyandcleopatra,1606 sound,5,antonyandcleopatra,1606 Pray,5,antonyandcleopatra,1606 person,5,antonyandcleopatra,1606 hours,5,antonyandcleopatra,1606 prayer,5,antonyandcleopatra,1606 Canidius,5,antonyandcleopatra,1606 whilst,5,antonyandcleopatra,1606 return,5,antonyandcleopatra,1606 eat,5,antonyandcleopatra,1606 petty,5,antonyandcleopatra,1606 mad,5,antonyandcleopatra,1606 write,5,antonyandcleopatra,1606 sovereign,5,antonyandcleopatra,1606 eunuch,5,antonyandcleopatra,1606 father,5,antonyandcleopatra,1606 attend,5,antonyandcleopatra,1606 shake,5,antonyandcleopatra,1606 without,5,antonyandcleopatra,1606 kind,5,antonyandcleopatra,1606 ships,5,antonyandcleopatra,1606 V,6,antonyandcleopatra,1606 times,6,antonyandcleopatra,1606 pity,6,antonyandcleopatra,1606 Hear,6,antonyandcleopatra,1606 royal,6,antonyandcleopatra,1606 health,6,antonyandcleopatra,1606 Bear,6,antonyandcleopatra,1606 Syria,6,antonyandcleopatra,1606 boys,6,antonyandcleopatra,1606 tears,6,antonyandcleopatra,1606 fought,6,antonyandcleopatra,1606 calls,6,antonyandcleopatra,1606 lies,6,antonyandcleopatra,1606 trust,6,antonyandcleopatra,1606 GALLUS,6,antonyandcleopatra,1606 charge,6,antonyandcleopatra,1606 soft,6,antonyandcleopatra,1606 Get,6,antonyandcleopatra,1606 enough,6,antonyandcleopatra,1606 yield,6,antonyandcleopatra,1606 Their,6,antonyandcleopatra,1606 becomes,6,antonyandcleopatra,1606 These,6,antonyandcleopatra,1606 about,6,antonyandcleopatra,1606 died,6,antonyandcleopatra,1606 Parthia,6,antonyandcleopatra,1606 colour,6,antonyandcleopatra,1606 each,6,antonyandcleopatra,1606 An,6,antonyandcleopatra,1606 patience,6,antonyandcleopatra,1606 boy,6,antonyandcleopatra,1606 force,6,antonyandcleopatra,1606 whipp'd,6,antonyandcleopatra,1606 air,6,antonyandcleopatra,1606 needs,6,antonyandcleopatra,1606 any,6,antonyandcleopatra,1606 feast,6,antonyandcleopatra,1606 moon,6,antonyandcleopatra,1606 less,6,antonyandcleopatra,1606 loved,6,antonyandcleopatra,1606 lose,6,antonyandcleopatra,1606 call'd,6,antonyandcleopatra,1606 hang,6,antonyandcleopatra,1606 praise,6,antonyandcleopatra,1606 Under,6,antonyandcleopatra,1606 ask,6,antonyandcleopatra,1606 prepared,6,antonyandcleopatra,1606 thanks,6,antonyandcleopatra,1606 lead,6,antonyandcleopatra,1606 often,6,antonyandcleopatra,1606 shouldst,6,antonyandcleopatra,1606 Peace,6,antonyandcleopatra,1606 ours,6,antonyandcleopatra,1606 say'st,6,antonyandcleopatra,1606 ere,6,antonyandcleopatra,1606 already,6,antonyandcleopatra,1606 knows,6,antonyandcleopatra,1606 greatest,6,antonyandcleopatra,1606 sorrow,6,antonyandcleopatra,1606 says,6,antonyandcleopatra,1606 Thus,6,antonyandcleopatra,1606 themselves,6,antonyandcleopatra,1606 found,6,antonyandcleopatra,1606 serve,6,antonyandcleopatra,1606 next,6,antonyandcleopatra,1606 served,6,antonyandcleopatra,1606 Even,6,antonyandcleopatra,1606 sails,6,antonyandcleopatra,1606 lived,6,antonyandcleopatra,1606 is't,6,antonyandcleopatra,1606 empire,6,antonyandcleopatra,1606 prithee,6,antonyandcleopatra,1606 seem,6,antonyandcleopatra,1606 Mine,6,antonyandcleopatra,1606 Know,6,antonyandcleopatra,1606 led,6,antonyandcleopatra,1606 triumph,6,antonyandcleopatra,1606 Since,6,antonyandcleopatra,1606 late,6,antonyandcleopatra,1606 weight,6,antonyandcleopatra,1606 He's,6,antonyandcleopatra,1606 Bring,6,antonyandcleopatra,1606 shalt,6,antonyandcleopatra,1606 greatness,6,antonyandcleopatra,1606 crown,6,antonyandcleopatra,1606 wouldst,6,antonyandcleopatra,1606 answer,7,antonyandcleopatra,1606 o'er,7,antonyandcleopatra,1606 appear,7,antonyandcleopatra,1606 strength,7,antonyandcleopatra,1606 saw,7,antonyandcleopatra,1606 words,7,antonyandcleopatra,1606 noise,7,antonyandcleopatra,1606 set,7,antonyandcleopatra,1606 Was,7,antonyandcleopatra,1606 turn,7,antonyandcleopatra,1606 heaven,7,antonyandcleopatra,1606 in't,7,antonyandcleopatra,1606 kept,7,antonyandcleopatra,1606 stay,7,antonyandcleopatra,1606 bed,7,antonyandcleopatra,1606 play,7,antonyandcleopatra,1606 weep,7,antonyandcleopatra,1606 loud,7,antonyandcleopatra,1606 act,7,antonyandcleopatra,1606 greater,7,antonyandcleopatra,1606 knew,7,antonyandcleopatra,1606 grace,7,antonyandcleopatra,1606 field,7,antonyandcleopatra,1606 half,7,antonyandcleopatra,1606 messenger,7,antonyandcleopatra,1606 SELEUCUS,7,antonyandcleopatra,1606 arm,7,antonyandcleopatra,1606 fool,7,antonyandcleopatra,1606 chance,7,antonyandcleopatra,1606 through,7,antonyandcleopatra,1606 Flourish,7,antonyandcleopatra,1606 majesty,7,antonyandcleopatra,1606 strike,7,antonyandcleopatra,1606 See,7,antonyandcleopatra,1606 general,7,antonyandcleopatra,1606 end,7,antonyandcleopatra,1606 known,7,antonyandcleopatra,1606 state,7,antonyandcleopatra,1606 letters,7,antonyandcleopatra,1606 Were,7,antonyandcleopatra,1606 near,7,antonyandcleopatra,1606 We'll,7,antonyandcleopatra,1606 why,7,antonyandcleopatra,1606 CLEOPATRA's,7,antonyandcleopatra,1606 dying,7,antonyandcleopatra,1606 old,7,antonyandcleopatra,1606 hour,7,antonyandcleopatra,1606 comfort,7,antonyandcleopatra,1606 Welcome,7,antonyandcleopatra,1606 Where's,7,antonyandcleopatra,1606 use,7,antonyandcleopatra,1606 we'll,7,antonyandcleopatra,1606 cold,7,antonyandcleopatra,1606 purpose,7,antonyandcleopatra,1606 on't,7,antonyandcleopatra,1606 nature,7,antonyandcleopatra,1606 dispatch,7,antonyandcleopatra,1606 behold,7,antonyandcleopatra,1606 my,263,antonyandcleopatra,1606 VENTIDIUS,8,antonyandcleopatra,1606 mistress,8,antonyandcleopatra,1606 Isis,8,antonyandcleopatra,1606 Whose,8,antonyandcleopatra,1606 head,8,antonyandcleopatra,1606 sure,8,antonyandcleopatra,1606 't,8,antonyandcleopatra,1606 within,8,antonyandcleopatra,1606 Attendants,8,antonyandcleopatra,1606 false,8,antonyandcleopatra,1606 wine,8,antonyandcleopatra,1606 he's,8,antonyandcleopatra,1606 side,8,antonyandcleopatra,1606 therefore,8,antonyandcleopatra,1606 bid,8,antonyandcleopatra,1606 people,8,antonyandcleopatra,1606 Speak,8,antonyandcleopatra,1606 tongue,8,antonyandcleopatra,1606 Dolabella,8,antonyandcleopatra,1606 Yet,8,antonyandcleopatra,1606 Are,8,antonyandcleopatra,1606 Hath,8,antonyandcleopatra,1606 change,8,antonyandcleopatra,1606 far,8,antonyandcleopatra,1606 room,8,antonyandcleopatra,1606 note,8,antonyandcleopatra,1606 none,8,antonyandcleopatra,1606 'gainst,8,antonyandcleopatra,1606 comes,8,antonyandcleopatra,1606 let's,8,antonyandcleopatra,1606 fair,8,antonyandcleopatra,1606 three,8,antonyandcleopatra,1606 worm,8,antonyandcleopatra,1606 fly,8,antonyandcleopatra,1606 do't,8,antonyandcleopatra,1606 kiss,8,antonyandcleopatra,1606 hope,8,antonyandcleopatra,1606 emperor,8,antonyandcleopatra,1606 hold,8,antonyandcleopatra,1606 unto,8,antonyandcleopatra,1606 captain,8,antonyandcleopatra,1606 sweet,8,antonyandcleopatra,1606 lie,8,antonyandcleopatra,1606 Another,8,antonyandcleopatra,1606 sister,8,antonyandcleopatra,1606 going,8,antonyandcleopatra,1606 dare,8,antonyandcleopatra,1606 sad,9,antonyandcleopatra,1606 draw,9,antonyandcleopatra,1606 Nor,9,antonyandcleopatra,1606 body,9,antonyandcleopatra,1606 Servant,9,antonyandcleopatra,1606 worthy,9,antonyandcleopatra,1606 service,9,antonyandcleopatra,1606 others,9,antonyandcleopatra,1606 wish,9,antonyandcleopatra,1606 friend,9,antonyandcleopatra,1606 mean,9,antonyandcleopatra,1606 spoke,9,antonyandcleopatra,1606 Ah,9,antonyandcleopatra,1606 itself,9,antonyandcleopatra,1606 since,9,antonyandcleopatra,1606 quick,9,antonyandcleopatra,1606 Like,9,antonyandcleopatra,1606 that's,9,antonyandcleopatra,1606 ill,9,antonyandcleopatra,1606 DERCETAS,9,antonyandcleopatra,1606 Iras,9,antonyandcleopatra,1606 welcome,9,antonyandcleopatra,1606 present,9,antonyandcleopatra,1606 little,9,antonyandcleopatra,1606 show,9,antonyandcleopatra,1606 Agrippa,9,antonyandcleopatra,1606 water,9,antonyandcleopatra,1606 gentle,9,antonyandcleopatra,1606 Look,9,antonyandcleopatra,1606 Menas,9,antonyandcleopatra,1606 only,9,antonyandcleopatra,1606 army,9,antonyandcleopatra,1606 Till,9,antonyandcleopatra,1606 lay,9,antonyandcleopatra,1606 given,9,antonyandcleopatra,1606 seen,9,antonyandcleopatra,1606 Roman,9,antonyandcleopatra,1606 sleep,9,antonyandcleopatra,1606 Before,9,antonyandcleopatra,1606 live,9,antonyandcleopatra,1606 certain,9,antonyandcleopatra,1606 shame,9,antonyandcleopatra,1606 command,9,antonyandcleopatra,1606 spirit,9,antonyandcleopatra,1606 business,10,antonyandcleopatra,1606 peace,10,antonyandcleopatra,1606 camp,10,antonyandcleopatra,1606 DIOMEDES,10,antonyandcleopatra,1606 Farewell,10,antonyandcleopatra,1606 EUPHRONIUS,10,antonyandcleopatra,1606 On,10,antonyandcleopatra,1606 Let's,10,antonyandcleopatra,1606 CAESAR's,10,antonyandcleopatra,1606 Soldiers,10,antonyandcleopatra,1606 long,10,antonyandcleopatra,1606 loves,10,antonyandcleopatra,1606 though,10,antonyandcleopatra,1606 Should,10,antonyandcleopatra,1606 report,10,antonyandcleopatra,1606 stand,10,antonyandcleopatra,1606 break,10,antonyandcleopatra,1606 ne'er,10,antonyandcleopatra,1606 honest,10,antonyandcleopatra,1606 strong,10,antonyandcleopatra,1606 alone,10,antonyandcleopatra,1606 whom,10,antonyandcleopatra,1606 first,10,antonyandcleopatra,1606 ear,10,antonyandcleopatra,1606 lips,10,antonyandcleopatra,1606 Alexas,10,antonyandcleopatra,1606 May,10,antonyandcleopatra,1606 two,10,antonyandcleopatra,1606 further,11,antonyandcleopatra,1606 There,11,antonyandcleopatra,1606 fellow,11,antonyandcleopatra,1606 after,11,antonyandcleopatra,1606 What's,11,antonyandcleopatra,1606 whole,11,antonyandcleopatra,1606 gold,11,antonyandcleopatra,1606 whose,11,antonyandcleopatra,1606 put,11,antonyandcleopatra,1606 farewell,11,antonyandcleopatra,1606 said,11,antonyandcleopatra,1606 left,11,antonyandcleopatra,1606 hands,11,antonyandcleopatra,1606 lost,11,antonyandcleopatra,1606 keep,11,antonyandcleopatra,1606 monument,11,antonyandcleopatra,1606 From,11,antonyandcleopatra,1606 yours,11,antonyandcleopatra,1606 Some,11,antonyandcleopatra,1606 nor,11,antonyandcleopatra,1606 Then,11,antonyandcleopatra,1606 who,11,antonyandcleopatra,1606 thing,11,antonyandcleopatra,1606 fall,11,antonyandcleopatra,1606 palace,11,antonyandcleopatra,1606 Clown,11,antonyandcleopatra,1606 hearts,11,antonyandcleopatra,1606 hither,11,antonyandcleopatra,1606 thoughts,11,antonyandcleopatra,1606 Take,11,antonyandcleopatra,1606 brave,12,antonyandcleopatra,1606 guard,12,antonyandcleopatra,1606 thought,12,antonyandcleopatra,1606 drink,12,antonyandcleopatra,1606 Upon,12,antonyandcleopatra,1606 call,12,antonyandcleopatra,1606 another,12,antonyandcleopatra,1606 Who,12,antonyandcleopatra,1606 against,12,antonyandcleopatra,1606 fear,12,antonyandcleopatra,1606 Here,12,antonyandcleopatra,1606 Though,12,antonyandcleopatra,1606 There's,12,antonyandcleopatra,1606 Her,12,antonyandcleopatra,1606 II,12,antonyandcleopatra,1606 pleasure,12,antonyandcleopatra,1606 blood,12,antonyandcleopatra,1606 Re,12,antonyandcleopatra,1606 ho,12,antonyandcleopatra,1606 place,12,antonyandcleopatra,1606 Third,12,antonyandcleopatra,1606 morrow,12,antonyandcleopatra,1606 married,12,antonyandcleopatra,1606 pardon,12,antonyandcleopatra,1606 house,12,antonyandcleopatra,1606 send,12,antonyandcleopatra,1606 sent,12,antonyandcleopatra,1606 poor,12,antonyandcleopatra,1606 makes,12,antonyandcleopatra,1606 a,268,antonyandcleopatra,1606 Would,13,antonyandcleopatra,1606 yourself,13,antonyandcleopatra,1606 brother,13,antonyandcleopatra,1606 full,13,antonyandcleopatra,1606 Egyptian,13,antonyandcleopatra,1606 Ay,13,antonyandcleopatra,1606 enter,13,antonyandcleopatra,1606 down,13,antonyandcleopatra,1606 earth,13,antonyandcleopatra,1606 Attendant,13,antonyandcleopatra,1606 things,13,antonyandcleopatra,1606 high,13,antonyandcleopatra,1606 face,13,antonyandcleopatra,1606 news,13,antonyandcleopatra,1606 please,13,antonyandcleopatra,1606 true,13,antonyandcleopatra,1606 last,13,antonyandcleopatra,1606 strange,13,antonyandcleopatra,1606 woman,13,antonyandcleopatra,1606 horse,14,antonyandcleopatra,1606 rather,14,antonyandcleopatra,1606 every,14,antonyandcleopatra,1606 pray,14,antonyandcleopatra,1606 Give,14,antonyandcleopatra,1606 bring,14,antonyandcleopatra,1606 matter,14,antonyandcleopatra,1606 else,14,antonyandcleopatra,1606 kings,14,antonyandcleopatra,1606 been,14,antonyandcleopatra,1606 Fulvia,14,antonyandcleopatra,1606 into,14,antonyandcleopatra,1606 same,14,antonyandcleopatra,1606 CANIDIUS,14,antonyandcleopatra,1606 Make,14,antonyandcleopatra,1606 Enobarbus,14,antonyandcleopatra,1606 back,14,antonyandcleopatra,1606 Did,14,antonyandcleopatra,1606 himself,14,antonyandcleopatra,1606 soldier,15,antonyandcleopatra,1606 hence,15,antonyandcleopatra,1606 wars,15,antonyandcleopatra,1606 dear,15,antonyandcleopatra,1606 indeed,15,antonyandcleopatra,1606 many,15,antonyandcleopatra,1606 They,15,antonyandcleopatra,1606 once,15,antonyandcleopatra,1606 still,15,antonyandcleopatra,1606 between,15,antonyandcleopatra,1606 word,15,antonyandcleopatra,1606 find,15,antonyandcleopatra,1606 wife,15,antonyandcleopatra,1606 MARDIAN,15,antonyandcleopatra,1606 together,15,antonyandcleopatra,1606 Thy,15,antonyandcleopatra,1606 follow,15,antonyandcleopatra,1606 cause,16,antonyandcleopatra,1606 away,16,antonyandcleopatra,1606 these,16,antonyandcleopatra,1606 bear,16,antonyandcleopatra,1606 look,16,antonyandcleopatra,1606 Than,16,antonyandcleopatra,1606 thine,16,antonyandcleopatra,1606 heard,16,antonyandcleopatra,1606 Say,16,antonyandcleopatra,1606 ever,16,antonyandcleopatra,1606 master,16,antonyandcleopatra,1606 power,16,antonyandcleopatra,1606 some,17,antonyandcleopatra,1606 both,17,antonyandcleopatra,1606 Do,17,antonyandcleopatra,1606 III,17,antonyandcleopatra,1606 name,17,antonyandcleopatra,1606 forth,17,antonyandcleopatra,1606 PROCULEIUS,17,antonyandcleopatra,1606 art,17,antonyandcleopatra,1606 Madam,17,antonyandcleopatra,1606 where,17,antonyandcleopatra,1606 Sir,17,antonyandcleopatra,1606 very,17,antonyandcleopatra,1606 could,17,antonyandcleopatra,1606 Mark,17,antonyandcleopatra,1606 till,17,antonyandcleopatra,1606 fortunes,17,antonyandcleopatra,1606 Will,18,antonyandcleopatra,1606 life,18,antonyandcleopatra,1606 nothing,18,antonyandcleopatra,1606 Go,18,antonyandcleopatra,1606 those,18,antonyandcleopatra,1606 Most,18,antonyandcleopatra,1606 before,18,antonyandcleopatra,1606 Well,18,antonyandcleopatra,1606 thus,18,antonyandcleopatra,1606 leave,18,antonyandcleopatra,1606 die,18,antonyandcleopatra,1606 lady,18,antonyandcleopatra,1606 CLEOPATRA,274,antonyandcleopatra,1606 I,530,antonyandcleopatra,1606 THYREUS,19,antonyandcleopatra,1606 better,19,antonyandcleopatra,1606 Alexandria,19,antonyandcleopatra,1606 IV,19,antonyandcleopatra,1606 She,19,antonyandcleopatra,1606 off,19,antonyandcleopatra,1606 Lepidus,19,antonyandcleopatra,1606 might,19,antonyandcleopatra,1606 SCARUS,20,antonyandcleopatra,1606 Soothsayer,20,antonyandcleopatra,1606 Why,20,antonyandcleopatra,1606 honour,20,antonyandcleopatra,1606 gone,20,antonyandcleopatra,1606 Or,20,antonyandcleopatra,1606 OCTAVIA,20,antonyandcleopatra,1606 again,20,antonyandcleopatra,1606 myself,20,antonyandcleopatra,1606 fortune,20,antonyandcleopatra,1606 Be,21,antonyandcleopatra,1606 best,21,antonyandcleopatra,1606 i',21,antonyandcleopatra,1606 dead,21,antonyandcleopatra,1606 hast,21,antonyandcleopatra,1606 own,21,antonyandcleopatra,1606 Shall,21,antonyandcleopatra,1606 being,21,antonyandcleopatra,1606 other,21,antonyandcleopatra,1606 Nay,22,antonyandcleopatra,1606 part,22,antonyandcleopatra,1606 war,22,antonyandcleopatra,1606 day,22,antonyandcleopatra,1606 eyes,22,antonyandcleopatra,1606 men,22,antonyandcleopatra,1606 women,22,antonyandcleopatra,1606 ',23,antonyandcleopatra,1606 Caesar's,23,antonyandcleopatra,1606 Now,23,antonyandcleopatra,1606 has,23,antonyandcleopatra,1606 o',23,antonyandcleopatra,1606 Octavia,23,antonyandcleopatra,1606 cannot,23,antonyandcleopatra,1606 land,23,antonyandcleopatra,1606 Aside,24,antonyandcleopatra,1606 sword,24,antonyandcleopatra,1606 Have,24,antonyandcleopatra,1606 think,24,antonyandcleopatra,1606 tell,25,antonyandcleopatra,1606 By,25,antonyandcleopatra,1606 does,25,antonyandcleopatra,1606 All,25,antonyandcleopatra,1606 Charmian,25,antonyandcleopatra,1606 'Tis,25,antonyandcleopatra,1606 MECAENAS,25,antonyandcleopatra,1606 ALEXAS,25,antonyandcleopatra,1606 fight,26,antonyandcleopatra,1606 Where,26,antonyandcleopatra,1606 much,27,antonyandcleopatra,1606 Eros,27,antonyandcleopatra,1606 Our,27,antonyandcleopatra,1606 His,27,antonyandcleopatra,1606 It,27,antonyandcleopatra,1606 We,27,antonyandcleopatra,1606 Second,27,antonyandcleopatra,1606 how,27,antonyandcleopatra,1606 Your,27,antonyandcleopatra,1606 Not,28,antonyandcleopatra,1606 night,28,antonyandcleopatra,1606 Good,28,antonyandcleopatra,1606 noble,28,antonyandcleopatra,1606 Pompey,28,antonyandcleopatra,1606 hand,28,antonyandcleopatra,1606 may,28,antonyandcleopatra,1606 ANTONY,284,antonyandcleopatra,1606 friends,29,antonyandcleopatra,1606 made,29,antonyandcleopatra,1606 When,29,antonyandcleopatra,1606 Guard,30,antonyandcleopatra,1606 can,30,antonyandcleopatra,1606 So,30,antonyandcleopatra,1606 DOLABELLA,30,antonyandcleopatra,1606 speak,30,antonyandcleopatra,1606 way,30,antonyandcleopatra,1606 time,30,antonyandcleopatra,1606 Cleopatra,30,antonyandcleopatra,1606 Come,31,antonyandcleopatra,1606 death,31,antonyandcleopatra,1606 sea,31,antonyandcleopatra,1606 hear,32,antonyandcleopatra,1606 How,32,antonyandcleopatra,1606 out,32,antonyandcleopatra,1606 were,32,antonyandcleopatra,1606 IRAS,33,antonyandcleopatra,1606 never,34,antonyandcleopatra,1606 'tis,34,antonyandcleopatra,1606 This,34,antonyandcleopatra,1606 Rome,34,antonyandcleopatra,1606 gods,34,antonyandcleopatra,1606 such,35,antonyandcleopatra,1606 With,35,antonyandcleopatra,1606 In,35,antonyandcleopatra,1606 Is,35,antonyandcleopatra,1606 yet,35,antonyandcleopatra,1606 madam,35,antonyandcleopatra,1606 too,35,antonyandcleopatra,1606 here,36,antonyandcleopatra,1606 say,36,antonyandcleopatra,1606 than,36,antonyandcleopatra,1606 Which,36,antonyandcleopatra,1606 done,36,antonyandcleopatra,1606 hath,36,antonyandcleopatra,1606 Thou,36,antonyandcleopatra,1606 take,36,antonyandcleopatra,1606 Let,36,antonyandcleopatra,1606 For,37,antonyandcleopatra,1606 No,37,antonyandcleopatra,1606 go,37,antonyandcleopatra,1606 love,37,antonyandcleopatra,1606 give,37,antonyandcleopatra,1606 First,37,antonyandcleopatra,1606 EROS,37,antonyandcleopatra,1606 heart,37,antonyandcleopatra,1606 one,37,antonyandcleopatra,1606 Exit,37,antonyandcleopatra,1606 up,38,antonyandcleopatra,1606 see,40,antonyandcleopatra,1606 know,40,antonyandcleopatra,1606 AGRIPPA,42,antonyandcleopatra,1606 As,42,antonyandcleopatra,1606 most,42,antonyandcleopatra,1606 if,42,antonyandcleopatra,1606 ACT,42,antonyandcleopatra,1606 world,43,antonyandcleopatra,1606 there,43,antonyandcleopatra,1606 mine,43,antonyandcleopatra,1606 LEPIDUS,43,antonyandcleopatra,1606 AND,43,antonyandcleopatra,1606 Egypt,43,antonyandcleopatra,1606 man,43,antonyandcleopatra,1606 SCENE,43,antonyandcleopatra,1606 or,44,antonyandcleopatra,1606 queen,44,antonyandcleopatra,1606 great,44,antonyandcleopatra,1606 an,45,antonyandcleopatra,1606 let,45,antonyandcleopatra,1606 when,45,antonyandcleopatra,1606 MENAS,45,antonyandcleopatra,1606 upon,46,antonyandcleopatra,1606 had,46,antonyandcleopatra,1606 like,47,antonyandcleopatra,1606 Of,47,antonyandcleopatra,1606 If,48,antonyandcleopatra,1606 POMPEY,48,antonyandcleopatra,1606 you,304,antonyandcleopatra,1606 then,49,antonyandcleopatra,1606 lord,50,antonyandcleopatra,1606 am,51,antonyandcleopatra,1606 was,51,antonyandcleopatra,1606 they,52,antonyandcleopatra,1606 would,52,antonyandcleopatra,1606 must,53,antonyandcleopatra,1606 My,53,antonyandcleopatra,1606 You,53,antonyandcleopatra,1606 should,54,antonyandcleopatra,1606 Exeunt,55,antonyandcleopatra,1606 I'll,55,antonyandcleopatra,1606 did,55,antonyandcleopatra,1606 Soldier,56,antonyandcleopatra,1606 What,57,antonyandcleopatra,1606 them,58,antonyandcleopatra,1606 He,58,antonyandcleopatra,1606 Messenger,58,antonyandcleopatra,1606 make,59,antonyandcleopatra,1606 sir,62,antonyandcleopatra,1606 come,62,antonyandcleopatra,1606 more,63,antonyandcleopatra,1606 But,63,antonyandcleopatra,1606 she,66,antonyandcleopatra,1606 good,66,antonyandcleopatra,1606 their,66,antonyandcleopatra,1606 us,66,antonyandcleopatra,1606 now,66,antonyandcleopatra,1606 well,66,antonyandcleopatra,1606 A,67,antonyandcleopatra,1606 no,70,antonyandcleopatra,1606 from,72,antonyandcleopatra,1606 which,73,antonyandcleopatra,1606 at,75,antonyandcleopatra,1606 are,76,antonyandcleopatra,1606 by,80,antonyandcleopatra,1606 CHARMIAN,80,antonyandcleopatra,1606 what,80,antonyandcleopatra,1606 on,83,antonyandcleopatra,1606 That,89,antonyandcleopatra,1606 all,92,antonyandcleopatra,1606 O,95,antonyandcleopatra,1606 thy,95,antonyandcleopatra,1606 do,96,antonyandcleopatra,1606 as,98,antonyandcleopatra,1606 Enter,99,antonyandcleopatra,1606 shall,106,antonyandcleopatra,1606 will,107,antonyandcleopatra,1606 thee,109,antonyandcleopatra,1606 so,110,antonyandcleopatra,1606 our,110,antonyandcleopatra,1606 your,112,antonyandcleopatra,1606 but,118,antonyandcleopatra,1606 we,118,antonyandcleopatra,1606 her,119,antonyandcleopatra,1606 CAESAR,122,antonyandcleopatra,1606 OCTAVIUS,130,antonyandcleopatra,1606 To,131,antonyandcleopatra,1606 this,135,antonyandcleopatra,1606 Antony,135,antonyandcleopatra,1606 Caesar,136,antonyandcleopatra,1606 DOMITIUS,138,antonyandcleopatra,1606 ENOBARBUS,139,antonyandcleopatra,1606 thou,144,antonyandcleopatra,1606 for,150,antonyandcleopatra,1606 of,406,antonyandcleopatra,1606 he,158,antonyandcleopatra,1606 be,166,antonyandcleopatra,1606 the,680,antonyandcleopatra,1606 And,169,antonyandcleopatra,1606 with,174,antonyandcleopatra,1606 it,186,antonyandcleopatra,1606 his,188,antonyandcleopatra,1606 him,189,antonyandcleopatra,1606 The,191,antonyandcleopatra,1606 have,199,antonyandcleopatra,1606 that,202,antonyandcleopatra,1606 to,459,antonyandcleopatra,1606 in,231,antonyandcleopatra,1606 not,233,antonyandcleopatra,1606 MARK,244,antonyandcleopatra,1606 is,245,antonyandcleopatra,1606 me,246,antonyandcleopatra,1606 and,506,antonyandcleopatra,1606 brave,1,measureforemeasure,1603 holding,1,measureforemeasure,1603 profession,1,measureforemeasure,1603 Condemn,1,measureforemeasure,1603 fear'st,1,measureforemeasure,1603 answered,1,measureforemeasure,1603 religion,1,measureforemeasure,1603 You're,1,measureforemeasure,1603 heed,1,measureforemeasure,1603 generation,1,measureforemeasure,1603 Boldly,1,measureforemeasure,1603 regard,1,measureforemeasure,1603 Touching,1,measureforemeasure,1603 dawn,1,measureforemeasure,1603 authorities,1,measureforemeasure,1603 Mended,1,measureforemeasure,1603 quality,1,measureforemeasure,1603 lusty,1,measureforemeasure,1603 forbid,1,measureforemeasure,1603 instruments,1,measureforemeasure,1603 dreadfully,1,measureforemeasure,1603 accordingly,1,measureforemeasure,1603 Quick,1,measureforemeasure,1603 Corrupt,1,measureforemeasure,1603 guard,1,measureforemeasure,1603 smiled,1,measureforemeasure,1603 darkened,1,measureforemeasure,1603 misplaces,1,measureforemeasure,1603 muster,1,measureforemeasure,1603 formally,1,measureforemeasure,1603 myrtle,1,measureforemeasure,1603 o,1,measureforemeasure,1603 suffer,1,measureforemeasure,1603 mistaking,1,measureforemeasure,1603 continency,1,measureforemeasure,1603 pith,1,measureforemeasure,1603 red,1,measureforemeasure,1603 Longer,1,measureforemeasure,1603 o'erweighs,1,measureforemeasure,1603 safeguard,1,measureforemeasure,1603 testimonied,1,measureforemeasure,1603 fancy,1,measureforemeasure,1603 Proof,1,measureforemeasure,1603 milkmaid,1,measureforemeasure,1603 reputation,1,measureforemeasure,1603 Favours,1,measureforemeasure,1603 derived,1,measureforemeasure,1603 fathers,1,measureforemeasure,1603 steal',1,measureforemeasure,1603 yielding,1,measureforemeasure,1603 assay,1,measureforemeasure,1603 heir,1,measureforemeasure,1603 country,1,measureforemeasure,1603 mislead,1,measureforemeasure,1603 truer,1,measureforemeasure,1603 testimonies,1,measureforemeasure,1603 thrilling,1,measureforemeasure,1603 weary,1,measureforemeasure,1603 orders,1,measureforemeasure,1603 brass,1,measureforemeasure,1603 wears,1,measureforemeasure,1603 prophet,1,measureforemeasure,1603 horse,1,measureforemeasure,1603 complaints,1,measureforemeasure,1603 generous,1,measureforemeasure,1603 possible,1,measureforemeasure,1603 ruthless,1,measureforemeasure,1603 especially,1,measureforemeasure,1603 giglots,1,measureforemeasure,1603 squarest,1,measureforemeasure,1603 alike,1,measureforemeasure,1603 depose,1,measureforemeasure,1603 generative,1,measureforemeasure,1603 peach,1,measureforemeasure,1603 Fie,1,measureforemeasure,1603 follies,1,measureforemeasure,1603 dine,1,measureforemeasure,1603 villain's,1,measureforemeasure,1603 circummured,1,measureforemeasure,1603 Fit,1,measureforemeasure,1603 nursing,1,measureforemeasure,1603 peculiar,1,measureforemeasure,1603 broth,1,measureforemeasure,1603 lower,1,measureforemeasure,1603 implore,1,measureforemeasure,1603 riddle,1,measureforemeasure,1603 rigour,1,measureforemeasure,1603 looker,1,measureforemeasure,1603 dagger,1,measureforemeasure,1603 Thieves,1,measureforemeasure,1603 Pygmalion's,1,measureforemeasure,1603 rot,1,measureforemeasure,1603 preparation,1,measureforemeasure,1603 o'ertake,1,measureforemeasure,1603 bonds,1,measureforemeasure,1603 assured,1,measureforemeasure,1603 health,1,measureforemeasure,1603 robe,1,measureforemeasure,1603 shoulders,1,measureforemeasure,1603 ninescore,1,measureforemeasure,1603 rod,1,measureforemeasure,1603 suppose,1,measureforemeasure,1603 offender,1,measureforemeasure,1603 western,1,measureforemeasure,1603 Wilt,1,measureforemeasure,1603 Bear,1,measureforemeasure,1603 day's,1,measureforemeasure,1603 joy,1,measureforemeasure,1603 Women,1,measureforemeasure,1603 easily,1,measureforemeasure,1603 whips,1,measureforemeasure,1603 ere't,1,measureforemeasure,1603 reside,1,measureforemeasure,1603 Never,1,measureforemeasure,1603 retort,1,measureforemeasure,1603 Lord's,1,measureforemeasure,1603 reserved,1,measureforemeasure,1603 monachum,1,measureforemeasure,1603 drowsy,1,measureforemeasure,1603 despised,1,measureforemeasure,1603 freed,1,measureforemeasure,1603 warning,1,measureforemeasure,1603 whoremonger,1,measureforemeasure,1603 Kills,1,measureforemeasure,1603 eight,1,measureforemeasure,1603 starkly,1,measureforemeasure,1603 Tell,1,measureforemeasure,1603 sleepy,1,measureforemeasure,1603 penalty,1,measureforemeasure,1603 darkness,1,measureforemeasure,1603 joint,1,measureforemeasure,1603 clothes,1,measureforemeasure,1603 finger,1,measureforemeasure,1603 infringe,1,measureforemeasure,1603 Pudding,1,measureforemeasure,1603 bounteous,1,measureforemeasure,1603 trunk,1,measureforemeasure,1603 proceedings,1,measureforemeasure,1603 violent,1,measureforemeasure,1603 security,1,measureforemeasure,1603 errand,1,measureforemeasure,1603 Adoptedly,1,measureforemeasure,1603 hent,1,measureforemeasure,1603 answering,1,measureforemeasure,1603 honourable,1,measureforemeasure,1603 sanctimonious,1,measureforemeasure,1603 'Whatsoever,1,measureforemeasure,1603 paradise,1,measureforemeasure,1603 commodity,1,measureforemeasure,1603 rid,1,measureforemeasure,1603 naked,1,measureforemeasure,1603 angels,1,measureforemeasure,1603 prompture,1,measureforemeasure,1603 maintain,1,measureforemeasure,1603 conducted,1,measureforemeasure,1603 its,1,measureforemeasure,1603 cave,1,measureforemeasure,1603 sayings,1,measureforemeasure,1603 throat,1,measureforemeasure,1603 rubies,1,measureforemeasure,1603 years',1,measureforemeasure,1603 laugh,1,measureforemeasure,1603 innocency,1,measureforemeasure,1603 untaught,1,measureforemeasure,1603 Dispose,1,measureforemeasure,1603 yonder,1,measureforemeasure,1603 befall,1,measureforemeasure,1603 cheap,1,measureforemeasure,1603 emmew,1,measureforemeasure,1603 strumpet,1,measureforemeasure,1603 Pots,1,measureforemeasure,1603 odds,1,measureforemeasure,1603 damned,1,measureforemeasure,1603 confixed,1,measureforemeasure,1603 stamp'd,1,measureforemeasure,1603 concupiscible,1,measureforemeasure,1603 rates,1,measureforemeasure,1603 tilth,1,measureforemeasure,1603 bowels,1,measureforemeasure,1603 requiring,1,measureforemeasure,1603 PERSONAE,1,measureforemeasure,1603 care,1,measureforemeasure,1603 province,1,measureforemeasure,1603 morality,1,measureforemeasure,1603 unsisting,1,measureforemeasure,1603 cloister,1,measureforemeasure,1603 perished,1,measureforemeasure,1603 Jacob,1,measureforemeasure,1603 cast,1,measureforemeasure,1603 saves,1,measureforemeasure,1603 convented,1,measureforemeasure,1603 song,1,measureforemeasure,1603 worser,1,measureforemeasure,1603 spared,1,measureforemeasure,1603 breach,1,measureforemeasure,1603 advantaged,1,measureforemeasure,1603 Valentinus,1,measureforemeasure,1603 deputed,1,measureforemeasure,1603 accidental,1,measureforemeasure,1603 hallond,1,measureforemeasure,1603 successive,1,measureforemeasure,1603 Poor,1,measureforemeasure,1603 delivered,1,measureforemeasure,1603 helper,1,measureforemeasure,1603 bending,1,measureforemeasure,1603 graces,1,measureforemeasure,1603 personally,1,measureforemeasure,1603 surfeit,1,measureforemeasure,1603 giant's,1,measureforemeasure,1603 lacks,1,measureforemeasure,1603 sad,1,measureforemeasure,1603 feels,1,measureforemeasure,1603 conscience,1,measureforemeasure,1603 feather,1,measureforemeasure,1603 Fellow,1,measureforemeasure,1603 respites,1,measureforemeasure,1603 stock,1,measureforemeasure,1603 guards,1,measureforemeasure,1603 slept,1,measureforemeasure,1603 working,1,measureforemeasure,1603 Rash,1,measureforemeasure,1603 matters,1,measureforemeasure,1603 receiving,1,measureforemeasure,1603 sat,1,measureforemeasure,1603 gnarled,1,measureforemeasure,1603 billets,1,measureforemeasure,1603 judge's,1,measureforemeasure,1603 stream,1,measureforemeasure,1603 constantly,1,measureforemeasure,1603 bathe,1,measureforemeasure,1603 circumstance,1,measureforemeasure,1603 pile,1,measureforemeasure,1603 Tongue,1,measureforemeasure,1603 pilgrimage,1,measureforemeasure,1603 lamentation,1,measureforemeasure,1603 choleric,1,measureforemeasure,1603 confounds,1,measureforemeasure,1603 picklock,1,measureforemeasure,1603 limb,1,measureforemeasure,1603 boldness,1,measureforemeasure,1603 Iniquity,1,measureforemeasure,1603 Keep,1,measureforemeasure,1603 afterwards,1,measureforemeasure,1603 villanously,1,measureforemeasure,1603 Bliss,1,measureforemeasure,1603 honestly,1,measureforemeasure,1603 delaying,1,measureforemeasure,1603 possessed,1,measureforemeasure,1603 Thomas,1,measureforemeasure,1603 heal,1,measureforemeasure,1603 Woe,1,measureforemeasure,1603 dejected,1,measureforemeasure,1603 meddling,1,measureforemeasure,1603 manacles,1,measureforemeasure,1603 worthier,1,measureforemeasure,1603 cheek,1,measureforemeasure,1603 wants,1,measureforemeasure,1603 soften,1,measureforemeasure,1603 town,1,measureforemeasure,1603 characters,1,measureforemeasure,1603 soil,1,measureforemeasure,1603 knaves,1,measureforemeasure,1603 demands,1,measureforemeasure,1603 temporary,1,measureforemeasure,1603 sisterly,1,measureforemeasure,1603 remiss,1,measureforemeasure,1603 glass,1,measureforemeasure,1603 making,1,measureforemeasure,1603 Err'd,1,measureforemeasure,1603 seemers,1,measureforemeasure,1603 congealed,1,measureforemeasure,1603 likeness,1,measureforemeasure,1603 desperately,1,measureforemeasure,1603 teach,1,measureforemeasure,1603 ungenitured,1,measureforemeasure,1603 Methinks,1,measureforemeasure,1603 richer,1,measureforemeasure,1603 refell'd,1,measureforemeasure,1603 facing,1,measureforemeasure,1603 enshield,1,measureforemeasure,1603 freedom,1,measureforemeasure,1603 confesses,1,measureforemeasure,1603 confessed,1,measureforemeasure,1603 wait,1,measureforemeasure,1603 blossoming,1,measureforemeasure,1603 widow's,1,measureforemeasure,1603 kin,1,measureforemeasure,1603 shrift,1,measureforemeasure,1603 black,1,measureforemeasure,1603 defiance,1,measureforemeasure,1603 visitation,1,measureforemeasure,1603 moving,1,measureforemeasure,1603 discovers,1,measureforemeasure,1603 riotous,1,measureforemeasure,1603 stealth,1,measureforemeasure,1603 'Cucullus,1,measureforemeasure,1603 meddler,1,measureforemeasure,1603 seeking,1,measureforemeasure,1603 serpigo,1,measureforemeasure,1603 shamed,1,measureforemeasure,1603 feodary,1,measureforemeasure,1603 perch,1,measureforemeasure,1603 Duke,1,measureforemeasure,1603 glimpse,1,measureforemeasure,1603 blocks,1,measureforemeasure,1603 whatsoever,1,measureforemeasure,1603 unpregnant,1,measureforemeasure,1603 afflict,1,measureforemeasure,1603 talked,1,measureforemeasure,1603 shekels,1,measureforemeasure,1603 history,1,measureforemeasure,1603 wilderness,1,measureforemeasure,1603 quickening,1,measureforemeasure,1603 confutes,1,measureforemeasure,1603 Get,1,measureforemeasure,1603 conceive,1,measureforemeasure,1603 conception,1,measureforemeasure,1603 merriest,1,measureforemeasure,1603 unscour'd,1,measureforemeasure,1603 imprison'd,1,measureforemeasure,1603 striking,1,measureforemeasure,1603 Happily,1,measureforemeasure,1603 accompt,1,measureforemeasure,1603 friended,1,measureforemeasure,1603 maidens,1,measureforemeasure,1603 ages,1,measureforemeasure,1603 think'st,1,measureforemeasure,1603 Crowd,1,measureforemeasure,1603 agent,1,measureforemeasure,1603 bastard,1,measureforemeasure,1603 tooth,1,measureforemeasure,1603 Unhappily,1,measureforemeasure,1603 wall,1,measureforemeasure,1603 invention,1,measureforemeasure,1603 sex,1,measureforemeasure,1603 advertise,1,measureforemeasure,1603 thankings,1,measureforemeasure,1603 mocking,1,measureforemeasure,1603 Kneel,1,measureforemeasure,1603 wake,1,measureforemeasure,1603 touched,1,measureforemeasure,1603 throngs,1,measureforemeasure,1603 traveller,1,measureforemeasure,1603 vaporous,1,measureforemeasure,1603 prefers,1,measureforemeasure,1603 quits,1,measureforemeasure,1603 touches,1,measureforemeasure,1603 she'll,1,measureforemeasure,1603 kneel'd,1,measureforemeasure,1603 throne,1,measureforemeasure,1603 bitterly,1,measureforemeasure,1603 cohered,1,measureforemeasure,1603 unloads,1,measureforemeasure,1603 lions,1,measureforemeasure,1603 beasts,1,measureforemeasure,1603 doubtless,1,measureforemeasure,1603 abused,1,measureforemeasure,1603 snatches,1,measureforemeasure,1603 pardons,1,measureforemeasure,1603 unprepared,1,measureforemeasure,1603 spy,1,measureforemeasure,1603 score,1,measureforemeasure,1603 birds,1,measureforemeasure,1603 chew,1,measureforemeasure,1603 convenience,1,measureforemeasure,1603 wheresoever,1,measureforemeasure,1603 sow,1,measureforemeasure,1603 avail,1,measureforemeasure,1603 skill,1,measureforemeasure,1603 Merely,1,measureforemeasure,1603 children's,1,measureforemeasure,1603 winds,1,measureforemeasure,1603 combinate,1,measureforemeasure,1603 looking,1,measureforemeasure,1603 apparent,1,measureforemeasure,1603 where's,1,measureforemeasure,1603 counsel,1,measureforemeasure,1603 Silence,1,measureforemeasure,1603 countenance,1,measureforemeasure,1603 birch,1,measureforemeasure,1603 stern,1,measureforemeasure,1603 awakens,1,measureforemeasure,1603 kindly,1,measureforemeasure,1603 fearless,1,measureforemeasure,1603 supporters,1,measureforemeasure,1603 design,1,measureforemeasure,1603 second,1,measureforemeasure,1603 permit,1,measureforemeasure,1603 woodman,1,measureforemeasure,1603 study,1,measureforemeasure,1603 middle,1,measureforemeasure,1603 beloved,1,measureforemeasure,1603 looks,1,measureforemeasure,1603 hatch'd,1,measureforemeasure,1603 parish,1,measureforemeasure,1603 sets,1,measureforemeasure,1603 Setting,1,measureforemeasure,1603 league,1,measureforemeasure,1603 stuff,1,measureforemeasure,1603 debatement,1,measureforemeasure,1603 play'd,1,measureforemeasure,1603 Accountant,1,measureforemeasure,1603 meal'd,1,measureforemeasure,1603 becomes,1,measureforemeasure,1603 unreverend,1,measureforemeasure,1603 adverse,1,measureforemeasure,1603 sends,1,measureforemeasure,1603 Attorney'd,1,measureforemeasure,1603 appear'd,1,measureforemeasure,1603 mutually,1,measureforemeasure,1603 poverty,1,measureforemeasure,1603 Authority,1,measureforemeasure,1603 induced,1,measureforemeasure,1603 seats,1,measureforemeasure,1603 stuck,1,measureforemeasure,1603 ourselves,1,measureforemeasure,1603 swelling,1,measureforemeasure,1603 malefactors,1,measureforemeasure,1603 gaoler,1,measureforemeasure,1603 vile,1,measureforemeasure,1603 everlasting,1,measureforemeasure,1603 reap,1,measureforemeasure,1603 merit,1,measureforemeasure,1603 eating,1,measureforemeasure,1603 tapsters,1,measureforemeasure,1603 guide,1,measureforemeasure,1603 compound,1,measureforemeasure,1603 passed,1,measureforemeasure,1603 fight,1,measureforemeasure,1603 rung,1,measureforemeasure,1603 passes,1,measureforemeasure,1603 showed,1,measureforemeasure,1603 lingering,1,measureforemeasure,1603 snow,1,measureforemeasure,1603 receives,1,measureforemeasure,1603 stamps,1,measureforemeasure,1603 granting,1,measureforemeasure,1603 weariest,1,measureforemeasure,1603 Rowland,1,measureforemeasure,1603 profess,1,measureforemeasure,1603 unhallow'd,1,measureforemeasure,1603 twelve,1,measureforemeasure,1603 guarded,1,measureforemeasure,1603 figuring,1,measureforemeasure,1603 give't,1,measureforemeasure,1603 Relate,1,measureforemeasure,1603 moulded,1,measureforemeasure,1603 Owe,1,measureforemeasure,1603 labour'st,1,measureforemeasure,1603 direct,1,measureforemeasure,1603 Turn,1,measureforemeasure,1603 king's,1,measureforemeasure,1603 ingots,1,measureforemeasure,1603 combined,1,measureforemeasure,1603 falls,1,measureforemeasure,1603 quake,1,measureforemeasure,1603 runs,1,measureforemeasure,1603 Wise,1,measureforemeasure,1603 actions,1,measureforemeasure,1603 loathed,1,measureforemeasure,1603 Flavius,1,measureforemeasure,1603 envious,1,measureforemeasure,1603 adulterous,1,measureforemeasure,1603 abhorr'd,1,measureforemeasure,1603 damned'st,1,measureforemeasure,1603 dearly,1,measureforemeasure,1603 instance,1,measureforemeasure,1603 violator,1,measureforemeasure,1603 fruit,1,measureforemeasure,1603 unable,1,measureforemeasure,1603 Anchors,1,measureforemeasure,1603 white,1,measureforemeasure,1603 willing,1,measureforemeasure,1603 Leave,1,measureforemeasure,1603 Whilst,1,measureforemeasure,1603 cries,1,measureforemeasure,1603 coloured,1,measureforemeasure,1603 brick,1,measureforemeasure,1603 speechless,1,measureforemeasure,1603 govern'd,1,measureforemeasure,1603 sup,1,measureforemeasure,1603 Seeming,1,measureforemeasure,1603 vanity,1,measureforemeasure,1603 complete,1,measureforemeasure,1603 reverence,1,measureforemeasure,1603 feed,1,measureforemeasure,1603 bride,1,measureforemeasure,1603 feel,1,measureforemeasure,1603 rein,1,measureforemeasure,1603 bows,1,measureforemeasure,1603 Spare,1,measureforemeasure,1603 impartial,1,measureforemeasure,1603 infinite,1,measureforemeasure,1603 cleave,1,measureforemeasure,1603 'Faith,1,measureforemeasure,1603 directed,1,measureforemeasure,1603 temporal,1,measureforemeasure,1603 malice,1,measureforemeasure,1603 infallible,1,measureforemeasure,1603 lane's,1,measureforemeasure,1603 upon't,1,measureforemeasure,1603 Betwixt,1,measureforemeasure,1603 disvouched,1,measureforemeasure,1603 Keepdown,1,measureforemeasure,1603 criminal,1,measureforemeasure,1603 Whereto,1,measureforemeasure,1603 choose,1,measureforemeasure,1603 wishes,1,measureforemeasure,1603 Fridays,1,measureforemeasure,1603 Flavius',1,measureforemeasure,1603 applause,1,measureforemeasure,1603 ceremony,1,measureforemeasure,1603 boil,1,measureforemeasure,1603 ribbed,1,measureforemeasure,1603 bolts,1,measureforemeasure,1603 Vouchsafe,1,measureforemeasure,1603 flesh,1,measureforemeasure,1603 cuckold,1,measureforemeasure,1603 unsworn,1,measureforemeasure,1603 Hence,1,measureforemeasure,1603 tap,1,measureforemeasure,1603 dedicate,1,measureforemeasure,1603 night's,1,measureforemeasure,1603 usurp,1,measureforemeasure,1603 title,1,measureforemeasure,1603 mirth,1,measureforemeasure,1603 length,1,measureforemeasure,1603 agreeing,1,measureforemeasure,1603 rent,1,measureforemeasure,1603 stinkingly,1,measureforemeasure,1603 want,1,measureforemeasure,1603 obsequious,1,measureforemeasure,1603 edge,1,measureforemeasure,1603 strew'd,1,measureforemeasure,1603 Envelope,1,measureforemeasure,1603 Grapes,1,measureforemeasure,1603 dearer,1,measureforemeasure,1603 Friend,1,measureforemeasure,1603 votarists,1,measureforemeasure,1603 Hungary,1,measureforemeasure,1603 guiltier,1,measureforemeasure,1603 bolt,1,measureforemeasure,1603 Unfit,1,measureforemeasure,1603 diet,1,measureforemeasure,1603 seest,1,measureforemeasure,1603 sliding,1,measureforemeasure,1603 murder,1,measureforemeasure,1603 succeed,1,measureforemeasure,1603 sooth,1,measureforemeasure,1603 staying,1,measureforemeasure,1603 pierce,1,measureforemeasure,1603 ambassador,1,measureforemeasure,1603 world's,1,measureforemeasure,1603 rebellion,1,measureforemeasure,1603 dependant,1,measureforemeasure,1603 stop,1,measureforemeasure,1603 loins,1,measureforemeasure,1603 harbour,1,measureforemeasure,1603 warp,1,measureforemeasure,1603 doubts,1,measureforemeasure,1603 throughly,1,measureforemeasure,1603 wary,1,measureforemeasure,1603 meat,1,measureforemeasure,1603 Profess'd,1,measureforemeasure,1603 meal,1,measureforemeasure,1603 boot,1,measureforemeasure,1603 ruled,1,measureforemeasure,1603 gentleman's,1,measureforemeasure,1603 wits,1,measureforemeasure,1603 Blessed,1,measureforemeasure,1603 discoveries,1,measureforemeasure,1603 book,1,measureforemeasure,1603 Governs,1,measureforemeasure,1603 Supply,1,measureforemeasure,1603 bright,1,measureforemeasure,1603 framed,1,measureforemeasure,1603 uneven,1,measureforemeasure,1603 parts,1,measureforemeasure,1603 Whipt,1,measureforemeasure,1603 infirmity,1,measureforemeasure,1603 veiled,1,measureforemeasure,1603 tent,1,measureforemeasure,1603 substantial,1,measureforemeasure,1603 fairest,1,measureforemeasure,1603 goddess,1,measureforemeasure,1603 frames,1,measureforemeasure,1603 Sign,1,measureforemeasure,1603 opening,1,measureforemeasure,1603 each,1,measureforemeasure,1603 shorter,1,measureforemeasure,1603 scandal,1,measureforemeasure,1603 grievous,1,measureforemeasure,1603 Faith,1,measureforemeasure,1603 merriment,1,measureforemeasure,1603 bastards,1,measureforemeasure,1603 keys,1,measureforemeasure,1603 Advertising,1,measureforemeasure,1603 invest,1,measureforemeasure,1603 rupture,1,measureforemeasure,1603 Takes,1,measureforemeasure,1603 remonstrance,1,measureforemeasure,1603 informal,1,measureforemeasure,1603 strongly,1,measureforemeasure,1603 approof,1,measureforemeasure,1603 varlets,1,measureforemeasure,1603 uprighteously,1,measureforemeasure,1603 sweeter,1,measureforemeasure,1603 Pattern,1,measureforemeasure,1603 sigh,1,measureforemeasure,1603 talks,1,measureforemeasure,1603 measure,1,measureforemeasure,1603 foresaid,1,measureforemeasure,1603 granted,1,measureforemeasure,1603 tested,1,measureforemeasure,1603 Slandering,1,measureforemeasure,1603 decorum,1,measureforemeasure,1603 perfection,1,measureforemeasure,1603 controversy,1,measureforemeasure,1603 stubborn,1,measureforemeasure,1603 pay,1,measureforemeasure,1603 music,1,measureforemeasure,1603 Walks,1,measureforemeasure,1603 planched,1,measureforemeasure,1603 hang'd,1,measureforemeasure,1603 Looks,1,measureforemeasure,1603 slander'd,1,measureforemeasure,1603 chopped,1,measureforemeasure,1603 unwonted,1,measureforemeasure,1603 approaching,1,measureforemeasure,1603 box,1,measureforemeasure,1603 pendent,1,measureforemeasure,1603 loath,1,measureforemeasure,1603 sequent,1,measureforemeasure,1603 cardinally,1,measureforemeasure,1603 vigour,1,measureforemeasure,1603 Those,1,measureforemeasure,1603 shortly,1,measureforemeasure,1603 retirement,1,measureforemeasure,1603 Assay,1,measureforemeasure,1603 assault,1,measureforemeasure,1603 blown,1,measureforemeasure,1603 Still,1,measureforemeasure,1603 hopes,1,measureforemeasure,1603 prone,1,measureforemeasure,1603 imagined,1,measureforemeasure,1603 carman,1,measureforemeasure,1603 sensible,1,measureforemeasure,1603 sinew,1,measureforemeasure,1603 spawned,1,measureforemeasure,1603 bay,1,measureforemeasure,1603 siege,1,measureforemeasure,1603 Consenting,1,measureforemeasure,1603 performed,1,measureforemeasure,1603 pays,1,measureforemeasure,1603 razed,1,measureforemeasure,1603 offenceful,1,measureforemeasure,1603 flaws,1,measureforemeasure,1603 Carnally,1,measureforemeasure,1603 Bunch,1,measureforemeasure,1603 proof,1,measureforemeasure,1603 unless,1,measureforemeasure,1603 subscribe,1,measureforemeasure,1603 in't,1,measureforemeasure,1603 in's,1,measureforemeasure,1603 Pay,1,measureforemeasure,1603 creature,1,measureforemeasure,1603 merited,1,measureforemeasure,1603 star,1,measureforemeasure,1603 void,1,measureforemeasure,1603 denied,1,measureforemeasure,1603 defied,1,measureforemeasure,1603 brings,1,measureforemeasure,1603 fouler,1,measureforemeasure,1603 tales,1,measureforemeasure,1603 begun,1,measureforemeasure,1603 diligence,1,measureforemeasure,1603 force,1,measureforemeasure,1603 sings,1,measureforemeasure,1603 pardoner,1,measureforemeasure,1603 finds,1,measureforemeasure,1603 conceived,1,measureforemeasure,1603 motions,1,measureforemeasure,1603 habitation,1,measureforemeasure,1603 flowery,1,measureforemeasure,1603 clack,1,measureforemeasure,1603 Dizy,1,measureforemeasure,1603 sovereignty,1,measureforemeasure,1603 unruly,1,measureforemeasure,1603 dinner,1,measureforemeasure,1603 blest,1,measureforemeasure,1603 fined,1,measureforemeasure,1603 whole,1,measureforemeasure,1603 Pronounce,1,measureforemeasure,1603 ensky'd,1,measureforemeasure,1603 friars,1,measureforemeasure,1603 helmed,1,measureforemeasure,1603 discredit,1,measureforemeasure,1603 ambush,1,measureforemeasure,1603 deserved,1,measureforemeasure,1603 ease,1,measureforemeasure,1603 considered,1,measureforemeasure,1603 contracted,1,measureforemeasure,1603 path,1,measureforemeasure,1603 denial,1,measureforemeasure,1603 stew,1,measureforemeasure,1603 despair,1,measureforemeasure,1603 Mortality,1,measureforemeasure,1603 added,1,measureforemeasure,1603 sport,1,measureforemeasure,1603 seedness,1,measureforemeasure,1603 provokest,1,measureforemeasure,1603 proud,1,measureforemeasure,1603 display'd,1,measureforemeasure,1603 VI,1,measureforemeasure,1603 wholesomest,1,measureforemeasure,1603 notedly,1,measureforemeasure,1603 witless,1,measureforemeasure,1603 sparrows,1,measureforemeasure,1603 Lights,1,measureforemeasure,1603 sire,1,measureforemeasure,1603 quiet,1,measureforemeasure,1603 groaning,1,measureforemeasure,1603 obey,1,measureforemeasure,1603 brawling,1,measureforemeasure,1603 beheaded,1,measureforemeasure,1603 incest,1,measureforemeasure,1603 enrolled,1,measureforemeasure,1603 titles,1,measureforemeasure,1603 devices,1,measureforemeasure,1603 fetter,1,measureforemeasure,1603 foully,1,measureforemeasure,1603 Adieu,1,measureforemeasure,1603 Forgive,1,measureforemeasure,1603 Clare,1,measureforemeasure,1603 haunt,1,measureforemeasure,1603 strifes,1,measureforemeasure,1603 quenched,1,measureforemeasure,1603 Drop,1,measureforemeasure,1603 depending,1,measureforemeasure,1603 knowist,1,measureforemeasure,1603 gold,1,measureforemeasure,1603 doers,1,measureforemeasure,1603 weed,1,measureforemeasure,1603 oddest,1,measureforemeasure,1603 redeliver,1,measureforemeasure,1603 bulk,1,measureforemeasure,1603 exhibit,1,measureforemeasure,1603 sits,1,measureforemeasure,1603 reckless,1,measureforemeasure,1603 postern,1,measureforemeasure,1603 proportion,1,measureforemeasure,1603 straw,1,measureforemeasure,1603 remit,1,measureforemeasure,1603 bend,1,measureforemeasure,1603 urine,1,measureforemeasure,1603 abides,1,measureforemeasure,1603 grief,1,measureforemeasure,1603 was't,1,measureforemeasure,1603 audible,1,measureforemeasure,1603 preserved,1,measureforemeasure,1603 days',1,measureforemeasure,1603 burr,1,measureforemeasure,1603 Bridget,1,measureforemeasure,1603 'Twould,1,measureforemeasure,1603 bestowed,1,measureforemeasure,1603 Emperor,1,measureforemeasure,1603 suffer's,1,measureforemeasure,1603 kindness,1,measureforemeasure,1603 truncheon,1,measureforemeasure,1603 Shave,1,measureforemeasure,1603 madman,1,measureforemeasure,1603 ST,1,measureforemeasure,1603 petition,1,measureforemeasure,1603 awaked,1,measureforemeasure,1603 foolishly,1,measureforemeasure,1603 China,1,measureforemeasure,1603 accommodations,1,measureforemeasure,1603 Unveiling,1,measureforemeasure,1603 tricks,1,measureforemeasure,1603 devilish,1,measureforemeasure,1603 extended,1,measureforemeasure,1603 peaches,1,measureforemeasure,1603 wrecked,1,measureforemeasure,1603 swoons,1,measureforemeasure,1603 furnished,1,measureforemeasure,1603 anything,1,measureforemeasure,1603 learned,1,measureforemeasure,1603 pre,1,measureforemeasure,1603 craft,1,measureforemeasure,1603 Behold,1,measureforemeasure,1603 Labouring,1,measureforemeasure,1603 Falsely,1,measureforemeasure,1603 shadow,1,measureforemeasure,1603 perilous,1,measureforemeasure,1603 fifty,1,measureforemeasure,1603 'greed,1,measureforemeasure,1603 satin,1,measureforemeasure,1603 causest,1,measureforemeasure,1603 Plays,1,measureforemeasure,1603 courtesies,1,measureforemeasure,1603 Bore,1,measureforemeasure,1603 forget'st,1,measureforemeasure,1603 jewel,1,measureforemeasure,1603 transport,1,measureforemeasure,1603 keep'st,1,measureforemeasure,1603 'Remember,1,measureforemeasure,1603 imprison,1,measureforemeasure,1603 traveller's,1,measureforemeasure,1603 jury,1,measureforemeasure,1603 surfeiting,1,measureforemeasure,1603 nunnery,1,measureforemeasure,1603 unsoil'd,1,measureforemeasure,1603 verity,1,measureforemeasure,1603 bum,1,measureforemeasure,1603 curse,1,measureforemeasure,1603 Showing,1,measureforemeasure,1603 Mutually,1,measureforemeasure,1603 herein,1,measureforemeasure,1603 beef,1,measureforemeasure,1603 Merciful,1,measureforemeasure,1603 vassal,1,measureforemeasure,1603 used,1,measureforemeasure,1603 disguise,1,measureforemeasure,1603 dependency,1,measureforemeasure,1603 Enough,1,measureforemeasure,1603 gout,1,measureforemeasure,1603 shifts,1,measureforemeasure,1603 extirp,1,measureforemeasure,1603 stronger,1,measureforemeasure,1603 enterprise,1,measureforemeasure,1603 paint,1,measureforemeasure,1603 strip,1,measureforemeasure,1603 'Twas,1,measureforemeasure,1603 sister's,1,measureforemeasure,1603 smack,1,measureforemeasure,1603 Wrench,1,measureforemeasure,1603 rejoice,1,measureforemeasure,1603 stretch,1,measureforemeasure,1603 Vail,1,measureforemeasure,1603 pitch,1,measureforemeasure,1603 grace's,1,measureforemeasure,1603 twigs,1,measureforemeasure,1603 calling,1,measureforemeasure,1603 ashamed,1,measureforemeasure,1603 attain'd,1,measureforemeasure,1603 hopeful,1,measureforemeasure,1603 resort,1,measureforemeasure,1603 headstrong,1,measureforemeasure,1603 hurts,1,measureforemeasure,1603 assemblies,1,measureforemeasure,1603 beginning,1,measureforemeasure,1603 Both,1,measureforemeasure,1603 dolours,1,measureforemeasure,1603 afoot,1,measureforemeasure,1603 o'ergrown,1,measureforemeasure,1603 Fully,1,measureforemeasure,1603 God,1,measureforemeasure,1603 river,1,measureforemeasure,1603 clients,1,measureforemeasure,1603 Rely,1,measureforemeasure,1603 entertain,1,measureforemeasure,1603 ghost,1,measureforemeasure,1603 continued,1,measureforemeasure,1603 undoubtful,1,measureforemeasure,1603 detected,1,measureforemeasure,1603 instant,1,measureforemeasure,1603 Perpetual,1,measureforemeasure,1603 credent,1,measureforemeasure,1603 Cannot,1,measureforemeasure,1603 betray,1,measureforemeasure,1603 resolute,1,measureforemeasure,1603 keeping,1,measureforemeasure,1603 Reprieve,1,measureforemeasure,1603 consecrated,1,measureforemeasure,1603 embraced,1,measureforemeasure,1603 gallows,1,measureforemeasure,1603 gift,1,measureforemeasure,1603 raise,1,measureforemeasure,1603 Fear,1,measureforemeasure,1603 excellent,1,measureforemeasure,1603 Here's,1,measureforemeasure,1603 battery,1,measureforemeasure,1603 carrion,1,measureforemeasure,1603 current,1,measureforemeasure,1603 sheep,1,measureforemeasure,1603 painting,1,measureforemeasure,1603 fasten,1,measureforemeasure,1603 Hourly,1,measureforemeasure,1603 violence,1,measureforemeasure,1603 yes,1,measureforemeasure,1603 pervert,1,measureforemeasure,1603 drabs,1,measureforemeasure,1603 Unless,1,measureforemeasure,1603 weigh'd,1,measureforemeasure,1603 oftener,1,measureforemeasure,1603 stone,1,measureforemeasure,1603 depends,1,measureforemeasure,1603 aims,1,measureforemeasure,1603 likely,1,measureforemeasure,1603 lent,1,measureforemeasure,1603 nobleman,1,measureforemeasure,1603 I've,1,measureforemeasure,1603 Return,1,measureforemeasure,1603 accuses,1,measureforemeasure,1603 stain'd,1,measureforemeasure,1603 dower,1,measureforemeasure,1603 poise,1,measureforemeasure,1603 waist,1,measureforemeasure,1603 sects,1,measureforemeasure,1603 torches,1,measureforemeasure,1603 hands,1,measureforemeasure,1603 Rest,1,measureforemeasure,1603 buried,1,measureforemeasure,1603 prints,1,measureforemeasure,1603 lends,1,measureforemeasure,1603 members,1,measureforemeasure,1603 cram,1,measureforemeasure,1603 game,1,measureforemeasure,1603 possess'd,1,measureforemeasure,1603 metre,1,measureforemeasure,1603 slipt,1,measureforemeasure,1603 sciatica,1,measureforemeasure,1603 defends,1,measureforemeasure,1603 forget,1,measureforemeasure,1603 fourscore,1,measureforemeasure,1603 displeased,1,measureforemeasure,1603 door,1,measureforemeasure,1603 doom,1,measureforemeasure,1603 renouncement,1,measureforemeasure,1603 dried,1,measureforemeasure,1603 move,1,measureforemeasure,1603 abominable,1,measureforemeasure,1603 austereness,1,measureforemeasure,1603 fears,1,measureforemeasure,1603 Yonder,1,measureforemeasure,1603 wisely,1,measureforemeasure,1603 region,1,measureforemeasure,1603 Procures,1,measureforemeasure,1603 shears,1,measureforemeasure,1603 strait,1,measureforemeasure,1603 utmost,1,measureforemeasure,1603 aside,1,measureforemeasure,1603 complexions,1,measureforemeasure,1603 Goes,1,measureforemeasure,1603 curbs,1,measureforemeasure,1603 rebate,1,measureforemeasure,1603 wrinkled,1,measureforemeasure,1603 seventeen,1,measureforemeasure,1603 whereof,1,measureforemeasure,1603 spiders',1,measureforemeasure,1603 Poland,1,measureforemeasure,1603 Live,1,measureforemeasure,1603 earth,1,measureforemeasure,1603 Reads,1,measureforemeasure,1603 scholar,1,measureforemeasure,1603 temper,1,measureforemeasure,1603 eminent,1,measureforemeasure,1603 value,1,measureforemeasure,1603 lover,1,measureforemeasure,1603 gyves,1,measureforemeasure,1603 pursues,1,measureforemeasure,1603 glance,1,measureforemeasure,1603 studied,1,measureforemeasure,1603 miserable,1,measureforemeasure,1603 impediment,1,measureforemeasure,1603 settled,1,measureforemeasure,1603 touse,1,measureforemeasure,1603 Yea,1,measureforemeasure,1603 moon,1,measureforemeasure,1603 scandalous,1,measureforemeasure,1603 laboured,1,measureforemeasure,1603 drift,1,measureforemeasure,1603 beholding,1,measureforemeasure,1603 add,1,measureforemeasure,1603 sweetness,1,measureforemeasure,1603 speak'st,1,measureforemeasure,1603 Acquaint,1,measureforemeasure,1603 resides,1,measureforemeasure,1603 resolved,1,measureforemeasure,1603 ample,1,measureforemeasure,1603 wherein,1,measureforemeasure,1603 lest,1,measureforemeasure,1603 statute,1,measureforemeasure,1603 confiscation,1,measureforemeasure,1603 gravest,1,measureforemeasure,1603 ill,1,measureforemeasure,1603 customers,1,measureforemeasure,1603 filling,1,measureforemeasure,1603 Guiltier,1,measureforemeasure,1603 violet,1,measureforemeasure,1603 Compact,1,measureforemeasure,1603 necessary,1,measureforemeasure,1603 lets,1,measureforemeasure,1603 lock'd,1,measureforemeasure,1603 tundish,1,measureforemeasure,1603 commandment,1,measureforemeasure,1603 incertain,1,measureforemeasure,1603 powdered,1,measureforemeasure,1603 pain'd,1,measureforemeasure,1603 misreport,1,measureforemeasure,1603 forgot,1,measureforemeasure,1603 knee,1,measureforemeasure,1603 tempter,1,measureforemeasure,1603 respite,1,measureforemeasure,1603 hooded,1,measureforemeasure,1603 marr'd,1,measureforemeasure,1603 beastliest,1,measureforemeasure,1603 fallible,1,measureforemeasure,1603 Double,1,measureforemeasure,1603 Came,1,measureforemeasure,1603 killed,1,measureforemeasure,1603 choice,1,measureforemeasure,1603 events,1,measureforemeasure,1603 hardly,1,measureforemeasure,1603 gravel,1,measureforemeasure,1603 reasons,1,measureforemeasure,1603 plot,1,measureforemeasure,1603 consummate,1,measureforemeasure,1603 denunciation,1,measureforemeasure,1603 transgression,1,measureforemeasure,1603 accounted,1,measureforemeasure,1603 hard,1,measureforemeasure,1603 Break,1,measureforemeasure,1603 plume,1,measureforemeasure,1603 perdurably,1,measureforemeasure,1603 incline,1,measureforemeasure,1603 un,1,measureforemeasure,1603 wards,1,measureforemeasure,1603 Kate,1,measureforemeasure,1603 spleens,1,measureforemeasure,1603 lewd,1,measureforemeasure,1603 hall,1,measureforemeasure,1603 hug,1,measureforemeasure,1603 messenger,1,measureforemeasure,1603 handled,1,measureforemeasure,1603 slanderers,1,measureforemeasure,1603 Plainly,1,measureforemeasure,1603 signify,1,measureforemeasure,1603 Gladly,1,measureforemeasure,1603 impression,1,measureforemeasure,1603 pale,1,measureforemeasure,1603 Release,1,measureforemeasure,1603 employ'd,1,measureforemeasure,1603 weeds,1,measureforemeasure,1603 leaven'd,1,measureforemeasure,1603 spur,1,measureforemeasure,1603 acknowledge,1,measureforemeasure,1603 Courage,1,measureforemeasure,1603 reprobate,1,measureforemeasure,1603 strings,1,measureforemeasure,1603 shun,1,measureforemeasure,1603 journal,1,measureforemeasure,1603 drawn,1,measureforemeasure,1603 provides,1,measureforemeasure,1603 severity,1,measureforemeasure,1603 thanksgiving,1,measureforemeasure,1603 accurst,1,measureforemeasure,1603 pang,1,measureforemeasure,1603 forty,1,measureforemeasure,1603 school,1,measureforemeasure,1603 appliances,1,measureforemeasure,1603 restrained,1,measureforemeasure,1603 provided,1,measureforemeasure,1603 'unjust',1,measureforemeasure,1603 burgher,1,measureforemeasure,1603 momentary,1,measureforemeasure,1603 miscarried,1,measureforemeasure,1603 strivest,1,measureforemeasure,1603 test,1,measureforemeasure,1603 potency,1,measureforemeasure,1603 unlawful,1,measureforemeasure,1603 ponderous,1,measureforemeasure,1603 deaths,1,measureforemeasure,1603 essay,1,measureforemeasure,1603 concludest,1,measureforemeasure,1603 Remit,1,measureforemeasure,1603 fork,1,measureforemeasure,1603 gradation,1,measureforemeasure,1603 wicked'st,1,measureforemeasure,1603 confederate,1,measureforemeasure,1603 instate,1,measureforemeasure,1603 pair,1,measureforemeasure,1603 institutions,1,measureforemeasure,1603 neglect,1,measureforemeasure,1603 pain,1,measureforemeasure,1603 delight,1,measureforemeasure,1603 fiery,1,measureforemeasure,1603 spit,1,measureforemeasure,1603 signet,1,measureforemeasure,1603 ape,1,measureforemeasure,1603 extremest,1,measureforemeasure,1603 resists,1,measureforemeasure,1603 ungot,1,measureforemeasure,1603 profound,1,measureforemeasure,1603 Dispatch,1,measureforemeasure,1603 Varlet,1,measureforemeasure,1603 twain,1,measureforemeasure,1603 shop,1,measureforemeasure,1603 pace,1,measureforemeasure,1603 contended,1,measureforemeasure,1603 hate,1,measureforemeasure,1603 arrests,1,measureforemeasure,1603 foot,1,measureforemeasure,1603 determination,1,measureforemeasure,1603 worldly,1,measureforemeasure,1603 Benedicite,1,measureforemeasure,1603 zodiacs,1,measureforemeasure,1603 conserve,1,measureforemeasure,1603 fishes,1,measureforemeasure,1603 quests,1,measureforemeasure,1603 concerning,1,measureforemeasure,1603 awe,1,measureforemeasure,1603 counsellors,1,measureforemeasure,1603 immoderate,1,measureforemeasure,1603 believest,1,measureforemeasure,1603 images,1,measureforemeasure,1603 signior,1,measureforemeasure,1603 revenge,1,measureforemeasure,1603 courses,1,measureforemeasure,1603 athwart,1,measureforemeasure,1603 yare,1,measureforemeasure,1603 brother',1,measureforemeasure,1603 renowned,1,measureforemeasure,1603 object,1,measureforemeasure,1603 beetle,1,measureforemeasure,1603 girl,1,measureforemeasure,1603 fresh,1,measureforemeasure,1603 monument,1,measureforemeasure,1603 sworest,1,measureforemeasure,1603 maiden,1,measureforemeasure,1603 fancies,1,measureforemeasure,1603 ye,1,measureforemeasure,1603 error,1,measureforemeasure,1603 nicety,1,measureforemeasure,1603 feverous,1,measureforemeasure,1603 lock,1,measureforemeasure,1603 Blood,1,measureforemeasure,1603 superficial,1,measureforemeasure,1603 armour,1,measureforemeasure,1603 mercer,1,measureforemeasure,1603 Hast,1,measureforemeasure,1603 She'll,1,measureforemeasure,1603 foppery,1,measureforemeasure,1603 defended,1,measureforemeasure,1603 finely,1,measureforemeasure,1603 disproved,1,measureforemeasure,1603 exacting,1,measureforemeasure,1603 Luke's,1,measureforemeasure,1603 strangeness,1,measureforemeasure,1603 deadly,1,measureforemeasure,1603 Harp,1,measureforemeasure,1603 partial,1,measureforemeasure,1603 theirs,1,measureforemeasure,1603 beggary,1,measureforemeasure,1603 crabbed,1,measureforemeasure,1603 washed,1,measureforemeasure,1603 ministers,1,measureforemeasure,1603 array,1,measureforemeasure,1603 sweetly,1,measureforemeasure,1603 reprieves,1,measureforemeasure,1603 naughty,1,measureforemeasure,1603 justify,1,measureforemeasure,1603 secondary,1,measureforemeasure,1603 sanctuary,1,measureforemeasure,1603 inquiry,1,measureforemeasure,1603 token,1,measureforemeasure,1603 befell,1,measureforemeasure,1603 sicken,1,measureforemeasure,1603 brain'd,1,measureforemeasure,1603 intemperate,1,measureforemeasure,1603 hazard,1,measureforemeasure,1603 Little,1,measureforemeasure,1603 Quit,1,measureforemeasure,1603 guess,1,measureforemeasure,1603 howling,1,measureforemeasure,1603 cipher,1,measureforemeasure,1603 treasures,1,measureforemeasure,1603 prays,1,measureforemeasure,1603 spoken,1,measureforemeasure,1603 superfluous,1,measureforemeasure,1603 fooling,1,measureforemeasure,1603 height,1,measureforemeasure,1603 delighted,1,measureforemeasure,1603 Between,1,measureforemeasure,1603 execute,1,measureforemeasure,1603 notable,1,measureforemeasure,1603 wheels,1,measureforemeasure,1603 Groping,1,measureforemeasure,1603 borrow,1,measureforemeasure,1603 lean,1,measureforemeasure,1603 roof,1,measureforemeasure,1603 codpiece,1,measureforemeasure,1603 craftily,1,measureforemeasure,1603 dribbling,1,measureforemeasure,1603 raze,1,measureforemeasure,1603 Command,1,measureforemeasure,1603 distant,1,measureforemeasure,1603 occasion,1,measureforemeasure,1603 permissive,1,measureforemeasure,1603 through,1,measureforemeasure,1603 lavish,1,measureforemeasure,1603 proofs,1,measureforemeasure,1603 pretending,1,measureforemeasure,1603 deceiving,1,measureforemeasure,1603 perceives,1,measureforemeasure,1603 breather,1,measureforemeasure,1603 kitchens,1,measureforemeasure,1603 vulgarly,1,measureforemeasure,1603 Eleven,1,measureforemeasure,1603 breeds,1,measureforemeasure,1603 equal,1,measureforemeasure,1603 heavier,1,measureforemeasure,1603 syllable,1,measureforemeasure,1603 sensual,1,measureforemeasure,1603 Virtue,1,measureforemeasure,1603 moved,1,measureforemeasure,1603 expected,1,measureforemeasure,1603 Become,1,measureforemeasure,1603 tarry,1,measureforemeasure,1603 nay,1,measureforemeasure,1603 unloose,1,measureforemeasure,1603 influences,1,measureforemeasure,1603 rank,1,measureforemeasure,1603 Ten,1,measureforemeasure,1603 empty,1,measureforemeasure,1603 tokens,1,measureforemeasure,1603 shrunk,1,measureforemeasure,1603 dress'd,1,measureforemeasure,1603 shouldst,1,measureforemeasure,1603 apprehension,1,measureforemeasure,1603 guiltless,1,measureforemeasure,1603 session,1,measureforemeasure,1603 bravery,1,measureforemeasure,1603 weighing,1,measureforemeasure,1603 takest,1,measureforemeasure,1603 whitest,1,measureforemeasure,1603 Knock,1,measureforemeasure,1603 build,1,measureforemeasure,1603 trouts,1,measureforemeasure,1603 couldst,1,measureforemeasure,1603 distance,1,measureforemeasure,1603 express'd,1,measureforemeasure,1603 Pleased,1,measureforemeasure,1603 'longs,1,measureforemeasure,1603 pollution,1,measureforemeasure,1603 unknown,1,measureforemeasure,1603 Better,1,measureforemeasure,1603 prosperity,1,measureforemeasure,1603 omit,1,measureforemeasure,1603 mercy's,1,measureforemeasure,1603 Half,1,measureforemeasure,1603 Else,1,measureforemeasure,1603 apply,1,measureforemeasure,1603 marks,1,measureforemeasure,1603 Seven,1,measureforemeasure,1603 vastidity,1,measureforemeasure,1603 penury,1,measureforemeasure,1603 wonder,1,measureforemeasure,1603 Unmuffles,1,measureforemeasure,1603 Julietta's,1,measureforemeasure,1603 mutton,1,measureforemeasure,1603 exist'st,1,measureforemeasure,1603 hips,1,measureforemeasure,1603 restore,1,measureforemeasure,1603 pated,1,measureforemeasure,1603 restless,1,measureforemeasure,1603 acting,1,measureforemeasure,1603 societies,1,measureforemeasure,1603 scale,1,measureforemeasure,1603 demigod,1,measureforemeasure,1603 noon,1,measureforemeasure,1603 Injurious,1,measureforemeasure,1603 guides,1,measureforemeasure,1603 fretting,1,measureforemeasure,1603 ability's,1,measureforemeasure,1603 deserving,1,measureforemeasure,1603 below,1,measureforemeasure,1603 rats,1,measureforemeasure,1603 'Thou,1,measureforemeasure,1603 conveyed,1,measureforemeasure,1603 ducat,1,measureforemeasure,1603 temperance,1,measureforemeasure,1603 bottle,1,measureforemeasure,1603 luxury,1,measureforemeasure,1603 balanced,1,measureforemeasure,1603 clothe,1,measureforemeasure,1603 inequality,1,measureforemeasure,1603 limited,1,measureforemeasure,1603 effusion,1,measureforemeasure,1603 ours,1,measureforemeasure,1603 blunt,1,measureforemeasure,1603 traitors,1,measureforemeasure,1603 tenor,1,measureforemeasure,1603 entirely,1,measureforemeasure,1603 'An,1,measureforemeasure,1603 observer,1,measureforemeasure,1603 Christians,1,measureforemeasure,1603 Craft,1,measureforemeasure,1603 bottom,1,measureforemeasure,1603 eve,1,measureforemeasure,1603 glasses,1,measureforemeasure,1603 Slander,1,measureforemeasure,1603 likelihood,1,measureforemeasure,1603 Dreaming,1,measureforemeasure,1603 slower,1,measureforemeasure,1603 prioress,1,measureforemeasure,1603 Intends,1,measureforemeasure,1603 written,1,measureforemeasure,1603 borne,1,measureforemeasure,1603 Sit,1,measureforemeasure,1603 admit,1,measureforemeasure,1603 charm,1,measureforemeasure,1603 nun,1,measureforemeasure,1603 thirsty,1,measureforemeasure,1603 sticks,1,measureforemeasure,1603 stays,1,measureforemeasure,1603 equally,1,measureforemeasure,1603 Constable,1,measureforemeasure,1603 progress,1,measureforemeasure,1603 Whensoever,1,measureforemeasure,1603 you'ld,1,measureforemeasure,1603 desiring,1,measureforemeasure,1603 unshunned,1,measureforemeasure,1603 extracting,1,measureforemeasure,1603 perform,1,measureforemeasure,1603 bawd's,1,measureforemeasure,1603 who's,1,measureforemeasure,1603 adultery,1,measureforemeasure,1603 escapes,1,measureforemeasure,1603 Darest,1,measureforemeasure,1603 evermore,1,measureforemeasure,1603 dares,1,measureforemeasure,1603 Fewness,1,measureforemeasure,1603 rejoicing,1,measureforemeasure,1603 straitness,1,measureforemeasure,1603 steeled,1,measureforemeasure,1603 freely,1,measureforemeasure,1603 avouch,1,measureforemeasure,1603 quarter,1,measureforemeasure,1603 wonder'd,1,measureforemeasure,1603 revive,1,measureforemeasure,1603 Turns,1,measureforemeasure,1603 Convenient,1,measureforemeasure,1603 unusual,1,measureforemeasure,1603 unbelieved,1,measureforemeasure,1603 Knows,1,measureforemeasure,1603 discontent,1,measureforemeasure,1603 commune,1,measureforemeasure,1603 err,1,measureforemeasure,1603 spurs,1,measureforemeasure,1603 dissolution,1,measureforemeasure,1603 doors,1,measureforemeasure,1603 likewise,1,measureforemeasure,1603 towards,1,measureforemeasure,1603 leaves,1,measureforemeasure,1603 mile,1,measureforemeasure,1603 eld,1,measureforemeasure,1603 eaves,1,measureforemeasure,1603 charitable,1,measureforemeasure,1603 usuries,1,measureforemeasure,1603 teeth,1,measureforemeasure,1603 non,1,measureforemeasure,1603 bubble,1,measureforemeasure,1603 blench,1,measureforemeasure,1603 covert,1,measureforemeasure,1603 saving,1,measureforemeasure,1603 conclusion,1,measureforemeasure,1603 mightst,1,measureforemeasure,1603 creditor,1,measureforemeasure,1603 approaches,1,measureforemeasure,1603 knave,1,measureforemeasure,1603 kisses,1,measureforemeasure,1603 filth,1,measureforemeasure,1603 purposes,1,measureforemeasure,1603 dared,1,measureforemeasure,1603 Persuade,1,measureforemeasure,1603 relents,1,measureforemeasure,1603 escape,1,measureforemeasure,1603 enriched,1,measureforemeasure,1603 robbery,1,measureforemeasure,1603 process,1,measureforemeasure,1603 chair,1,measureforemeasure,1603 bloody,1,measureforemeasure,1603 advisings,1,measureforemeasure,1603 arraign,1,measureforemeasure,1603 procure,1,measureforemeasure,1603 obscured,1,measureforemeasure,1603 stabbed,1,measureforemeasure,1603 courage,1,measureforemeasure,1603 villanous,1,measureforemeasure,1603 organs,1,measureforemeasure,1603 chief,1,measureforemeasure,1603 unshapes,1,measureforemeasure,1603 persuaded,1,measureforemeasure,1603 injuries,1,measureforemeasure,1603 thick,1,measureforemeasure,1603 Son,1,measureforemeasure,1603 penitence,1,measureforemeasure,1603 afflicted,1,measureforemeasure,1603 obstruction,1,measureforemeasure,1603 issue,1,measureforemeasure,1603 Bohemian,1,measureforemeasure,1603 veil,1,measureforemeasure,1603 vein,1,measureforemeasure,1603 wot,1,measureforemeasure,1603 Joy,1,measureforemeasure,1603 blow,1,measureforemeasure,1603 brains,1,measureforemeasure,1603 greatest,1,measureforemeasure,1603 painful,1,measureforemeasure,1603 beside,1,measureforemeasure,1603 lapwing,1,measureforemeasure,1603 heaven's,1,measureforemeasure,1603 using,1,measureforemeasure,1603 arch,1,measureforemeasure,1603 seal'd,1,measureforemeasure,1603 amazement,1,measureforemeasure,1603 threatening,1,measureforemeasure,1603 privileges,1,measureforemeasure,1603 father's,1,measureforemeasure,1603 plenteous,1,measureforemeasure,1603 hypocrite,1,measureforemeasure,1603 over,1,measureforemeasure,1603 feelingly,1,measureforemeasure,1603 Remaining,1,measureforemeasure,1603 medlar,1,measureforemeasure,1603 propagation,1,measureforemeasure,1603 discharge,1,measureforemeasure,1603 Bum,1,measureforemeasure,1603 whispering,1,measureforemeasure,1603 number,1,measureforemeasure,1603 apart,1,measureforemeasure,1603 Made,1,measureforemeasure,1603 marvel,1,measureforemeasure,1603 prolixious,1,measureforemeasure,1603 impiety,1,measureforemeasure,1603 subdue,1,measureforemeasure,1603 horrible,1,measureforemeasure,1603 Intents,1,measureforemeasure,1603 mistress',1,measureforemeasure,1603 fills,1,measureforemeasure,1603 disguiser,1,measureforemeasure,1603 Rome,1,measureforemeasure,1603 desires,1,measureforemeasure,1603 Forerunning,1,measureforemeasure,1603 ones,1,measureforemeasure,1603 living,1,measureforemeasure,1603 stain,1,measureforemeasure,1603 louder,1,measureforemeasure,1603 bear'st,1,measureforemeasure,1603 provincial,1,measureforemeasure,1603 altered,1,measureforemeasure,1603 possession,1,measureforemeasure,1603 Found,1,measureforemeasure,1603 dissolute,1,measureforemeasure,1603 Respect,1,measureforemeasure,1603 stricture,1,measureforemeasure,1603 'for,1,measureforemeasure,1603 'Twixt,1,measureforemeasure,1603 proved,1,measureforemeasure,1603 stink,1,measureforemeasure,1603 get,1,measureforemeasure,1603 Copperspur,1,measureforemeasure,1603 wrongs,1,measureforemeasure,1603 Awakes,1,measureforemeasure,1603 Caper,1,measureforemeasure,1603 salt,1,measureforemeasure,1603 pound,1,measureforemeasure,1603 neck,1,measureforemeasure,1603 understanding,1,measureforemeasure,1603 former,1,measureforemeasure,1603 blushes,1,measureforemeasure,1603 Confess,1,measureforemeasure,1603 statesman,1,measureforemeasure,1603 Run,1,measureforemeasure,1603 wrapt,1,measureforemeasure,1603 pond,1,measureforemeasure,1603 Deep,1,measureforemeasure,1603 Wend,1,measureforemeasure,1603 persons,1,measureforemeasure,1603 message,1,measureforemeasure,1603 provoke,1,measureforemeasure,1603 evasion,1,measureforemeasure,1603 bawdy,1,measureforemeasure,1603 bawds,1,measureforemeasure,1603 untrussing,1,measureforemeasure,1603 commonweal,1,measureforemeasure,1603 happiness,1,measureforemeasure,1603 loving,1,measureforemeasure,1603 novelty,1,measureforemeasure,1603 sitting,1,measureforemeasure,1603 Tuesday,1,measureforemeasure,1603 facit,1,measureforemeasure,1603 bondage,1,measureforemeasure,1603 marshal's,1,measureforemeasure,1603 characts,1,measureforemeasure,1603 beastly,1,measureforemeasure,1603 Dead,1,measureforemeasure,1603 dinner's,1,measureforemeasure,1603 city's,1,measureforemeasure,1603 lightness,1,measureforemeasure,1603 dawning,1,measureforemeasure,1603 oak,1,measureforemeasure,1603 cheaper,1,measureforemeasure,1603 clock,1,measureforemeasure,1603 fallow,1,measureforemeasure,1603 Sure,1,measureforemeasure,1603 flight,1,measureforemeasure,1603 back'd,1,measureforemeasure,1603 residence,1,measureforemeasure,1603 healthy,1,measureforemeasure,1603 Subdues,1,measureforemeasure,1603 falcon,1,measureforemeasure,1603 vouches,1,measureforemeasure,1603 resemblance,1,measureforemeasure,1603 remains,1,measureforemeasure,1603 masks,1,measureforemeasure,1603 unmask,1,measureforemeasure,1603 skyey,1,measureforemeasure,1603 mice,1,measureforemeasure,1603 decrees,1,measureforemeasure,1603 musical,1,measureforemeasure,1603 Nips,1,measureforemeasure,1603 glassy,1,measureforemeasure,1603 issued,1,measureforemeasure,1603 chastisement,1,measureforemeasure,1603 issues,1,measureforemeasure,1603 dust,1,measureforemeasure,1603 called,1,measureforemeasure,1603 Think,1,measureforemeasure,1603 undiscernible,1,measureforemeasure,1603 stage,1,measureforemeasure,1603 flourish,1,measureforemeasure,1603 able,1,measureforemeasure,1603 contracting,1,measureforemeasure,1603 commanded,1,measureforemeasure,1603 trusty,1,measureforemeasure,1603 swinged,1,measureforemeasure,1603 fount,1,measureforemeasure,1603 suit's,1,measureforemeasure,1603 hidden,1,measureforemeasure,1603 fleshmonger,1,measureforemeasure,1603 fellow's,1,measureforemeasure,1603 handle,1,measureforemeasure,1603 Lucio's,1,measureforemeasure,1603 determines,1,measureforemeasure,1603 they'll,1,measureforemeasure,1603 blemish,1,measureforemeasure,1603 pride,1,measureforemeasure,1603 Immediate,1,measureforemeasure,1603 wanton,1,measureforemeasure,1603 imposition,1,measureforemeasure,1603 dying,1,measureforemeasure,1603 ends,1,measureforemeasure,1603 apace,1,measureforemeasure,1603 Barnardine's,1,measureforemeasure,1603 proceeding,1,measureforemeasure,1603 price,1,measureforemeasure,1603 villains,1,measureforemeasure,1603 clod,1,measureforemeasure,1603 Three,1,measureforemeasure,1603 penalties,1,measureforemeasure,1603 belly,1,measureforemeasure,1603 stoop'd,1,measureforemeasure,1603 happy,1,measureforemeasure,1603 enforced,1,measureforemeasure,1603 drowned,1,measureforemeasure,1603 Shame,1,measureforemeasure,1603 throats,1,measureforemeasure,1603 Gives,1,measureforemeasure,1603 plausible,1,measureforemeasure,1603 treasonable,1,measureforemeasure,1603 familiar,1,measureforemeasure,1603 gladly,1,measureforemeasure,1603 husbandry,1,measureforemeasure,1603 divines,1,measureforemeasure,1603 agree,1,measureforemeasure,1603 baseness,1,measureforemeasure,1603 Hoping,1,measureforemeasure,1603 dreams,1,measureforemeasure,1603 mettle,1,measureforemeasure,1603 oblivion,1,measureforemeasure,1603 Sneak,1,measureforemeasure,1603 morsel,1,measureforemeasure,1603 faithless,1,measureforemeasure,1603 edict,1,measureforemeasure,1603 fallen,1,measureforemeasure,1603 taken,1,measureforemeasure,1603 reports,1,measureforemeasure,1603 charges,1,measureforemeasure,1603 rotten,1,measureforemeasure,1603 certainty,1,measureforemeasure,1603 prisoner's,1,measureforemeasure,1603 inform,1,measureforemeasure,1603 coffer,1,measureforemeasure,1603 require,1,measureforemeasure,1603 opposite,1,measureforemeasure,1603 womb,1,measureforemeasure,1603 lust,1,measureforemeasure,1603 wife's,1,measureforemeasure,1603 Starve,1,measureforemeasure,1603 imputation,1,measureforemeasure,1603 rain,1,measureforemeasure,1603 doings,1,measureforemeasure,1603 functions,1,measureforemeasure,1603 dull,1,measureforemeasure,1603 beguiles,1,measureforemeasure,1603 duly,1,measureforemeasure,1603 waters,1,measureforemeasure,1603 serves,1,measureforemeasure,1603 Forbear,1,measureforemeasure,1603 Noble,1,measureforemeasure,1603 cover,1,measureforemeasure,1603 madest,1,measureforemeasure,1603 splay,1,measureforemeasure,1603 file,1,measureforemeasure,1603 tilter,1,measureforemeasure,1603 gifts,1,measureforemeasure,1603 crotchets,1,measureforemeasure,1603 mightier,1,measureforemeasure,1603 information,1,measureforemeasure,1603 hideous,1,measureforemeasure,1603 concealed,1,measureforemeasure,1603 guilty,1,measureforemeasure,1603 table,1,measureforemeasure,1603 grieve,1,measureforemeasure,1603 Prefix'd,1,measureforemeasure,1603 spirit's,1,measureforemeasure,1603 locked,1,measureforemeasure,1603 Unhappy,1,measureforemeasure,1603 bruise,1,measureforemeasure,1603 profiting,1,measureforemeasure,1603 minds,1,measureforemeasure,1603 'fore,1,measureforemeasure,1603 blister'd,1,measureforemeasure,1603 desert,1,measureforemeasure,1603 prattle,1,measureforemeasure,1603 Exceeds,1,measureforemeasure,1603 proportions,1,measureforemeasure,1603 foh,1,measureforemeasure,1603 article,1,measureforemeasure,1603 sin's,1,measureforemeasure,1603 corrects,1,measureforemeasure,1603 constancy,1,measureforemeasure,1603 Proceed,1,measureforemeasure,1603 wert,1,measureforemeasure,1603 speeded,1,measureforemeasure,1603 answers,1,measureforemeasure,1603 gratulate,1,measureforemeasure,1603 race,1,measureforemeasure,1603 kinsman,1,measureforemeasure,1603 methinks,1,measureforemeasure,1603 woeful,1,measureforemeasure,1603 worm,1,measureforemeasure,1603 wounds,1,measureforemeasure,1603 dialect,1,measureforemeasure,1603 contrarious,1,measureforemeasure,1603 tune,1,measureforemeasure,1603 heavily,1,measureforemeasure,1603 roses,1,measureforemeasure,1603 passing,1,measureforemeasure,1603 ride,1,measureforemeasure,1603 bear's,1,measureforemeasure,1603 unweighing,1,measureforemeasure,1603 Mark,1,measureforemeasure,1603 pulled,1,measureforemeasure,1603 runn'st,1,measureforemeasure,1603 profit,1,measureforemeasure,1603 fill,1,measureforemeasure,1603 howsoever,1,measureforemeasure,1603 clap,1,measureforemeasure,1603 barber's,1,measureforemeasure,1603 Drest,1,measureforemeasure,1603 external,1,measureforemeasure,1603 folly,1,measureforemeasure,1603 horn,1,measureforemeasure,1603 unwedgeable,1,measureforemeasure,1603 Lead,1,measureforemeasure,1603 Imagine,1,measureforemeasure,1603 refer,1,measureforemeasure,1603 bark,1,measureforemeasure,1603 thereby,1,measureforemeasure,1603 bare,1,measureforemeasure,1603 answer'd,1,measureforemeasure,1603 belongings,1,measureforemeasure,1603 pocket,1,measureforemeasure,1603 bite,1,measureforemeasure,1603 holiness,1,measureforemeasure,1603 fondness,1,measureforemeasure,1603 dependent,1,measureforemeasure,1603 Thank,1,measureforemeasure,1603 patient,1,measureforemeasure,1603 warped,1,measureforemeasure,1603 bringings,1,measureforemeasure,1603 Reveal,1,measureforemeasure,1603 wrongfully,1,measureforemeasure,1603 madly,1,measureforemeasure,1603 member,1,measureforemeasure,1603 Benefactors,1,measureforemeasure,1603 reproach,1,measureforemeasure,1603 base,1,measureforemeasure,1603 strikes,1,measureforemeasure,1603 parallel'd,1,measureforemeasure,1603 Cut,1,measureforemeasure,1603 extenuate,1,measureforemeasure,1603 countenanced,1,measureforemeasure,1603 deliver'd,1,measureforemeasure,1603 fate,1,measureforemeasure,1603 bane,1,measureforemeasure,1603 appointed,1,measureforemeasure,1603 slanderous,1,measureforemeasure,1603 observance,1,measureforemeasure,1603 hood,1,measureforemeasure,1603 hook,1,measureforemeasure,1603 definitive,1,measureforemeasure,1603 Visit,1,measureforemeasure,1603 tame,1,measureforemeasure,1603 weakness,1,measureforemeasure,1603 unlawfully,1,measureforemeasure,1603 lenity,1,measureforemeasure,1603 large,1,measureforemeasure,1603 Joint,1,measureforemeasure,1603 volumes,1,measureforemeasure,1603 drinks,1,measureforemeasure,1603 released,1,measureforemeasure,1603 shepherd,1,measureforemeasure,1603 soul's,1,measureforemeasure,1603 ache,1,measureforemeasure,1603 Partly,1,measureforemeasure,1603 coat,1,measureforemeasure,1603 constant,1,measureforemeasure,1603 unpeople,1,measureforemeasure,1603 fruitful,1,measureforemeasure,1603 deliberate,1,measureforemeasure,1603 stroke,1,measureforemeasure,1603 perish,1,measureforemeasure,1603 wild,1,measureforemeasure,1603 reproof,1,measureforemeasure,1603 Already,1,measureforemeasure,1603 rapier,1,measureforemeasure,1603 Rather,1,measureforemeasure,1603 alms,1,measureforemeasure,1603 greets,1,measureforemeasure,1603 wilt,1,measureforemeasure,1603 Worth,1,measureforemeasure,1603 recorded,1,measureforemeasure,1603 ought,1,measureforemeasure,1603 forbearance,1,measureforemeasure,1603 holds,1,measureforemeasure,1603 heading,1,measureforemeasure,1603 shore,1,measureforemeasure,1603 accident,1,measureforemeasure,1603 bethought,1,measureforemeasure,1603 bigger,1,measureforemeasure,1603 lecherous,1,measureforemeasure,1603 kersey,1,measureforemeasure,1603 Give't,1,measureforemeasure,1603 condemnation,1,measureforemeasure,1603 professed,1,measureforemeasure,1603 short,1,measureforemeasure,1603 virgins,1,measureforemeasure,1603 blasting,1,measureforemeasure,1603 portion,1,measureforemeasure,1603 dozen,1,measureforemeasure,1603 virginity,1,measureforemeasure,1603 temper'd,1,measureforemeasure,1603 greet,1,measureforemeasure,1603 proclaimed,1,measureforemeasure,1603 lackey,1,measureforemeasure,1603 kneaded,1,measureforemeasure,1603 Lives,1,measureforemeasure,1603 method,1,measureforemeasure,1603 Arise,1,measureforemeasure,1603 Although,1,measureforemeasure,1603 redeeming,1,measureforemeasure,1603 difficulties,1,measureforemeasure,1603 'Save,1,measureforemeasure,1603 paved,1,measureforemeasure,1603 assist,1,measureforemeasure,1603 leiger,1,measureforemeasure,1603 spirts,1,measureforemeasure,1603 presents,1,measureforemeasure,1603 Aves,1,measureforemeasure,1603 winter,1,measureforemeasure,1603 commonwealth,1,measureforemeasure,1603 encouragement,1,measureforemeasure,1603 Repent,1,measureforemeasure,1603 slanders,1,measureforemeasure,1603 seal,1,measureforemeasure,1603 bits,1,measureforemeasure,1603 Charges,1,measureforemeasure,1603 conjure,1,measureforemeasure,1603 building,1,measureforemeasure,1603 falsehood,1,measureforemeasure,1603 Forthlight,1,measureforemeasure,1603 scraped,1,measureforemeasure,1603 fornicatress,1,measureforemeasure,1603 goodman,1,measureforemeasure,1603 Pulls,1,measureforemeasure,1603 Intended,1,measureforemeasure,1603 DUKE'S,1,measureforemeasure,1603 also,1,measureforemeasure,1603 unpitied,1,measureforemeasure,1603 Hungary's,1,measureforemeasure,1603 satisfied,1,measureforemeasure,1603 unmeet,1,measureforemeasure,1603 hung,1,measureforemeasure,1603 seat,1,measureforemeasure,1603 lovely,1,measureforemeasure,1603 LUKE's,1,measureforemeasure,1603 hearty,1,measureforemeasure,1603 alone,1,measureforemeasure,1603 Trot,1,measureforemeasure,1603 Servile,1,measureforemeasure,1603 neglected,1,measureforemeasure,1603 inward,1,measureforemeasure,1603 bachelor,1,measureforemeasure,1603 fairer,1,measureforemeasure,1603 adieu,1,measureforemeasure,1603 examples,1,measureforemeasure,1603 low,1,measureforemeasure,1603 penitently,1,measureforemeasure,1603 sweat,1,measureforemeasure,1603 captain's,1,measureforemeasure,1603 remission,1,measureforemeasure,1603 captain,1,measureforemeasure,1603 palsied,1,measureforemeasure,1603 suits,1,measureforemeasure,1603 Expresseth,1,measureforemeasure,1603 baby,1,measureforemeasure,1603 dispossessing,1,measureforemeasure,1603 reckoning,1,measureforemeasure,1603 corn's,1,measureforemeasure,1603 Right,1,measureforemeasure,1603 deputation,1,measureforemeasure,1603 discredited,1,measureforemeasure,1603 stagger,1,measureforemeasure,1603 seed,1,measureforemeasure,1603 nerves,1,measureforemeasure,1603 Lie,1,measureforemeasure,1603 marvellous,1,measureforemeasure,1603 Ne'er,1,measureforemeasure,1603 science,1,measureforemeasure,1603 'twixt,1,measureforemeasure,1603 discretion,1,measureforemeasure,1603 camest,1,measureforemeasure,1603 values,1,measureforemeasure,1603 courtesy,1,measureforemeasure,1603 supposes,1,measureforemeasure,1603 pick'd,1,measureforemeasure,1603 avised,1,measureforemeasure,1603 drunken,1,measureforemeasure,1603 vessel,1,measureforemeasure,1603 tells,1,measureforemeasure,1603 condition,1,measureforemeasure,1603 vehement,1,measureforemeasure,1603 liking,1,measureforemeasure,1603 cost,1,measureforemeasure,1603 tithe's,1,measureforemeasure,1603 render,1,measureforemeasure,1603 Mine,1,measureforemeasure,1603 fellows,1,measureforemeasure,1603 prophecy,1,measureforemeasure,1603 kennel,1,measureforemeasure,1603 True,1,measureforemeasure,1603 crest,1,measureforemeasure,1603 perish'd,1,measureforemeasure,1603 Matters,1,measureforemeasure,1603 bared,1,measureforemeasure,1603 estimation,1,measureforemeasure,1603 Tapster,1,measureforemeasure,1603 vehemency,1,measureforemeasure,1603 replied,1,measureforemeasure,1603 Implore,1,measureforemeasure,1603 needless,1,measureforemeasure,1603 secrecy,1,measureforemeasure,1603 English,1,measureforemeasure,1603 changing,1,measureforemeasure,1603 increase,1,measureforemeasure,1603 cord,1,measureforemeasure,1603 heavenly,1,measureforemeasure,1603 dispense,1,measureforemeasure,1603 viewless,1,measureforemeasure,1603 Split'st,1,measureforemeasure,1603 avoid,1,measureforemeasure,1603 nights,1,measureforemeasure,1603 downright,1,measureforemeasure,1603 therein,1,measureforemeasure,1603 Through,1,measureforemeasure,1603 Julietta,1,measureforemeasure,1603 bait,1,measureforemeasure,1603 badness,1,measureforemeasure,1603 goad,1,measureforemeasure,1603 kindred,1,measureforemeasure,1603 Condemn'd,1,measureforemeasure,1603 tied,1,measureforemeasure,1603 dislike,1,measureforemeasure,1603 Send,1,measureforemeasure,1603 convent,1,measureforemeasure,1603 remove,1,measureforemeasure,1603 Freshly,1,measureforemeasure,1603 secure,1,measureforemeasure,1603 apartment,1,measureforemeasure,1603 gods,1,measureforemeasure,1603 fairly,1,measureforemeasure,1603 pose,1,measureforemeasure,1603 indirectly,1,measureforemeasure,1603 excellence,1,measureforemeasure,1603 overweigh,1,measureforemeasure,1603 sell,1,measureforemeasure,1603 unfolding,1,measureforemeasure,1603 floods,1,measureforemeasure,1603 dispenses,1,measureforemeasure,1603 Just,1,measureforemeasure,1603 millions,1,measureforemeasure,1603 aloud,1,measureforemeasure,1603 overheard,1,measureforemeasure,1603 Fields,1,measureforemeasure,1603 distracted,1,measureforemeasure,1603 whilst,1,measureforemeasure,1603 levity,1,measureforemeasure,1603 bald,1,measureforemeasure,1603 Next,1,measureforemeasure,1603 tick,1,measureforemeasure,1603 hollowly,1,measureforemeasure,1603 Neither,1,measureforemeasure,1603 grieves,1,measureforemeasure,1603 talk'd,1,measureforemeasure,1603 Admit,1,measureforemeasure,1603 unhurtful,1,measureforemeasure,1603 greeting,1,measureforemeasure,1603 winters,1,measureforemeasure,1603 Ignomy,1,measureforemeasure,1603 insensible,1,measureforemeasure,1603 match,1,measureforemeasure,1603 seizes,1,measureforemeasure,1603 ravin,1,measureforemeasure,1603 protest,1,measureforemeasure,1603 Elected,1,measureforemeasure,1603 afterward,1,measureforemeasure,1603 affair,1,measureforemeasure,1603 coin,1,measureforemeasure,1603 Seals,1,measureforemeasure,1603 constable's,1,measureforemeasure,1603 Judge,1,measureforemeasure,1603 uncleanliness,1,measureforemeasure,1603 chances,1,measureforemeasure,1603 Accuse,1,measureforemeasure,1603 triumph,1,measureforemeasure,1603 until,1,measureforemeasure,1603 Two,1,measureforemeasure,1603 parcel,1,measureforemeasure,1603 Hooking,1,measureforemeasure,1603 credulous,1,measureforemeasure,1603 brow,1,measureforemeasure,1603 lordship's,1,measureforemeasure,1603 givings,1,measureforemeasure,1603 unquestion'd,1,measureforemeasure,1603 choke,1,measureforemeasure,1603 foison,1,measureforemeasure,1603 effects,1,measureforemeasure,1603 Herself,1,measureforemeasure,1603 imagination,1,measureforemeasure,1603 Proceeded,1,measureforemeasure,1603 Repented,1,measureforemeasure,1603 petty,1,measureforemeasure,1603 mar,1,measureforemeasure,1603 stewed,1,measureforemeasure,1603 concernings,1,measureforemeasure,1603 sounder,1,measureforemeasure,1603 maw,1,measureforemeasure,1603 Isabel's,1,measureforemeasure,1603 sounded,1,measureforemeasure,1603 allied,1,measureforemeasure,1603 still'd,1,measureforemeasure,1603 pray'd,1,measureforemeasure,1603 thrifty,1,measureforemeasure,1603 'scape,1,measureforemeasure,1603 unlike,1,measureforemeasure,1603 future,1,measureforemeasure,1603 sufficiency,1,measureforemeasure,1603 rheum,1,measureforemeasure,1603 seldom,1,measureforemeasure,1603 consequence,1,measureforemeasure,1603 vices,1,measureforemeasure,1603 forced,1,measureforemeasure,1603 Marrying,1,measureforemeasure,1603 forted,1,measureforemeasure,1603 wring,1,measureforemeasure,1603 dread,1,measureforemeasure,1603 Finding,1,measureforemeasure,1603 dismiss'd,1,measureforemeasure,1603 Mitigation,1,measureforemeasure,1603 correction,1,measureforemeasure,1603 chosen,1,measureforemeasure,1603 Spirits,1,measureforemeasure,1603 censured,1,measureforemeasure,1603 travell'd,1,measureforemeasure,1603 glory,1,measureforemeasure,1603 Always,1,measureforemeasure,1603 readiness,1,measureforemeasure,1603 pull'd,1,measureforemeasure,1603 elbow,1,measureforemeasure,1603 extol,1,measureforemeasure,1603 geld,1,measureforemeasure,1603 antiquity,1,measureforemeasure,1603 determine,1,measureforemeasure,1603 swerve,1,measureforemeasure,1603 rested,1,measureforemeasure,1603 nuns,1,measureforemeasure,1603 graciously,1,measureforemeasure,1603 merciful,1,measureforemeasure,1603 limit,1,measureforemeasure,1603 Men,1,measureforemeasure,1603 Painting,1,measureforemeasure,1603 pressing,1,measureforemeasure,1603 thinking,1,measureforemeasure,1603 razure,1,measureforemeasure,1603 Faults,1,measureforemeasure,1603 baldpate,1,measureforemeasure,1603 uncleanness,1,measureforemeasure,1603 hastily,1,measureforemeasure,1603 eleven,1,measureforemeasure,1603 confess'd,1,measureforemeasure,1603 bellied,1,measureforemeasure,1603 belock'd,1,measureforemeasure,1603 disvalued,1,measureforemeasure,1603 liege,1,measureforemeasure,1603 strokes,1,measureforemeasure,1603 lion,1,measureforemeasure,1603 enjoying,1,measureforemeasure,1603 physic,1,measureforemeasure,1603 absolutely,1,measureforemeasure,1603 Indeed,1,measureforemeasure,1603 grains,1,measureforemeasure,1603 substitutes,1,measureforemeasure,1603 whiles,1,measureforemeasure,1603 telling,1,measureforemeasure,1603 dismiss,1,measureforemeasure,1603 sometimes,1,measureforemeasure,1603 doubleness,1,measureforemeasure,1603 untainted,1,measureforemeasure,1603 phrase,1,measureforemeasure,1603 revenges,1,measureforemeasure,1603 Crassus,1,measureforemeasure,1603 plucks,1,measureforemeasure,1603 flat,1,measureforemeasure,1603 infliction,1,measureforemeasure,1603 emmence,1,measureforemeasure,1603 fasting,1,measureforemeasure,1603 pious,1,measureforemeasure,1603 thither,1,measureforemeasure,1603 tenderness,1,measureforemeasure,1603 tub,1,measureforemeasure,1603 citizens,1,measureforemeasure,1603 brakes,1,measureforemeasure,1603 gravity,1,measureforemeasure,1603 tickle,1,measureforemeasure,1603 fitness,1,measureforemeasure,1603 warrant's,1,measureforemeasure,1603 compel,1,measureforemeasure,1603 throwing,1,measureforemeasure,1603 dishonour'd,1,measureforemeasure,1603 Reason,1,measureforemeasure,1603 besides,1,measureforemeasure,1603 violation,1,measureforemeasure,1603 jade,1,measureforemeasure,1603 knave's,1,measureforemeasure,1603 curfew,1,measureforemeasure,1603 Shooty,1,measureforemeasure,1603 Lent,1,measureforemeasure,1603 corners,1,measureforemeasure,1603 pelting,1,measureforemeasure,1603 Lend,1,measureforemeasure,1603 Commandments,1,measureforemeasure,1603 Philip,1,measureforemeasure,1603 entreaty,1,measureforemeasure,1603 ripen'd,1,measureforemeasure,1603 compell'd,1,measureforemeasure,1603 moe,1,measureforemeasure,1603 outstretch'd,1,measureforemeasure,1603 undertaking,1,measureforemeasure,1603 newness,1,measureforemeasure,1603 shrewd,1,measureforemeasure,1603 Death,1,measureforemeasure,1603 simple,1,measureforemeasure,1603 mouths,1,measureforemeasure,1603 forgiveness,1,measureforemeasure,1603 leads,1,measureforemeasure,1603 reply,1,measureforemeasure,1603 yesternight,1,measureforemeasure,1603 judges,1,measureforemeasure,1603 imposed,1,measureforemeasure,1603 employ,1,measureforemeasure,1603 therewithal,1,measureforemeasure,1603 wounding,1,measureforemeasure,1603 careless,1,measureforemeasure,1603 pattern,1,measureforemeasure,1603 stifle,1,measureforemeasure,1603 bran,1,measureforemeasure,1603 unprofitable,1,measureforemeasure,1603 essence,1,measureforemeasure,1603 instructions,1,measureforemeasure,1603 honour'd,1,measureforemeasure,1603 destined,1,measureforemeasure,1603 dart,1,measureforemeasure,1603 court'sy,1,measureforemeasure,1603 dare,1,measureforemeasure,1603 Falls,1,measureforemeasure,1603 novice,1,measureforemeasure,1603 Whip,1,measureforemeasure,1603 sulphurous,1,measureforemeasure,1603 impudence,1,measureforemeasure,1603 Die,1,measureforemeasure,1603 cracking,1,measureforemeasure,1603 weight,1,measureforemeasure,1603 sudden,1,measureforemeasure,1603 catch,1,measureforemeasure,1603 lawless,1,measureforemeasure,1603 longest,1,measureforemeasure,1603 privily,1,measureforemeasure,1603 commissions,1,measureforemeasure,1603 unskilfully,1,measureforemeasure,1603 humbles,1,measureforemeasure,1603 precept,1,measureforemeasure,1603 injurious,1,measureforemeasure,1603 dry,1,measureforemeasure,1603 bred,1,measureforemeasure,1603 withdrawing,1,measureforemeasure,1603 'her,1,measureforemeasure,1603 swallowed,1,measureforemeasure,1603 clutch'd,1,measureforemeasure,1603 admonition,1,measureforemeasure,1603 DRAMATIS,1,measureforemeasure,1603 whores,1,measureforemeasure,1603 Until,1,measureforemeasure,1603 success,1,measureforemeasure,1603 sinister,1,measureforemeasure,1603 garlic,1,measureforemeasure,1603 shake,1,measureforemeasure,1603 Teach,1,measureforemeasure,1603 Mum,1,measureforemeasure,1603 finish'd,1,measureforemeasure,1603 undergo,1,measureforemeasure,1603 Thereon,1,measureforemeasure,1603 flower,1,measureforemeasure,1603 Desires,1,measureforemeasure,1603 Too,1,measureforemeasure,1603 frankly,1,measureforemeasure,1603 Left,1,measureforemeasure,1603 fellowships,1,measureforemeasure,1603 flows,1,measureforemeasure,1603 tempt,1,measureforemeasure,1603 obedient,1,measureforemeasure,1603 record,1,measureforemeasure,1603 he'ld,1,measureforemeasure,1603 creditors,1,measureforemeasure,1603 smell,1,measureforemeasure,1603 consenting,1,measureforemeasure,1603 stings,1,measureforemeasure,1603 shill,1,measureforemeasure,1603 dwelling,1,measureforemeasure,1603 possessions,1,measureforemeasure,1603 scaled,1,measureforemeasure,1603 smelt,1,measureforemeasure,1603 rustle,1,measureforemeasure,1603 corporal,1,measureforemeasure,1603 blaspheme,1,measureforemeasure,1603 teeming,1,measureforemeasure,1603 take't,1,measureforemeasure,1603 blasphemy,1,measureforemeasure,1603 mutual,1,measureforemeasure,1603 soundly,1,measureforemeasure,1603 deflower'd,1,measureforemeasure,1603 whoremaster,1,measureforemeasure,1603 injunctions,1,measureforemeasure,1603 kill,1,measureforemeasure,1603 justly,1,measureforemeasure,1603 adjudged,1,measureforemeasure,1603 scarecrow,1,measureforemeasure,1603 tack,1,measureforemeasure,1603 repair,1,measureforemeasure,1603 solemnity,1,measureforemeasure,1603 breathe,1,measureforemeasure,1603 obedience,1,measureforemeasure,1603 oaths,1,measureforemeasure,1603 bids,1,measureforemeasure,1603 Deputy,1,measureforemeasure,1603 shape,1,measureforemeasure,1603 properties,1,measureforemeasure,1603 Bound,1,measureforemeasure,1603 Lechery,1,measureforemeasure,1603 dressings,1,measureforemeasure,1603 Words,1,measureforemeasure,1603 perhaps,1,measureforemeasure,1603 privately,1,measureforemeasure,1603 Grown,1,measureforemeasure,1603 selves,1,measureforemeasure,1603 Unfold,1,measureforemeasure,1603 share,1,measureforemeasure,1603 Correction,1,measureforemeasure,1603 forenamed,1,measureforemeasure,1603 enemy,1,measureforemeasure,1603 remissness,1,measureforemeasure,1603 degrees,1,measureforemeasure,1603 ending,1,measureforemeasure,1603 sway,1,measureforemeasure,1603 Bidding,1,measureforemeasure,1603 Maiden,1,measureforemeasure,1603 forfeits,2,measureforemeasure,1603 V,2,measureforemeasure,1603 advised,2,measureforemeasure,1603 Stands,2,measureforemeasure,1603 Prove,2,measureforemeasure,1603 profanation,2,measureforemeasure,1603 composition,2,measureforemeasure,1603 Hear,2,measureforemeasure,1603 double,2,measureforemeasure,1603 forswear,2,measureforemeasure,1603 wish'd,2,measureforemeasure,1603 honours,2,measureforemeasure,1603 help,2,measureforemeasure,1603 bones,2,measureforemeasure,1603 mend,2,measureforemeasure,1603 publicly,2,measureforemeasure,1603 sainted,2,measureforemeasure,1603 express,2,measureforemeasure,1603 jot,2,measureforemeasure,1603 held,2,measureforemeasure,1603 hell,2,measureforemeasure,1603 Stay,2,measureforemeasure,1603 pardon'd,2,measureforemeasure,1603 mere,2,measureforemeasure,1603 Citizens,2,measureforemeasure,1603 while,2,measureforemeasure,1603 Help,2,measureforemeasure,1603 tears,2,measureforemeasure,1603 countermand,2,measureforemeasure,1603 appeal,2,measureforemeasure,1603 prey,2,measureforemeasure,1603 sort,2,measureforemeasure,1603 lies,2,measureforemeasure,1603 contrary,2,measureforemeasure,1603 lief,2,measureforemeasure,1603 scruple,2,measureforemeasure,1603 tyrannous,2,measureforemeasure,1603 demand,2,measureforemeasure,1603 agreed,2,measureforemeasure,1603 spare,2,measureforemeasure,1603 saved,2,measureforemeasure,1603 case,2,measureforemeasure,1603 pursue,2,measureforemeasure,1603 affianced,2,measureforemeasure,1603 soon,2,measureforemeasure,1603 charge,2,measureforemeasure,1603 giant,2,measureforemeasure,1603 instructed,2,measureforemeasure,1603 amazed,2,measureforemeasure,1603 After,2,measureforemeasure,1603 line,2,measureforemeasure,1603 Jove,2,measureforemeasure,1603 highness,2,measureforemeasure,1603 resolve,2,measureforemeasure,1603 thou'rt,2,measureforemeasure,1603 horror,2,measureforemeasure,1603 Mercy,2,measureforemeasure,1603 subjects,2,measureforemeasure,1603 concerns,2,measureforemeasure,1603 heat,2,measureforemeasure,1603 function,2,measureforemeasure,1603 toward,2,measureforemeasure,1603 apprehends,2,measureforemeasure,1603 paper,2,measureforemeasure,1603 complexion,2,measureforemeasure,1603 riches,2,measureforemeasure,1603 blessed,2,measureforemeasure,1603 partner,2,measureforemeasure,1603 view,2,measureforemeasure,1603 moated,2,measureforemeasure,1603 plucked,2,measureforemeasure,1603 six,2,measureforemeasure,1603 hereafter,2,measureforemeasure,1603 shy,2,measureforemeasure,1603 sit,2,measureforemeasure,1603 speeches,2,measureforemeasure,1603 returned,2,measureforemeasure,1603 aged,2,measureforemeasure,1603 paying,2,measureforemeasure,1603 key,2,measureforemeasure,1603 ourself,2,measureforemeasure,1603 whipping,2,measureforemeasure,1603 deceit,2,measureforemeasure,1603 nine,2,measureforemeasure,1603 actor,2,measureforemeasure,1603 son,2,measureforemeasure,1603 abuses,2,measureforemeasure,1603 murderer,2,measureforemeasure,1603 sworn,2,measureforemeasure,1603 livery,2,measureforemeasure,1603 Mariana's,2,measureforemeasure,1603 instruct,2,measureforemeasure,1603 doubt,2,measureforemeasure,1603 mother,2,measureforemeasure,1603 Attendants,2,measureforemeasure,1603 affect,2,measureforemeasure,1603 amiss,2,measureforemeasure,1603 thieves,2,measureforemeasure,1603 'Bless,2,measureforemeasure,1603 skins,2,measureforemeasure,1603 These,2,measureforemeasure,1603 piece,2,measureforemeasure,1603 ways,2,measureforemeasure,1603 calumny,2,measureforemeasure,1603 figure,2,measureforemeasure,1603 terms,2,measureforemeasure,1603 encounter,2,measureforemeasure,1603 Hannibal,2,measureforemeasure,1603 bribe,2,measureforemeasure,1603 Wherein,2,measureforemeasure,1603 thence,2,measureforemeasure,1603 companion,2,measureforemeasure,1603 above,2,measureforemeasure,1603 punish,2,measureforemeasure,1603 relish,2,measureforemeasure,1603 saucy,2,measureforemeasure,1603 sword,2,measureforemeasure,1603 corrupt,2,measureforemeasure,1603 ancient,2,measureforemeasure,1603 rude,2,measureforemeasure,1603 ward,2,measureforemeasure,1603 tax,2,measureforemeasure,1603 language,2,measureforemeasure,1603 Street,2,measureforemeasure,1603 Dare,2,measureforemeasure,1603 stead,2,measureforemeasure,1603 access,2,measureforemeasure,1603 Troth,2,measureforemeasure,1603 bold,2,measureforemeasure,1603 custom,2,measureforemeasure,1603 devil's,2,measureforemeasure,1603 seem'd,2,measureforemeasure,1603 warm,2,measureforemeasure,1603 merely,2,measureforemeasure,1603 wast,2,measureforemeasure,1603 suborn'd,2,measureforemeasure,1603 French,2,measureforemeasure,1603 colour,2,measureforemeasure,1603 bitter,2,measureforemeasure,1603 sick,2,measureforemeasure,1603 big,2,measureforemeasure,1603 Elbow's,2,measureforemeasure,1603 stir,2,measureforemeasure,1603 burning,2,measureforemeasure,1603 statutes,2,measureforemeasure,1603 mortality,2,measureforemeasure,1603 utter,2,measureforemeasure,1603 wronged,2,measureforemeasure,1603 scarce,2,measureforemeasure,1603 chaste,2,measureforemeasure,1603 guiltiness,2,measureforemeasure,1603 Becomes,2,measureforemeasure,1603 smile,2,measureforemeasure,1603 Having,2,measureforemeasure,1603 Nature,2,measureforemeasure,1603 inclined,2,measureforemeasure,1603 scurvy,2,measureforemeasure,1603 Stand,2,measureforemeasure,1603 treble,2,measureforemeasure,1603 denies,2,measureforemeasure,1603 kept,2,measureforemeasure,1603 Answer,2,measureforemeasure,1603 fantastic,2,measureforemeasure,1603 hid,2,measureforemeasure,1603 medicine,2,measureforemeasure,1603 Ho,2,measureforemeasure,1603 meant,2,measureforemeasure,1603 strangely,2,measureforemeasure,1603 arrest,2,measureforemeasure,1603 Let's,2,measureforemeasure,1603 condemned,2,measureforemeasure,1603 Has,2,measureforemeasure,1603 pox,2,measureforemeasure,1603 heads,2,measureforemeasure,1603 begot,2,measureforemeasure,1603 whore,2,measureforemeasure,1603 valiant,2,measureforemeasure,1603 weep,2,measureforemeasure,1603 metal,2,measureforemeasure,1603 sooner,2,measureforemeasure,1603 imagine,2,measureforemeasure,1603 Sith,2,measureforemeasure,1603 sincerity,2,measureforemeasure,1603 somewhat,2,measureforemeasure,1603 Save,2,measureforemeasure,1603 wear,2,measureforemeasure,1603 Saint,2,measureforemeasure,1603 Put,2,measureforemeasure,1603 probation,2,measureforemeasure,1603 twice,2,measureforemeasure,1603 farewell,2,measureforemeasure,1603 eaten,2,measureforemeasure,1603 tedious,2,measureforemeasure,1603 despite,2,measureforemeasure,1603 vows,2,measureforemeasure,1603 worship's,2,measureforemeasure,1603 buy,2,measureforemeasure,1603 gown,2,measureforemeasure,1603 divine,2,measureforemeasure,1603 sins,2,measureforemeasure,1603 pains,2,measureforemeasure,1603 immortal,2,measureforemeasure,1603 importune,2,measureforemeasure,1603 begin,2,measureforemeasure,1603 deliverance,2,measureforemeasure,1603 story,2,measureforemeasure,1603 virgin,2,measureforemeasure,1603 deep,2,measureforemeasure,1603 image,2,measureforemeasure,1603 promises,2,measureforemeasure,1603 air,2,measureforemeasure,1603 yea,2,measureforemeasure,1603 satisfy,2,measureforemeasure,1603 servant,2,measureforemeasure,1603 stood,2,measureforemeasure,1603 beat,2,measureforemeasure,1603 debt,2,measureforemeasure,1603 Making,2,measureforemeasure,1603 stoop,2,measureforemeasure,1603 whereon,2,measureforemeasure,1603 enforce,2,measureforemeasure,1603 comforts,2,measureforemeasure,1603 newly,2,measureforemeasure,1603 wench,2,measureforemeasure,1603 feast,2,measureforemeasure,1603 approbation,2,measureforemeasure,1603 banish,2,measureforemeasure,1603 sometime,2,measureforemeasure,1603 Overdone's,2,measureforemeasure,1603 age,2,measureforemeasure,1603 crimes,2,measureforemeasure,1603 hadst,2,measureforemeasure,1603 offences,2,measureforemeasure,1603 loved,2,measureforemeasure,1603 apparel,2,measureforemeasure,1603 twenty,2,measureforemeasure,1603 removed,2,measureforemeasure,1603 journey,2,measureforemeasure,1603 benefactors,2,measureforemeasure,1603 natures,2,measureforemeasure,1603 Because,2,measureforemeasure,1603 hot,2,measureforemeasure,1603 hark,2,measureforemeasure,1603 brought,2,measureforemeasure,1603 punk,2,measureforemeasure,1603 tempted,2,measureforemeasure,1603 discourse,2,measureforemeasure,1603 axe,2,measureforemeasure,1603 keen,2,measureforemeasure,1603 Russia,2,measureforemeasure,1603 fowl,2,measureforemeasure,1603 Happy,2,measureforemeasure,1603 call'd,2,measureforemeasure,1603 appears,2,measureforemeasure,1603 deny,2,measureforemeasure,1603 plain,2,measureforemeasure,1603 confession,2,measureforemeasure,1603 perpetual,2,measureforemeasure,1603 excuse,2,measureforemeasure,1603 governor,2,measureforemeasure,1603 whether,2,measureforemeasure,1603 midnight,2,measureforemeasure,1603 She's,2,measureforemeasure,1603 form,2,measureforemeasure,1603 abhor,2,measureforemeasure,1603 Commend,2,measureforemeasure,1603 paid,2,measureforemeasure,1603 diest,2,measureforemeasure,1603 money,2,measureforemeasure,1603 mock,2,measureforemeasure,1603 apt,2,measureforemeasure,1603 forsworn,2,measureforemeasure,1603 stones,2,measureforemeasure,1603 fear'd,2,measureforemeasure,1603 dreadful,2,measureforemeasure,1603 rogue,2,measureforemeasure,1603 puts,2,measureforemeasure,1603 petitions,2,measureforemeasure,1603 chastity,2,measureforemeasure,1603 faithful,2,measureforemeasure,1603 tyranny,2,measureforemeasure,1603 saints,2,measureforemeasure,1603 testimony,2,measureforemeasure,1603 ass,2,measureforemeasure,1603 dishonest,2,measureforemeasure,1603 forms,2,measureforemeasure,1603 ghostly,2,measureforemeasure,1603 King,2,measureforemeasure,1603 Hark,2,measureforemeasure,1603 purchased,2,measureforemeasure,1603 broke,2,measureforemeasure,1603 far,2,measureforemeasure,1603 keeps,2,measureforemeasure,1603 requital,2,measureforemeasure,1603 reported,2,measureforemeasure,1603 Canst,2,measureforemeasure,1603 silence,2,measureforemeasure,1603 water,2,measureforemeasure,1603 faith,2,measureforemeasure,1603 envy,2,measureforemeasure,1603 beast,2,measureforemeasure,1603 eye,2,measureforemeasure,1603 grange,2,measureforemeasure,1603 beats,2,measureforemeasure,1603 entertainment,2,measureforemeasure,1603 rash,2,measureforemeasure,1603 bears,2,measureforemeasure,1603 beard,2,measureforemeasure,1603 pregnant,2,measureforemeasure,1603 mock'd,2,measureforemeasure,1603 strike,2,measureforemeasure,1603 affections,2,measureforemeasure,1603 unhappy,2,measureforemeasure,1603 several,2,measureforemeasure,1603 Peter,2,measureforemeasure,1603 Thyself,2,measureforemeasure,1603 Will't,2,measureforemeasure,1603 injustice,2,measureforemeasure,1603 appointment,2,measureforemeasure,1603 high,2,measureforemeasure,1603 mortal,2,measureforemeasure,1603 fantastical,2,measureforemeasure,1603 wiser,2,measureforemeasure,1603 shield,2,measureforemeasure,1603 wrought,2,measureforemeasure,1603 nursed,2,measureforemeasure,1603 dowry,2,measureforemeasure,1603 celerity,2,measureforemeasure,1603 'gainst,2,measureforemeasure,1603 friar's,2,measureforemeasure,1603 dream,2,measureforemeasure,1603 temptation,2,measureforemeasure,1603 labour,2,measureforemeasure,1603 warranted,2,measureforemeasure,1603 accusation,2,measureforemeasure,1603 sayest,2,measureforemeasure,1603 Giving,2,measureforemeasure,1603 firm,2,measureforemeasure,1603 o'clock,2,measureforemeasure,1603 desired,2,measureforemeasure,1603 arrested,2,measureforemeasure,1603 Nine,2,measureforemeasure,1603 affairs,2,measureforemeasure,1603 opinion,2,measureforemeasure,1603 Frederick,2,measureforemeasure,1603 fits,2,measureforemeasure,1603 throw,2,measureforemeasure,1603 Twice,2,measureforemeasure,1603 win,2,measureforemeasure,1603 We'll,2,measureforemeasure,1603 hateful,2,measureforemeasure,1603 redemption,2,measureforemeasure,1603 sorrow,2,measureforemeasure,1603 break,2,measureforemeasure,1603 bread,2,measureforemeasure,1603 creation,2,measureforemeasure,1603 manifest,2,measureforemeasure,1603 abstinence,2,measureforemeasure,1603 frailty,2,measureforemeasure,1603 Dear,2,measureforemeasure,1603 relent,2,measureforemeasure,1603 vouch,2,measureforemeasure,1603 death's,2,measureforemeasure,1603 you're,2,measureforemeasure,1603 integrity,2,measureforemeasure,1603 continuance,2,measureforemeasure,1603 patiently,2,measureforemeasure,1603 speedily,2,measureforemeasure,1603 vow'd,2,measureforemeasure,1603 stick,2,measureforemeasure,1603 war,2,measureforemeasure,1603 arms,2,measureforemeasure,1603 nuptial,2,measureforemeasure,1603 sufferance,2,measureforemeasure,1603 danger,2,measureforemeasure,1603 admitted,2,measureforemeasure,1603 peradventure,2,measureforemeasure,1603 pounds,2,measureforemeasure,1603 notice,2,measureforemeasure,1603 ginger,2,measureforemeasure,1603 grossly,2,measureforemeasure,1603 fact,2,measureforemeasure,1603 ransom,2,measureforemeasure,1603 earthly,2,measureforemeasure,1603 Hail,2,measureforemeasure,1603 angel,2,measureforemeasure,1603 lechery,2,measureforemeasure,1603 owe,2,measureforemeasure,1603 supply,2,measureforemeasure,1603 farther,2,measureforemeasure,1603 determined,2,measureforemeasure,1603 marble,2,measureforemeasure,1603 fox,2,measureforemeasure,1603 hundred,2,measureforemeasure,1603 angry,2,measureforemeasure,1603 falling,2,measureforemeasure,1603 fail,2,measureforemeasure,1603 Show,2,measureforemeasure,1603 Notice,2,measureforemeasure,1603 Many,2,measureforemeasure,1603 diseases,2,measureforemeasure,1603 modesty,2,measureforemeasure,1603 stolen,2,measureforemeasure,1603 grant,2,measureforemeasure,1603 darkly,2,measureforemeasure,1603 truths,2,measureforemeasure,1603 pleased,2,measureforemeasure,1603 worn,2,measureforemeasure,1603 palace,2,measureforemeasure,1603 allow,2,measureforemeasure,1603 unjust,2,measureforemeasure,1603 perfect,2,measureforemeasure,1603 lists,2,measureforemeasure,1603 wishing,2,measureforemeasure,1603 particular,2,measureforemeasure,1603 lordship,2,measureforemeasure,1603 ta'en,2,measureforemeasure,1603 shows,2,measureforemeasure,1603 unfold,2,measureforemeasure,1603 an't,2,measureforemeasure,1603 depart,2,measureforemeasure,1603 partly,2,measureforemeasure,1603 POMPHEY,2,measureforemeasure,1603 qualify,2,measureforemeasure,1603 names,2,measureforemeasure,1603 trumpets,2,measureforemeasure,1603 Welcome,2,measureforemeasure,1603 tale,2,measureforemeasure,1603 Caesar,2,measureforemeasure,1603 gentlemen,2,measureforemeasure,1603 sufficient,2,measureforemeasure,1603 Every,2,measureforemeasure,1603 quit,2,measureforemeasure,1603 Lay,2,measureforemeasure,1603 professes,2,measureforemeasure,1603 hollow,2,measureforemeasure,1603 follows,2,measureforemeasure,1603 condemn,2,measureforemeasure,1603 monastery,2,measureforemeasure,1603 lives,2,measureforemeasure,1603 Where's,2,measureforemeasure,1603 resolution,2,measureforemeasure,1603 virtues,2,measureforemeasure,1603 fitter,2,measureforemeasure,1603 gives,2,measureforemeasure,1603 profits,2,measureforemeasure,1603 fitted,2,measureforemeasure,1603 along,2,measureforemeasure,1603 furred,2,measureforemeasure,1603 lying,2,measureforemeasure,1603 contents,2,measureforemeasure,1603 nineteen,2,measureforemeasure,1603 knowest,2,measureforemeasure,1603 troth,2,measureforemeasure,1603 presence,2,measureforemeasure,1603 feeling,2,measureforemeasure,1603 Hallowmas,2,measureforemeasure,1603 supposed,2,measureforemeasure,1603 unkindness,2,measureforemeasure,1603 look'd,2,measureforemeasure,1603 sweet,2,measureforemeasure,1603 pirate,2,measureforemeasure,1603 sacred,2,measureforemeasure,1603 cry,2,measureforemeasure,1603 Haste,2,measureforemeasure,1603 Know,2,measureforemeasure,1603 hours,2,measureforemeasure,1603 warrants,2,measureforemeasure,1603 believed,2,measureforemeasure,1603 led,2,measureforemeasure,1603 allowed,2,measureforemeasure,1603 alas,2,measureforemeasure,1603 nurse,2,measureforemeasure,1603 betrothed,2,measureforemeasure,1603 fearing,2,measureforemeasure,1603 season,2,measureforemeasure,1603 lie,2,measureforemeasure,1603 sealed,2,measureforemeasure,1603 licence,2,measureforemeasure,1603 Nothing,2,measureforemeasure,1603 persuade,2,measureforemeasure,1603 suitor,2,measureforemeasure,1603 eat,2,measureforemeasure,1603 reprieve,2,measureforemeasure,1603 honesty,2,measureforemeasure,1603 spirits,2,measureforemeasure,1603 imports,2,measureforemeasure,1603 abroad,2,measureforemeasure,1603 doing,2,measureforemeasure,1603 prenzie,2,measureforemeasure,1603 dealing,2,measureforemeasure,1603 Does,2,measureforemeasure,1603 evils,2,measureforemeasure,1603 street,2,measureforemeasure,1603 Since,2,measureforemeasure,1603 pleasant,2,measureforemeasure,1603 whip,2,measureforemeasure,1603 thoughts,2,measureforemeasure,1603 Great,2,measureforemeasure,1603 biting,2,measureforemeasure,1603 bethink,2,measureforemeasure,1603 punishment,2,measureforemeasure,1603 Varrius,2,measureforemeasure,1603 withdraw,2,measureforemeasure,1603 Amen,2,measureforemeasure,1603 credit,2,measureforemeasure,1603 muffled,2,measureforemeasure,1603 severally,2,measureforemeasure,1603 recompense,2,measureforemeasure,1603 list,2,measureforemeasure,1603 corruption,2,measureforemeasure,1603 provide,2,measureforemeasure,1603 Lest,2,measureforemeasure,1603 weigh,2,measureforemeasure,1603 frame,2,measureforemeasure,1603 inquired,2,measureforemeasure,1603 top,2,measureforemeasure,1603 liest,2,measureforemeasure,1603 lamb,2,measureforemeasure,1603 instantly,2,measureforemeasure,1603 Bring,2,measureforemeasure,1603 filthy,2,measureforemeasure,1603 behold,2,measureforemeasure,1603 without,2,measureforemeasure,1603 greatness,2,measureforemeasure,1603 Kneeling,2,measureforemeasure,1603 cross,2,measureforemeasure,1603 private,2,measureforemeasure,1603 tainted,2,measureforemeasure,1603 remorse,2,measureforemeasure,1603 tread,2,measureforemeasure,1603 crown,2,measureforemeasure,1603 wouldst,2,measureforemeasure,1603 durance,2,measureforemeasure,1603 sharp,2,measureforemeasure,1603 remembered,2,measureforemeasure,1603 days,3,measureforemeasure,1603 motion,3,measureforemeasure,1603 for't,3,measureforemeasure,1603 writ,3,measureforemeasure,1603 woman's,3,measureforemeasure,1603 advantage,3,measureforemeasure,1603 lawful,3,measureforemeasure,1603 brown,3,measureforemeasure,1603 Whether,3,measureforemeasure,1603 offended,3,measureforemeasure,1603 rascal,3,measureforemeasure,1603 Will,3,measureforemeasure,1603 spake,3,measureforemeasure,1603 Either,3,measureforemeasure,1603 sight,3,measureforemeasure,1603 prosperous,3,measureforemeasure,1603 slander,3,measureforemeasure,1603 understand,3,measureforemeasure,1603 withal,3,measureforemeasure,1603 run,3,measureforemeasure,1603 absolute,3,measureforemeasure,1603 trust,3,measureforemeasure,1603 attempt,3,measureforemeasure,1603 Once,3,measureforemeasure,1603 strength,3,measureforemeasure,1603 jest,3,measureforemeasure,1603 draw,3,measureforemeasure,1603 suburbs,3,measureforemeasure,1603 Only,3,measureforemeasure,1603 gross,3,measureforemeasure,1603 fools,3,measureforemeasure,1603 noise,3,measureforemeasure,1603 visit,3,measureforemeasure,1603 further,3,measureforemeasure,1603 impossible,3,measureforemeasure,1603 walk,3,measureforemeasure,1603 merry,3,measureforemeasure,1603 deceived,3,measureforemeasure,1603 'twas,3,measureforemeasure,1603 peril,3,measureforemeasure,1603 Was,3,measureforemeasure,1603 Their,3,measureforemeasure,1603 acquainted,3,measureforemeasure,1603 Thanks,3,measureforemeasure,1603 confessor,3,measureforemeasure,1603 read,3,measureforemeasure,1603 worst,3,measureforemeasure,1603 vineyard,3,measureforemeasure,1603 received,3,measureforemeasure,1603 absence,3,measureforemeasure,1603 Angelo's,3,measureforemeasure,1603 sun,3,measureforemeasure,1603 fearful,3,measureforemeasure,1603 humbly,3,measureforemeasure,1603 grow,3,measureforemeasure,1603 putting,3,measureforemeasure,1603 prunes,3,measureforemeasure,1603 executioner,3,measureforemeasure,1603 knees,3,measureforemeasure,1603 damnable,3,measureforemeasure,1603 Please,3,measureforemeasure,1603 steal,3,measureforemeasure,1603 dies,3,measureforemeasure,1603 pretty,3,measureforemeasure,1603 cunning,3,measureforemeasure,1603 deserves,3,measureforemeasure,1603 precise,3,measureforemeasure,1603 Hold,3,measureforemeasure,1603 drinking,3,measureforemeasure,1603 An,3,measureforemeasure,1603 patience,3,measureforemeasure,1603 deeds,3,measureforemeasure,1603 belike,3,measureforemeasure,1603 On,3,measureforemeasure,1603 Proclaim,3,measureforemeasure,1603 Ha,3,measureforemeasure,1603 beg,3,measureforemeasure,1603 notorious,3,measureforemeasure,1603 surely,3,measureforemeasure,1603 quick,3,measureforemeasure,1603 pin,3,measureforemeasure,1603 Is't,3,measureforemeasure,1603 Thou'rt,3,measureforemeasure,1603 sorry,3,measureforemeasure,1603 behind,3,measureforemeasure,1603 got,3,measureforemeasure,1603 piled,3,measureforemeasure,1603 persuasion,3,measureforemeasure,1603 swift,3,measureforemeasure,1603 longer,3,measureforemeasure,1603 vantage,3,measureforemeasure,1603 Overdone,3,measureforemeasure,1603 government,3,measureforemeasure,1603 breath,3,measureforemeasure,1603 forgive,3,measureforemeasure,1603 tyrant,3,measureforemeasure,1603 favour,3,measureforemeasure,1603 safe,3,measureforemeasure,1603 Besides,3,measureforemeasure,1603 lend,3,measureforemeasure,1603 redress,3,measureforemeasure,1603 gall,3,measureforemeasure,1603 accused,3,measureforemeasure,1603 ice,3,measureforemeasure,1603 speed,3,measureforemeasure,1603 gentlewoman,3,measureforemeasure,1603 manner,3,measureforemeasure,1603 thyself,3,measureforemeasure,1603 committed,3,measureforemeasure,1603 abide,3,measureforemeasure,1603 loud,3,measureforemeasure,1603 loss,3,measureforemeasure,1603 afternoon,3,measureforemeasure,1603 greater,3,measureforemeasure,1603 easy,3,measureforemeasure,1603 half,3,measureforemeasure,1603 round,3,measureforemeasure,1603 welcome,3,measureforemeasure,1603 Knocking,3,measureforemeasure,1603 natural,3,measureforemeasure,1603 draws,3,measureforemeasure,1603 open,3,measureforemeasure,1603 Under,3,measureforemeasure,1603 alive,3,measureforemeasure,1603 Attendant,3,measureforemeasure,1603 secret,3,measureforemeasure,1603 chance,3,measureforemeasure,1603 few,3,measureforemeasure,1603 Ragozine,3,measureforemeasure,1603 longing,3,measureforemeasure,1603 trial,3,measureforemeasure,1603 willingly,3,measureforemeasure,1603 Art,3,measureforemeasure,1603 often,3,measureforemeasure,1603 Madam,3,measureforemeasure,1603 Lords,3,measureforemeasure,1603 smallest,3,measureforemeasure,1603 nose,3,measureforemeasure,1603 proceed,3,measureforemeasure,1603 occupation,3,measureforemeasure,1603 tender,3,measureforemeasure,1603 hide,3,measureforemeasure,1603 dukes,3,measureforemeasure,1603 Love,3,measureforemeasure,1603 visage,3,measureforemeasure,1603 fornication,3,measureforemeasure,1603 Dost,3,measureforemeasure,1603 See,3,measureforemeasure,1603 general,3,measureforemeasure,1603 effect,3,measureforemeasure,1603 strict,3,measureforemeasure,1603 foolish,3,measureforemeasure,1603 beggar,3,measureforemeasure,1603 presently,3,measureforemeasure,1603 coward,3,measureforemeasure,1603 I'ld,3,measureforemeasure,1603 woe,3,measureforemeasure,1603 because,3,measureforemeasure,1603 gates,3,measureforemeasure,1603 Being,3,measureforemeasure,1603 close,3,measureforemeasure,1603 maids,3,measureforemeasure,1603 VARRIUS,3,measureforemeasure,1603 grave,3,measureforemeasure,1603 example,3,measureforemeasure,1603 says,3,measureforemeasure,1603 detest,3,measureforemeasure,1603 heavy,3,measureforemeasure,1603 intent,3,measureforemeasure,1603 oath,3,measureforemeasure,1603 complain,3,measureforemeasure,1603 next,3,measureforemeasure,1603 pence,3,measureforemeasure,1603 penitent,3,measureforemeasure,1603 disposition,3,measureforemeasure,1603 consent,3,measureforemeasure,1603 waste,3,measureforemeasure,1603 whence,3,measureforemeasure,1603 minister,3,measureforemeasure,1603 ground,3,measureforemeasure,1603 character,3,measureforemeasure,1603 ANGELO's,3,measureforemeasure,1603 rack,3,measureforemeasure,1603 work,3,measureforemeasure,1603 letter,3,measureforemeasure,1603 discover,3,measureforemeasure,1603 Sweet,3,measureforemeasure,1603 fine,3,measureforemeasure,1603 vow,3,measureforemeasure,1603 rich,3,measureforemeasure,1603 safety,3,measureforemeasure,1603 ne'er,3,measureforemeasure,1603 thunder,3,measureforemeasure,1603 herself,3,measureforemeasure,1603 perceive,3,measureforemeasure,1603 censure,3,measureforemeasure,1603 public,3,measureforemeasure,1603 Very,3,measureforemeasure,1603 fare,3,measureforemeasure,1603 talk,3,measureforemeasure,1603 entering,3,measureforemeasure,1603 getting,3,measureforemeasure,1603 clear,3,measureforemeasure,1603 dishes,3,measureforemeasure,1603 strong,3,measureforemeasure,1603 commission,3,measureforemeasure,1603 always,3,measureforemeasure,1603 fault's,3,measureforemeasure,1603 we'll,3,measureforemeasure,1603 Believe,3,measureforemeasure,1603 Gentlemen,3,measureforemeasure,1603 wretched,3,measureforemeasure,1603 prayer,3,measureforemeasure,1603 according,3,measureforemeasure,1603 mad,3,measureforemeasure,1603 write,3,measureforemeasure,1603 Another,3,measureforemeasure,1603 straight,3,measureforemeasure,1603 remember,3,measureforemeasure,1603 met,3,measureforemeasure,1603 manifested,3,measureforemeasure,1603 Before,3,measureforemeasure,1603 abuse,3,measureforemeasure,1603 pernicious,3,measureforemeasure,1603 terror,3,measureforemeasure,1603 fever,3,measureforemeasure,1603 betimes,3,measureforemeasure,1603 appetite,3,measureforemeasure,1603 try,3,measureforemeasure,1603 respect,3,measureforemeasure,1603 attend,3,measureforemeasure,1603 substitute,3,measureforemeasure,1603 dark,3,measureforemeasure,1603 honour's,3,measureforemeasure,1603 follow,3,measureforemeasure,1603 perchance,3,measureforemeasure,1603 due,3,measureforemeasure,1603 dispatch,3,measureforemeasure,1603 tie,3,measureforemeasure,1603 shalt,3,measureforemeasure,1603 frail,3,measureforemeasure,1603 Abhorson,3,measureforemeasure,1603 king,3,measureforemeasure,1603 slip,3,measureforemeasure,1603 awake,3,measureforemeasure,1603 sisterhood,3,measureforemeasure,1603 hangman,3,measureforemeasure,1603 e'er,3,measureforemeasure,1603 lady,3,measureforemeasure,1603 to,515,measureforemeasure,1603 o'er,4,measureforemeasure,1603 took,4,measureforemeasure,1603 mistress,4,measureforemeasure,1603 whipt,4,measureforemeasure,1603 villain,4,measureforemeasure,1603 truly,4,measureforemeasure,1603 contract,4,measureforemeasure,1603 drink,4,measureforemeasure,1603 Ere,4,measureforemeasure,1603 calls,4,measureforemeasure,1603 Whom,4,measureforemeasure,1603 proclaim,4,measureforemeasure,1603 seven,4,measureforemeasure,1603 Whose,4,measureforemeasure,1603 saw,4,measureforemeasure,1603 sure,4,measureforemeasure,1603 madness,4,measureforemeasure,1603 soft,4,measureforemeasure,1603 Gentle,4,measureforemeasure,1603 bound,4,measureforemeasure,1603 'twere,4,measureforemeasure,1603 virtuous,4,measureforemeasure,1603 sea,4,measureforemeasure,1603 suit,4,measureforemeasure,1603 deliver,4,measureforemeasure,1603 Farewell,4,measureforemeasure,1603 subject,4,measureforemeasure,1603 worse,4,measureforemeasure,1603 redeem,4,measureforemeasure,1603 daughter,4,measureforemeasure,1603 sue,4,measureforemeasure,1603 severe,4,measureforemeasure,1603 promise,4,measureforemeasure,1603 others,4,measureforemeasure,1603 kneel,4,measureforemeasure,1603 Might,4,measureforemeasure,1603 accuse,4,measureforemeasure,1603 mean,4,measureforemeasure,1603 side,4,measureforemeasure,1603 bad,4,measureforemeasure,1603 cruel,4,measureforemeasure,1603 to't,4,measureforemeasure,1603 Her,4,measureforemeasure,1603 bed,4,measureforemeasure,1603 play,4,measureforemeasure,1603 Had,4,measureforemeasure,1603 past,4,measureforemeasure,1603 pass,4,measureforemeasure,1603 block,4,measureforemeasure,1603 Like,4,measureforemeasure,1603 gate,4,measureforemeasure,1603 quite,4,measureforemeasure,1603 deed,4,measureforemeasure,1603 affection,4,measureforemeasure,1603 promised,4,measureforemeasure,1603 wretch,4,measureforemeasure,1603 ha,4,measureforemeasure,1603 repent,4,measureforemeasure,1603 needs,4,measureforemeasure,1603 dear,4,measureforemeasure,1603 caitiff,4,measureforemeasure,1603 dead,4,measureforemeasure,1603 touch'd,4,measureforemeasure,1603 restraint,4,measureforemeasure,1603 houses,4,measureforemeasure,1603 o',4,measureforemeasure,1603 idle,4,measureforemeasure,1603 morn,4,measureforemeasure,1603 lost,4,measureforemeasure,1603 devil,4,measureforemeasure,1603 Grace,4,measureforemeasure,1603 imprisonment,4,measureforemeasure,1603 outward,4,measureforemeasure,1603 speaks,4,measureforemeasure,1603 hang,4,measureforemeasure,1603 pluck,4,measureforemeasure,1603 prepare,4,measureforemeasure,1603 bosom,4,measureforemeasure,1603 fool,4,measureforemeasure,1603 fond,4,measureforemeasure,1603 thanks,4,measureforemeasure,1603 trick,4,measureforemeasure,1603 Sirrah,4,measureforemeasure,1603 touch,4,measureforemeasure,1603 Should,4,measureforemeasure,1603 FRANCISCA,4,measureforemeasure,1603 Have,4,measureforemeasure,1603 Against,4,measureforemeasure,1603 note,4,measureforemeasure,1603 thinks,4,measureforemeasure,1603 almost,4,measureforemeasure,1603 velvet,4,measureforemeasure,1603 quickly,4,measureforemeasure,1603 garden,4,measureforemeasure,1603 Therefore,4,measureforemeasure,1603 Doth,4,measureforemeasure,1603 question,4,measureforemeasure,1603 varlet,4,measureforemeasure,1603 satisfaction,4,measureforemeasure,1603 plead,4,measureforemeasure,1603 end,4,measureforemeasure,1603 Could,4,measureforemeasure,1603 let's,4,measureforemeasure,1603 benefit,4,measureforemeasure,1603 letters,4,measureforemeasure,1603 dishonour,4,measureforemeasure,1603 wit,4,measureforemeasure,1603 cure,4,measureforemeasure,1603 rise,4,measureforemeasure,1603 receive,4,measureforemeasure,1603 forward,4,measureforemeasure,1603 serve,4,measureforemeasure,1603 Lodowick,4,measureforemeasure,1603 coming,4,measureforemeasure,1603 went,4,measureforemeasure,1603 saint,4,measureforemeasure,1603 company,4,measureforemeasure,1603 Boy,4,measureforemeasure,1603 continue,4,measureforemeasure,1603 lived,4,measureforemeasure,1603 is't,4,measureforemeasure,1603 sentenced,4,measureforemeasure,1603 complaint,4,measureforemeasure,1603 carry,4,measureforemeasure,1603 None,4,measureforemeasure,1603 dangerous,4,measureforemeasure,1603 cut,4,measureforemeasure,1603 honest,4,measureforemeasure,1603 Who's,4,measureforemeasure,1603 request,4,measureforemeasure,1603 prithee,4,measureforemeasure,1603 swear,4,measureforemeasure,1603 drunk,4,measureforemeasure,1603 seen,4,measureforemeasure,1603 seek,4,measureforemeasure,1603 Truly,4,measureforemeasure,1603 bail,4,measureforemeasure,1603 souls,4,measureforemeasure,1603 self,4,measureforemeasure,1603 send,4,measureforemeasure,1603 together,4,measureforemeasure,1603 cold,4,measureforemeasure,1603 goes,4,measureforemeasure,1603 laws,4,measureforemeasure,1603 Signior,4,measureforemeasure,1603 Messenger,4,measureforemeasure,1603 lips,4,measureforemeasure,1603 marriage,4,measureforemeasure,1603 last,4,measureforemeasure,1603 May,4,measureforemeasure,1603 witness,4,measureforemeasure,1603 widow,4,measureforemeasure,1603 Thy,4,measureforemeasure,1603 proclamation,4,measureforemeasure,1603 spirit,4,measureforemeasure,1603 ',5,measureforemeasure,1603 advice,5,measureforemeasure,1603 royal,5,measureforemeasure,1603 peace,5,measureforemeasure,1603 dish,5,measureforemeasure,1603 Must,5,measureforemeasure,1603 vain,5,measureforemeasure,1603 become,5,measureforemeasure,1603 friends,5,measureforemeasure,1603 hearing,5,measureforemeasure,1603 hanging,5,measureforemeasure,1603 Nor,5,measureforemeasure,1603 something,5,measureforemeasure,1603 execution,5,measureforemeasure,1603 stands,5,measureforemeasure,1603 Elbow,5,measureforemeasure,1603 light,5,measureforemeasure,1603 Such,5,measureforemeasure,1603 scope,5,measureforemeasure,1603 heavens,5,measureforemeasure,1603 Pardon,5,measureforemeasure,1603 worthy,5,measureforemeasure,1603 service,5,measureforemeasure,1603 brief,5,measureforemeasure,1603 soldier,5,measureforemeasure,1603 wish,5,measureforemeasure,1603 wise,5,measureforemeasure,1603 anon,5,measureforemeasure,1603 rest,5,measureforemeasure,1603 voice,5,measureforemeasure,1603 There's,5,measureforemeasure,1603 knowledge,5,measureforemeasure,1603 offend,5,measureforemeasure,1603 III,5,measureforemeasure,1603 absent,5,measureforemeasure,1603 people,5,measureforemeasure,1603 Juliet,5,measureforemeasure,1603 seeming,5,measureforemeasure,1603 ho,5,measureforemeasure,1603 lose,5,measureforemeasure,1603 ready,5,measureforemeasure,1603 harm,5,measureforemeasure,1603 part,5,measureforemeasure,1603 Call,5,measureforemeasure,1603 four,5,measureforemeasure,1603 foul,5,measureforemeasure,1603 present,5,measureforemeasure,1603 tomorrow,5,measureforemeasure,1603 prepared,5,measureforemeasure,1603 judgment,5,measureforemeasure,1603 carried,5,measureforemeasure,1603 action,5,measureforemeasure,1603 Peace,5,measureforemeasure,1603 things,5,measureforemeasure,1603 sirrah,5,measureforemeasure,1603 ignorant,5,measureforemeasure,1603 mouth,5,measureforemeasure,1603 awhile,5,measureforemeasure,1603 yours,5,measureforemeasure,1603 already,5,measureforemeasure,1603 mark,5,measureforemeasure,1603 They,5,measureforemeasure,1603 known,5,measureforemeasure,1603 special,5,measureforemeasure,1603 need,5,measureforemeasure,1603 constable,5,measureforemeasure,1603 Isabella,5,measureforemeasure,1603 sake,5,measureforemeasure,1603 five,5,measureforemeasure,1603 fetch,5,measureforemeasure,1603 Say,5,measureforemeasure,1603 between,5,measureforemeasure,1603 Shall,5,measureforemeasure,1603 forfeit,5,measureforemeasure,1603 Even,5,measureforemeasure,1603 glad,5,measureforemeasure,1603 fain,5,measureforemeasure,1603 Make,5,measureforemeasure,1603 Till,5,measureforemeasure,1603 fortune,5,measureforemeasure,1603 do't,5,measureforemeasure,1603 fast,5,measureforemeasure,1603 lay,5,measureforemeasure,1603 needful,5,measureforemeasure,1603 seem,5,measureforemeasure,1603 sound,5,measureforemeasure,1603 entreat,5,measureforemeasure,1603 least,5,measureforemeasure,1603 late,5,measureforemeasure,1603 beauty,5,measureforemeasure,1603 going,5,measureforemeasure,1603 content,5,measureforemeasure,1603 sentence,5,measureforemeasure,1603 instruction,5,measureforemeasure,1603 command,5,measureforemeasure,1603 charity,5,measureforemeasure,1603 told,6,measureforemeasure,1603 every,6,measureforemeasure,1603 appear,6,measureforemeasure,1603 under,6,measureforemeasure,1603 advise,6,measureforemeasure,1603 years,6,measureforemeasure,1603 Give,6,measureforemeasure,1603 yield,6,measureforemeasure,1603 worth,6,measureforemeasure,1603 turn,6,measureforemeasure,1603 Our,6,measureforemeasure,1603 common,6,measureforemeasure,1603 habit,6,measureforemeasure,1603 Though,6,measureforemeasure,1603 authority,6,measureforemeasure,1603 has,6,measureforemeasure,1603 neither,6,measureforemeasure,1603 wisdom,6,measureforemeasure,1603 Within,6,measureforemeasure,1603 means,6,measureforemeasure,1603 Mariana,6,measureforemeasure,1603 cousin,6,measureforemeasure,1603 act,6,measureforemeasure,1603 More,6,measureforemeasure,1603 liberty,6,measureforemeasure,1603 city,6,measureforemeasure,1603 course,6,measureforemeasure,1603 point,6,measureforemeasure,1603 proper,6,measureforemeasure,1603 new,6,measureforemeasure,1603 having,6,measureforemeasure,1603 condemn'd,6,measureforemeasure,1603 gentle,6,measureforemeasure,1603 you'll,6,measureforemeasure,1603 ere,6,measureforemeasure,1603 Some,6,measureforemeasure,1603 mind,6,measureforemeasure,1603 All,6,measureforemeasure,1603 there's,6,measureforemeasure,1603 Were,6,measureforemeasure,1603 same,6,measureforemeasure,1603 thine,6,measureforemeasure,1603 THOMAS,6,measureforemeasure,1603 Thus,6,measureforemeasure,1603 themselves,6,measureforemeasure,1603 fall,6,measureforemeasure,1603 fit,6,measureforemeasure,1603 practise,6,measureforemeasure,1603 man's,6,measureforemeasure,1603 prayers,6,measureforemeasure,1603 either,6,measureforemeasure,1603 person,6,measureforemeasure,1603 Mistress,6,measureforemeasure,1603 sleep,6,measureforemeasure,1603 Claudio's,6,measureforemeasure,1603 learn,6,measureforemeasure,1603 He's,6,measureforemeasure,1603 certain,6,measureforemeasure,1603 ten,6,measureforemeasure,1603 lack,6,measureforemeasure,1603 pity,7,measureforemeasure,1603 leisure,7,measureforemeasure,1603 speech,7,measureforemeasure,1603 Alas,7,measureforemeasure,1603 wicked,7,measureforemeasure,1603 prisoner,7,measureforemeasure,1603 hanged,7,measureforemeasure,1603 gracious,7,measureforemeasure,1603 another,7,measureforemeasure,1603 tapster,7,measureforemeasure,1603 One,7,measureforemeasure,1603 died,7,measureforemeasure,1603 spoke,7,measureforemeasure,1603 morning,7,measureforemeasure,1603 At,7,measureforemeasure,1603 stay,7,measureforemeasure,1603 just,7,measureforemeasure,1603 mystery,7,measureforemeasure,1603 confess,7,measureforemeasure,1603 long,7,measureforemeasure,1603 does,7,measureforemeasure,1603 crave,7,measureforemeasure,1603 less,7,measureforemeasure,1603 executed,7,measureforemeasure,1603 ask,7,measureforemeasure,1603 duke's,7,measureforemeasure,1603 change,7,measureforemeasure,1603 report,7,measureforemeasure,1603 into,7,measureforemeasure,1603 young,7,measureforemeasure,1603 state,7,measureforemeasure,1603 disguised,7,measureforemeasure,1603 near,7,measureforemeasure,1603 oft,7,measureforemeasure,1603 found,7,measureforemeasure,1603 marry,7,measureforemeasure,1603 wrong'd,7,measureforemeasure,1603 judge,7,measureforemeasure,1603 three,7,measureforemeasure,1603 Escalus,7,measureforemeasure,1603 Fare,7,measureforemeasure,1603 hour,7,measureforemeasure,1603 thousand,7,measureforemeasure,1603 given,7,measureforemeasure,1603 hold,7,measureforemeasure,1603 goodness,7,measureforemeasure,1603 back,7,measureforemeasure,1603 makes,7,measureforemeasure,1603 Marry,7,measureforemeasure,1603 Did,7,measureforemeasure,1603 Take,7,measureforemeasure,1603 haste,8,measureforemeasure,1603 thought,8,measureforemeasure,1603 Would,8,measureforemeasure,1603 full,8,measureforemeasure,1603 came,8,measureforemeasure,1603 't,8,measureforemeasure,1603 wrong,8,measureforemeasure,1603 about,8,measureforemeasure,1603 seems,8,measureforemeasure,1603 friend,8,measureforemeasure,1603 therefore,8,measureforemeasure,1603 since,8,measureforemeasure,1603 II,8,measureforemeasure,1603 pleasure,8,measureforemeasure,1603 bid,8,measureforemeasure,1603 blood,8,measureforemeasure,1603 best,8,measureforemeasure,1603 i',8,measureforemeasure,1603 bear,8,measureforemeasure,1603 noble,8,measureforemeasure,1603 prince,8,measureforemeasure,1603 forth,8,measureforemeasure,1603 here's,8,measureforemeasure,1603 remedy,8,measureforemeasure,1603 year,8,measureforemeasure,1603 She,8,measureforemeasure,1603 knows,8,measureforemeasure,1603 thief,8,measureforemeasure,1603 free,8,measureforemeasure,1603 could,8,measureforemeasure,1603 stand,8,measureforemeasure,1603 That's,8,measureforemeasure,1603 fie,8,measureforemeasure,1603 officer,8,measureforemeasure,1603 married,8,measureforemeasure,1603 worship,8,measureforemeasure,1603 reason,8,measureforemeasure,1603 home,8,measureforemeasure,1603 return,8,measureforemeasure,1603 respected,8,measureforemeasure,1603 nature,8,measureforemeasure,1603 Justice,8,measureforemeasure,1603 times,9,measureforemeasure,1603 business,9,measureforemeasure,1603 Upon,9,measureforemeasure,1603 set,9,measureforemeasure,1603 born,9,measureforemeasure,1603 fault,9,measureforemeasure,1603 hence,9,measureforemeasure,1603 office,9,measureforemeasure,1603 itself,9,measureforemeasure,1603 IV,9,measureforemeasure,1603 prove,9,measureforemeasure,1603 that's,9,measureforemeasure,1603 knew,9,measureforemeasure,1603 trade,9,measureforemeasure,1603 hast,9,measureforemeasure,1603 Hath,9,measureforemeasure,1603 room,9,measureforemeasure,1603 youth,9,measureforemeasure,1603 Friar,9,measureforemeasure,1603 once,9,measureforemeasure,1603 evil,9,measureforemeasure,1603 gentleman,9,measureforemeasure,1603 holy,9,measureforemeasure,1603 Lucio,9,measureforemeasure,1603 whom,9,measureforemeasure,1603 Pray,9,measureforemeasure,1603 first,9,measureforemeasure,1603 ear,9,measureforemeasure,1603 women,9,measureforemeasure,1603 answer,10,measureforemeasure,1603 enough,10,measureforemeasure,1603 Vienna,10,measureforemeasure,1603 Servant,10,measureforemeasure,1603 Here,10,measureforemeasure,1603 false,10,measureforemeasure,1603 dost,10,measureforemeasure,1603 tongue,10,measureforemeasure,1603 Froth,10,measureforemeasure,1603 BARNARDINE,10,measureforemeasure,1603 Second,10,measureforemeasure,1603 Yet,10,measureforemeasure,1603 Most,10,measureforemeasure,1603 though,10,measureforemeasure,1603 Are,10,measureforemeasure,1603 right,10,measureforemeasure,1603 only,10,measureforemeasure,1603 beseech,10,measureforemeasure,1603 Can,10,measureforemeasure,1603 news,10,measureforemeasure,1603 fair,10,measureforemeasure,1603 eyes,10,measureforemeasure,1603 sent,10,measureforemeasure,1603 Where,10,measureforemeasure,1603 cannot,10,measureforemeasure,1603 I,522,measureforemeasure,1603 meet,11,measureforemeasure,1603 rather,11,measureforemeasure,1603 soul,11,measureforemeasure,1603 yourself,11,measureforemeasure,1603 words,11,measureforemeasure,1603 warrant,11,measureforemeasure,1603 vice,11,measureforemeasure,1603 faults,11,measureforemeasure,1603 Officers,11,measureforemeasure,1603 matter,11,measureforemeasure,1603 else,11,measureforemeasure,1603 look,11,measureforemeasure,1603 FROTH,11,measureforemeasure,1603 those,11,measureforemeasure,1603 keep,11,measureforemeasure,1603 From,11,measureforemeasure,1603 Then,11,measureforemeasure,1603 who,11,measureforemeasure,1603 save,11,measureforemeasure,1603 what's,11,measureforemeasure,1603 please,11,measureforemeasure,1603 even,11,measureforemeasure,1603 comfort,11,measureforemeasure,1603 use,11,measureforemeasure,1603 men,11,measureforemeasure,1603 Away,11,measureforemeasure,1603 virtue,11,measureforemeasure,1603 shame,11,measureforemeasure,1603 kind,11,measureforemeasure,1603 power,11,measureforemeasure,1603 order,11,measureforemeasure,1603 nothing,12,measureforemeasure,1603 within,12,measureforemeasure,1603 cause,12,measureforemeasure,1603 both,12,measureforemeasure,1603 His,12,measureforemeasure,1603 JULIET,12,measureforemeasure,1603 gone,12,measureforemeasure,1603 put,12,measureforemeasure,1603 said,12,measureforemeasure,1603 Yes,12,measureforemeasure,1603 hand,12,measureforemeasure,1603 none,12,measureforemeasure,1603 many,12,measureforemeasure,1603 why,12,measureforemeasure,1603 old,12,measureforemeasure,1603 day,12,measureforemeasure,1603 it,268,measureforemeasure,1603 deputy,13,measureforemeasure,1603 truth,13,measureforemeasure,1603 call,13,measureforemeasure,1603 With,13,measureforemeasure,1603 sense,13,measureforemeasure,1603 he's,13,measureforemeasure,1603 What's,13,measureforemeasure,1603 Re,13,measureforemeasure,1603 child,13,measureforemeasure,1603 Look,13,measureforemeasure,1603 heard,13,measureforemeasure,1603 face,13,measureforemeasure,1603 till,13,measureforemeasure,1603 thank,13,measureforemeasure,1603 when,13,measureforemeasure,1603 mercy,14,measureforemeasure,1603 body,14,measureforemeasure,1603 offence,14,measureforemeasure,1603 fellow,14,measureforemeasure,1603 fear,14,measureforemeasure,1603 Do,14,measureforemeasure,1603 Be,14,measureforemeasure,1603 night,14,measureforemeasure,1603 Good,14,measureforemeasure,1603 whose,14,measureforemeasure,1603 little,14,measureforemeasure,1603 show,14,measureforemeasure,1603 off,14,measureforemeasure,1603 brother's,14,measureforemeasure,1603 Heaven,14,measureforemeasure,1603 hope,14,measureforemeasure,1603 wife,14,measureforemeasure,1603 purpose,14,measureforemeasure,1603 two,14,measureforemeasure,1603 Nay,15,measureforemeasure,1603 world,15,measureforemeasure,1603 Not,15,measureforemeasure,1603 against,15,measureforemeasure,1603 PETER,15,measureforemeasure,1603 after,15,measureforemeasure,1603 desire,15,measureforemeasure,1603 Or,15,measureforemeasure,1603 husband,15,measureforemeasure,1603 Than,15,measureforemeasure,1603 indeed,15,measureforemeasure,1603 myself,15,measureforemeasure,1603 ever,15,measureforemeasure,1603 Barnardine,15,measureforemeasure,1603 thus,15,measureforemeasure,1603 hither,15,measureforemeasure,1603 strange,15,measureforemeasure,1603 might,15,measureforemeasure,1603 Now,16,measureforemeasure,1603 sin,16,measureforemeasure,1603 Aside,16,measureforemeasure,1603 bring,16,measureforemeasure,1603 enter,16,measureforemeasure,1603 We,16,measureforemeasure,1603 heart,16,measureforemeasure,1603 way,16,measureforemeasure,1603 'Tis,16,measureforemeasure,1603 away,17,measureforemeasure,1603 these,17,measureforemeasure,1603 tell,17,measureforemeasure,1603 Ay,17,measureforemeasure,1603 name,17,measureforemeasure,1603 never,17,measureforemeasure,1603 Of,17,measureforemeasure,1603 down,17,measureforemeasure,1603 So,17,measureforemeasure,1603 done,17,measureforemeasure,1603 ACT,17,measureforemeasure,1603 still,17,measureforemeasure,1603 word,17,measureforemeasure,1603 find,17,measureforemeasure,1603 leave,17,measureforemeasure,1603 himself,17,measureforemeasure,1603 pray,18,measureforemeasure,1603 Who,18,measureforemeasure,1603 see,18,measureforemeasure,1603 Go,18,measureforemeasure,1603 Sir,18,measureforemeasure,1603 again,18,measureforemeasure,1603 believe,18,measureforemeasure,1603 provost,18,measureforemeasure,1603 great,18,measureforemeasure,1603 ABHORSON,18,measureforemeasure,1603 live,18,measureforemeasure,1603 SCENE,18,measureforemeasure,1603 your,274,measureforemeasure,1603 FOR,19,measureforemeasure,1603 FRIAR,19,measureforemeasure,1603 There,19,measureforemeasure,1603 OVERDONE,19,measureforemeasure,1603 been,19,measureforemeasure,1603 grace,19,measureforemeasure,1603 Your,19,measureforemeasure,1603 where,19,measureforemeasure,1603 Thou,19,measureforemeasure,1603 comes,19,measureforemeasure,1603 pardon,19,measureforemeasure,1603 MISTRESS,19,measureforemeasure,1603 sister,19,measureforemeasure,1603 being,19,measureforemeasure,1603 woman,19,measureforemeasure,1603 better,20,measureforemeasure,1603 Which,20,measureforemeasure,1603 doth,20,measureforemeasure,1603 First,20,measureforemeasure,1603 bawd,20,measureforemeasure,1603 in,276,measureforemeasure,1603 their,21,measureforemeasure,1603 maid,21,measureforemeasure,1603 thing,21,measureforemeasure,1603 Well,21,measureforemeasure,1603 father,21,measureforemeasure,1603 When,21,measureforemeasure,1603 By,22,measureforemeasure,1603 morrow,22,measureforemeasure,1603 Let,22,measureforemeasure,1603 head,23,measureforemeasure,1603 Is,23,measureforemeasure,1603 nor,23,measureforemeasure,1603 take,23,measureforemeasure,1603 Gentleman,23,measureforemeasure,1603 Isabel,23,measureforemeasure,1603 poor,23,measureforemeasure,1603 did,23,measureforemeasure,1603 heaven,24,measureforemeasure,1603 It,24,measureforemeasure,1603 Exeunt,24,measureforemeasure,1603 go,24,measureforemeasure,1603 justice,24,measureforemeasure,1603 Lord,24,measureforemeasure,1603 other,24,measureforemeasure,1603 much,25,measureforemeasure,1603 hear,25,measureforemeasure,1603 Master,25,measureforemeasure,1603 place,25,measureforemeasure,1603 up,25,measureforemeasure,1603 law,25,measureforemeasure,1603 house,25,measureforemeasure,1603 true,25,measureforemeasure,1603 some,26,measureforemeasure,1603 love,26,measureforemeasure,1603 how,26,measureforemeasure,1603 Pompey,26,measureforemeasure,1603 mine,26,measureforemeasure,1603 before,26,measureforemeasure,1603 Why,27,measureforemeasure,1603 No,27,measureforemeasure,1603 'tis,28,measureforemeasure,1603 prison,28,measureforemeasure,1603 can,29,measureforemeasure,1603 us,29,measureforemeasure,1603 art,29,measureforemeasure,1603 How,29,measureforemeasure,1603 own,29,measureforemeasure,1603 Come,30,measureforemeasure,1603 such,30,measureforemeasure,1603 In,30,measureforemeasure,1603 out,30,measureforemeasure,1603 friar,30,measureforemeasure,1603 too,30,measureforemeasure,1603 any,31,measureforemeasure,1603 give,31,measureforemeasure,1603 My,32,measureforemeasure,1603 made,32,measureforemeasure,1603 This,32,measureforemeasure,1603 time,32,measureforemeasure,1603 like,33,measureforemeasure,1603 very,33,measureforemeasure,1603 ELBOW,33,measureforemeasure,1603 than,34,measureforemeasure,1603 MARIANA,34,measureforemeasure,1603 they,35,measureforemeasure,1603 then,35,measureforemeasure,1603 should,35,measureforemeasure,1603 were,36,measureforemeasure,1603 there,37,measureforemeasure,1603 You,37,measureforemeasure,1603 think,37,measureforemeasure,1603 Exit,37,measureforemeasure,1603 which,38,measureforemeasure,1603 say,38,measureforemeasure,1603 He,38,measureforemeasure,1603 MEASURE,38,measureforemeasure,1603 I'll,38,measureforemeasure,1603 speak,39,measureforemeasure,1603 make,39,measureforemeasure,1603 die,39,measureforemeasure,1603 honour,40,measureforemeasure,1603 death,41,measureforemeasure,1603 them,41,measureforemeasure,1603 had,41,measureforemeasure,1603 upon,42,measureforemeasure,1603 yet,42,measureforemeasure,1603 an,42,measureforemeasure,1603 Claudio,42,measureforemeasure,1603 If,43,measureforemeasure,1603 CLAUDIO,43,measureforemeasure,1603 she,44,measureforemeasure,1603 thee,44,measureforemeasure,1603 most,44,measureforemeasure,1603 Enter,44,measureforemeasure,1603 one,44,measureforemeasure,1603 A,47,measureforemeasure,1603 our,47,measureforemeasure,1603 man,47,measureforemeasure,1603 life,48,measureforemeasure,1603 at,48,measureforemeasure,1603 now,48,measureforemeasure,1603 For,49,measureforemeasure,1603 As,49,measureforemeasure,1603 or,49,measureforemeasure,1603 duke,49,measureforemeasure,1603 am,50,measureforemeasure,1603 let,50,measureforemeasure,1603 thy,51,measureforemeasure,1603 from,52,measureforemeasure,1603 was,52,measureforemeasure,1603 come,52,measureforemeasure,1603 here,53,measureforemeasure,1603 must,53,measureforemeasure,1603 may,53,measureforemeasure,1603 well,55,measureforemeasure,1603 What,57,measureforemeasure,1603 brother,58,measureforemeasure,1603 lord,58,measureforemeasure,1603 hath,62,measureforemeasure,1603 O,63,measureforemeasure,1603 more,63,measureforemeasure,1603 know,63,measureforemeasure,1603 The,63,measureforemeasure,1603 we,65,measureforemeasure,1603 what,66,measureforemeasure,1603 POMPEY,67,measureforemeasure,1603 no,68,measureforemeasure,1603 if,68,measureforemeasure,1603 But,68,measureforemeasure,1603 That,73,measureforemeasure,1603 Angelo,73,measureforemeasure,1603 on,74,measureforemeasure,1603 shall,77,measureforemeasure,1603 are,78,measureforemeasure,1603 all,81,measureforemeasure,1603 would,81,measureforemeasure,1603 good,86,measureforemeasure,1603 ESCALUS,88,measureforemeasure,1603 thou,91,measureforemeasure,1603 by,93,measureforemeasure,1603 ANGELO,94,measureforemeasure,1603 To,99,measureforemeasure,1603 Provost,99,measureforemeasure,1603 so,101,measureforemeasure,1603 will,104,measureforemeasure,1603 her,108,measureforemeasure,1603 sir,117,measureforemeasure,1603 of,373,measureforemeasure,1603 a,374,measureforemeasure,1603 do,119,measureforemeasure,1603 LUCIO,125,measureforemeasure,1603 the,637,measureforemeasure,1603 but,129,measureforemeasure,1603 as,136,measureforemeasure,1603 And,137,measureforemeasure,1603 his,147,measureforemeasure,1603 ISABELLA,157,measureforemeasure,1603 have,162,measureforemeasure,1603 this,163,measureforemeasure,1603 he,167,measureforemeasure,1603 for,178,measureforemeasure,1603 and,439,measureforemeasure,1603 me,184,measureforemeasure,1603 with,195,measureforemeasure,1603 be,198,measureforemeasure,1603 him,207,measureforemeasure,1603 VINCENTIO,209,measureforemeasure,1603 DUKE,210,measureforemeasure,1603 my,214,measureforemeasure,1603 not,222,measureforemeasure,1603 that,229,measureforemeasure,1603 you,486,measureforemeasure,1603 is,245,measureforemeasure,1603 forfeits,1,troilusandcressida,1602 disarm,1,troilusandcressida,1602 attended,1,troilusandcressida,1602 holding,1,troilusandcressida,1602 Polyxenes,1,troilusandcressida,1602 treason,1,troilusandcressida,1602 You're,1,troilusandcressida,1602 event,1,troilusandcressida,1602 degenerate,1,troilusandcressida,1602 advanced,1,troilusandcressida,1602 grandam,1,troilusandcressida,1602 troubled,1,troilusandcressida,1602 unsquared,1,troilusandcressida,1602 Typhon,1,troilusandcressida,1602 Epistrophus,1,troilusandcressida,1602 brawn,1,troilusandcressida,1602 galled,1,troilusandcressida,1602 Briareus,1,troilusandcressida,1602 armies,1,troilusandcressida,1602 unwelcome,1,troilusandcressida,1602 troubles,1,troilusandcressida,1602 somebody,1,troilusandcressida,1602 lusty,1,troilusandcressida,1602 effeminate,1,troilusandcressida,1602 handsomeness,1,troilusandcressida,1602 true',1,troilusandcressida,1602 finger's,1,troilusandcressida,1602 sped,1,troilusandcressida,1602 gauntlet,1,troilusandcressida,1602 imaginary,1,troilusandcressida,1602 womanish,1,troilusandcressida,1602 venomous,1,troilusandcressida,1602 debts,1,troilusandcressida,1602 advantageous,1,troilusandcressida,1602 X,1,troilusandcressida,1602 'and,1,troilusandcressida,1602 Wanting,1,troilusandcressida,1602 putrefied,1,troilusandcressida,1602 shrouded,1,troilusandcressida,1602 invisible,1,troilusandcressida,1602 maculation,1,troilusandcressida,1602 digested,1,troilusandcressida,1602 suffer,1,troilusandcressida,1602 cutting,1,troilusandcressida,1602 ports,1,troilusandcressida,1602 masterly,1,troilusandcressida,1602 Few,1,troilusandcressida,1602 pestilence,1,troilusandcressida,1602 Proud,1,troilusandcressida,1602 advice,1,troilusandcressida,1602 basis,1,troilusandcressida,1602 dames,1,troilusandcressida,1602 interchange,1,troilusandcressida,1602 Grecians',1,troilusandcressida,1602 jar,1,troilusandcressida,1602 priority,1,troilusandcressida,1602 'Here's,1,troilusandcressida,1602 doubly,1,troilusandcressida,1602 motion,1,troilusandcressida,1602 canonize,1,troilusandcressida,1602 apprehend,1,troilusandcressida,1602 tops,1,troilusandcressida,1602 yielding,1,troilusandcressida,1602 Fools,1,troilusandcressida,1602 churlish,1,troilusandcressida,1602 resist,1,troilusandcressida,1602 double,1,troilusandcressida,1602 assinego,1,troilusandcressida,1602 relics,1,troilusandcressida,1602 viands,1,troilusandcressida,1602 axle,1,troilusandcressida,1602 Heat,1,troilusandcressida,1602 orders,1,troilusandcressida,1602 pageants,1,troilusandcressida,1602 raw,1,troilusandcressida,1602 largeness,1,troilusandcressida,1602 wish'd,1,troilusandcressida,1602 ray,1,troilusandcressida,1602 hacked,1,troilusandcressida,1602 dexter,1,troilusandcressida,1602 conveniences,1,troilusandcressida,1602 discord,1,troilusandcressida,1602 ignomy,1,troilusandcressida,1602 generous,1,troilusandcressida,1602 brightness,1,troilusandcressida,1602 fathomless,1,troilusandcressida,1602 especially,1,troilusandcressida,1602 quietness,1,troilusandcressida,1602 hinder,1,troilusandcressida,1602 traitor's,1,troilusandcressida,1602 Tear,1,troilusandcressida,1602 alike,1,troilusandcressida,1602 Friday,1,troilusandcressida,1602 disunite,1,troilusandcressida,1602 Trouble,1,troilusandcressida,1602 biscuit,1,troilusandcressida,1602 torn,1,troilusandcressida,1602 convoy,1,troilusandcressida,1602 wooden,1,troilusandcressida,1602 ran,1,troilusandcressida,1602 ram,1,troilusandcressida,1602 plagued,1,troilusandcressida,1602 Daphne's,1,troilusandcressida,1602 lawful,1,troilusandcressida,1602 peculiar,1,troilusandcressida,1602 countrywoman,1,troilusandcressida,1602 shouldest,1,troilusandcressida,1602 Vulcan's,1,troilusandcressida,1602 sewer,1,troilusandcressida,1602 distill'd,1,troilusandcressida,1602 attributive,1,troilusandcressida,1602 rot,1,troilusandcressida,1602 searching,1,troilusandcressida,1602 offended,1,troilusandcressida,1602 esteems,1,troilusandcressida,1602 unbolt,1,troilusandcressida,1602 Despising,1,troilusandcressida,1602 infectiously,1,troilusandcressida,1602 suppose,1,troilusandcressida,1602 ruminates,1,troilusandcressida,1602 Outliving,1,troilusandcressida,1602 heart's,1,troilusandcressida,1602 roe,1,troilusandcressida,1602 apprehended,1,troilusandcressida,1602 dotes,1,troilusandcressida,1602 Beat,1,troilusandcressida,1602 chiding,1,troilusandcressida,1602 day's,1,troilusandcressida,1602 maturity,1,troilusandcressida,1602 Bear,1,troilusandcressida,1602 joy,1,troilusandcressida,1602 Women,1,troilusandcressida,1602 proclaim'd,1,troilusandcressida,1602 impressure,1,troilusandcressida,1602 easily,1,troilusandcressida,1602 space,1,troilusandcressida,1602 express,1,troilusandcressida,1602 decision,1,troilusandcressida,1602 simpler,1,troilusandcressida,1602 boys,1,troilusandcressida,1602 endless,1,troilusandcressida,1602 obstinately,1,troilusandcressida,1602 commotion,1,troilusandcressida,1602 retort,1,troilusandcressida,1602 sleeps,1,troilusandcressida,1602 Iris,1,troilusandcressida,1602 toes,1,troilusandcressida,1602 dire,1,troilusandcressida,1602 swifter,1,troilusandcressida,1602 whereupon,1,troilusandcressida,1602 moiety,1,troilusandcressida,1602 Address,1,troilusandcressida,1602 despised,1,troilusandcressida,1602 Stay,1,troilusandcressida,1602 whale,1,troilusandcressida,1602 truly,1,troilusandcressida,1602 debonair,1,troilusandcressida,1602 seethes,1,troilusandcressida,1602 repured,1,troilusandcressida,1602 proposition,1,troilusandcressida,1602 sisters,1,troilusandcressida,1602 mule,1,troilusandcressida,1602 singly,1,troilusandcressida,1602 Neptune,1,troilusandcressida,1602 trump,1,troilusandcressida,1602 vail,1,troilusandcressida,1602 hers,1,troilusandcressida,1602 philosophy,1,troilusandcressida,1602 cursing,1,troilusandcressida,1602 herd,1,troilusandcressida,1602 proceedings,1,troilusandcressida,1602 capocchia,1,troilusandcressida,1602 vain,1,troilusandcressida,1602 dropp'd,1,troilusandcressida,1602 violent,1,troilusandcressida,1602 PROLOGUE,1,troilusandcressida,1602 mean'st,1,troilusandcressida,1602 Either,1,troilusandcressida,1602 unwholesome,1,troilusandcressida,1602 ruffian,1,troilusandcressida,1602 vale,1,troilusandcressida,1602 security,1,troilusandcressida,1602 recourse,1,troilusandcressida,1602 errand,1,troilusandcressida,1602 toil,1,troilusandcressida,1602 hulks,1,troilusandcressida,1602 honourable,1,troilusandcressida,1602 ravish'd,1,troilusandcressida,1602 errant,1,troilusandcressida,1602 sunburnt,1,troilusandcressida,1602 Beshrew,1,troilusandcressida,1602 hearted,1,troilusandcressida,1602 offer,1,troilusandcressida,1602 instrument,1,troilusandcressida,1602 rid,1,troilusandcressida,1602 looked,1,troilusandcressida,1602 Pause,1,troilusandcressida,1602 hanged,1,troilusandcressida,1602 feeds,1,troilusandcressida,1602 strangles,1,troilusandcressida,1602 maintain,1,troilusandcressida,1602 praising,1,troilusandcressida,1602 flow,1,troilusandcressida,1602 although,1,troilusandcressida,1602 fury,1,troilusandcressida,1602 spans,1,troilusandcressida,1602 throat,1,troilusandcressida,1602 years',1,troilusandcressida,1602 cowardice,1,troilusandcressida,1602 sour,1,troilusandcressida,1602 foams,1,troilusandcressida,1602 prey,1,troilusandcressida,1602 miscall,1,troilusandcressida,1602 hairs',1,troilusandcressida,1602 thou'lt,1,troilusandcressida,1602 scurrilous,1,troilusandcressida,1602 beauty's,1,troilusandcressida,1602 admonishment,1,troilusandcressida,1602 press,1,troilusandcressida,1602 odds,1,troilusandcressida,1602 iron,1,troilusandcressida,1602 worshipp'd,1,troilusandcressida,1602 damned,1,troilusandcressida,1602 fraughtage,1,troilusandcressida,1602 retract,1,troilusandcressida,1602 ounces,1,troilusandcressida,1602 goers,1,troilusandcressida,1602 Empale,1,troilusandcressida,1602 works,1,troilusandcressida,1602 lief,1,troilusandcressida,1602 Whom,1,troilusandcressida,1602 wing'd,1,troilusandcressida,1602 wrest,1,troilusandcressida,1602 cheques,1,troilusandcressida,1602 thicket,1,troilusandcressida,1602 thicker,1,troilusandcressida,1602 plaguy,1,troilusandcressida,1602 curious,1,troilusandcressida,1602 PERSONAE,1,troilusandcressida,1602 Inflamed,1,troilusandcressida,1602 proclaim,1,troilusandcressida,1602 moist,1,troilusandcressida,1602 Light,1,troilusandcressida,1602 Galathe,1,troilusandcressida,1602 Roaring,1,troilusandcressida,1602 Renew,1,troilusandcressida,1602 'Thanks,1,troilusandcressida,1602 saved,1,troilusandcressida,1602 indexes,1,troilusandcressida,1602 spark,1,troilusandcressida,1602 cast,1,troilusandcressida,1602 crutch,1,troilusandcressida,1602 rub,1,troilusandcressida,1602 heifer's,1,troilusandcressida,1602 Pretty,1,troilusandcressida,1602 impure,1,troilusandcressida,1602 breach,1,troilusandcressida,1602 pursue,1,troilusandcressida,1602 inheritors,1,troilusandcressida,1602 beneath,1,troilusandcressida,1602 wrestling,1,troilusandcressida,1602 raving,1,troilusandcressida,1602 VIII,1,troilusandcressida,1602 order'd,1,troilusandcressida,1602 chid,1,troilusandcressida,1602 bending,1,troilusandcressida,1602 Cedius,1,troilusandcressida,1602 alarm,1,troilusandcressida,1602 shipmen,1,troilusandcressida,1602 brainless,1,troilusandcressida,1602 thievery,1,troilusandcressida,1602 Apollo's,1,troilusandcressida,1602 divination,1,troilusandcressida,1602 lacks,1,troilusandcressida,1602 crownets,1,troilusandcressida,1602 instructed,1,troilusandcressida,1602 amazed,1,troilusandcressida,1602 sad,1,troilusandcressida,1602 bladders,1,troilusandcressida,1602 spied,1,troilusandcressida,1602 everything,1,troilusandcressida,1602 feels,1,troilusandcressida,1602 wheezing,1,troilusandcressida,1602 conscience,1,troilusandcressida,1602 tarrying,1,troilusandcressida,1602 Fellow,1,troilusandcressida,1602 ruder,1,troilusandcressida,1602 Furnish,1,troilusandcressida,1602 Wiped,1,troilusandcressida,1602 enemies',1,troilusandcressida,1602 pine,1,troilusandcressida,1602 working,1,troilusandcressida,1602 seconded,1,troilusandcressida,1602 sole,1,troilusandcressida,1602 sold,1,troilusandcressida,1602 leaning,1,troilusandcressida,1602 Helias,1,troilusandcressida,1602 illegitimate,1,troilusandcressida,1602 blabb'd,1,troilusandcressida,1602 lifts,1,troilusandcressida,1602 sap,1,troilusandcressida,1602 Perseus',1,troilusandcressida,1602 Excuse,1,troilusandcressida,1602 Courtiers,1,troilusandcressida,1602 bearing,1,troilusandcressida,1602 beholds,1,troilusandcressida,1602 stream,1,troilusandcressida,1602 spice,1,troilusandcressida,1602 constantly,1,troilusandcressida,1602 taciturnity,1,troilusandcressida,1602 line,1,troilusandcressida,1602 Argus,1,troilusandcressida,1602 circumstance,1,troilusandcressida,1602 Blind,1,troilusandcressida,1602 Plains,1,troilusandcressida,1602 confounds,1,troilusandcressida,1602 An't,1,troilusandcressida,1602 gracious,1,troilusandcressida,1602 Outswell,1,troilusandcressida,1602 lily,1,troilusandcressida,1602 'Yea,1,troilusandcressida,1602 injury,1,troilusandcressida,1602 Consent,1,troilusandcressida,1602 beacon,1,troilusandcressida,1602 broker,1,troilusandcressida,1602 Keep,1,troilusandcressida,1602 'which,1,troilusandcressida,1602 maidenheads,1,troilusandcressida,1602 enthroned,1,troilusandcressida,1602 subjects,1,troilusandcressida,1602 plight,1,troilusandcressida,1602 posts,1,troilusandcressida,1602 corse,1,troilusandcressida,1602 Much,1,troilusandcressida,1602 Remember,1,troilusandcressida,1602 forehand,1,troilusandcressida,1602 additions,1,troilusandcressida,1602 heal,1,troilusandcressida,1602 shivers,1,troilusandcressida,1602 Ourself,1,troilusandcressida,1602 worthier,1,troilusandcressida,1602 cheer,1,troilusandcressida,1602 contrive,1,troilusandcressida,1602 exclaim,1,troilusandcressida,1602 oppress,1,troilusandcressida,1602 Anchises',1,troilusandcressida,1602 dwarf,1,troilusandcressida,1602 protractive,1,troilusandcressida,1602 softer,1,troilusandcressida,1602 batch,1,troilusandcressida,1602 voices,1,troilusandcressida,1602 diminutive,1,troilusandcressida,1602 seemest,1,troilusandcressida,1602 golden,1,troilusandcressida,1602 demands,1,troilusandcressida,1602 breaks,1,troilusandcressida,1602 calf,1,troilusandcressida,1602 pipe,1,troilusandcressida,1602 remiss,1,troilusandcressida,1602 unplausive,1,troilusandcressida,1602 hanging,1,troilusandcressida,1602 rides,1,troilusandcressida,1602 dependance,1,troilusandcressida,1602 kneading,1,troilusandcressida,1602 deities,1,troilusandcressida,1602 lazars,1,troilusandcressida,1602 shrewdly,1,troilusandcressida,1602 dreg,1,troilusandcressida,1602 teach,1,troilusandcressida,1602 searches,1,troilusandcressida,1602 'Sfoot,1,troilusandcressida,1602 stalks,1,troilusandcressida,1602 hardiment,1,troilusandcressida,1602 richer,1,troilusandcressida,1602 taxing,1,troilusandcressida,1602 riches,1,troilusandcressida,1602 pillar,1,troilusandcressida,1602 visions,1,troilusandcressida,1602 serpentine,1,troilusandcressida,1602 sharpens,1,troilusandcressida,1602 visit,1,troilusandcressida,1602 amity,1,troilusandcressida,1602 thrones,1,troilusandcressida,1602 paltry,1,troilusandcressida,1602 Tymbria,1,troilusandcressida,1602 defiance,1,troilusandcressida,1602 sobs,1,troilusandcressida,1602 ribald,1,troilusandcressida,1602 general's,1,troilusandcressida,1602 visitation,1,troilusandcressida,1602 Margarelon,1,troilusandcressida,1602 sigh'st,1,troilusandcressida,1602 Never's,1,troilusandcressida,1602 impress,1,troilusandcressida,1602 Charon,1,troilusandcressida,1602 Perchance,1,troilusandcressida,1602 owners,1,troilusandcressida,1602 derision,1,troilusandcressida,1602 barks,1,troilusandcressida,1602 pillow,1,troilusandcressida,1602 sleep'st,1,troilusandcressida,1602 persistive,1,troilusandcressida,1602 seeking,1,troilusandcressida,1602 Wit,1,troilusandcressida,1602 serpigo,1,troilusandcressida,1602 antics,1,troilusandcressida,1602 weaker,1,troilusandcressida,1602 slightly,1,troilusandcressida,1602 perspicuous,1,troilusandcressida,1602 weaken,1,troilusandcressida,1602 shames,1,troilusandcressida,1602 sunk,1,troilusandcressida,1602 embassy,1,troilusandcressida,1602 I'd,1,troilusandcressida,1602 glimpse,1,troilusandcressida,1602 boat,1,troilusandcressida,1602 crusty,1,troilusandcressida,1602 Oft,1,troilusandcressida,1602 forever,1,troilusandcressida,1602 Kingdom'd,1,troilusandcressida,1602 returned,1,troilusandcressida,1602 conception,1,troilusandcressida,1602 concupy,1,troilusandcressida,1602 characterless,1,troilusandcressida,1602 maidens,1,troilusandcressida,1602 ken,1,troilusandcressida,1602 vizarded,1,troilusandcressida,1602 benumbed,1,troilusandcressida,1602 key,1,troilusandcressida,1602 german,1,troilusandcressida,1602 subdued,1,troilusandcressida,1602 agent,1,troilusandcressida,1602 worthiest,1,troilusandcressida,1602 wolf's,1,troilusandcressida,1602 ourself,1,troilusandcressida,1602 tooth,1,troilusandcressida,1602 railest,1,troilusandcressida,1602 enkindled,1,troilusandcressida,1602 wall,1,troilusandcressida,1602 Perseus,1,troilusandcressida,1602 illustrious,1,troilusandcressida,1602 tercel,1,troilusandcressida,1602 Observe,1,troilusandcressida,1602 rubs,1,troilusandcressida,1602 deceived,1,troilusandcressida,1602 coals,1,troilusandcressida,1602 flying,1,troilusandcressida,1602 artist,1,troilusandcressida,1602 Brabbler,1,troilusandcressida,1602 grasps,1,troilusandcressida,1602 slaughter,1,troilusandcressida,1602 'When,1,troilusandcressida,1602 mending,1,troilusandcressida,1602 touches,1,troilusandcressida,1602 famish'd,1,troilusandcressida,1602 tithe,1,troilusandcressida,1602 Fool's,1,troilusandcressida,1602 chiefest,1,troilusandcressida,1602 feud,1,troilusandcressida,1602 caduceus,1,troilusandcressida,1602 whorish,1,troilusandcressida,1602 Proserpine's,1,troilusandcressida,1602 suit,1,troilusandcressida,1602 peevish,1,troilusandcressida,1602 laying,1,troilusandcressida,1602 lions,1,troilusandcressida,1602 beasts,1,troilusandcressida,1602 prettiest,1,troilusandcressida,1602 Tortive,1,troilusandcressida,1602 peril,1,troilusandcressida,1602 persist,1,troilusandcressida,1602 Polyxena,1,troilusandcressida,1602 altars,1,troilusandcressida,1602 council,1,troilusandcressida,1602 Pleads,1,troilusandcressida,1602 thunders,1,troilusandcressida,1602 request's,1,troilusandcressida,1602 steps,1,troilusandcressida,1602 sop,1,troilusandcressida,1602 confident,1,troilusandcressida,1602 experienced,1,troilusandcressida,1602 delivery,1,troilusandcressida,1602 'a,1,troilusandcressida,1602 knotted,1,troilusandcressida,1602 unsecret,1,troilusandcressida,1602 chipp'd,1,troilusandcressida,1602 darter,1,troilusandcressida,1602 dignities,1,troilusandcressida,1602 cropp'd,1,troilusandcressida,1602 refractory,1,troilusandcressida,1602 hunter,1,troilusandcressida,1602 interview,1,troilusandcressida,1602 Heavens,1,troilusandcressida,1602 design,1,troilusandcressida,1602 surmised,1,troilusandcressida,1602 husks,1,troilusandcressida,1602 acquainted,1,troilusandcressida,1602 disgrace,1,troilusandcressida,1602 adversity,1,troilusandcressida,1602 firebrand,1,troilusandcressida,1602 middle,1,troilusandcressida,1602 reck,1,troilusandcressida,1602 pitiful,1,troilusandcressida,1602 sky,1,troilusandcressida,1602 hatch'd,1,troilusandcressida,1602 Music,1,troilusandcressida,1602 lambs,1,troilusandcressida,1602 trials,1,troilusandcressida,1602 quondam,1,troilusandcressida,1602 barefoot,1,troilusandcressida,1602 overshines,1,troilusandcressida,1602 Thanks,1,troilusandcressida,1602 fellest,1,troilusandcressida,1602 offering,1,troilusandcressida,1602 forthright,1,troilusandcressida,1602 Withdrew,1,troilusandcressida,1602 offends,1,troilusandcressida,1602 becomes,1,troilusandcressida,1602 includes,1,troilusandcressida,1602 affect,1,troilusandcressida,1602 sends,1,troilusandcressida,1602 vassalage,1,troilusandcressida,1602 suck'd,1,troilusandcressida,1602 Constringed,1,troilusandcressida,1602 indifferent,1,troilusandcressida,1602 loosed,1,troilusandcressida,1602 swelling,1,troilusandcressida,1602 colder,1,troilusandcressida,1602 perseverance,1,troilusandcressida,1602 thieves,1,troilusandcressida,1602 appetites,1,troilusandcressida,1602 rear,1,troilusandcressida,1602 shriek,1,troilusandcressida,1602 offence,1,troilusandcressida,1602 everlasting,1,troilusandcressida,1602 wedged,1,troilusandcressida,1602 wedges,1,troilusandcressida,1602 Leaps,1,troilusandcressida,1602 These,1,troilusandcressida,1602 passed,1,troilusandcressida,1602 'Great,1,troilusandcressida,1602 Handlest,1,troilusandcressida,1602 calumniate,1,troilusandcressida,1602 rump,1,troilusandcressida,1602 admission,1,troilusandcressida,1602 Styx,1,troilusandcressida,1602 baking,1,troilusandcressida,1602 courtiers,1,troilusandcressida,1602 conceit,1,troilusandcressida,1602 portly,1,troilusandcressida,1602 cousin's,1,troilusandcressida,1602 dividable,1,troilusandcressida,1602 Grow,1,troilusandcressida,1602 Swooning,1,troilusandcressida,1602 rhyme,1,troilusandcressida,1602 swoln,1,troilusandcressida,1602 excellently,1,troilusandcressida,1602 estimate,1,troilusandcressida,1602 moulded,1,troilusandcressida,1602 reversion,1,troilusandcressida,1602 Whereof,1,troilusandcressida,1602 kinswoman,1,troilusandcressida,1602 Disgrace,1,troilusandcressida,1602 rounded,1,troilusandcressida,1602 direct,1,troilusandcressida,1602 Turn,1,troilusandcressida,1602 luxurious,1,troilusandcressida,1602 absence,1,troilusandcressida,1602 erect,1,troilusandcressida,1602 parrot,1,troilusandcressida,1602 Fry,1,troilusandcressida,1602 plots,1,troilusandcressida,1602 orts,1,troilusandcressida,1602 toucheth,1,troilusandcressida,1602 mixture,1,troilusandcressida,1602 mirror'd,1,troilusandcressida,1602 actions,1,troilusandcressida,1602 publishing,1,troilusandcressida,1602 unread,1,troilusandcressida,1602 abhorr'd,1,troilusandcressida,1602 ruminate,1,troilusandcressida,1602 loose,1,troilusandcressida,1602 seeks,1,troilusandcressida,1602 Fronting,1,troilusandcressida,1602 commit,1,troilusandcressida,1602 Pardon,1,troilusandcressida,1602 complimental,1,troilusandcressida,1602 worths,1,troilusandcressida,1602 grated,1,troilusandcressida,1602 fruit,1,troilusandcressida,1602 unarms,1,troilusandcressida,1602 relation,1,troilusandcressida,1602 indulgence,1,troilusandcressida,1602 Leave,1,troilusandcressida,1602 scaffoldage,1,troilusandcressida,1602 sue,1,troilusandcressida,1602 slides,1,troilusandcressida,1602 Athens,1,troilusandcressida,1602 Embracing,1,troilusandcressida,1602 shining,1,troilusandcressida,1602 Buried,1,troilusandcressida,1602 ruth,1,troilusandcressida,1602 elder,1,troilusandcressida,1602 brach,1,troilusandcressida,1602 abundant,1,troilusandcressida,1602 palter,1,troilusandcressida,1602 brace,1,troilusandcressida,1602 Kings,1,troilusandcressida,1602 reverence,1,troilusandcressida,1602 accent,1,troilusandcressida,1602 embrasures,1,troilusandcressida,1602 imbecility,1,troilusandcressida,1602 girls,1,troilusandcressida,1602 Want,1,troilusandcressida,1602 rush,1,troilusandcressida,1602 unbridled,1,troilusandcressida,1602 cease,1,troilusandcressida,1602 feet,1,troilusandcressida,1602 descent,1,troilusandcressida,1602 fees,1,troilusandcressida,1602 valiantly,1,troilusandcressida,1602 bows,1,troilusandcressida,1602 recovery,1,troilusandcressida,1602 noblest,1,troilusandcressida,1602 flaming,1,troilusandcressida,1602 beaten,1,troilusandcressida,1602 'Faith,1,troilusandcressida,1602 claim,1,troilusandcressida,1602 saucy,1,troilusandcressida,1602 masters,1,troilusandcressida,1602 swore,1,troilusandcressida,1602 costly,1,troilusandcressida,1602 upon't,1,troilusandcressida,1602 Bull,1,troilusandcressida,1602 corrupt,1,troilusandcressida,1602 venerable,1,troilusandcressida,1602 sailor,1,troilusandcressida,1602 Doreus,1,troilusandcressida,1602 brotherhoods,1,troilusandcressida,1602 whisper,1,troilusandcressida,1602 weather,1,troilusandcressida,1602 Old,1,troilusandcressida,1602 prizer,1,troilusandcressida,1602 protestation,1,troilusandcressida,1602 choose,1,troilusandcressida,1602 wine,1,troilusandcressida,1602 wing,1,troilusandcressida,1602 lion's,1,troilusandcressida,1602 Troiluses,1,troilusandcressida,1602 porter,1,troilusandcressida,1602 boil,1,troilusandcressida,1602 Fly,1,troilusandcressida,1602 bolts,1,troilusandcressida,1602 bauble,1,troilusandcressida,1602 coins,1,troilusandcressida,1602 tax,1,troilusandcressida,1602 bourn,1,troilusandcressida,1602 flesh,1,troilusandcressida,1602 wished,1,troilusandcressida,1602 Hence,1,troilusandcressida,1602 nails,1,troilusandcressida,1602 soever,1,troilusandcressida,1602 Street,1,troilusandcressida,1602 Boreas,1,troilusandcressida,1602 tiger,1,troilusandcressida,1602 waterflies,1,troilusandcressida,1602 negligent,1,troilusandcressida,1602 Along,1,troilusandcressida,1602 rend,1,troilusandcressida,1602 Crying,1,troilusandcressida,1602 untasted,1,troilusandcressida,1602 Might,1,troilusandcressida,1602 dedicate,1,troilusandcressida,1602 Blow,1,troilusandcressida,1602 Cerberus,1,troilusandcressida,1602 seems,1,troilusandcressida,1602 Niobes,1,troilusandcressida,1602 sailing,1,troilusandcressida,1602 separates,1,troilusandcressida,1602 length,1,troilusandcressida,1602 overbulk,1,troilusandcressida,1602 sarcenet,1,troilusandcressida,1602 expressly,1,troilusandcressida,1602 damnable,1,troilusandcressida,1602 rely,1,troilusandcressida,1602 strew'd,1,troilusandcressida,1602 wholly,1,troilusandcressida,1602 borrow'dst,1,troilusandcressida,1602 commixtion,1,troilusandcressida,1602 roundly,1,troilusandcressida,1602 hates,1,troilusandcressida,1602 dolts,1,troilusandcressida,1602 goose,1,troilusandcressida,1602 dies,1,troilusandcressida,1602 Unfit,1,troilusandcressida,1602 puff'd,1,troilusandcressida,1602 Cousin,1,troilusandcressida,1602 rivets,1,troilusandcressida,1602 o'ertop,1,troilusandcressida,1602 requests,1,troilusandcressida,1602 unacquainted,1,troilusandcressida,1602 bold,1,troilusandcressida,1602 'she,1,troilusandcressida,1602 frush,1,troilusandcressida,1602 drain'd,1,troilusandcressida,1602 Accept,1,troilusandcressida,1602 mannish,1,troilusandcressida,1602 thrown,1,troilusandcressida,1602 clasp,1,troilusandcressida,1602 imperious,1,troilusandcressida,1602 cormorant,1,troilusandcressida,1602 displeasure,1,troilusandcressida,1602 execrations,1,troilusandcressida,1602 gawds,1,troilusandcressida,1602 pierce,1,troilusandcressida,1602 Pyrrhus,1,troilusandcressida,1602 sculls,1,troilusandcressida,1602 ambassador,1,troilusandcressida,1602 window,1,troilusandcressida,1602 horrors,1,troilusandcressida,1602 scratching,1,troilusandcressida,1602 answer'st,1,troilusandcressida,1602 ungracious,1,troilusandcressida,1602 knead,1,troilusandcressida,1602 loins,1,troilusandcressida,1602 harbour,1,troilusandcressida,1602 wart,1,troilusandcressida,1602 prefix'd,1,troilusandcressida,1602 baked,1,troilusandcressida,1602 merely,1,troilusandcressida,1602 bond,1,troilusandcressida,1602 Vulcan,1,troilusandcressida,1602 meat,1,troilusandcressida,1602 circumvention,1,troilusandcressida,1602 stirr'd,1,troilusandcressida,1602 avow,1,troilusandcressida,1602 consecrate,1,troilusandcressida,1602 wast,1,troilusandcressida,1602 ruled,1,troilusandcressida,1602 dear'st,1,troilusandcressida,1602 discoveries,1,troilusandcressida,1602 shedding,1,troilusandcressida,1602 sally,1,troilusandcressida,1602 chastised,1,troilusandcressida,1602 party,1,troilusandcressida,1602 Co,1,troilusandcressida,1602 Love's,1,troilusandcressida,1602 pavilions,1,troilusandcressida,1602 fumbling,1,troilusandcressida,1602 objects,1,troilusandcressida,1602 intelligence,1,troilusandcressida,1602 deserver,1,troilusandcressida,1602 project,1,troilusandcressida,1602 masculine,1,troilusandcressida,1602 convive,1,troilusandcressida,1602 nephew,1,troilusandcressida,1602 opening,1,troilusandcressida,1602 big,1,troilusandcressida,1602 calumniating,1,troilusandcressida,1602 senses,1,troilusandcressida,1602 nail,1,troilusandcressida,1602 knowledge,1,troilusandcressida,1602 youths,1,troilusandcressida,1602 nineth,1,troilusandcressida,1602 splinter,1,troilusandcressida,1602 Consort,1,troilusandcressida,1602 invert,1,troilusandcressida,1602 authority,1,troilusandcressida,1602 bastards,1,troilusandcressida,1602 burning,1,troilusandcressida,1602 larded,1,troilusandcressida,1602 Takes,1,troilusandcressida,1602 unkind,1,troilusandcressida,1602 paradoxes,1,troilusandcressida,1602 commended,1,troilusandcressida,1602 bob,1,troilusandcressida,1602 Presuming,1,troilusandcressida,1602 scurril,1,troilusandcressida,1602 enchanting,1,troilusandcressida,1602 maxim,1,troilusandcressida,1602 Titan,1,troilusandcressida,1602 planet,1,troilusandcressida,1602 bestowing,1,troilusandcressida,1602 sweeten,1,troilusandcressida,1602 foes,1,troilusandcressida,1602 Neoptolemus,1,troilusandcressida,1602 delights,1,troilusandcressida,1602 exercise,1,troilusandcressida,1602 granted,1,troilusandcressida,1602 'Twere,1,troilusandcressida,1602 pulse,1,troilusandcressida,1602 negation,1,troilusandcressida,1602 untraded,1,troilusandcressida,1602 deformed,1,troilusandcressida,1602 Am,1,troilusandcressida,1602 altogether,1,troilusandcressida,1602 reverberates,1,troilusandcressida,1602 morrow's,1,troilusandcressida,1602 activity,1,troilusandcressida,1602 fool's,1,troilusandcressida,1602 forge,1,troilusandcressida,1602 transformation,1,troilusandcressida,1602 mutiny,1,troilusandcressida,1602 Bi,1,troilusandcressida,1602 'sweet',1,troilusandcressida,1602 bow,1,troilusandcressida,1602 loath,1,troilusandcressida,1602 eternal,1,troilusandcressida,1602 dragg'd,1,troilusandcressida,1602 bereave,1,troilusandcressida,1602 suffers,1,troilusandcressida,1602 sequent,1,troilusandcressida,1602 alarum,1,troilusandcressida,1602 lance,1,troilusandcressida,1602 Hope,1,troilusandcressida,1602 assault,1,troilusandcressida,1602 Still,1,troilusandcressida,1602 hem,1,troilusandcressida,1602 Having,1,troilusandcressida,1602 borrows,1,troilusandcressida,1602 Lo,1,troilusandcressida,1602 prodigious,1,troilusandcressida,1602 secretly,1,troilusandcressida,1602 O',1,troilusandcressida,1602 warrior,1,troilusandcressida,1602 sinew,1,troilusandcressida,1602 imagined,1,troilusandcressida,1602 Severals,1,troilusandcressida,1602 siege,1,troilusandcressida,1602 eternity,1,troilusandcressida,1602 Fails,1,troilusandcressida,1602 subscribe,1,troilusandcressida,1602 doves,1,troilusandcressida,1602 in't,1,troilusandcressida,1602 butt,1,troilusandcressida,1602 in's,1,troilusandcressida,1602 denies,1,troilusandcressida,1602 kept,1,troilusandcressida,1602 'would,1,troilusandcressida,1602 creature,1,troilusandcressida,1602 star,1,troilusandcressida,1602 denied,1,troilusandcressida,1602 fantastic,1,troilusandcressida,1602 exploit's,1,troilusandcressida,1602 per,1,troilusandcressida,1602 begun,1,troilusandcressida,1602 Hey,1,troilusandcressida,1602 pitied,1,troilusandcressida,1602 translate,1,troilusandcressida,1602 Hem,1,troilusandcressida,1602 Derive,1,troilusandcressida,1602 Asses,1,troilusandcressida,1602 finds,1,troilusandcressida,1602 difficulty,1,troilusandcressida,1602 worest,1,troilusandcressida,1602 fitchew,1,troilusandcressida,1602 changed,1,troilusandcressida,1602 iteration,1,troilusandcressida,1602 enter'd,1,troilusandcressida,1602 remainder,1,troilusandcressida,1602 tear,1,troilusandcressida,1602 Something,1,troilusandcressida,1602 medicine,1,troilusandcressida,1602 flowers,1,troilusandcressida,1602 harness'd,1,troilusandcressida,1602 bee,1,troilusandcressida,1602 Ho,1,troilusandcressida,1602 popp'd,1,troilusandcressida,1602 meant,1,troilusandcressida,1602 IX,1,troilusandcressida,1602 blest,1,troilusandcressida,1602 winnow'd,1,troilusandcressida,1602 ulcer,1,troilusandcressida,1602 surely,1,troilusandcressida,1602 quick,1,troilusandcressida,1602 cuckolds,1,troilusandcressida,1602 bruised,1,troilusandcressida,1602 path,1,troilusandcressida,1602 east,1,troilusandcressida,1602 added,1,troilusandcressida,1602 pia,1,troilusandcressida,1602 pie,1,troilusandcressida,1602 greasy,1,troilusandcressida,1602 meals,1,troilusandcressida,1602 pin,1,troilusandcressida,1602 mealy,1,troilusandcressida,1602 enrage,1,troilusandcressida,1602 Has,1,troilusandcressida,1602 pash,1,troilusandcressida,1602 sleeveless,1,troilusandcressida,1602 changes,1,troilusandcressida,1602 Condition,1,troilusandcressida,1602 Frown,1,troilusandcressida,1602 Divides,1,troilusandcressida,1602 Is't,1,troilusandcressida,1602 Up,1,troilusandcressida,1602 ague,1,troilusandcressida,1602 prompts,1,troilusandcressida,1602 nice,1,troilusandcressida,1602 parch,1,troilusandcressida,1602 VI,1,troilusandcressida,1602 yourselves,1,troilusandcressida,1602 pot,1,troilusandcressida,1602 witless,1,troilusandcressida,1602 sparrows,1,troilusandcressida,1602 monstrous,1,troilusandcressida,1602 Roguery,1,troilusandcressida,1602 polluted,1,troilusandcressida,1602 devotion,1,troilusandcressida,1602 nobly,1,troilusandcressida,1602 neglection,1,troilusandcressida,1602 attentive,1,troilusandcressida,1602 wallow,1,troilusandcressida,1602 propension,1,troilusandcressida,1602 titled,1,troilusandcressida,1602 begot,1,troilusandcressida,1602 jaundice,1,troilusandcressida,1602 corrupted,1,troilusandcressida,1602 kiss'd,1,troilusandcressida,1602 fashionable,1,troilusandcressida,1602 sirs,1,troilusandcressida,1602 titles,1,troilusandcressida,1602 courteous,1,troilusandcressida,1602 Adieu,1,troilusandcressida,1602 theft,1,troilusandcressida,1602 strain'd,1,troilusandcressida,1602 annoyance,1,troilusandcressida,1602 madmen,1,troilusandcressida,1602 espies,1,troilusandcressida,1602 whatever,1,troilusandcressida,1602 liberality,1,troilusandcressida,1602 Force,1,troilusandcressida,1602 wrinkle,1,troilusandcressida,1602 sorry,1,troilusandcressida,1602 unworthiest,1,troilusandcressida,1602 cognition,1,troilusandcressida,1602 week,1,troilusandcressida,1602 buss,1,troilusandcressida,1602 busy,1,troilusandcressida,1602 lavolt,1,troilusandcressida,1602 preventions,1,troilusandcressida,1602 mankind,1,troilusandcressida,1602 was't,1,troilusandcressida,1602 metal,1,troilusandcressida,1602 humane,1,troilusandcressida,1602 leather,1,troilusandcressida,1602 Jove's,1,troilusandcressida,1602 Remuneration,1,troilusandcressida,1602 Heart,1,troilusandcressida,1602 loads,1,troilusandcressida,1602 Present,1,troilusandcressida,1602 burs,1,troilusandcressida,1602 suffer'd,1,troilusandcressida,1602 'Twould,1,troilusandcressida,1602 incursions,1,troilusandcressida,1602 perdition,1,troilusandcressida,1602 Writing,1,troilusandcressida,1602 burn,1,troilusandcressida,1602 sorts,1,troilusandcressida,1602 kindness,1,troilusandcressida,1602 truncheon,1,troilusandcressida,1602 immediately,1,troilusandcressida,1602 cat,1,troilusandcressida,1602 crush,1,troilusandcressida,1602 breathing,1,troilusandcressida,1602 children,1,troilusandcressida,1602 Distasted,1,troilusandcressida,1602 naming,1,troilusandcressida,1602 altar,1,troilusandcressida,1602 extended,1,troilusandcressida,1602 defects,1,troilusandcressida,1602 interrupt,1,troilusandcressida,1602 tables,1,troilusandcressida,1602 Bold,1,troilusandcressida,1602 gaze,1,troilusandcressida,1602 woful,1,troilusandcressida,1602 latest,1,troilusandcressida,1602 somewhat,1,troilusandcressida,1602 Save,1,troilusandcressida,1602 Surety,1,troilusandcressida,1602 gory,1,troilusandcressida,1602 Entreat,1,troilusandcressida,1602 Wished,1,troilusandcressida,1602 Thoas,1,troilusandcressida,1602 people,1,troilusandcressida,1602 Labouring,1,troilusandcressida,1602 beyond,1,troilusandcressida,1602 modestly,1,troilusandcressida,1602 perilous,1,troilusandcressida,1602 games,1,troilusandcressida,1602 unlock,1,troilusandcressida,1602 expecters,1,troilusandcressida,1602 mainly,1,troilusandcressida,1602 disdainfully,1,troilusandcressida,1602 jealous,1,troilusandcressida,1602 multipotent,1,troilusandcressida,1602 waving,1,troilusandcressida,1602 sumptuous,1,troilusandcressida,1602 plough,1,troilusandcressida,1602 causeth,1,troilusandcressida,1602 foulest,1,troilusandcressida,1602 Drawing,1,troilusandcressida,1602 tickled,1,troilusandcressida,1602 sieve,1,troilusandcressida,1602 pun,1,troilusandcressida,1602 Boldness,1,troilusandcressida,1602 serpent,1,troilusandcressida,1602 persuasion,1,troilusandcressida,1602 carpenter,1,troilusandcressida,1602 Insisture,1,troilusandcressida,1602 'no,1,troilusandcressida,1602 silk,1,troilusandcressida,1602 fifth,1,troilusandcressida,1602 murrain,1,troilusandcressida,1602 kernel,1,troilusandcressida,1602 quails,1,troilusandcressida,1602 corresponsive,1,troilusandcressida,1602 beget,1,troilusandcressida,1602 discomfort,1,troilusandcressida,1602 mystery,1,troilusandcressida,1602 beef,1,troilusandcressida,1602 fathoms,1,troilusandcressida,1602 Upbraid,1,troilusandcressida,1602 longer,1,troilusandcressida,1602 O'er,1,troilusandcressida,1602 swing,1,troilusandcressida,1602 lurks,1,troilusandcressida,1602 couch'd,1,troilusandcressida,1602 Cressids,1,troilusandcressida,1602 stronger,1,troilusandcressida,1602 pains,1,troilusandcressida,1602 paint,1,troilusandcressida,1602 ensue,1,troilusandcressida,1602 hisses,1,troilusandcressida,1602 gate,1,troilusandcressida,1602 Fraught,1,troilusandcressida,1602 beds,1,troilusandcressida,1602 conflux,1,troilusandcressida,1602 sister's,1,troilusandcressida,1602 stretch,1,troilusandcressida,1602 pitch,1,troilusandcressida,1602 wells,1,troilusandcressida,1602 exposure,1,troilusandcressida,1602 appalled,1,troilusandcressida,1602 changeful,1,troilusandcressida,1602 Sans,1,troilusandcressida,1602 cetera,1,troilusandcressida,1602 vantage,1,troilusandcressida,1602 ashamed,1,troilusandcressida,1602 gash,1,troilusandcressida,1602 extenuates,1,troilusandcressida,1602 mower's,1,troilusandcressida,1602 owest,1,troilusandcressida,1602 traded,1,troilusandcressida,1602 immortal,1,troilusandcressida,1602 consanguinity,1,troilusandcressida,1602 uplifted,1,troilusandcressida,1602 hamstring,1,troilusandcressida,1602 headstrong,1,troilusandcressida,1602 loud'st,1,troilusandcressida,1602 dolours,1,troilusandcressida,1602 afoot,1,troilusandcressida,1602 fumbles,1,troilusandcressida,1602 oxen,1,troilusandcressida,1602 tower,1,troilusandcressida,1602 Same,1,troilusandcressida,1602 combatant,1,troilusandcressida,1602 uses,1,troilusandcressida,1602 rivet,1,troilusandcressida,1602 indistinguishable,1,troilusandcressida,1602 noted,1,troilusandcressida,1602 overhold,1,troilusandcressida,1602 eagles,1,troilusandcressida,1602 storm,1,troilusandcressida,1602 continued,1,troilusandcressida,1602 taints,1,troilusandcressida,1602 God's,1,troilusandcressida,1602 banqueting,1,troilusandcressida,1602 Approve,1,troilusandcressida,1602 deem,1,troilusandcressida,1602 virgin,1,troilusandcressida,1602 conquering,1,troilusandcressida,1602 prophetic,1,troilusandcressida,1602 enchants,1,troilusandcressida,1602 instant,1,troilusandcressida,1602 Follows,1,troilusandcressida,1602 harness,1,troilusandcressida,1602 wretch,1,troilusandcressida,1602 image,1,troilusandcressida,1602 Waked,1,troilusandcressida,1602 unpractised,1,troilusandcressida,1602 Fortune,1,troilusandcressida,1602 aim,1,troilusandcressida,1602 Durst,1,troilusandcressida,1602 Soldiers,1,troilusandcressida,1602 torments,1,troilusandcressida,1602 doff,1,troilusandcressida,1602 gift,1,troilusandcressida,1602 tyrant,1,troilusandcressida,1602 Mock,1,troilusandcressida,1602 superior,1,troilusandcressida,1602 raise,1,troilusandcressida,1602 disorb'd,1,troilusandcressida,1602 excellent,1,troilusandcressida,1602 embraces,1,troilusandcressida,1602 instances,1,troilusandcressida,1602 Pard,1,troilusandcressida,1602 repent,1,troilusandcressida,1602 forbids,1,troilusandcressida,1602 oddly,1,troilusandcressida,1602 repute,1,troilusandcressida,1602 carrion,1,troilusandcressida,1602 sheep,1,troilusandcressida,1602 truest,1,troilusandcressida,1602 allege,1,troilusandcressida,1602 debt,1,troilusandcressida,1602 stool,1,troilusandcressida,1602 misprizing,1,troilusandcressida,1602 beam,1,troilusandcressida,1602 et,1,troilusandcressida,1602 Unless,1,troilusandcressida,1602 swearing,1,troilusandcressida,1602 Breaks,1,troilusandcressida,1602 encounterers,1,troilusandcressida,1602 player,1,troilusandcressida,1602 qualifying,1,troilusandcressida,1602 Beggar,1,troilusandcressida,1602 frenzy's,1,troilusandcressida,1602 Admits,1,troilusandcressida,1602 wallet,1,troilusandcressida,1602 obligation,1,troilusandcressida,1602 describes,1,troilusandcressida,1602 autumn,1,troilusandcressida,1602 vouchsafe,1,troilusandcressida,1602 aims,1,troilusandcressida,1602 victory,1,troilusandcressida,1602 commanders,1,troilusandcressida,1602 Feed,1,troilusandcressida,1602 seeing,1,troilusandcressida,1602 enginer,1,troilusandcressida,1602 'Fore,1,troilusandcressida,1602 Wrinkles,1,troilusandcressida,1602 co,1,troilusandcressida,1602 Besides,1,troilusandcressida,1602 liars,1,troilusandcressida,1602 ruthful,1,troilusandcressida,1602 trash,1,troilusandcressida,1602 Luxury,1,troilusandcressida,1602 rhymes,1,troilusandcressida,1602 Office,1,troilusandcressida,1602 lend,1,troilusandcressida,1602 Alexander,1,troilusandcressida,1602 poise,1,troilusandcressida,1602 boast,1,troilusandcressida,1602 outwardly,1,troilusandcressida,1602 destruction,1,troilusandcressida,1602 nettle,1,troilusandcressida,1602 thefts,1,troilusandcressida,1602 waist,1,troilusandcressida,1602 expects,1,troilusandcressida,1602 torches,1,troilusandcressida,1602 bounties,1,troilusandcressida,1602 defence,1,troilusandcressida,1602 ice,1,troilusandcressida,1602 generally,1,troilusandcressida,1602 Rest,1,troilusandcressida,1602 directs,1,troilusandcressida,1602 hell's,1,troilusandcressida,1602 Divide,1,troilusandcressida,1602 Feel,1,troilusandcressida,1602 List,1,troilusandcressida,1602 b',1,troilusandcressida,1602 restrains,1,troilusandcressida,1602 Swords,1,troilusandcressida,1602 spongy,1,troilusandcressida,1602 vaunt,1,troilusandcressida,1602 memory,1,troilusandcressida,1602 edifies,1,troilusandcressida,1602 privilege,1,troilusandcressida,1602 approach,1,troilusandcressida,1602 heating,1,troilusandcressida,1602 observant,1,troilusandcressida,1602 forget,1,troilusandcressida,1602 growth,1,troilusandcressida,1602 temperate,1,troilusandcressida,1602 Neptune's,1,troilusandcressida,1602 bless'd,1,troilusandcressida,1602 colic,1,troilusandcressida,1602 correct,1,troilusandcressida,1602 cures,1,troilusandcressida,1602 curer,1,troilusandcressida,1602 frights,1,troilusandcressida,1602 cliff,1,troilusandcressida,1602 missions,1,troilusandcressida,1602 attending,1,troilusandcressida,1602 soaring,1,troilusandcressida,1602 darking,1,troilusandcressida,1602 barbarism,1,troilusandcressida,1602 approbation,1,troilusandcressida,1602 railed,1,troilusandcressida,1602 bites,1,troilusandcressida,1602 Though't,1,troilusandcressida,1602 necessity,1,troilusandcressida,1602 boasting,1,troilusandcressida,1602 strait,1,troilusandcressida,1602 o'ergalled,1,troilusandcressida,1602 suffices,1,troilusandcressida,1602 Deliver'd,1,troilusandcressida,1602 idly,1,troilusandcressida,1602 sceptres,1,troilusandcressida,1602 wrinkled,1,troilusandcressida,1602 abide,1,troilusandcressida,1602 bitch,1,troilusandcressida,1602 Myself,1,troilusandcressida,1602 blackness,1,troilusandcressida,1602 trail,1,troilusandcressida,1602 morn,1,troilusandcressida,1602 perfectly,1,troilusandcressida,1602 train,1,troilusandcressida,1602 enmity,1,troilusandcressida,1602 stickler,1,troilusandcressida,1602 tamed,1,troilusandcressida,1602 glance,1,troilusandcressida,1602 outfly,1,troilusandcressida,1602 hadst,1,troilusandcressida,1602 offences,1,troilusandcressida,1602 Success,1,troilusandcressida,1602 ink,1,troilusandcressida,1602 challenged,1,troilusandcressida,1602 soilure,1,troilusandcressida,1602 'may,1,troilusandcressida,1602 shrills,1,troilusandcressida,1602 amply,1,troilusandcressida,1602 superstitious,1,troilusandcressida,1602 moor,1,troilusandcressida,1602 inseparate,1,troilusandcressida,1602 Appals,1,troilusandcressida,1602 drift,1,troilusandcressida,1602 beholding,1,troilusandcressida,1602 drayman,1,troilusandcressida,1602 sweetness,1,troilusandcressida,1602 Proposed,1,troilusandcressida,1602 shrieking,1,troilusandcressida,1602 dumbness,1,troilusandcressida,1602 lest,1,troilusandcressida,1602 Sennet,1,troilusandcressida,1602 dispose,1,troilusandcressida,1602 swains,1,troilusandcressida,1602 quoted,1,troilusandcressida,1602 weakest,1,troilusandcressida,1602 knot,1,troilusandcressida,1602 spend,1,troilusandcressida,1602 twenty,1,troilusandcressida,1602 'Troilus',1,troilusandcressida,1602 blue,1,troilusandcressida,1602 strains,1,troilusandcressida,1602 Grace,1,troilusandcressida,1602 necessary,1,troilusandcressida,1602 local,1,troilusandcressida,1602 wails,1,troilusandcressida,1602 forceless,1,troilusandcressida,1602 smart,1,troilusandcressida,1602 statues,1,troilusandcressida,1602 commandment,1,troilusandcressida,1602 jerkin,1,troilusandcressida,1602 slack,1,troilusandcressida,1602 journey,1,troilusandcressida,1602 disposer's,1,troilusandcressida,1602 pure,1,troilusandcressida,1602 natures,1,troilusandcressida,1602 Ariachne's,1,troilusandcressida,1602 sanctimonies,1,troilusandcressida,1602 incontinent,1,troilusandcressida,1602 toad,1,troilusandcressida,1602 Fresh,1,troilusandcressida,1602 wisest,1,troilusandcressida,1602 climb,1,troilusandcressida,1602 tucket,1,troilusandcressida,1602 rivelled,1,troilusandcressida,1602 robbed,1,troilusandcressida,1602 gravel,1,troilusandcressida,1602 hart,1,troilusandcressida,1602 hindmost,1,troilusandcressida,1602 might',1,troilusandcressida,1602 attach'd,1,troilusandcressida,1602 tempted,1,troilusandcressida,1602 fierce,1,troilusandcressida,1602 hare,1,troilusandcressida,1602 ability,1,troilusandcressida,1602 scratch,1,troilusandcressida,1602 enrapt,1,troilusandcressida,1602 outward,1,troilusandcressida,1602 voluntarily,1,troilusandcressida,1602 bends,1,troilusandcressida,1602 front,1,troilusandcressida,1602 cherubims,1,troilusandcressida,1602 wards,1,troilusandcressida,1602 strutting,1,troilusandcressida,1602 string,1,troilusandcressida,1602 spleens,1,troilusandcressida,1602 brokers,1,troilusandcressida,1602 flinch,1,troilusandcressida,1602 affects,1,troilusandcressida,1602 hale,1,troilusandcressida,1602 unarmed,1,troilusandcressida,1602 transcends,1,troilusandcressida,1602 poorly,1,troilusandcressida,1602 labouring,1,troilusandcressida,1602 adders,1,troilusandcressida,1602 Diana's,1,troilusandcressida,1602 kingly,1,troilusandcressida,1602 exasperate,1,troilusandcressida,1602 knit,1,troilusandcressida,1602 signify,1,troilusandcressida,1602 nearer,1,troilusandcressida,1602 wares,1,troilusandcressida,1602 Manly,1,troilusandcressida,1602 bloodied,1,troilusandcressida,1602 shallow,1,troilusandcressida,1602 se,1,troilusandcressida,1602 nation,1,troilusandcressida,1602 justles,1,troilusandcressida,1602 leers,1,troilusandcressida,1602 weeds,1,troilusandcressida,1602 trade,1,troilusandcressida,1602 Trumpets,1,troilusandcressida,1602 shun,1,troilusandcressida,1602 distains,1,troilusandcressida,1602 reach,1,troilusandcressida,1602 skilless,1,troilusandcressida,1602 deny,1,troilusandcressida,1602 cited,1,troilusandcressida,1602 four,1,troilusandcressida,1602 firstlings,1,troilusandcressida,1602 ladder,1,troilusandcressida,1602 sighing,1,troilusandcressida,1602 porridge,1,troilusandcressida,1602 accord,1,troilusandcressida,1602 rejoindure,1,troilusandcressida,1602 wranglers,1,troilusandcressida,1602 knocking,1,troilusandcressida,1602 drave,1,troilusandcressida,1602 Salutes,1,troilusandcressida,1602 Prizes,1,troilusandcressida,1602 foragers,1,troilusandcressida,1602 particulars,1,troilusandcressida,1602 Oyes,1,troilusandcressida,1602 momentary,1,troilusandcressida,1602 During,1,troilusandcressida,1602 barkest,1,troilusandcressida,1602 peacock,1,troilusandcressida,1602 dismes,1,troilusandcressida,1602 shell,1,troilusandcressida,1602 spotted,1,troilusandcressida,1602 wisdoms,1,troilusandcressida,1602 potency,1,troilusandcressida,1602 acquaintance,1,troilusandcressida,1602 guardian,1,troilusandcressida,1602 'Loo,1,troilusandcressida,1602 First,1,troilusandcressida,1602 casque,1,troilusandcressida,1602 expect,1,troilusandcressida,1602 rudely,1,troilusandcressida,1602 frightening,1,troilusandcressida,1602 opes,1,troilusandcressida,1602 Palamedes,1,troilusandcressida,1602 pander's,1,troilusandcressida,1602 catarrhs,1,troilusandcressida,1602 refused,1,troilusandcressida,1602 brothers,1,troilusandcressida,1602 strawy,1,troilusandcressida,1602 clotpoles,1,troilusandcressida,1602 prepare,1,troilusandcressida,1602 nightly,1,troilusandcressida,1602 Commend,1,troilusandcressida,1602 Flowing,1,troilusandcressida,1602 riddance,1,troilusandcressida,1602 harder,1,troilusandcressida,1602 shaked,1,troilusandcressida,1602 shent,1,troilusandcressida,1602 pair,1,troilusandcressida,1602 stranger,1,troilusandcressida,1602 glozed,1,troilusandcressida,1602 delight,1,troilusandcressida,1602 eases,1,troilusandcressida,1602 return'd,1,troilusandcressida,1602 fiery,1,troilusandcressida,1602 spit,1,troilusandcressida,1602 diest,1,troilusandcressida,1602 Night,1,troilusandcressida,1602 extremest,1,troilusandcressida,1602 mended,1,troilusandcressida,1602 temporize,1,troilusandcressida,1602 Ajax',1,troilusandcressida,1602 Dispraise,1,troilusandcressida,1602 apt,1,troilusandcressida,1602 allayment,1,troilusandcressida,1602 forsworn,1,troilusandcressida,1602 frown,1,troilusandcressida,1602 owes,1,troilusandcressida,1602 shakes,1,troilusandcressida,1602 entertain'd,1,troilusandcressida,1602 devise,1,troilusandcressida,1602 sanctify,1,troilusandcressida,1602 bosom,1,troilusandcressida,1602 determination,1,troilusandcressida,1602 mortals,1,troilusandcressida,1602 Minds,1,troilusandcressida,1602 except,1,troilusandcressida,1602 palating,1,troilusandcressida,1602 nectar,1,troilusandcressida,1602 moan,1,troilusandcressida,1602 food,1,troilusandcressida,1602 contain,1,troilusandcressida,1602 bearer,1,troilusandcressida,1602 courses,1,troilusandcressida,1602 push,1,troilusandcressida,1602 rear'd,1,troilusandcressida,1602 louse,1,troilusandcressida,1602 maiden,1,troilusandcressida,1602 forms,1,troilusandcressida,1602 besotted,1,troilusandcressida,1602 mayst,1,troilusandcressida,1602 ebbs,1,troilusandcressida,1602 feverous,1,troilusandcressida,1602 begets,1,troilusandcressida,1602 term,1,troilusandcressida,1602 forcibly,1,troilusandcressida,1602 hive,1,troilusandcressida,1602 Dexterity,1,troilusandcressida,1602 soundest,1,troilusandcressida,1602 defended,1,troilusandcressida,1602 Amphimachus,1,troilusandcressida,1602 unbruised,1,troilusandcressida,1602 trick,1,troilusandcressida,1602 bought,1,troilusandcressida,1602 distinction,1,troilusandcressida,1602 prophetically,1,troilusandcressida,1602 clearer,1,troilusandcressida,1602 undone,1,troilusandcressida,1602 partial,1,troilusandcressida,1602 theirs,1,troilusandcressida,1602 Think'st,1,troilusandcressida,1602 glib,1,troilusandcressida,1602 alacrity,1,troilusandcressida,1602 ransack,1,troilusandcressida,1602 Sirrah,1,troilusandcressida,1602 native,1,troilusandcressida,1602 dilated,1,troilusandcressida,1602 lees,1,troilusandcressida,1602 ministers,1,troilusandcressida,1602 wights,1,troilusandcressida,1602 cheque,1,troilusandcressida,1602 reinforcement,1,troilusandcressida,1602 chides,1,troilusandcressida,1602 date's,1,troilusandcressida,1602 spiteful,1,troilusandcressida,1602 Richer,1,troilusandcressida,1602 porpentine,1,troilusandcressida,1602 hiss,1,troilusandcressida,1602 wooing,1,troilusandcressida,1602 Scare,1,troilusandcressida,1602 longing,1,troilusandcressida,1602 ridiculous,1,troilusandcressida,1602 prevents,1,troilusandcressida,1602 hazard,1,troilusandcressida,1602 Ask,1,troilusandcressida,1602 excel,1,troilusandcressida,1602 enjoy,1,troilusandcressida,1602 tasted,1,troilusandcressida,1602 sleave,1,troilusandcressida,1602 Degree,1,troilusandcressida,1602 guest,1,troilusandcressida,1602 tastes,1,troilusandcressida,1602 root,1,troilusandcressida,1602 fair'st,1,troilusandcressida,1602 moves,1,troilusandcressida,1602 jaws,1,troilusandcressida,1602 Bids,1,troilusandcressida,1602 fooling,1,troilusandcressida,1602 consumed,1,troilusandcressida,1602 nobles,1,troilusandcressida,1602 nobler,1,troilusandcressida,1602 requited,1,troilusandcressida,1602 Disguise,1,troilusandcressida,1602 luck,1,troilusandcressida,1602 understand'st,1,troilusandcressida,1602 frenzy,1,troilusandcressida,1602 Comes,1,troilusandcressida,1602 elected,1,troilusandcressida,1602 active,1,troilusandcressida,1602 room,1,troilusandcressida,1602 Command,1,troilusandcressida,1602 render'd,1,troilusandcressida,1602 tarre,1,troilusandcressida,1602 spritely,1,troilusandcressida,1602 esperance,1,troilusandcressida,1602 condemn'd,1,troilusandcressida,1602 Diomedes',1,troilusandcressida,1602 murderer's,1,troilusandcressida,1602 Phoebus,1,troilusandcressida,1602 befriends,1,troilusandcressida,1602 Madam,1,troilusandcressida,1602 vinewedst,1,troilusandcressida,1602 cradles,1,troilusandcressida,1602 Tearing,1,troilusandcressida,1602 mail,1,troilusandcressida,1602 breeds,1,troilusandcressida,1602 incurable,1,troilusandcressida,1602 heavier,1,troilusandcressida,1602 securely,1,troilusandcressida,1602 syllable,1,troilusandcressida,1602 Wounds,1,troilusandcressida,1602 fiddler,1,troilusandcressida,1602 shameful,1,troilusandcressida,1602 peers,1,troilusandcressida,1602 castle,1,troilusandcressida,1602 attributes,1,troilusandcressida,1602 albeit,1,troilusandcressida,1602 barbarian,1,troilusandcressida,1602 unloose,1,troilusandcressida,1602 Concur,1,troilusandcressida,1602 mastiffs,1,troilusandcressida,1602 embracement,1,troilusandcressida,1602 errors,1,troilusandcressida,1602 hind,1,troilusandcressida,1602 report,1,troilusandcressida,1602 tokens,1,troilusandcressida,1602 nations,1,troilusandcressida,1602 Infect,1,troilusandcressida,1602 idiots,1,troilusandcressida,1602 ramp,1,troilusandcressida,1602 rose,1,troilusandcressida,1602 rascals,1,troilusandcressida,1602 needle,1,troilusandcressida,1602 calm'd,1,troilusandcressida,1602 clamour,1,troilusandcressida,1602 finest,1,troilusandcressida,1602 clapp'd,1,troilusandcressida,1602 Tamer,1,troilusandcressida,1602 build,1,troilusandcressida,1602 Genius,1,troilusandcressida,1602 couldst,1,troilusandcressida,1602 tapster's,1,troilusandcressida,1602 distance,1,troilusandcressida,1602 mountains,1,troilusandcressida,1602 ticklish,1,troilusandcressida,1602 cudgelling,1,troilusandcressida,1602 retires,1,troilusandcressida,1602 Guardian,1,troilusandcressida,1602 built,1,troilusandcressida,1602 rape,1,troilusandcressida,1602 crowded,1,troilusandcressida,1602 disgorge,1,troilusandcressida,1602 Pleased,1,troilusandcressida,1602 unknown,1,troilusandcressida,1602 Better,1,troilusandcressida,1602 seizure,1,troilusandcressida,1602 pilots,1,troilusandcressida,1602 Else,1,troilusandcressida,1602 square,1,troilusandcressida,1602 Bias,1,troilusandcressida,1602 apply,1,troilusandcressida,1602 colossus,1,troilusandcressida,1602 lack'd,1,troilusandcressida,1602 Chetas,1,troilusandcressida,1602 croak,1,troilusandcressida,1602 beast,1,troilusandcressida,1602 waken,1,troilusandcressida,1602 Crack,1,troilusandcressida,1602 own's,1,troilusandcressida,1602 rare,1,troilusandcressida,1602 Opposed,1,troilusandcressida,1602 Cressida's,1,troilusandcressida,1602 imminent,1,troilusandcressida,1602 damage,1,troilusandcressida,1602 Bade,1,troilusandcressida,1602 Henceforth,1,troilusandcressida,1602 blackberry,1,troilusandcressida,1602 Grasps,1,troilusandcressida,1602 crushed,1,troilusandcressida,1602 dress,1,troilusandcressida,1602 aspiration,1,troilusandcressida,1602 drest,1,troilusandcressida,1602 penny,1,troilusandcressida,1602 formless,1,troilusandcressida,1602 fulfilling,1,troilusandcressida,1602 scale,1,troilusandcressida,1602 destructions,1,troilusandcressida,1602 Injurious,1,troilusandcressida,1602 shaking,1,troilusandcressida,1602 Pointing,1,troilusandcressida,1602 rate,1,troilusandcressida,1602 Forestall,1,troilusandcressida,1602 foresaw,1,troilusandcressida,1602 major,1,troilusandcressida,1602 tickling,1,troilusandcressida,1602 majesty,1,troilusandcressida,1602 cloths,1,troilusandcressida,1602 matchless,1,troilusandcressida,1602 daily,1,troilusandcressida,1602 slipp'd,1,troilusandcressida,1602 brazen,1,troilusandcressida,1602 rash,1,troilusandcressida,1602 depravation,1,troilusandcressida,1602 bears,1,troilusandcressida,1602 tender,1,troilusandcressida,1602 tigers,1,troilusandcressida,1602 spread,1,troilusandcressida,1602 almond,1,troilusandcressida,1602 gated,1,troilusandcressida,1602 wenching,1,troilusandcressida,1602 scar,1,troilusandcressida,1602 traitors,1,troilusandcressida,1602 gorget,1,troilusandcressida,1602 tenths,1,troilusandcressida,1602 communicate,1,troilusandcressida,1602 armourer,1,troilusandcressida,1602 tenor,1,troilusandcressida,1602 Beginning,1,troilusandcressida,1602 year,1,troilusandcressida,1602 enlard,1,troilusandcressida,1602 chaos,1,troilusandcressida,1602 belching,1,troilusandcressida,1602 travels,1,troilusandcressida,1602 extant,1,troilusandcressida,1602 pregnant,1,troilusandcressida,1602 ascribe,1,troilusandcressida,1602 Wear,1,troilusandcressida,1602 wandering,1,troilusandcressida,1602 pashed,1,troilusandcressida,1602 Trojans',1,troilusandcressida,1602 substance,1,troilusandcressida,1602 chickens,1,troilusandcressida,1602 foresee,1,troilusandcressida,1602 Court,1,troilusandcressida,1602 idolatry,1,troilusandcressida,1602 untune,1,troilusandcressida,1602 Sit,1,troilusandcressida,1602 perused,1,troilusandcressida,1602 visage,1,troilusandcressida,1602 learning,1,troilusandcressida,1602 narrow,1,troilusandcressida,1602 All's,1,troilusandcressida,1602 nut,1,troilusandcressida,1602 gallantry,1,troilusandcressida,1602 skein,1,troilusandcressida,1602 High,1,troilusandcressida,1602 befriended,1,troilusandcressida,1602 misers,1,troilusandcressida,1602 perform,1,troilusandcressida,1602 Add,1,troilusandcressida,1602 presented,1,troilusandcressida,1602 evermore,1,troilusandcressida,1602 Aquilon,1,troilusandcressida,1602 dares,1,troilusandcressida,1602 scars,1,troilusandcressida,1602 be't,1,troilusandcressida,1602 oblique,1,troilusandcressida,1602 gouty,1,troilusandcressida,1602 pelter,1,troilusandcressida,1602 islands,1,troilusandcressida,1602 Sparta's,1,troilusandcressida,1602 avouch,1,troilusandcressida,1602 famous,1,troilusandcressida,1602 Degrees,1,troilusandcressida,1602 mouse,1,troilusandcressida,1602 erudition,1,troilusandcressida,1602 Health,1,troilusandcressida,1602 turbulence,1,troilusandcressida,1602 utters,1,troilusandcressida,1602 sociable,1,troilusandcressida,1602 turpitude,1,troilusandcressida,1602 Crams,1,troilusandcressida,1602 Knows,1,troilusandcressida,1602 gladness,1,troilusandcressida,1602 appointment,1,troilusandcressida,1602 Amidst,1,troilusandcressida,1602 quarrel's,1,troilusandcressida,1602 chime,1,troilusandcressida,1602 fragments,1,troilusandcressida,1602 scab,1,troilusandcressida,1602 err,1,troilusandcressida,1602 airy,1,troilusandcressida,1602 device,1,troilusandcressida,1602 paced,1,troilusandcressida,1602 strife,1,troilusandcressida,1602 admits,1,troilusandcressida,1602 goblins,1,troilusandcressida,1602 daylight,1,troilusandcressida,1602 doors,1,troilusandcressida,1602 leaven,1,troilusandcressida,1602 leaves,1,troilusandcressida,1602 Rode,1,troilusandcressida,1602 mill,1,troilusandcressida,1602 accepted,1,troilusandcressida,1602 eld,1,troilusandcressida,1602 exchange,1,troilusandcressida,1602 wiser,1,troilusandcressida,1602 mane,1,troilusandcressida,1602 disdain'd,1,troilusandcressida,1602 'In,1,troilusandcressida,1602 ungently,1,troilusandcressida,1602 prodigal's,1,troilusandcressida,1602 stride,1,troilusandcressida,1602 dusty,1,troilusandcressida,1602 solid,1,troilusandcressida,1602 stars,1,troilusandcressida,1602 qualities,1,troilusandcressida,1602 satisfaction,1,troilusandcressida,1602 shield,1,troilusandcressida,1602 Instructed,1,troilusandcressida,1602 tempest,1,troilusandcressida,1602 Cobloaf,1,troilusandcressida,1602 watched,1,troilusandcressida,1602 Greeks',1,troilusandcressida,1602 towers,1,troilusandcressida,1602 Polydamas,1,troilusandcressida,1602 'Deliver,1,troilusandcressida,1602 performs,1,troilusandcressida,1602 imminence,1,troilusandcressida,1602 male,1,troilusandcressida,1602 tempers,1,troilusandcressida,1602 mint,1,troilusandcressida,1602 merrily,1,troilusandcressida,1602 humorous,1,troilusandcressida,1602 confidence,1,troilusandcressida,1602 deedless,1,troilusandcressida,1602 expressure,1,troilusandcressida,1602 process,1,troilusandcressida,1602 didst,1,troilusandcressida,1602 chain,1,troilusandcressida,1602 shame's,1,troilusandcressida,1602 bloods,1,troilusandcressida,1602 Achievements,1,troilusandcressida,1602 celerity,1,troilusandcressida,1602 henned,1,troilusandcressida,1602 Praise,1,troilusandcressida,1602 parties,1,troilusandcressida,1602 Sheathes,1,troilusandcressida,1602 organs,1,troilusandcressida,1602 tenth,1,troilusandcressida,1602 Shouts,1,troilusandcressida,1602 transportance,1,troilusandcressida,1602 comer,1,troilusandcressida,1602 ranks,1,troilusandcressida,1602 Sore,1,troilusandcressida,1602 persuaded,1,troilusandcressida,1602 foil'd,1,troilusandcressida,1602 Sol,1,troilusandcressida,1602 consign'd,1,troilusandcressida,1602 bequeathe,1,troilusandcressida,1602 I'ld,1,troilusandcressida,1602 knits,1,troilusandcressida,1602 Corrects,1,troilusandcressida,1602 Count,1,troilusandcressida,1602 'Two,1,troilusandcressida,1602 thrash,1,troilusandcressida,1602 attribute,1,troilusandcressida,1602 Brethren,1,troilusandcressida,1602 let's,1,troilusandcressida,1602 because,1,troilusandcressida,1602 discoursive,1,troilusandcressida,1602 judgments,1,troilusandcressida,1602 importless,1,troilusandcressida,1602 starved,1,troilusandcressida,1602 'Go,1,troilusandcressida,1602 chafe,1,troilusandcressida,1602 mirable,1,troilusandcressida,1602 craves,1,troilusandcressida,1602 lubber,1,troilusandcressida,1602 dutiful,1,troilusandcressida,1602 enlarge,1,troilusandcressida,1602 address,1,troilusandcressida,1602 infect,1,troilusandcressida,1602 Commotion,1,troilusandcressida,1602 specialty,1,troilusandcressida,1602 miss,1,troilusandcressida,1602 register'd,1,troilusandcressida,1602 total,1,troilusandcressida,1602 arch,1,troilusandcressida,1602 benefit,1,troilusandcressida,1602 deeps,1,troilusandcressida,1602 brethren,1,troilusandcressida,1602 Spent,1,troilusandcressida,1602 unfamed,1,troilusandcressida,1602 oven,1,troilusandcressida,1602 discharge,1,troilusandcressida,1602 naught,1,troilusandcressida,1602 Forces,1,troilusandcressida,1602 laughs,1,troilusandcressida,1602 bodements,1,troilusandcressida,1602 wantonness,1,troilusandcressida,1602 shoeing,1,troilusandcressida,1602 abandon'd,1,troilusandcressida,1602 consisting,1,troilusandcressida,1602 stepdame,1,troilusandcressida,1602 adamant,1,troilusandcressida,1602 mockery,1,troilusandcressida,1602 oil,1,troilusandcressida,1602 sluttish,1,troilusandcressida,1602 stake,1,troilusandcressida,1602 division,1,troilusandcressida,1602 tarries,1,troilusandcressida,1602 fills,1,troilusandcressida,1602 expectance,1,troilusandcressida,1602 fixure,1,troilusandcressida,1602 ploughman,1,troilusandcressida,1602 Bounding,1,troilusandcressida,1602 o'clock,1,troilusandcressida,1602 web,1,troilusandcressida,1602 desired,1,troilusandcressida,1602 hermit,1,troilusandcressida,1602 negotiations,1,troilusandcressida,1602 stain,1,troilusandcressida,1602 scimitar,1,troilusandcressida,1602 forego,1,troilusandcressida,1602 tassel,1,troilusandcressida,1602 horribly,1,troilusandcressida,1602 railing,1,troilusandcressida,1602 proves,1,troilusandcressida,1602 Sperr,1,troilusandcressida,1602 prover,1,troilusandcressida,1602 Puffing,1,troilusandcressida,1602 oaks,1,troilusandcressida,1602 robber's,1,troilusandcressida,1602 knavery,1,troilusandcressida,1602 bobbed,1,troilusandcressida,1602 almighty,1,troilusandcressida,1602 stained,1,troilusandcressida,1602 impudent,1,troilusandcressida,1602 launch'd,1,troilusandcressida,1602 passage,1,troilusandcressida,1602 proved,1,troilusandcressida,1602 renown,1,troilusandcressida,1602 dignifies,1,troilusandcressida,1602 wi',1,troilusandcressida,1602 sting,1,troilusandcressida,1602 Thetis,1,troilusandcressida,1602 prescience,1,troilusandcressida,1602 cough,1,troilusandcressida,1602 indrench'd,1,troilusandcressida,1602 contemplation,1,troilusandcressida,1602 stalk,1,troilusandcressida,1602 'No,1,troilusandcressida,1602 rogues,1,troilusandcressida,1602 pound,1,troilusandcressida,1602 tabourines,1,troilusandcressida,1602 reflection,1,troilusandcressida,1602 roars,1,troilusandcressida,1602 bragless,1,troilusandcressida,1602 dishonour,1,troilusandcressida,1602 knock'd,1,troilusandcressida,1602 worshippers,1,troilusandcressida,1602 entreaties,1,troilusandcressida,1602 blockish,1,troilusandcressida,1602 discipline,1,troilusandcressida,1602 fragment,1,troilusandcressida,1602 wrapt,1,troilusandcressida,1602 fraction,1,troilusandcressida,1602 five,1,troilusandcressida,1602 Witness,1,troilusandcressida,1602 capable,1,troilusandcressida,1602 appertainments,1,troilusandcressida,1602 uncomprehensive,1,troilusandcressida,1602 blushed,1,troilusandcressida,1602 assumption,1,troilusandcressida,1602 'Lo,1,troilusandcressida,1602 slanderer,1,troilusandcressida,1602 sorrow,1,troilusandcressida,1602 'Twill,1,troilusandcressida,1602 traders,1,troilusandcressida,1602 confines,1,troilusandcressida,1602 curb,1,troilusandcressida,1602 roughly,1,troilusandcressida,1602 bawdy,1,troilusandcressida,1602 operation,1,troilusandcressida,1602 swath,1,troilusandcressida,1602 curs,1,troilusandcressida,1602 confined,1,troilusandcressida,1602 bawds,1,troilusandcressida,1602 import,1,troilusandcressida,1602 knife,1,troilusandcressida,1602 hears,1,troilusandcressida,1602 ring,1,troilusandcressida,1602 buckle,1,troilusandcressida,1602 flexible,1,troilusandcressida,1602 novelty,1,troilusandcressida,1602 devour'd,1,troilusandcressida,1602 bounded,1,troilusandcressida,1602 thwart,1,troilusandcressida,1602 tractable,1,troilusandcressida,1602 beastly,1,troilusandcressida,1602 humanity,1,troilusandcressida,1602 moment,1,troilusandcressida,1602 bloodless,1,troilusandcressida,1602 waking,1,troilusandcressida,1602 closet,1,troilusandcressida,1602 selfsame,1,troilusandcressida,1602 dinner's,1,troilusandcressida,1602 o'erspreads,1,troilusandcressida,1602 dizzy,1,troilusandcressida,1602 bestow'd,1,troilusandcressida,1602 decays,1,troilusandcressida,1602 conspire,1,troilusandcressida,1602 frailty,1,troilusandcressida,1602 buck,1,troilusandcressida,1602 handless,1,troilusandcressida,1602 heaps,1,troilusandcressida,1602 hearers,1,troilusandcressida,1602 Peaceful,1,troilusandcressida,1602 flight,1,troilusandcressida,1602 Desire,1,troilusandcressida,1602 musicians,1,troilusandcressida,1602 merit's,1,troilusandcressida,1602 ripe,1,troilusandcressida,1602 falcon,1,troilusandcressida,1602 negligence,1,troilusandcressida,1602 grandsires,1,troilusandcressida,1602 you're,1,troilusandcressida,1602 count,1,troilusandcressida,1602 nursery,1,troilusandcressida,1602 Blunt,1,troilusandcressida,1602 flint,1,troilusandcressida,1602 venom'd,1,troilusandcressida,1602 certainly,1,troilusandcressida,1602 patiently,1,troilusandcressida,1602 renown'd,1,troilusandcressida,1602 isles,1,troilusandcressida,1602 crown'd,1,troilusandcressida,1602 revolve,1,troilusandcressida,1602 fonder,1,troilusandcressida,1602 Libya,1,troilusandcressida,1602 decreed,1,troilusandcressida,1602 operate,1,troilusandcressida,1602 likes,1,troilusandcressida,1602 dust,1,troilusandcressida,1602 called,1,troilusandcressida,1602 sinewy,1,troilusandcressida,1602 stumbling,1,troilusandcressida,1602 'The,1,troilusandcressida,1602 linger,1,troilusandcressida,1602 duty,1,troilusandcressida,1602 able,1,troilusandcressida,1602 Directive,1,troilusandcressida,1602 Worthy,1,troilusandcressida,1602 commanded,1,troilusandcressida,1602 perforce,1,troilusandcressida,1602 subtly,1,troilusandcressida,1602 ambition,1,troilusandcressida,1602 intend,1,troilusandcressida,1602 providence,1,troilusandcressida,1602 waftage,1,troilusandcressida,1602 Wholly,1,troilusandcressida,1602 arts,1,troilusandcressida,1602 woof,1,troilusandcressida,1602 slipped,1,troilusandcressida,1602 joy's,1,troilusandcressida,1602 lifter,1,troilusandcressida,1602 Lists,1,troilusandcressida,1602 assure,1,troilusandcressida,1602 herring,1,troilusandcressida,1602 whirls,1,troilusandcressida,1602 placket,1,troilusandcressida,1602 imposition,1,troilusandcressida,1602 whereout,1,troilusandcressida,1602 uncle's,1,troilusandcressida,1602 dying,1,troilusandcressida,1602 bereft,1,troilusandcressida,1602 project's,1,troilusandcressida,1602 ends,1,troilusandcressida,1602 covetous,1,troilusandcressida,1602 undermine,1,troilusandcressida,1602 swagger,1,troilusandcressida,1602 gaging,1,troilusandcressida,1602 supper,1,troilusandcressida,1602 spectacles,1,troilusandcressida,1602 coming,1,troilusandcressida,1602 scants,1,troilusandcressida,1602 Bed,1,troilusandcressida,1602 multitude,1,troilusandcressida,1602 repining,1,troilusandcressida,1602 wheel,1,troilusandcressida,1602 'as,1,troilusandcressida,1602 violenteth,1,troilusandcressida,1602 threats,1,troilusandcressida,1602 Prophet,1,troilusandcressida,1602 cursed,1,troilusandcressida,1602 walk'd,1,troilusandcressida,1602 bounty,1,troilusandcressida,1602 happy,1,troilusandcressida,1602 dross,1,troilusandcressida,1602 fur,1,troilusandcressida,1602 irons,1,troilusandcressida,1602 Gives,1,troilusandcressida,1602 justness,1,troilusandcressida,1602 grossness,1,troilusandcressida,1602 discover'd,1,troilusandcressida,1602 cull,1,troilusandcressida,1602 angle,1,troilusandcressida,1602 Arming,1,troilusandcressida,1602 billing,1,troilusandcressida,1602 mouldeth,1,troilusandcressida,1602 naughtily,1,troilusandcressida,1602 husbandry,1,troilusandcressida,1602 freshness,1,troilusandcressida,1602 prompt,1,troilusandcressida,1602 afield,1,troilusandcressida,1602 bruit,1,troilusandcressida,1602 breadth,1,troilusandcressida,1602 livelong,1,troilusandcressida,1602 mettle,1,troilusandcressida,1602 watery,1,troilusandcressida,1602 served,1,troilusandcressida,1602 rages,1,troilusandcressida,1602 dissolved,1,troilusandcressida,1602 butterflies,1,troilusandcressida,1602 honoured,1,troilusandcressida,1602 Hail,1,troilusandcressida,1602 prologue,1,troilusandcressida,1602 size,1,troilusandcressida,1602 Sagittary,1,troilusandcressida,1602 weeping,1,troilusandcressida,1602 courteously,1,troilusandcressida,1602 darker,1,troilusandcressida,1602 surgeon's,1,troilusandcressida,1602 Rude,1,troilusandcressida,1602 hack'd,1,troilusandcressida,1602 clapper,1,troilusandcressida,1602 Virgins,1,troilusandcressida,1602 compulsion,1,troilusandcressida,1602 compass,1,troilusandcressida,1602 lust,1,troilusandcressida,1602 roisting,1,troilusandcressida,1602 Midway,1,troilusandcressida,1602 bastes,1,troilusandcressida,1602 imputation,1,troilusandcressida,1602 rain,1,troilusandcressida,1602 disposition,1,troilusandcressida,1602 functions,1,troilusandcressida,1602 similes,1,troilusandcressida,1602 beguiles,1,troilusandcressida,1602 Cancer,1,troilusandcressida,1602 virtuously,1,troilusandcressida,1602 waters,1,troilusandcressida,1602 yoke,1,troilusandcressida,1602 godlike,1,troilusandcressida,1602 mends,1,troilusandcressida,1602 commodious,1,troilusandcressida,1602 drops,1,troilusandcressida,1602 rapture,1,troilusandcressida,1602 fry,1,troilusandcressida,1602 serves,1,troilusandcressida,1602 plumes,1,troilusandcressida,1602 uttermost,1,troilusandcressida,1602 falling,1,troilusandcressida,1602 stirs,1,troilusandcressida,1602 whence,1,troilusandcressida,1602 followers,1,troilusandcressida,1602 watching,1,troilusandcressida,1602 Whispers,1,troilusandcressida,1602 Male,1,troilusandcressida,1602 glad,1,troilusandcressida,1602 Show,1,troilusandcressida,1602 compare,1,troilusandcressida,1602 untruths,1,troilusandcressida,1602 sails,1,troilusandcressida,1602 clawing,1,troilusandcressida,1602 snail,1,troilusandcressida,1602 position,1,troilusandcressida,1602 unmingled,1,troilusandcressida,1602 pheeze,1,troilusandcressida,1602 chapmen,1,troilusandcressida,1602 pleasantly,1,troilusandcressida,1602 advertised,1,troilusandcressida,1602 Untent,1,troilusandcressida,1602 they've,1,troilusandcressida,1602 Menon,1,troilusandcressida,1602 'hereafter',1,troilusandcressida,1602 'Inestimable,1,troilusandcressida,1602 'fore,1,troilusandcressida,1602 messengers,1,troilusandcressida,1602 weapons,1,troilusandcressida,1602 Withal,1,troilusandcressida,1602 sportful,1,troilusandcressida,1602 purely,1,troilusandcressida,1602 miracle,1,troilusandcressida,1602 abash'd,1,troilusandcressida,1602 Beckoning,1,troilusandcressida,1602 Exceeds,1,troilusandcressida,1602 victor,1,troilusandcressida,1602 foe,1,troilusandcressida,1602 cloud,1,troilusandcressida,1602 palsy,1,troilusandcressida,1602 Proceed,1,troilusandcressida,1602 wander,1,troilusandcressida,1602 Shake,1,troilusandcressida,1602 blow'st,1,troilusandcressida,1602 heaving,1,troilusandcressida,1602 truths,1,troilusandcressida,1602 Spur,1,troilusandcressida,1602 rack,1,troilusandcressida,1602 monstruosity,1,troilusandcressida,1602 Yond,1,troilusandcressida,1602 MYRMIDONS,1,troilusandcressida,1602 Runs,1,troilusandcressida,1602 pleased,1,troilusandcressida,1602 positive,1,troilusandcressida,1602 divulged,1,troilusandcressida,1602 worn,1,troilusandcressida,1602 parallels,1,troilusandcressida,1602 discover,1,troilusandcressida,1602 Whereupon,1,troilusandcressida,1602 lodges,1,troilusandcressida,1602 worthiness,1,troilusandcressida,1602 wore,1,troilusandcressida,1602 apprehensions,1,troilusandcressida,1602 Heigh,1,troilusandcressida,1602 skilful,1,troilusandcressida,1602 west,1,troilusandcressida,1602 Yesterday,1,troilusandcressida,1602 staples,1,troilusandcressida,1602 vantbrace,1,troilusandcressida,1602 allow,1,troilusandcressida,1602 propend,1,troilusandcressida,1602 predominance,1,troilusandcressida,1602 silks,1,troilusandcressida,1602 unjust,1,troilusandcressida,1602 flame,1,troilusandcressida,1602 fit,1,troilusandcressida,1602 galls,1,troilusandcressida,1602 prophetess,1,troilusandcressida,1602 dues,1,troilusandcressida,1602 they're,1,troilusandcressida,1602 perfect,1,troilusandcressida,1602 lists,1,troilusandcressida,1602 wheat,1,troilusandcressida,1602 profit,1,troilusandcressida,1602 swallow'd,1,troilusandcressida,1602 Attend,1,troilusandcressida,1602 howsoever,1,troilusandcressida,1602 publication,1,troilusandcressida,1602 safety,1,troilusandcressida,1602 lean'd,1,troilusandcressida,1602 ribs,1,troilusandcressida,1602 bridegroom's,1,troilusandcressida,1602 clap,1,troilusandcressida,1602 assume,1,troilusandcressida,1602 wooed,1,troilusandcressida,1602 unawares,1,troilusandcressida,1602 buckled,1,troilusandcressida,1602 Prerogative,1,troilusandcressida,1602 cogging,1,troilusandcressida,1602 buckles,1,troilusandcressida,1602 married,1,troilusandcressida,1602 speculation,1,troilusandcressida,1602 Hollow,1,troilusandcressida,1602 lordship,1,troilusandcressida,1602 answer'd,1,troilusandcressida,1602 abreast,1,troilusandcressida,1602 accosting,1,troilusandcressida,1602 worship,1,troilusandcressida,1602 Grecian's,1,troilusandcressida,1602 holiness,1,troilusandcressida,1602 divert,1,troilusandcressida,1602 brushes,1,troilusandcressida,1602 wealth,1,troilusandcressida,1602 smooth,1,troilusandcressida,1602 practise,1,troilusandcressida,1602 grumblest,1,troilusandcressida,1602 depart,1,troilusandcressida,1602 dependent,1,troilusandcressida,1602 flexure,1,troilusandcressida,1602 mater,1,troilusandcressida,1602 beware,1,troilusandcressida,1602 affectionately,1,troilusandcressida,1602 Thank,1,troilusandcressida,1602 partly,1,troilusandcressida,1602 wives,1,troilusandcressida,1602 madly,1,troilusandcressida,1602 whither,1,troilusandcressida,1602 'Good,1,troilusandcressida,1602 Pluto's,1,troilusandcressida,1602 lizard,1,troilusandcressida,1602 disasters,1,troilusandcressida,1602 meaning,1,troilusandcressida,1602 nerve,1,troilusandcressida,1602 reproach,1,troilusandcressida,1602 sequestering,1,troilusandcressida,1602 interchangeably',1,troilusandcressida,1602 comfort,1,troilusandcressida,1602 dispraise,1,troilusandcressida,1602 Stygian,1,troilusandcressida,1602 raptures,1,troilusandcressida,1602 dialogue,1,troilusandcressida,1602 qualify,1,troilusandcressida,1602 bane,1,troilusandcressida,1602 jade's,1,troilusandcressida,1602 recordation,1,troilusandcressida,1602 plainness,1,troilusandcressida,1602 flames,1,troilusandcressida,1602 catlings,1,troilusandcressida,1602 balm,1,troilusandcressida,1602 motive,1,troilusandcressida,1602 disorder,1,troilusandcressida,1602 secrets,1,troilusandcressida,1602 will'd,1,troilusandcressida,1602 Each,1,troilusandcressida,1602 blaze,1,troilusandcressida,1602 volumes,1,troilusandcressida,1602 surly,1,troilusandcressida,1602 drinks,1,troilusandcressida,1602 farm,1,troilusandcressida,1602 author,1,troilusandcressida,1602 mappery,1,troilusandcressida,1602 inveigled,1,troilusandcressida,1602 griping,1,troilusandcressida,1602 purblind,1,troilusandcressida,1602 wider,1,troilusandcressida,1602 wrested,1,troilusandcressida,1602 fresher,1,troilusandcressida,1602 Appear,1,troilusandcressida,1602 excursions,1,troilusandcressida,1602 compassed,1,troilusandcressida,1602 perish,1,troilusandcressida,1602 jests,1,troilusandcressida,1602 deceptious,1,troilusandcressida,1602 watchful,1,troilusandcressida,1602 Antenorides,1,troilusandcressida,1602 ne'ertheless,1,troilusandcressida,1602 thwarted,1,troilusandcressida,1602 actor's,1,troilusandcressida,1602 reproof,1,troilusandcressida,1602 sixty,1,troilusandcressida,1602 alms,1,troilusandcressida,1602 Bounds,1,troilusandcressida,1602 Every,1,troilusandcressida,1602 beshrew,1,troilusandcressida,1602 shook,1,troilusandcressida,1602 Modest,1,troilusandcressida,1602 shore,1,troilusandcressida,1602 swears,1,troilusandcressida,1602 aspects,1,troilusandcressida,1602 Give't,1,troilusandcressida,1602 achievements,1,troilusandcressida,1602 guiding,1,troilusandcressida,1602 visiting,1,troilusandcressida,1602 melody,1,troilusandcressida,1602 primitive,1,troilusandcressida,1602 professes,1,troilusandcressida,1602 imposthume,1,troilusandcressida,1602 topless,1,troilusandcressida,1602 Cunning,1,troilusandcressida,1602 gainsay,1,troilusandcressida,1602 proclaimed,1,troilusandcressida,1602 devout,1,troilusandcressida,1602 concluded,1,troilusandcressida,1602 lackey,1,troilusandcressida,1602 giddy,1,troilusandcressida,1602 dragon,1,troilusandcressida,1602 aforesaid,1,troilusandcressida,1602 redeeming,1,troilusandcressida,1602 orgulous,1,troilusandcressida,1602 feasts,1,troilusandcressida,1602 counterfeit,1,troilusandcressida,1602 fires,1,troilusandcressida,1602 queller,1,troilusandcressida,1602 dimpled,1,troilusandcressida,1602 unto,1,troilusandcressida,1602 Afric,1,troilusandcressida,1602 schools,1,troilusandcressida,1602 difficulties,1,troilusandcressida,1602 sunder,1,troilusandcressida,1602 monumental,1,troilusandcressida,1602 asking,1,troilusandcressida,1602 Omission,1,troilusandcressida,1602 labyrinth,1,troilusandcressida,1602 tetchy,1,troilusandcressida,1602 Hectors,1,troilusandcressida,1602 winter,1,troilusandcressida,1602 seeded,1,troilusandcressida,1602 forsooth,1,troilusandcressida,1602 mastic,1,troilusandcressida,1602 'Who,1,troilusandcressida,1602 sodden,1,troilusandcressida,1602 resolution,1,troilusandcressida,1602 Wherefore,1,troilusandcressida,1602 slanders,1,troilusandcressida,1602 Awake,1,troilusandcressida,1602 counsels,1,troilusandcressida,1602 seam,1,troilusandcressida,1602 bits,1,troilusandcressida,1602 Winchester,1,troilusandcressida,1602 stints,1,troilusandcressida,1602 building,1,troilusandcressida,1602 giver,1,troilusandcressida,1602 puling,1,troilusandcressida,1602 Plutus',1,troilusandcressida,1602 abilities,1,troilusandcressida,1602 Brave,1,troilusandcressida,1602 prayers,1,troilusandcressida,1602 Reply,1,troilusandcressida,1602 subscribes,1,troilusandcressida,1602 Envy,1,troilusandcressida,1602 shout,1,troilusandcressida,1602 bawd,1,troilusandcressida,1602 satisfied,1,troilusandcressida,1602 'Bring,1,troilusandcressida,1602 prenominate,1,troilusandcressida,1602 cope,1,troilusandcressida,1602 manage,1,troilusandcressida,1602 hung,1,troilusandcressida,1602 have't,1,troilusandcressida,1602 seat,1,troilusandcressida,1602 combatants,1,troilusandcressida,1602 commission,1,troilusandcressida,1602 elements,1,troilusandcressida,1602 offerings,1,troilusandcressida,1602 cool,1,troilusandcressida,1602 mouldy,1,troilusandcressida,1602 waiting,1,troilusandcressida,1602 soil'd,1,troilusandcressida,1602 Juno,1,troilusandcressida,1602 Pour'st,1,troilusandcressida,1602 neglected,1,troilusandcressida,1602 inward,1,troilusandcressida,1602 sweat,1,troilusandcressida,1602 assubjugate,1,troilusandcressida,1602 ugly,1,troilusandcressida,1602 acts,1,troilusandcressida,1602 drunk,1,troilusandcressida,1602 letting,1,troilusandcressida,1602 vindicative,1,troilusandcressida,1602 fractions,1,troilusandcressida,1602 Strain'd,1,troilusandcressida,1602 needful,1,troilusandcressida,1602 publish,1,troilusandcressida,1602 palsies,1,troilusandcressida,1602 reckoning,1,troilusandcressida,1602 subduements,1,troilusandcressida,1602 dusted,1,troilusandcressida,1602 crept,1,troilusandcressida,1602 offspring,1,troilusandcressida,1602 deputation,1,troilusandcressida,1602 moderation,1,troilusandcressida,1602 goodness,1,troilusandcressida,1602 insolence,1,troilusandcressida,1602 seed,1,troilusandcressida,1602 pettish,1,troilusandcressida,1602 orifex,1,troilusandcressida,1602 drums,1,troilusandcressida,1602 knowest,1,troilusandcressida,1602 fights,1,troilusandcressida,1602 south,1,troilusandcressida,1602 Truly,1,troilusandcressida,1602 screech,1,troilusandcressida,1602 con,1,troilusandcressida,1602 supposed,1,troilusandcressida,1602 marvellous,1,troilusandcressida,1602 ended,1,troilusandcressida,1602 look'd,1,troilusandcressida,1602 Ne'er,1,troilusandcressida,1602 Propugnation,1,troilusandcressida,1602 miscarrying,1,troilusandcressida,1602 others',1,troilusandcressida,1602 modicums,1,troilusandcressida,1602 rivall'd,1,troilusandcressida,1602 conclude,1,troilusandcressida,1602 pricks,1,troilusandcressida,1602 valued,1,troilusandcressida,1602 condition,1,troilusandcressida,1602 Mine,1,troilusandcressida,1602 prophecy,1,troilusandcressida,1602 Patience,1,troilusandcressida,1602 cramm'd,1,troilusandcressida,1602 hound,1,troilusandcressida,1602 corses,1,troilusandcressida,1602 hurricano,1,troilusandcressida,1602 estimation,1,troilusandcressida,1602 lunes,1,troilusandcressida,1602 Speaking,1,troilusandcressida,1602 troop,1,troilusandcressida,1602 needless,1,troilusandcressida,1602 Olympian,1,troilusandcressida,1602 Milo,1,troilusandcressida,1602 secrecy,1,troilusandcressida,1602 sacred,1,troilusandcressida,1602 rascally,1,troilusandcressida,1602 usage,1,troilusandcressida,1602 potato,1,troilusandcressida,1602 whate'er,1,troilusandcressida,1602 heavenly,1,troilusandcressida,1602 puttock,1,troilusandcressida,1602 'be't,1,troilusandcressida,1602 loathsomest,1,troilusandcressida,1602 Haste,1,troilusandcressida,1602 portents,1,troilusandcressida,1602 He'll,1,troilusandcressida,1602 modest,1,troilusandcressida,1602 hostages,1,troilusandcressida,1602 avoid,1,troilusandcressida,1602 tree,1,troilusandcressida,1602 lethargies,1,troilusandcressida,1602 Through,1,troilusandcressida,1602 therein,1,troilusandcressida,1602 regal,1,troilusandcressida,1602 generals,1,troilusandcressida,1602 hours,1,troilusandcressida,1602 bugbear,1,troilusandcressida,1602 ribb'd,1,troilusandcressida,1602 Athenian,1,troilusandcressida,1602 curtain,1,troilusandcressida,1602 bait,1,troilusandcressida,1602 replies,1,troilusandcressida,1602 kindred,1,troilusandcressida,1602 dislike,1,troilusandcressida,1602 trampled,1,troilusandcressida,1602 extremes,1,troilusandcressida,1602 Send,1,troilusandcressida,1602 'There,1,troilusandcressida,1602 beheld,1,troilusandcressida,1602 blushing,1,troilusandcressida,1602 secure,1,troilusandcressida,1602 seld,1,troilusandcressida,1602 believed,1,troilusandcressida,1602 raves,1,troilusandcressida,1602 capacity,1,troilusandcressida,1602 foretold,1,troilusandcressida,1602 hemm'd,1,troilusandcressida,1602 distracted,1,troilusandcressida,1602 whilst,1,troilusandcressida,1602 pavilion,1,troilusandcressida,1602 levity,1,troilusandcressida,1602 oppose,1,troilusandcressida,1602 gloss,1,troilusandcressida,1602 tick,1,troilusandcressida,1602 roaring,1,troilusandcressida,1602 entomb,1,troilusandcressida,1602 mother's,1,troilusandcressida,1602 undo,1,troilusandcressida,1602 Myrmidon,1,troilusandcressida,1602 swell,1,troilusandcressida,1602 dogg'd,1,troilusandcressida,1602 deceive,1,troilusandcressida,1602 carriage,1,troilusandcressida,1602 Power,1,troilusandcressida,1602 herald,1,troilusandcressida,1602 expostulation,1,troilusandcressida,1602 Ithaca,1,troilusandcressida,1602 chose,1,troilusandcressida,1602 disobedient,1,troilusandcressida,1602 statue,1,troilusandcressida,1602 barren,1,troilusandcressida,1602 fearing,1,troilusandcressida,1602 hiding,1,troilusandcressida,1602 sickness,1,troilusandcressida,1602 Fears,1,troilusandcressida,1602 highest,1,troilusandcressida,1602 March,1,troilusandcressida,1602 renders,1,troilusandcressida,1602 affair,1,troilusandcressida,1602 safer,1,troilusandcressida,1602 Mistress,1,troilusandcressida,1602 slumbers,1,troilusandcressida,1602 attaint,1,troilusandcressida,1602 ceremonious,1,troilusandcressida,1602 choking,1,troilusandcressida,1602 bestow,1,troilusandcressida,1602 Achievement,1,troilusandcressida,1602 patchery,1,troilusandcressida,1602 deracinate,1,troilusandcressida,1602 Seals,1,troilusandcressida,1602 waterdrops,1,troilusandcressida,1602 lid,1,troilusandcressida,1602 instead,1,troilusandcressida,1602 communities,1,troilusandcressida,1602 untie,1,troilusandcressida,1602 'come',1,troilusandcressida,1602 laws,1,troilusandcressida,1602 spider,1,troilusandcressida,1602 storms,1,troilusandcressida,1602 botchy,1,troilusandcressida,1602 entertaining,1,troilusandcressida,1602 persuade,1,troilusandcressida,1602 lays,1,troilusandcressida,1602 lolling,1,troilusandcressida,1602 Divert,1,troilusandcressida,1602 honesty,1,troilusandcressida,1602 unveil,1,troilusandcressida,1602 immaterial,1,troilusandcressida,1602 stewed,1,troilusandcressida,1602 clouds,1,troilusandcressida,1602 confound,1,troilusandcressida,1602 Strength,1,troilusandcressida,1602 starts,1,troilusandcressida,1602 encounters,1,troilusandcressida,1602 taint,1,troilusandcressida,1602 Gave,1,troilusandcressida,1602 'pluck't,1,troilusandcressida,1602 However,1,troilusandcressida,1602 spite,1,troilusandcressida,1602 abroad,1,troilusandcressida,1602 splitting,1,troilusandcressida,1602 thrifty,1,troilusandcressida,1602 afeard,1,troilusandcressida,1602 'scape,1,troilusandcressida,1602 revolted,1,troilusandcressida,1602 hostess,1,troilusandcressida,1602 Quoth,1,troilusandcressida,1602 Exampled,1,troilusandcressida,1602 rheum,1,troilusandcressida,1602 unclasp,1,troilusandcressida,1602 critics,1,troilusandcressida,1602 smiling,1,troilusandcressida,1602 forced,1,troilusandcressida,1602 minced,1,troilusandcressida,1602 impossibility,1,troilusandcressida,1602 starve,1,troilusandcressida,1602 patient's,1,troilusandcressida,1602 form'd,1,troilusandcressida,1602 forked,1,troilusandcressida,1602 sadness,1,troilusandcressida,1602 correction,1,troilusandcressida,1602 dealing,1,troilusandcressida,1602 diminutives,1,troilusandcressida,1602 Sometime,1,troilusandcressida,1602 unbodied,1,troilusandcressida,1602 island,1,troilusandcressida,1602 met,1,troilusandcressida,1602 chidden,1,troilusandcressida,1602 knocked,1,troilusandcressida,1602 swim,1,troilusandcressida,1602 fierceness,1,troilusandcressida,1602 vents,1,troilusandcressida,1602 armours,1,troilusandcressida,1602 disciplined,1,troilusandcressida,1602 obeying,1,troilusandcressida,1602 travell'd,1,troilusandcressida,1602 parallel,1,troilusandcressida,1602 devours,1,troilusandcressida,1602 winnows,1,troilusandcressida,1602 unrespective,1,troilusandcressida,1602 maker,1,troilusandcressida,1602 cygnet's,1,troilusandcressida,1602 Sets,1,troilusandcressida,1602 foretell,1,troilusandcressida,1602 Writes,1,troilusandcressida,1602 arbitrator,1,troilusandcressida,1602 ruinous,1,troilusandcressida,1602 underwrite,1,troilusandcressida,1602 laurels,1,troilusandcressida,1602 swerve,1,troilusandcressida,1602 discharging,1,troilusandcressida,1602 beholders,1,troilusandcressida,1602 whites,1,troilusandcressida,1602 whit,1,troilusandcressida,1602 hares,1,troilusandcressida,1602 pleasant,1,troilusandcressida,1602 limit,1,troilusandcressida,1602 debtor,1,troilusandcressida,1602 Men,1,troilusandcressida,1602 recreant,1,troilusandcressida,1602 antiquary,1,troilusandcressida,1602 toast,1,troilusandcressida,1602 powerful,1,troilusandcressida,1602 flew,1,troilusandcressida,1602 blended,1,troilusandcressida,1602 lay'st,1,troilusandcressida,1602 solus,1,troilusandcressida,1602 breeze,1,troilusandcressida,1602 crafty,1,troilusandcressida,1602 eleven,1,troilusandcressida,1602 sauced,1,troilusandcressida,1602 quarrels,1,troilusandcressida,1602 ransack'd,1,troilusandcressida,1602 bellied,1,troilusandcressida,1602 warriors,1,troilusandcressida,1602 harmony,1,troilusandcressida,1602 liege,1,troilusandcressida,1602 on's,1,troilusandcressida,1602 Retorts,1,troilusandcressida,1602 amain,1,troilusandcressida,1602 physic,1,troilusandcressida,1602 subsequent,1,troilusandcressida,1602 lustihood,1,troilusandcressida,1602 Indeed,1,troilusandcressida,1602 valorous,1,troilusandcressida,1602 lark,1,troilusandcressida,1602 E'en,1,troilusandcressida,1602 telling,1,troilusandcressida,1602 womanhood,1,troilusandcressida,1602 sometimes,1,troilusandcressida,1602 'Because,1,troilusandcressida,1602 jesting,1,troilusandcressida,1602 tetter,1,troilusandcressida,1602 politic,1,troilusandcressida,1602 phrase,1,troilusandcressida,1602 affined,1,troilusandcressida,1602 pavement,1,troilusandcressida,1602 plucks,1,troilusandcressida,1602 flat,1,troilusandcressida,1602 Mad,1,troilusandcressida,1602 flap,1,troilusandcressida,1602 earwax,1,troilusandcressida,1602 preposterous,1,troilusandcressida,1602 liquid,1,troilusandcressida,1602 Maintain,1,troilusandcressida,1602 Famed,1,troilusandcressida,1602 Sings,1,troilusandcressida,1602 eastern,1,troilusandcressida,1602 Sunday,1,troilusandcressida,1602 tickle,1,troilusandcressida,1602 fitness,1,troilusandcressida,1602 Incurr'd,1,troilusandcressida,1602 truant,1,troilusandcressida,1602 VII,1,troilusandcressida,1602 oppugnancy,1,troilusandcressida,1602 laud,1,troilusandcressida,1602 betimes,1,troilusandcressida,1602 profoundly,1,troilusandcressida,1602 recompense,1,troilusandcressida,1602 besides,1,troilusandcressida,1602 lazar,1,troilusandcressida,1602 Olympus,1,troilusandcressida,1602 knave's,1,troilusandcressida,1602 Shoots,1,troilusandcressida,1602 opportunity,1,troilusandcressida,1602 April,1,troilusandcressida,1602 suited,1,troilusandcressida,1602 breaking,1,troilusandcressida,1602 frayed,1,troilusandcressida,1602 counters,1,troilusandcressida,1602 pelting,1,troilusandcressida,1602 Th',1,troilusandcressida,1602 contend,1,troilusandcressida,1602 sway'd,1,troilusandcressida,1602 outstretch'd,1,troilusandcressida,1602 tediously,1,troilusandcressida,1602 forestall,1,troilusandcressida,1602 simply,1,troilusandcressida,1602 shade,1,troilusandcressida,1602 try,1,troilusandcressida,1602 shrewd,1,troilusandcressida,1602 Death,1,troilusandcressida,1602 sentinels,1,troilusandcressida,1602 despiteful,1,troilusandcressida,1602 simple,1,troilusandcressida,1602 assumes,1,troilusandcressida,1602 pight,1,troilusandcressida,1602 limekilns,1,troilusandcressida,1602 witty,1,troilusandcressida,1602 Hyperion,1,troilusandcressida,1602 date,1,troilusandcressida,1602 pestered,1,troilusandcressida,1602 spring,1,troilusandcressida,1602 entrance,1,troilusandcressida,1602 tardy,1,troilusandcressida,1602 earned,1,troilusandcressida,1602 Troien,1,troilusandcressida,1602 rises,1,troilusandcressida,1602 untimber'd,1,troilusandcressida,1602 yesternight,1,troilusandcressida,1602 You'll,1,troilusandcressida,1602 imposed,1,troilusandcressida,1602 infants',1,troilusandcressida,1602 shaft,1,troilusandcressida,1602 evasions,1,troilusandcressida,1602 careless,1,troilusandcressida,1602 expense,1,troilusandcressida,1602 brag,1,troilusandcressida,1602 credence,1,troilusandcressida,1602 stithied,1,troilusandcressida,1602 primogenitive,1,troilusandcressida,1602 doe,1,troilusandcressida,1602 distemper'd,1,troilusandcressida,1602 plantage,1,troilusandcressida,1602 confirm,1,troilusandcressida,1602 wrathful,1,troilusandcressida,1602 portable,1,troilusandcressida,1602 provide,1,troilusandcressida,1602 affronted,1,troilusandcressida,1602 Tenedos,1,troilusandcressida,1602 sprite,1,troilusandcressida,1602 mangled,1,troilusandcressida,1602 Toadstool,1,troilusandcressida,1602 harsh,1,troilusandcressida,1602 Excitements,1,troilusandcressida,1602 noseless,1,troilusandcressida,1602 dark,1,troilusandcressida,1602 Less,1,troilusandcressida,1602 whetstone,1,troilusandcressida,1602 dun,1,troilusandcressida,1602 reader,1,troilusandcressida,1602 sounding,1,troilusandcressida,1602 Rouse,1,troilusandcressida,1602 pertly,1,troilusandcressida,1602 toe,1,troilusandcressida,1602 Together,1,troilusandcressida,1602 sudden,1,troilusandcressida,1602 weighs,1,troilusandcressida,1602 withhold,1,troilusandcressida,1602 turtle,1,troilusandcressida,1602 cunningly,1,troilusandcressida,1602 destroy,1,troilusandcressida,1602 supp'd,1,troilusandcressida,1602 rocks,1,troilusandcressida,1602 globe,1,troilusandcressida,1602 fellowship,1,troilusandcressida,1602 swallowed,1,troilusandcressida,1602 scarcity,1,troilusandcressida,1602 attachment,1,troilusandcressida,1602 lamb,1,troilusandcressida,1602 snatch,1,troilusandcressida,1602 astronomers,1,troilusandcressida,1602 mature,1,troilusandcressida,1602 DRAMATIS,1,troilusandcressida,1602 coupled,1,troilusandcressida,1602 Relates,1,troilusandcressida,1602 flout,1,troilusandcressida,1602 sinister,1,troilusandcressida,1602 hyperboles,1,troilusandcressida,1602 tie,1,troilusandcressida,1602 excite,1,troilusandcressida,1602 physician,1,troilusandcressida,1602 abruption,1,troilusandcressida,1602 tip,1,troilusandcressida,1602 filthy,1,troilusandcressida,1602 brew,1,troilusandcressida,1602 encountering,1,troilusandcressida,1602 propose,1,troilusandcressida,1602 undergo,1,troilusandcressida,1602 'Jupiter,1,troilusandcressida,1602 ruptures,1,troilusandcressida,1602 tripping,1,troilusandcressida,1602 pass'd,1,troilusandcressida,1602 awkward,1,troilusandcressida,1602 bargain,1,troilusandcressida,1602 flows,1,troilusandcressida,1602 record,1,troilusandcressida,1602 brevity,1,troilusandcressida,1602 tired,1,troilusandcressida,1602 reserve,1,troilusandcressida,1602 divided,1,troilusandcressida,1602 wills,1,troilusandcressida,1602 dew,1,troilusandcressida,1602 'That,1,troilusandcressida,1602 drown'd,1,troilusandcressida,1602 scaled,1,troilusandcressida,1602 Finch,1,troilusandcressida,1602 acquired,1,troilusandcressida,1602 Staying,1,troilusandcressida,1602 press'd,1,troilusandcressida,1602 boundless,1,troilusandcressida,1602 jealousy,1,troilusandcressida,1602 speaker,1,troilusandcressida,1602 gloves,1,troilusandcressida,1602 lecher,1,troilusandcressida,1602 take't,1,troilusandcressida,1602 Finds,1,troilusandcressida,1602 mutual,1,troilusandcressida,1602 immures,1,troilusandcressida,1602 Unlike,1,troilusandcressida,1602 toads,1,troilusandcressida,1602 mid,1,troilusandcressida,1602 gods',1,troilusandcressida,1602 amen,1,troilusandcressida,1602 ingratitudes,1,troilusandcressida,1602 remorse,1,troilusandcressida,1602 fillip,1,troilusandcressida,1602 Distinction,1,troilusandcressida,1602 Engaging,1,troilusandcressida,1602 Anticipating,1,troilusandcressida,1602 doting,1,troilusandcressida,1602 cooling,1,troilusandcressida,1602 repair,1,troilusandcressida,1602 sneaking,1,troilusandcressida,1602 spaces,1,troilusandcressida,1602 sciaticas,1,troilusandcressida,1602 obedience,1,troilusandcressida,1602 oaths,1,troilusandcressida,1602 lack,1,troilusandcressida,1602 Fame,1,troilusandcressida,1602 intends,1,troilusandcressida,1602 contaminated,1,troilusandcressida,1602 gave't,1,troilusandcressida,1602 'plain,1,troilusandcressida,1602 spoils,1,troilusandcressida,1602 coped,1,troilusandcressida,1602 Thrice,1,troilusandcressida,1602 Lechery,1,troilusandcressida,1602 farewells,1,troilusandcressida,1602 perhaps,1,troilusandcressida,1602 scantling,1,troilusandcressida,1602 suffocate,1,troilusandcressida,1602 enfreed,1,troilusandcressida,1602 privately,1,troilusandcressida,1602 Dog,1,troilusandcressida,1602 direction,1,troilusandcressida,1602 selves,1,troilusandcressida,1602 undertake,1,troilusandcressida,1602 prompted,1,troilusandcressida,1602 sandy,1,troilusandcressida,1602 engendering,1,troilusandcressida,1602 Sodden,1,troilusandcressida,1602 Created,1,troilusandcressida,1602 esteemed,1,troilusandcressida,1602 elbows,1,troilusandcressida,1602 observing,1,troilusandcressida,1602 wiles,1,troilusandcressida,1602 Desired,1,troilusandcressida,1602 conjecture,1,troilusandcressida,1602 Aristotle,1,troilusandcressida,1602 Fierce,1,troilusandcressida,1602 monsters,1,troilusandcressida,1602 degrees,1,troilusandcressida,1602 marvels,1,troilusandcressida,1602 fortunes,1,troilusandcressida,1602 beaver,1,troilusandcressida,1602 remembered,1,troilusandcressida,1602 summer,1,troilusandcressida,1602 sanctimony,1,troilusandcressida,1602 Grows,1,troilusandcressida,1602 plagues,2,troilusandcressida,1602 undertakings,2,troilusandcressida,1602 heed,2,troilusandcressida,1602 generation,2,troilusandcressida,1602 heel,2,troilusandcressida,1602 quality,2,troilusandcressida,1602 daws,2,troilusandcressida,1602 instruments,2,troilusandcressida,1602 horns,2,troilusandcressida,1602 scraps,2,troilusandcressida,1602 parted,2,troilusandcressida,1602 pity,2,troilusandcressida,1602 taking,2,troilusandcressida,1602 red,2,troilusandcressida,1602 extremity,2,troilusandcressida,1602 fancy,2,troilusandcressida,1602 sized,2,troilusandcressida,1602 reputation,2,troilusandcressida,1602 leisure,2,troilusandcressida,1602 country,2,troilusandcressida,1602 dream'd,2,troilusandcressida,1602 weary,2,troilusandcressida,1602 brass,2,troilusandcressida,1602 wears,2,troilusandcressida,1602 prophet,2,troilusandcressida,1602 following,2,troilusandcressida,1602 possible,2,troilusandcressida,1602 factions,2,troilusandcressida,1602 travail,2,troilusandcressida,1602 wicked,2,troilusandcressida,1602 honours,2,troilusandcressida,1602 royal,2,troilusandcressida,1602 zeal,2,troilusandcressida,1602 rascal,2,troilusandcressida,1602 bonds,2,troilusandcressida,1602 health,2,troilusandcressida,1602 rob,2,troilusandcressida,1602 doubtful,2,troilusandcressida,1602 scene,2,troilusandcressida,1602 held,2,troilusandcressida,1602 Never,2,troilusandcressida,1602 drowsy,2,troilusandcressida,1602 dish,2,troilusandcressida,1602 leavening,2,troilusandcressida,1602 painted,2,troilusandcressida,1602 authentic,2,troilusandcressida,1602 chest,2,troilusandcressida,1602 prisoner,2,troilusandcressida,1602 sighs,2,troilusandcressida,1602 answering,2,troilusandcressida,1602 Valour,2,troilusandcressida,1602 fought,2,troilusandcressida,1602 angels,2,troilusandcressida,1602 appear,2,troilusandcressida,1602 allowance,2,troilusandcressida,1602 declined,2,troilusandcressida,1602 drink,2,troilusandcressida,1602 Ere,2,troilusandcressida,1602 hacks,2,troilusandcressida,1602 withal,2,troilusandcressida,1602 nought,2,troilusandcressida,1602 laugh,2,troilusandcressida,1602 admirable,2,troilusandcressida,1602 dreaming,2,troilusandcressida,1602 pleasures,2,troilusandcressida,1602 Quite,2,troilusandcressida,1602 juggling,2,troilusandcressida,1602 joys,2,troilusandcressida,1602 scruple,2,troilusandcressida,1602 bowels,2,troilusandcressida,1602 demand,2,troilusandcressida,1602 case,2,troilusandcressida,1602 song,2,troilusandcressida,1602 lustre,2,troilusandcressida,1602 seven,2,troilusandcressida,1602 disdain,2,troilusandcressida,1602 'Achilles,2,troilusandcressida,1602 giant,2,troilusandcressida,1602 slept,2,troilusandcressida,1602 grows,2,troilusandcressida,1602 Cold,2,troilusandcressida,1602 limb,2,troilusandcressida,1602 Phrygia,2,troilusandcressida,1602 factious,2,troilusandcressida,1602 afterwards,2,troilusandcressida,1602 purse,2,troilusandcressida,1602 toward,2,troilusandcressida,1602 cake,2,troilusandcressida,1602 Priamus,2,troilusandcressida,1602 fingers,2,troilusandcressida,1602 lift,2,troilusandcressida,1602 characters,2,troilusandcressida,1602 soil,2,troilusandcressida,1602 calm,2,troilusandcressida,1602 deject,2,troilusandcressida,1602 veins,2,troilusandcressida,1602 noise,2,troilusandcressida,1602 purity,2,troilusandcressida,1602 lesser,2,troilusandcressida,1602 arithmetic,2,troilusandcressida,1602 coldly,2,troilusandcressida,1602 slippery,2,troilusandcressida,1602 sphered,2,troilusandcressida,1602 black,2,troilusandcressida,1602 sups,2,troilusandcressida,1602 further,2,troilusandcressida,1602 cities,2,troilusandcressida,1602 superficially,2,troilusandcressida,1602 six,2,troilusandcressida,1602 sit,2,troilusandcressida,1602 speeches,2,troilusandcressida,1602 sin,2,troilusandcressida,1602 courtly,2,troilusandcressida,1602 bode,2,troilusandcressida,1602 imitation,2,troilusandcressida,1602 sex,2,troilusandcressida,1602 virtuous,2,troilusandcressida,1602 wake,2,troilusandcressida,1602 disposer,2,troilusandcressida,1602 disposed,2,troilusandcressida,1602 fell,2,troilusandcressida,1602 Walk,2,troilusandcressida,1602 yield,2,troilusandcressida,1602 nine,2,troilusandcressida,1602 earnestly,2,troilusandcressida,1602 whosoever,2,troilusandcressida,1602 Himself,2,troilusandcressida,1602 famed,2,troilusandcressida,1602 skill,2,troilusandcressida,1602 winds,2,troilusandcressida,1602 'O,2,troilusandcressida,1602 counsel,2,troilusandcressida,1602 countenance,2,troilusandcressida,1602 it's,2,troilusandcressida,1602 kindly,2,troilusandcressida,1602 's,2,troilusandcressida,1602 't,2,troilusandcressida,1602 forthwith,2,troilusandcressida,1602 beloved,2,troilusandcressida,1602 groans,2,troilusandcressida,1602 sets,2,troilusandcressida,1602 suck,2,troilusandcressida,1602 stuff,2,troilusandcressida,1602 bolting,2,troilusandcressida,1602 Attendants,2,troilusandcressida,1602 cheese,2,troilusandcressida,1602 standers,2,troilusandcressida,1602 vile,2,troilusandcressida,1602 worse,2,troilusandcressida,1602 broils,2,troilusandcressida,1602 merchants,2,troilusandcressida,1602 receives,2,troilusandcressida,1602 ways,2,troilusandcressida,1602 falls,2,troilusandcressida,1602 loathed,2,troilusandcressida,1602 envious,2,troilusandcressida,1602 dearly,2,troilusandcressida,1602 Wherein,2,troilusandcressida,1602 pearl,2,troilusandcressida,1602 pageant,2,troilusandcressida,1602 Whilst,2,troilusandcressida,1602 humble,2,troilusandcressida,1602 sum,2,troilusandcressida,1602 draught,2,troilusandcressida,1602 complete,2,troilusandcressida,1602 feed,2,troilusandcressida,1602 feel,2,troilusandcressida,1602 rein,2,troilusandcressida,1602 relish,2,troilusandcressida,1602 blind,2,troilusandcressida,1602 malice,2,troilusandcressida,1602 camel,2,troilusandcressida,1602 memorial,2,troilusandcressida,1602 prized,2,troilusandcressida,1602 ward,2,troilusandcressida,1602 ware,2,troilusandcressida,1602 language,2,troilusandcressida,1602 mirth,2,troilusandcressida,1602 ruin,2,troilusandcressida,1602 renew,2,troilusandcressida,1602 custom,2,troilusandcressida,1602 warm,2,troilusandcressida,1602 office,2,troilusandcressida,1602 boot,2,troilusandcressida,1602 steed,2,troilusandcressida,1602 t'other,2,troilusandcressida,1602 Foh,2,troilusandcressida,1602 book,2,troilusandcressida,1602 manhood,2,troilusandcressida,1602 spoke,2,troilusandcressida,1602 colour,2,troilusandcressida,1602 Follow,2,troilusandcressida,1602 distraction,2,troilusandcressida,1602 offers,2,troilusandcressida,1602 goddess,2,troilusandcressida,1602 conditions,2,troilusandcressida,1602 Faith,2,troilusandcressida,1602 rusty,2,troilusandcressida,1602 While,2,troilusandcressida,1602 A',2,troilusandcressida,1602 eminence,2,troilusandcressida,1602 varlets,2,troilusandcressida,1602 chronicle,2,troilusandcressida,1602 measure,2,troilusandcressida,1602 perfection,2,troilusandcressida,1602 chaste,2,troilusandcressida,1602 box,2,troilusandcressida,1602 youthful,2,troilusandcressida,1602 blows,2,troilusandcressida,1602 Whiles,2,troilusandcressida,1602 vigour,2,troilusandcressida,1602 Those,2,troilusandcressida,1602 blown,2,troilusandcressida,1602 hopes,2,troilusandcressida,1602 Nature,2,troilusandcressida,1602 addle,2,troilusandcressida,1602 bay,2,troilusandcressida,1602 spout,2,troilusandcressida,1602 gentleness,2,troilusandcressida,1602 brings,2,troilusandcressida,1602 lottery,2,troilusandcressida,1602 pen,2,troilusandcressida,1602 Her,2,troilusandcressida,1602 helmet,2,troilusandcressida,1602 exact,2,troilusandcressida,1602 bless,2,troilusandcressida,1602 strangely,2,troilusandcressida,1602 discredit,2,troilusandcressida,1602 ease,2,troilusandcressida,1602 wither'd,2,troilusandcressida,1602 revenue,2,troilusandcressida,1602 election,2,troilusandcressida,1602 step,2,troilusandcressida,1602 heads,2,troilusandcressida,1602 valour's,2,troilusandcressida,1602 haunt,2,troilusandcressida,1602 gold,2,troilusandcressida,1602 divide,2,troilusandcressida,1602 bulk,2,troilusandcressida,1602 gave,2,troilusandcressida,1602 proportion,2,troilusandcressida,1602 bend,2,troilusandcressida,1602 fields,2,troilusandcressida,1602 Sith,2,troilusandcressida,1602 salute,2,troilusandcressida,1602 Yourself,2,troilusandcressida,1602 petition,2,troilusandcressida,1602 tell'st,2,troilusandcressida,1602 tricks,2,troilusandcressida,1602 orchard,2,troilusandcressida,1602 imperial,2,troilusandcressida,1602 fifty,2,troilusandcressida,1602 Put,2,troilusandcressida,1602 meanest,2,troilusandcressida,1602 tempts,2,troilusandcressida,1602 suddenly,2,troilusandcressida,1602 tickles,2,troilusandcressida,1602 eaten,2,troilusandcressida,1602 Holds,2,troilusandcressida,1602 dissembling,2,troilusandcressida,1602 amongst,2,troilusandcressida,1602 used,2,troilusandcressida,1602 enterprise,2,troilusandcressida,1602 sink,2,troilusandcressida,1602 'Twas,2,troilusandcressida,1602 picture,2,troilusandcressida,1602 Diomed's,2,troilusandcressida,1602 grandsire,2,troilusandcressida,1602 chafed,2,troilusandcressida,1602 Name,2,troilusandcressida,1602 quite,2,troilusandcressida,1602 magnanimous,2,troilusandcressida,1602 God,2,troilusandcressida,1602 river,2,troilusandcressida,1602 sail,2,troilusandcressida,1602 affection,2,troilusandcressida,1602 engine,2,troilusandcressida,1602 promised,2,troilusandcressida,1602 breast,2,troilusandcressida,1602 keeping,2,troilusandcressida,1602 Fear,2,troilusandcressida,1602 left,2,troilusandcressida,1602 batters,2,troilusandcressida,1602 yes,2,troilusandcressida,1602 notes,2,troilusandcressida,1602 rails,2,troilusandcressida,1602 stone,2,troilusandcressida,1602 unworthy,2,troilusandcressida,1602 deal,2,troilusandcressida,1602 gait,2,troilusandcressida,1602 dignity,2,troilusandcressida,1602 deaf,2,troilusandcressida,1602 gild,2,troilusandcressida,1602 itch,2,troilusandcressida,1602 seeming,2,troilusandcressida,1602 husband,2,troilusandcressida,1602 speed,2,troilusandcressida,1602 boats,2,troilusandcressida,1602 game,2,troilusandcressida,1602 possess'd,2,troilusandcressida,1602 tisick,2,troilusandcressida,1602 manner,2,troilusandcressida,1602 ah,2,troilusandcressida,1602 Pluto,2,troilusandcressida,1602 wench,2,troilusandcressida,1602 humours,2,troilusandcressida,1602 rouse,2,troilusandcressida,1602 idiot,2,troilusandcressida,1602 abominable,2,troilusandcressida,1602 pursuit,2,troilusandcressida,1602 Yonder,2,troilusandcressida,1602 wisely,2,troilusandcressida,1602 aside,2,troilusandcressida,1602 idle,2,troilusandcressida,1602 India,2,troilusandcressida,1602 value,2,troilusandcressida,1602 'twould,2,troilusandcressida,1602 lover,2,troilusandcressida,1602 la,2,troilusandcressida,1602 moon,2,troilusandcressida,1602 add,2,troilusandcressida,1602 wherein,2,troilusandcressida,1602 potent,2,troilusandcressida,1602 lock'd,2,troilusandcressida,1602 composed,2,troilusandcressida,1602 clamours,2,troilusandcressida,1602 men's,2,troilusandcressida,1602 thrice,2,troilusandcressida,1602 round,2,troilusandcressida,1602 Call,2,troilusandcressida,1602 Knocking,2,troilusandcressida,1602 employ'd,2,troilusandcressida,1602 spur,2,troilusandcressida,1602 hang,2,troilusandcressida,1602 shut,2,troilusandcressida,1602 Full,2,troilusandcressida,1602 plain,2,troilusandcressida,1602 drawn,2,troilusandcressida,1602 confession,2,troilusandcressida,1602 marching,2,troilusandcressida,1602 Hum,2,troilusandcressida,1602 pluck,2,troilusandcressida,1602 whether,2,troilusandcressida,1602 city,2,troilusandcressida,1602 vipers,2,troilusandcressida,1602 ask,2,troilusandcressida,1602 pain,2,troilusandcressida,1602 Troilus's,2,troilusandcressida,1602 Puts,2,troilusandcressida,1602 point,2,troilusandcressida,1602 stones,2,troilusandcressida,1602 pace,2,troilusandcressida,1602 alive,2,troilusandcressida,1602 proper,2,troilusandcressida,1602 fall'n,2,troilusandcressida,1602 revenge,2,troilusandcressida,1602 object,2,troilusandcressida,1602 error,2,troilusandcressida,1602 mental,2,troilusandcressida,1602 beggars,2,troilusandcressida,1602 knock,2,troilusandcressida,1602 fee,2,troilusandcressida,1602 fed,2,troilusandcressida,1602 Hard,2,troilusandcressida,1602 naughty,2,troilusandcressida,1602 commerce,2,troilusandcressida,1602 trial,2,troilusandcressida,1602 broke,2,troilusandcressida,1602 Art,2,troilusandcressida,1602 having,2,troilusandcressida,1602 lead,2,troilusandcressida,1602 march,2,troilusandcressida,1602 height,2,troilusandcressida,1602 witch,2,troilusandcressida,1602 Between,2,troilusandcressida,1602 fan,2,troilusandcressida,1602 justice,2,troilusandcressida,1602 occasion,2,troilusandcressida,1602 universal,2,troilusandcressida,1602 destiny,2,troilusandcressida,1602 main,2,troilusandcressida,1602 expected,2,troilusandcressida,1602 maid,2,troilusandcressida,1602 nay,2,troilusandcressida,1602 carries,2,troilusandcressida,1602 empty,2,troilusandcressida,1602 forehead,2,troilusandcressida,1602 broad,2,troilusandcressida,1602 Pandar's,2,troilusandcressida,1602 Half,2,troilusandcressida,1602 nose,2,troilusandcressida,1602 Venus,2,troilusandcressida,1602 beats,2,troilusandcressida,1602 skittish,2,troilusandcressida,1602 proudly,2,troilusandcressida,1602 below,2,troilusandcressida,1602 contention,2,troilusandcressida,1602 remedy,2,troilusandcressida,1602 bravely,2,troilusandcressida,1602 faint,2,troilusandcressida,1602 'As,2,troilusandcressida,1602 dangers,2,troilusandcressida,1602 oration,2,troilusandcressida,1602 Soft,2,troilusandcressida,1602 exposed,2,troilusandcressida,1602 boils,2,troilusandcressida,1602 mate,2,troilusandcressida,1602 you'ld,2,troilusandcressida,1602 parting,2,troilusandcressida,1602 who's,2,troilusandcressida,1602 ducks,2,troilusandcressida,1602 shares,2,troilusandcressida,1602 several,2,troilusandcressida,1602 Dost,2,troilusandcressida,1602 Diomedes,2,troilusandcressida,1602 mortal,2,troilusandcressida,1602 nod,2,troilusandcressida,1602 blench,2,troilusandcressida,1602 soldiers,2,troilusandcressida,1602 knave,2,troilusandcressida,1602 bosoms,2,troilusandcressida,1602 starting,2,troilusandcressida,1602 watches,2,troilusandcressida,1602 dregs,2,troilusandcressida,1602 insolent,2,troilusandcressida,1602 procure,2,troilusandcressida,1602 reading,2,troilusandcressida,1602 'gainst,2,troilusandcressida,1602 decline,2,troilusandcressida,1602 mask,2,troilusandcressida,1602 presently,2,troilusandcressida,1602 ALL,2,troilusandcressida,1602 woe,2,troilusandcressida,1602 Weigh,2,troilusandcressida,1602 medicinable,2,troilusandcressida,1602 vein,2,troilusandcressida,1602 woo,2,troilusandcressida,1602 brains,2,troilusandcressida,1602 chaff,2,troilusandcressida,1602 shoulder,2,troilusandcressida,1602 chide,2,troilusandcressida,1602 fish,2,troilusandcressida,1602 amazement,2,troilusandcressida,1602 captive,2,troilusandcressida,1602 father's,2,troilusandcressida,1602 over,2,troilusandcressida,1602 rive,2,troilusandcressida,1602 Made,2,troilusandcressida,1602 fist,2,troilusandcressida,1602 privileged,2,troilusandcressida,1602 poised,2,troilusandcressida,1602 one's,2,troilusandcressida,1602 trouble,2,troilusandcressida,1602 wrath,2,troilusandcressida,1602 possession,2,troilusandcressida,1602 Wert,2,troilusandcressida,1602 banks,2,troilusandcressida,1602 behalf,2,troilusandcressida,1602 Thetis',2,troilusandcressida,1602 breed,2,troilusandcressida,1602 close,2,troilusandcressida,1602 pause,2,troilusandcressida,1602 affairs,2,troilusandcressida,1602 maids,2,troilusandcressida,1602 'Twixt,2,troilusandcressida,1602 fits,2,troilusandcressida,1602 message,2,troilusandcressida,1602 hateful,2,troilusandcressida,1602 evasion,2,troilusandcressida,1602 youngest,2,troilusandcressida,1602 loving,2,troilusandcressida,1602 Say,2,troilusandcressida,1602 Alarums,2,troilusandcressida,1602 They're,2,troilusandcressida,1602 save,2,troilusandcressida,1602 integrity,2,troilusandcressida,1602 idol,2,troilusandcressida,1602 issues,2,troilusandcressida,1602 Mercury,2,troilusandcressida,1602 Think,2,troilusandcressida,1602 stick,2,troilusandcressida,1602 army,2,troilusandcressida,1602 spacious,2,troilusandcressida,1602 rise,2,troilusandcressida,1602 tuned,2,troilusandcressida,1602 important,2,troilusandcressida,1602 intent,2,troilusandcressida,1602 commander,2,troilusandcressida,1602 sufferance,2,troilusandcressida,1602 Princes,2,troilusandcressida,1602 price,2,troilusandcressida,1602 split,2,troilusandcressida,1602 witted,2,troilusandcressida,1602 mongrel,2,troilusandcressida,1602 belly,2,troilusandcressida,1602 possess,2,troilusandcressida,1602 knower,2,troilusandcressida,1602 fix'd,2,troilusandcressida,1602 raging,2,troilusandcressida,1602 dreams,2,troilusandcressida,1602 Bid,2,troilusandcressida,1602 Cupid's,2,troilusandcressida,1602 taken,2,troilusandcressida,1602 marry,2,troilusandcressida,1602 rotten,2,troilusandcressida,1602 spleen,2,troilusandcressida,1602 dumb,2,troilusandcressida,1602 rudeness,2,troilusandcressida,1602 dull,2,troilusandcressida,1602 supple,2,troilusandcressida,1602 wolf,2,troilusandcressida,1602 unity,2,troilusandcressida,1602 grain,2,troilusandcressida,1602 fox,2,troilusandcressida,1602 distinct,2,troilusandcressida,1602 comparisons,2,troilusandcressida,1602 fain,2,troilusandcressida,1602 table,2,troilusandcressida,1602 cried,2,troilusandcressida,1602 fineness,2,troilusandcressida,1602 diseases,2,troilusandcressida,1602 desert,2,troilusandcressida,1602 cares,2,troilusandcressida,1602 foh,2,troilusandcressida,1602 constancy,2,troilusandcressida,1602 methinks,2,troilusandcressida,1602 scorns,2,troilusandcressida,1602 tune,2,troilusandcressida,1602 ride,2,troilusandcressida,1602 endeavour,2,troilusandcressida,1602 Mark,2,troilusandcressida,1602 pleases,2,troilusandcressida,1602 savage,2,troilusandcressida,1602 engaged,2,troilusandcressida,1602 bark,2,troilusandcressida,1602 Dardan,2,troilusandcressida,1602 bare,2,troilusandcressida,1602 thunder,2,troilusandcressida,1602 shows,2,troilusandcressida,1602 arrogance,2,troilusandcressida,1602 cloven,2,troilusandcressida,1602 perceive,2,troilusandcressida,1602 member,2,troilusandcressida,1602 truth's,2,troilusandcressida,1602 distaste,2,troilusandcressida,1602 observance,2,troilusandcressida,1602 'Well,2,troilusandcressida,1602 friendship,2,troilusandcressida,1602 gentleman,2,troilusandcressida,1602 weakness,2,troilusandcressida,1602 names,2,troilusandcressida,1602 author's,2,troilusandcressida,1602 trumpets,2,troilusandcressida,1602 lights,2,troilusandcressida,1602 tale,2,troilusandcressida,1602 law,2,troilusandcressida,1602 constant,2,troilusandcressida,1602 otherwise,2,troilusandcressida,1602 stroke,2,troilusandcressida,1602 provoked,2,troilusandcressida,1602 wild,2,troilusandcressida,1602 privacy,2,troilusandcressida,1602 creep,2,troilusandcressida,1602 pledge,2,troilusandcressida,1602 accident,2,troilusandcressida,1602 Lay,2,troilusandcressida,1602 temper'd,2,troilusandcressida,1602 Cassandra's,2,troilusandcressida,1602 hollow,2,troilusandcressida,1602 Although,2,troilusandcressida,1602 honest,2,troilusandcressida,1602 horse's,2,troilusandcressida,1602 revolt,2,troilusandcressida,1602 flood,2,troilusandcressida,1602 lives,2,troilusandcressida,1602 Where's,2,troilusandcressida,1602 seal,2,troilusandcressida,1602 Nell,2,troilusandcressida,1602 conjure,2,troilusandcressida,1602 hearts,2,troilusandcressida,1602 lungs,2,troilusandcressida,1602 abject,2,troilusandcressida,1602 seas,2,troilusandcressida,1602 hunt,2,troilusandcressida,1602 along,2,troilusandcressida,1602 convince,2,troilusandcressida,1602 states,2,troilusandcressida,1602 captain,2,troilusandcressida,1602 baby,2,troilusandcressida,1602 massy,2,troilusandcressida,1602 presence,2,troilusandcressida,1602 Lie,2,troilusandcressida,1602 discretion,2,troilusandcressida,1602 tells,2,troilusandcressida,1602 render,2,troilusandcressida,1602 shapes,2,troilusandcressida,1602 fellows,2,troilusandcressida,1602 True,2,troilusandcressida,1602 crest,2,troilusandcressida,1602 expectation,2,troilusandcressida,1602 'twill,2,troilusandcressida,1602 pour,2,troilusandcressida,1602 Things,2,troilusandcressida,1602 'Excellent,2,troilusandcressida,1602 strikest,2,troilusandcressida,1602 prayer,2,troilusandcressida,1602 raven,2,troilusandcressida,1602 blank,2,troilusandcressida,1602 leg,2,troilusandcressida,1602 led,2,troilusandcressida,1602 greeting,2,troilusandcressida,1602 season,2,troilusandcressida,1602 Instance,2,troilusandcressida,1602 protest,2,troilusandcressida,1602 merchant,2,troilusandcressida,1602 aching,2,troilusandcressida,1602 Two,2,troilusandcressida,1602 slow,2,troilusandcressida,1602 fetches,2,troilusandcressida,1602 sympathize,2,troilusandcressida,1602 limbs,2,troilusandcressida,1602 lazy,2,troilusandcressida,1602 guts,2,troilusandcressida,1602 begins,2,troilusandcressida,1602 Falling,2,troilusandcressida,1602 doing,2,troilusandcressida,1602 dread,2,troilusandcressida,1602 warlike,2,troilusandcressida,1602 trim,2,troilusandcressida,1602 conduce,2,troilusandcressida,1602 Does,2,troilusandcressida,1602 nobody,2,troilusandcressida,1602 street,2,troilusandcressida,1602 ungain'd,2,troilusandcressida,1602 fled,2,troilusandcressida,1602 simplicity,2,troilusandcressida,1602 thinking,2,troilusandcressida,1602 Away,2,troilusandcressida,1602 strokes,2,troilusandcressida,1602 on't,2,troilusandcressida,1602 Marry,2,troilusandcressida,1602 fasting,2,troilusandcressida,1602 Pandars,2,troilusandcressida,1602 copper,2,troilusandcressida,1602 sleeping,2,troilusandcressida,1602 stretch'd,2,troilusandcressida,1602 silver,2,troilusandcressida,1602 grinding,2,troilusandcressida,1602 prouder,2,troilusandcressida,1602 vowing,2,troilusandcressida,1602 bias,2,troilusandcressida,1602 content,2,troilusandcressida,1602 silent,2,troilusandcressida,1602 'This,2,troilusandcressida,1602 witness,2,troilusandcressida,1602 leads,2,troilusandcressida,1602 bran,2,troilusandcressida,1602 princely,2,troilusandcressida,1602 follow,2,troilusandcressida,1602 perchance,2,troilusandcressida,1602 Lest,2,troilusandcressida,1602 Die,2,troilusandcressida,1602 land,2,troilusandcressida,1602 reverend,2,troilusandcressida,1602 instantly,2,troilusandcressida,1602 months,2,troilusandcressida,1602 gored,2,troilusandcressida,1602 shake,2,troilusandcressida,1602 burden,2,troilusandcressida,1602 arming,2,troilusandcressida,1602 flower,2,troilusandcressida,1602 Too,2,troilusandcressida,1602 frankly,2,troilusandcressida,1602 stol'n,2,troilusandcressida,1602 attest,2,troilusandcressida,1602 private,2,troilusandcressida,1602 fusty,2,troilusandcressida,1602 awake,2,troilusandcressida,1602 charity,2,troilusandcressida,1602 gear,2,troilusandcressida,1602 share,2,troilusandcressida,1602 turn'd,2,troilusandcressida,1602 ships,2,troilusandcressida,1602 woo'd,2,troilusandcressida,1602 godly,2,troilusandcressida,1602 hedge,2,troilusandcressida,1602 sway,2,troilusandcressida,1602 composure,2,troilusandcressida,1602 daughters,2,troilusandcressida,1602 heroical,2,troilusandcressida,1602 moral,3,troilusandcressida,1602 drawing,3,troilusandcressida,1602 times,3,troilusandcressida,1602 took,3,troilusandcressida,1602 Hear,3,troilusandcressida,1602 truer,3,troilusandcressida,1602 woman's,3,troilusandcressida,1602 Fie,3,troilusandcressida,1602 advantage,3,troilusandcressida,1602 hell,3,troilusandcressida,1602 Venus',3,troilusandcressida,1602 single,3,troilusandcressida,1602 dirt,3,troilusandcressida,1602 finger,3,troilusandcressida,1602 sight,3,troilusandcressida,1602 Cries,3,troilusandcressida,1602 understand,3,troilusandcressida,1602 calls,3,troilusandcressida,1602 sore,3,troilusandcressida,1602 trust,3,troilusandcressida,1602 become,3,troilusandcressida,1602 cheeks,3,troilusandcressida,1602 stirring,3,troilusandcressida,1602 backward,3,troilusandcressida,1602 opposed,3,troilusandcressida,1602 broken,3,troilusandcressida,1602 drab,3,troilusandcressida,1602 madness,3,troilusandcressida,1602 town,3,troilusandcressida,1602 glass,3,troilusandcressida,1602 complexion,3,troilusandcressida,1602 addition,3,troilusandcressida,1602 execution,3,troilusandcressida,1602 bound,3,troilusandcressida,1602 warrant,3,troilusandcressida,1602 light,3,troilusandcressida,1602 saying,3,troilusandcressida,1602 merry,3,troilusandcressida,1602 mocking,3,troilusandcressida,1602 she'll,3,troilusandcressida,1602 sea,3,troilusandcressida,1602 'twas,3,troilusandcressida,1602 love's,3,troilusandcressida,1602 Such,3,troilusandcressida,1602 livers,3,troilusandcressida,1602 second,3,troilusandcressida,1602 commends,3,troilusandcressida,1602 doubt,3,troilusandcressida,1602 mother,3,troilusandcressida,1602 read,3,troilusandcressida,1602 worst,3,troilusandcressida,1602 esteem,3,troilusandcressida,1602 digestion,3,troilusandcressida,1602 piece,3,troilusandcressida,1602 Out,3,troilusandcressida,1602 monster,3,troilusandcressida,1602 common,3,troilusandcressida,1602 figure,3,troilusandcressida,1602 terms,3,troilusandcressida,1602 affected,3,troilusandcressida,1602 instance,3,troilusandcressida,1602 cries,3,troilusandcressida,1602 ominous,3,troilusandcressida,1602 promise,3,troilusandcressida,1602 humbly,3,troilusandcressida,1602 grow,3,troilusandcressida,1602 brief,3,troilusandcressida,1602 speaking,3,troilusandcressida,1602 soldier,3,troilusandcressida,1602 knights,3,troilusandcressida,1602 One,3,troilusandcressida,1602 Please,3,troilusandcressida,1602 edge,3,troilusandcressida,1602 Friend,3,troilusandcressida,1602 wish,3,troilusandcressida,1602 Deiphobus,3,troilusandcressida,1602 sooth,3,troilusandcressida,1602 world's,3,troilusandcressida,1602 cunning,3,troilusandcressida,1602 rule,3,troilusandcressida,1602 tend,3,troilusandcressida,1602 bitter,3,troilusandcressida,1602 chamber,3,troilusandcressida,1602 melancholy,3,troilusandcressida,1602 Hold,3,troilusandcressida,1602 crack,3,troilusandcressida,1602 sigh,3,troilusandcressida,1602 stubborn,3,troilusandcressida,1602 depend,3,troilusandcressida,1602 surety,3,troilusandcressida,1602 scarce,3,troilusandcressida,1602 voluntary,3,troilusandcressida,1602 cruel,3,troilusandcressida,1602 Oh,3,troilusandcressida,1602 hit,3,troilusandcressida,1602 beg,3,troilusandcressida,1602 fortune's,3,troilusandcressida,1602 Let's,3,troilusandcressida,1602 obey,3,troilusandcressida,1602 god,3,troilusandcressida,1602 bull,3,troilusandcressida,1602 behind,3,troilusandcressida,1602 Prithee,3,troilusandcressida,1602 Beating,3,troilusandcressida,1602 struck,3,troilusandcressida,1602 sounds,3,troilusandcressida,1602 weak,3,troilusandcressida,1602 bent,3,troilusandcressida,1602 craft,3,troilusandcressida,1602 Behold,3,troilusandcressida,1602 divine,3,troilusandcressida,1602 footing,3,troilusandcressida,1602 turns,3,troilusandcressida,1602 deed,3,troilusandcressida,1602 Cannot,3,troilusandcressida,1602 yea,3,troilusandcressida,1602 Here's,3,troilusandcressida,1602 Apollo,3,troilusandcressida,1602 legs,3,troilusandcressida,1602 gilt,3,troilusandcressida,1602 laughing,3,troilusandcressida,1602 move,3,troilusandcressida,1602 ox,3,troilusandcressida,1602 commend,3,troilusandcressida,1602 small,3,troilusandcressida,1602 lo,3,troilusandcressida,1602 strain,3,troilusandcressida,1602 roused,3,troilusandcressida,1602 age,3,troilusandcressida,1602 resides,3,troilusandcressida,1602 ample,3,troilusandcressida,1602 spent,3,troilusandcressida,1602 greater,3,troilusandcressida,1602 presume,3,troilusandcressida,1602 harm,3,troilusandcressida,1602 hark,3,troilusandcressida,1602 choice,3,troilusandcressida,1602 brought,3,troilusandcressida,1602 Andromache,3,troilusandcressida,1602 hard,3,troilusandcressida,1602 aye,3,troilusandcressida,1602 hall,3,troilusandcressida,1602 verse,3,troilusandcressida,1602 palate,3,troilusandcressida,1602 draws,3,troilusandcressida,1602 course,3,troilusandcressida,1602 hangs,3,troilusandcressida,1602 hate,3,troilusandcressida,1602 'loo,3,troilusandcressida,1602 combat,3,troilusandcressida,1602 Alarum,3,troilusandcressida,1602 girl,3,troilusandcressida,1602 fresh,3,troilusandcressida,1602 fold,3,troilusandcressida,1602 armour,3,troilusandcressida,1602 strangeness,3,troilusandcressida,1602 touch,3,troilusandcressida,1602 Pursue,3,troilusandcressida,1602 execute,3,troilusandcressida,1602 watch,3,troilusandcressida,1602 fat,3,troilusandcressida,1602 yesterday,3,troilusandcressida,1602 often,3,troilusandcressida,1602 Keeps,3,troilusandcressida,1602 shouldst,3,troilusandcressida,1602 silence,3,troilusandcressida,1602 faction,3,troilusandcressida,1602 water,3,troilusandcressida,1602 thinks,3,troilusandcressida,1602 Patroclus',3,troilusandcressida,1602 retreat,3,troilusandcressida,1602 wonder,3,troilusandcressida,1602 infancy,3,troilusandcressida,1602 beard,3,troilusandcressida,1602 knots,3,troilusandcressida,1602 bottom,3,troilusandcressida,1602 shores,3,troilusandcressida,1602 mouth,3,troilusandcressida,1602 powers,3,troilusandcressida,1602 tutor,3,troilusandcressida,1602 precious,3,troilusandcressida,1602 See,3,troilusandcressida,1602 Some,3,troilusandcressida,1602 other's,3,troilusandcressida,1602 sacrifice,3,troilusandcressida,1602 varlet,3,troilusandcressida,1602 prize,3,troilusandcressida,1602 kisses,3,troilusandcressida,1602 blush,3,troilusandcressida,1602 bloody,3,troilusandcressida,1602 Queen,3,troilusandcressida,1602 egg,3,troilusandcressida,1602 kissing,3,troilusandcressida,1602 mark,3,troilusandcressida,1602 fountain,3,troilusandcressida,1602 devils,3,troilusandcressida,1602 issue,3,troilusandcressida,1602 oracle,3,troilusandcressida,1602 designs,3,troilusandcressida,1602 labour,3,troilusandcressida,1602 dainty,3,troilusandcressida,1602 desires,3,troilusandcressida,1602 near,3,troilusandcressida,1602 merits,3,troilusandcressida,1602 thine,3,troilusandcressida,1602 flies,3,troilusandcressida,1602 stale,3,troilusandcressida,1602 salt,3,troilusandcressida,1602 sake,3,troilusandcressida,1602 retire,3,troilusandcressida,1602 stomach,3,troilusandcressida,1602 fetch,3,troilusandcressida,1602 Unarm,3,troilusandcressida,1602 heard,3,troilusandcressida,1602 Dear,3,troilusandcressida,1602 sparrow,3,troilusandcressida,1602 subtle,3,troilusandcressida,1602 Thus,3,troilusandcressida,1602 heavy,3,troilusandcressida,1602 comparison,3,troilusandcressida,1602 receive,3,troilusandcressida,1602 bleed,3,troilusandcressida,1602 they'll,3,troilusandcressida,1602 rage,3,troilusandcressida,1602 brother's,3,troilusandcressida,1602 owl,3,troilusandcressida,1602 news,3,troilusandcressida,1602 familiar,3,troilusandcressida,1602 'be,3,troilusandcressida,1602 oblivion,3,troilusandcressida,1602 joints,3,troilusandcressida,1602 anger,3,troilusandcressida,1602 rail,3,troilusandcressida,1602 fail,3,troilusandcressida,1602 gifts,3,troilusandcressida,1602 Strike,3,troilusandcressida,1602 grieve,3,troilusandcressida,1602 evil,3,troilusandcressida,1602 minds,3,troilusandcressida,1602 yond,3,troilusandcressida,1602 Time,3,troilusandcressida,1602 Phrygian,3,troilusandcressida,1602 Brother,3,troilusandcressida,1602 grant,3,troilusandcressida,1602 answers,3,troilusandcressida,1602 fighting,3,troilusandcressida,1602 fine,3,troilusandcressida,1602 fill,3,troilusandcressida,1602 moderate,3,troilusandcressida,1602 Fare,3,troilusandcressida,1602 wide,3,troilusandcressida,1602 tail,3,troilusandcressida,1602 bite,3,troilusandcressida,1602 herself,3,troilusandcressida,1602 aunt,3,troilusandcressida,1602 ache,3,troilusandcressida,1602 given,3,troilusandcressida,1602 mothers,3,troilusandcressida,1602 holy,3,troilusandcressida,1602 clear,3,troilusandcressida,1602 thank,3,troilusandcressida,1602 green,3,troilusandcressida,1602 greet,3,troilusandcressida,1602 dangerous,3,troilusandcressida,1602 follows,3,troilusandcressida,1602 falsehood,3,troilusandcressida,1602 hairs,3,troilusandcressida,1602 adieu,3,troilusandcressida,1602 talking,3,troilusandcressida,1602 either,3,troilusandcressida,1602 cost,3,troilusandcressida,1602 planets,3,troilusandcressida,1602 Pray,3,troilusandcressida,1602 core,3,troilusandcressida,1602 heels,3,troilusandcressida,1602 entreat,3,troilusandcressida,1602 tied,3,troilusandcressida,1602 port,3,troilusandcressida,1602 lovers,3,troilusandcressida,1602 souls,3,troilusandcressida,1602 sell,3,troilusandcressida,1602 tide,3,troilusandcressida,1602 aloud,3,troilusandcressida,1602 send,3,troilusandcressida,1602 cold,3,troilusandcressida,1602 invite,3,troilusandcressida,1602 lip,3,troilusandcressida,1602 torch,3,troilusandcressida,1602 sounded,3,troilusandcressida,1602 remember,3,troilusandcressida,1602 meeting,3,troilusandcressida,1602 Since,3,troilusandcressida,1602 burns,3,troilusandcressida,1602 amorous,3,troilusandcressida,1602 last,3,troilusandcressida,1602 fever,3,troilusandcressida,1602 thither,3,troilusandcressida,1602 late,3,troilusandcressida,1602 elephant,3,troilusandcressida,1602 severally,3,troilusandcressida,1602 dwells,3,troilusandcressida,1602 numbers,3,troilusandcressida,1602 respect,3,troilusandcressida,1602 centre,3,troilusandcressida,1602 unarm,3,troilusandcressida,1602 He's,3,troilusandcressida,1602 another's,3,troilusandcressida,1602 inches,3,troilusandcressida,1602 certain,3,troilusandcressida,1602 success,3,troilusandcressida,1602 Take,3,troilusandcressida,1602 tempt,3,troilusandcressida,1602 Fall,3,troilusandcressida,1602 'mongst,3,troilusandcressida,1602 Cressid's,3,troilusandcressida,1602 bids,3,troilusandcressida,1602 th',3,troilusandcressida,1602 Words,3,troilusandcressida,1602 chivalry,3,troilusandcressida,1602 crown,3,troilusandcressida,1602 crows,3,troilusandcressida,1602 order,3,troilusandcressida,1602 e'er,3,troilusandcressida,1602 sharp,3,troilusandcressida,1602 regard,4,troilusandcressida,1602 truce,4,troilusandcressida,1602 ignorance,4,troilusandcressida,1602 smiles,4,troilusandcressida,1602 days,4,troilusandcressida,1602 mistress,4,troilusandcressida,1602 speech,4,troilusandcressida,1602 Calchas,4,troilusandcressida,1602 haste,4,troilusandcressida,1602 help,4,troilusandcressida,1602 bones,4,troilusandcressida,1602 villain,4,troilusandcressida,1602 mere,4,troilusandcressida,1602 while,4,troilusandcressida,1602 Helen's,4,troilusandcressida,1602 sort,4,troilusandcressida,1602 friends,4,troilusandcressida,1602 performance,4,troilusandcressida,1602 strength,4,troilusandcressida,1602 After,4,troilusandcressida,1602 heat,4,troilusandcressida,1602 making,4,troilusandcressida,1602 fools,4,troilusandcressida,1602 soft,4,troilusandcressida,1602 something,4,troilusandcressida,1602 vice,4,troilusandcressida,1602 Aside,4,troilusandcressida,1602 scorn,4,troilusandcressida,1602 spy,4,troilusandcressida,1602 deliver,4,troilusandcressida,1602 Pandarus',4,troilusandcressida,1602 subject,4,troilusandcressida,1602 Was,4,troilusandcressida,1602 Their,4,troilusandcressida,1602 ourselves,4,troilusandcressida,1602 born,4,troilusandcressida,1602 fault,4,troilusandcressida,1602 unarm'd,4,troilusandcressida,1602 thence,4,troilusandcressida,1602 infinite,4,troilusandcressida,1602 rude,4,troilusandcressida,1602 hence,4,troilusandcressida,1602 rest,4,troilusandcressida,1602 stop,4,troilusandcressida,1602 bright,4,troilusandcressida,1602 praises,4,troilusandcressida,1602 wherefore,4,troilusandcressida,1602 side,4,troilusandcressida,1602 offend,4,troilusandcressida,1602 pay,4,troilusandcressida,1602 neither,4,troilusandcressida,1602 therefore,4,troilusandcressida,1602 smile,4,troilusandcressida,1602 scurvy,4,troilusandcressida,1602 kings,4,troilusandcressida,1602 wisdom,4,troilusandcressida,1602 since,4,troilusandcressida,1602 means,4,troilusandcressida,1602 glorious,4,troilusandcressida,1602 grief,4,troilusandcressida,1602 got,4,troilusandcressida,1602 wear,4,troilusandcressida,1602 Lies,4,troilusandcressida,1602 Speak,4,troilusandcressida,1602 just,4,troilusandcressida,1602 theme,4,troilusandcressida,1602 Both,4,troilusandcressida,1602 confess,4,troilusandcressida,1602 servant,4,troilusandcressida,1602 favour,4,troilusandcressida,1602 safe,4,troilusandcressida,1602 priest,4,troilusandcressida,1602 gall,4,troilusandcressida,1602 touch'd,4,troilusandcressida,1602 hands,4,troilusandcressida,1602 door,4,troilusandcressida,1602 feast,4,troilusandcressida,1602 commands,4,troilusandcressida,1602 Yes,4,troilusandcressida,1602 grace,4,troilusandcressida,1602 eats,4,troilusandcressida,1602 speaks,4,troilusandcressida,1602 pale,4,troilusandcressida,1602 palm,4,troilusandcressida,1602 mighty,4,troilusandcressida,1602 excuse,4,troilusandcressida,1602 open,4,troilusandcressida,1602 She's,4,troilusandcressida,1602 vengeance,4,troilusandcressida,1602 arm,4,troilusandcressida,1602 foot,4,troilusandcressida,1602 dreadful,4,troilusandcressida,1602 rogue,4,troilusandcressida,1602 puts,4,troilusandcressida,1602 ye,4,troilusandcressida,1602 deadly,4,troilusandcressida,1602 token,4,troilusandcressida,1602 new,4,troilusandcressida,1602 change,4,troilusandcressida,1602 moved,4,troilusandcressida,1602 lords,4,troilusandcressida,1602 note,4,troilusandcressida,1602 almost,4,troilusandcressida,1602 Love,4,troilusandcressida,1602 borne,4,troilusandcressida,1602 stays,4,troilusandcressida,1602 yours,4,troilusandcressida,1602 effect,4,troilusandcressida,1602 foolish,4,troilusandcressida,1602 emulous,4,troilusandcressida,1602 mass,4,troilusandcressida,1602 slave,4,troilusandcressida,1602 quoth,4,troilusandcressida,1602 won,4,troilusandcressida,1602 blow,4,troilusandcressida,1602 gates,4,troilusandcressida,1602 need,4,troilusandcressida,1602 higher,4,troilusandcressida,1602 tarried,4,troilusandcressida,1602 marvel,4,troilusandcressida,1602 firm,4,troilusandcressida,1602 neck,4,troilusandcressida,1602 throw,4,troilusandcressida,1602 sides,4,troilusandcressida,1602 win,4,troilusandcressida,1602 oft,4,troilusandcressida,1602 only,4,troilusandcressida,1602 oath,4,troilusandcressida,1602 found,4,troilusandcressida,1602 danger,4,troilusandcressida,1602 wanton,4,troilusandcressida,1602 serve,4,troilusandcressida,1602 emulation,4,troilusandcressida,1602 Make,4,troilusandcressida,1602 Pandar,4,troilusandcressida,1602 Jupiter,4,troilusandcressida,1602 please,4,troilusandcressida,1602 wounds,4,troilusandcressida,1602 palace,4,troilusandcressida,1602 fie,4,troilusandcressida,1602 passion,4,troilusandcressida,1602 vow,4,troilusandcressida,1602 horn,4,troilusandcressida,1602 Troilus',4,troilusandcressida,1602 meddle,4,troilusandcressida,1602 ta'en,4,troilusandcressida,1602 patient,4,troilusandcressida,1602 base,4,troilusandcressida,1602 HELENUS,4,troilusandcressida,1602 tame,4,troilusandcressida,1602 hope,4,troilusandcressida,1602 Welcome,4,troilusandcressida,1602 meets,4,troilusandcressida,1602 arm'd,4,troilusandcressida,1602 carry,4,troilusandcressida,1602 short,4,troilusandcressida,1602 cut,4,troilusandcressida,1602 request,4,troilusandcressida,1602 gives,4,troilusandcressida,1602 fairer,4,troilusandcressida,1602 aught,4,troilusandcressida,1602 troth,4,troilusandcressida,1602 'twixt,4,troilusandcressida,1602 courtesy,4,troilusandcressida,1602 traitor,4,troilusandcressida,1602 glove,4,troilusandcressida,1602 alas,4,troilusandcressida,1602 bade,4,troilusandcressida,1602 Ilium,4,troilusandcressida,1602 ear,4,troilusandcressida,1602 spirits,4,troilusandcressida,1602 Cassandra,4,troilusandcressida,1602 lion,4,troilusandcressida,1602 appetite,4,troilusandcressida,1602 going,4,troilusandcressida,1602 Menelaus',4,troilusandcressida,1602 due,4,troilusandcressida,1602 weight,4,troilusandcressida,1602 dry,4,troilusandcressida,1602 proclamation,4,troilusandcressida,1602 ten,4,troilusandcressida,1602 shape,4,troilusandcressida,1602 enemy,4,troilusandcressida,1602 women,4,troilusandcressida,1602 told,5,troilusandcressida,1602 forbid,5,troilusandcressida,1602 swords,5,troilusandcressida,1602 drop,5,troilusandcressida,1602 Alas,5,troilusandcressida,1602 brown,5,troilusandcressida,1602 helm,5,troilusandcressida,1602 run,5,troilusandcressida,1602 whoreson,5,troilusandcressida,1602 early,5,troilusandcressida,1602 mercy,5,troilusandcressida,1602 soon,5,troilusandcressida,1602 birth,5,troilusandcressida,1602 grown,5,troilusandcressida,1602 policy,5,troilusandcressida,1602 Cupid,5,troilusandcressida,1602 view,5,troilusandcressida,1602 she's,5,troilusandcressida,1602 stands,5,troilusandcressida,1602 embrace,5,troilusandcressida,1602 wings,5,troilusandcressida,1602 guide,5,troilusandcressida,1602 Calchas',5,troilusandcressida,1602 applause,5,troilusandcressida,1602 cuckold,5,troilusandcressida,1602 knees,5,troilusandcressida,1602 mean,5,troilusandcressida,1602 There's,5,troilusandcressida,1602 praised,5,troilusandcressida,1602 ANTENOR,5,troilusandcressida,1602 Ah,5,troilusandcressida,1602 proof,5,troilusandcressida,1602 unless,5,troilusandcressida,1602 canst,5,troilusandcressida,1602 to't,5,troilusandcressida,1602 force,5,troilusandcressida,1602 Had,5,troilusandcressida,1602 sport,5,troilusandcressida,1602 best,5,troilusandcressida,1602 challenge,5,troilusandcressida,1602 sooner,5,troilusandcressida,1602 put,5,troilusandcressida,1602 a',5,troilusandcressida,1602 curse,5,troilusandcressida,1602 buy,5,troilusandcressida,1602 crowns,5,troilusandcressida,1602 deep,5,troilusandcressida,1602 oh,5,troilusandcressida,1602 fears,5,troilusandcressida,1602 whereof,5,troilusandcressida,1602 loss,5,troilusandcressida,1602 forgot,5,troilusandcressida,1602 Because,5,troilusandcressida,1602 valour,5,troilusandcressida,1602 discourse,5,troilusandcressida,1602 More,5,troilusandcressida,1602 MARGARELON,5,troilusandcressida,1602 form,5,troilusandcressida,1602 present,5,troilusandcressida,1602 mock,5,troilusandcressida,1602 twain,5,troilusandcressida,1602 thanks,5,troilusandcressida,1602 Hath,5,troilusandcressida,1602 here's,5,troilusandcressida,1602 Grecians,5,troilusandcressida,1602 far,5,troilusandcressida,1602 rank,5,troilusandcressida,1602 envy,5,troilusandcressida,1602 ours,5,troilusandcressida,1602 hide,5,troilusandcressida,1602 Doth,5,troilusandcressida,1602 already,5,troilusandcressida,1602 coward,5,troilusandcressida,1602 known,5,troilusandcressida,1602 fire,5,troilusandcressida,1602 odd,5,troilusandcressida,1602 walls,5,troilusandcressida,1602 Can,5,troilusandcressida,1602 takes,5,troilusandcressida,1602 consent,5,troilusandcressida,1602 went,5,troilusandcressida,1602 letter,5,troilusandcressida,1602 particular,5,troilusandcressida,1602 host,5,troilusandcressida,1602 Myrmidons,5,troilusandcressida,1602 fate,5,troilusandcressida,1602 fast,5,troilusandcressida,1602 gallant,5,troilusandcressida,1602 is't,5,troilusandcressida,1602 lay,5,troilusandcressida,1602 wilt,5,troilusandcressida,1602 virtues,5,troilusandcressida,1602 prithee,5,troilusandcressida,1602 alone,5,troilusandcressida,1602 Prince,5,troilusandcressida,1602 we'll,5,troilusandcressida,1602 Know,5,troilusandcressida,1602 fairly,5,troilusandcressida,1602 Trumpet,5,troilusandcressida,1602 sent,5,troilusandcressida,1602 sleep,5,troilusandcressida,1602 eat,5,troilusandcressida,1602 conduct,5,troilusandcressida,1602 Ilion,5,troilusandcressida,1602 learn,5,troilusandcressida,1602 Great,5,troilusandcressida,1602 fashion,5,troilusandcressida,1602 wound,5,troilusandcressida,1602 May,5,troilusandcressida,1602 catch,5,troilusandcressida,1602 kind,5,troilusandcressida,1602 woman,5,troilusandcressida,1602 power,5,troilusandcressida,1602 wouldst,5,troilusandcressida,1602 guard,6,troilusandcressida,1602 business,6,troilusandcressida,1602 joint,6,troilusandcressida,1602 Must,6,troilusandcressida,1602 Agamemnon's,6,troilusandcressida,1602 Upon,6,troilusandcressida,1602 charge,6,troilusandcressida,1602 sons,6,troilusandcressida,1602 yourself,6,troilusandcressida,1602 kin,6,troilusandcressida,1602 body,6,troilusandcressida,1602 'twere,6,troilusandcressida,1602 walk,6,troilusandcressida,1602 where's,6,troilusandcressida,1602 merit,6,troilusandcressida,1602 passes,6,troilusandcressida,1602 fellow,6,troilusandcressida,1602 Though,6,troilusandcressida,1602 pretty,6,troilusandcressida,1602 wars,6,troilusandcressida,1602 bone,6,troilusandcressida,1602 steel,6,troilusandcressida,1602 What's,6,troilusandcressida,1602 quarrel,6,troilusandcressida,1602 boy,6,troilusandcressida,1602 among,6,troilusandcressida,1602 bad,6,troilusandcressida,1602 Stand,6,troilusandcressida,1602 pleasure,6,troilusandcressida,1602 bid,6,troilusandcressida,1602 weep,6,troilusandcressida,1602 goodly,6,troilusandcressida,1602 dost,6,troilusandcressida,1602 farewell,6,troilusandcressida,1602 degree,6,troilusandcressida,1602 swift,6,troilusandcressida,1602 needs,6,troilusandcressida,1602 ay,6,troilusandcressida,1602 thyself,6,troilusandcressida,1602 Yea,6,troilusandcressida,1602 lost,6,troilusandcressida,1602 ho,6,troilusandcressida,1602 loved,6,troilusandcressida,1602 knew,6,troilusandcressida,1602 ass,6,troilusandcressida,1602 Are,6,troilusandcressida,1602 judgment,6,troilusandcressida,1602 keeps,6,troilusandcressida,1602 tarry,6,troilusandcressida,1602 Therefore,6,troilusandcressida,1602 myself,6,troilusandcressida,1602 Makes,6,troilusandcressida,1602 free,6,troilusandcressida,1602 Were,6,troilusandcressida,1602 taste,6,troilusandcressida,1602 get,6,troilusandcressida,1602 We'll,6,troilusandcressida,1602 believe,6,troilusandcressida,1602 themselves,6,troilusandcressida,1602 face,6,troilusandcressida,1602 next,6,troilusandcressida,1602 lechery,6,troilusandcressida,1602 knight,6,troilusandcressida,1602 angry,6,troilusandcressida,1602 DEIPHOBUS,6,troilusandcressida,1602 fortune,6,troilusandcressida,1602 three,6,troilusandcressida,1602 work,6,troilusandcressida,1602 company,6,troilusandcressida,1602 even,6,troilusandcressida,1602 rich,6,troilusandcressida,1602 ne'er,6,troilusandcressida,1602 large,6,troilusandcressida,1602 man's,6,troilusandcressida,1602 holds,6,troilusandcressida,1602 master,6,troilusandcressida,1602 seem,6,troilusandcressida,1602 defend,6,troilusandcressida,1602 battle,6,troilusandcressida,1602 sound,6,troilusandcressida,1602 person,6,troilusandcressida,1602 house,6,troilusandcressida,1602 Nothing,6,troilusandcressida,1602 mad,6,troilusandcressida,1602 laughed,6,troilusandcressida,1602 Another,6,troilusandcressida,1602 straight,6,troilusandcressida,1602 glory,6,troilusandcressida,1602 Amen,6,troilusandcressida,1602 virtue,6,troilusandcressida,1602 Without,6,troilusandcressida,1602 Hecuba,6,troilusandcressida,1602 Did,6,troilusandcressida,1602 behold,6,troilusandcressida,1602 shalt,6,troilusandcressida,1602 greatness,6,troilusandcressida,1602 Fair,6,troilusandcressida,1602 command,6,troilusandcressida,1602 kill,6,troilusandcressida,1602 die,6,troilusandcressida,1602 Tell,7,troilusandcressida,1602 tears,7,troilusandcressida,1602 under,7,troilusandcressida,1602 plague,7,troilusandcressida,1602 chin,7,troilusandcressida,1602 saw,7,troilusandcressida,1602 Give,7,troilusandcressida,1602 cheek,7,troilusandcressida,1602 away,7,troilusandcressida,1602 wrong,7,troilusandcressida,1602 turn,7,troilusandcressida,1602 daughter,7,troilusandcressida,1602 worthy,7,troilusandcressida,1602 anon,7,troilusandcressida,1602 friend,7,troilusandcressida,1602 parts,7,troilusandcressida,1602 music,7,troilusandcressida,1602 IV,7,troilusandcressida,1602 pass,7,troilusandcressida,1602 vows,7,troilusandcressida,1602 sing,7,troilusandcressida,1602 begin,7,troilusandcressida,1602 air,7,troilusandcressida,1602 dead,7,troilusandcressida,1602 loud,7,troilusandcressida,1602 act,7,troilusandcressida,1602 ready,7,troilusandcressida,1602 reasons,7,troilusandcressida,1602 Lady,7,troilusandcressida,1602 forth,7,troilusandcressida,1602 though,7,troilusandcressida,1602 honey,7,troilusandcressida,1602 indeed,7,troilusandcressida,1602 Peace,7,troilusandcressida,1602 slain,7,troilusandcressida,1602 strike,7,troilusandcressida,1602 you'll,7,troilusandcressida,1602 high,7,troilusandcressida,1602 end,7,troilusandcressida,1602 courage,7,troilusandcressida,1602 All,7,troilusandcressida,1602 sinews,7,troilusandcressida,1602 Till,7,troilusandcressida,1602 fame,7,troilusandcressida,1602 Boy,7,troilusandcressida,1602 folly,7,troilusandcressida,1602 talk,7,troilusandcressida,1602 cur,7,troilusandcressida,1602 Who's,7,troilusandcressida,1602 swear,7,troilusandcressida,1602 seek,7,troilusandcressida,1602 self,7,troilusandcressida,1602 Cry,7,troilusandcressida,1602 sister,7,troilusandcressida,1602 hurt,7,troilusandcressida,1602 dog,7,troilusandcressida,1602 dare,7,troilusandcressida,1602 king,7,troilusandcressida,1602 CALCHAS,7,troilusandcressida,1602 rather,8,troilusandcressida,1602 Would,8,troilusandcressida,1602 care,8,troilusandcressida,1602 draw,8,troilusandcressida,1602 sure,8,troilusandcressida,1602 came,8,troilusandcressida,1602 plains,8,troilusandcressida,1602 against,8,troilusandcressida,1602 sworn,8,troilusandcressida,1602 Farewell,8,troilusandcressida,1602 looks,8,troilusandcressida,1602 about,8,troilusandcressida,1602 above,8,troilusandcressida,1602 service,8,troilusandcressida,1602 wise,8,troilusandcressida,1602 he's,8,troilusandcressida,1602 morning,8,troilusandcressida,1602 III,8,troilusandcressida,1602 His,8,troilusandcressida,1602 patience,8,troilusandcressida,1602 On,8,troilusandcressida,1602 Ha,8,troilusandcressida,1602 II,8,troilusandcressida,1602 prove,8,troilusandcressida,1602 Like,8,troilusandcressida,1602 does,8,troilusandcressida,1602 o',8,troilusandcressida,1602 loves,8,troilusandcressida,1602 ill,8,troilusandcressida,1602 devil,8,troilusandcressida,1602 Most,8,troilusandcressida,1602 call'd,8,troilusandcressida,1602 chance,8,troilusandcressida,1602 Achilles',8,troilusandcressida,1602 things,8,troilusandcressida,1602 Look,8,troilusandcressida,1602 tents,8,troilusandcressida,1602 Menelaus,8,troilusandcressida,1602 break,8,troilusandcressida,1602 Helenus,8,troilusandcressida,1602 fly,8,troilusandcressida,1602 Mars,8,troilusandcressida,1602 hour,8,troilusandcressida,1602 pardon,8,troilusandcressida,1602 match,8,troilusandcressida,1602 lips,8,troilusandcressida,1602 armed,8,troilusandcressida,1602 he'll,8,troilusandcressida,1602 spirit,8,troilusandcressida,1602 horse,9,troilusandcressida,1602 lies,9,troilusandcressida,1602 camp,9,troilusandcressida,1602 Whose,9,troilusandcressida,1602 cause,9,troilusandcressida,1602 Our,9,troilusandcressida,1602 white,9,troilusandcressida,1602 wind,9,troilusandcressida,1602 sense,9,troilusandcressida,1602 desire,9,troilusandcressida,1602 stay,9,troilusandcressida,1602 whole,9,troilusandcressida,1602 past,9,troilusandcressida,1602 ears,9,troilusandcressida,1602 tongue,9,troilusandcressida,1602 long,9,troilusandcressida,1602 that's,9,troilusandcressida,1602 less,9,troilusandcressida,1602 hast,9,troilusandcressida,1602 through,9,troilusandcressida,1602 Your,9,troilusandcressida,1602 gentle,9,troilusandcressida,1602 action,9,troilusandcressida,1602 ere,9,troilusandcressida,1602 state,9,troilusandcressida,1602 beseech,9,troilusandcressida,1602 ANDROMACHE,9,troilusandcressida,1602 thousand,9,troilusandcressida,1602 argument,9,troilusandcressida,1602 wife,9,troilusandcressida,1602 use,9,troilusandcressida,1602 seen,9,troilusandcressida,1602 Greekish,9,troilusandcressida,1602 lie,9,troilusandcressida,1602 makes,9,troilusandcressida,1602 live,9,troilusandcressida,1602 strange,9,troilusandcressida,1602 sleeve,10,troilusandcressida,1602 peace,10,troilusandcressida,1602 ALEXANDER,10,troilusandcressida,1602 enough,10,troilusandcressida,1602 bastard,10,troilusandcressida,1602 within,10,troilusandcressida,1602 brain,10,troilusandcressida,1602 after,10,troilusandcressida,1602 princes,10,troilusandcressida,1602 others,10,troilusandcressida,1602 heaven,10,troilusandcressida,1602 An,10,troilusandcressida,1602 Be,10,troilusandcressida,1602 beat,10,troilusandcressida,1602 lose,10,troilusandcressida,1602 right,10,troilusandcressida,1602 Should,10,troilusandcressida,1602 Have,10,troilusandcressida,1602 From,10,troilusandcressida,1602 Sir,10,troilusandcressida,1602 youth,10,troilusandcressida,1602 PRIAM,10,troilusandcressida,1602 opinion,10,troilusandcressida,1602 says,10,troilusandcressida,1602 That's,10,troilusandcressida,1602 home,10,troilusandcressida,1602 back,10,troilusandcressida,1602 hither,10,troilusandcressida,1602 together,10,troilusandcressida,1602 goes,10,troilusandcressida,1602 Before,10,troilusandcressida,1602 shame,10,troilusandcressida,1602 might,10,troilusandcressida,1602 pray,11,troilusandcressida,1602 yonder,11,troilusandcressida,1602 Jove,11,troilusandcressida,1602 son,11,troilusandcressida,1602 sick,11,troilusandcressida,1602 Priam's,11,troilusandcressida,1602 Within,11,troilusandcressida,1602 whore,11,troilusandcressida,1602 been,11,troilusandcressida,1602 said,11,troilusandcressida,1602 earth,11,troilusandcressida,1602 Yet,11,troilusandcressida,1602 made,11,troilusandcressida,1602 niece,11,troilusandcressida,1602 between,11,troilusandcressida,1602 hair,11,troilusandcressida,1602 fall,11,troilusandcressida,1602 ever,11,troilusandcressida,1602 Sweet,11,troilusandcressida,1602 find,11,troilusandcressida,1602 till,11,troilusandcressida,1602 Antenor,11,troilusandcressida,1602 whom,11,troilusandcressida,1602 first,11,troilusandcressida,1602 Thy,11,troilusandcressida,1602 V,12,troilusandcressida,1602 trumpet,12,troilusandcressida,1602 set,12,troilusandcressida,1602 heavens,12,troilusandcressida,1602 sun,12,troilusandcressida,1602 bed,12,troilusandcressida,1602 play,12,troilusandcressida,1602 Re,12,troilusandcressida,1602 ha,12,troilusandcressida,1602 noble,12,troilusandcressida,1602 Hark,12,troilusandcressida,1602 young,12,troilusandcressida,1602 question,12,troilusandcressida,1602 mind,12,troilusandcressida,1602 Then,12,troilusandcressida,1602 once,12,troilusandcressida,1602 who,12,troilusandcressida,1602 arms,12,troilusandcressida,1602 Greece,12,troilusandcressida,1602 old,12,troilusandcressida,1602 Trojans,12,troilusandcressida,1602 cry,12,troilusandcressida,1602 being,12,troilusandcressida,1602 nature,12,troilusandcressida,1602 o'er,13,troilusandcressida,1602 Will,13,troilusandcressida,1602 world,13,troilusandcressida,1602 words,13,troilusandcressida,1602 voice,13,troilusandcressida,1602 At,13,troilusandcressida,1602 name,13,troilusandcressida,1602 deeds,13,troilusandcressida,1602 Cressida,13,troilusandcressida,1602 place,13,troilusandcressida,1602 half,13,troilusandcressida,1602 little,13,troilusandcressida,1602 show,13,troilusandcressida,1602 She,13,troilusandcressida,1602 same,13,troilusandcressida,1602 off,13,troilusandcressida,1602 Priam,13,troilusandcressida,1602 poor,13,troilusandcressida,1602 thoughts,13,troilusandcressida,1602 beauty,13,troilusandcressida,1602 two,13,troilusandcressida,1602 without,13,troilusandcressida,1602 brave,14,troilusandcressida,1602 both,14,troilusandcressida,1602 else,14,troilusandcressida,1602 never,14,troilusandcressida,1602 gone,14,troilusandcressida,1602 breath,14,troilusandcressida,1602 cousin,14,troilusandcressida,1602 keep,14,troilusandcressida,1602 none,14,troilusandcressida,1602 knows,14,troilusandcressida,1602 Even,14,troilusandcressida,1602 reason,14,troilusandcressida,1602 hold,14,troilusandcressida,1602 purpose,14,troilusandcressida,1602 father,14,troilusandcressida,1602 Where,14,troilusandcressida,1602 meet,15,troilusandcressida,1602 thought,15,troilusandcressida,1602 head,15,troilusandcressida,1602 death,15,troilusandcressida,1602 each,15,troilusandcressida,1602 has,15,troilusandcressida,1602 Go,15,troilusandcressida,1602 bear,15,troilusandcressida,1602 dear,15,troilusandcressida,1602 hot,15,troilusandcressida,1602 prince,15,troilusandcressida,1602 Than,15,troilusandcressida,1602 into,15,troilusandcressida,1602 there's,15,troilusandcressida,1602 war,15,troilusandcressida,1602 Shall,15,troilusandcressida,1602 uncle,15,troilusandcressida,1602 Nestor,15,troilusandcressida,1602 answer,16,troilusandcressida,1602 soul,16,troilusandcressida,1602 another,16,troilusandcressida,1602 There,16,troilusandcressida,1602 fear,16,troilusandcressida,1602 welcome,16,troilusandcressida,1602 praise,16,troilusandcressida,1602 before,16,troilusandcressida,1602 way,16,troilusandcressida,1602 kiss,16,troilusandcressida,1602 strong,16,troilusandcressida,1602 Pandarus,16,troilusandcressida,1602 cannot,16,troilusandcressida,1602 Nor,17,troilusandcressida,1602 Not,17,troilusandcressida,1602 nothing,17,troilusandcressida,1602 worth,17,troilusandcressida,1602 false,17,troilusandcressida,1602 enter,17,troilusandcressida,1602 proud,17,troilusandcressida,1602 valiant,17,troilusandcressida,1602 whose,17,troilusandcressida,1602 i',17,troilusandcressida,1602 Ulysses,17,troilusandcressida,1602 Lord,17,troilusandcressida,1602 mine,17,troilusandcressida,1602 why,17,troilusandcressida,1602 Well,17,troilusandcressida,1602 'Tis,17,troilusandcressida,1602 what's,17,troilusandcressida,1602 my,273,troilusandcressida,1602 hear,18,troilusandcressida,1602 full,18,troilusandcressida,1602 By,18,troilusandcressida,1602 those,18,troilusandcressida,1602 where,18,troilusandcressida,1602 eye,18,troilusandcressida,1602 CASSANDRA,18,troilusandcressida,1602 could,18,troilusandcressida,1602 pride,18,troilusandcressida,1602 leave,18,troilusandcressida,1602 men,18,troilusandcressida,1602 did,18,troilusandcressida,1602 life,19,troilusandcressida,1602 truth,19,troilusandcressida,1602 some,19,troilusandcressida,1602 HELEN,19,troilusandcressida,1602 sword,19,troilusandcressida,1602 Do,19,troilusandcressida,1602 down,19,troilusandcressida,1602 look,19,troilusandcressida,1602 AEneas,19,troilusandcressida,1602 They,19,troilusandcressida,1602 queen,19,troilusandcressida,1602 brother,20,troilusandcressida,1602 bring,20,troilusandcressida,1602 Which,20,troilusandcressida,1602 MENELAUS,20,troilusandcressida,1602 field,20,troilusandcressida,1602 very,20,troilusandcressida,1602 Hector's,20,troilusandcressida,1602 nor,20,troilusandcressida,1602 still,20,troilusandcressida,1602 word,20,troilusandcressida,1602 lady,20,troilusandcressida,1602 itself,21,troilusandcressida,1602 Or,21,troilusandcressida,1602 faith,21,troilusandcressida,1602 wit,21,troilusandcressida,1602 stand,21,troilusandcressida,1602 Greeks,21,troilusandcressida,1602 time,21,troilusandcressida,1602 which,22,troilusandcressida,1602 We,22,troilusandcressida,1602 can,22,troilusandcressida,1602 general,22,troilusandcressida,1602 Greek,22,troilusandcressida,1602 Nay,23,troilusandcressida,1602 every,23,troilusandcressida,1602 better,23,troilusandcressida,1602 Servant,23,troilusandcressida,1602 Here,23,troilusandcressida,1602 any,23,troilusandcressida,1602 done,23,troilusandcressida,1602 thing,23,troilusandcressida,1602 own,23,troilusandcressida,1602 Patroclus,23,troilusandcressida,1602 thus,23,troilusandcressida,1602 other,23,troilusandcressida,1602 Thersites,24,troilusandcressida,1602 call,24,troilusandcressida,1602 part,24,troilusandcressida,1602 ACT,24,troilusandcressida,1602 again,24,troilusandcressida,1602 Come,25,troilusandcressida,1602 Now,25,troilusandcressida,1602 Who,25,troilusandcressida,1602 sir,25,troilusandcressida,1602 matter,25,troilusandcressida,1602 had,25,troilusandcressida,1602 It,25,troilusandcressida,1602 many,25,troilusandcressida,1602 comes,25,troilusandcressida,1602 gods,25,troilusandcressida,1602 SCENE,25,troilusandcressida,1602 himself,25,troilusandcressida,1602 Agamemnon,25,troilusandcressida,1602 fight,26,troilusandcressida,1602 honour,26,troilusandcressida,1602 Is,26,troilusandcressida,1602 most,26,troilusandcressida,1602 art,26,troilusandcressida,1602 fool,26,troilusandcressida,1602 Thou,26,troilusandcressida,1602 This,26,troilusandcressida,1602 AND,26,troilusandcressida,1602 morrow,26,troilusandcressida,1602 So,27,troilusandcressida,1602 Helen,27,troilusandcressida,1602 think,27,troilusandcressida,1602 Of,28,troilusandcressida,1602 blood,28,troilusandcressida,1602 hand,28,troilusandcressida,1602 take,28,troilusandcressida,1602 When,28,troilusandcressida,1602 With,29,troilusandcressida,1602 these,29,troilusandcressida,1602 Ay,29,troilusandcressida,1602 night,29,troilusandcressida,1602 Diomed,30,troilusandcressida,1602 tent,30,troilusandcressida,1602 Good,30,troilusandcressida,1602 doth,30,troilusandcressida,1602 true,30,troilusandcressida,1602 Cressid,30,troilusandcressida,1602 up,31,troilusandcressida,1602 Grecian,31,troilusandcressida,1602 Trojan,31,troilusandcressida,1602 eyes,32,troilusandcressida,1602 Paris,33,troilusandcressida,1602 For,35,troilusandcressida,1602 'tis,35,troilusandcressida,1602 speak,35,troilusandcressida,1602 make,35,troilusandcressida,1602 Let,35,troilusandcressida,1602 PARIS,36,troilusandcressida,1602 Exeunt,36,troilusandcressida,1602 yet,36,troilusandcressida,1602 am,36,troilusandcressida,1602 much,37,troilusandcressida,1602 day,37,troilusandcressida,1602 may,37,troilusandcressida,1602 My,38,troilusandcressida,1602 heart,38,troilusandcressida,1602 No,39,troilusandcressida,1602 should,39,troilusandcressida,1602 when,39,troilusandcressida,1602 let,40,troilusandcressida,1602 ',41,troilusandcressida,1602 give,41,troilusandcressida,1602 well,41,troilusandcressida,1602 not,297,troilusandcressida,1602 upon,42,troilusandcressida,1602 If,42,troilusandcressida,1602 How,42,troilusandcressida,1602 fair,42,troilusandcressida,1602 Exit,42,troilusandcressida,1602 know,43,troilusandcressida,1602 how,43,troilusandcressida,1602 Why,44,troilusandcressida,1602 them,44,troilusandcressida,1602 He,44,troilusandcressida,1602 was,44,troilusandcressida,1602 out,44,troilusandcressida,1602 sweet,44,troilusandcressida,1602 too,45,troilusandcressida,1602 PATROCLUS,46,troilusandcressida,1602 is,302,troilusandcressida,1602 must,47,troilusandcressida,1602 see,47,troilusandcressida,1602 such,47,troilusandcressida,1602 were,48,troilusandcressida,1602 say,49,troilusandcressida,1602 tell,49,troilusandcressida,1602 In,49,troilusandcressida,1602 good,49,troilusandcressida,1602 NESTOR,51,troilusandcressida,1602 then,53,troilusandcressida,1602 their,53,troilusandcressida,1602 if,53,troilusandcressida,1602 like,54,troilusandcressida,1602 Ajax,54,troilusandcressida,1602 us,54,troilusandcressida,1602 A,55,troilusandcressida,1602 here,55,troilusandcressida,1602 hath,55,troilusandcressida,1602 they,56,troilusandcressida,1602 one,56,troilusandcressida,1602 great,57,troilusandcressida,1602 AENEAS,58,troilusandcressida,1602 an,60,troilusandcressida,1602 go,61,troilusandcressida,1602 she,63,troilusandcressida,1602 love,63,troilusandcressida,1602 You,64,troilusandcressida,1602 in,320,troilusandcressida,1602 AGAMEMNON,66,troilusandcressida,1602 Troy,66,troilusandcressida,1602 AJAX,66,troilusandcressida,1602 would,66,troilusandcressida,1602 or,67,troilusandcressida,1602 at,68,troilusandcressida,1602 Enter,68,troilusandcressida,1602 come,68,troilusandcressida,1602 Achilles,70,troilusandcressida,1602 HECTOR,70,troilusandcressida,1602 As,71,troilusandcressida,1602 from,71,troilusandcressida,1602 man,72,troilusandcressida,1602 more,73,troilusandcressida,1602 DIOMEDES,74,troilusandcressida,1602 That,74,troilusandcressida,1602 there,75,troilusandcressida,1602 than,77,troilusandcressida,1602 we,78,troilusandcressida,1602 What,79,troilusandcressida,1602 Troilus,80,troilusandcressida,1602 But,80,troilusandcressida,1602 O,81,troilusandcressida,1602 now,83,troilusandcressida,1602 I'll,84,troilusandcressida,1602 by,86,troilusandcressida,1602 on,87,troilusandcressida,1602 ACHILLES,88,troilusandcressida,1602 thee,90,troilusandcressida,1602 no,90,troilusandcressida,1602 thy,90,troilusandcressida,1602 and,602,troilusandcressida,1602 ULYSSES,94,troilusandcressida,1602 lord,96,troilusandcressida,1602 are,97,troilusandcressida,1602 THERSITES,98,troilusandcressida,1602 To,101,troilusandcressida,1602 what,103,troilusandcressida,1602 our,104,troilusandcressida,1602 Hector,104,troilusandcressida,1602 shall,111,troilusandcressida,1602 her,113,troilusandcressida,1602 you,371,troilusandcressida,1602 your,116,troilusandcressida,1602 so,116,troilusandcressida,1602 but,120,troilusandcressida,1602 thou,121,troilusandcressida,1602 do,126,troilusandcressida,1602 The,128,troilusandcressida,1602 all,134,troilusandcressida,1602 will,135,troilusandcressida,1602 this,140,troilusandcressida,1602 have,142,troilusandcressida,1602 for,145,troilusandcressida,1602 a,410,troilusandcressida,1602 it,163,troilusandcressida,1602 as,167,troilusandcressida,1602 PANDARUS,167,troilusandcressida,1602 be,179,troilusandcressida,1602 And,181,troilusandcressida,1602 he,183,troilusandcressida,1602 TROILUS,184,troilusandcressida,1602 with,184,troilusandcressida,1602 him,187,troilusandcressida,1602 me,187,troilusandcressida,1602 CRESSIDA,190,troilusandcressida,1602 the,715,troilusandcressida,1602 his,223,troilusandcressida,1602 of,479,troilusandcressida,1602 that,231,troilusandcressida,1602 to,492,troilusandcressida,1602 I,505,troilusandcressida,1602 profession,1,merrywivesofwindsor,1600 jer,1,merrywivesofwindsor,1600 encompassed,1,merrywivesofwindsor,1600 malecontents,1,merrywivesofwindsor,1600 Garter's,1,merrywivesofwindsor,1600 troubles,1,merrywivesofwindsor,1600 scrape,1,merrywivesofwindsor,1600 forbid,1,merrywivesofwindsor,1600 'larum,1,merrywivesofwindsor,1600 chairs,1,merrywivesofwindsor,1600 piss,1,merrywivesofwindsor,1600 C,1,merrywivesofwindsor,1600 sped,1,merrywivesofwindsor,1600 parted,1,merrywivesofwindsor,1600 verba,1,merrywivesofwindsor,1600 Quick,1,merrywivesofwindsor,1600 Corrupt,1,merrywivesofwindsor,1600 transform,1,merrywivesofwindsor,1600 puddings,1,merrywivesofwindsor,1600 swords,1,merrywivesofwindsor,1600 pinse,1,merrywivesofwindsor,1600 verbs,1,merrywivesofwindsor,1600 grey,1,merrywivesofwindsor,1600 meed,1,merrywivesofwindsor,1600 Youth,1,merrywivesofwindsor,1600 enjoyed,1,merrywivesofwindsor,1600 pity,1,merrywivesofwindsor,1600 happier,1,merrywivesofwindsor,1600 Fed,1,merrywivesofwindsor,1600 provocation,1,merrywivesofwindsor,1600 Bully,1,merrywivesofwindsor,1600 mistaking,1,merrywivesofwindsor,1600 taking,1,merrywivesofwindsor,1600 rebukes,1,merrywivesofwindsor,1600 days,1,merrywivesofwindsor,1600 fornications,1,merrywivesofwindsor,1600 y,1,merrywivesofwindsor,1600 easing,1,merrywivesofwindsor,1600 afar,1,merrywivesofwindsor,1600 mussel,1,merrywivesofwindsor,1600 description,1,merrywivesofwindsor,1600 stoccadoes,1,merrywivesofwindsor,1600 Villany,1,merrywivesofwindsor,1600 assay,1,merrywivesofwindsor,1600 rammed,1,merrywivesofwindsor,1600 Hear,1,merrywivesofwindsor,1600 leisure,1,merrywivesofwindsor,1600 double,1,merrywivesofwindsor,1600 Devise,1,merrywivesofwindsor,1600 wears,1,merrywivesofwindsor,1600 Frenchman,1,merrywivesofwindsor,1600 raw,1,merrywivesofwindsor,1600 worships',1,merrywivesofwindsor,1600 horse,1,merrywivesofwindsor,1600 business,1,merrywivesofwindsor,1600 twin,1,merrywivesofwindsor,1600 following,1,merrywivesofwindsor,1600 vizards,1,merrywivesofwindsor,1600 neighbours,1,merrywivesofwindsor,1600 peasant,1,merrywivesofwindsor,1600 dismayed,1,merrywivesofwindsor,1600 follies,1,merrywivesofwindsor,1600 o'erlook'd,1,merrywivesofwindsor,1600 dine,1,merrywivesofwindsor,1600 musket,1,merrywivesofwindsor,1600 brows,1,merrywivesofwindsor,1600 lawful,1,merrywivesofwindsor,1600 'horum,1,merrywivesofwindsor,1600 brown,1,merrywivesofwindsor,1600 Whether,1,merrywivesofwindsor,1600 regress,1,merrywivesofwindsor,1600 dagger,1,merrywivesofwindsor,1600 whitsters,1,merrywivesofwindsor,1600 help,1,merrywivesofwindsor,1600 Villain,1,merrywivesofwindsor,1600 'Nay,1,merrywivesofwindsor,1600 foolery,1,merrywivesofwindsor,1600 element,1,merrywivesofwindsor,1600 outrun,1,merrywivesofwindsor,1600 dissolutely,1,merrywivesofwindsor,1600 offended,1,merrywivesofwindsor,1600 robe,1,merrywivesofwindsor,1600 ruminates,1,merrywivesofwindsor,1600 offender,1,merrywivesofwindsor,1600 doubtful,1,merrywivesofwindsor,1600 scene,1,merrywivesofwindsor,1600 peradventures,1,merrywivesofwindsor,1600 apprehended,1,merrywivesofwindsor,1600 chiding,1,merrywivesofwindsor,1600 'Convey,1,merrywivesofwindsor,1600 muse,1,merrywivesofwindsor,1600 joy,1,merrywivesofwindsor,1600 easily,1,merrywivesofwindsor,1600 space,1,merrywivesofwindsor,1600 ambling,1,merrywivesofwindsor,1600 waxen,1,merrywivesofwindsor,1600 simples,1,merrywivesofwindsor,1600 hearths,1,merrywivesofwindsor,1600 discourses,1,merrywivesofwindsor,1600 construction,1,merrywivesofwindsor,1600 melt,1,merrywivesofwindsor,1600 Star,1,merrywivesofwindsor,1600 whale,1,merrywivesofwindsor,1600 chimneys,1,merrywivesofwindsor,1600 exteriors,1,merrywivesofwindsor,1600 emulate,1,merrywivesofwindsor,1600 freer,1,merrywivesofwindsor,1600 mess,1,merrywivesofwindsor,1600 singly,1,merrywivesofwindsor,1600 prat,1,merrywivesofwindsor,1600 painted,1,merrywivesofwindsor,1600 authentic,1,merrywivesofwindsor,1600 easier,1,merrywivesofwindsor,1600 giantess,1,merrywivesofwindsor,1600 Must,1,merrywivesofwindsor,1600 unreasonable,1,merrywivesofwindsor,1600 trunk,1,merrywivesofwindsor,1600 proceedings,1,merrywivesofwindsor,1600 mere,1,merrywivesofwindsor,1600 violent,1,merrywivesofwindsor,1600 Tester,1,merrywivesofwindsor,1600 vais,1,merrywivesofwindsor,1600 decay,1,merrywivesofwindsor,1600 celestial,1,merrywivesofwindsor,1600 Cried,1,merrywivesofwindsor,1600 chest,1,merrywivesofwindsor,1600 unwholesome,1,merrywivesofwindsor,1600 disease,1,merrywivesofwindsor,1600 urchins,1,merrywivesofwindsor,1600 recourse,1,merrywivesofwindsor,1600 skirts,1,merrywivesofwindsor,1600 Step,1,merrywivesofwindsor,1600 honourable,1,merrywivesofwindsor,1600 alligant,1,merrywivesofwindsor,1600 irreligious,1,merrywivesofwindsor,1600 offer,1,merrywivesofwindsor,1600 whipped,1,merrywivesofwindsor,1600 adversary,1,merrywivesofwindsor,1600 Pickt,1,merrywivesofwindsor,1600 Woman,1,merrywivesofwindsor,1600 ragg'd,1,merrywivesofwindsor,1600 Wife,1,merrywivesofwindsor,1600 Crier,1,merrywivesofwindsor,1600 advance,1,merrywivesofwindsor,1600 sugar,1,merrywivesofwindsor,1600 wield,1,merrywivesofwindsor,1600 maintain,1,merrywivesofwindsor,1600 fury,1,merrywivesofwindsor,1600 declined,1,merrywivesofwindsor,1600 knighthood's,1,merrywivesofwindsor,1600 nowhere,1,merrywivesofwindsor,1600 worms,1,merrywivesofwindsor,1600 Polecats,1,merrywivesofwindsor,1600 lies,1,merrywivesofwindsor,1600 laundry,1,merrywivesofwindsor,1600 odds,1,merrywivesofwindsor,1600 absolute,1,merrywivesofwindsor,1600 offal,1,merrywivesofwindsor,1600 rut,1,merrywivesofwindsor,1600 ancestors,1,merrywivesofwindsor,1600 pleasures,1,merrywivesofwindsor,1600 disobedience,1,merrywivesofwindsor,1600 Whoa,1,merrywivesofwindsor,1600 Locking,1,merrywivesofwindsor,1600 'marry,1,merrywivesofwindsor,1600 baggage,1,merrywivesofwindsor,1600 scruple,1,merrywivesofwindsor,1600 earls,1,merrywivesofwindsor,1600 cheques,1,merrywivesofwindsor,1600 Upon,1,merrywivesofwindsor,1600 musk,1,merrywivesofwindsor,1600 PERSONAE,1,merrywivesofwindsor,1600 Anthropophaginian,1,merrywivesofwindsor,1600 proclaim,1,merrywivesofwindsor,1600 greyhound,1,merrywivesofwindsor,1600 Gloucester,1,merrywivesofwindsor,1600 Buckled,1,merrywivesofwindsor,1600 couched,1,merrywivesofwindsor,1600 baited,1,merrywivesofwindsor,1600 deservest,1,merrywivesofwindsor,1600 cast,1,merrywivesofwindsor,1600 shovel,1,merrywivesofwindsor,1600 Prevent,1,merrywivesofwindsor,1600 teaches,1,merrywivesofwindsor,1600 early,1,merrywivesofwindsor,1600 softly,1,merrywivesofwindsor,1600 attempt,1,merrywivesofwindsor,1600 walking,1,merrywivesofwindsor,1600 Carry,1,merrywivesofwindsor,1600 liar,1,merrywivesofwindsor,1600 terrestrial,1,merrywivesofwindsor,1600 agrees,1,merrywivesofwindsor,1600 practised,1,merrywivesofwindsor,1600 delivered,1,merrywivesofwindsor,1600 walnut,1,merrywivesofwindsor,1600 heartlings,1,merrywivesofwindsor,1600 bending,1,merrywivesofwindsor,1600 sons,1,merrywivesofwindsor,1600 draw,1,merrywivesofwindsor,1600 stock,1,merrywivesofwindsor,1600 tasking,1,merrywivesofwindsor,1600 friend's,1,merrywivesofwindsor,1600 drive,1,merrywivesofwindsor,1600 spies,1,merrywivesofwindsor,1600 sold,1,merrywivesofwindsor,1600 Cataian,1,merrywivesofwindsor,1600 revellers,1,merrywivesofwindsor,1600 Young,1,merrywivesofwindsor,1600 skirted,1,merrywivesofwindsor,1600 cabbage,1,merrywivesofwindsor,1600 sat,1,merrywivesofwindsor,1600 entrails,1,merrywivesofwindsor,1600 yearn,1,merrywivesofwindsor,1600 buffets,1,merrywivesofwindsor,1600 soit,1,merrywivesofwindsor,1600 bilberry,1,merrywivesofwindsor,1600 fighter,1,merrywivesofwindsor,1600 unswept,1,merrywivesofwindsor,1600 Vherefore,1,merrywivesofwindsor,1600 crying,1,merrywivesofwindsor,1600 boards,1,merrywivesofwindsor,1600 Perforce,1,merrywivesofwindsor,1600 brother,1,merrywivesofwindsor,1600 thou'rt,1,merrywivesofwindsor,1600 gelding,1,merrywivesofwindsor,1600 Mercy,1,merrywivesofwindsor,1600 plight,1,merrywivesofwindsor,1600 heat,1,merrywivesofwindsor,1600 restitution,1,merrywivesofwindsor,1600 anchor,1,merrywivesofwindsor,1600 additions,1,merrywivesofwindsor,1600 differs,1,merrywivesofwindsor,1600 Thomas,1,merrywivesofwindsor,1600 toward,1,merrywivesofwindsor,1600 heal,1,merrywivesofwindsor,1600 dejected,1,merrywivesofwindsor,1600 drew,1,merrywivesofwindsor,1600 worthier,1,merrywivesofwindsor,1600 charactery,1,merrywivesofwindsor,1600 pronoun,1,merrywivesofwindsor,1600 wants,1,merrywivesofwindsor,1600 dwarf,1,merrywivesofwindsor,1600 madness,1,merrywivesofwindsor,1600 golden,1,merrywivesofwindsor,1600 dissolve,1,merrywivesofwindsor,1600 demands,1,merrywivesofwindsor,1600 paper,1,merrywivesofwindsor,1600 pipe,1,merrywivesofwindsor,1600 Tarry,1,merrywivesofwindsor,1600 officers,1,merrywivesofwindsor,1600 glass,1,merrywivesofwindsor,1600 chimney,1,merrywivesofwindsor,1600 philosophers,1,merrywivesofwindsor,1600 Jamany,1,merrywivesofwindsor,1600 eringoes,1,merrywivesofwindsor,1600 soft,1,merrywivesofwindsor,1600 Methinks,1,merrywivesofwindsor,1600 riches,1,merrywivesofwindsor,1600 blessed,1,merrywivesofwindsor,1600 purity,1,merrywivesofwindsor,1600 confessed,1,merrywivesofwindsor,1600 visit,1,merrywivesofwindsor,1600 Elves,1,merrywivesofwindsor,1600 paltry,1,merrywivesofwindsor,1600 Cupid,1,merrywivesofwindsor,1600 fartuous,1,merrywivesofwindsor,1600 Gentle,1,merrywivesofwindsor,1600 groats,1,merrywivesofwindsor,1600 sinful,1,merrywivesofwindsor,1600 view,1,merrywivesofwindsor,1600 ocean,1,merrywivesofwindsor,1600 adhere,1,merrywivesofwindsor,1600 plucked,1,merrywivesofwindsor,1600 six,1,merrywivesofwindsor,1600 hereafter,1,merrywivesofwindsor,1600 'omans,1,merrywivesofwindsor,1600 foreigner,1,merrywivesofwindsor,1600 embassy,1,merrywivesofwindsor,1600 whatsoever,1,merrywivesofwindsor,1600 talked,1,merrywivesofwindsor,1600 sip,1,merrywivesofwindsor,1600 sums,1,merrywivesofwindsor,1600 stands,1,merrywivesofwindsor,1600 sin,1,merrywivesofwindsor,1600 bound,1,merrywivesofwindsor,1600 edition,1,merrywivesofwindsor,1600 ken,1,merrywivesofwindsor,1600 vizarded,1,merrywivesofwindsor,1600 hosts,1,merrywivesofwindsor,1600 'twere,1,merrywivesofwindsor,1600 key,1,merrywivesofwindsor,1600 think'st,1,merrywivesofwindsor,1600 hailstones,1,merrywivesofwindsor,1600 cour,1,merrywivesofwindsor,1600 meetings,1,merrywivesofwindsor,1600 invention,1,merrywivesofwindsor,1600 plural,1,merrywivesofwindsor,1600 flying,1,merrywivesofwindsor,1600 exchequers,1,merrywivesofwindsor,1600 careires,1,merrywivesofwindsor,1600 catching,1,merrywivesofwindsor,1600 cowl,1,merrywivesofwindsor,1600 deceit,1,merrywivesofwindsor,1600 landed,1,merrywivesofwindsor,1600 throng,1,merrywivesofwindsor,1600 rushling,1,merrywivesofwindsor,1600 peevish,1,merrywivesofwindsor,1600 disposed,1,merrywivesofwindsor,1600 Walk,1,merrywivesofwindsor,1600 abused,1,merrywivesofwindsor,1600 yield,1,merrywivesofwindsor,1600 score,1,merrywivesofwindsor,1600 peril,1,merrywivesofwindsor,1600 unduteous,1,merrywivesofwindsor,1600 sot,1,merrywivesofwindsor,1600 shades,1,merrywivesofwindsor,1600 Chat,1,merrywivesofwindsor,1600 Pelion,1,merrywivesofwindsor,1600 Such,1,merrywivesofwindsor,1600 justices,1,merrywivesofwindsor,1600 skill,1,merrywivesofwindsor,1600 Songs,1,merrywivesofwindsor,1600 confident,1,merrywivesofwindsor,1600 embolden'd,1,merrywivesofwindsor,1600 'a,1,merrywivesofwindsor,1600 follower,1,merrywivesofwindsor,1600 Pible,1,merrywivesofwindsor,1600 Flemish,1,merrywivesofwindsor,1600 followed,1,merrywivesofwindsor,1600 looking,1,merrywivesofwindsor,1600 'I,1,merrywivesofwindsor,1600 ashore,1,merrywivesofwindsor,1600 countenance,1,merrywivesofwindsor,1600 cozen,1,merrywivesofwindsor,1600 't,1,merrywivesofwindsor,1600 slighted,1,merrywivesofwindsor,1600 taunt,1,merrywivesofwindsor,1600 Heavens,1,merrywivesofwindsor,1600 disgrace,1,merrywivesofwindsor,1600 woodman,1,merrywivesofwindsor,1600 firmly,1,merrywivesofwindsor,1600 study,1,merrywivesofwindsor,1600 hallowmas,1,merrywivesofwindsor,1600 middle,1,merrywivesofwindsor,1600 pitiful,1,merrywivesofwindsor,1600 sky,1,merrywivesofwindsor,1600 unweighed,1,merrywivesofwindsor,1600 faults,1,merrywivesofwindsor,1600 'Boarding,1,merrywivesofwindsor,1600 league,1,merrywivesofwindsor,1600 becomes,1,merrywivesofwindsor,1600 quittance,1,merrywivesofwindsor,1600 unconfinable,1,merrywivesofwindsor,1600 prospered,1,merrywivesofwindsor,1600 abstract,1,merrywivesofwindsor,1600 thieves,1,merrywivesofwindsor,1600 worst,1,merrywivesofwindsor,1600 Fleming,1,merrywivesofwindsor,1600 sharpers,1,merrywivesofwindsor,1600 everlasting,1,merrywivesofwindsor,1600 merit,1,merrywivesofwindsor,1600 skins,1,merrywivesofwindsor,1600 heavens,1,merrywivesofwindsor,1600 Wittol,1,merrywivesofwindsor,1600 These,1,merrywivesofwindsor,1600 compound,1,merrywivesofwindsor,1600 musing,1,merrywivesofwindsor,1600 j'oublie,1,merrywivesofwindsor,1600 vanish,1,merrywivesofwindsor,1600 showed,1,merrywivesofwindsor,1600 Machiavel,1,merrywivesofwindsor,1600 snow,1,merrywivesofwindsor,1600 stamps,1,merrywivesofwindsor,1600 invitation,1,merrywivesofwindsor,1600 portly,1,merrywivesofwindsor,1600 blooded,1,merrywivesofwindsor,1600 dances,1,merrywivesofwindsor,1600 marring,1,merrywivesofwindsor,1600 Oui,1,merrywivesofwindsor,1600 ridden,1,merrywivesofwindsor,1600 turd,1,merrywivesofwindsor,1600 chased,1,merrywivesofwindsor,1600 profess,1,merrywivesofwindsor,1600 Venetian,1,merrywivesofwindsor,1600 shower,1,merrywivesofwindsor,1600 common,1,merrywivesofwindsor,1600 Amaimon,1,merrywivesofwindsor,1600 cavaleiro,1,merrywivesofwindsor,1600 habit,1,merrywivesofwindsor,1600 figure,1,merrywivesofwindsor,1600 Evans,1,merrywivesofwindsor,1600 sluttery,1,merrywivesofwindsor,1600 shilling,1,merrywivesofwindsor,1600 tuns,1,merrywivesofwindsor,1600 direct,1,merrywivesofwindsor,1600 Turk,1,merrywivesofwindsor,1600 king's,1,merrywivesofwindsor,1600 reek,1,merrywivesofwindsor,1600 cavaleire,1,merrywivesofwindsor,1600 Aloud,1,merrywivesofwindsor,1600 decrease,1,merrywivesofwindsor,1600 scold,1,merrywivesofwindsor,1600 cashiered,1,merrywivesofwindsor,1600 starings,1,merrywivesofwindsor,1600 encounter,1,merrywivesofwindsor,1600 affected,1,merrywivesofwindsor,1600 instance,1,merrywivesofwindsor,1600 bribe,1,merrywivesofwindsor,1600 grated,1,merrywivesofwindsor,1600 civility,1,merrywivesofwindsor,1600 consented,1,merrywivesofwindsor,1600 willing,1,merrywivesofwindsor,1600 lubberly,1,merrywivesofwindsor,1600 pearl,1,merrywivesofwindsor,1600 Leave,1,merrywivesofwindsor,1600 thrummed,1,merrywivesofwindsor,1600 unkennel,1,merrywivesofwindsor,1600 thaw,1,merrywivesofwindsor,1600 luces,1,merrywivesofwindsor,1600 sue,1,merrywivesofwindsor,1600 cries,1,merrywivesofwindsor,1600 coloured,1,merrywivesofwindsor,1600 overthrown,1,merrywivesofwindsor,1600 turnips,1,merrywivesofwindsor,1600 draught,1,merrywivesofwindsor,1600 singer,1,merrywivesofwindsor,1600 elder,1,merrywivesofwindsor,1600 companion,1,merrywivesofwindsor,1600 rush,1,merrywivesofwindsor,1600 buttered,1,merrywivesofwindsor,1600 circled,1,merrywivesofwindsor,1600 recovery,1,merrywivesofwindsor,1600 infinite,1,merrywivesofwindsor,1600 directed,1,merrywivesofwindsor,1600 blind,1,merrywivesofwindsor,1600 neighbourhood,1,merrywivesofwindsor,1600 Search,1,merrywivesofwindsor,1600 upon't,1,merrywivesofwindsor,1600 quart,1,merrywivesofwindsor,1600 cuckoo,1,merrywivesofwindsor,1600 corrupt,1,merrywivesofwindsor,1600 conceal,1,merrywivesofwindsor,1600 pinnace,1,merrywivesofwindsor,1600 behaviors,1,merrywivesofwindsor,1600 weather,1,merrywivesofwindsor,1600 pumpion,1,merrywivesofwindsor,1600 wing,1,merrywivesofwindsor,1600 lanterns,1,merrywivesofwindsor,1600 putting,1,merrywivesofwindsor,1600 porter,1,merrywivesofwindsor,1600 Fly,1,merrywivesofwindsor,1600 professions,1,merrywivesofwindsor,1600 prunes,1,merrywivesofwindsor,1600 manor,1,merrywivesofwindsor,1600 parliament,1,merrywivesofwindsor,1600 humidity,1,merrywivesofwindsor,1600 Trudge,1,merrywivesofwindsor,1600 benevolence,1,merrywivesofwindsor,1600 wished,1,merrywivesofwindsor,1600 attired,1,merrywivesofwindsor,1600 tap,1,merrywivesofwindsor,1600 Miller,1,merrywivesofwindsor,1600 tam,1,merrywivesofwindsor,1600 soever,1,merrywivesofwindsor,1600 moneys,1,merrywivesofwindsor,1600 comedy,1,merrywivesofwindsor,1600 dreamed,1,merrywivesofwindsor,1600 title,1,merrywivesofwindsor,1600 seems,1,merrywivesofwindsor,1600 latter,1,merrywivesofwindsor,1600 wether,1,merrywivesofwindsor,1600 One,1,merrywivesofwindsor,1600 orld,1,merrywivesofwindsor,1600 hence,1,merrywivesofwindsor,1600 obsequious,1,merrywivesofwindsor,1600 latten,1,merrywivesofwindsor,1600 wholly,1,merrywivesofwindsor,1600 barrow,1,merrywivesofwindsor,1600 Englishman,1,merrywivesofwindsor,1600 oyes,1,merrywivesofwindsor,1600 hates,1,merrywivesofwindsor,1600 goose,1,merrywivesofwindsor,1600 hujus,1,merrywivesofwindsor,1600 bolt,1,merrywivesofwindsor,1600 trifles,1,merrywivesofwindsor,1600 unseasoned,1,merrywivesofwindsor,1600 transformed,1,merrywivesofwindsor,1600 Cousin,1,merrywivesofwindsor,1600 translated,1,merrywivesofwindsor,1600 importuned,1,merrywivesofwindsor,1600 requests,1,merrywivesofwindsor,1600 seest,1,merrywivesofwindsor,1600 Immediately,1,merrywivesofwindsor,1600 custom,1,merrywivesofwindsor,1600 accuse,1,merrywivesofwindsor,1600 Pauca,1,merrywivesofwindsor,1600 murder,1,merrywivesofwindsor,1600 'Green,1,merrywivesofwindsor,1600 bragged,1,merrywivesofwindsor,1600 sooth,1,merrywivesofwindsor,1600 bitch's,1,merrywivesofwindsor,1600 property,1,merrywivesofwindsor,1600 sense,1,merrywivesofwindsor,1600 devil's,1,merrywivesofwindsor,1600 world's,1,merrywivesofwindsor,1600 beating,1,merrywivesofwindsor,1600 hatch,1,merrywivesofwindsor,1600 trudge,1,merrywivesofwindsor,1600 stop,1,merrywivesofwindsor,1600 incense,1,merrywivesofwindsor,1600 dice,1,merrywivesofwindsor,1600 breeding,1,merrywivesofwindsor,1600 rule,1,merrywivesofwindsor,1600 o'erflow,1,merrywivesofwindsor,1600 melted,1,merrywivesofwindsor,1600 distress,1,merrywivesofwindsor,1600 boor,1,merrywivesofwindsor,1600 conveyance,1,merrywivesofwindsor,1600 familiarity,1,merrywivesofwindsor,1600 lunatic,1,merrywivesofwindsor,1600 revel,1,merrywivesofwindsor,1600 Urinal,1,merrywivesofwindsor,1600 panderly,1,merrywivesofwindsor,1600 ruled,1,merrywivesofwindsor,1600 sweating,1,merrywivesofwindsor,1600 Poins,1,merrywivesofwindsor,1600 tufts,1,merrywivesofwindsor,1600 bright,1,merrywivesofwindsor,1600 nuthook's,1,merrywivesofwindsor,1600 bacon,1,merrywivesofwindsor,1600 colour,1,merrywivesofwindsor,1600 gripe,1,merrywivesofwindsor,1600 'Custalourum,1,merrywivesofwindsor,1600 disparagements,1,merrywivesofwindsor,1600 Fairy,1,merrywivesofwindsor,1600 judgement,1,merrywivesofwindsor,1600 distraction,1,merrywivesofwindsor,1600 hungry,1,merrywivesofwindsor,1600 deserves,1,merrywivesofwindsor,1600 fairest,1,merrywivesofwindsor,1600 divulge,1,merrywivesofwindsor,1600 foin,1,merrywivesofwindsor,1600 sick,1,merrywivesofwindsor,1600 pills,1,merrywivesofwindsor,1600 Fe,1,merrywivesofwindsor,1600 knowledge,1,merrywivesofwindsor,1600 drove,1,merrywivesofwindsor,1600 eschew'd,1,merrywivesofwindsor,1600 appointments,1,merrywivesofwindsor,1600 Pheezar,1,merrywivesofwindsor,1600 I',1,merrywivesofwindsor,1600 stir,1,merrywivesofwindsor,1600 keys,1,merrywivesofwindsor,1600 solicit,1,merrywivesofwindsor,1600 slaves,1,merrywivesofwindsor,1600 forbade,1,merrywivesofwindsor,1600 manners,1,merrywivesofwindsor,1600 larded,1,merrywivesofwindsor,1600 precise,1,merrywivesofwindsor,1600 strongly,1,merrywivesofwindsor,1600 commended,1,merrywivesofwindsor,1600 precisely,1,merrywivesofwindsor,1600 Colebrook,1,merrywivesofwindsor,1600 Hungarian,1,merrywivesofwindsor,1600 drumble,1,merrywivesofwindsor,1600 crack,1,merrywivesofwindsor,1600 potions,1,merrywivesofwindsor,1600 scared,1,merrywivesofwindsor,1600 defile,1,merrywivesofwindsor,1600 leman,1,merrywivesofwindsor,1600 nape,1,merrywivesofwindsor,1600 gotten,1,merrywivesofwindsor,1600 talks,1,merrywivesofwindsor,1600 At,1,merrywivesofwindsor,1600 'Twere,1,merrywivesofwindsor,1600 infection,1,merrywivesofwindsor,1600 stog,1,merrywivesofwindsor,1600 tellest,1,merrywivesofwindsor,1600 tonight,1,merrywivesofwindsor,1600 willers,1,merrywivesofwindsor,1600 mistrust,1,merrywivesofwindsor,1600 quarrel,1,merrywivesofwindsor,1600 pad,1,merrywivesofwindsor,1600 His,1,merrywivesofwindsor,1600 fool's,1,merrywivesofwindsor,1600 Looks,1,merrywivesofwindsor,1600 forge,1,merrywivesofwindsor,1600 transformation,1,merrywivesofwindsor,1600 scarce,1,merrywivesofwindsor,1600 misgives,1,merrywivesofwindsor,1600 pendent,1,merrywivesofwindsor,1600 youthful,1,merrywivesofwindsor,1600 loath,1,merrywivesofwindsor,1600 guiltiness,1,merrywivesofwindsor,1600 Those,1,merrywivesofwindsor,1600 desperate,1,merrywivesofwindsor,1600 Hope,1,merrywivesofwindsor,1600 doctors,1,merrywivesofwindsor,1600 Still,1,merrywivesofwindsor,1600 Appoint,1,merrywivesofwindsor,1600 whiting,1,merrywivesofwindsor,1600 hopes,1,merrywivesofwindsor,1600 vetch,1,merrywivesofwindsor,1600 pander,1,merrywivesofwindsor,1600 Nature,1,merrywivesofwindsor,1600 secretly,1,merrywivesofwindsor,1600 Me,1,merrywivesofwindsor,1600 sensible,1,merrywivesofwindsor,1600 siege,1,merrywivesofwindsor,1600 Singing,1,merrywivesofwindsor,1600 gratis,1,merrywivesofwindsor,1600 smocks,1,merrywivesofwindsor,1600 lands,1,merrywivesofwindsor,1600 Stand,1,merrywivesofwindsor,1600 farthingale,1,merrywivesofwindsor,1600 proof,1,merrywivesofwindsor,1600 gossip,1,merrywivesofwindsor,1600 in't,1,merrywivesofwindsor,1600 Albeit,1,merrywivesofwindsor,1600 gainer,1,merrywivesofwindsor,1600 belike,1,merrywivesofwindsor,1600 canst,1,merrywivesofwindsor,1600 fishermen's,1,merrywivesofwindsor,1600 diffused,1,merrywivesofwindsor,1600 merited,1,merrywivesofwindsor,1600 star,1,merrywivesofwindsor,1600 denied,1,merrywivesofwindsor,1600 Slice,1,merrywivesofwindsor,1600 pen,1,merrywivesofwindsor,1600 On,1,merrywivesofwindsor,1600 sings,1,merrywivesofwindsor,1600 stag,1,merrywivesofwindsor,1600 hig,1,merrywivesofwindsor,1600 hic,1,merrywivesofwindsor,1600 pulls,1,merrywivesofwindsor,1600 cooled,1,merrywivesofwindsor,1600 hit,1,merrywivesofwindsor,1600 medicine,1,merrywivesofwindsor,1600 Raise,1,merrywivesofwindsor,1600 pleasure,1,merrywivesofwindsor,1600 meant,1,merrywivesofwindsor,1600 ear',1,merrywivesofwindsor,1600 bless,1,merrywivesofwindsor,1600 pense',1,merrywivesofwindsor,1600 tallow,1,merrywivesofwindsor,1600 surely,1,merrywivesofwindsor,1600 lorum',1,merrywivesofwindsor,1600 contracted,1,merrywivesofwindsor,1600 proverbs,1,merrywivesofwindsor,1600 bruised,1,merrywivesofwindsor,1600 shillings,1,merrywivesofwindsor,1600 Je,1,merrywivesofwindsor,1600 unchaste,1,merrywivesofwindsor,1600 pate,1,merrywivesofwindsor,1600 pid,1,merrywivesofwindsor,1600 pie,1,merrywivesofwindsor,1600 buys,1,merrywivesofwindsor,1600 Dutch,1,merrywivesofwindsor,1600 hides,1,merrywivesofwindsor,1600 earl,1,merrywivesofwindsor,1600 pin,1,merrywivesofwindsor,1600 treachery,1,merrywivesofwindsor,1600 Has,1,merrywivesofwindsor,1600 sufferd,1,merrywivesofwindsor,1600 accoutrement,1,merrywivesofwindsor,1600 vultures,1,merrywivesofwindsor,1600 paysan,1,merrywivesofwindsor,1600 Up,1,merrywivesofwindsor,1600 VI,1,merrywivesofwindsor,1600 yourselves,1,merrywivesofwindsor,1600 'resolutely,1,merrywivesofwindsor,1600 pon,1,merrywivesofwindsor,1600 meritorious,1,merrywivesofwindsor,1600 passant,1,merrywivesofwindsor,1600 heads,1,merrywivesofwindsor,1600 quiet,1,merrywivesofwindsor,1600 blood,1,merrywivesofwindsor,1600 corrupted,1,merrywivesofwindsor,1600 surprise,1,merrywivesofwindsor,1600 genitive,1,merrywivesofwindsor,1600 god,1,merrywivesofwindsor,1600 whore,1,merrywivesofwindsor,1600 haunt,1,merrywivesofwindsor,1600 'ords,1,merrywivesofwindsor,1600 valiant,1,merrywivesofwindsor,1600 bowl'd,1,merrywivesofwindsor,1600 bull,1,merrywivesofwindsor,1600 sith,1,merrywivesofwindsor,1600 costard,1,merrywivesofwindsor,1600 exhibit,1,merrywivesofwindsor,1600 challenge,1,merrywivesofwindsor,1600 morning's,1,merrywivesofwindsor,1600 Cricket,1,merrywivesofwindsor,1600 sorry,1,merrywivesofwindsor,1600 behaved,1,merrywivesofwindsor,1600 intrusion,1,merrywivesofwindsor,1600 proportion,1,merrywivesofwindsor,1600 nigh,1,merrywivesofwindsor,1600 coaches,1,merrywivesofwindsor,1600 mankind,1,merrywivesofwindsor,1600 was't,1,merrywivesofwindsor,1600 Heard,1,merrywivesofwindsor,1600 bush,1,merrywivesofwindsor,1600 shallenge,1,merrywivesofwindsor,1600 Bridget,1,merrywivesofwindsor,1600 belief,1,merrywivesofwindsor,1600 lurch,1,merrywivesofwindsor,1600 dove,1,merrywivesofwindsor,1600 spigot,1,merrywivesofwindsor,1600 'od's,1,merrywivesofwindsor,1600 difference,1,merrywivesofwindsor,1600 Or,1,merrywivesofwindsor,1600 goodly,1,merrywivesofwindsor,1600 sorts,1,merrywivesofwindsor,1600 got,1,merrywivesofwindsor,1600 cat,1,merrywivesofwindsor,1600 devises,1,merrywivesofwindsor,1600 Beating,1,merrywivesofwindsor,1600 likings,1,merrywivesofwindsor,1600 genitivo,1,merrywivesofwindsor,1600 erection,1,merrywivesofwindsor,1600 sounds,1,merrywivesofwindsor,1600 altar,1,merrywivesofwindsor,1600 tricks,1,merrywivesofwindsor,1600 moreover,1,merrywivesofwindsor,1600 paring,1,merrywivesofwindsor,1600 dote,1,merrywivesofwindsor,1600 Seese,1,merrywivesofwindsor,1600 polecat,1,merrywivesofwindsor,1600 somewhat,1,merrywivesofwindsor,1600 dost,1,merrywivesofwindsor,1600 pistols,1,merrywivesofwindsor,1600 Discard,1,merrywivesofwindsor,1600 Save,1,merrywivesofwindsor,1600 craft,1,merrywivesofwindsor,1600 Strange,1,merrywivesofwindsor,1600 gall'd,1,merrywivesofwindsor,1600 baskets,1,merrywivesofwindsor,1600 Behold,1,merrywivesofwindsor,1600 disperse,1,merrywivesofwindsor,1600 Strew,1,merrywivesofwindsor,1600 shadow,1,merrywivesofwindsor,1600 frugal,1,merrywivesofwindsor,1600 fifty,1,merrywivesofwindsor,1600 Lies,1,merrywivesofwindsor,1600 welkin,1,merrywivesofwindsor,1600 afore,1,merrywivesofwindsor,1600 aqua,1,merrywivesofwindsor,1600 jack'nape,1,merrywivesofwindsor,1600 Drawing,1,merrywivesofwindsor,1600 fee'd,1,merrywivesofwindsor,1600 buds,1,merrywivesofwindsor,1600 a',1,merrywivesofwindsor,1600 understandings,1,merrywivesofwindsor,1600 twice,1,merrywivesofwindsor,1600 Didst,1,merrywivesofwindsor,1600 eaten,1,merrywivesofwindsor,1600 gamester,1,merrywivesofwindsor,1600 hair's,1,merrywivesofwindsor,1600 extreme,1,merrywivesofwindsor,1600 theme,1,merrywivesofwindsor,1600 Sail,1,merrywivesofwindsor,1600 dissembling,1,merrywivesofwindsor,1600 doctor's,1,merrywivesofwindsor,1600 Said,1,merrywivesofwindsor,1600 degree,1,merrywivesofwindsor,1600 Maidenhead,1,merrywivesofwindsor,1600 despite,1,merrywivesofwindsor,1600 staggering,1,merrywivesofwindsor,1600 worship's,1,merrywivesofwindsor,1600 noddles,1,merrywivesofwindsor,1600 mystery,1,merrywivesofwindsor,1600 Above,1,merrywivesofwindsor,1600 submission,1,merrywivesofwindsor,1600 sakes,1,merrywivesofwindsor,1600 quips,1,merrywivesofwindsor,1600 longer,1,merrywivesofwindsor,1600 casement,1,merrywivesofwindsor,1600 swine,1,merrywivesofwindsor,1600 plessing,1,merrywivesofwindsor,1600 year's,1,merrywivesofwindsor,1600 pains,1,merrywivesofwindsor,1600 cudgelled,1,merrywivesofwindsor,1600 ensue,1,merrywivesofwindsor,1600 gate,1,merrywivesofwindsor,1600 'Twas,1,merrywivesofwindsor,1600 picture,1,merrywivesofwindsor,1600 beds,1,merrywivesofwindsor,1600 Doctors,1,merrywivesofwindsor,1600 rejoice,1,merrywivesofwindsor,1600 Welshman,1,merrywivesofwindsor,1600 'Honi,1,merrywivesofwindsor,1600 vantage,1,merrywivesofwindsor,1600 genders,1,merrywivesofwindsor,1600 complement,1,merrywivesofwindsor,1600 orderly,1,merrywivesofwindsor,1600 lately,1,merrywivesofwindsor,1600 AEsculapius,1,merrywivesofwindsor,1600 crowned,1,merrywivesofwindsor,1600 altogether's,1,merrywivesofwindsor,1600 beginning,1,merrywivesofwindsor,1600 begin,1,merrywivesofwindsor,1600 kidney,1,merrywivesofwindsor,1600 river,1,merrywivesofwindsor,1600 pasty,1,merrywivesofwindsor,1600 lord,1,merrywivesofwindsor,1600 lisping,1,merrywivesofwindsor,1600 God's,1,merrywivesofwindsor,1600 story,1,merrywivesofwindsor,1600 detected,1,merrywivesofwindsor,1600 unvirtuous,1,merrywivesofwindsor,1600 image,1,merrywivesofwindsor,1600 Cannot,1,merrywivesofwindsor,1600 blowing,1,merrywivesofwindsor,1600 Fortune,1,merrywivesofwindsor,1600 voyage,1,merrywivesofwindsor,1600 raise,1,merrywivesofwindsor,1600 Fear,1,merrywivesofwindsor,1600 aid,1,merrywivesofwindsor,1600 varletto,1,merrywivesofwindsor,1600 dispositions,1,merrywivesofwindsor,1600 SONG,1,merrywivesofwindsor,1600 repent,1,merrywivesofwindsor,1600 strut,1,merrywivesofwindsor,1600 consider,1,merrywivesofwindsor,1600 carrion,1,merrywivesofwindsor,1600 left,1,merrywivesofwindsor,1600 affecting,1,merrywivesofwindsor,1600 deck,1,merrywivesofwindsor,1600 milch,1,merrywivesofwindsor,1600 taverns,1,merrywivesofwindsor,1600 yes,1,merrywivesofwindsor,1600 laments,1,merrywivesofwindsor,1600 legs,1,merrywivesofwindsor,1600 handsome,1,merrywivesofwindsor,1600 Eve's,1,merrywivesofwindsor,1600 Jewry,1,merrywivesofwindsor,1600 Unless,1,merrywivesofwindsor,1600 swearing,1,merrywivesofwindsor,1600 dwell,1,merrywivesofwindsor,1600 rails,1,merrywivesofwindsor,1600 obligation,1,merrywivesofwindsor,1600 yokes,1,merrywivesofwindsor,1600 Castalion,1,merrywivesofwindsor,1600 vagram,1,merrywivesofwindsor,1600 radiant,1,merrywivesofwindsor,1600 seeing,1,merrywivesofwindsor,1600 vault,1,merrywivesofwindsor,1600 played,1,merrywivesofwindsor,1600 mette,1,merrywivesofwindsor,1600 seeming,1,merrywivesofwindsor,1600 edifice,1,merrywivesofwindsor,1600 Shuts,1,merrywivesofwindsor,1600 draff,1,merrywivesofwindsor,1600 waist,1,merrywivesofwindsor,1600 thefts,1,merrywivesofwindsor,1600 haunch,1,merrywivesofwindsor,1600 stole,1,merrywivesofwindsor,1600 stockings,1,merrywivesofwindsor,1600 laughing,1,merrywivesofwindsor,1600 fidelity,1,merrywivesofwindsor,1600 waits,1,merrywivesofwindsor,1600 generally,1,merrywivesofwindsor,1600 Divide,1,merrywivesofwindsor,1600 quaint,1,merrywivesofwindsor,1600 ay,1,merrywivesofwindsor,1600 uncape,1,merrywivesofwindsor,1600 apes,1,merrywivesofwindsor,1600 memory,1,merrywivesofwindsor,1600 au,1,merrywivesofwindsor,1600 growth,1,merrywivesofwindsor,1600 fourscore,1,merrywivesofwindsor,1600 newly,1,merrywivesofwindsor,1600 trap',1,merrywivesofwindsor,1600 doom,1,merrywivesofwindsor,1600 realm,1,merrywivesofwindsor,1600 idiot,1,merrywivesofwindsor,1600 abominable,1,merrywivesofwindsor,1600 reins,1,merrywivesofwindsor,1600 frights,1,merrywivesofwindsor,1600 cowardly,1,merrywivesofwindsor,1600 questions,1,merrywivesofwindsor,1600 ox,1,merrywivesofwindsor,1600 attending,1,merrywivesofwindsor,1600 crossed,1,merrywivesofwindsor,1600 delay,1,merrywivesofwindsor,1600 small,1,merrywivesofwindsor,1600 wisely,1,merrywivesofwindsor,1600 commendations,1,merrywivesofwindsor,1600 meteor,1,merrywivesofwindsor,1600 crave,1,merrywivesofwindsor,1600 halfpenny,1,merrywivesofwindsor,1600 patients,1,merrywivesofwindsor,1600 'will,1,merrywivesofwindsor,1600 ma,1,merrywivesofwindsor,1600 sperm,1,merrywivesofwindsor,1600 wrangle,1,merrywivesofwindsor,1600 porch,1,merrywivesofwindsor,1600 seventeen,1,merrywivesofwindsor,1600 whereof,1,merrywivesofwindsor,1600 perpend,1,merrywivesofwindsor,1600 Reads,1,merrywivesofwindsor,1600 carves,1,merrywivesofwindsor,1600 'quods,1,merrywivesofwindsor,1600 trail,1,merrywivesofwindsor,1600 value,1,merrywivesofwindsor,1600 entertainments,1,merrywivesofwindsor,1600 scornful,1,merrywivesofwindsor,1600 stature,1,merrywivesofwindsor,1600 find'st,1,merrywivesofwindsor,1600 studied,1,merrywivesofwindsor,1600 loud,1,merrywivesofwindsor,1600 le,1,merrywivesofwindsor,1600 causes,1,merrywivesofwindsor,1600 runyon,1,merrywivesofwindsor,1600 superstitious,1,merrywivesofwindsor,1600 ado,1,merrywivesofwindsor,1600 loss,1,merrywivesofwindsor,1600 humblest,1,merrywivesofwindsor,1600 drift,1,merrywivesofwindsor,1600 beholding,1,merrywivesofwindsor,1600 tricking,1,merrywivesofwindsor,1600 diamond,1,merrywivesofwindsor,1600 wherein,1,merrywivesofwindsor,1600 spent,1,merrywivesofwindsor,1600 governed,1,merrywivesofwindsor,1600 il,1,merrywivesofwindsor,1600 loved,1,merrywivesofwindsor,1600 dole,1,merrywivesofwindsor,1600 'bout,1,merrywivesofwindsor,1600 abusing,1,merrywivesofwindsor,1600 meadow,1,merrywivesofwindsor,1600 defy,1,merrywivesofwindsor,1600 Cotsall,1,merrywivesofwindsor,1600 Ephesian,1,merrywivesofwindsor,1600 Keisar,1,merrywivesofwindsor,1600 greater,1,merrywivesofwindsor,1600 spot,1,merrywivesofwindsor,1600 Creep,1,merrywivesofwindsor,1600 jerkin,1,merrywivesofwindsor,1600 knee,1,merrywivesofwindsor,1600 slack,1,merrywivesofwindsor,1600 attain,1,merrywivesofwindsor,1600 'Coram,1,merrywivesofwindsor,1600 hark,1,merrywivesofwindsor,1600 choice,1,merrywivesofwindsor,1600 prings,1,merrywivesofwindsor,1600 hoa,1,merrywivesofwindsor,1600 valour,1,merrywivesofwindsor,1600 robbed,1,merrywivesofwindsor,1600 punk,1,merrywivesofwindsor,1600 reasons,1,merrywivesofwindsor,1600 hoc,1,merrywivesofwindsor,1600 shrieked,1,merrywivesofwindsor,1600 Bede,1,merrywivesofwindsor,1600 denote,1,merrywivesofwindsor,1600 discourse,1,merrywivesofwindsor,1600 'putter',1,merrywivesofwindsor,1600 brewage,1,merrywivesofwindsor,1600 unmannerly,1,merrywivesofwindsor,1600 Break,1,merrywivesofwindsor,1600 attractions,1,merrywivesofwindsor,1600 lingered,1,merrywivesofwindsor,1600 smite,1,merrywivesofwindsor,1600 cozening,1,merrywivesofwindsor,1600 orphan,1,merrywivesofwindsor,1600 m'en,1,merrywivesofwindsor,1600 slice,1,merrywivesofwindsor,1600 plod,1,merrywivesofwindsor,1600 conspiracy,1,merrywivesofwindsor,1600 hue,1,merrywivesofwindsor,1600 Bucklersbury,1,merrywivesofwindsor,1600 spells,1,merrywivesofwindsor,1600 puffed,1,merrywivesofwindsor,1600 Christian,1,merrywivesofwindsor,1600 knit,1,merrywivesofwindsor,1600 toasted,1,merrywivesofwindsor,1600 suggests,1,merrywivesofwindsor,1600 embattled,1,merrywivesofwindsor,1600 fowl,1,merrywivesofwindsor,1600 possitable,1,merrywivesofwindsor,1600 'Rato,1,merrywivesofwindsor,1600 Counter,1,merrywivesofwindsor,1600 intended,1,merrywivesofwindsor,1600 verses,1,merrywivesofwindsor,1600 More,1,merrywivesofwindsor,1600 Hercules,1,merrywivesofwindsor,1600 wittolly,1,merrywivesofwindsor,1600 shun,1,merrywivesofwindsor,1600 appears,1,merrywivesofwindsor,1600 Pluck,1,merrywivesofwindsor,1600 liberty,1,merrywivesofwindsor,1600 prince,1,merrywivesofwindsor,1600 plain,1,merrywivesofwindsor,1600 consult,1,merrywivesofwindsor,1600 drawn,1,merrywivesofwindsor,1600 porridge,1,merrywivesofwindsor,1600 Satisfy,1,merrywivesofwindsor,1600 forty,1,merrywivesofwindsor,1600 joyful,1,merrywivesofwindsor,1600 dilemma,1,merrywivesofwindsor,1600 During,1,merrywivesofwindsor,1600 Cain,1,merrywivesofwindsor,1600 shell,1,merrywivesofwindsor,1600 Indies,1,merrywivesofwindsor,1600 sully,1,merrywivesofwindsor,1600 perpetual,1,merrywivesofwindsor,1600 Mockwater,1,merrywivesofwindsor,1600 Hum,1,merrywivesofwindsor,1600 pluck,1,merrywivesofwindsor,1600 whether,1,merrywivesofwindsor,1600 course,1,merrywivesofwindsor,1600 Empty,1,merrywivesofwindsor,1600 resurrections,1,merrywivesofwindsor,1600 deaths,1,merrywivesofwindsor,1600 She's,1,merrywivesofwindsor,1600 occasions,1,merrywivesofwindsor,1600 brothers,1,merrywivesofwindsor,1600 form,1,merrywivesofwindsor,1600 evitate,1,merrywivesofwindsor,1600 Etna,1,merrywivesofwindsor,1600 louses,1,merrywivesofwindsor,1600 fort,1,merrywivesofwindsor,1600 abhor,1,merrywivesofwindsor,1600 nightly,1,merrywivesofwindsor,1600 hawk,1,merrywivesofwindsor,1600 Brooks,1,merrywivesofwindsor,1600 unpitifully,1,merrywivesofwindsor,1600 impatient,1,merrywivesofwindsor,1600 Hue,1,merrywivesofwindsor,1600 Hundredth,1,merrywivesofwindsor,1600 shin,1,merrywivesofwindsor,1600 shent,1,merrywivesofwindsor,1600 tomorrow,1,merrywivesofwindsor,1600 pair,1,merrywivesofwindsor,1600 ship,1,merrywivesofwindsor,1600 pain,1,merrywivesofwindsor,1600 sixpences,1,merrywivesofwindsor,1600 finally,1,merrywivesofwindsor,1600 hangs,1,merrywivesofwindsor,1600 delight,1,merrywivesofwindsor,1600 diest,1,merrywivesofwindsor,1600 uncomeliness,1,merrywivesofwindsor,1600 litter,1,merrywivesofwindsor,1600 ging,1,merrywivesofwindsor,1600 forswore,1,merrywivesofwindsor,1600 apiece,1,merrywivesofwindsor,1600 minute's,1,merrywivesofwindsor,1600 prains,1,merrywivesofwindsor,1600 shakes,1,merrywivesofwindsor,1600 heretic,1,merrywivesofwindsor,1600 stones,1,merrywivesofwindsor,1600 Michaelmas,1,merrywivesofwindsor,1600 determination,1,merrywivesofwindsor,1600 dreadful,1,merrywivesofwindsor,1600 dismay,1,merrywivesofwindsor,1600 puts,1,merrywivesofwindsor,1600 combat,1,merrywivesofwindsor,1600 concerning,1,merrywivesofwindsor,1600 shoe,1,merrywivesofwindsor,1600 except,1,merrywivesofwindsor,1600 Sayest,1,merrywivesofwindsor,1600 awe,1,merrywivesofwindsor,1600 gentry,1,merrywivesofwindsor,1600 ''Od's,1,merrywivesofwindsor,1600 rough,1,merrywivesofwindsor,1600 napkins,1,merrywivesofwindsor,1600 Epicurean,1,merrywivesofwindsor,1600 creatures,1,merrywivesofwindsor,1600 renowned,1,merrywivesofwindsor,1600 object,1,merrywivesofwindsor,1600 'dissolutely,1,merrywivesofwindsor,1600 rightly,1,merrywivesofwindsor,1600 ye,1,merrywivesofwindsor,1600 lock,1,merrywivesofwindsor,1600 conclusions,1,merrywivesofwindsor,1600 Hast,1,merrywivesofwindsor,1600 Scarlet,1,merrywivesofwindsor,1600 jester,1,merrywivesofwindsor,1600 foppery,1,merrywivesofwindsor,1600 King,1,merrywivesofwindsor,1600 thanks,1,merrywivesofwindsor,1600 havior,1,merrywivesofwindsor,1600 bought,1,merrywivesofwindsor,1600 inquire,1,merrywivesofwindsor,1600 preparations,1,merrywivesofwindsor,1600 sequel,1,merrywivesofwindsor,1600 purchased,1,merrywivesofwindsor,1600 alacrity,1,merrywivesofwindsor,1600 fee,1,merrywivesofwindsor,1600 itches,1,merrywivesofwindsor,1600 touch,1,merrywivesofwindsor,1600 washed,1,merrywivesofwindsor,1600 arras,1,merrywivesofwindsor,1600 smells,1,merrywivesofwindsor,1600 Hard,1,merrywivesofwindsor,1600 leer,1,merrywivesofwindsor,1600 trempling,1,merrywivesofwindsor,1600 ministers,1,merrywivesofwindsor,1600 sweetly,1,merrywivesofwindsor,1600 judgment,1,merrywivesofwindsor,1600 reprieves,1,merrywivesofwindsor,1600 jays,1,merrywivesofwindsor,1600 butcher's,1,merrywivesofwindsor,1600 grande,1,merrywivesofwindsor,1600 token,1,merrywivesofwindsor,1600 hiss,1,merrywivesofwindsor,1600 decipher,1,merrywivesofwindsor,1600 conversation,1,merrywivesofwindsor,1600 purple,1,merrywivesofwindsor,1600 Satan,1,merrywivesofwindsor,1600 accidence,1,merrywivesofwindsor,1600 Tartar,1,merrywivesofwindsor,1600 Hath,1,merrywivesofwindsor,1600 dickens,1,merrywivesofwindsor,1600 vizaments,1,merrywivesofwindsor,1600 root,1,merrywivesofwindsor,1600 change,1,merrywivesofwindsor,1600 pippins,1,merrywivesofwindsor,1600 height,1,merrywivesofwindsor,1600 aggravate,1,merrywivesofwindsor,1600 Between,1,merrywivesofwindsor,1600 atonements,1,merrywivesofwindsor,1600 Shortcake,1,merrywivesofwindsor,1600 display,1,merrywivesofwindsor,1600 fap,1,merrywivesofwindsor,1600 fan,1,merrywivesofwindsor,1600 frenzy,1,merrywivesofwindsor,1600 contented,1,merrywivesofwindsor,1600 often,1,merrywivesofwindsor,1600 opinions,1,merrywivesofwindsor,1600 luce,1,merrywivesofwindsor,1600 leap,1,merrywivesofwindsor,1600 melancholies,1,merrywivesofwindsor,1600 scaped,1,merrywivesofwindsor,1600 hallowed,1,merrywivesofwindsor,1600 'Marry,1,merrywivesofwindsor,1600 polecats,1,merrywivesofwindsor,1600 washer,1,merrywivesofwindsor,1600 hawthorn,1,merrywivesofwindsor,1600 comfits,1,merrywivesofwindsor,1600 'fair,1,merrywivesofwindsor,1600 Goliath,1,merrywivesofwindsor,1600 proofs,1,merrywivesofwindsor,1600 geminy,1,merrywivesofwindsor,1600 garments,1,merrywivesofwindsor,1600 Englished,1,merrywivesofwindsor,1600 mask'd,1,merrywivesofwindsor,1600 Eleven,1,merrywivesofwindsor,1600 destiny,1,merrywivesofwindsor,1600 securely,1,merrywivesofwindsor,1600 Europa,1,merrywivesofwindsor,1600 moved,1,merrywivesofwindsor,1600 Become,1,merrywivesofwindsor,1600 counterfeiting,1,merrywivesofwindsor,1600 prescribe,1,merrywivesofwindsor,1600 glow,1,merrywivesofwindsor,1600 requital,1,merrywivesofwindsor,1600 rank,1,merrywivesofwindsor,1600 Against,1,merrywivesofwindsor,1600 hinc,1,merrywivesofwindsor,1600 pinioned,1,merrywivesofwindsor,1600 report,1,merrywivesofwindsor,1600 empty,1,merrywivesofwindsor,1600 mechanical,1,merrywivesofwindsor,1600 scorch,1,merrywivesofwindsor,1600 forehead,1,merrywivesofwindsor,1600 shouldst,1,merrywivesofwindsor,1600 hilt,1,merrywivesofwindsor,1600 mischief,1,merrywivesofwindsor,1600 silence,1,merrywivesofwindsor,1600 discreetly,1,merrywivesofwindsor,1600 Finely,1,merrywivesofwindsor,1600 lender,1,merrywivesofwindsor,1600 pebble,1,merrywivesofwindsor,1600 finest,1,merrywivesofwindsor,1600 scape,1,merrywivesofwindsor,1600 build,1,merrywivesofwindsor,1600 whelm,1,merrywivesofwindsor,1600 protests,1,merrywivesofwindsor,1600 built,1,merrywivesofwindsor,1600 sickly,1,merrywivesofwindsor,1600 curtal,1,merrywivesofwindsor,1600 unclean,1,merrywivesofwindsor,1600 errands,1,merrywivesofwindsor,1600 apply,1,merrywivesofwindsor,1600 proverb,1,merrywivesofwindsor,1600 Seven,1,merrywivesofwindsor,1600 endanger,1,merrywivesofwindsor,1600 hinds,1,merrywivesofwindsor,1600 experiment,1,merrywivesofwindsor,1600 wonder,1,merrywivesofwindsor,1600 proceed,1,merrywivesofwindsor,1600 Vengeance,1,merrywivesofwindsor,1600 Henceforth,1,merrywivesofwindsor,1600 drinkings,1,merrywivesofwindsor,1600 signifies,1,merrywivesofwindsor,1600 rainbow,1,merrywivesofwindsor,1600 societies,1,merrywivesofwindsor,1600 fehemently,1,merrywivesofwindsor,1600 guides,1,merrywivesofwindsor,1600 paths,1,merrywivesofwindsor,1600 rate,1,merrywivesofwindsor,1600 conceited,1,merrywivesofwindsor,1600 scall,1,merrywivesofwindsor,1600 rats,1,merrywivesofwindsor,1600 devils',1,merrywivesofwindsor,1600 lewdsters,1,merrywivesofwindsor,1600 riots,1,merrywivesofwindsor,1600 bottle,1,merrywivesofwindsor,1600 entertainment,1,merrywivesofwindsor,1600 umpires,1,merrywivesofwindsor,1600 luxury,1,merrywivesofwindsor,1600 Pursuing,1,merrywivesofwindsor,1600 infancy,1,merrywivesofwindsor,1600 sprighted,1,merrywivesofwindsor,1600 brazen,1,merrywivesofwindsor,1600 drunkard,1,merrywivesofwindsor,1600 warrener,1,merrywivesofwindsor,1600 churchman,1,merrywivesofwindsor,1600 companions,1,merrywivesofwindsor,1600 gourd,1,merrywivesofwindsor,1600 Mounseur,1,merrywivesofwindsor,1600 Ethiopian,1,merrywivesofwindsor,1600 year,1,merrywivesofwindsor,1600 overtake,1,merrywivesofwindsor,1600 'As,1,merrywivesofwindsor,1600 misuse,1,merrywivesofwindsor,1600 Banbury,1,merrywivesofwindsor,1600 extant,1,merrywivesofwindsor,1600 bottom,1,merrywivesofwindsor,1600 Base,1,merrywivesofwindsor,1600 capers,1,merrywivesofwindsor,1600 borne,1,merrywivesofwindsor,1600 Briefly,1,merrywivesofwindsor,1600 alter,1,merrywivesofwindsor,1600 picked,1,merrywivesofwindsor,1600 pittie,1,merrywivesofwindsor,1600 hick,1,merrywivesofwindsor,1600 shores,1,merrywivesofwindsor,1600 misdoubt,1,merrywivesofwindsor,1600 germans,1,merrywivesofwindsor,1600 loses,1,merrywivesofwindsor,1600 counsellor,1,merrywivesofwindsor,1600 odious,1,merrywivesofwindsor,1600 Set,1,merrywivesofwindsor,1600 churchmen,1,merrywivesofwindsor,1600 Gets,1,merrywivesofwindsor,1600 Potent,1,merrywivesofwindsor,1600 crammed,1,merrywivesofwindsor,1600 eggs,1,merrywivesofwindsor,1600 freely,1,merrywivesofwindsor,1600 avouch,1,merrywivesofwindsor,1600 powers,1,merrywivesofwindsor,1600 Yead,1,merrywivesofwindsor,1600 lattice,1,merrywivesofwindsor,1600 Doth,1,merrywivesofwindsor,1600 socks,1,merrywivesofwindsor,1600 Peter,1,merrywivesofwindsor,1600 cloak,1,merrywivesofwindsor,1600 Will't,1,merrywivesofwindsor,1600 leaving,1,merrywivesofwindsor,1600 mistresses,1,merrywivesofwindsor,1600 precious,1,merrywivesofwindsor,1600 pensioners,1,merrywivesofwindsor,1600 yours,1,merrywivesofwindsor,1600 engrossed,1,merrywivesofwindsor,1600 ravens,1,merrywivesofwindsor,1600 airy,1,merrywivesofwindsor,1600 spurs,1,merrywivesofwindsor,1600 vert,1,merrywivesofwindsor,1600 dissolution,1,merrywivesofwindsor,1600 admits,1,merrywivesofwindsor,1600 daylight,1,merrywivesofwindsor,1600 cashier,1,merrywivesofwindsor,1600 lodge,1,merrywivesofwindsor,1600 Some,1,merrywivesofwindsor,1600 'He,1,merrywivesofwindsor,1600 stare,1,merrywivesofwindsor,1600 mill,1,merrywivesofwindsor,1600 fantastical,1,merrywivesofwindsor,1600 mile,1,merrywivesofwindsor,1600 eld,1,merrywivesofwindsor,1600 exchange,1,merrywivesofwindsor,1600 wiser,1,merrywivesofwindsor,1600 teeth,1,merrywivesofwindsor,1600 soldiers,1,merrywivesofwindsor,1600 satisfaction,1,merrywivesofwindsor,1600 prize,1,merrywivesofwindsor,1600 conclusion,1,merrywivesofwindsor,1600 mightst,1,merrywivesofwindsor,1600 venturing,1,merrywivesofwindsor,1600 escape,1,merrywivesofwindsor,1600 'Ask,1,merrywivesofwindsor,1600 scholarly,1,merrywivesofwindsor,1600 male,1,merrywivesofwindsor,1600 fortnight,1,merrywivesofwindsor,1600 merrily,1,merrywivesofwindsor,1600 confidence,1,merrywivesofwindsor,1600 expressure,1,merrywivesofwindsor,1600 hissing,1,merrywivesofwindsor,1600 keeper,1,merrywivesofwindsor,1600 Gallia,1,merrywivesofwindsor,1600 dowry,1,merrywivesofwindsor,1600 bloody,1,merrywivesofwindsor,1600 Francisco,1,merrywivesofwindsor,1600 quaked,1,merrywivesofwindsor,1600 Queen,1,merrywivesofwindsor,1600 obscured,1,merrywivesofwindsor,1600 arched,1,merrywivesofwindsor,1600 skip,1,merrywivesofwindsor,1600 skin,1,merrywivesofwindsor,1600 mass,1,merrywivesofwindsor,1600 truckle,1,merrywivesofwindsor,1600 parties,1,merrywivesofwindsor,1600 organs,1,merrywivesofwindsor,1600 acquit,1,merrywivesofwindsor,1600 kissing,1,merrywivesofwindsor,1600 rattles,1,merrywivesofwindsor,1600 proudest,1,merrywivesofwindsor,1600 vell,1,merrywivesofwindsor,1600 affectations,1,merrywivesofwindsor,1600 thick,1,merrywivesofwindsor,1600 Son,1,merrywivesofwindsor,1600 afflicted,1,merrywivesofwindsor,1600 Any,1,merrywivesofwindsor,1600 Bohemian,1,merrywivesofwindsor,1600 veil,1,merrywivesofwindsor,1600 mire,1,merrywivesofwindsor,1600 wot,1,merrywivesofwindsor,1600 quoth,1,merrywivesofwindsor,1600 leader,1,merrywivesofwindsor,1600 won,1,merrywivesofwindsor,1600 blow,1,merrywivesofwindsor,1600 vision,1,merrywivesofwindsor,1600 chafe,1,merrywivesofwindsor,1600 ANN,1,merrywivesofwindsor,1600 punto,1,merrywivesofwindsor,1600 humoured,1,merrywivesofwindsor,1600 Job,1,merrywivesofwindsor,1600 address,1,merrywivesofwindsor,1600 thief,1,merrywivesofwindsor,1600 benefit,1,merrywivesofwindsor,1600 West,1,merrywivesofwindsor,1600 missing,1,merrywivesofwindsor,1600 constable,1,merrywivesofwindsor,1600 flannel,1,merrywivesofwindsor,1600 discharge,1,merrywivesofwindsor,1600 trifle,1,merrywivesofwindsor,1600 circumference,1,merrywivesofwindsor,1600 laughs,1,merrywivesofwindsor,1600 favor'd,1,merrywivesofwindsor,1600 number,1,merrywivesofwindsor,1600 doubted,1,merrywivesofwindsor,1600 Made,1,merrywivesofwindsor,1600 marvel,1,merrywivesofwindsor,1600 Being,1,merrywivesofwindsor,1600 yellowness,1,merrywivesofwindsor,1600 preposterously,1,merrywivesofwindsor,1600 bleaching,1,merrywivesofwindsor,1600 nominativo,1,merrywivesofwindsor,1600 discarded,1,merrywivesofwindsor,1600 trouble,1,merrywivesofwindsor,1600 tarries,1,merrywivesofwindsor,1600 examined,1,merrywivesofwindsor,1600 mockeries,1,merrywivesofwindsor,1600 i'faith,1,merrywivesofwindsor,1600 belly's,1,merrywivesofwindsor,1600 wee,1,merrywivesofwindsor,1600 desired,1,merrywivesofwindsor,1600 Irishman,1,merrywivesofwindsor,1600 Were,1,merrywivesofwindsor,1600 tattlings,1,merrywivesofwindsor,1600 louder,1,merrywivesofwindsor,1600 arrested,1,merrywivesofwindsor,1600 hardest,1,merrywivesofwindsor,1600 fray,1,merrywivesofwindsor,1600 bequeath,1,merrywivesofwindsor,1600 behalf,1,merrywivesofwindsor,1600 breed,1,merrywivesofwindsor,1600 dissolute,1,merrywivesofwindsor,1600 Pabylon,1,merrywivesofwindsor,1600 close,1,merrywivesofwindsor,1600 Coming,1,merrywivesofwindsor,1600 pause,1,merrywivesofwindsor,1600 slight,1,merrywivesofwindsor,1600 affairs,1,merrywivesofwindsor,1600 maids,1,merrywivesofwindsor,1600 troublesome,1,merrywivesofwindsor,1600 opinion,1,merrywivesofwindsor,1600 pold,1,merrywivesofwindsor,1600 wrongs,1,merrywivesofwindsor,1600 rogue's,1,merrywivesofwindsor,1600 stale,1,merrywivesofwindsor,1600 boarded,1,merrywivesofwindsor,1600 sapphire,1,merrywivesofwindsor,1600 experience,1,merrywivesofwindsor,1600 allicholy,1,merrywivesofwindsor,1600 stile,1,merrywivesofwindsor,1600 affaire,1,merrywivesofwindsor,1600 Went,1,merrywivesofwindsor,1600 provoke,1,merrywivesofwindsor,1600 hateful,1,merrywivesofwindsor,1600 thoroughly,1,merrywivesofwindsor,1600 sorrow,1,merrywivesofwindsor,1600 imaginations,1,merrywivesofwindsor,1600 Clap,1,merrywivesofwindsor,1600 emerald,1,merrywivesofwindsor,1600 rankest,1,merrywivesofwindsor,1600 third,1,merrywivesofwindsor,1600 detest,1,merrywivesofwindsor,1600 Jenny's,1,merrywivesofwindsor,1600 different,1,merrywivesofwindsor,1600 beastly,1,merrywivesofwindsor,1600 moment,1,merrywivesofwindsor,1600 Rogues,1,merrywivesofwindsor,1600 coxcomb,1,merrywivesofwindsor,1600 ransacked,1,merrywivesofwindsor,1600 dishonesty,1,merrywivesofwindsor,1600 knaveries,1,merrywivesofwindsor,1600 dunghill,1,merrywivesofwindsor,1600 relent,1,merrywivesofwindsor,1600 conjectures,1,merrywivesofwindsor,1600 favoredly,1,merrywivesofwindsor,1600 fallow,1,merrywivesofwindsor,1600 ripe,1,merrywivesofwindsor,1600 choked,1,merrywivesofwindsor,1600 Letter,1,merrywivesofwindsor,1600 masses,1,merrywivesofwindsor,1600 standing,1,merrywivesofwindsor,1600 death's,1,merrywivesofwindsor,1600 count,1,merrywivesofwindsor,1600 enrobed,1,merrywivesofwindsor,1600 shamefully,1,merrywivesofwindsor,1600 subtle,1,merrywivesofwindsor,1600 certainly,1,merrywivesofwindsor,1600 torture,1,merrywivesofwindsor,1600 Thine,1,merrywivesofwindsor,1600 py'r,1,merrywivesofwindsor,1600 heavy,1,merrywivesofwindsor,1600 canaries,1,merrywivesofwindsor,1600 Mercury,1,merrywivesofwindsor,1600 blasts,1,merrywivesofwindsor,1600 plummet,1,merrywivesofwindsor,1600 'The,1,merrywivesofwindsor,1600 fixture,1,merrywivesofwindsor,1600 Boys,1,merrywivesofwindsor,1600 war,1,merrywivesofwindsor,1600 staff,1,merrywivesofwindsor,1600 rise,1,merrywivesofwindsor,1600 Worthy,1,merrywivesofwindsor,1600 tailor,1,merrywivesofwindsor,1600 receive,1,merrywivesofwindsor,1600 commanded,1,merrywivesofwindsor,1600 'To,1,merrywivesofwindsor,1600 Wives,1,merrywivesofwindsor,1600 pody,1,merrywivesofwindsor,1600 intent,1,merrywivesofwindsor,1600 print,1,merrywivesofwindsor,1600 ambition,1,merrywivesofwindsor,1600 sufferance,1,merrywivesofwindsor,1600 handle,1,merrywivesofwindsor,1600 wood,1,merrywivesofwindsor,1600 pronouns,1,merrywivesofwindsor,1600 arrow,1,merrywivesofwindsor,1600 East,1,merrywivesofwindsor,1600 assure,1,merrywivesofwindsor,1600 herring,1,merrywivesofwindsor,1600 fico,1,merrywivesofwindsor,1600 juice,1,merrywivesofwindsor,1600 saith,1,merrywivesofwindsor,1600 wanton,1,merrywivesofwindsor,1600 rags,1,merrywivesofwindsor,1600 legion,1,merrywivesofwindsor,1600 Knowing,1,merrywivesofwindsor,1600 peradventure,1,merrywivesofwindsor,1600 tevil,1,merrywivesofwindsor,1600 wont,1,merrywivesofwindsor,1600 complain,1,merrywivesofwindsor,1600 women's,1,merrywivesofwindsor,1600 breakfast,1,merrywivesofwindsor,1600 cursed,1,merrywivesofwindsor,1600 depeche,1,merrywivesofwindsor,1600 bounty,1,merrywivesofwindsor,1600 happy,1,merrywivesofwindsor,1600 possess,1,merrywivesofwindsor,1600 caught,1,merrywivesofwindsor,1600 hail,1,merrywivesofwindsor,1600 into't,1,merrywivesofwindsor,1600 curses,1,merrywivesofwindsor,1600 grossly,1,merrywivesofwindsor,1600 grossness,1,merrywivesofwindsor,1600 veneys,1,merrywivesofwindsor,1600 baseness,1,merrywivesofwindsor,1600 breadth,1,merrywivesofwindsor,1600 drawling,1,merrywivesofwindsor,1600 Greece,1,merrywivesofwindsor,1600 Straight,1,merrywivesofwindsor,1600 Herod,1,merrywivesofwindsor,1600 watery,1,merrywivesofwindsor,1600 worships,1,merrywivesofwindsor,1600 Vile,1,merrywivesofwindsor,1600 Cupid's,1,merrywivesofwindsor,1600 muddy,1,merrywivesofwindsor,1600 dissolved,1,merrywivesofwindsor,1600 fallen,1,merrywivesofwindsor,1600 taken,1,merrywivesofwindsor,1600 rotten,1,merrywivesofwindsor,1600 Pulcher,1,merrywivesofwindsor,1600 prologue,1,merrywivesofwindsor,1600 udge,1,merrywivesofwindsor,1600 'quies,1,merrywivesofwindsor,1600 poison,1,merrywivesofwindsor,1600 keeper's,1,merrywivesofwindsor,1600 Qu'ai,1,merrywivesofwindsor,1600 size,1,merrywivesofwindsor,1600 require,1,merrywivesofwindsor,1600 smelling,1,merrywivesofwindsor,1600 inclination,1,merrywivesofwindsor,1600 bucking,1,merrywivesofwindsor,1600 boitier,1,merrywivesofwindsor,1600 lechery,1,merrywivesofwindsor,1600 rain,1,merrywivesofwindsor,1600 haec,1,merrywivesofwindsor,1600 ribands,1,merrywivesofwindsor,1600 beguiles,1,merrywivesofwindsor,1600 cockscomb,1,merrywivesofwindsor,1600 yoke,1,merrywivesofwindsor,1600 operations,1,merrywivesofwindsor,1600 harvest,1,merrywivesofwindsor,1600 prief,1,merrywivesofwindsor,1600 peaten,1,merrywivesofwindsor,1600 wooes,1,merrywivesofwindsor,1600 via,1,merrywivesofwindsor,1600 fox,1,merrywivesofwindsor,1600 Forbear,1,merrywivesofwindsor,1600 Lapis,1,merrywivesofwindsor,1600 swelled,1,merrywivesofwindsor,1600 foi,1,merrywivesofwindsor,1600 whence,1,merrywivesofwindsor,1600 followers,1,merrywivesofwindsor,1600 fail,1,merrywivesofwindsor,1600 Even,1,merrywivesofwindsor,1600 crotchets,1,merrywivesofwindsor,1600 mince,1,merrywivesofwindsor,1600 kibes,1,merrywivesofwindsor,1600 contempt,1,merrywivesofwindsor,1600 hideous,1,merrywivesofwindsor,1600 Show,1,merrywivesofwindsor,1600 heirs,1,merrywivesofwindsor,1600 sails,1,merrywivesofwindsor,1600 fait,1,merrywivesofwindsor,1600 wholesome,1,merrywivesofwindsor,1600 carriers,1,merrywivesofwindsor,1600 pouch,1,merrywivesofwindsor,1600 fretted,1,merrywivesofwindsor,1600 profane,1,merrywivesofwindsor,1600 montant,1,merrywivesofwindsor,1600 ground,1,merrywivesofwindsor,1600 glover's,1,merrywivesofwindsor,1600 minds,1,merrywivesofwindsor,1600 Sonnets,1,merrywivesofwindsor,1600 yond,1,merrywivesofwindsor,1600 grate,1,merrywivesofwindsor,1600 judge,1,merrywivesofwindsor,1600 presses,1,merrywivesofwindsor,1600 giving,1,merrywivesofwindsor,1600 Phrygian,1,merrywivesofwindsor,1600 united,1,merrywivesofwindsor,1600 miracle,1,merrywivesofwindsor,1600 swearings,1,merrywivesofwindsor,1600 utterly,1,merrywivesofwindsor,1600 cares,1,merrywivesofwindsor,1600 caret,1,merrywivesofwindsor,1600 article,1,merrywivesofwindsor,1600 foh,1,merrywivesofwindsor,1600 fall,1,merrywivesofwindsor,1600 foe,1,merrywivesofwindsor,1600 phrases,1,merrywivesofwindsor,1600 wilful,1,merrywivesofwindsor,1600 wert,1,merrywivesofwindsor,1600 Jupiter,1,merrywivesofwindsor,1600 swells,1,merrywivesofwindsor,1600 kinsman,1,merrywivesofwindsor,1600 grand,1,merrywivesofwindsor,1600 positive,1,merrywivesofwindsor,1600 worm,1,merrywivesofwindsor,1600 worn,1,merrywivesofwindsor,1600 discover,1,merrywivesofwindsor,1600 cattle,1,merrywivesofwindsor,1600 garcon,1,merrywivesofwindsor,1600 wickedness,1,merrywivesofwindsor,1600 righteous,1,merrywivesofwindsor,1600 roses,1,merrywivesofwindsor,1600 do't,1,merrywivesofwindsor,1600 intention,1,merrywivesofwindsor,1600 prattling,1,merrywivesofwindsor,1600 Mars,1,merrywivesofwindsor,1600 pepper,1,merrywivesofwindsor,1600 pullet,1,merrywivesofwindsor,1600 flame,1,merrywivesofwindsor,1600 frampold,1,merrywivesofwindsor,1600 filching,1,merrywivesofwindsor,1600 notify,1,merrywivesofwindsor,1600 passion,1,merrywivesofwindsor,1600 vow,1,merrywivesofwindsor,1600 glanced,1,merrywivesofwindsor,1600 Attend,1,merrywivesofwindsor,1600 taber,1,merrywivesofwindsor,1600 Boy,1,merrywivesofwindsor,1600 howsoever,1,merrywivesofwindsor,1600 baboons,1,merrywivesofwindsor,1600 ranting,1,merrywivesofwindsor,1600 damnation,1,merrywivesofwindsor,1600 lascivious,1,merrywivesofwindsor,1600 cogging,1,merrywivesofwindsor,1600 snowballs,1,merrywivesofwindsor,1600 troat,1,merrywivesofwindsor,1600 frize,1,merrywivesofwindsor,1600 bark,1,merrywivesofwindsor,1600 thereby,1,merrywivesofwindsor,1600 thunder,1,merrywivesofwindsor,1600 'Love,1,merrywivesofwindsor,1600 answer'd,1,merrywivesofwindsor,1600 shown,1,merrywivesofwindsor,1600 wide,1,merrywivesofwindsor,1600 Barbason,1,merrywivesofwindsor,1600 tail,1,merrywivesofwindsor,1600 surge,1,merrywivesofwindsor,1600 pocket,1,merrywivesofwindsor,1600 bite,1,merrywivesofwindsor,1600 divers,1,merrywivesofwindsor,1600 unfold,1,merrywivesofwindsor,1600 plessed,1,merrywivesofwindsor,1600 Received,1,merrywivesofwindsor,1600 Mother,1,merrywivesofwindsor,1600 protested,1,merrywivesofwindsor,1600 an't,1,merrywivesofwindsor,1600 ver,1,merrywivesofwindsor,1600 Somebody,1,merrywivesofwindsor,1600 unfool,1,merrywivesofwindsor,1600 Readins,1,merrywivesofwindsor,1600 bath,1,merrywivesofwindsor,1600 bate,1,merrywivesofwindsor,1600 watch'd,1,merrywivesofwindsor,1600 bars,1,merrywivesofwindsor,1600 buttons,1,merrywivesofwindsor,1600 gilded,1,merrywivesofwindsor,1600 register,1,merrywivesofwindsor,1600 'Steal,1,merrywivesofwindsor,1600 cuckold's,1,merrywivesofwindsor,1600 stinking,1,merrywivesofwindsor,1600 public,1,merrywivesofwindsor,1600 predominate,1,merrywivesofwindsor,1600 Knocks,1,merrywivesofwindsor,1600 slanderous,1,merrywivesofwindsor,1600 band,1,merrywivesofwindsor,1600 observance,1,merrywivesofwindsor,1600 friendship,1,merrywivesofwindsor,1600 tank,1,merrywivesofwindsor,1600 hoof,1,merrywivesofwindsor,1600 seemingly,1,merrywivesofwindsor,1600 flames,1,merrywivesofwindsor,1600 balm,1,merrywivesofwindsor,1600 motive,1,merrywivesofwindsor,1600 vitae,1,merrywivesofwindsor,1600 vocativo,1,merrywivesofwindsor,1600 Leda,1,merrywivesofwindsor,1600 tame,1,merrywivesofwindsor,1600 dam,1,merrywivesofwindsor,1600 Noise,1,merrywivesofwindsor,1600 fast,1,merrywivesofwindsor,1600 large,1,merrywivesofwindsor,1600 Each,1,merrywivesofwindsor,1600 emperor,1,merrywivesofwindsor,1600 sentences,1,merrywivesofwindsor,1600 fare,1,merrywivesofwindsor,1600 baille,1,merrywivesofwindsor,1600 lights,1,merrywivesofwindsor,1600 farm,1,merrywivesofwindsor,1600 coal,1,merrywivesofwindsor,1600 Caesar,1,merrywivesofwindsor,1600 Accusativo,1,merrywivesofwindsor,1600 Kindled,1,merrywivesofwindsor,1600 swearer,1,merrywivesofwindsor,1600 amiable,1,merrywivesofwindsor,1600 affliction,1,merrywivesofwindsor,1600 cup,1,merrywivesofwindsor,1600 chalices,1,merrywivesofwindsor,1600 shuttle,1,merrywivesofwindsor,1600 compassed,1,merrywivesofwindsor,1600 puppies,1,merrywivesofwindsor,1600 shirts,1,merrywivesofwindsor,1600 provoked,1,merrywivesofwindsor,1600 Mephostophilus,1,merrywivesofwindsor,1600 varld,1,merrywivesofwindsor,1600 asunder,1,merrywivesofwindsor,1600 privacy,1,merrywivesofwindsor,1600 FALSTAFF',1,merrywivesofwindsor,1600 chollors,1,merrywivesofwindsor,1600 shoot,1,merrywivesofwindsor,1600 ought,1,merrywivesofwindsor,1600 holds,1,merrywivesofwindsor,1600 shore,1,merrywivesofwindsor,1600 starlight,1,merrywivesofwindsor,1600 heires,1,merrywivesofwindsor,1600 England,1,merrywivesofwindsor,1600 holy,1,merrywivesofwindsor,1600 dexterity,1,merrywivesofwindsor,1600 clear,1,merrywivesofwindsor,1600 None,1,merrywivesofwindsor,1600 flea's,1,merrywivesofwindsor,1600 fertile,1,merrywivesofwindsor,1600 unmeasurable,1,merrywivesofwindsor,1600 Vell,1,merrywivesofwindsor,1600 articles,1,merrywivesofwindsor,1600 virginity,1,merrywivesofwindsor,1600 enlargeth,1,merrywivesofwindsor,1600 dangerous,1,merrywivesofwindsor,1600 extraordinary,1,merrywivesofwindsor,1600 fattest,1,merrywivesofwindsor,1600 pawned,1,merrywivesofwindsor,1600 hollow,1,merrywivesofwindsor,1600 sawpit,1,merrywivesofwindsor,1600 cur,1,merrywivesofwindsor,1600 snap,1,merrywivesofwindsor,1600 pangs,1,merrywivesofwindsor,1600 fires,1,merrywivesofwindsor,1600 oyster,1,merrywivesofwindsor,1600 'Save,1,merrywivesofwindsor,1600 loyal,1,merrywivesofwindsor,1600 argument,1,merrywivesofwindsor,1600 revolt,1,merrywivesofwindsor,1600 distracts,1,merrywivesofwindsor,1600 Frank,1,merrywivesofwindsor,1600 Guiana,1,merrywivesofwindsor,1600 assist,1,merrywivesofwindsor,1600 perplexity,1,merrywivesofwindsor,1600 larron,1,merrywivesofwindsor,1600 presents,1,merrywivesofwindsor,1600 winter,1,merrywivesofwindsor,1600 rabble,1,merrywivesofwindsor,1600 liver,1,merrywivesofwindsor,1600 streets,1,merrywivesofwindsor,1600 money'd,1,merrywivesofwindsor,1600 Dat,1,merrywivesofwindsor,1600 Cornuto,1,merrywivesofwindsor,1600 Wherefore,1,merrywivesofwindsor,1600 conjure,1,merrywivesofwindsor,1600 choler,1,merrywivesofwindsor,1600 blazon,1,merrywivesofwindsor,1600 profits,1,merrywivesofwindsor,1600 quod,1,merrywivesofwindsor,1600 aspire,1,merrywivesofwindsor,1600 satisfied,1,merrywivesofwindsor,1600 terrors,1,merrywivesofwindsor,1600 lungs,1,merrywivesofwindsor,1600 yellow,1,merrywivesofwindsor,1600 Troy,1,merrywivesofwindsor,1600 cheerful,1,merrywivesofwindsor,1600 hearty,1,merrywivesofwindsor,1600 'quaes,1,merrywivesofwindsor,1600 cook,1,merrywivesofwindsor,1600 lying,1,merrywivesofwindsor,1600 contents,1,merrywivesofwindsor,1600 pudding,1,merrywivesofwindsor,1600 swear,1,merrywivesofwindsor,1600 fairer,1,merrywivesofwindsor,1600 traverse,1,merrywivesofwindsor,1600 Pandarus,1,merrywivesofwindsor,1600 sinking,1,merrywivesofwindsor,1600 primero,1,merrywivesofwindsor,1600 took't,1,merrywivesofwindsor,1600 seem,1,merrywivesofwindsor,1600 fights,1,merrywivesofwindsor,1600 quae,1,merrywivesofwindsor,1600 CAIUS',1,merrywivesofwindsor,1600 sports,1,merrywivesofwindsor,1600 supposed,1,merrywivesofwindsor,1600 unkindness,1,merrywivesofwindsor,1600 gnawn,1,merrywivesofwindsor,1600 marvellous,1,merrywivesofwindsor,1600 labras,1,merrywivesofwindsor,1600 elves,1,merrywivesofwindsor,1600 sees,1,merrywivesofwindsor,1600 drunken,1,merrywivesofwindsor,1600 Terms,1,merrywivesofwindsor,1600 liking,1,merrywivesofwindsor,1600 cost,1,merrywivesofwindsor,1600 Mine,1,merrywivesofwindsor,1600 tidings,1,merrywivesofwindsor,1600 True,1,merrywivesofwindsor,1600 lunes,1,merrywivesofwindsor,1600 Ringwood,1,merrywivesofwindsor,1600 vehemency,1,merrywivesofwindsor,1600 setting,1,merrywivesofwindsor,1600 traitor,1,merrywivesofwindsor,1600 Prat,1,merrywivesofwindsor,1600 oeillades,1,merrywivesofwindsor,1600 sluts,1,merrywivesofwindsor,1600 secrecy,1,merrywivesofwindsor,1600 rascally,1,merrywivesofwindsor,1600 Gentlemen,1,merrywivesofwindsor,1600 dispense,1,merrywivesofwindsor,1600 heavenly,1,merrywivesofwindsor,1600 o'erreaching,1,merrywivesofwindsor,1600 He'll,1,merrywivesofwindsor,1600 briefly,1,merrywivesofwindsor,1600 pour,1,merrywivesofwindsor,1600 jointure,1,merrywivesofwindsor,1600 therein,1,merrywivesofwindsor,1600 blame,1,merrywivesofwindsor,1600 compremises,1,merrywivesofwindsor,1600 goat,1,merrywivesofwindsor,1600 greedy,1,merrywivesofwindsor,1600 Sackerson,1,merrywivesofwindsor,1600 stopped,1,merrywivesofwindsor,1600 Trib,1,merrywivesofwindsor,1600 judicious,1,merrywivesofwindsor,1600 souls,1,merrywivesofwindsor,1600 bake,1,merrywivesofwindsor,1600 beheld,1,merrywivesofwindsor,1600 according,1,merrywivesofwindsor,1600 gibbet,1,merrywivesofwindsor,1600 fairly,1,merrywivesofwindsor,1600 capacity,1,merrywivesofwindsor,1600 embroidery,1,merrywivesofwindsor,1600 cases,1,merrywivesofwindsor,1600 whilst,1,merrywivesofwindsor,1600 semi,1,merrywivesofwindsor,1600 Edward,1,merrywivesofwindsor,1600 Scurvy,1,merrywivesofwindsor,1600 ordaining,1,merrywivesofwindsor,1600 glowing,1,merrywivesofwindsor,1600 'slid,1,merrywivesofwindsor,1600 Neither,1,merrywivesofwindsor,1600 allowed,1,merrywivesofwindsor,1600 mother's,1,merrywivesofwindsor,1600 drawer,1,merrywivesofwindsor,1600 bade,1,merrywivesofwindsor,1600 slough,1,merrywivesofwindsor,1600 carriage,1,merrywivesofwindsor,1600 nursh,1,merrywivesofwindsor,1600 season,1,merrywivesofwindsor,1600 tinderbox,1,merrywivesofwindsor,1600 Nominativo,1,merrywivesofwindsor,1600 lastly,1,merrywivesofwindsor,1600 declensions,1,merrywivesofwindsor,1600 fullam,1,merrywivesofwindsor,1600 Singulariter,1,merrywivesofwindsor,1600 egress,1,merrywivesofwindsor,1600 methought,1,merrywivesofwindsor,1600 couple,1,merrywivesofwindsor,1600 bestow,1,merrywivesofwindsor,1600 invite,1,merrywivesofwindsor,1600 detect,1,merrywivesofwindsor,1600 rather',1,merrywivesofwindsor,1600 bags,1,merrywivesofwindsor,1600 Diable,1,merrywivesofwindsor,1600 parcel,1,merrywivesofwindsor,1600 sealed,1,merrywivesofwindsor,1600 brow,1,merrywivesofwindsor,1600 fritters,1,merrywivesofwindsor,1600 Articles,1,merrywivesofwindsor,1600 servants,1,merrywivesofwindsor,1600 feasting,1,merrywivesofwindsor,1600 lays,1,merrywivesofwindsor,1600 assence,1,merrywivesofwindsor,1600 imagination,1,merrywivesofwindsor,1600 successors,1,merrywivesofwindsor,1600 measuring,1,merrywivesofwindsor,1600 rheumatic,1,merrywivesofwindsor,1600 write,1,merrywivesofwindsor,1600 mal,1,merrywivesofwindsor,1600 evening,1,merrywivesofwindsor,1600 spirits,1,merrywivesofwindsor,1600 adoption,1,merrywivesofwindsor,1600 fiends,1,merrywivesofwindsor,1600 limbs,1,merrywivesofwindsor,1600 'Hang,1,merrywivesofwindsor,1600 peat,1,merrywivesofwindsor,1600 Kisses,1,merrywivesofwindsor,1600 construe,1,merrywivesofwindsor,1600 pear,1,merrywivesofwindsor,1600 'Seese',1,merrywivesofwindsor,1600 afeard,1,merrywivesofwindsor,1600 'scape,1,merrywivesofwindsor,1600 revolted,1,merrywivesofwindsor,1600 scum,1,merrywivesofwindsor,1600 seldom,1,merrywivesofwindsor,1600 scut,1,merrywivesofwindsor,1600 forced,1,merrywivesofwindsor,1600 distillation,1,merrywivesofwindsor,1600 learn,1,merrywivesofwindsor,1600 wring,1,merrywivesofwindsor,1600 detection,1,merrywivesofwindsor,1600 laughed,1,merrywivesofwindsor,1600 Gaul,1,merrywivesofwindsor,1600 Sometime,1,merrywivesofwindsor,1600 courageous,1,merrywivesofwindsor,1600 headed,1,merrywivesofwindsor,1600 trip,1,merrywivesofwindsor,1600 Faustuses,1,merrywivesofwindsor,1600 unskilful,1,merrywivesofwindsor,1600 manifested,1,merrywivesofwindsor,1600 upward,1,merrywivesofwindsor,1600 cheater,1,merrywivesofwindsor,1600 erected,1,merrywivesofwindsor,1600 Writes,1,merrywivesofwindsor,1600 Falstaffs,1,merrywivesofwindsor,1600 pitifully,1,merrywivesofwindsor,1600 employment,1,merrywivesofwindsor,1600 daubery,1,merrywivesofwindsor,1600 Clock,1,merrywivesofwindsor,1600 suffocation,1,merrywivesofwindsor,1600 repay,1,merrywivesofwindsor,1600 whit,1,merrywivesofwindsor,1600 instigated,1,merrywivesofwindsor,1600 whip,1,merrywivesofwindsor,1600 ladies,1,merrywivesofwindsor,1600 debtor,1,merrywivesofwindsor,1600 encircle,1,merrywivesofwindsor,1600 body's,1,merrywivesofwindsor,1600 toast,1,merrywivesofwindsor,1600 powerful,1,merrywivesofwindsor,1600 biting,1,merrywivesofwindsor,1600 fled,1,merrywivesofwindsor,1600 simplicity,1,merrywivesofwindsor,1600 county,1,merrywivesofwindsor,1600 thinking,1,merrywivesofwindsor,1600 bethink,1,merrywivesofwindsor,1600 Meg,1,merrywivesofwindsor,1600 Bodykins,1,merrywivesofwindsor,1600 punishment,1,merrywivesofwindsor,1600 Eight,1,merrywivesofwindsor,1600 Forsooth,1,merrywivesofwindsor,1600 adown,1,merrywivesofwindsor,1600 hodge,1,merrywivesofwindsor,1600 improvident,1,merrywivesofwindsor,1600 on's,1,merrywivesofwindsor,1600 buck's,1,merrywivesofwindsor,1600 enjoying,1,merrywivesofwindsor,1600 physic,1,merrywivesofwindsor,1600 Amen,1,merrywivesofwindsor,1600 chaud,1,merrywivesofwindsor,1600 Sleep,1,merrywivesofwindsor,1600 telling,1,merrywivesofwindsor,1600 German,1,merrywivesofwindsor,1600 womanhood,1,merrywivesofwindsor,1600 'mum',1,merrywivesofwindsor,1600 tattling,1,merrywivesofwindsor,1600 respects,1,merrywivesofwindsor,1600 nativity,1,merrywivesofwindsor,1600 military,1,merrywivesofwindsor,1600 politic,1,merrywivesofwindsor,1600 peck,1,merrywivesofwindsor,1600 niggardly,1,merrywivesofwindsor,1600 credit,1,merrywivesofwindsor,1600 flax,1,merrywivesofwindsor,1600 Clapper,1,merrywivesofwindsor,1600 inherit,1,merrywivesofwindsor,1600 unraked,1,merrywivesofwindsor,1600 tameness,1,merrywivesofwindsor,1600 Green,1,merrywivesofwindsor,1600 sheathe,1,merrywivesofwindsor,1600 knight's,1,merrywivesofwindsor,1600 virtue,1,merrywivesofwindsor,1600 peds,1,merrywivesofwindsor,1600 potatoes,1,merrywivesofwindsor,1600 truant,1,merrywivesofwindsor,1600 chooser,1,merrywivesofwindsor,1600 seemed,1,merrywivesofwindsor,1600 Prodigal,1,merrywivesofwindsor,1600 fright,1,merrywivesofwindsor,1600 recompense,1,merrywivesofwindsor,1600 peer,1,merrywivesofwindsor,1600 Without,1,merrywivesofwindsor,1600 silver,1,merrywivesofwindsor,1600 gets,1,merrywivesofwindsor,1600 'Peer,1,merrywivesofwindsor,1600 April,1,merrywivesofwindsor,1600 opportunity,1,merrywivesofwindsor,1600 divinity,1,merrywivesofwindsor,1600 imperfection,1,merrywivesofwindsor,1600 instalment,1,merrywivesofwindsor,1600 mummy,1,merrywivesofwindsor,1600 eyas,1,merrywivesofwindsor,1600 squire,1,merrywivesofwindsor,1600 flaring,1,merrywivesofwindsor,1600 hog',1,merrywivesofwindsor,1600 appetite,1,merrywivesofwindsor,1600 Lust,1,merrywivesofwindsor,1600 assistant,1,merrywivesofwindsor,1600 metheglins,1,merrywivesofwindsor,1600 wooers,1,merrywivesofwindsor,1600 mon,1,merrywivesofwindsor,1600 Justice,1,merrywivesofwindsor,1600 dispatched,1,merrywivesofwindsor,1600 leading,1,merrywivesofwindsor,1600 simply,1,merrywivesofwindsor,1600 amazedness,1,merrywivesofwindsor,1600 shrewd,1,merrywivesofwindsor,1600 wildly,1,merrywivesofwindsor,1600 assurance,1,merrywivesofwindsor,1600 pless,1,merrywivesofwindsor,1600 shelvy,1,merrywivesofwindsor,1600 inconstancy,1,merrywivesofwindsor,1600 wringer,1,merrywivesofwindsor,1600 reverse,1,merrywivesofwindsor,1600 Conceal,1,merrywivesofwindsor,1600 shaft,1,merrywivesofwindsor,1600 careless,1,merrywivesofwindsor,1600 judged,1,merrywivesofwindsor,1600 Mount,1,merrywivesofwindsor,1600 Hibocrates,1,merrywivesofwindsor,1600 provide,1,merrywivesofwindsor,1600 student,1,merrywivesofwindsor,1600 dark,1,merrywivesofwindsor,1600 whoe'er,1,merrywivesofwindsor,1600 Psalm,1,merrywivesofwindsor,1600 chariness,1,merrywivesofwindsor,1600 catch,1,merrywivesofwindsor,1600 phlegmatic,1,merrywivesofwindsor,1600 lane,1,merrywivesofwindsor,1600 harum,1,merrywivesofwindsor,1600 top,1,merrywivesofwindsor,1600 another's,1,merrywivesofwindsor,1600 dry,1,merrywivesofwindsor,1600 swallowed,1,merrywivesofwindsor,1600 reverend,1,merrywivesofwindsor,1600 wonders,1,merrywivesofwindsor,1600 Bring,1,merrywivesofwindsor,1600 DRAMATIS,1,merrywivesofwindsor,1600 omnipotent,1,merrywivesofwindsor,1600 certain,1,merrywivesofwindsor,1600 shift,1,merrywivesofwindsor,1600 Disarm,1,merrywivesofwindsor,1600 PAGE's,1,merrywivesofwindsor,1600 gallimaufry,1,merrywivesofwindsor,1600 guests,1,merrywivesofwindsor,1600 shine,1,merrywivesofwindsor,1600 dank,1,merrywivesofwindsor,1600 behold,1,merrywivesofwindsor,1600 Knight,1,merrywivesofwindsor,1600 Dispatched,1,merrywivesofwindsor,1600 shins,1,merrywivesofwindsor,1600 flower,1,merrywivesofwindsor,1600 obedient,1,merrywivesofwindsor,1600 ascend,1,merrywivesofwindsor,1600 cross,1,merrywivesofwindsor,1600 des,1,merrywivesofwindsor,1600 gentles,1,merrywivesofwindsor,1600 king,1,merrywivesofwindsor,1600 possibilities,1,merrywivesofwindsor,1600 kine,1,merrywivesofwindsor,1600 dee,1,merrywivesofwindsor,1600 sprag,1,merrywivesofwindsor,1600 den,1,merrywivesofwindsor,1600 boots,1,merrywivesofwindsor,1600 vorld,1,merrywivesofwindsor,1600 lecher,1,merrywivesofwindsor,1600 figures,1,merrywivesofwindsor,1600 tainted,1,merrywivesofwindsor,1600 defences,1,merrywivesofwindsor,1600 remorse,1,merrywivesofwindsor,1600 rounds,1,merrywivesofwindsor,1600 done't,1,merrywivesofwindsor,1600 trifling,1,merrywivesofwindsor,1600 cannon,1,merrywivesofwindsor,1600 fragrant,1,merrywivesofwindsor,1600 candles,1,merrywivesofwindsor,1600 doting,1,merrywivesofwindsor,1600 forbear,1,merrywivesofwindsor,1600 breathe,1,merrywivesofwindsor,1600 cozeners,1,merrywivesofwindsor,1600 oaths,1,merrywivesofwindsor,1600 flattering,1,merrywivesofwindsor,1600 avaunt,1,merrywivesofwindsor,1600 bids,1,merrywivesofwindsor,1600 properties,1,merrywivesofwindsor,1600 th',1,merrywivesofwindsor,1600 tread,1,merrywivesofwindsor,1600 hunting,1,merrywivesofwindsor,1600 direction,1,merrywivesofwindsor,1600 vitness,1,merrywivesofwindsor,1600 undertake,1,merrywivesofwindsor,1600 hatches,1,merrywivesofwindsor,1600 preeches,1,merrywivesofwindsor,1600 dis,1,merrywivesofwindsor,1600 enemy,1,merrywivesofwindsor,1600 nostril,1,merrywivesofwindsor,1600 sharp,1,merrywivesofwindsor,1600 peaking,1,merrywivesofwindsor,1600 woo'd,1,merrywivesofwindsor,1600 punished,1,merrywivesofwindsor,1600 godly,1,merrywivesofwindsor,1600 weaver's,1,merrywivesofwindsor,1600 hedge,1,merrywivesofwindsor,1600 fortunes,1,merrywivesofwindsor,1600 largely,1,merrywivesofwindsor,1600 swan,1,merrywivesofwindsor,1600 summer,1,merrywivesofwindsor,1600 daughters,1,merrywivesofwindsor,1600 redress'd,1,merrywivesofwindsor,1600 answered,2,merrywivesofwindsor,1600 You're,2,merrywivesofwindsor,1600 heed,2,merrywivesofwindsor,1600 heel,2,merrywivesofwindsor,1600 washing,2,merrywivesofwindsor,1600 villany,2,merrywivesofwindsor,1600 quality,2,merrywivesofwindsor,1600 sweetheart,2,merrywivesofwindsor,1600 ignorance,2,merrywivesofwindsor,1600 suffer,2,merrywivesofwindsor,1600 red,2,merrywivesofwindsor,1600 extremity,2,merrywivesofwindsor,1600 drop,2,merrywivesofwindsor,1600 for't,2,merrywivesofwindsor,1600 writ,2,merrywivesofwindsor,1600 advantage,2,merrywivesofwindsor,1600 clerkly,2,merrywivesofwindsor,1600 preparation,2,merrywivesofwindsor,1600 rascal,2,merrywivesofwindsor,1600 steals,2,merrywivesofwindsor,1600 Wilt,2,merrywivesofwindsor,1600 publicly,2,merrywivesofwindsor,1600 mush,2,merrywivesofwindsor,1600 boys,2,merrywivesofwindsor,1600 held,2,merrywivesofwindsor,1600 dish,2,merrywivesofwindsor,1600 Tell,2,merrywivesofwindsor,1600 writes,2,merrywivesofwindsor,1600 'Oman,2,merrywivesofwindsor,1600 spake,2,merrywivesofwindsor,1600 sight,2,merrywivesofwindsor,1600 errand,2,merrywivesofwindsor,1600 fought,2,merrywivesofwindsor,1600 pottle,2,merrywivesofwindsor,1600 hanged,2,merrywivesofwindsor,1600 appear,2,merrywivesofwindsor,1600 sort,2,merrywivesofwindsor,1600 'Armigero,2,merrywivesofwindsor,1600 pick,2,merrywivesofwindsor,1600 Money,2,merrywivesofwindsor,1600 works,2,merrywivesofwindsor,1600 lief,2,merrywivesofwindsor,1600 care,2,merrywivesofwindsor,1600 song,2,merrywivesofwindsor,1600 coffers,2,merrywivesofwindsor,1600 mistook,2,merrywivesofwindsor,1600 pursue,2,merrywivesofwindsor,1600 mercy,2,merrywivesofwindsor,1600 birth,2,merrywivesofwindsor,1600 Actaeon,2,merrywivesofwindsor,1600 matters,2,merrywivesofwindsor,1600 lunatics,2,merrywivesofwindsor,1600 dance,2,merrywivesofwindsor,1600 hour's,2,merrywivesofwindsor,1600 lime,2,merrywivesofwindsor,1600 Pulling,2,merrywivesofwindsor,1600 afterwards,2,merrywivesofwindsor,1600 cheer,2,merrywivesofwindsor,1600 hearing,2,merrywivesofwindsor,1600 knaves,2,merrywivesofwindsor,1600 complexion,2,merrywivesofwindsor,1600 noise,2,merrywivesofwindsor,1600 toys,2,merrywivesofwindsor,1600 moonshine,2,merrywivesofwindsor,1600 asked,2,merrywivesofwindsor,1600 yards,2,merrywivesofwindsor,1600 sit,2,merrywivesofwindsor,1600 Get,2,merrywivesofwindsor,1600 conceive,2,merrywivesofwindsor,1600 tapster,2,merrywivesofwindsor,1600 virtuous,2,merrywivesofwindsor,1600 she'll,2,merrywivesofwindsor,1600 sea,2,merrywivesofwindsor,1600 'twas,2,merrywivesofwindsor,1600 geese,2,merrywivesofwindsor,1600 spy,2,merrywivesofwindsor,1600 worts,2,merrywivesofwindsor,1600 subject,2,merrywivesofwindsor,1600 wight,2,merrywivesofwindsor,1600 Was,2,merrywivesofwindsor,1600 urinals,2,merrywivesofwindsor,1600 scour,2,merrywivesofwindsor,1600 attends,2,merrywivesofwindsor,1600 admittance,2,merrywivesofwindsor,1600 second,2,merrywivesofwindsor,1600 looks,2,merrywivesofwindsor,1600 mutually,2,merrywivesofwindsor,1600 read,2,merrywivesofwindsor,1600 ourselves,2,merrywivesofwindsor,1600 offence,2,merrywivesofwindsor,1600 taught,2,merrywivesofwindsor,1600 vile,2,merrywivesofwindsor,1600 worse,2,merrywivesofwindsor,1600 opportunities,2,merrywivesofwindsor,1600 brain,2,merrywivesofwindsor,1600 piece,2,merrywivesofwindsor,1600 Our,2,merrywivesofwindsor,1600 monster,2,merrywivesofwindsor,1600 Buck,2,merrywivesofwindsor,1600 rhyme,2,merrywivesofwindsor,1600 civil,2,merrywivesofwindsor,1600 pribbles,2,merrywivesofwindsor,1600 absence,2,merrywivesofwindsor,1600 plots,2,merrywivesofwindsor,1600 falls,2,merrywivesofwindsor,1600 laundress,2,merrywivesofwindsor,1600 peard,2,merrywivesofwindsor,1600 Want,2,merrywivesofwindsor,1600 sauce,2,merrywivesofwindsor,1600 grow,2,merrywivesofwindsor,1600 service,2,merrywivesofwindsor,1600 gibes,2,merrywivesofwindsor,1600 putter,2,merrywivesofwindsor,1600 Old,2,merrywivesofwindsor,1600 choose,2,merrywivesofwindsor,1600 wind,2,merrywivesofwindsor,1600 others,2,merrywivesofwindsor,1600 wink,2,merrywivesofwindsor,1600 prevent,2,merrywivesofwindsor,1600 ceremony,2,merrywivesofwindsor,1600 Latin,2,merrywivesofwindsor,1600 flesh,2,merrywivesofwindsor,1600 knights,2,merrywivesofwindsor,1600 horum,2,merrywivesofwindsor,1600 steal,2,merrywivesofwindsor,1600 Troth,2,merrywivesofwindsor,1600 esquire,2,merrywivesofwindsor,1600 turned,2,merrywivesofwindsor,1600 mead,2,merrywivesofwindsor,1600 ensconce,2,merrywivesofwindsor,1600 rest,2,merrywivesofwindsor,1600 voice,2,merrywivesofwindsor,1600 wash,2,merrywivesofwindsor,1600 steel,2,merrywivesofwindsor,1600 There's,2,merrywivesofwindsor,1600 wast,2,merrywivesofwindsor,1600 canary,2,merrywivesofwindsor,1600 party,2,merrywivesofwindsor,1600 discuss,2,merrywivesofwindsor,1600 each,2,merrywivesofwindsor,1600 senses,2,merrywivesofwindsor,1600 Faith,2,merrywivesofwindsor,1600 side,2,merrywivesofwindsor,1600 burning,2,merrywivesofwindsor,1600 Hold,2,merrywivesofwindsor,1600 backs,2,merrywivesofwindsor,1600 serving,2,merrywivesofwindsor,1600 measure,2,merrywivesofwindsor,1600 Gloucestershire,2,merrywivesofwindsor,1600 madrigals,2,merrywivesofwindsor,1600 altogether,2,merrywivesofwindsor,1600 pay,2,merrywivesofwindsor,1600 chaste,2,merrywivesofwindsor,1600 eternal,2,merrywivesofwindsor,1600 among,2,merrywivesofwindsor,1600 bag,2,merrywivesofwindsor,1600 scurvy,2,merrywivesofwindsor,1600 unless,2,merrywivesofwindsor,1600 kept,2,merrywivesofwindsor,1600 to't,2,merrywivesofwindsor,1600 bilbo,2,merrywivesofwindsor,1600 pawn,2,merrywivesofwindsor,1600 flowers,2,merrywivesofwindsor,1600 'lapis,2,merrywivesofwindsor,1600 blest,2,merrywivesofwindsor,1600 whole,2,merrywivesofwindsor,1600 owner,2,merrywivesofwindsor,1600 focative,2,merrywivesofwindsor,1600 denial,2,merrywivesofwindsor,1600 play,2,merrywivesofwindsor,1600 greasy,2,merrywivesofwindsor,1600 ears,2,merrywivesofwindsor,1600 pit,2,merrywivesofwindsor,1600 prove,2,merrywivesofwindsor,1600 sirs,2,merrywivesofwindsor,1600 Corporal,2,merrywivesofwindsor,1600 Thou'rt,2,merrywivesofwindsor,1600 gave,2,merrywivesofwindsor,1600 Sleeves,2,merrywivesofwindsor,1600 week,2,merrywivesofwindsor,1600 fields,2,merrywivesofwindsor,1600 bell,2,merrywivesofwindsor,1600 Prithee,2,merrywivesofwindsor,1600 struck,2,merrywivesofwindsor,1600 learned,2,merrywivesofwindsor,1600 wear,2,merrywivesofwindsor,1600 beyond,2,merrywivesofwindsor,1600 suddenly,2,merrywivesofwindsor,1600 jewel,2,merrywivesofwindsor,1600 just,2,merrywivesofwindsor,1600 silk,2,merrywivesofwindsor,1600 discretions,2,merrywivesofwindsor,1600 buy,2,merrywivesofwindsor,1600 About,2,merrywivesofwindsor,1600 Melodious,2,merrywivesofwindsor,1600 tongue,2,merrywivesofwindsor,1600 Whither,2,merrywivesofwindsor,1600 grandsire,2,merrywivesofwindsor,1600 Both,2,merrywivesofwindsor,1600 dogs,2,merrywivesofwindsor,1600 impatience,2,merrywivesofwindsor,1600 embraced,2,merrywivesofwindsor,1600 Mock,2,merrywivesofwindsor,1600 beam,2,merrywivesofwindsor,1600 tightly,2,merrywivesofwindsor,1600 postmaster's,2,merrywivesofwindsor,1600 dear,2,merrywivesofwindsor,1600 deal,2,merrywivesofwindsor,1600 gait,2,merrywivesofwindsor,1600 vouchsafe,2,merrywivesofwindsor,1600 holiday,2,merrywivesofwindsor,1600 Besides,2,merrywivesofwindsor,1600 continual,2,merrywivesofwindsor,1600 approach,2,merrywivesofwindsor,1600 forget,2,merrywivesofwindsor,1600 thyself,2,merrywivesofwindsor,1600 Cuckold,2,merrywivesofwindsor,1600 fixed,2,merrywivesofwindsor,1600 dried,2,merrywivesofwindsor,1600 favored,2,merrywivesofwindsor,1600 prosper,2,merrywivesofwindsor,1600 wonderful,2,merrywivesofwindsor,1600 committed,2,merrywivesofwindsor,1600 Yonder,2,merrywivesofwindsor,1600 bodies,2,merrywivesofwindsor,1600 region,2,merrywivesofwindsor,1600 Second,2,merrywivesofwindsor,1600 strain,2,merrywivesofwindsor,1600 necessity,2,merrywivesofwindsor,1600 aside,2,merrywivesofwindsor,1600 idle,2,merrywivesofwindsor,1600 scholar,2,merrywivesofwindsor,1600 pursues,2,merrywivesofwindsor,1600 pursued,2,merrywivesofwindsor,1600 lost,2,merrywivesofwindsor,1600 playing,2,merrywivesofwindsor,1600 semblance,2,merrywivesofwindsor,1600 those,2,merrywivesofwindsor,1600 apparel,2,merrywivesofwindsor,1600 forgot,2,merrywivesofwindsor,1600 withered,2,merrywivesofwindsor,1600 grace,2,merrywivesofwindsor,1600 hog,2,merrywivesofwindsor,1600 Blessing,2,merrywivesofwindsor,1600 thrice,2,merrywivesofwindsor,1600 Fery,2,merrywivesofwindsor,1600 easy,2,merrywivesofwindsor,1600 weapon,2,merrywivesofwindsor,1600 affects,2,merrywivesofwindsor,1600 messenger,2,merrywivesofwindsor,1600 froth,2,merrywivesofwindsor,1600 nearer,2,merrywivesofwindsor,1600 thrift,2,merrywivesofwindsor,1600 trade,2,merrywivesofwindsor,1600 draws,2,merrywivesofwindsor,1600 thinkest,2,merrywivesofwindsor,1600 qui,2,merrywivesofwindsor,1600 school,2,merrywivesofwindsor,1600 mighty,2,merrywivesofwindsor,1600 praise,2,merrywivesofwindsor,1600 excuse,2,merrywivesofwindsor,1600 cozenage,2,merrywivesofwindsor,1600 ape,2,merrywivesofwindsor,1600 devise,2,merrywivesofwindsor,1600 pack,2,merrywivesofwindsor,1600 food,2,merrywivesofwindsor,1600 lousy,2,merrywivesofwindsor,1600 Abraham,2,merrywivesofwindsor,1600 dishonest,2,merrywivesofwindsor,1600 girl,2,merrywivesofwindsor,1600 Genitive,2,merrywivesofwindsor,1600 Robin,2,merrywivesofwindsor,1600 Than,2,merrywivesofwindsor,1600 chance,2,merrywivesofwindsor,1600 finely,2,merrywivesofwindsor,1600 knock,2,merrywivesofwindsor,1600 prate,2,merrywivesofwindsor,1600 'you,2,merrywivesofwindsor,1600 behavior,2,merrywivesofwindsor,1600 fantasy,2,merrywivesofwindsor,1600 trial,2,merrywivesofwindsor,1600 enjoy,2,merrywivesofwindsor,1600 spoken,2,merrywivesofwindsor,1600 Lucifer,2,merrywivesofwindsor,1600 yesterday,2,merrywivesofwindsor,1600 occasion,2,merrywivesofwindsor,1600 nouns,2,merrywivesofwindsor,1600 castle,2,merrywivesofwindsor,1600 tarry,2,merrywivesofwindsor,1600 carried,2,merrywivesofwindsor,1600 Ten,2,merrywivesofwindsor,1600 rascals,2,merrywivesofwindsor,1600 prain,2,merrywivesofwindsor,1600 almost,2,merrywivesofwindsor,1600 action,2,merrywivesofwindsor,1600 posset,2,merrywivesofwindsor,1600 below,2,merrywivesofwindsor,1600 conveyed,2,merrywivesofwindsor,1600 Caius',2,merrywivesofwindsor,1600 tender,2,merrywivesofwindsor,1600 Christians,2,merrywivesofwindsor,1600 strike,2,merrywivesofwindsor,1600 From,2,merrywivesofwindsor,1600 learning,2,merrywivesofwindsor,1600 who's,2,merrywivesofwindsor,1600 evermore,2,merrywivesofwindsor,1600 Therefore,2,merrywivesofwindsor,1600 mouth,2,merrywivesofwindsor,1600 youth,2,merrywivesofwindsor,1600 vater,2,merrywivesofwindsor,1600 knighted,2,merrywivesofwindsor,1600 appointment,2,merrywivesofwindsor,1600 effect,2,merrywivesofwindsor,1600 kissed,2,merrywivesofwindsor,1600 varlet,2,merrywivesofwindsor,1600 start,2,merrywivesofwindsor,1600 tempest,2,merrywivesofwindsor,1600 rests,2,merrywivesofwindsor,1600 shuffle,2,merrywivesofwindsor,1600 accusative,2,merrywivesofwindsor,1600 procure,2,merrywivesofwindsor,1600 dream,2,merrywivesofwindsor,1600 coward,2,merrywivesofwindsor,1600 mark,2,merrywivesofwindsor,1600 devils,2,merrywivesofwindsor,1600 Then,2,merrywivesofwindsor,1600 let's,2,merrywivesofwindsor,1600 because,2,merrywivesofwindsor,1600 labour,2,merrywivesofwindsor,1600 eke,2,merrywivesofwindsor,1600 special,2,merrywivesofwindsor,1600 miss,2,merrywivesofwindsor,1600 'mum,2,merrywivesofwindsor,1600 fish,2,merrywivesofwindsor,1600 apart,2,merrywivesofwindsor,1600 wantonness,2,merrywivesofwindsor,1600 oil,2,merrywivesofwindsor,1600 sayest,2,merrywivesofwindsor,1600 unfolded,2,merrywivesofwindsor,1600 odd,2,merrywivesofwindsor,1600 flies,2,merrywivesofwindsor,1600 retire,2,merrywivesofwindsor,1600 style,2,merrywivesofwindsor,1600 sides,2,merrywivesofwindsor,1600 win,2,merrywivesofwindsor,1600 Galen,2,merrywivesofwindsor,1600 bread,2,merrywivesofwindsor,1600 knife,2,merrywivesofwindsor,1600 ring,2,merrywivesofwindsor,1600 frailty,2,merrywivesofwindsor,1600 Germans,2,merrywivesofwindsor,1600 clock,2,merrywivesofwindsor,1600 pauca,2,merrywivesofwindsor,1600 you're,2,merrywivesofwindsor,1600 save,2,merrywivesofwindsor,1600 called,2,merrywivesofwindsor,1600 Can,2,merrywivesofwindsor,1600 arms,2,merrywivesofwindsor,1600 swinged,2,merrywivesofwindsor,1600 intend,2,merrywivesofwindsor,1600 Hobgoblin,2,merrywivesofwindsor,1600 pence,2,merrywivesofwindsor,1600 hair,2,merrywivesofwindsor,1600 drowned,2,merrywivesofwindsor,1600 familiar,2,merrywivesofwindsor,1600 served,2,merrywivesofwindsor,1600 what's,2,merrywivesofwindsor,1600 coffer,2,merrywivesofwindsor,1600 clapper,2,merrywivesofwindsor,1600 compass,2,merrywivesofwindsor,1600 disposition,2,merrywivesofwindsor,1600 threatened,2,merrywivesofwindsor,1600 waste,2,merrywivesofwindsor,1600 beguiled,2,merrywivesofwindsor,1600 angry,2,merrywivesofwindsor,1600 cover,2,merrywivesofwindsor,1600 gifts,2,merrywivesofwindsor,1600 fain,2,merrywivesofwindsor,1600 table,2,merrywivesofwindsor,1600 evil,2,merrywivesofwindsor,1600 ork,2,merrywivesofwindsor,1600 ort,2,merrywivesofwindsor,1600 doublet,2,merrywivesofwindsor,1600 modesty,2,merrywivesofwindsor,1600 Till,2,merrywivesofwindsor,1600 speciously,2,merrywivesofwindsor,1600 please,2,merrywivesofwindsor,1600 tune,2,merrywivesofwindsor,1600 colours,2,merrywivesofwindsor,1600 threw,2,merrywivesofwindsor,1600 fly,2,merrywivesofwindsor,1600 'em,2,merrywivesofwindsor,1600 minute,2,merrywivesofwindsor,1600 fit,2,merrywivesofwindsor,1600 pleases,2,merrywivesofwindsor,1600 vlouting,2,merrywivesofwindsor,1600 hose,2,merrywivesofwindsor,1600 meddle,2,merrywivesofwindsor,1600 ta'en,2,merrywivesofwindsor,1600 queen,2,merrywivesofwindsor,1600 Castle,2,merrywivesofwindsor,1600 patient,2,merrywivesofwindsor,1600 Word,2,merrywivesofwindsor,1600 whither,2,merrywivesofwindsor,1600 meaning,2,merrywivesofwindsor,1600 base,2,merrywivesofwindsor,1600 aunt,2,merrywivesofwindsor,1600 ditch,2,merrywivesofwindsor,1600 fate,2,merrywivesofwindsor,1600 cock,2,merrywivesofwindsor,1600 Very,2,merrywivesofwindsor,1600 bill,2,merrywivesofwindsor,1600 gallant,2,merrywivesofwindsor,1600 man's,2,merrywivesofwindsor,1600 folks,2,merrywivesofwindsor,1600 cue,2,merrywivesofwindsor,1600 convey,2,merrywivesofwindsor,1600 jests,2,merrywivesofwindsor,1600 intolerable,2,merrywivesofwindsor,1600 Assist,2,merrywivesofwindsor,1600 wild,2,merrywivesofwindsor,1600 reproof,2,merrywivesofwindsor,1600 fidelicet,2,merrywivesofwindsor,1600 wilt,2,merrywivesofwindsor,1600 hole,2,merrywivesofwindsor,1600 dozen,2,merrywivesofwindsor,1600 unto,2,merrywivesofwindsor,1600 request,2,merrywivesofwindsor,1600 strong,2,merrywivesofwindsor,1600 quean,2,merrywivesofwindsor,1600 convenient,2,merrywivesofwindsor,1600 prayers,2,merrywivesofwindsor,1600 hung,2,merrywivesofwindsor,1600 alone,2,merrywivesofwindsor,1600 adieu,2,merrywivesofwindsor,1600 low,2,merrywivesofwindsor,1600 converse,2,merrywivesofwindsor,1600 cony,2,merrywivesofwindsor,1600 back,2,merrywivesofwindsor,1600 seen,2,merrywivesofwindsor,1600 troth,2,merrywivesofwindsor,1600 cog,2,merrywivesofwindsor,1600 defend,2,merrywivesofwindsor,1600 discretion,2,merrywivesofwindsor,1600 avised,2,merrywivesofwindsor,1600 period,2,merrywivesofwindsor,1600 fellows,2,merrywivesofwindsor,1600 whom,2,merrywivesofwindsor,1600 crest,2,merrywivesofwindsor,1600 troop,2,merrywivesofwindsor,1600 sacred,2,merrywivesofwindsor,1600 Od's,2,merrywivesofwindsor,1600 modest,2,merrywivesofwindsor,1600 avoid,2,merrywivesofwindsor,1600 suffice,2,merrywivesofwindsor,1600 Send,2,merrywivesofwindsor,1600 prayer,2,merrywivesofwindsor,1600 excellency,2,merrywivesofwindsor,1600 gods,2,merrywivesofwindsor,1600 ouphes,2,merrywivesofwindsor,1600 blank,2,merrywivesofwindsor,1600 nurse,2,merrywivesofwindsor,1600 deceive,2,merrywivesofwindsor,1600 kerchief,2,merrywivesofwindsor,1600 hiding,2,merrywivesofwindsor,1600 Riddles,2,merrywivesofwindsor,1600 trow,2,merrywivesofwindsor,1600 borrowed,2,merrywivesofwindsor,1600 persuade,2,merrywivesofwindsor,1600 stewed,2,merrywivesofwindsor,1600 turtles,2,merrywivesofwindsor,1600 vicar,2,merrywivesofwindsor,1600 guts,2,merrywivesofwindsor,1600 least,2,merrywivesofwindsor,1600 doing,2,merrywivesofwindsor,1600 Another,2,merrywivesofwindsor,1600 Cavaleiro,2,merrywivesofwindsor,1600 sadness,2,merrywivesofwindsor,1600 Does,2,merrywivesofwindsor,1600 Before,2,merrywivesofwindsor,1600 Since,2,merrywivesofwindsor,1600 abuse,2,merrywivesofwindsor,1600 grievously,2,merrywivesofwindsor,1600 burnt,2,merrywivesofwindsor,1600 thoughts,2,merrywivesofwindsor,1600 lips,2,merrywivesofwindsor,1600 diable,2,merrywivesofwindsor,1600 fashion,2,merrywivesofwindsor,1600 on't,2,merrywivesofwindsor,1600 live,2,merrywivesofwindsor,1600 gravity,2,merrywivesofwindsor,1600 beauty,2,merrywivesofwindsor,1600 Reason,2,merrywivesofwindsor,1600 knave's,2,merrywivesofwindsor,1600 Lent,2,merrywivesofwindsor,1600 strange,2,merrywivesofwindsor,1600 dwells,2,merrywivesofwindsor,1600 try,2,merrywivesofwindsor,1600 witness,2,merrywivesofwindsor,1600 rises,2,merrywivesofwindsor,1600 expense,2,merrywivesofwindsor,1600 laid,2,merrywivesofwindsor,1600 doe,2,merrywivesofwindsor,1600 respect,2,merrywivesofwindsor,1600 Alice,2,merrywivesofwindsor,1600 posies,2,merrywivesofwindsor,1600 sudden,2,merrywivesofwindsor,1600 fifteen,2,merrywivesofwindsor,1600 dispatch,2,merrywivesofwindsor,1600 liest,2,merrywivesofwindsor,1600 PAGE'S,2,merrywivesofwindsor,1600 fence,2,merrywivesofwindsor,1600 dwelling,2,merrywivesofwindsor,1600 command,2,merrywivesofwindsor,1600 slip,2,merrywivesofwindsor,1600 awake,2,merrywivesofwindsor,1600 amaze,2,merrywivesofwindsor,1600 Hector,2,merrywivesofwindsor,1600 kiln,2,merrywivesofwindsor,1600 share,2,merrywivesofwindsor,1600 wouldst,2,merrywivesofwindsor,1600 order,2,merrywivesofwindsor,1600 Tut,2,merrywivesofwindsor,1600 JOHN,2,merrywivesofwindsor,1600 c,3,merrywivesofwindsor,1600 took,3,merrywivesofwindsor,1600 marrying,3,merrywivesofwindsor,1600 motion,3,merrywivesofwindsor,1600 country,3,merrywivesofwindsor,1600 wicked,3,merrywivesofwindsor,1600 haste,3,merrywivesofwindsor,1600 Jarteer,3,merrywivesofwindsor,1600 Never,3,merrywivesofwindsor,1600 cuckoldly,3,merrywivesofwindsor,1600 truly,3,merrywivesofwindsor,1600 while,3,merrywivesofwindsor,1600 Help,3,merrywivesofwindsor,1600 'Pless,3,merrywivesofwindsor,1600 looked,3,merrywivesofwindsor,1600 shelter,3,merrywivesofwindsor,1600 withal,3,merrywivesofwindsor,1600 admirable,3,merrywivesofwindsor,1600 calls,3,merrywivesofwindsor,1600 yonder,3,merrywivesofwindsor,1600 press,3,merrywivesofwindsor,1600 damned,3,merrywivesofwindsor,1600 contrary,3,merrywivesofwindsor,1600 FORD'S,3,merrywivesofwindsor,1600 conscience,3,merrywivesofwindsor,1600 charms,3,merrywivesofwindsor,1600 carry't,3,merrywivesofwindsor,1600 years,3,merrywivesofwindsor,1600 Keep,3,merrywivesofwindsor,1600 Remember,3,merrywivesofwindsor,1600 gross,3,merrywivesofwindsor,1600 searched,3,merrywivesofwindsor,1600 wait,3,merrywivesofwindsor,1600 deserve,3,merrywivesofwindsor,1600 impossible,3,merrywivesofwindsor,1600 light,3,merrywivesofwindsor,1600 birds,3,merrywivesofwindsor,1600 deliver,3,merrywivesofwindsor,1600 church,3,merrywivesofwindsor,1600 prabbles,3,merrywivesofwindsor,1600 doubt,3,merrywivesofwindsor,1600 pieces,3,merrywivesofwindsor,1600 Got's,3,merrywivesofwindsor,1600 coach,3,merrywivesofwindsor,1600 passed,3,merrywivesofwindsor,1600 passes,3,merrywivesofwindsor,1600 France,3,merrywivesofwindsor,1600 afraid,3,merrywivesofwindsor,1600 courtier,3,merrywivesofwindsor,1600 born,3,merrywivesofwindsor,1600 terms,3,merrywivesofwindsor,1600 Pardon,3,merrywivesofwindsor,1600 sun,3,merrywivesofwindsor,1600 descend,3,merrywivesofwindsor,1600 false,3,merrywivesofwindsor,1600 soldier,3,merrywivesofwindsor,1600 ward,3,merrywivesofwindsor,1600 mirth,3,merrywivesofwindsor,1600 wish,3,merrywivesofwindsor,1600 wart,3,merrywivesofwindsor,1600 mean,3,merrywivesofwindsor,1600 wits,3,merrywivesofwindsor,1600 praised,3,merrywivesofwindsor,1600 parts,3,merrywivesofwindsor,1600 sympathy,3,merrywivesofwindsor,1600 intelligence,3,merrywivesofwindsor,1600 big,3,merrywivesofwindsor,1600 ha',3,merrywivesofwindsor,1600 hat,3,merrywivesofwindsor,1600 While,3,merrywivesofwindsor,1600 hag,3,merrywivesofwindsor,1600 rivers,3,merrywivesofwindsor,1600 Ah,3,merrywivesofwindsor,1600 Am,3,merrywivesofwindsor,1600 An,3,merrywivesofwindsor,1600 itself,3,merrywivesofwindsor,1600 creature,3,merrywivesofwindsor,1600 Oh,3,merrywivesofwindsor,1600 since,3,merrywivesofwindsor,1600 motions,3,merrywivesofwindsor,1600 appoint,3,merrywivesofwindsor,1600 grease,3,merrywivesofwindsor,1600 past,3,merrywivesofwindsor,1600 obey,3,merrywivesofwindsor,1600 whose,3,merrywivesofwindsor,1600 behind,3,merrywivesofwindsor,1600 bestowed,3,merrywivesofwindsor,1600 children,3,merrywivesofwindsor,1600 couch,3,merrywivesofwindsor,1600 people,3,merrywivesofwindsor,1600 Book,3,merrywivesofwindsor,1600 despise,3,merrywivesofwindsor,1600 disguise,3,merrywivesofwindsor,1600 sins,3,merrywivesofwindsor,1600 ashamed,3,merrywivesofwindsor,1600 jealousies,3,merrywivesofwindsor,1600 deep,3,merrywivesofwindsor,1600 instant,3,merrywivesofwindsor,1600 affection,3,merrywivesofwindsor,1600 promised,3,merrywivesofwindsor,1600 aim,3,merrywivesofwindsor,1600 butter,3,merrywivesofwindsor,1600 yea,3,merrywivesofwindsor,1600 gift,3,merrywivesofwindsor,1600 needs,3,merrywivesofwindsor,1600 Bless,3,merrywivesofwindsor,1600 fe,3,merrywivesofwindsor,1600 stone,3,merrywivesofwindsor,1600 thrive,3,merrywivesofwindsor,1600 lend,3,merrywivesofwindsor,1600 speed,3,merrywivesofwindsor,1600 manner,3,merrywivesofwindsor,1600 knog,3,merrywivesofwindsor,1600 abide,3,merrywivesofwindsor,1600 earth,3,merrywivesofwindsor,1600 age,3,merrywivesofwindsor,1600 hadst,3,merrywivesofwindsor,1600 knot,3,merrywivesofwindsor,1600 act,3,merrywivesofwindsor,1600 men's,3,merrywivesofwindsor,1600 killed,3,merrywivesofwindsor,1600 hard,3,merrywivesofwindsor,1600 park,3,merrywivesofwindsor,1600 un,3,merrywivesofwindsor,1600 field,3,merrywivesofwindsor,1600 part,3,merrywivesofwindsor,1600 Call,3,merrywivesofwindsor,1600 see't,3,merrywivesofwindsor,1600 First,3,merrywivesofwindsor,1600 midnight,3,merrywivesofwindsor,1600 paid,3,merrywivesofwindsor,1600 ford,3,merrywivesofwindsor,1600 mock,3,merrywivesofwindsor,1600 hast,3,merrywivesofwindsor,1600 trick,3,merrywivesofwindsor,1600 right,3,merrywivesofwindsor,1600 wooing,3,merrywivesofwindsor,1600 broke,3,merrywivesofwindsor,1600 George,3,merrywivesofwindsor,1600 watch,3,merrywivesofwindsor,1600 far,3,merrywivesofwindsor,1600 deanery,3,merrywivesofwindsor,1600 Your,3,merrywivesofwindsor,1600 nay,3,merrywivesofwindsor,1600 lords,3,merrywivesofwindsor,1600 distance,3,merrywivesofwindsor,1600 note,3,merrywivesofwindsor,1600 venison,3,merrywivesofwindsor,1600 gentle,3,merrywivesofwindsor,1600 penny,3,merrywivesofwindsor,1600 bears,3,merrywivesofwindsor,1600 beard,3,merrywivesofwindsor,1600 hide,3,merrywivesofwindsor,1600 Love,3,merrywivesofwindsor,1600 substance,3,merrywivesofwindsor,1600 dares,3,merrywivesofwindsor,1600 forest,3,merrywivesofwindsor,1600 several,3,merrywivesofwindsor,1600 See,3,merrywivesofwindsor,1600 device,3,merrywivesofwindsor,1600 high,3,merrywivesofwindsor,1600 likewise,3,merrywivesofwindsor,1600 towards,3,merrywivesofwindsor,1600 foolish,3,merrywivesofwindsor,1600 already,3,merrywivesofwindsor,1600 villanous,3,merrywivesofwindsor,1600 presently,3,merrywivesofwindsor,1600 woo,3,merrywivesofwindsor,1600 brains,3,merrywivesofwindsor,1600 mountain,3,merrywivesofwindsor,1600 higher,3,merrywivesofwindsor,1600 Slender's,3,merrywivesofwindsor,1600 rogues,3,merrywivesofwindsor,1600 pound,3,merrywivesofwindsor,1600 salt,3,merrywivesofwindsor,1600 sake,3,merrywivesofwindsor,1600 throw,3,merrywivesofwindsor,1600 Run,3,merrywivesofwindsor,1600 break,3,merrywivesofwindsor,1600 hears,3,merrywivesofwindsor,1600 fetch,3,merrywivesofwindsor,1600 Sure,3,merrywivesofwindsor,1600 maid's,3,merrywivesofwindsor,1600 themselves,3,merrywivesofwindsor,1600 found,3,merrywivesofwindsor,1600 forward,3,merrywivesofwindsor,1600 next,3,merrywivesofwindsor,1600 news,3,merrywivesofwindsor,1600 takes,3,merrywivesofwindsor,1600 hack,3,merrywivesofwindsor,1600 lust,3,merrywivesofwindsor,1600 cried,3,merrywivesofwindsor,1600 That's,3,merrywivesofwindsor,1600 methinks,3,merrywivesofwindsor,1600 rich,3,merrywivesofwindsor,1600 claw,3,merrywivesofwindsor,1600 folly,3,merrywivesofwindsor,1600 distemper,3,merrywivesofwindsor,1600 Fare,3,merrywivesofwindsor,1600 herself,3,merrywivesofwindsor,1600 perceive,3,merrywivesofwindsor,1600 comfort,3,merrywivesofwindsor,1600 Vere,3,merrywivesofwindsor,1600 tall,3,merrywivesofwindsor,1600 'budget,3,merrywivesofwindsor,1600 otherwise,3,merrywivesofwindsor,1600 swears,3,merrywivesofwindsor,1600 petter,3,merrywivesofwindsor,1600 Vat,3,merrywivesofwindsor,1600 Who's,3,merrywivesofwindsor,1600 tire,3,merrywivesofwindsor,1600 Where's,3,merrywivesofwindsor,1600 along,3,merrywivesofwindsor,1600 always,3,merrywivesofwindsor,1600 'twixt,3,merrywivesofwindsor,1600 tells,3,merrywivesofwindsor,1600 sound,3,merrywivesofwindsor,1600 Believe,3,merrywivesofwindsor,1600 person,3,merrywivesofwindsor,1600 hours,3,merrywivesofwindsor,1600 secure,3,merrywivesofwindsor,1600 protest,3,merrywivesofwindsor,1600 master's,3,merrywivesofwindsor,1600 Two,3,merrywivesofwindsor,1600 trib,3,merrywivesofwindsor,1600 nobody,3,merrywivesofwindsor,1600 mocked,3,merrywivesofwindsor,1600 heartily,3,merrywivesofwindsor,1600 phrase,3,merrywivesofwindsor,1600 thither,3,merrywivesofwindsor,1600 Sings,3,merrywivesofwindsor,1600 muffler,3,merrywivesofwindsor,1600 throwing,3,merrywivesofwindsor,1600 besides,3,merrywivesofwindsor,1600 list,3,merrywivesofwindsor,1600 leads,3,merrywivesofwindsor,1600 You'll,3,merrywivesofwindsor,1600 liquor,3,merrywivesofwindsor,1600 He's,3,merrywivesofwindsor,1600 brew,3,merrywivesofwindsor,1600 gloves,3,merrywivesofwindsor,1600 remembrance,3,merrywivesofwindsor,1600 lack,3,merrywivesofwindsor,1600 chambers,3,merrywivesofwindsor,1600 lads,3,merrywivesofwindsor,1600 Page's,4,merrywivesofwindsor,1600 times,4,merrywivesofwindsor,1600 reputation,4,merrywivesofwindsor,1600 Frogmore,4,merrywivesofwindsor,1600 Herne's,4,merrywivesofwindsor,1600 villain,4,merrywivesofwindsor,1600 eight,4,merrywivesofwindsor,1600 finger,4,merrywivesofwindsor,1600 angels,4,merrywivesofwindsor,1600 Would,4,merrywivesofwindsor,1600 charge,4,merrywivesofwindsor,1600 seven,4,merrywivesofwindsor,1600 amazed,4,merrywivesofwindsor,1600 saw,4,merrywivesofwindsor,1600 Jove,4,merrywivesofwindsor,1600 full,4,merrywivesofwindsor,1600 teach,4,merrywivesofwindsor,1600 Anne's,4,merrywivesofwindsor,1600 Who,4,merrywivesofwindsor,1600 black,4,merrywivesofwindsor,1600 death,4,merrywivesofwindsor,1600 fery,4,merrywivesofwindsor,1600 body,4,merrywivesofwindsor,1600 deceived,4,merrywivesofwindsor,1600 nine,4,merrywivesofwindsor,1600 council,4,merrywivesofwindsor,1600 counsel,4,merrywivesofwindsor,1600 guide,4,merrywivesofwindsor,1600 twelve,4,merrywivesofwindsor,1600 brief,4,merrywivesofwindsor,1600 want,4,merrywivesofwindsor,1600 Though,4,merrywivesofwindsor,1600 anon,4,merrywivesofwindsor,1600 stocks,4,merrywivesofwindsor,1600 meat,4,merrywivesofwindsor,1600 office,4,merrywivesofwindsor,1600 book,4,merrywivesofwindsor,1600 tapers,4,merrywivesofwindsor,1600 melancholy,4,merrywivesofwindsor,1600 What's,4,merrywivesofwindsor,1600 wronged,4,merrywivesofwindsor,1600 neither,4,merrywivesofwindsor,1600 Bardolph,4,merrywivesofwindsor,1600 patience,4,merrywivesofwindsor,1600 box,4,merrywivesofwindsor,1600 Ha,4,merrywivesofwindsor,1600 husbands,4,merrywivesofwindsor,1600 quick,4,merrywivesofwindsor,1600 farewell,4,merrywivesofwindsor,1600 gown,4,merrywivesofwindsor,1600 Like,4,merrywivesofwindsor,1600 Pinch,4,merrywivesofwindsor,1600 God,4,merrywivesofwindsor,1600 entertain,4,merrywivesofwindsor,1600 forgive,4,merrywivesofwindsor,1600 confess,4,merrywivesofwindsor,1600 betray,4,merrywivesofwindsor,1600 excellent,4,merrywivesofwindsor,1600 Here's,4,merrywivesofwindsor,1600 beat,4,merrywivesofwindsor,1600 hands,4,merrywivesofwindsor,1600 gentlewoman,4,merrywivesofwindsor,1600 curer,4,merrywivesofwindsor,1600 commend,4,merrywivesofwindsor,1600 lest,4,merrywivesofwindsor,1600 spend,4,merrywivesofwindsor,1600 lose,4,merrywivesofwindsor,1600 blue,4,merrywivesofwindsor,1600 ready,4,merrywivesofwindsor,1600 plot,4,merrywivesofwindsor,1600 reasonable,4,merrywivesofwindsor,1600 half,4,merrywivesofwindsor,1600 round,4,merrywivesofwindsor,1600 dere,4,merrywivesofwindsor,1600 hang,4,merrywivesofwindsor,1600 four,4,merrywivesofwindsor,1600 acquaintance,4,merrywivesofwindsor,1600 Eton,4,merrywivesofwindsor,1600 present,4,merrywivesofwindsor,1600 point,4,merrywivesofwindsor,1600 foot,4,merrywivesofwindsor,1600 fool,4,merrywivesofwindsor,1600 revenge,4,merrywivesofwindsor,1600 ass,4,merrywivesofwindsor,1600 fresh,4,merrywivesofwindsor,1600 Hark,4,merrywivesofwindsor,1600 new,4,merrywivesofwindsor,1600 guest,4,merrywivesofwindsor,1600 having,4,merrywivesofwindsor,1600 lead,4,merrywivesofwindsor,1600 rook,4,merrywivesofwindsor,1600 dress,4,merrywivesofwindsor,1600 remedy,4,merrywivesofwindsor,1600 Lord,4,merrywivesofwindsor,1600 quarter,4,merrywivesofwindsor,1600 question,4,merrywivesofwindsor,1600 All,4,merrywivesofwindsor,1600 knows,4,merrywivesofwindsor,1600 Datchet,4,merrywivesofwindsor,1600 issue,4,merrywivesofwindsor,1600 state,4,merrywivesofwindsor,1600 need,4,merrywivesofwindsor,1600 father's,4,merrywivesofwindsor,1600 firm,4,merrywivesofwindsor,1600 o'clock,4,merrywivesofwindsor,1600 wit,4,merrywivesofwindsor,1600 five,4,merrywivesofwindsor,1600 We'll,4,merrywivesofwindsor,1600 beseech,4,merrywivesofwindsor,1600 riot,4,merrywivesofwindsor,1600 able,4,merrywivesofwindsor,1600 wag,4,merrywivesofwindsor,1600 they'll,4,merrywivesofwindsor,1600 serve,4,merrywivesofwindsor,1600 belly,4,merrywivesofwindsor,1600 weapons,4,merrywivesofwindsor,1600 amends,4,merrywivesofwindsor,1600 fine,4,merrywivesofwindsor,1600 horn,4,merrywivesofwindsor,1600 wealth,4,merrywivesofwindsor,1600 uncle,4,merrywivesofwindsor,1600 lived,4,merrywivesofwindsor,1600 names,4,merrywivesofwindsor,1600 Trust,4,merrywivesofwindsor,1600 creep,4,merrywivesofwindsor,1600 short,4,merrywivesofwindsor,1600 cut,4,merrywivesofwindsor,1600 notwithstanding,4,merrywivesofwindsor,1600 eyes,4,merrywivesofwindsor,1600 cool,4,merrywivesofwindsor,1600 either,4,merrywivesofwindsor,1600 tree,4,merrywivesofwindsor,1600 alas,4,merrywivesofwindsor,1600 cold,4,merrywivesofwindsor,1600 match,4,merrywivesofwindsor,1600 trot,4,merrywivesofwindsor,1600 sleep,4,merrywivesofwindsor,1600 eat,4,merrywivesofwindsor,1600 straight,4,merrywivesofwindsor,1600 meeting,4,merrywivesofwindsor,1600 street,4,merrywivesofwindsor,1600 Parson,4,merrywivesofwindsor,1600 eleven,4,merrywivesofwindsor,1600 Indeed,4,merrywivesofwindsor,1600 last,4,merrywivesofwindsor,1600 sometimes,4,merrywivesofwindsor,1600 late,4,merrywivesofwindsor,1600 jack,4,merrywivesofwindsor,1600 May,4,merrywivesofwindsor,1600 suspect,4,merrywivesofwindsor,1600 going,4,merrywivesofwindsor,1600 When,4,merrywivesofwindsor,1600 content,4,merrywivesofwindsor,1600 numbers,4,merrywivesofwindsor,1600 Did,4,merrywivesofwindsor,1600 Take,4,merrywivesofwindsor,1600 smell,4,merrywivesofwindsor,1600 shame,4,merrywivesofwindsor,1600 women,4,merrywivesofwindsor,1600 lady,4,merrywivesofwindsor,1600 answer,5,merrywivesofwindsor,1600 o'er,5,merrywivesofwindsor,1600 mistress,5,merrywivesofwindsor,1600 Fie,5,merrywivesofwindsor,1600 laugh,5,merrywivesofwindsor,1600 world,5,merrywivesofwindsor,1600 become,5,merrywivesofwindsor,1600 friends,5,merrywivesofwindsor,1600 words,5,merrywivesofwindsor,1600 birding,5,merrywivesofwindsor,1600 something,5,merrywivesofwindsor,1600 further,5,merrywivesofwindsor,1600 shamed,5,merrywivesofwindsor,1600 merry,5,merrywivesofwindsor,1600 suit,5,merrywivesofwindsor,1600 sworn,5,merrywivesofwindsor,1600 Farewell,5,merrywivesofwindsor,1600 hunter,5,merrywivesofwindsor,1600 suffered,5,merrywivesofwindsor,1600 fight,5,merrywivesofwindsor,1600 Out,5,merrywivesofwindsor,1600 loose,5,merrywivesofwindsor,1600 above,5,merrywivesofwindsor,1600 promise,5,merrywivesofwindsor,1600 beaten,5,merrywivesofwindsor,1600 wine,5,merrywivesofwindsor,1600 thrown,5,merrywivesofwindsor,1600 Simple,5,merrywivesofwindsor,1600 pretty,5,merrywivesofwindsor,1600 spoke,5,merrywivesofwindsor,1600 cudgel,5,merrywivesofwindsor,1600 morning,5,merrywivesofwindsor,1600 Within,5,merrywivesofwindsor,1600 bed,5,merrywivesofwindsor,1600 bid,5,merrywivesofwindsor,1600 Let's,5,merrywivesofwindsor,1600 Which,5,merrywivesofwindsor,1600 burn,5,merrywivesofwindsor,1600 goot,5,merrywivesofwindsor,1600 Speak,5,merrywivesofwindsor,1600 deer,5,merrywivesofwindsor,1600 servant,5,merrywivesofwindsor,1600 that's,5,merrywivesofwindsor,1600 o',5,merrywivesofwindsor,1600 Fairies,5,merrywivesofwindsor,1600 knew,5,merrywivesofwindsor,1600 brought,5,merrywivesofwindsor,1600 speaks,5,merrywivesofwindsor,1600 welcome,5,merrywivesofwindsor,1600 shallow,5,merrywivesofwindsor,1600 page,5,merrywivesofwindsor,1600 ask,5,merrywivesofwindsor,1600 rogue,5,merrywivesofwindsor,1600 undone,5,merrywivesofwindsor,1600 here's,5,merrywivesofwindsor,1600 luck,5,merrywivesofwindsor,1600 faith,5,merrywivesofwindsor,1600 beast,5,merrywivesofwindsor,1600 sirrah,5,merrywivesofwindsor,1600 fairy,5,merrywivesofwindsor,1600 Thou,5,merrywivesofwindsor,1600 places,5,merrywivesofwindsor,1600 Look,5,merrywivesofwindsor,1600 known,5,merrywivesofwindsor,1600 letters,5,merrywivesofwindsor,1600 disguised,5,merrywivesofwindsor,1600 suspicion,5,merrywivesofwindsor,1600 get,5,merrywivesofwindsor,1600 thine,5,merrywivesofwindsor,1600 Pistol,5,merrywivesofwindsor,1600 believe,5,merrywivesofwindsor,1600 face,5,merrywivesofwindsor,1600 duke,5,merrywivesofwindsor,1600 Robert,5,merrywivesofwindsor,1600 even,5,merrywivesofwindsor,1600 ne'er,5,merrywivesofwindsor,1600 wives,5,merrywivesofwindsor,1600 talk,5,merrywivesofwindsor,1600 rapier,5,merrywivesofwindsor,1600 pardon,5,merrywivesofwindsor,1600 also,5,merrywivesofwindsor,1600 drunk,5,merrywivesofwindsor,1600 Thames,5,merrywivesofwindsor,1600 hither,5,merrywivesofwindsor,1600 sent,5,merrywivesofwindsor,1600 goes,5,merrywivesofwindsor,1600 ear,5,merrywivesofwindsor,1600 honesty,5,merrywivesofwindsor,1600 remember,5,merrywivesofwindsor,1600 met,5,merrywivesofwindsor,1600 marriage,5,merrywivesofwindsor,1600 being,5,merrywivesofwindsor,1600 physician,5,merrywivesofwindsor,1600 without,5,merrywivesofwindsor,1600 spirit,5,merrywivesofwindsor,1600 ten,5,merrywivesofwindsor,1600 die,5,merrywivesofwindsor,1600 PAGE,261,merrywivesofwindsor,1600 woman's,6,merrywivesofwindsor,1600 shoulders,6,merrywivesofwindsor,1600 thought,6,merrywivesofwindsor,1600 pinch,6,merrywivesofwindsor,1600 trust,6,merrywivesofwindsor,1600 Nym,6,merrywivesofwindsor,1600 case,6,merrywivesofwindsor,1600 Not,6,merrywivesofwindsor,1600 acquainted,6,merrywivesofwindsor,1600 cheese,6,merrywivesofwindsor,1600 received,6,merrywivesofwindsor,1600 fellow,6,merrywivesofwindsor,1600 ways,6,merrywivesofwindsor,1600 bold,6,merrywivesofwindsor,1600 French,6,merrywivesofwindsor,1600 Of,6,merrywivesofwindsor,1600 Her,6,merrywivesofwindsor,1600 means,6,merrywivesofwindsor,1600 Falstaff's,6,merrywivesofwindsor,1600 pass,6,merrywivesofwindsor,1600 Adieu,6,merrywivesofwindsor,1600 gold,6,merrywivesofwindsor,1600 doth,6,merrywivesofwindsor,1600 sing,6,merrywivesofwindsor,1600 Got,6,merrywivesofwindsor,1600 humours,6,merrywivesofwindsor,1600 Yes,6,merrywivesofwindsor,1600 ho,6,merrywivesofwindsor,1600 Servants,6,merrywivesofwindsor,1600 place,6,merrywivesofwindsor,1600 Are,6,merrywivesofwindsor,1600 through,6,merrywivesofwindsor,1600 ere,6,merrywivesofwindsor,1600 child,6,merrywivesofwindsor,1600 chain,6,merrywivesofwindsor,1600 over,6,merrywivesofwindsor,1600 near,6,merrywivesofwindsor,1600 still,6,merrywivesofwindsor,1600 only,6,merrywivesofwindsor,1600 pounds,6,merrywivesofwindsor,1600 Herne,6,merrywivesofwindsor,1600 wife's,6,merrywivesofwindsor,1600 fortune,6,merrywivesofwindsor,1600 linen,6,merrywivesofwindsor,1600 vat,6,merrywivesofwindsor,1600 tale,6,merrywivesofwindsor,1600 reason,6,merrywivesofwindsor,1600 horses,6,merrywivesofwindsor,1600 Truly,6,merrywivesofwindsor,1600 Quickly,6,merrywivesofwindsor,1600 makes,6,merrywivesofwindsor,1600 Brentford,6,merrywivesofwindsor,1600 revenged,6,merrywivesofwindsor,1600 simple,6,merrywivesofwindsor,1600 he'll,6,merrywivesofwindsor,1600 kill,6,merrywivesofwindsor,1600 shape,6,merrywivesofwindsor,1600 hell,7,merrywivesofwindsor,1600 every,7,merrywivesofwindsor,1600 understand,7,merrywivesofwindsor,1600 drink,7,merrywivesofwindsor,1600 soul,7,merrywivesofwindsor,1600 run,7,merrywivesofwindsor,1600 parson,7,merrywivesofwindsor,1600 soon,7,merrywivesofwindsor,1600 purse,7,merrywivesofwindsor,1600 came,7,merrywivesofwindsor,1600 walk,7,merrywivesofwindsor,1600 son,7,merrywivesofwindsor,1600 within,7,merrywivesofwindsor,1600 cause,7,merrywivesofwindsor,1600 Servant,7,merrywivesofwindsor,1600 mother,7,merrywivesofwindsor,1600 cuckold,7,merrywivesofwindsor,1600 wise,7,merrywivesofwindsor,1600 For,7,merrywivesofwindsor,1600 Follow,7,merrywivesofwindsor,1600 Do,7,merrywivesofwindsor,1600 he's,7,merrywivesofwindsor,1600 dinner,7,merrywivesofwindsor,1600 Welsh,7,merrywivesofwindsor,1600 Park,7,merrywivesofwindsor,1600 Yet,7,merrywivesofwindsor,1600 hot,7,merrywivesofwindsor,1600 husband's,7,merrywivesofwindsor,1600 foul,7,merrywivesofwindsor,1600 open,7,merrywivesofwindsor,1600 justice,7,merrywivesofwindsor,1600 Hang,7,merrywivesofwindsor,1600 you'll,7,merrywivesofwindsor,1600 end,7,merrywivesofwindsor,1600 same,7,merrywivesofwindsor,1600 thing,7,merrywivesofwindsor,1600 off,7,merrywivesofwindsor,1600 closet,7,merrywivesofwindsor,1600 consent,7,merrywivesofwindsor,1600 went,7,merrywivesofwindsor,1600 coat,7,merrywivesofwindsor,1600 lay,7,merrywivesofwindsor,1600 gives,7,merrywivesofwindsor,1600 cry,7,merrywivesofwindsor,1600 heels,7,merrywivesofwindsor,1600 purpose,7,merrywivesofwindsor,1600 horns,8,merrywivesofwindsor,1600 V,8,merrywivesofwindsor,1600 under,8,merrywivesofwindsor,1600 town,8,merrywivesofwindsor,1600 she's,8,merrywivesofwindsor,1600 enough,8,merrywivesofwindsor,1600 set,8,merrywivesofwindsor,1600 sword,8,merrywivesofwindsor,1600 chamber,8,merrywivesofwindsor,1600 Be,8,merrywivesofwindsor,1600 II,8,merrywivesofwindsor,1600 jealous,8,merrywivesofwindsor,1600 put,8,merrywivesofwindsor,1600 Inn,8,merrywivesofwindsor,1600 la,8,merrywivesofwindsor,1600 forth,8,merrywivesofwindsor,1600 water,8,merrywivesofwindsor,1600 Peace,8,merrywivesofwindsor,1600 things,8,merrywivesofwindsor,1600 quickly,8,merrywivesofwindsor,1600 once,8,merrywivesofwindsor,1600 who,8,merrywivesofwindsor,1600 morrow,8,merrywivesofwindsor,1600 coming,8,merrywivesofwindsor,1600 Heaven,8,merrywivesofwindsor,1600 hundred,8,merrywivesofwindsor,1600 married,8,merrywivesofwindsor,1600 appointed,8,merrywivesofwindsor,1600 given,8,merrywivesofwindsor,1600 carry,8,merrywivesofwindsor,1600 English,8,merrywivesofwindsor,1600 Away,8,merrywivesofwindsor,1600 Where,8,merrywivesofwindsor,1600 cozened,8,merrywivesofwindsor,1600 shalt,8,merrywivesofwindsor,1600 kind,8,merrywivesofwindsor,1600 Alas,9,merrywivesofwindsor,1600 peace,9,merrywivesofwindsor,1600 'oman,9,merrywivesofwindsor,1600 clothes,9,merrywivesofwindsor,1600 life,9,merrywivesofwindsor,1600 jest,9,merrywivesofwindsor,1600 fear,9,merrywivesofwindsor,1600 after,9,merrywivesofwindsor,1600 honour,9,merrywivesofwindsor,1600 bring,9,merrywivesofwindsor,1600 else,9,merrywivesofwindsor,1600 As,9,merrywivesofwindsor,1600 best,9,merrywivesofwindsor,1600 said,9,merrywivesofwindsor,1600 ha,9,merrywivesofwindsor,1600 sack,9,merrywivesofwindsor,1600 most,9,merrywivesofwindsor,1600 cousin,9,merrywivesofwindsor,1600 loves,9,merrywivesofwindsor,1600 twenty,9,merrywivesofwindsor,1600 witch,9,merrywivesofwindsor,1600 eye,9,merrywivesofwindsor,1600 She,9,merrywivesofwindsor,1600 nor,9,merrywivesofwindsor,1600 oak,9,merrywivesofwindsor,1600 fie,9,merrywivesofwindsor,1600 hearts,9,merrywivesofwindsor,1600 coz,9,merrywivesofwindsor,1600 thus,9,merrywivesofwindsor,1600 together,9,merrywivesofwindsor,1600 lie,9,merrywivesofwindsor,1600 mad,9,merrywivesofwindsor,1600 dog,9,merrywivesofwindsor,1600 told,10,merrywivesofwindsor,1600 Will,10,merrywivesofwindsor,1600 Nan,10,merrywivesofwindsor,1600 truth,10,merrywivesofwindsor,1600 Give,10,merrywivesofwindsor,1600 vill,10,merrywivesofwindsor,1600 turn,10,merrywivesofwindsor,1600 friend,10,merrywivesofwindsor,1600 III,10,merrywivesofwindsor,1600 stay,10,merrywivesofwindsor,1600 IV,10,merrywivesofwindsor,1600 gone,10,merrywivesofwindsor,1600 So,10,merrywivesofwindsor,1600 i',10,merrywivesofwindsor,1600 dead,10,merrywivesofwindsor,1600 priest,10,merrywivesofwindsor,1600 door,10,merrywivesofwindsor,1600 show,10,merrywivesofwindsor,1600 where,10,merrywivesofwindsor,1600 none,10,merrywivesofwindsor,1600 many,10,merrywivesofwindsor,1600 fire,10,merrywivesofwindsor,1600 stand,10,merrywivesofwindsor,1600 court,10,merrywivesofwindsor,1600 fair,10,merrywivesofwindsor,1600 hour,10,merrywivesofwindsor,1600 thousand,10,merrywivesofwindsor,1600 green,10,merrywivesofwindsor,1600 seek,10,merrywivesofwindsor,1600 jealousy,10,merrywivesofwindsor,1600 meet,11,merrywivesofwindsor,1600 nothing,11,merrywivesofwindsor,1600 William,11,merrywivesofwindsor,1600 wrong,11,merrywivesofwindsor,1600 fault,11,merrywivesofwindsor,1600 Here,11,merrywivesofwindsor,1600 Is,11,merrywivesofwindsor,1600 sport,11,merrywivesofwindsor,1600 We,11,merrywivesofwindsor,1600 done,11,merrywivesofwindsor,1600 ill,11,merrywivesofwindsor,1600 Caius,11,merrywivesofwindsor,1600 fat,11,merrywivesofwindsor,1600 maid,11,merrywivesofwindsor,1600 They,11,merrywivesofwindsor,1600 search,11,merrywivesofwindsor,1600 before,11,merrywivesofwindsor,1600 desires,11,merrywivesofwindsor,1600 says,11,merrywivesofwindsor,1600 heard,11,merrywivesofwindsor,1600 Shall,11,merrywivesofwindsor,1600 company,11,merrywivesofwindsor,1600 hold,11,merrywivesofwindsor,1600 use,11,merrywivesofwindsor,1600 we'll,11,merrywivesofwindsor,1600 send,11,merrywivesofwindsor,1600 poor,11,merrywivesofwindsor,1600 first,11,merrywivesofwindsor,1600 might,11,merrywivesofwindsor,1600 yourself,12,merrywivesofwindsor,1600 sure,12,merrywivesofwindsor,1600 call,12,merrywivesofwindsor,1600 Doctor,12,merrywivesofwindsor,1600 With,12,merrywivesofwindsor,1600 white,12,merrywivesofwindsor,1600 devil,12,merrywivesofwindsor,1600 Ford's,12,merrywivesofwindsor,1600 Have,12,merrywivesofwindsor,1600 why,12,merrywivesofwindsor,1600 day,12,merrywivesofwindsor,1600 hope,12,merrywivesofwindsor,1600 against,13,merrywivesofwindsor,1600 WILLIAM,13,merrywivesofwindsor,1600 both,13,merrywivesofwindsor,1600 Shallow,13,merrywivesofwindsor,1600 enter,13,merrywivesofwindsor,1600 Re,13,merrywivesofwindsor,1600 bear,13,merrywivesofwindsor,1600 Jack,13,merrywivesofwindsor,1600 keep,13,merrywivesofwindsor,1600 though,13,merrywivesofwindsor,1600 room,13,merrywivesofwindsor,1600 This,13,merrywivesofwindsor,1600 buck,13,merrywivesofwindsor,1600 sweet,13,merrywivesofwindsor,1600 Marry,13,merrywivesofwindsor,1600 rather,14,merrywivesofwindsor,1600 In,14,merrywivesofwindsor,1600 long,14,merrywivesofwindsor,1600 art,14,merrywivesofwindsor,1600 young,14,merrywivesofwindsor,1600 between,14,merrywivesofwindsor,1600 ever,14,merrywivesofwindsor,1600 till,14,merrywivesofwindsor,1600 forsooth,14,merrywivesofwindsor,1600 Pray,14,merrywivesofwindsor,1600 leave,14,merrywivesofwindsor,1600 father,14,merrywivesofwindsor,1600 himself,14,merrywivesofwindsor,1600 I,782,merrywivesofwindsor,1600 much,15,merrywivesofwindsor,1600 bully,15,merrywivesofwindsor,1600 down,15,merrywivesofwindsor,1600 money,15,merrywivesofwindsor,1600 made,15,merrywivesofwindsor,1600 mind,15,merrywivesofwindsor,1600 there's,15,merrywivesofwindsor,1600 'Tis,15,merrywivesofwindsor,1600 marry,15,merrywivesofwindsor,1600 glad,15,merrywivesofwindsor,1600 gentleman,15,merrywivesofwindsor,1600 home,15,merrywivesofwindsor,1600 Rugby,15,merrywivesofwindsor,1600 fairies,15,merrywivesofwindsor,1600 men,15,merrywivesofwindsor,1600 There,16,merrywivesofwindsor,1600 heaven,16,merrywivesofwindsor,1600 look,16,merrywivesofwindsor,1600 does,16,merrywivesofwindsor,1600 dat,16,merrywivesofwindsor,1600 gentlemen,16,merrywivesofwindsor,1600 true,16,merrywivesofwindsor,1600 head,17,merrywivesofwindsor,1600 daughter,17,merrywivesofwindsor,1600 desire,17,merrywivesofwindsor,1600 No,17,merrywivesofwindsor,1600 It,17,merrywivesofwindsor,1600 night,17,merrywivesofwindsor,1600 little,17,merrywivesofwindsor,1600 indeed,17,merrywivesofwindsor,1600 Garter,17,merrywivesofwindsor,1600 again,17,merrywivesofwindsor,1600 thank,17,merrywivesofwindsor,1600 NYM,17,merrywivesofwindsor,1600 ROBIN,18,merrywivesofwindsor,1600 Fenton,18,merrywivesofwindsor,1600 up,18,merrywivesofwindsor,1600 hand,18,merrywivesofwindsor,1600 But,18,merrywivesofwindsor,1600 RUGBY,18,merrywivesofwindsor,1600 worship,18,merrywivesofwindsor,1600 follow,18,merrywivesofwindsor,1600 other,18,merrywivesofwindsor,1600 Aside,19,merrywivesofwindsor,1600 matter,19,merrywivesofwindsor,1600 My,19,merrywivesofwindsor,1600 knave,19,merrywivesofwindsor,1600 three,19,merrywivesofwindsor,1600 letter,19,merrywivesofwindsor,1600 find,19,merrywivesofwindsor,1600 great,19,merrywivesofwindsor,1600 did,19,merrywivesofwindsor,1600 Now,20,merrywivesofwindsor,1600 better,20,merrywivesofwindsor,1600 has,20,merrywivesofwindsor,1600 That,20,merrywivesofwindsor,1600 myself,20,merrywivesofwindsor,1600 could,20,merrywivesofwindsor,1600 own,20,merrywivesofwindsor,1600 humour,20,merrywivesofwindsor,1600 Hugh,20,merrywivesofwindsor,1600 which,21,merrywivesofwindsor,1600 some,21,merrywivesofwindsor,1600 away,21,merrywivesofwindsor,1600 word,21,merrywivesofwindsor,1600 hear,22,merrywivesofwindsor,1600 warrant,22,merrywivesofwindsor,1600 name,22,merrywivesofwindsor,1600 boy,22,merrywivesofwindsor,1600 If,22,merrywivesofwindsor,1600 Good,22,merrywivesofwindsor,1600 knight,22,merrywivesofwindsor,1600 Let,22,merrywivesofwindsor,1600 in,278,merrywivesofwindsor,1600 another,23,merrywivesofwindsor,1600 these,23,merrywivesofwindsor,1600 He,23,merrywivesofwindsor,1600 To,23,merrywivesofwindsor,1600 ACT,23,merrywivesofwindsor,1600 very,23,merrywivesofwindsor,1600 comes,23,merrywivesofwindsor,1600 doctor,23,merrywivesofwindsor,1600 honest,23,merrywivesofwindsor,1600 two,23,merrywivesofwindsor,1600 cannot,23,merrywivesofwindsor,1600 Nay,24,merrywivesofwindsor,1600 WIVES,24,merrywivesofwindsor,1600 OF,24,merrywivesofwindsor,1600 can,24,merrywivesofwindsor,1600 de,24,merrywivesofwindsor,1600 yet,24,merrywivesofwindsor,1600 MERRY,24,merrywivesofwindsor,1600 THE,24,merrywivesofwindsor,1600 heart,24,merrywivesofwindsor,1600 WINDSOR,24,merrywivesofwindsor,1600 SCENE,24,merrywivesofwindsor,1600 about,25,merrywivesofwindsor,1600 Windsor,25,merrywivesofwindsor,1600 my,281,merrywivesofwindsor,1600 Go,26,merrywivesofwindsor,1600 been,26,merrywivesofwindsor,1600 basket,26,merrywivesofwindsor,1600 Falstaff,26,merrywivesofwindsor,1600 way,26,merrywivesofwindsor,1600 from,26,merrywivesofwindsor,1600 time,26,merrywivesofwindsor,1600 host,26,merrywivesofwindsor,1600 take,26,merrywivesofwindsor,1600 upon,27,merrywivesofwindsor,1600 ANNE,27,merrywivesofwindsor,1600 us,27,merrywivesofwindsor,1600 speak,27,merrywivesofwindsor,1600 when,27,merrywivesofwindsor,1600 FENTON,28,merrywivesofwindsor,1600 Slender,28,merrywivesofwindsor,1600 old,28,merrywivesofwindsor,1600 give,29,merrywivesofwindsor,1600 How,29,merrywivesofwindsor,1600 never,30,merrywivesofwindsor,1600 BARDOLPH,30,merrywivesofwindsor,1600 O,31,merrywivesofwindsor,1600 such,31,merrywivesofwindsor,1600 than,31,merrywivesofwindsor,1600 By,31,merrywivesofwindsor,1600 into,31,merrywivesofwindsor,1600 gar,31,merrywivesofwindsor,1600 husband,32,merrywivesofwindsor,1600 should,32,merrywivesofwindsor,1600 our,32,merrywivesofwindsor,1600 ',33,merrywivesofwindsor,1600 must,33,merrywivesofwindsor,1600 their,33,merrywivesofwindsor,1600 pray,34,merrywivesofwindsor,1600 'tis,34,merrywivesofwindsor,1600 think,34,merrywivesofwindsor,1600 were,34,merrywivesofwindsor,1600 any,35,merrywivesofwindsor,1600 PISTOL,35,merrywivesofwindsor,1600 may,35,merrywivesofwindsor,1600 Come,36,merrywivesofwindsor,1600 Why,36,merrywivesofwindsor,1600 then,36,merrywivesofwindsor,1600 Exeunt,36,merrywivesofwindsor,1600 mine,36,merrywivesofwindsor,1600 was,36,merrywivesofwindsor,1600 too,36,merrywivesofwindsor,1600 house,37,merrywivesofwindsor,1600 The,37,merrywivesofwindsor,1600 A,38,merrywivesofwindsor,1600 You,38,merrywivesofwindsor,1600 SIMPLE,38,merrywivesofwindsor,1600 how,39,merrywivesofwindsor,1600 Well,39,merrywivesofwindsor,1600 wife,39,merrywivesofwindsor,1600 more,40,merrywivesofwindsor,1600 out,40,merrywivesofwindsor,1600 Brook,41,merrywivesofwindsor,1600 thy,41,merrywivesofwindsor,1600 Ay,42,merrywivesofwindsor,1600 make,42,merrywivesofwindsor,1600 see,43,merrywivesofwindsor,1600 master,43,merrywivesofwindsor,1600 woman,43,merrywivesofwindsor,1600 like,44,merrywivesofwindsor,1600 love,44,merrywivesofwindsor,1600 Exit,45,merrywivesofwindsor,1600 tell,46,merrywivesofwindsor,1600 and,558,merrywivesofwindsor,1600 had,47,merrywivesofwindsor,1600 Anne,47,merrywivesofwindsor,1600 let,47,merrywivesofwindsor,1600 them,49,merrywivesofwindsor,1600 know,49,merrywivesofwindsor,1600 we,49,merrywivesofwindsor,1600 one,49,merrywivesofwindsor,1600 an,51,merrywivesofwindsor,1600 thee,52,merrywivesofwindsor,1600 say,53,merrywivesofwindsor,1600 MISTRESS,310,merrywivesofwindsor,1600 or,55,merrywivesofwindsor,1600 well,55,merrywivesofwindsor,1600 thou,56,merrywivesofwindsor,1600 John,57,merrywivesofwindsor,1600 man,57,merrywivesofwindsor,1600 Ford,58,merrywivesofwindsor,1600 the,570,merrywivesofwindsor,1600 they,59,merrywivesofwindsor,1600 Host,59,merrywivesofwindsor,1600 are,61,merrywivesofwindsor,1600 hath,61,merrywivesofwindsor,1600 is,317,merrywivesofwindsor,1600 there,63,merrywivesofwindsor,1600 on,63,merrywivesofwindsor,1600 now,63,merrywivesofwindsor,1600 What,63,merrywivesofwindsor,1600 here,64,merrywivesofwindsor,1600 Enter,65,merrywivesofwindsor,1600 if,66,merrywivesofwindsor,1600 CAIUS,67,merrywivesofwindsor,1600 go,68,merrywivesofwindsor,1600 by,68,merrywivesofwindsor,1600 DOCTOR,68,merrywivesofwindsor,1600 she,70,merrywivesofwindsor,1600 And,70,merrywivesofwindsor,1600 SLENDER,71,merrywivesofwindsor,1600 would,72,merrywivesofwindsor,1600 no,73,merrywivesofwindsor,1600 am,74,merrywivesofwindsor,1600 I'll,74,merrywivesofwindsor,1600 all,75,merrywivesofwindsor,1600 what,76,merrywivesofwindsor,1600 SHALLOW,77,merrywivesofwindsor,1600 Sir,77,merrywivesofwindsor,1600 Mistress,81,merrywivesofwindsor,1600 at,83,merrywivesofwindsor,1600 QUICKLY,88,merrywivesofwindsor,1600 so,89,merrywivesofwindsor,1600 come,89,merrywivesofwindsor,1600 sir,91,merrywivesofwindsor,1600 Page,92,merrywivesofwindsor,1600 do,97,merrywivesofwindsor,1600 but,105,merrywivesofwindsor,1600 HUGH,106,merrywivesofwindsor,1600 EVANS,106,merrywivesofwindsor,1600 SIR,107,merrywivesofwindsor,1600 good,109,merrywivesofwindsor,1600 this,118,merrywivesofwindsor,1600 shall,119,merrywivesofwindsor,1600 Master,131,merrywivesofwindsor,1600 as,132,merrywivesofwindsor,1600 of,394,merrywivesofwindsor,1600 his,139,merrywivesofwindsor,1600 FALSTAFF,156,merrywivesofwindsor,1600 him,160,merrywivesofwindsor,1600 to,416,merrywivesofwindsor,1600 for,164,merrywivesofwindsor,1600 her,172,merrywivesofwindsor,1600 with,180,merrywivesofwindsor,1600 it,183,merrywivesofwindsor,1600 that,184,merrywivesofwindsor,1600 have,194,merrywivesofwindsor,1600 not,197,merrywivesofwindsor,1600 a,454,merrywivesofwindsor,1600 he,201,merrywivesofwindsor,1600 your,204,merrywivesofwindsor,1600 be,204,merrywivesofwindsor,1600 will,206,merrywivesofwindsor,1600 FORD,213,merrywivesofwindsor,1600 me,233,merrywivesofwindsor,1600 you,495,merrywivesofwindsor,1600 brave,1,muchadoaboutnothing,1599 peopled,1,muchadoaboutnothing,1599 slops,1,muchadoaboutnothing,1599 treason,1,muchadoaboutnothing,1599 silken,1,muchadoaboutnothing,1599 cage,1,muchadoaboutnothing,1599 mangers,1,muchadoaboutnothing,1599 troubled,1,muchadoaboutnothing,1599 o'er,1,muchadoaboutnothing,1599 somebody,1,muchadoaboutnothing,1599 lusty,1,muchadoaboutnothing,1599 angers,1,muchadoaboutnothing,1599 accordingly,1,muchadoaboutnothing,1599 daffed,1,muchadoaboutnothing,1599 H,1,muchadoaboutnothing,1599 drawing,1,muchadoaboutnothing,1599 transform,1,muchadoaboutnothing,1599 pennyworth,1,muchadoaboutnothing,1599 swords,1,muchadoaboutnothing,1599 grew,1,muchadoaboutnothing,1599 Prove,1,muchadoaboutnothing,1599 bonny,1,muchadoaboutnothing,1599 invisible,1,muchadoaboutnothing,1599 join,1,muchadoaboutnothing,1599 mistaking,1,muchadoaboutnothing,1599 Yours,1,muchadoaboutnothing,1599 LEONATO's,1,muchadoaboutnothing,1599 gallants,1,muchadoaboutnothing,1599 pestilence,1,muchadoaboutnothing,1599 consumption,1,muchadoaboutnothing,1599 drop,1,muchadoaboutnothing,1599 Proof,1,muchadoaboutnothing,1599 afar,1,muchadoaboutnothing,1599 marrying,1,muchadoaboutnothing,1599 Duchess,1,muchadoaboutnothing,1599 fathers,1,muchadoaboutnothing,1599 reckonings,1,muchadoaboutnothing,1599 apprehend,1,muchadoaboutnothing,1599 derives,1,muchadoaboutnothing,1599 belongs,1,muchadoaboutnothing,1599 Wonder,1,muchadoaboutnothing,1599 truer,1,muchadoaboutnothing,1599 Scrambling,1,muchadoaboutnothing,1599 Frenchman,1,muchadoaboutnothing,1599 wish'd,1,muchadoaboutnothing,1599 fencer's,1,muchadoaboutnothing,1599 watchman,1,muchadoaboutnothing,1599 planted,1,muchadoaboutnothing,1599 Impose,1,muchadoaboutnothing,1599 alike,1,muchadoaboutnothing,1599 whiteness,1,muchadoaboutnothing,1599 'baby,1,muchadoaboutnothing,1599 woman's,1,muchadoaboutnothing,1599 excepting,1,muchadoaboutnothing,1599 travail,1,muchadoaboutnothing,1599 Silent,1,muchadoaboutnothing,1599 follies,1,muchadoaboutnothing,1599 tore,1,muchadoaboutnothing,1599 brows,1,muchadoaboutnothing,1599 brown,1,muchadoaboutnothing,1599 Writ,1,muchadoaboutnothing,1599 honourably,1,muchadoaboutnothing,1599 dagger,1,muchadoaboutnothing,1599 rock,1,muchadoaboutnothing,1599 Messengers,1,muchadoaboutnothing,1599 zeal,1,muchadoaboutnothing,1599 labours,1,muchadoaboutnothing,1599 element,1,muchadoaboutnothing,1599 foolery,1,muchadoaboutnothing,1599 obstinate,1,muchadoaboutnothing,1599 offended,1,muchadoaboutnothing,1599 health,1,muchadoaboutnothing,1599 shoulders,1,muchadoaboutnothing,1599 rob,1,muchadoaboutnothing,1599 offender,1,muchadoaboutnothing,1599 mend,1,muchadoaboutnothing,1599 scene,1,muchadoaboutnothing,1599 heart's,1,muchadoaboutnothing,1599 branch,1,muchadoaboutnothing,1599 steals,1,muchadoaboutnothing,1599 Beat,1,muchadoaboutnothing,1599 Bear,1,muchadoaboutnothing,1599 uncovered,1,muchadoaboutnothing,1599 assistance,1,muchadoaboutnothing,1599 counties,1,muchadoaboutnothing,1599 road,1,muchadoaboutnothing,1599 whipt,1,muchadoaboutnothing,1599 hush'd,1,muchadoaboutnothing,1599 epitaph,1,muchadoaboutnothing,1599 punishments,1,muchadoaboutnothing,1599 boys,1,muchadoaboutnothing,1599 construction,1,muchadoaboutnothing,1599 melt,1,muchadoaboutnothing,1599 held,1,muchadoaboutnothing,1599 sleeps,1,muchadoaboutnothing,1599 helps,1,muchadoaboutnothing,1599 furthest,1,muchadoaboutnothing,1599 dish,1,muchadoaboutnothing,1599 entered,1,muchadoaboutnothing,1599 Measure,1,muchadoaboutnothing,1599 eight,1,muchadoaboutnothing,1599 conjoined,1,muchadoaboutnothing,1599 piety,1,muchadoaboutnothing,1599 writer,1,muchadoaboutnothing,1599 younger,1,muchadoaboutnothing,1599 painted,1,muchadoaboutnothing,1599 easier,1,muchadoaboutnothing,1599 hers,1,muchadoaboutnothing,1599 interjections,1,muchadoaboutnothing,1599 Despite,1,muchadoaboutnothing,1599 cursing,1,muchadoaboutnothing,1599 ruffian,1,muchadoaboutnothing,1599 disease,1,muchadoaboutnothing,1599 sighs,1,muchadoaboutnothing,1599 skirts,1,muchadoaboutnothing,1599 errand,1,muchadoaboutnothing,1599 toil,1,muchadoaboutnothing,1599 drum,1,muchadoaboutnothing,1599 'saving,1,muchadoaboutnothing,1599 sunburnt,1,muchadoaboutnothing,1599 hearted,1,muchadoaboutnothing,1599 shifted,1,muchadoaboutnothing,1599 rid,1,muchadoaboutnothing,1599 fought,1,muchadoaboutnothing,1599 Pause,1,muchadoaboutnothing,1599 hanged,1,muchadoaboutnothing,1599 advance,1,muchadoaboutnothing,1599 villanies,1,muchadoaboutnothing,1599 maintain,1,muchadoaboutnothing,1599 praising,1,muchadoaboutnothing,1599 flow,1,muchadoaboutnothing,1599 richly,1,muchadoaboutnothing,1599 unhappiness,1,muchadoaboutnothing,1599 fury,1,muchadoaboutnothing,1599 although,1,muchadoaboutnothing,1599 fashioning,1,muchadoaboutnothing,1599 milksops,1,muchadoaboutnothing,1599 underneath,1,muchadoaboutnothing,1599 cowardice,1,muchadoaboutnothing,1599 signs,1,muchadoaboutnothing,1599 Suffer,1,muchadoaboutnothing,1599 Contempt,1,muchadoaboutnothing,1599 warren,1,muchadoaboutnothing,1599 reasoned,1,muchadoaboutnothing,1599 commence,1,muchadoaboutnothing,1599 thirty,1,muchadoaboutnothing,1599 terrible,1,muchadoaboutnothing,1599 yonder,1,muchadoaboutnothing,1599 reformed,1,muchadoaboutnothing,1599 press,1,muchadoaboutnothing,1599 advise,1,muchadoaboutnothing,1599 Jacks,1,muchadoaboutnothing,1599 baldrick,1,muchadoaboutnothing,1599 ancestors,1,muchadoaboutnothing,1599 pick,1,muchadoaboutnothing,1599 Valuing,1,muchadoaboutnothing,1599 enfranchised,1,muchadoaboutnothing,1599 lief,1,muchadoaboutnothing,1599 remain,1,muchadoaboutnothing,1599 printed,1,muchadoaboutnothing,1599 huddling,1,muchadoaboutnothing,1599 scruple,1,muchadoaboutnothing,1599 wrest,1,muchadoaboutnothing,1599 wounded,1,muchadoaboutnothing,1599 goest,1,muchadoaboutnothing,1599 necessarily,1,muchadoaboutnothing,1599 PERSONAE,1,muchadoaboutnothing,1599 agreed,1,muchadoaboutnothing,1599 saved,1,muchadoaboutnothing,1599 ditties,1,muchadoaboutnothing,1599 Scratching,1,muchadoaboutnothing,1599 couched,1,muchadoaboutnothing,1599 deservest,1,muchadoaboutnothing,1599 Mountanto,1,muchadoaboutnothing,1599 teacher,1,muchadoaboutnothing,1599 quirks,1,muchadoaboutnothing,1599 utter'd,1,muchadoaboutnothing,1599 softly,1,muchadoaboutnothing,1599 gallop,1,muchadoaboutnothing,1599 laced,1,muchadoaboutnothing,1599 walking,1,muchadoaboutnothing,1599 Courtesy,1,muchadoaboutnothing,1599 assaults,1,muchadoaboutnothing,1599 delivered,1,muchadoaboutnothing,1599 strength,1,muchadoaboutnothing,1599 soon,1,muchadoaboutnothing,1599 sons,1,muchadoaboutnothing,1599 honester,1,muchadoaboutnothing,1599 giant,1,muchadoaboutnothing,1599 brothel,1,muchadoaboutnothing,1599 guards,1,muchadoaboutnothing,1599 friend's,1,muchadoaboutnothing,1599 sadly,1,muchadoaboutnothing,1599 reconciled,1,muchadoaboutnothing,1599 slept,1,muchadoaboutnothing,1599 enigmatical,1,muchadoaboutnothing,1599 Asia,1,muchadoaboutnothing,1599 sole,1,muchadoaboutnothing,1599 revellers,1,muchadoaboutnothing,1599 charms,1,muchadoaboutnothing,1599 illegitimate,1,muchadoaboutnothing,1599 grieving,1,muchadoaboutnothing,1599 befits,1,muchadoaboutnothing,1599 years,1,muchadoaboutnothing,1599 stream,1,muchadoaboutnothing,1599 backward,1,muchadoaboutnothing,1599 link,1,muchadoaboutnothing,1599 fortunate,1,muchadoaboutnothing,1599 highness,1,muchadoaboutnothing,1599 Dapples,1,muchadoaboutnothing,1599 Tongue,1,muchadoaboutnothing,1599 deceivers,1,muchadoaboutnothing,1599 lime,1,muchadoaboutnothing,1599 crying,1,muchadoaboutnothing,1599 incensed,1,muchadoaboutnothing,1599 limb,1,muchadoaboutnothing,1599 gracious,1,muchadoaboutnothing,1599 devising,1,muchadoaboutnothing,1599 broken,1,muchadoaboutnothing,1599 horror,1,muchadoaboutnothing,1599 purse,1,muchadoaboutnothing,1599 trumpet,1,muchadoaboutnothing,1599 concerns,1,muchadoaboutnothing,1599 heat,1,muchadoaboutnothing,1599 toward,1,muchadoaboutnothing,1599 sparks,1,muchadoaboutnothing,1599 prickest,1,muchadoaboutnothing,1599 offenders,1,muchadoaboutnothing,1599 wants,1,muchadoaboutnothing,1599 cheek,1,muchadoaboutnothing,1599 hearing,1,muchadoaboutnothing,1599 policy,1,muchadoaboutnothing,1599 town,1,muchadoaboutnothing,1599 madness,1,muchadoaboutnothing,1599 golden,1,muchadoaboutnothing,1599 soil,1,muchadoaboutnothing,1599 gross,1,muchadoaboutnothing,1599 pipe,1,muchadoaboutnothing,1599 hanging,1,muchadoaboutnothing,1599 officers,1,muchadoaboutnothing,1599 suffigance,1,muchadoaboutnothing,1599 finding,1,muchadoaboutnothing,1599 Ethiope,1,muchadoaboutnothing,1599 likeness,1,muchadoaboutnothing,1599 shrewdly,1,muchadoaboutnothing,1599 faiths,1,muchadoaboutnothing,1599 addition,1,muchadoaboutnothing,1599 noise,1,muchadoaboutnothing,1599 facing,1,muchadoaboutnothing,1599 blessed,1,muchadoaboutnothing,1599 bachelors,1,muchadoaboutnothing,1599 purity,1,muchadoaboutnothing,1599 visit,1,muchadoaboutnothing,1599 lessen,1,muchadoaboutnothing,1599 singest,1,muchadoaboutnothing,1599 featured,1,muchadoaboutnothing,1599 Fetter,1,muchadoaboutnothing,1599 kid,1,muchadoaboutnothing,1599 began,1,muchadoaboutnothing,1599 coldly,1,muchadoaboutnothing,1599 something,1,muchadoaboutnothing,1599 sobs,1,muchadoaboutnothing,1599 asked,1,muchadoaboutnothing,1599 moving,1,muchadoaboutnothing,1599 discovers,1,muchadoaboutnothing,1599 counterpoise,1,muchadoaboutnothing,1599 cloudiness,1,muchadoaboutnothing,1599 Win,1,muchadoaboutnothing,1599 smirched,1,muchadoaboutnothing,1599 hereafter,1,muchadoaboutnothing,1599 Patch,1,muchadoaboutnothing,1599 slightly,1,muchadoaboutnothing,1599 smoking,1,muchadoaboutnothing,1599 Off,1,muchadoaboutnothing,1599 epitaphs,1,muchadoaboutnothing,1599 compliment,1,muchadoaboutnothing,1599 underborne,1,muchadoaboutnothing,1599 whatsoever,1,muchadoaboutnothing,1599 libertines,1,muchadoaboutnothing,1599 Flat,1,muchadoaboutnothing,1599 Get,1,muchadoaboutnothing,1599 babble,1,muchadoaboutnothing,1599 pipers,1,muchadoaboutnothing,1599 penance,1,muchadoaboutnothing,1599 Change,1,muchadoaboutnothing,1599 subdued,1,muchadoaboutnothing,1599 agent,1,muchadoaboutnothing,1599 luckier,1,muchadoaboutnothing,1599 fleet,1,muchadoaboutnothing,1599 fleer,1,muchadoaboutnothing,1599 tooth,1,muchadoaboutnothing,1599 predestinate,1,muchadoaboutnothing,1599 sex,1,muchadoaboutnothing,1599 vice,1,muchadoaboutnothing,1599 favoured,1,muchadoaboutnothing,1599 rubs,1,muchadoaboutnothing,1599 touched,1,muchadoaboutnothing,1599 catching,1,muchadoaboutnothing,1599 Dutchman,1,muchadoaboutnothing,1599 mending,1,muchadoaboutnothing,1599 Praising,1,muchadoaboutnothing,1599 she'll,1,muchadoaboutnothing,1599 shaven,1,muchadoaboutnothing,1599 thatched,1,muchadoaboutnothing,1599 Walk,1,muchadoaboutnothing,1599 abused,1,muchadoaboutnothing,1599 spy,1,muchadoaboutnothing,1599 nine,1,muchadoaboutnothing,1599 score,1,muchadoaboutnothing,1599 love's,1,muchadoaboutnothing,1599 favourites,1,muchadoaboutnothing,1599 confirmed,1,muchadoaboutnothing,1599 deliver,1,muchadoaboutnothing,1599 lesson,1,muchadoaboutnothing,1599 windy,1,muchadoaboutnothing,1599 Withdraw,1,muchadoaboutnothing,1599 skill,1,muchadoaboutnothing,1599 unconstrained,1,muchadoaboutnothing,1599 'Just,1,muchadoaboutnothing,1599 winds,1,muchadoaboutnothing,1599 subject,1,muchadoaboutnothing,1599 fashions,1,muchadoaboutnothing,1599 followed,1,muchadoaboutnothing,1599 mired,1,muchadoaboutnothing,1599 'O,1,muchadoaboutnothing,1599 countenance,1,muchadoaboutnothing,1599 Silence,1,muchadoaboutnothing,1599 bluish,1,muchadoaboutnothing,1599 Their,1,muchadoaboutnothing,1599 kindly,1,muchadoaboutnothing,1599 't,1,muchadoaboutnothing,1599 second,1,muchadoaboutnothing,1599 opinioned,1,muchadoaboutnothing,1599 squarer,1,muchadoaboutnothing,1599 pitiful,1,muchadoaboutnothing,1599 gather,1,muchadoaboutnothing,1599 sadder,1,muchadoaboutnothing,1599 quondam,1,muchadoaboutnothing,1599 Thanks,1,muchadoaboutnothing,1599 offends,1,muchadoaboutnothing,1599 hearsay,1,muchadoaboutnothing,1599 stuff,1,muchadoaboutnothing,1599 Confirm'd,1,muchadoaboutnothing,1599 bridge,1,muchadoaboutnothing,1599 becomes,1,muchadoaboutnothing,1599 affect,1,muchadoaboutnothing,1599 adverse,1,muchadoaboutnothing,1599 foulness,1,muchadoaboutnothing,1599 amiss,1,muchadoaboutnothing,1599 appear'd,1,muchadoaboutnothing,1599 Merry,1,muchadoaboutnothing,1599 exhibition,1,muchadoaboutnothing,1599 malefactors,1,muchadoaboutnothing,1599 everlasting,1,muchadoaboutnothing,1599 barns,1,muchadoaboutnothing,1599 secondarily,1,muchadoaboutnothing,1599 heavens,1,muchadoaboutnothing,1599 passed,1,muchadoaboutnothing,1599 received,1,muchadoaboutnothing,1599 turning,1,muchadoaboutnothing,1599 foils,1,muchadoaboutnothing,1599 stamps,1,muchadoaboutnothing,1599 conceit,1,muchadoaboutnothing,1599 happen,1,muchadoaboutnothing,1599 dancer,1,muchadoaboutnothing,1599 Our,1,muchadoaboutnothing,1599 Grow,1,muchadoaboutnothing,1599 reft,1,muchadoaboutnothing,1599 twelve,1,muchadoaboutnothing,1599 guarded,1,muchadoaboutnothing,1599 Officers,1,muchadoaboutnothing,1599 common,1,muchadoaboutnothing,1599 woollen,1,muchadoaboutnothing,1599 excellently,1,muchadoaboutnothing,1599 repentance,1,muchadoaboutnothing,1599 Confess'd,1,muchadoaboutnothing,1599 qualm,1,muchadoaboutnothing,1599 figure,1,muchadoaboutnothing,1599 habit,1,muchadoaboutnothing,1599 kinswoman,1,muchadoaboutnothing,1599 gown's,1,muchadoaboutnothing,1599 luxurious,1,muchadoaboutnothing,1599 Turk,1,muchadoaboutnothing,1599 erect,1,muchadoaboutnothing,1599 parrot,1,muchadoaboutnothing,1599 quake,1,muchadoaboutnothing,1599 feat,1,muchadoaboutnothing,1599 scold,1,muchadoaboutnothing,1599 detain,1,muchadoaboutnothing,1599 terms,1,muchadoaboutnothing,1599 dearly,1,muchadoaboutnothing,1599 cherish,1,muchadoaboutnothing,1599 commit,1,muchadoaboutnothing,1599 eldest,1,muchadoaboutnothing,1599 Pardon,1,muchadoaboutnothing,1599 instance,1,muchadoaboutnothing,1599 tennis,1,muchadoaboutnothing,1599 mark'd,1,muchadoaboutnothing,1599 inkhorn,1,muchadoaboutnothing,1599 consented,1,muchadoaboutnothing,1599 willing,1,muchadoaboutnothing,1599 Yearly,1,muchadoaboutnothing,1599 thaw,1,muchadoaboutnothing,1599 model,1,muchadoaboutnothing,1599 humble,1,muchadoaboutnothing,1599 tush,1,muchadoaboutnothing,1599 overthrown,1,muchadoaboutnothing,1599 sum,1,muchadoaboutnothing,1599 singer,1,muchadoaboutnothing,1599 Seeming,1,muchadoaboutnothing,1599 vanity,1,muchadoaboutnothing,1599 above,1,muchadoaboutnothing,1599 feed,1,muchadoaboutnothing,1599 civet,1,muchadoaboutnothing,1599 ominous,1,muchadoaboutnothing,1599 negotiate,1,muchadoaboutnothing,1599 cease,1,muchadoaboutnothing,1599 sauce,1,muchadoaboutnothing,1599 plainly,1,muchadoaboutnothing,1599 infinite,1,muchadoaboutnothing,1599 humbly,1,muchadoaboutnothing,1599 winded,1,muchadoaboutnothing,1599 grow,1,muchadoaboutnothing,1599 dissuade,1,muchadoaboutnothing,1599 recheat,1,muchadoaboutnothing,1599 costly,1,muchadoaboutnothing,1599 odorous,1,muchadoaboutnothing,1599 upon't,1,muchadoaboutnothing,1599 Clap's,1,muchadoaboutnothing,1599 Bull,1,muchadoaboutnothing,1599 conceal,1,muchadoaboutnothing,1599 ancient,1,muchadoaboutnothing,1599 weather,1,muchadoaboutnothing,1599 Old,1,muchadoaboutnothing,1599 choose,1,muchadoaboutnothing,1599 rooms,1,muchadoaboutnothing,1599 wine,1,muchadoaboutnothing,1599 wing,1,muchadoaboutnothing,1599 attires,1,muchadoaboutnothing,1599 Gifts,1,muchadoaboutnothing,1599 youth's,1,muchadoaboutnothing,1599 prized,1,muchadoaboutnothing,1599 ward,1,muchadoaboutnothing,1599 wished,1,muchadoaboutnothing,1599 cuckold,1,muchadoaboutnothing,1599 attired,1,muchadoaboutnothing,1599 Hence,1,muchadoaboutnothing,1599 language,1,muchadoaboutnothing,1599 dreamed,1,muchadoaboutnothing,1599 sailing,1,muchadoaboutnothing,1599 Please,1,muchadoaboutnothing,1599 partridge,1,muchadoaboutnothing,1599 'Hundred,1,muchadoaboutnothing,1599 wasters,1,muchadoaboutnothing,1599 hates,1,muchadoaboutnothing,1599 bolt,1,muchadoaboutnothing,1599 poniards,1,muchadoaboutnothing,1599 crossness,1,muchadoaboutnothing,1599 Cousin,1,muchadoaboutnothing,1599 witnesses,1,muchadoaboutnothing,1599 bold,1,muchadoaboutnothing,1599 Midnight,1,muchadoaboutnothing,1599 custom,1,muchadoaboutnothing,1599 sense,1,muchadoaboutnothing,1599 seem'd,1,muchadoaboutnothing,1599 pierce,1,muchadoaboutnothing,1599 blades,1,muchadoaboutnothing,1599 sheeps',1,muchadoaboutnothing,1599 world's,1,muchadoaboutnothing,1599 rest,1,muchadoaboutnothing,1599 warm,1,muchadoaboutnothing,1599 merely,1,muchadoaboutnothing,1599 dice,1,muchadoaboutnothing,1599 Vulcan,1,muchadoaboutnothing,1599 throughly,1,muchadoaboutnothing,1599 melted,1,muchadoaboutnothing,1599 conveyance,1,muchadoaboutnothing,1599 mistake,1,muchadoaboutnothing,1599 circumstances,1,muchadoaboutnothing,1599 ambles,1,muchadoaboutnothing,1599 ruled,1,muchadoaboutnothing,1599 manly,1,muchadoaboutnothing,1599 bleats,1,muchadoaboutnothing,1599 alliance,1,muchadoaboutnothing,1599 manhood,1,muchadoaboutnothing,1599 inwardness,1,muchadoaboutnothing,1599 tend,1,muchadoaboutnothing,1599 colour,1,muchadoaboutnothing,1599 wayward,1,muchadoaboutnothing,1599 properest,1,muchadoaboutnothing,1599 Draw,1,muchadoaboutnothing,1599 intelligence,1,muchadoaboutnothing,1599 goddess,1,muchadoaboutnothing,1599 conditions,1,muchadoaboutnothing,1599 project,1,muchadoaboutnothing,1599 he's,1,muchadoaboutnothing,1599 twine,1,muchadoaboutnothing,1599 nephew,1,muchadoaboutnothing,1599 bitter,1,muchadoaboutnothing,1599 Daughter,1,muchadoaboutnothing,1599 each,1,muchadoaboutnothing,1599 Sigh,1,muchadoaboutnothing,1599 muzzle,1,muchadoaboutnothing,1599 scandal,1,muchadoaboutnothing,1599 authority,1,muchadoaboutnothing,1599 ha',1,muchadoaboutnothing,1599 stir,1,muchadoaboutnothing,1599 solicit,1,muchadoaboutnothing,1599 tapers,1,muchadoaboutnothing,1599 upwards,1,muchadoaboutnothing,1599 statutes,1,muchadoaboutnothing,1599 shooting,1,muchadoaboutnothing,1599 Hold,1,muchadoaboutnothing,1599 drinking,1,muchadoaboutnothing,1599 planet,1,muchadoaboutnothing,1599 overthrow,1,muchadoaboutnothing,1599 'scorn,1,muchadoaboutnothing,1599 refuse,1,muchadoaboutnothing,1599 overflow,1,muchadoaboutnothing,1599 religious,1,muchadoaboutnothing,1599 Possess,1,muchadoaboutnothing,1599 sores,1,muchadoaboutnothing,1599 'horn,1,muchadoaboutnothing,1599 nights',1,muchadoaboutnothing,1599 HERO's,1,muchadoaboutnothing,1599 balls,1,muchadoaboutnothing,1599 perfection,1,muchadoaboutnothing,1599 Ah,1,muchadoaboutnothing,1599 tasting,1,muchadoaboutnothing,1599 infection,1,muchadoaboutnothing,1599 mistrust,1,muchadoaboutnothing,1599 fool's,1,muchadoaboutnothing,1599 slander'd,1,muchadoaboutnothing,1599 scarce,1,muchadoaboutnothing,1599 chaste,1,muchadoaboutnothing,1599 Means,1,muchadoaboutnothing,1599 bow,1,muchadoaboutnothing,1599 wronger,1,muchadoaboutnothing,1599 guiltiness,1,muchadoaboutnothing,1599 deeds,1,muchadoaboutnothing,1599 Those,1,muchadoaboutnothing,1599 distilled,1,muchadoaboutnothing,1599 misused,1,muchadoaboutnothing,1599 lance,1,muchadoaboutnothing,1599 desperate,1,muchadoaboutnothing,1599 Having,1,muchadoaboutnothing,1599 spots,1,muchadoaboutnothing,1599 borrows,1,muchadoaboutnothing,1599 Drink,1,muchadoaboutnothing,1599 By'r,1,muchadoaboutnothing,1599 householder,1,muchadoaboutnothing,1599 hoped,1,muchadoaboutnothing,1599 perfume,1,muchadoaboutnothing,1599 bar,1,muchadoaboutnothing,1599 ladyship,1,muchadoaboutnothing,1599 turncoat,1,muchadoaboutnothing,1599 gossip,1,muchadoaboutnothing,1599 subscribe,1,muchadoaboutnothing,1599 denies,1,muchadoaboutnothing,1599 listen,1,muchadoaboutnothing,1599 kept,1,muchadoaboutnothing,1599 canst,1,muchadoaboutnothing,1599 Answer,1,muchadoaboutnothing,1599 husband',1,muchadoaboutnothing,1599 Hey,1,muchadoaboutnothing,1599 salved,1,muchadoaboutnothing,1599 pitied,1,muchadoaboutnothing,1599 twist,1,muchadoaboutnothing,1599 Spaniard,1,muchadoaboutnothing,1599 hip,1,muchadoaboutnothing,1599 conceived,1,muchadoaboutnothing,1599 conjoin'd,1,muchadoaboutnothing,1599 hit,1,muchadoaboutnothing,1599 tear,1,muchadoaboutnothing,1599 Refuse,1,muchadoaboutnothing,1599 finer,1,muchadoaboutnothing,1599 Ho,1,muchadoaboutnothing,1599 owner,1,muchadoaboutnothing,1599 Comfect,1,muchadoaboutnothing,1599 husbands,1,muchadoaboutnothing,1599 greedily,1,muchadoaboutnothing,1599 deserved,1,muchadoaboutnothing,1599 palabras,1,muchadoaboutnothing,1599 appoint,1,muchadoaboutnothing,1599 proverbs,1,muchadoaboutnothing,1599 shillings,1,muchadoaboutnothing,1599 east,1,muchadoaboutnothing,1599 Had,1,muchadoaboutnothing,1599 bloom,1,muchadoaboutnothing,1599 noses,1,muchadoaboutnothing,1599 condemned,1,muchadoaboutnothing,1599 praiseworthy,1,muchadoaboutnothing,1599 treachery,1,muchadoaboutnothing,1599 pit,1,muchadoaboutnothing,1599 Almost,1,muchadoaboutnothing,1599 earn,1,muchadoaboutnothing,1599 Troilus,1,muchadoaboutnothing,1599 exterior,1,muchadoaboutnothing,1599 glorious,1,muchadoaboutnothing,1599 nice,1,muchadoaboutnothing,1599 snapped,1,muchadoaboutnothing,1599 countries,1,muchadoaboutnothing,1599 haggerds,1,muchadoaboutnothing,1599 temple,1,muchadoaboutnothing,1599 smoothly,1,muchadoaboutnothing,1599 Adieu,1,muchadoaboutnothing,1599 offered,1,muchadoaboutnothing,1599 priests,1,muchadoaboutnothing,1599 comprehended,1,muchadoaboutnothing,1599 epigram,1,muchadoaboutnothing,1599 vagrom,1,muchadoaboutnothing,1599 January,1,muchadoaboutnothing,1599 worshipped,1,muchadoaboutnothing,1599 reproaches,1,muchadoaboutnothing,1599 dumps,1,muchadoaboutnothing,1599 gave,1,muchadoaboutnothing,1599 week,1,muchadoaboutnothing,1599 nigh,1,muchadoaboutnothing,1599 tinsel,1,muchadoaboutnothing,1599 absent,1,muchadoaboutnothing,1599 abides,1,muchadoaboutnothing,1599 canker,1,muchadoaboutnothing,1599 metal,1,muchadoaboutnothing,1599 sooner,1,muchadoaboutnothing,1599 Consume,1,muchadoaboutnothing,1599 discontinue,1,muchadoaboutnothing,1599 narrowly,1,muchadoaboutnothing,1599 leaders,1,muchadoaboutnothing,1599 difference,1,muchadoaboutnothing,1599 Sits,1,muchadoaboutnothing,1599 Or,1,muchadoaboutnothing,1599 babbling,1,muchadoaboutnothing,1599 hymn,1,muchadoaboutnothing,1599 breathing,1,muchadoaboutnothing,1599 children,1,muchadoaboutnothing,1599 sincerity,1,muchadoaboutnothing,1599 Chid,1,muchadoaboutnothing,1599 ornament,1,muchadoaboutnothing,1599 awaked,1,muchadoaboutnothing,1599 sounds,1,muchadoaboutnothing,1599 vigitant,1,muchadoaboutnothing,1599 Seest,1,muchadoaboutnothing,1599 swoons,1,muchadoaboutnothing,1599 unquietness,1,muchadoaboutnothing,1599 couch,1,muchadoaboutnothing,1599 devised,1,muchadoaboutnothing,1599 stealer,1,muchadoaboutnothing,1599 weak,1,muchadoaboutnothing,1599 Behold,1,muchadoaboutnothing,1599 beyond,1,muchadoaboutnothing,1599 modestly,1,muchadoaboutnothing,1599 frugal,1,muchadoaboutnothing,1599 melteth,1,muchadoaboutnothing,1599 bullocks,1,muchadoaboutnothing,1599 Saint,1,muchadoaboutnothing,1599 Sundays,1,muchadoaboutnothing,1599 jealous,1,muchadoaboutnothing,1599 hobby,1,muchadoaboutnothing,1599 headborough,1,muchadoaboutnothing,1599 crackers,1,muchadoaboutnothing,1599 Drawing,1,muchadoaboutnothing,1599 suddenly,1,muchadoaboutnothing,1599 sieve,1,muchadoaboutnothing,1599 serpent,1,muchadoaboutnothing,1599 jewel,1,muchadoaboutnothing,1599 persuasion,1,muchadoaboutnothing,1599 carpenter,1,muchadoaboutnothing,1599 Didst,1,muchadoaboutnothing,1599 'Shall,1,muchadoaboutnothing,1599 friendly,1,muchadoaboutnothing,1599 royally,1,muchadoaboutnothing,1599 Sing,1,muchadoaboutnothing,1599 badge,1,muchadoaboutnothing,1599 bud,1,muchadoaboutnothing,1599 swift,1,muchadoaboutnothing,1599 likest,1,muchadoaboutnothing,1599 worship's,1,muchadoaboutnothing,1599 Ye,1,muchadoaboutnothing,1599 used,1,muchadoaboutnothing,1599 disguise,1,muchadoaboutnothing,1599 halfpence,1,muchadoaboutnothing,1599 quips,1,muchadoaboutnothing,1599 Enough,1,muchadoaboutnothing,1599 About,1,muchadoaboutnothing,1599 divine,1,muchadoaboutnothing,1599 sins,1,muchadoaboutnothing,1599 Like,1,muchadoaboutnothing,1599 cudgelled,1,muchadoaboutnothing,1599 gate,1,muchadoaboutnothing,1599 aspicious,1,muchadoaboutnothing,1599 'Twas,1,muchadoaboutnothing,1599 picture,1,muchadoaboutnothing,1599 Whither,1,muchadoaboutnothing,1599 rejoice,1,muchadoaboutnothing,1599 hourly,1,muchadoaboutnothing,1599 pitch,1,muchadoaboutnothing,1599 remnants,1,muchadoaboutnothing,1599 lamented,1,muchadoaboutnothing,1599 calling,1,muchadoaboutnothing,1599 north,1,muchadoaboutnothing,1599 ashamed,1,muchadoaboutnothing,1599 comprehend,1,muchadoaboutnothing,1599 hurts,1,muchadoaboutnothing,1599 beginning,1,muchadoaboutnothing,1599 foremost,1,muchadoaboutnothing,1599 begin,1,muchadoaboutnothing,1599 Record,1,muchadoaboutnothing,1599 organ,1,muchadoaboutnothing,1599 unhopefullest,1,muchadoaboutnothing,1599 pearls,1,muchadoaboutnothing,1599 solemn,1,muchadoaboutnothing,1599 college,1,muchadoaboutnothing,1599 noted,1,muchadoaboutnothing,1599 storm,1,muchadoaboutnothing,1599 failing,1,muchadoaboutnothing,1599 loins',1,muchadoaboutnothing,1599 virgin,1,muchadoaboutnothing,1599 forgive,1,muchadoaboutnothing,1599 'that,1,muchadoaboutnothing,1599 voyage,1,muchadoaboutnothing,1599 continuer,1,muchadoaboutnothing,1599 blithe,1,muchadoaboutnothing,1599 tyrant,1,muchadoaboutnothing,1599 idea,1,muchadoaboutnothing,1599 satisfy,1,muchadoaboutnothing,1599 treatise,1,muchadoaboutnothing,1599 Fear,1,muchadoaboutnothing,1599 sixpence,1,muchadoaboutnothing,1599 instances,1,muchadoaboutnothing,1599 burial,1,muchadoaboutnothing,1599 spirited,1,muchadoaboutnothing,1599 SONG,1,muchadoaboutnothing,1599 stops,1,muchadoaboutnothing,1599 Here's,1,muchadoaboutnothing,1599 painting,1,muchadoaboutnothing,1599 carping,1,muchadoaboutnothing,1599 prevented,1,muchadoaboutnothing,1599 needs,1,muchadoaboutnothing,1599 stool,1,muchadoaboutnothing,1599 recovered,1,muchadoaboutnothing,1599 Unless,1,muchadoaboutnothing,1599 swearing,1,muchadoaboutnothing,1599 quiver,1,muchadoaboutnothing,1599 unworthy,1,muchadoaboutnothing,1599 endurance,1,muchadoaboutnothing,1599 liberal,1,muchadoaboutnothing,1599 betroths,1,muchadoaboutnothing,1599 vouchsafe,1,muchadoaboutnothing,1599 seeing,1,muchadoaboutnothing,1599 'Fore,1,muchadoaboutnothing,1599 interim,1,muchadoaboutnothing,1599 lighten,1,muchadoaboutnothing,1599 seeming,1,muchadoaboutnothing,1599 lend,1,muchadoaboutnothing,1599 does,1,muchadoaboutnothing,1599 boast,1,muchadoaboutnothing,1599 Bashful,1,muchadoaboutnothing,1599 waist,1,muchadoaboutnothing,1599 stole,1,muchadoaboutnothing,1599 torches,1,muchadoaboutnothing,1599 appeared,1,muchadoaboutnothing,1599 quaint,1,muchadoaboutnothing,1599 houses,1,muchadoaboutnothing,1599 ay,1,muchadoaboutnothing,1599 speed,1,muchadoaboutnothing,1599 ale,1,muchadoaboutnothing,1599 privilege,1,muchadoaboutnothing,1599 newly,1,muchadoaboutnothing,1599 cured,1,muchadoaboutnothing,1599 correct,1,muchadoaboutnothing,1599 dried,1,muchadoaboutnothing,1599 tuition,1,muchadoaboutnothing,1599 move,1,muchadoaboutnothing,1599 wonderful,1,muchadoaboutnothing,1599 attending,1,muchadoaboutnothing,1599 commend,1,muchadoaboutnothing,1599 bodies,1,muchadoaboutnothing,1599 Moral,1,muchadoaboutnothing,1599 wisely,1,muchadoaboutnothing,1599 necessity,1,muchadoaboutnothing,1599 utmost,1,muchadoaboutnothing,1599 Goes,1,muchadoaboutnothing,1599 'school,1,muchadoaboutnothing,1599 disquiet,1,muchadoaboutnothing,1599 whereof,1,muchadoaboutnothing,1599 thankful,1,muchadoaboutnothing,1599 unhandsome,1,muchadoaboutnothing,1599 traps,1,muchadoaboutnothing,1599 infernal,1,muchadoaboutnothing,1599 earth,1,muchadoaboutnothing,1599 scholar,1,muchadoaboutnothing,1599 attendant,1,muchadoaboutnothing,1599 Took,1,muchadoaboutnothing,1599 temper,1,muchadoaboutnothing,1599 accusing,1,muchadoaboutnothing,1599 value,1,muchadoaboutnothing,1599 guerdon,1,muchadoaboutnothing,1599 lover,1,muchadoaboutnothing,1599 spell,1,muchadoaboutnothing,1599 achiever,1,muchadoaboutnothing,1599 reportingly,1,muchadoaboutnothing,1599 ink,1,muchadoaboutnothing,1599 studied,1,muchadoaboutnothing,1599 loss,1,muchadoaboutnothing,1599 drift,1,muchadoaboutnothing,1599 add,1,muchadoaboutnothing,1599 speak'st,1,muchadoaboutnothing,1599 agony,1,muchadoaboutnothing,1599 dispose,1,muchadoaboutnothing,1599 all's,1,muchadoaboutnothing,1599 words',1,muchadoaboutnothing,1599 feats,1,muchadoaboutnothing,1599 smart,1,muchadoaboutnothing,1599 bench,1,muchadoaboutnothing,1599 confessing,1,muchadoaboutnothing,1599 haps,1,muchadoaboutnothing,1599 show'd,1,muchadoaboutnothing,1599 dully,1,muchadoaboutnothing,1599 composed,1,muchadoaboutnothing,1599 minstrels,1,muchadoaboutnothing,1599 disparage,1,muchadoaboutnothing,1599 load,1,muchadoaboutnothing,1599 thrice,1,muchadoaboutnothing,1599 choice,1,muchadoaboutnothing,1599 eats,1,muchadoaboutnothing,1599 reasons,1,muchadoaboutnothing,1599 havoc,1,muchadoaboutnothing,1599 tempted,1,muchadoaboutnothing,1599 consummate,1,muchadoaboutnothing,1599 giddily,1,muchadoaboutnothing,1599 easy,1,muchadoaboutnothing,1599 hare,1,muchadoaboutnothing,1599 kills,1,muchadoaboutnothing,1599 Thought,1,muchadoaboutnothing,1599 catches,1,muchadoaboutnothing,1599 Jack,1,muchadoaboutnothing,1599 reasonable,1,muchadoaboutnothing,1599 Most,1,muchadoaboutnothing,1599 frighted,1,muchadoaboutnothing,1599 controlment,1,muchadoaboutnothing,1599 soldier's,1,muchadoaboutnothing,1599 December,1,muchadoaboutnothing,1599 lewd,1,muchadoaboutnothing,1599 afford,1,muchadoaboutnothing,1599 hall,1,muchadoaboutnothing,1599 watchings,1,muchadoaboutnothing,1599 frost,1,muchadoaboutnothing,1599 hale,1,muchadoaboutnothing,1599 crow,1,muchadoaboutnothing,1599 peaceable,1,muchadoaboutnothing,1599 Christian,1,muchadoaboutnothing,1599 beggar's,1,muchadoaboutnothing,1599 peaceably,1,muchadoaboutnothing,1599 knit,1,muchadoaboutnothing,1599 welcome,1,muchadoaboutnothing,1599 signify,1,muchadoaboutnothing,1599 senseless,1,muchadoaboutnothing,1599 crutches,1,muchadoaboutnothing,1599 text,1,muchadoaboutnothing,1599 verse,1,muchadoaboutnothing,1599 hideousness,1,muchadoaboutnothing,1599 speed's,1,muchadoaboutnothing,1599 bugle,1,muchadoaboutnothing,1599 More,1,muchadoaboutnothing,1599 noisome,1,muchadoaboutnothing,1599 weeds,1,muchadoaboutnothing,1599 acknowledge,1,muchadoaboutnothing,1599 repeat,1,muchadoaboutnothing,1599 liberty,1,muchadoaboutnothing,1599 Friendship,1,muchadoaboutnothing,1599 flouting,1,muchadoaboutnothing,1599 confession,1,muchadoaboutnothing,1599 trace,1,muchadoaboutnothing,1599 sweetest,1,muchadoaboutnothing,1599 provided,1,muchadoaboutnothing,1599 combating,1,muchadoaboutnothing,1599 excuse,1,muchadoaboutnothing,1599 acquaintance,1,muchadoaboutnothing,1599 guardian,1,muchadoaboutnothing,1599 governor,1,muchadoaboutnothing,1599 city,1,muchadoaboutnothing,1599 dealer,1,muchadoaboutnothing,1599 apparitions,1,muchadoaboutnothing,1599 midnight,1,muchadoaboutnothing,1599 Under,1,muchadoaboutnothing,1599 grudging,1,muchadoaboutnothing,1599 arm,1,muchadoaboutnothing,1599 refused,1,muchadoaboutnothing,1599 abhor,1,muchadoaboutnothing,1599 yawn,1,muchadoaboutnothing,1599 hawk,1,muchadoaboutnothing,1599 skirmish,1,muchadoaboutnothing,1599 trothed,1,muchadoaboutnothing,1599 'Light,1,muchadoaboutnothing,1599 Deserve,1,muchadoaboutnothing,1599 pair,1,muchadoaboutnothing,1599 return'd,1,muchadoaboutnothing,1599 spit,1,muchadoaboutnothing,1599 fellows',1,muchadoaboutnothing,1599 outrage,1,muchadoaboutnothing,1599 temporize,1,muchadoaboutnothing,1599 forswore,1,muchadoaboutnothing,1599 walked,1,muchadoaboutnothing,1599 profound,1,muchadoaboutnothing,1599 evenly,1,muchadoaboutnothing,1599 forsworn,1,muchadoaboutnothing,1599 exquisite,1,muchadoaboutnothing,1599 heretic,1,muchadoaboutnothing,1599 drizzles,1,muchadoaboutnothing,1599 greyhound's,1,muchadoaboutnothing,1599 Cham's,1,muchadoaboutnothing,1599 bosom,1,muchadoaboutnothing,1599 alive,1,muchadoaboutnothing,1599 enjoin,1,muchadoaboutnothing,1599 puts,1,muchadoaboutnothing,1599 supposition,1,muchadoaboutnothing,1599 rings,1,muchadoaboutnothing,1599 yielded,1,muchadoaboutnothing,1599 awe,1,muchadoaboutnothing,1599 chastity,1,muchadoaboutnothing,1599 Hymen,1,muchadoaboutnothing,1599 moan,1,muchadoaboutnothing,1599 duke's,1,muchadoaboutnothing,1599 prepared,1,muchadoaboutnothing,1599 athwart,1,muchadoaboutnothing,1599 testimony,1,muchadoaboutnothing,1599 renowned,1,muchadoaboutnothing,1599 push,1,muchadoaboutnothing,1599 forcible,1,muchadoaboutnothing,1599 scarcely,1,muchadoaboutnothing,1599 pikes,1,muchadoaboutnothing,1599 nearly,1,muchadoaboutnothing,1599 covertly,1,muchadoaboutnothing,1599 Approaching,1,muchadoaboutnothing,1599 armour,1,muchadoaboutnothing,1599 term,1,muchadoaboutnothing,1599 overborne,1,muchadoaboutnothing,1599 furnish,1,muchadoaboutnothing,1599 unbruised,1,muchadoaboutnothing,1599 inquire,1,muchadoaboutnothing,1599 itched,1,muchadoaboutnothing,1599 undone,1,muchadoaboutnothing,1599 deadly,1,muchadoaboutnothing,1599 sequel,1,muchadoaboutnothing,1599 fee,1,muchadoaboutnothing,1599 hits,1,muchadoaboutnothing,1599 fed,1,muchadoaboutnothing,1599 slightest,1,muchadoaboutnothing,1599 touch,1,muchadoaboutnothing,1599 arras,1,muchadoaboutnothing,1599 washed,1,muchadoaboutnothing,1599 Ate,1,muchadoaboutnothing,1599 enemies,1,muchadoaboutnothing,1599 sanctuary,1,muchadoaboutnothing,1599 net,1,muchadoaboutnothing,1599 pleasant'st,1,muchadoaboutnothing,1599 foundation,1,muchadoaboutnothing,1599 Content,1,muchadoaboutnothing,1599 honeysuckles,1,muchadoaboutnothing,1599 intemperate,1,muchadoaboutnothing,1599 enjoy,1,muchadoaboutnothing,1599 willingly,1,muchadoaboutnothing,1599 guess,1,muchadoaboutnothing,1599 monging,1,muchadoaboutnothing,1599 having,1,muchadoaboutnothing,1599 root,1,muchadoaboutnothing,1599 leaf,1,muchadoaboutnothing,1599 height,1,muchadoaboutnothing,1599 witch,1,muchadoaboutnothing,1599 Should,1,muchadoaboutnothing,1599 requited,1,muchadoaboutnothing,1599 George,1,muchadoaboutnothing,1599 wheels,1,muchadoaboutnothing,1599 notable,1,muchadoaboutnothing,1599 far,1,muchadoaboutnothing,1599 roof,1,muchadoaboutnothing,1599 Comes,1,muchadoaboutnothing,1599 codpiece,1,muchadoaboutnothing,1599 often,1,muchadoaboutnothing,1599 active,1,muchadoaboutnothing,1599 tediousness,1,muchadoaboutnothing,1599 justice,1,muchadoaboutnothing,1599 render'd,1,muchadoaboutnothing,1599 Kill,1,muchadoaboutnothing,1599 tried,1,muchadoaboutnothing,1599 proofs,1,muchadoaboutnothing,1599 condemn'd,1,muchadoaboutnothing,1599 Phoebus,1,muchadoaboutnothing,1599 intermingle,1,muchadoaboutnothing,1599 garments,1,muchadoaboutnothing,1599 Forbid,1,muchadoaboutnothing,1599 Dogberry,1,muchadoaboutnothing,1599 mask'd,1,muchadoaboutnothing,1599 equal,1,muchadoaboutnothing,1599 breeds,1,muchadoaboutnothing,1599 moved,1,muchadoaboutnothing,1599 helping,1,muchadoaboutnothing,1599 ballad,1,muchadoaboutnothing,1599 carried,1,muchadoaboutnothing,1599 errors,1,muchadoaboutnothing,1599 Canst,1,muchadoaboutnothing,1599 griefs,1,muchadoaboutnothing,1599 shouldst,1,muchadoaboutnothing,1599 apprehension,1,muchadoaboutnothing,1599 rose,1,muchadoaboutnothing,1599 guiltless,1,muchadoaboutnothing,1599 burglary,1,muchadoaboutnothing,1599 silence,1,muchadoaboutnothing,1599 antique,1,muchadoaboutnothing,1599 clamour,1,muchadoaboutnothing,1599 browner,1,muchadoaboutnothing,1599 build,1,muchadoaboutnothing,1599 Bait,1,muchadoaboutnothing,1599 water,1,muchadoaboutnothing,1599 'Certain,1,muchadoaboutnothing,1599 smallest,1,muchadoaboutnothing,1599 unknown,1,muchadoaboutnothing,1599 sending,1,muchadoaboutnothing,1599 trencherman,1,muchadoaboutnothing,1599 apply,1,muchadoaboutnothing,1599 Taming,1,muchadoaboutnothing,1599 Venus,1,muchadoaboutnothing,1599 Comparisons,1,muchadoaboutnothing,1599 apparell'd,1,muchadoaboutnothing,1599 lack'd,1,muchadoaboutnothing,1599 waked,1,muchadoaboutnothing,1599 proceed,1,muchadoaboutnothing,1599 levell'd,1,muchadoaboutnothing,1599 hire,1,muchadoaboutnothing,1599 scroll,1,muchadoaboutnothing,1599 capon,1,muchadoaboutnothing,1599 perturbation,1,muchadoaboutnothing,1599 beats,1,muchadoaboutnothing,1599 clog,1,muchadoaboutnothing,1599 proudly,1,muchadoaboutnothing,1599 Hearken,1,muchadoaboutnothing,1599 forsaken,1,muchadoaboutnothing,1599 below,1,muchadoaboutnothing,1599 Was't,1,muchadoaboutnothing,1599 exceedingly,1,muchadoaboutnothing,1599 tickling,1,muchadoaboutnothing,1599 bottle,1,muchadoaboutnothing,1599 disgraced,1,muchadoaboutnothing,1599 daily,1,muchadoaboutnothing,1599 bears,1,muchadoaboutnothing,1599 spread,1,muchadoaboutnothing,1599 drunkard,1,muchadoaboutnothing,1599 bravely,1,muchadoaboutnothing,1599 Jew,1,muchadoaboutnothing,1599 dissembler,1,muchadoaboutnothing,1599 candle,1,muchadoaboutnothing,1599 tenor,1,muchadoaboutnothing,1599 entirely,1,muchadoaboutnothing,1599 Values,1,muchadoaboutnothing,1599 misuse,1,muchadoaboutnothing,1599 specify,1,muchadoaboutnothing,1599 broader,1,muchadoaboutnothing,1599 plaintiffs,1,muchadoaboutnothing,1599 disloyal,1,muchadoaboutnothing,1599 Soft,1,muchadoaboutnothing,1599 strike,1,muchadoaboutnothing,1599 rougher,1,muchadoaboutnothing,1599 excused,1,muchadoaboutnothing,1599 philosopher,1,muchadoaboutnothing,1599 ewe,1,muchadoaboutnothing,1599 wolves,1,muchadoaboutnothing,1599 admit,1,muchadoaboutnothing,1599 charm,1,muchadoaboutnothing,1599 Pigmies,1,muchadoaboutnothing,1599 affections,1,muchadoaboutnothing,1599 picker,1,muchadoaboutnothing,1599 equally,1,muchadoaboutnothing,1599 quickly,1,muchadoaboutnothing,1599 withdrawn,1,muchadoaboutnothing,1599 overmastered,1,muchadoaboutnothing,1599 lantern,1,muchadoaboutnothing,1599 overheard'st,1,muchadoaboutnothing,1599 excommunication,1,muchadoaboutnothing,1599 evermore,1,muchadoaboutnothing,1599 Kissing,1,muchadoaboutnothing,1599 preceptial,1,muchadoaboutnothing,1599 places,1,muchadoaboutnothing,1599 several,1,muchadoaboutnothing,1599 scarf,1,muchadoaboutnothing,1599 quarter,1,muchadoaboutnothing,1599 tapestry,1,muchadoaboutnothing,1599 cloak,1,muchadoaboutnothing,1599 Philemon's,1,muchadoaboutnothing,1599 vanquish'd,1,muchadoaboutnothing,1599 pack'd,1,muchadoaboutnothing,1599 ensuing,1,muchadoaboutnothing,1599 recount,1,muchadoaboutnothing,1599 discontent,1,muchadoaboutnothing,1599 effect,1,muchadoaboutnothing,1599 fragments,1,muchadoaboutnothing,1599 scab,1,muchadoaboutnothing,1599 sinn'd,1,muchadoaboutnothing,1599 graceful,1,muchadoaboutnothing,1599 lodge,1,muchadoaboutnothing,1599 daylight,1,muchadoaboutnothing,1599 mortal,1,muchadoaboutnothing,1599 likewise,1,muchadoaboutnothing,1599 leaves,1,muchadoaboutnothing,1599 mile,1,muchadoaboutnothing,1599 mild,1,muchadoaboutnothing,1599 exchange,1,muchadoaboutnothing,1599 charitable,1,muchadoaboutnothing,1599 Song,1,muchadoaboutnothing,1599 'In,1,muchadoaboutnothing,1599 varlet,1,muchadoaboutnothing,1599 Air,1,muchadoaboutnothing,1599 approached,1,muchadoaboutnothing,1599 teeth,1,muchadoaboutnothing,1599 non,1,muchadoaboutnothing,1599 soldiers,1,muchadoaboutnothing,1599 qualities,1,muchadoaboutnothing,1599 prize,1,muchadoaboutnothing,1599 'Right,1,muchadoaboutnothing,1599 panders,1,muchadoaboutnothing,1599 February,1,muchadoaboutnothing,1599 man',1,muchadoaboutnothing,1599 confidence,1,muchadoaboutnothing,1599 blush,1,muchadoaboutnothing,1599 archer,1,muchadoaboutnothing,1599 beggar,1,muchadoaboutnothing,1599 chain,1,muchadoaboutnothing,1599 bloods,1,muchadoaboutnothing,1599 Uncle,1,muchadoaboutnothing,1599 Could,1,muchadoaboutnothing,1599 courage,1,muchadoaboutnothing,1599 Father,1,muchadoaboutnothing,1599 skin,1,muchadoaboutnothing,1599 mass,1,muchadoaboutnothing,1599 bidden,1,muchadoaboutnothing,1599 profitless,1,muchadoaboutnothing,1599 onward,1,muchadoaboutnothing,1599 marl,1,muchadoaboutnothing,1599 coward,1,muchadoaboutnothing,1599 incite,1,muchadoaboutnothing,1599 proudest,1,muchadoaboutnothing,1599 persuaded,1,muchadoaboutnothing,1599 injuries,1,muchadoaboutnothing,1599 thick,1,muchadoaboutnothing,1599 slave,1,muchadoaboutnothing,1599 coverture,1,muchadoaboutnothing,1599 Converting,1,muchadoaboutnothing,1599 misled,1,muchadoaboutnothing,1599 sensuality,1,muchadoaboutnothing,1599 quench,1,muchadoaboutnothing,1599 medicinable,1,muchadoaboutnothing,1599 let's,1,muchadoaboutnothing,1599 Florence,1,muchadoaboutnothing,1599 chick,1,muchadoaboutnothing,1599 believing,1,muchadoaboutnothing,1599 brains,1,muchadoaboutnothing,1599 inch,1,muchadoaboutnothing,1599 greatest,1,muchadoaboutnothing,1599 painful,1,muchadoaboutnothing,1599 mournful,1,muchadoaboutnothing,1599 empoison,1,muchadoaboutnothing,1599 transshape,1,muchadoaboutnothing,1599 wives',1,muchadoaboutnothing,1599 beside,1,muchadoaboutnothing,1599 County,1,muchadoaboutnothing,1599 Antonio,1,muchadoaboutnothing,1599 infect,1,muchadoaboutnothing,1599 lapwing,1,muchadoaboutnothing,1599 shoulder,1,muchadoaboutnothing,1599 mountain,1,muchadoaboutnothing,1599 amazement,1,muchadoaboutnothing,1599 brethren,1,muchadoaboutnothing,1599 free,1,muchadoaboutnothing,1599 discharge,1,muchadoaboutnothing,1599 naught,1,muchadoaboutnothing,1599 bleat,1,muchadoaboutnothing,1599 carving,1,muchadoaboutnothing,1599 impiety,1,muchadoaboutnothing,1599 Choose,1,muchadoaboutnothing,1599 stake,1,muchadoaboutnothing,1599 stairs,1,muchadoaboutnothing,1599 division,1,muchadoaboutnothing,1599 mistress',1,muchadoaboutnothing,1599 Perhaps,1,muchadoaboutnothing,1599 sayest,1,muchadoaboutnothing,1599 Question,1,muchadoaboutnothing,1599 desires,1,muchadoaboutnothing,1599 sedges,1,muchadoaboutnothing,1599 disguises,1,muchadoaboutnothing,1599 ancientry,1,muchadoaboutnothing,1599 maintain'd,1,muchadoaboutnothing,1599 o'clock,1,muchadoaboutnothing,1599 stain,1,muchadoaboutnothing,1599 louder,1,muchadoaboutnothing,1599 overjoyed,1,muchadoaboutnothing,1599 possession,1,muchadoaboutnothing,1599 woodcock,1,muchadoaboutnothing,1599 expedient,1,muchadoaboutnothing,1599 horribly,1,muchadoaboutnothing,1599 fray,1,muchadoaboutnothing,1599 proves,1,muchadoaboutnothing,1599 behalf,1,muchadoaboutnothing,1599 howled,1,muchadoaboutnothing,1599 curiously,1,muchadoaboutnothing,1599 knavery,1,muchadoaboutnothing,1599 trembling,1,muchadoaboutnothing,1599 doctor,1,muchadoaboutnothing,1599 affairs,1,muchadoaboutnothing,1599 agate,1,muchadoaboutnothing,1599 woodbine,1,muchadoaboutnothing,1599 'for,1,muchadoaboutnothing,1599 finder,1,muchadoaboutnothing,1599 grave,1,muchadoaboutnothing,1599 bettered,1,muchadoaboutnothing,1599 rabato,1,muchadoaboutnothing,1599 example,1,muchadoaboutnothing,1599 repenting,1,muchadoaboutnothing,1599 salt,1,muchadoaboutnothing,1599 employer,1,muchadoaboutnothing,1599 today,1,muchadoaboutnothing,1599 former,1,muchadoaboutnothing,1599 twelvemonth,1,muchadoaboutnothing,1599 dishonour,1,muchadoaboutnothing,1599 disloyalty,1,muchadoaboutnothing,1599 fits,1,muchadoaboutnothing,1599 purchaseth,1,muchadoaboutnothing,1599 boarded,1,muchadoaboutnothing,1599 Whisper,1,muchadoaboutnothing,1599 win,1,muchadoaboutnothing,1599 oft,1,muchadoaboutnothing,1599 persons,1,muchadoaboutnothing,1599 certainer,1,muchadoaboutnothing,1599 message,1,muchadoaboutnothing,1599 redemption,1,muchadoaboutnothing,1599 'Twill,1,muchadoaboutnothing,1599 court,1,muchadoaboutnothing,1599 cure,1,muchadoaboutnothing,1599 bread,1,muchadoaboutnothing,1599 Moreover,1,muchadoaboutnothing,1599 began'st,1,muchadoaboutnothing,1599 third,1,muchadoaboutnothing,1599 smock,1,muchadoaboutnothing,1599 waggling,1,muchadoaboutnothing,1599 Tuesday,1,muchadoaboutnothing,1599 Tales,1,muchadoaboutnothing,1599 manifest,1,muchadoaboutnothing,1599 stabs,1,muchadoaboutnothing,1599 Dead,1,muchadoaboutnothing,1599 dishonesty,1,muchadoaboutnothing,1599 oak,1,muchadoaboutnothing,1599 Grieved,1,muchadoaboutnothing,1599 Dear,1,muchadoaboutnothing,1599 Antipodes,1,muchadoaboutnothing,1599 cheapen,1,muchadoaboutnothing,1599 cuts,1,muchadoaboutnothing,1599 Venice,1,muchadoaboutnothing,1599 hearers,1,muchadoaboutnothing,1599 differ,1,muchadoaboutnothing,1599 remains,1,muchadoaboutnothing,1599 masks,1,muchadoaboutnothing,1599 arbour,1,muchadoaboutnothing,1599 unconfirmed,1,muchadoaboutnothing,1599 beliest,1,muchadoaboutnothing,1599 torture,1,muchadoaboutnothing,1599 patiently,1,muchadoaboutnothing,1599 thwarting,1,muchadoaboutnothing,1599 Thine,1,muchadoaboutnothing,1599 invincible,1,muchadoaboutnothing,1599 Charm,1,muchadoaboutnothing,1599 comparison,1,muchadoaboutnothing,1599 decreed,1,muchadoaboutnothing,1599 dust,1,muchadoaboutnothing,1599 'True,1,muchadoaboutnothing,1599 oars,1,muchadoaboutnothing,1599 Boys,1,muchadoaboutnothing,1599 rise,1,muchadoaboutnothing,1599 misprision,1,muchadoaboutnothing,1599 nuptial,1,muchadoaboutnothing,1599 important,1,muchadoaboutnothing,1599 intent,1,muchadoaboutnothing,1599 oath,1,muchadoaboutnothing,1599 print,1,muchadoaboutnothing,1599 rite,1,muchadoaboutnothing,1599 wag,1,muchadoaboutnothing,1599 intend,1,muchadoaboutnothing,1599 prompting,1,muchadoaboutnothing,1599 girdle,1,muchadoaboutnothing,1599 arrow,1,muchadoaboutnothing,1599 wanton,1,muchadoaboutnothing,1599 resistance,1,muchadoaboutnothing,1599 dying,1,muchadoaboutnothing,1599 bullets,1,muchadoaboutnothing,1599 ends,1,muchadoaboutnothing,1599 tolerable,1,muchadoaboutnothing,1599 basted,1,muchadoaboutnothing,1599 Princes,1,muchadoaboutnothing,1599 price,1,muchadoaboutnothing,1599 Mass,1,muchadoaboutnothing,1599 spectacles,1,muchadoaboutnothing,1599 bearded,1,muchadoaboutnothing,1599 coming,1,muchadoaboutnothing,1599 clod,1,muchadoaboutnothing,1599 stayed,1,muchadoaboutnothing,1599 prohibit,1,muchadoaboutnothing,1599 Monsieur,1,muchadoaboutnothing,1599 festival,1,muchadoaboutnothing,1599 enforced,1,muchadoaboutnothing,1599 'by,1,muchadoaboutnothing,1599 curses,1,muchadoaboutnothing,1599 Gives,1,muchadoaboutnothing,1599 angle,1,muchadoaboutnothing,1599 familiar,1,muchadoaboutnothing,1599 Hercules',1,muchadoaboutnothing,1599 unmitigated,1,muchadoaboutnothing,1599 breadth,1,muchadoaboutnothing,1599 faces,1,muchadoaboutnothing,1599 dreamt,1,muchadoaboutnothing,1599 mettle,1,muchadoaboutnothing,1599 seize,1,muchadoaboutnothing,1599 thankfulness,1,muchadoaboutnothing,1599 earthquake,1,muchadoaboutnothing,1599 Bid,1,muchadoaboutnothing,1599 takes,1,muchadoaboutnothing,1599 faced,1,muchadoaboutnothing,1599 taker,1,muchadoaboutnothing,1599 fallen,1,muchadoaboutnothing,1599 taken,1,muchadoaboutnothing,1599 untowardly,1,muchadoaboutnothing,1599 anticly,1,muchadoaboutnothing,1599 exclamation,1,muchadoaboutnothing,1599 earthly,1,muchadoaboutnothing,1599 rotten,1,muchadoaboutnothing,1599 desertless,1,muchadoaboutnothing,1599 charged,1,muchadoaboutnothing,1599 fife,1,muchadoaboutnothing,1599 clapped,1,muchadoaboutnothing,1599 Misprising,1,muchadoaboutnothing,1599 anger,1,muchadoaboutnothing,1599 weeping,1,muchadoaboutnothing,1599 killing,1,muchadoaboutnothing,1599 drovier,1,muchadoaboutnothing,1599 clapper,1,muchadoaboutnothing,1599 lechery,1,muchadoaboutnothing,1599 knight,1,muchadoaboutnothing,1599 bitterness,1,muchadoaboutnothing,1599 Niece,1,muchadoaboutnothing,1599 rain,1,muchadoaboutnothing,1599 'lady',1,muchadoaboutnothing,1599 Maintain'd,1,muchadoaboutnothing,1599 determined,1,muchadoaboutnothing,1599 stuffing,1,muchadoaboutnothing,1599 drops,1,muchadoaboutnothing,1599 harvest,1,muchadoaboutnothing,1599 wooer,1,muchadoaboutnothing,1599 waste,1,muchadoaboutnothing,1599 fox,1,muchadoaboutnothing,1599 ope,1,muchadoaboutnothing,1599 wrong'd,1,muchadoaboutnothing,1599 followers,1,muchadoaboutnothing,1599 crotchets,1,muchadoaboutnothing,1599 satire,1,muchadoaboutnothing,1599 Show,1,muchadoaboutnothing,1599 untruths,1,muchadoaboutnothing,1599 grieve,1,muchadoaboutnothing,1599 hunger,1,muchadoaboutnothing,1599 cried,1,muchadoaboutnothing,1599 evil,1,muchadoaboutnothing,1599 'fool,1,muchadoaboutnothing,1599 inwardly,1,muchadoaboutnothing,1599 Make,1,muchadoaboutnothing,1599 durst,1,muchadoaboutnothing,1599 bruise,1,muchadoaboutnothing,1599 ground,1,muchadoaboutnothing,1599 minds,1,muchadoaboutnothing,1599 Time,1,muchadoaboutnothing,1599 cloth,1,muchadoaboutnothing,1599 highly,1,muchadoaboutnothing,1599 weapons,1,muchadoaboutnothing,1599 miracle,1,muchadoaboutnothing,1599 Till,1,muchadoaboutnothing,1599 That's,1,muchadoaboutnothing,1599 orb,1,muchadoaboutnothing,1599 grant,1,muchadoaboutnothing,1599 rack,1,muchadoaboutnothing,1599 appertain,1,muchadoaboutnothing,1599 Proposing,1,muchadoaboutnothing,1599 kinsman,1,muchadoaboutnothing,1599 cared,1,muchadoaboutnothing,1599 misfortune,1,muchadoaboutnothing,1599 Runs,1,muchadoaboutnothing,1599 wounds,1,muchadoaboutnothing,1599 dearness,1,muchadoaboutnothing,1599 endeared,1,muchadoaboutnothing,1599 worn,1,muchadoaboutnothing,1599 'he,1,muchadoaboutnothing,1599 wickedness,1,muchadoaboutnothing,1599 prolong'd,1,muchadoaboutnothing,1599 passing,1,muchadoaboutnothing,1599 dancing,1,muchadoaboutnothing,1599 fie,1,muchadoaboutnothing,1599 Bel's,1,muchadoaboutnothing,1599 unjust,1,muchadoaboutnothing,1599 endeavour,1,muchadoaboutnothing,1599 Mark,1,muchadoaboutnothing,1599 scabbard,1,muchadoaboutnothing,1599 wishing,1,muchadoaboutnothing,1599 howsoever,1,muchadoaboutnothing,1599 ribs,1,muchadoaboutnothing,1599 engaged,1,muchadoaboutnothing,1599 Benedict,1,muchadoaboutnothing,1599 claw,1,muchadoaboutnothing,1599 damnation,1,muchadoaboutnothing,1599 folly,1,muchadoaboutnothing,1599 reprove,1,muchadoaboutnothing,1599 managing,1,muchadoaboutnothing,1599 hose,1,muchadoaboutnothing,1599 dotard,1,muchadoaboutnothing,1599 bark,1,muchadoaboutnothing,1599 duties,1,muchadoaboutnothing,1599 Fare,1,muchadoaboutnothing,1599 'Get,1,muchadoaboutnothing,1599 Prester,1,muchadoaboutnothing,1599 pocket,1,muchadoaboutnothing,1599 ostentation,1,muchadoaboutnothing,1599 immodest,1,muchadoaboutnothing,1599 kill'st,1,muchadoaboutnothing,1599 wealth,1,muchadoaboutnothing,1599 brushes,1,muchadoaboutnothing,1599 vex,1,muchadoaboutnothing,1599 Reading,1,muchadoaboutnothing,1599 prospect,1,muchadoaboutnothing,1599 perceive,1,muchadoaboutnothing,1599 Worm,1,muchadoaboutnothing,1599 chiefly,1,muchadoaboutnothing,1599 wrongfully,1,muchadoaboutnothing,1599 bate,1,muchadoaboutnothing,1599 salvation,1,muchadoaboutnothing,1599 Foul,1,muchadoaboutnothing,1599 reproach,1,muchadoaboutnothing,1599 base,1,muchadoaboutnothing,1599 strikes,1,muchadoaboutnothing,1599 public,1,muchadoaboutnothing,1599 maker's,1,muchadoaboutnothing,1599 thanked,1,muchadoaboutnothing,1599 Cut,1,muchadoaboutnothing,1599 qualify,1,muchadoaboutnothing,1599 dialogue,1,muchadoaboutnothing,1599 extenuate,1,muchadoaboutnothing,1599 slanderous,1,muchadoaboutnothing,1599 jade's,1,muchadoaboutnothing,1599 appointed,1,muchadoaboutnothing,1599 band,1,muchadoaboutnothing,1599 afeared,1,muchadoaboutnothing,1599 friendship,1,muchadoaboutnothing,1599 hook,1,muchadoaboutnothing,1599 Containing,1,muchadoaboutnothing,1599 tame,1,muchadoaboutnothing,1599 tabour,1,muchadoaboutnothing,1599 names,1,muchadoaboutnothing,1599 Leander,1,muchadoaboutnothing,1599 accustomed,1,muchadoaboutnothing,1599 daw,1,muchadoaboutnothing,1599 'Then',1,muchadoaboutnothing,1599 named,1,muchadoaboutnothing,1599 songs,1,muchadoaboutnothing,1599 evidence,1,muchadoaboutnothing,1599 sentences,1,muchadoaboutnothing,1599 Welcome,1,muchadoaboutnothing,1599 author,1,muchadoaboutnothing,1599 gallant,1,muchadoaboutnothing,1599 ecstasy,1,muchadoaboutnothing,1599 ache,1,muchadoaboutnothing,1599 lap,1,muchadoaboutnothing,1599 accusers,1,muchadoaboutnothing,1599 tall,1,muchadoaboutnothing,1599 coat,1,muchadoaboutnothing,1599 'Against,1,muchadoaboutnothing,1599 Fate,1,muchadoaboutnothing,1599 falsely,1,muchadoaboutnothing,1599 conversed,1,muchadoaboutnothing,1599 gentlemen,1,muchadoaboutnothing,1599 Carduus,1,muchadoaboutnothing,1599 appearance,1,muchadoaboutnothing,1599 cue,1,muchadoaboutnothing,1599 stroke,1,muchadoaboutnothing,1599 Trust,1,muchadoaboutnothing,1599 carry,1,muchadoaboutnothing,1599 entering,1,muchadoaboutnothing,1599 alms,1,muchadoaboutnothing,1599 beshrew,1,muchadoaboutnothing,1599 holds,1,muchadoaboutnothing,1599 shore,1,muchadoaboutnothing,1599 getting,1,muchadoaboutnothing,1599 accident,1,muchadoaboutnothing,1599 chapel,1,muchadoaboutnothing,1599 lieutenant's,1,muchadoaboutnothing,1599 quit,1,muchadoaboutnothing,1599 sparkling,1,muchadoaboutnothing,1599 clean,1,muchadoaboutnothing,1599 Hired,1,muchadoaboutnothing,1599 Wash'd,1,muchadoaboutnothing,1599 dozen,1,muchadoaboutnothing,1599 green,1,muchadoaboutnothing,1599 advertisement,1,muchadoaboutnothing,1599 virginity,1,muchadoaboutnothing,1599 Milan's,1,muchadoaboutnothing,1599 concluded,1,muchadoaboutnothing,1599 dishes,1,muchadoaboutnothing,1599 Lives,1,muchadoaboutnothing,1599 devour,1,muchadoaboutnothing,1599 follows,1,muchadoaboutnothing,1599 constrain,1,muchadoaboutnothing,1599 Although,1,muchadoaboutnothing,1599 ranges,1,muchadoaboutnothing,1599 carve,1,muchadoaboutnothing,1599 victual,1,muchadoaboutnothing,1599 forsooth,1,muchadoaboutnothing,1599 flood,1,muchadoaboutnothing,1599 liver,1,muchadoaboutnothing,1599 streets,1,muchadoaboutnothing,1599 commonwealth,1,muchadoaboutnothing,1599 defeat,1,muchadoaboutnothing,1599 horses,1,muchadoaboutnothing,1599 writing,1,muchadoaboutnothing,1599 Wherefore,1,muchadoaboutnothing,1599 subscribed,1,muchadoaboutnothing,1599 wrestle,1,muchadoaboutnothing,1599 bookful,1,muchadoaboutnothing,1599 conjure,1,muchadoaboutnothing,1599 task,1,muchadoaboutnothing,1599 blazon,1,muchadoaboutnothing,1599 fitted,1,muchadoaboutnothing,1599 calf's,1,muchadoaboutnothing,1599 prayers,1,muchadoaboutnothing,1599 cleft,1,muchadoaboutnothing,1599 unmeet,1,muchadoaboutnothing,1599 thronging,1,muchadoaboutnothing,1599 usurer's,1,muchadoaboutnothing,1599 beset,1,muchadoaboutnothing,1599 interest,1,muchadoaboutnothing,1599 hairs,1,muchadoaboutnothing,1599 perfumer,1,muchadoaboutnothing,1599 fourteen,1,muchadoaboutnothing,1599 copy,1,muchadoaboutnothing,1599 cool,1,muchadoaboutnothing,1599 cook,1,muchadoaboutnothing,1599 disdained,1,muchadoaboutnothing,1599 lying,1,muchadoaboutnothing,1599 dishonoured,1,muchadoaboutnothing,1599 undergoes,1,muchadoaboutnothing,1599 inward,1,muchadoaboutnothing,1599 rearward,1,muchadoaboutnothing,1599 adieu,1,muchadoaboutnothing,1599 needful,1,muchadoaboutnothing,1599 publish,1,muchadoaboutnothing,1599 reckoning,1,muchadoaboutnothing,1599 crept,1,muchadoaboutnothing,1599 massy,1,muchadoaboutnothing,1599 plaintiff,1,muchadoaboutnothing,1599 knowest,1,muchadoaboutnothing,1599 cog,1,muchadoaboutnothing,1599 July,1,muchadoaboutnothing,1599 marvellous,1,muchadoaboutnothing,1599 look'd,1,muchadoaboutnothing,1599 coy,1,muchadoaboutnothing,1599 discretion,1,muchadoaboutnothing,1599 arrows,1,muchadoaboutnothing,1599 courtesy,1,muchadoaboutnothing,1599 understood,1,muchadoaboutnothing,1599 undertakes,1,muchadoaboutnothing,1599 burned,1,muchadoaboutnothing,1599 Mine,1,muchadoaboutnothing,1599 fellows,1,muchadoaboutnothing,1599 Dian,1,muchadoaboutnothing,1599 debated,1,muchadoaboutnothing,1599 Believe,1,muchadoaboutnothing,1599 estimation,1,muchadoaboutnothing,1599 Speaking,1,muchadoaboutnothing,1599 Lackbeard,1,muchadoaboutnothing,1599 foining,1,muchadoaboutnothing,1599 thrust,1,muchadoaboutnothing,1599 Gentlemen,1,muchadoaboutnothing,1599 deprave,1,muchadoaboutnothing,1599 mistrusted,1,muchadoaboutnothing,1599 tree,1,muchadoaboutnothing,1599 downward,1,muchadoaboutnothing,1599 nights,1,muchadoaboutnothing,1599 musician,1,muchadoaboutnothing,1599 cushion,1,muchadoaboutnothing,1599 rhyming,1,muchadoaboutnothing,1599 revelling,1,muchadoaboutnothing,1599 kindred,1,muchadoaboutnothing,1599 Use,1,muchadoaboutnothing,1599 excellency,1,muchadoaboutnothing,1599 blushing,1,muchadoaboutnothing,1599 apartment,1,muchadoaboutnothing,1599 raven,1,muchadoaboutnothing,1599 excellence,1,muchadoaboutnothing,1599 Close,1,muchadoaboutnothing,1599 Cry,1,muchadoaboutnothing,1599 sell,1,muchadoaboutnothing,1599 Just,1,muchadoaboutnothing,1599 aloud,1,muchadoaboutnothing,1599 'God,1,muchadoaboutnothing,1599 Meantime,1,muchadoaboutnothing,1599 blank,1,muchadoaboutnothing,1599 post,1,muchadoaboutnothing,1599 avoids,1,muchadoaboutnothing,1599 Graves,1,muchadoaboutnothing,1599 gloss,1,muchadoaboutnothing,1599 leg,1,muchadoaboutnothing,1599 prison,1,muchadoaboutnothing,1599 Neither,1,muchadoaboutnothing,1599 nakedness,1,muchadoaboutnothing,1599 reputed,1,muchadoaboutnothing,1599 simpleness,1,muchadoaboutnothing,1599 grieved,1,muchadoaboutnothing,1599 deceive,1,muchadoaboutnothing,1599 carriage,1,muchadoaboutnothing,1599 herald,1,muchadoaboutnothing,1599 regards,1,muchadoaboutnothing,1599 sickness,1,muchadoaboutnothing,1599 Fashion'd,1,muchadoaboutnothing,1599 baes,1,muchadoaboutnothing,1599 leagues,1,muchadoaboutnothing,1599 smirch'd,1,muchadoaboutnothing,1599 convert,1,muchadoaboutnothing,1599 March,1,muchadoaboutnothing,1599 afterward,1,muchadoaboutnothing,1599 detractions,1,muchadoaboutnothing,1599 Mistress,1,muchadoaboutnothing,1599 couple,1,muchadoaboutnothing,1599 bestow,1,muchadoaboutnothing,1599 sincerely,1,muchadoaboutnothing,1599 master's,1,muchadoaboutnothing,1599 chances,1,muchadoaboutnothing,1599 Smother,1,muchadoaboutnothing,1599 unkissed,1,muchadoaboutnothing,1599 nature's,1,muchadoaboutnothing,1599 scorned,1,muchadoaboutnothing,1599 trow,1,muchadoaboutnothing,1599 thread,1,muchadoaboutnothing,1599 brow,1,muchadoaboutnothing,1599 choke,1,muchadoaboutnothing,1599 endured,1,muchadoaboutnothing,1599 Adam's,1,muchadoaboutnothing,1599 Rightly,1,muchadoaboutnothing,1599 tipped,1,muchadoaboutnothing,1599 rancour,1,muchadoaboutnothing,1599 suitor,1,muchadoaboutnothing,1599 daff,1,muchadoaboutnothing,1599 Serve,1,muchadoaboutnothing,1599 imagination,1,muchadoaboutnothing,1599 midway,1,muchadoaboutnothing,1599 barr'd,1,muchadoaboutnothing,1599 encounters,1,muchadoaboutnothing,1599 maintained,1,muchadoaboutnothing,1599 guts,1,muchadoaboutnothing,1599 However,1,muchadoaboutnothing,1599 'scape,1,muchadoaboutnothing,1599 Saturn,1,muchadoaboutnothing,1599 balance,1,muchadoaboutnothing,1599 rheum,1,muchadoaboutnothing,1599 sufficiency,1,muchadoaboutnothing,1599 unclasp,1,muchadoaboutnothing,1599 Five,1,muchadoaboutnothing,1599 forced,1,muchadoaboutnothing,1599 reward,1,muchadoaboutnothing,1599 enamoured,1,muchadoaboutnothing,1599 begins,1,muchadoaboutnothing,1599 contemptible,1,muchadoaboutnothing,1599 reclusive,1,muchadoaboutnothing,1599 doing,1,muchadoaboutnothing,1599 trusted,1,muchadoaboutnothing,1599 sadness,1,muchadoaboutnothing,1599 dealing,1,muchadoaboutnothing,1599 impious,1,muchadoaboutnothing,1599 chosen,1,muchadoaboutnothing,1599 swimmer,1,muchadoaboutnothing,1599 headed,1,muchadoaboutnothing,1599 trim,1,muchadoaboutnothing,1599 censured,1,muchadoaboutnothing,1599 treacherous,1,muchadoaboutnothing,1599 Always,1,muchadoaboutnothing,1599 upward,1,muchadoaboutnothing,1599 angling,1,muchadoaboutnothing,1599 mortifying,1,muchadoaboutnothing,1599 fatherly,1,muchadoaboutnothing,1599 employment,1,muchadoaboutnothing,1599 street,1,muchadoaboutnothing,1599 verified,1,muchadoaboutnothing,1599 Otecake,1,muchadoaboutnothing,1599 comforter,1,muchadoaboutnothing,1599 whip,1,muchadoaboutnothing,1599 merciful,1,muchadoaboutnothing,1599 limit,1,muchadoaboutnothing,1599 animals,1,muchadoaboutnothing,1599 Men,1,muchadoaboutnothing,1599 ravished,1,muchadoaboutnothing,1599 biting,1,muchadoaboutnothing,1599 county,1,muchadoaboutnothing,1599 Neighbours,1,muchadoaboutnothing,1599 bethink,1,muchadoaboutnothing,1599 crafty,1,muchadoaboutnothing,1599 hastily,1,muchadoaboutnothing,1599 pernicious,1,muchadoaboutnothing,1599 quarrels,1,muchadoaboutnothing,1599 reeky,1,muchadoaboutnothing,1599 withdraw,1,muchadoaboutnothing,1599 harmony,1,muchadoaboutnothing,1599 liege,1,muchadoaboutnothing,1599 henceforth,1,muchadoaboutnothing,1599 lion,1,muchadoaboutnothing,1599 parlor,1,muchadoaboutnothing,1599 on't,1,muchadoaboutnothing,1599 lustihood,1,muchadoaboutnothing,1599 Withdraws,1,muchadoaboutnothing,1599 mourning,1,muchadoaboutnothing,1599 mannerly,1,muchadoaboutnothing,1599 telling,1,muchadoaboutnothing,1599 German,1,muchadoaboutnothing,1599 thereupon,1,muchadoaboutnothing,1599 sometimes,1,muchadoaboutnothing,1599 tattling,1,muchadoaboutnothing,1599 jesting,1,muchadoaboutnothing,1599 respects,1,muchadoaboutnothing,1599 carpet,1,muchadoaboutnothing,1599 fraud,1,muchadoaboutnothing,1599 unseasonable,1,muchadoaboutnothing,1599 gull,1,muchadoaboutnothing,1599 politic,1,muchadoaboutnothing,1599 Yonder's,1,muchadoaboutnothing,1599 perfectest,1,muchadoaboutnothing,1599 'forehand,1,muchadoaboutnothing,1599 Maintain,1,muchadoaboutnothing,1599 late,1,muchadoaboutnothing,1599 Sings,1,muchadoaboutnothing,1599 limed,1,muchadoaboutnothing,1599 truant,1,muchadoaboutnothing,1599 sleeping,1,muchadoaboutnothing,1599 dishonour'd,1,muchadoaboutnothing,1599 tartly,1,muchadoaboutnothing,1599 orthography,1,muchadoaboutnothing,1599 seemed,1,muchadoaboutnothing,1599 Done,1,muchadoaboutnothing,1599 severally,1,muchadoaboutnothing,1599 recompense,1,muchadoaboutnothing,1599 Without,1,muchadoaboutnothing,1599 gets,1,muchadoaboutnothing,1599 Round,1,muchadoaboutnothing,1599 revenged,1,muchadoaboutnothing,1599 divinity,1,muchadoaboutnothing,1599 suited,1,muchadoaboutnothing,1599 squire,1,muchadoaboutnothing,1599 prouder,1,muchadoaboutnothing,1599 appetite,1,muchadoaboutnothing,1599 misgovernment,1,muchadoaboutnothing,1599 nature,1,muchadoaboutnothing,1599 leafy,1,muchadoaboutnothing,1599 books,1,muchadoaboutnothing,1599 ripen'd,1,muchadoaboutnothing,1599 wooers,1,muchadoaboutnothing,1599 moe,1,muchadoaboutnothing,1599 content,1,muchadoaboutnothing,1599 decerns,1,muchadoaboutnothing,1599 eftest,1,muchadoaboutnothing,1599 conflict,1,muchadoaboutnothing,1599 dwells,1,muchadoaboutnothing,1599 try,1,muchadoaboutnothing,1599 shrewd,1,muchadoaboutnothing,1599 silent,1,muchadoaboutnothing,1599 assurance,1,muchadoaboutnothing,1599 Therein,1,muchadoaboutnothing,1599 witty,1,muchadoaboutnothing,1599 harpy,1,muchadoaboutnothing,1599 widow,1,muchadoaboutnothing,1599 numbers,1,muchadoaboutnothing,1599 cover'd,1,muchadoaboutnothing,1599 earned,1,muchadoaboutnothing,1599 Gallants,1,muchadoaboutnothing,1599 You'll,1,muchadoaboutnothing,1599 brag,1,muchadoaboutnothing,1599 Goodman,1,muchadoaboutnothing,1599 invited,1,muchadoaboutnothing,1599 confirm,1,muchadoaboutnothing,1599 respect,1,muchadoaboutnothing,1599 asleep,1,muchadoaboutnothing,1599 attend,1,muchadoaboutnothing,1599 princely,1,muchadoaboutnothing,1599 dark,1,muchadoaboutnothing,1599 Ability,1,muchadoaboutnothing,1599 losses,1,muchadoaboutnothing,1599 perchance,1,muchadoaboutnothing,1599 overwhelm'd,1,muchadoaboutnothing,1599 sudden,1,muchadoaboutnothing,1599 Rich,1,muchadoaboutnothing,1599 pent,1,muchadoaboutnothing,1599 observations,1,muchadoaboutnothing,1599 top,1,muchadoaboutnothing,1599 another's,1,muchadoaboutnothing,1599 dry,1,muchadoaboutnothing,1599 transgressed,1,muchadoaboutnothing,1599 bred,1,muchadoaboutnothing,1599 troths,1,muchadoaboutnothing,1599 mum,1,muchadoaboutnothing,1599 'hem,1,muchadoaboutnothing,1599 instantly,1,muchadoaboutnothing,1599 DRAMATIS,1,muchadoaboutnothing,1599 slew,1,muchadoaboutnothing,1599 Until,1,muchadoaboutnothing,1599 success,1,muchadoaboutnothing,1599 leap'd,1,muchadoaboutnothing,1599 shift,1,muchadoaboutnothing,1599 shake,1,muchadoaboutnothing,1599 tis,1,muchadoaboutnothing,1599 tip,1,muchadoaboutnothing,1599 vacant,1,muchadoaboutnothing,1599 lineament,1,muchadoaboutnothing,1599 burden,1,muchadoaboutnothing,1599 armed,1,muchadoaboutnothing,1599 leans,1,muchadoaboutnothing,1599 Too,1,muchadoaboutnothing,1599 duller,1,muchadoaboutnothing,1599 pamper'd,1,muchadoaboutnothing,1599 Take,1,muchadoaboutnothing,1599 experimental,1,muchadoaboutnothing,1599 record,1,muchadoaboutnothing,1599 obtain,1,muchadoaboutnothing,1599 cozened,1,muchadoaboutnothing,1599 encountered,1,muchadoaboutnothing,1599 schoolboy,1,muchadoaboutnothing,1599 king,1,muchadoaboutnothing,1599 quarreling,1,muchadoaboutnothing,1599 private,1,muchadoaboutnothing,1599 'That,1,muchadoaboutnothing,1599 Fair,1,muchadoaboutnothing,1599 command,1,muchadoaboutnothing,1599 terminations,1,muchadoaboutnothing,1599 jealousy,1,muchadoaboutnothing,1599 endowed,1,muchadoaboutnothing,1599 gloves,1,muchadoaboutnothing,1599 awake,1,muchadoaboutnothing,1599 tainted,1,muchadoaboutnothing,1599 Saying,1,muchadoaboutnothing,1599 eyelids,1,muchadoaboutnothing,1599 amaze,1,muchadoaboutnothing,1599 dedicates,1,muchadoaboutnothing,1599 catechising,1,muchadoaboutnothing,1599 remorse,1,muchadoaboutnothing,1599 justly,1,muchadoaboutnothing,1599 repair,1,muchadoaboutnothing,1599 stables,1,muchadoaboutnothing,1599 marked,1,muchadoaboutnothing,1599 flattering,1,muchadoaboutnothing,1599 accordant,1,muchadoaboutnothing,1599 oaths,1,muchadoaboutnothing,1599 bids,1,muchadoaboutnothing,1599 hangman,1,muchadoaboutnothing,1599 Fame,1,muchadoaboutnothing,1599 Hector,1,muchadoaboutnothing,1599 queasy,1,muchadoaboutnothing,1599 contaminated,1,muchadoaboutnothing,1599 Pharaoh's,1,muchadoaboutnothing,1599 shortened,1,muchadoaboutnothing,1599 market,1,muchadoaboutnothing,1599 dissembly,1,muchadoaboutnothing,1599 prey'd,1,muchadoaboutnothing,1599 family's,1,muchadoaboutnothing,1599 direction,1,muchadoaboutnothing,1599 crown,1,muchadoaboutnothing,1599 undertake,1,muchadoaboutnothing,1599 Brief,1,muchadoaboutnothing,1599 Florentine,1,muchadoaboutnothing,1599 mornings,1,muchadoaboutnothing,1599 epithet,1,muchadoaboutnothing,1599 Hugh,1,muchadoaboutnothing,1599 conjecture,1,muchadoaboutnothing,1599 endings,1,muchadoaboutnothing,1599 sharp,1,muchadoaboutnothing,1599 seek'st,1,muchadoaboutnothing,1599 Disloyal,1,muchadoaboutnothing,1599 scratched,1,muchadoaboutnothing,1599 fortunes,1,muchadoaboutnothing,1599 hedge,1,muchadoaboutnothing,1599 sway,1,muchadoaboutnothing,1599 exeunt,1,muchadoaboutnothing,1599 largely,1,muchadoaboutnothing,1599 summer,1,muchadoaboutnothing,1599 answered,2,muchadoaboutnothing,1599 event,2,muchadoaboutnothing,1599 Francis,2,muchadoaboutnothing,1599 willow,2,muchadoaboutnothing,1599 grey,2,muchadoaboutnothing,1599 c,2,muchadoaboutnothing,1599 days,2,muchadoaboutnothing,1599 reputation,2,muchadoaboutnothing,1599 Adam,2,muchadoaboutnothing,1599 leisure,2,muchadoaboutnothing,1599 infamy,2,muchadoaboutnothing,1599 speech,2,muchadoaboutnothing,1599 business,2,muchadoaboutnothing,1599 Alas,2,muchadoaboutnothing,1599 especially,2,muchadoaboutnothing,1599 neighbours,2,muchadoaboutnothing,1599 Fie,2,muchadoaboutnothing,1599 vane,2,muchadoaboutnothing,1599 hasty,2,muchadoaboutnothing,1599 bones,2,muchadoaboutnothing,1599 preparation,2,muchadoaboutnothing,1599 Wilt,2,muchadoaboutnothing,1599 easily,2,muchadoaboutnothing,1599 bucklers,2,muchadoaboutnothing,1599 drowsy,2,muchadoaboutnothing,1599 single,2,muchadoaboutnothing,1599 exceeds,2,muchadoaboutnothing,1599 jig,2,muchadoaboutnothing,1599 groan,2,muchadoaboutnothing,1599 prisoner,2,muchadoaboutnothing,1599 sight,2,muchadoaboutnothing,1599 offer,2,muchadoaboutnothing,1599 whipped,2,muchadoaboutnothing,1599 commodity,2,muchadoaboutnothing,1599 iron,2,muchadoaboutnothing,1599 contrary,2,muchadoaboutnothing,1599 Upon,2,muchadoaboutnothing,1599 bower,2,muchadoaboutnothing,1599 spare,2,muchadoaboutnothing,1599 plague,2,muchadoaboutnothing,1599 seven,2,muchadoaboutnothing,1599 disdain,2,muchadoaboutnothing,1599 birth,2,muchadoaboutnothing,1599 conscience,2,muchadoaboutnothing,1599 drive,2,muchadoaboutnothing,1599 working,2,muchadoaboutnothing,1599 Whose,2,muchadoaboutnothing,1599 bearing,2,muchadoaboutnothing,1599 assembly,2,muchadoaboutnothing,1599 corner,2,muchadoaboutnothing,1599 afterwards,2,muchadoaboutnothing,1599 subjects,2,muchadoaboutnothing,1599 Much,2,muchadoaboutnothing,1599 honestly,2,muchadoaboutnothing,1599 cheer,2,muchadoaboutnothing,1599 Only,2,muchadoaboutnothing,1599 calf,2,muchadoaboutnothing,1599 Tarry,2,muchadoaboutnothing,1599 fools,2,muchadoaboutnothing,1599 complexion,2,muchadoaboutnothing,1599 soft,2,muchadoaboutnothing,1599 black,2,muchadoaboutnothing,1599 shames,2,muchadoaboutnothing,1599 'twere,2,muchadoaboutnothing,1599 key,2,muchadoaboutnothing,1599 bode,2,muchadoaboutnothing,1599 saying,2,muchadoaboutnothing,1599 sea,2,muchadoaboutnothing,1599 yield,2,muchadoaboutnothing,1599 Was,2,muchadoaboutnothing,1599 where's,2,muchadoaboutnothing,1599 'I,2,muchadoaboutnothing,1599 's,2,muchadoaboutnothing,1599 within,2,muchadoaboutnothing,1599 disgrace,2,muchadoaboutnothing,1599 study,2,muchadoaboutnothing,1599 Music,2,muchadoaboutnothing,1599 betwixt,2,muchadoaboutnothing,1599 sends,2,muchadoaboutnothing,1599 daughter's,2,muchadoaboutnothing,1599 read,2,muchadoaboutnothing,1599 vile,2,muchadoaboutnothing,1599 merit,2,muchadoaboutnothing,1599 mocks,2,muchadoaboutnothing,1599 fight,2,muchadoaboutnothing,1599 danced,2,muchadoaboutnothing,1599 brain,2,muchadoaboutnothing,1599 piece,2,muchadoaboutnothing,1599 civil,2,muchadoaboutnothing,1599 kill'd,2,muchadoaboutnothing,1599 comely,2,muchadoaboutnothing,1599 runs,2,muchadoaboutnothing,1599 white,2,muchadoaboutnothing,1599 sun,2,muchadoaboutnothing,1599 promise,2,muchadoaboutnothing,1599 service,2,muchadoaboutnothing,1599 blind,2,muchadoaboutnothing,1599 behaviors,2,muchadoaboutnothing,1599 tax,2,muchadoaboutnothing,1599 rarely,2,muchadoaboutnothing,1599 title,2,muchadoaboutnothing,1599 mirth,2,muchadoaboutnothing,1599 length,2,muchadoaboutnothing,1599 knees,2,muchadoaboutnothing,1599 entertained,2,muchadoaboutnothing,1599 steal,2,muchadoaboutnothing,1599 heaven,2,muchadoaboutnothing,1599 seest,2,muchadoaboutnothing,1599 accuse,2,muchadoaboutnothing,1599 displeasure,2,muchadoaboutnothing,1599 stop,2,muchadoaboutnothing,1599 voice,2,muchadoaboutnothing,1599 wash,2,muchadoaboutnothing,1599 Ladies,2,muchadoaboutnothing,1599 wits,2,muchadoaboutnothing,1599 praised,2,muchadoaboutnothing,1599 fairest,2,muchadoaboutnothing,1599 Faith,2,muchadoaboutnothing,1599 I',2,muchadoaboutnothing,1599 obtained,2,muchadoaboutnothing,1599 deformed,2,muchadoaboutnothing,1599 His,2,muchadoaboutnothing,1599 Whiles,2,muchadoaboutnothing,1599 knowing,2,muchadoaboutnothing,1599 among,2,muchadoaboutnothing,1599 blown,2,muchadoaboutnothing,1599 smile,2,muchadoaboutnothing,1599 career,2,muchadoaboutnothing,1599 Nature,2,muchadoaboutnothing,1599 sensible,2,muchadoaboutnothing,1599 musty,2,muchadoaboutnothing,1599 creature,2,muchadoaboutnothing,1599 pleached,2,muchadoaboutnothing,1599 denied,2,muchadoaboutnothing,1599 brings,2,muchadoaboutnothing,1599 pen,2,muchadoaboutnothing,1599 force,2,muchadoaboutnothing,1599 Her,2,muchadoaboutnothing,1599 hid,2,muchadoaboutnothing,1599 wisdom,2,muchadoaboutnothing,1599 medicine,2,muchadoaboutnothing,1599 pleasure,2,muchadoaboutnothing,1599 bless,2,muchadoaboutnothing,1599 strangely,2,muchadoaboutnothing,1599 quick,2,muchadoaboutnothing,1599 past,2,muchadoaboutnothing,1599 commendation,2,muchadoaboutnothing,1599 changes,2,muchadoaboutnothing,1599 yourselves,2,muchadoaboutnothing,1599 quiet,2,muchadoaboutnothing,1599 obey,2,muchadoaboutnothing,1599 Antony,2,muchadoaboutnothing,1599 gowns,2,muchadoaboutnothing,1599 gold,2,muchadoaboutnothing,1599 weep,2,muchadoaboutnothing,1599 sits,2,muchadoaboutnothing,1599 Dance,2,muchadoaboutnothing,1599 bend,2,muchadoaboutnothing,1599 'the,2,muchadoaboutnothing,1599 bell,2,muchadoaboutnothing,1599 burn,2,muchadoaboutnothing,1599 cat,2,muchadoaboutnothing,1599 cap,2,muchadoaboutnothing,1599 Surely,2,muchadoaboutnothing,1599 learned,2,muchadoaboutnothing,1599 Save,2,muchadoaboutnothing,1599 bent,2,muchadoaboutnothing,1599 people,2,muchadoaboutnothing,1599 courtesies,2,muchadoaboutnothing,1599 embassage,2,muchadoaboutnothing,1599 twice,2,muchadoaboutnothing,1599 eaten,2,muchadoaboutnothing,1599 gaol,2,muchadoaboutnothing,1599 tedious,2,muchadoaboutnothing,1599 buy,2,muchadoaboutnothing,1599 gown,2,muchadoaboutnothing,1599 stronger,2,muchadoaboutnothing,1599 sink,2,muchadoaboutnothing,1599 paint,2,muchadoaboutnothing,1599 grace's,2,muchadoaboutnothing,1599 thirdly,2,muchadoaboutnothing,1599 Both,2,muchadoaboutnothing,1599 bull's,2,muchadoaboutnothing,1599 story,2,muchadoaboutnothing,1599 instant,2,muchadoaboutnothing,1599 promised,2,muchadoaboutnothing,1599 image,2,muchadoaboutnothing,1599 confess,2,muchadoaboutnothing,1599 aim,2,muchadoaboutnothing,1599 faster,2,muchadoaboutnothing,1599 stood,2,muchadoaboutnothing,1599 legs,2,muchadoaboutnothing,1599 gentlewomen,2,muchadoaboutnothing,1599 deal,2,muchadoaboutnothing,1599 Cousins,2,muchadoaboutnothing,1599 victory,2,muchadoaboutnothing,1599 lent,2,muchadoaboutnothing,1599 played,2,muchadoaboutnothing,1599 laughing,2,muchadoaboutnothing,1599 by'r,2,muchadoaboutnothing,1599 manner,2,muchadoaboutnothing,1599 ah,2,muchadoaboutnothing,1599 forget,2,muchadoaboutnothing,1599 thyself,2,muchadoaboutnothing,1599 door,2,muchadoaboutnothing,1599 feast,2,muchadoaboutnothing,1599 railed,2,muchadoaboutnothing,1599 month,2,muchadoaboutnothing,1599 account,2,muchadoaboutnothing,1599 Myself,2,muchadoaboutnothing,1599 hadst,2,muchadoaboutnothing,1599 ho,2,muchadoaboutnothing,1599 spent,2,muchadoaboutnothing,1599 governed,2,muchadoaboutnothing,1599 lose,2,muchadoaboutnothing,1599 twenty,2,muchadoaboutnothing,1599 greater,2,muchadoaboutnothing,1599 acquaint,2,muchadoaboutnothing,1599 pure,2,muchadoaboutnothing,1599 Because,2,muchadoaboutnothing,1599 string,2,muchadoaboutnothing,1599 round,2,muchadoaboutnothing,1599 fowl,2,muchadoaboutnothing,1599 shallow,2,muchadoaboutnothing,1599 pale,2,muchadoaboutnothing,1599 intended,2,muchadoaboutnothing,1599 four,2,muchadoaboutnothing,1599 thinkest,2,muchadoaboutnothing,1599 wisdoms,2,muchadoaboutnothing,1599 pluck,2,muchadoaboutnothing,1599 expect,2,muchadoaboutnothing,1599 commendable,2,muchadoaboutnothing,1599 weeps,2,muchadoaboutnothing,1599 form,2,muchadoaboutnothing,1599 delight,2,muchadoaboutnothing,1599 paid,2,muchadoaboutnothing,1599 ape,2,muchadoaboutnothing,1599 apt,2,muchadoaboutnothing,1599 hate,2,muchadoaboutnothing,1599 except,2,muchadoaboutnothing,1599 braggarts,2,muchadoaboutnothing,1599 food,2,muchadoaboutnothing,1599 revenge,2,muchadoaboutnothing,1599 error,2,muchadoaboutnothing,1599 jester,2,muchadoaboutnothing,1599 chance,2,muchadoaboutnothing,1599 Scotch,2,muchadoaboutnothing,1599 banquet,2,muchadoaboutnothing,1599 disdainful,2,muchadoaboutnothing,1599 trick,2,muchadoaboutnothing,1599 thistle,2,muchadoaboutnothing,1599 few,2,muchadoaboutnothing,1599 naughty,2,muchadoaboutnothing,1599 wooing,2,muchadoaboutnothing,1599 trial,2,muchadoaboutnothing,1599 Art,2,muchadoaboutnothing,1599 delicate,2,muchadoaboutnothing,1599 occasion,2,muchadoaboutnothing,1599 Madam,2,muchadoaboutnothing,1599 keeps,2,muchadoaboutnothing,1599 heavier,2,muchadoaboutnothing,1599 Europa,2,muchadoaboutnothing,1599 report,2,muchadoaboutnothing,1599 forehead,2,muchadoaboutnothing,1599 club,2,muchadoaboutnothing,1599 marks,2,muchadoaboutnothing,1599 beast,2,muchadoaboutnothing,1599 action,2,muchadoaboutnothing,1599 restore,2,muchadoaboutnothing,1599 dress,2,muchadoaboutnothing,1599 Peace,2,muchadoaboutnothing,1599 remedy,2,muchadoaboutnothing,1599 tender,2,muchadoaboutnothing,1599 blunt,2,muchadoaboutnothing,1599 sirrah,2,muchadoaboutnothing,1599 Love,2,muchadoaboutnothing,1599 likelihood,2,muchadoaboutnothing,1599 written,2,muchadoaboutnothing,1599 From,2,muchadoaboutnothing,1599 borne,2,muchadoaboutnothing,1599 alter,2,muchadoaboutnothing,1599 Monday,2,muchadoaboutnothing,1599 orange,2,muchadoaboutnothing,1599 freely,2,muchadoaboutnothing,1599 Doth,2,muchadoaboutnothing,1599 precious,2,muchadoaboutnothing,1599 placed,2,muchadoaboutnothing,1599 mourn,2,muchadoaboutnothing,1599 See,2,muchadoaboutnothing,1599 fantastical,2,muchadoaboutnothing,1599 singing,2,muchadoaboutnothing,1599 start,2,muchadoaboutnothing,1599 conclusion,2,muchadoaboutnothing,1599 knave,2,muchadoaboutnothing,1599 halting,2,muchadoaboutnothing,1599 didst,2,muchadoaboutnothing,1599 Heavily,2,muchadoaboutnothing,1599 curtsy,2,muchadoaboutnothing,1599 mark,2,muchadoaboutnothing,1599 won,2,muchadoaboutnothing,1599 gates,2,muchadoaboutnothing,1599 labour,2,muchadoaboutnothing,1599 fish,2,muchadoaboutnothing,1599 father's,2,muchadoaboutnothing,1599 hypocrite,2,muchadoaboutnothing,1599 uttered,2,muchadoaboutnothing,1599 Made,2,muchadoaboutnothing,1599 Being,2,muchadoaboutnothing,1599 letters,2,muchadoaboutnothing,1599 examined,2,muchadoaboutnothing,1599 converted,2,muchadoaboutnothing,1599 wed,2,muchadoaboutnothing,1599 sleeves,2,muchadoaboutnothing,1599 Coming,2,muchadoaboutnothing,1599 close,2,muchadoaboutnothing,1599 suspicion,2,muchadoaboutnothing,1599 maids,2,muchadoaboutnothing,1599 opinion,2,muchadoaboutnothing,1599 stalk,2,muchadoaboutnothing,1599 knife's,2,muchadoaboutnothing,1599 odd,2,muchadoaboutnothing,1599 'No,2,muchadoaboutnothing,1599 stale,2,muchadoaboutnothing,1599 pound,2,muchadoaboutnothing,1599 neck,2,muchadoaboutnothing,1599 blushes,2,muchadoaboutnothing,1599 style,2,muchadoaboutnothing,1599 slandered,2,muchadoaboutnothing,1599 hearer,2,muchadoaboutnothing,1599 Unmasking,2,muchadoaboutnothing,1599 sonnet,2,muchadoaboutnothing,1599 coxcomb,2,muchadoaboutnothing,1599 flight,2,muchadoaboutnothing,1599 certainly,2,muchadoaboutnothing,1599 heigh,2,muchadoaboutnothing,1599 liked,2,muchadoaboutnothing,1599 Think,2,muchadoaboutnothing,1599 war,2,muchadoaboutnothing,1599 army,2,muchadoaboutnothing,1599 staff,2,muchadoaboutnothing,1599 duty,2,muchadoaboutnothing,1599 themselves,2,muchadoaboutnothing,1599 sufferance,2,muchadoaboutnothing,1599 enraged,2,muchadoaboutnothing,1599 rage,2,muchadoaboutnothing,1599 assure,2,muchadoaboutnothing,1599 uncle's,2,muchadoaboutnothing,1599 bedfellow,2,muchadoaboutnothing,1599 peradventure,2,muchadoaboutnothing,1599 wont,2,muchadoaboutnothing,1599 mightily,2,muchadoaboutnothing,1599 requite,2,muchadoaboutnothing,1599 served,2,muchadoaboutnothing,1599 alley,2,muchadoaboutnothing,1599 Cupid's,2,muchadoaboutnothing,1599 Balthasar,2,muchadoaboutnothing,1599 poison,2,muchadoaboutnothing,1599 angel,2,muchadoaboutnothing,1599 lute,2,muchadoaboutnothing,1599 disposition,2,muchadoaboutnothing,1599 dull,2,muchadoaboutnothing,1599 nest,2,muchadoaboutnothing,1599 yoke,2,muchadoaboutnothing,1599 farther,2,muchadoaboutnothing,1599 wooes,2,muchadoaboutnothing,1599 sober,2,muchadoaboutnothing,1599 fail,2,muchadoaboutnothing,1599 Strike,2,muchadoaboutnothing,1599 minister,2,muchadoaboutnothing,1599 wept,2,muchadoaboutnothing,1599 'it,2,muchadoaboutnothing,1599 modesty,2,muchadoaboutnothing,1599 Brother,2,muchadoaboutnothing,1599 fame,2,muchadoaboutnothing,1599 worm,2,muchadoaboutnothing,1599 tune,2,muchadoaboutnothing,1599 heavily,2,muchadoaboutnothing,1599 clerk,2,muchadoaboutnothing,1599 officer,2,muchadoaboutnothing,1599 pleases,2,muchadoaboutnothing,1599 ne'er,2,muchadoaboutnothing,1599 assume,2,muchadoaboutnothing,1599 barber's,2,muchadoaboutnothing,1599 particular,2,muchadoaboutnothing,1599 birds',2,muchadoaboutnothing,1599 patient,2,muchadoaboutnothing,1599 noting,2,muchadoaboutnothing,1599 bird,2,muchadoaboutnothing,1599 large,2,muchadoaboutnothing,1599 law,2,muchadoaboutnothing,1599 amiable,2,muchadoaboutnothing,1599 excepted,2,muchadoaboutnothing,1599 given,2,muchadoaboutnothing,1599 torment,2,muchadoaboutnothing,1599 wild,2,muchadoaboutnothing,1599 shoot,2,muchadoaboutnothing,1599 creep,2,muchadoaboutnothing,1599 swears,2,muchadoaboutnothing,1599 professed,2,muchadoaboutnothing,1599 holp,2,muchadoaboutnothing,1599 giddy,2,muchadoaboutnothing,1599 cut,2,muchadoaboutnothing,1599 oyster,2,muchadoaboutnothing,1599 assist,2,muchadoaboutnothing,1599 tire,2,muchadoaboutnothing,1599 strong,2,muchadoaboutnothing,1599 lives,2,muchadoaboutnothing,1599 counsels,2,muchadoaboutnothing,1599 seal,2,muchadoaboutnothing,1599 masked,2,muchadoaboutnothing,1599 also,2,muchadoaboutnothing,1599 lovely,2,muchadoaboutnothing,1599 waiting,2,muchadoaboutnothing,1599 presence,2,muchadoaboutnothing,1599 coz,2,muchadoaboutnothing,1599 render,2,muchadoaboutnothing,1599 sound,2,muchadoaboutnothing,1599 True,2,muchadoaboutnothing,1599 expectation,2,muchadoaboutnothing,1599 arrant,2,muchadoaboutnothing,1599 confirm'd,2,muchadoaboutnothing,1599 person,2,muchadoaboutnothing,1599 congregation,2,muchadoaboutnothing,1599 avoid,2,muchadoaboutnothing,1599 briefly,2,muchadoaboutnothing,1599 lovest,2,muchadoaboutnothing,1599 hours,2,muchadoaboutnothing,1599 entreat,2,muchadoaboutnothing,1599 bait,2,muchadoaboutnothing,1599 souls,2,muchadoaboutnothing,1599 self,2,muchadoaboutnothing,1599 gods,2,muchadoaboutnothing,1599 overheard,2,muchadoaboutnothing,1599 cinque,2,muchadoaboutnothing,1599 undo,2,muchadoaboutnothing,1599 alas,2,muchadoaboutnothing,1599 talk'd,2,muchadoaboutnothing,1599 cold,2,muchadoaboutnothing,1599 nurse,2,muchadoaboutnothing,1599 season,2,muchadoaboutnothing,1599 lastly,2,muchadoaboutnothing,1599 coil,2,muchadoaboutnothing,1599 until,2,muchadoaboutnothing,1599 Two,2,muchadoaboutnothing,1599 effects,2,muchadoaboutnothing,1599 sleep,2,muchadoaboutnothing,1599 evening,2,muchadoaboutnothing,1599 nonny,2,muchadoaboutnothing,1599 perjury,2,muchadoaboutnothing,1599 least,2,muchadoaboutnothing,1599 wring,2,muchadoaboutnothing,1599 laughed,2,muchadoaboutnothing,1599 Another,2,muchadoaboutnothing,1599 sister,2,muchadoaboutnothing,1599 elbow,2,muchadoaboutnothing,1599 Since,2,muchadoaboutnothing,1599 pleasant,2,muchadoaboutnothing,1599 heartily,2,muchadoaboutnothing,1599 Away,2,muchadoaboutnothing,1599 Meg,2,muchadoaboutnothing,1599 punishment,2,muchadoaboutnothing,1599 amorous,2,muchadoaboutnothing,1599 whiles,2,muchadoaboutnothing,1599 flat,2,muchadoaboutnothing,1599 Padua,2,muchadoaboutnothing,1599 silver,2,muchadoaboutnothing,1599 list,2,muchadoaboutnothing,1599 'Father,2,muchadoaboutnothing,1599 Disdain,2,muchadoaboutnothing,1599 defiled,2,muchadoaboutnothing,1599 Death,2,muchadoaboutnothing,1599 simple,2,muchadoaboutnothing,1599 yesternight,2,muchadoaboutnothing,1599 Thy,2,muchadoaboutnothing,1599 Note,2,muchadoaboutnothing,1599 discovered,2,muchadoaboutnothing,1599 weigh,2,muchadoaboutnothing,1599 blessing,2,muchadoaboutnothing,1599 lamb,2,muchadoaboutnothing,1599 reverend,2,muchadoaboutnothing,1599 dotage,2,muchadoaboutnothing,1599 fence,2,muchadoaboutnothing,1599 smell,2,muchadoaboutnothing,1599 Talk,2,muchadoaboutnothing,1599 power,2,muchadoaboutnothing,1599 lack,2,muchadoaboutnothing,1599 enemy,2,muchadoaboutnothing,1599 remembered,2,muchadoaboutnothing,1599 that,258,muchadoaboutnothing,1599 forbid,3,muchadoaboutnothing,1599 Hear,3,muchadoaboutnothing,1599 heir,3,muchadoaboutnothing,1599 'Nay,3,muchadoaboutnothing,1599 rod,3,muchadoaboutnothing,1599 Benedick's,3,muchadoaboutnothing,1599 hell,3,muchadoaboutnothing,1599 Help,3,muchadoaboutnothing,1599 looked,3,muchadoaboutnothing,1599 withal,3,muchadoaboutnothing,1599 run,3,muchadoaboutnothing,1599 case,3,muchadoaboutnothing,1599 song,3,muchadoaboutnothing,1599 mercy,3,muchadoaboutnothing,1599 graces,3,muchadoaboutnothing,1599 Jove,3,muchadoaboutnothing,1599 possessed,3,muchadoaboutnothing,1599 rites,3,muchadoaboutnothing,1599 wait,3,muchadoaboutnothing,1599 partner,3,muchadoaboutnothing,1599 further,3,muchadoaboutnothing,1599 returned,3,muchadoaboutnothing,1599 bound,3,muchadoaboutnothing,1599 bastard,3,muchadoaboutnothing,1599 invention,3,muchadoaboutnothing,1599 deceived,3,muchadoaboutnothing,1599 wake,3,muchadoaboutnothing,1599 Write,3,muchadoaboutnothing,1599 'twas,3,muchadoaboutnothing,1599 embrace,3,muchadoaboutnothing,1599 Farewell,3,muchadoaboutnothing,1599 cause,3,muchadoaboutnothing,1599 mother,3,muchadoaboutnothing,1599 Attendants,3,muchadoaboutnothing,1599 These,3,muchadoaboutnothing,1599 turn,3,muchadoaboutnothing,1599 cousin's,3,muchadoaboutnothing,1599 Tush,3,muchadoaboutnothing,1599 fault,3,muchadoaboutnothing,1599 exceeding,3,muchadoaboutnothing,1599 encounter,3,muchadoaboutnothing,1599 companion,3,muchadoaboutnothing,1599 feel,3,muchadoaboutnothing,1599 beaten,3,muchadoaboutnothing,1599 brief,3,muchadoaboutnothing,1599 sword,3,muchadoaboutnothing,1599 wind,3,muchadoaboutnothing,1599 soldier,3,muchadoaboutnothing,1599 flesh,3,muchadoaboutnothing,1599 hence,3,muchadoaboutnothing,1599 Troth,3,muchadoaboutnothing,1599 meat,3,muchadoaboutnothing,1599 There's,3,muchadoaboutnothing,1599 wast,3,muchadoaboutnothing,1599 book,3,muchadoaboutnothing,1599 framed,3,muchadoaboutnothing,1599 parts,3,muchadoaboutnothing,1599 bills,3,muchadoaboutnothing,1599 wherefore,3,muchadoaboutnothing,1599 has,3,muchadoaboutnothing,1599 hat,3,muchadoaboutnothing,1599 What's,3,muchadoaboutnothing,1599 utter,3,muchadoaboutnothing,1599 At,3,muchadoaboutnothing,1599 secretly,3,muchadoaboutnothing,1599 Stand,3,muchadoaboutnothing,1599 star,3,muchadoaboutnothing,1599 Seacole,3,muchadoaboutnothing,1599 play,3,muchadoaboutnothing,1599 ears,3,muchadoaboutnothing,1599 proud,3,muchadoaboutnothing,1599 Is't,3,muchadoaboutnothing,1599 god,3,muchadoaboutnothing,1599 busy,3,muchadoaboutnothing,1599 goodly,3,muchadoaboutnothing,1599 kindness,3,muchadoaboutnothing,1599 moreover,3,muchadoaboutnothing,1599 dote,3,muchadoaboutnothing,1599 Speak,3,muchadoaboutnothing,1599 block,3,muchadoaboutnothing,1599 turns,3,muchadoaboutnothing,1599 ha,3,muchadoaboutnothing,1599 air,3,muchadoaboutnothing,1599 yea,3,muchadoaboutnothing,1599 gift,3,muchadoaboutnothing,1599 sheet,3,muchadoaboutnothing,1599 beat,3,muchadoaboutnothing,1599 handsome,3,muchadoaboutnothing,1599 notes,3,muchadoaboutnothing,1599 lady's,3,muchadoaboutnothing,1599 'Here,3,muchadoaboutnothing,1599 buried,3,muchadoaboutnothing,1599 apes,3,muchadoaboutnothing,1599 gentlewoman,3,muchadoaboutnothing,1599 Master,3,muchadoaboutnothing,1599 committed,3,muchadoaboutnothing,1599 aside,3,muchadoaboutnothing,1599 challenged,3,muchadoaboutnothing,1599 semblance,3,muchadoaboutnothing,1599 lest,3,muchadoaboutnothing,1599 devil,3,muchadoaboutnothing,1599 men's,3,muchadoaboutnothing,1599 hot,3,muchadoaboutnothing,1599 harm,3,muchadoaboutnothing,1599 transgression,3,muchadoaboutnothing,1599 discourse,3,muchadoaboutnothing,1599 Call,3,muchadoaboutnothing,1599 Hercules,3,muchadoaboutnothing,1599 course,3,muchadoaboutnothing,1599 She's,3,muchadoaboutnothing,1599 present,3,muchadoaboutnothing,1599 mock,3,muchadoaboutnothing,1599 point,3,muchadoaboutnothing,1599 devise,3,muchadoaboutnothing,1599 pace,3,muchadoaboutnothing,1599 monument,3,muchadoaboutnothing,1599 lock,3,muchadoaboutnothing,1599 secret,3,muchadoaboutnothing,1599 sweetly,3,muchadoaboutnothing,1599 judgment,3,muchadoaboutnothing,1599 broke,3,muchadoaboutnothing,1599 prays,3,muchadoaboutnothing,1599 change,3,muchadoaboutnothing,1599 lords,3,muchadoaboutnothing,1599 gentle,3,muchadoaboutnothing,1599 ours,3,muchadoaboutnothing,1599 year,3,muchadoaboutnothing,1599 garden,3,muchadoaboutnothing,1599 you'll,3,muchadoaboutnothing,1599 awhile,3,muchadoaboutnothing,1599 Peter,3,muchadoaboutnothing,1599 dream,3,muchadoaboutnothing,1599 blot,3,muchadoaboutnothing,1599 Any,3,muchadoaboutnothing,1599 state,3,muchadoaboutnothing,1599 because,3,muchadoaboutnothing,1599 need,3,muchadoaboutnothing,1599 trouble,3,muchadoaboutnothing,1599 ones,3,muchadoaboutnothing,1599 Were,3,muchadoaboutnothing,1599 Italy,3,muchadoaboutnothing,1599 proved,3,muchadoaboutnothing,1599 wrongs,3,muchadoaboutnothing,1599 five,3,muchadoaboutnothing,1599 sorrow,3,muchadoaboutnothing,1599 happiness,3,muchadoaboutnothing,1599 ducats,3,muchadoaboutnothing,1599 Sure,3,muchadoaboutnothing,1599 save,3,muchadoaboutnothing,1599 earnest,3,muchadoaboutnothing,1599 found,3,muchadoaboutnothing,1599 pride,3,muchadoaboutnothing,1599 villains,3,muchadoaboutnothing,1599 caught,3,muchadoaboutnothing,1599 owe,3,muchadoaboutnothing,1599 dumb,3,muchadoaboutnothing,1599 angry,3,muchadoaboutnothing,1599 glad,3,muchadoaboutnothing,1599 fain,3,muchadoaboutnothing,1599 examination,3,muchadoaboutnothing,1599 fortune,3,muchadoaboutnothing,1599 letter,3,muchadoaboutnothing,1599 discover,3,muchadoaboutnothing,1599 ride,3,muchadoaboutnothing,1599 horn,3,muchadoaboutnothing,1599 lordship,3,muchadoaboutnothing,1599 meddle,3,muchadoaboutnothing,1599 wide,3,muchadoaboutnothing,1599 bite,3,muchadoaboutnothing,1599 partly,3,muchadoaboutnothing,1599 meaning,3,muchadoaboutnothing,1599 kiss,3,muchadoaboutnothing,1599 Very,3,muchadoaboutnothing,1599 constant,3,muchadoaboutnothing,1599 otherwise,3,muchadoaboutnothing,1599 jests,3,muchadoaboutnothing,1599 sixth,3,muchadoaboutnothing,1599 ought,3,muchadoaboutnothing,1599 home,3,muchadoaboutnothing,1599 None,3,muchadoaboutnothing,1599 dangerous,3,muchadoaboutnothing,1599 virtues,3,muchadoaboutnothing,1599 slanders,3,muchadoaboutnothing,1599 gives,3,muchadoaboutnothing,1599 hearts,3,muchadoaboutnothing,1599 approved,3,muchadoaboutnothing,1599 Verges,3,muchadoaboutnothing,1599 bachelor,3,muchadoaboutnothing,1599 drunk,3,muchadoaboutnothing,1599 Prince,3,muchadoaboutnothing,1599 we'll,3,muchadoaboutnothing,1599 talking,3,muchadoaboutnothing,1599 Truly,3,muchadoaboutnothing,1599 defend,3,muchadoaboutnothing,1599 cow,3,muchadoaboutnothing,1599 ended,3,muchadoaboutnothing,1599 meantime,3,muchadoaboutnothing,1599 cost,3,muchadoaboutnothing,1599 whom,3,muchadoaboutnothing,1599 Pray,3,muchadoaboutnothing,1599 heels,3,muchadoaboutnothing,1599 Know,3,muchadoaboutnothing,1599 sexton,3,muchadoaboutnothing,1599 Nothing,3,muchadoaboutnothing,1599 honesty,3,muchadoaboutnothing,1599 spite,3,muchadoaboutnothing,1599 glory,3,muchadoaboutnothing,1599 meeting,3,muchadoaboutnothing,1599 nobody,3,muchadoaboutnothing,1599 thoughts,3,muchadoaboutnothing,1599 ladies,3,muchadoaboutnothing,1599 thinking,3,muchadoaboutnothing,1599 thither,3,muchadoaboutnothing,1599 suspect,3,muchadoaboutnothing,1599 Where,3,muchadoaboutnothing,1599 John's,3,muchadoaboutnothing,1599 dog,3,muchadoaboutnothing,1599 frame,3,muchadoaboutnothing,1599 weight,3,muchadoaboutnothing,1599 Arragon,3,muchadoaboutnothing,1599 Bring,3,muchadoaboutnothing,1599 den,3,muchadoaboutnothing,1599 vilely,3,muchadoaboutnothing,1599 moral,4,muchadoaboutnothing,1599 times,4,muchadoaboutnothing,1599 pity,4,muchadoaboutnothing,1599 suffer,4,muchadoaboutnothing,1599 took,4,muchadoaboutnothing,1599 double,4,muchadoaboutnothing,1599 wears,4,muchadoaboutnothing,1599 haste,4,muchadoaboutnothing,1599 Never,4,muchadoaboutnothing,1599 tears,4,muchadoaboutnothing,1599 laugh,4,muchadoaboutnothing,1599 sort,4,muchadoaboutnothing,1599 lies,4,muchadoaboutnothing,1599 become,4,muchadoaboutnothing,1599 knaves,4,muchadoaboutnothing,1599 paper,4,muchadoaboutnothing,1599 teach,4,muchadoaboutnothing,1599 Aside,4,muchadoaboutnothing,1599 worth,4,muchadoaboutnothing,1599 worse,4,muchadoaboutnothing,1599 Out,4,muchadoaboutnothing,1599 Deformed,4,muchadoaboutnothing,1599 falls,4,muchadoaboutnothing,1599 reverence,4,muchadoaboutnothing,1599 speaking,4,muchadoaboutnothing,1599 seems,4,muchadoaboutnothing,1599 visor,4,muchadoaboutnothing,1599 dies,4,muchadoaboutnothing,1599 wars,4,muchadoaboutnothing,1599 pretty,4,muchadoaboutnothing,1599 cunning,4,muchadoaboutnothing,1599 spoke,4,muchadoaboutnothing,1599 side,4,muchadoaboutnothing,1599 sign,4,muchadoaboutnothing,1599 offend,4,muchadoaboutnothing,1599 An,4,muchadoaboutnothing,1599 quarrel,4,muchadoaboutnothing,1599 Be,4,muchadoaboutnothing,1599 shortly,4,muchadoaboutnothing,1599 unless,4,muchadoaboutnothing,1599 since,4,muchadoaboutnothing,1599 bed,4,muchadoaboutnothing,1599 meant,4,muchadoaboutnothing,1599 IV,4,muchadoaboutnothing,1599 dinner,4,muchadoaboutnothing,1599 surely,4,muchadoaboutnothing,1599 sport,4,muchadoaboutnothing,1599 best,4,muchadoaboutnothing,1599 valiant,4,muchadoaboutnothing,1599 bull,4,muchadoaboutnothing,1599 belied,4,muchadoaboutnothing,1599 behind,4,muchadoaboutnothing,1599 bestowed,4,muchadoaboutnothing,1599 got,4,muchadoaboutnothing,1599 favour,4,muchadoaboutnothing,1599 strain,4,muchadoaboutnothing,1599 o',4,muchadoaboutnothing,1599 sometime,4,muchadoaboutnothing,1599 impediment,4,muchadoaboutnothing,1599 lost,4,muchadoaboutnothing,1599 apparel,4,muchadoaboutnothing,1599 ready,4,muchadoaboutnothing,1599 place,4,muchadoaboutnothing,1599 valour,4,muchadoaboutnothing,1599 hard,4,muchadoaboutnothing,1599 plain,4,muchadoaboutnothing,1599 forth,4,muchadoaboutnothing,1599 money,4,muchadoaboutnothing,1599 proper,4,muchadoaboutnothing,1599 maiden,4,muchadoaboutnothing,1599 lead,4,muchadoaboutnothing,1599 Into,4,muchadoaboutnothing,1599 through,4,muchadoaboutnothing,1599 nay,4,muchadoaboutnothing,1599 mischief,4,muchadoaboutnothing,1599 thinks,4,muchadoaboutnothing,1599 Borachio,4,muchadoaboutnothing,1599 Therefore,4,muchadoaboutnothing,1599 high,4,muchadoaboutnothing,1599 Look,4,muchadoaboutnothing,1599 Some,4,muchadoaboutnothing,1599 Friar,4,muchadoaboutnothing,1599 already,4,muchadoaboutnothing,1599 reading,4,muchadoaboutnothing,1599 woe,4,muchadoaboutnothing,1599 accusation,4,muchadoaboutnothing,1599 living,4,muchadoaboutnothing,1599 stomach,4,muchadoaboutnothing,1599 fetch,4,muchadoaboutnothing,1599 beseech,4,muchadoaboutnothing,1599 allegiance,4,muchadoaboutnothing,1599 garland,4,muchadoaboutnothing,1599 forward,4,muchadoaboutnothing,1599 next,4,muchadoaboutnothing,1599 happy,4,muchadoaboutnothing,1599 hair,4,muchadoaboutnothing,1599 conference,4,muchadoaboutnothing,1599 toothache,4,muchadoaboutnothing,1599 cover,4,muchadoaboutnothing,1599 Even,4,muchadoaboutnothing,1599 doublet,4,muchadoaboutnothing,1599 stolen,4,muchadoaboutnothing,1599 methinks,4,muchadoaboutnothing,1599 rich,4,muchadoaboutnothing,1599 wooed,4,muchadoaboutnothing,1599 Benedictus,4,muchadoaboutnothing,1599 ta'en,4,muchadoaboutnothing,1599 herself,4,muchadoaboutnothing,1599 lived,4,muchadoaboutnothing,1599 comfort,4,muchadoaboutnothing,1599 bind,4,muchadoaboutnothing,1599 pardon,4,muchadoaboutnothing,1599 holy,4,muchadoaboutnothing,1599 short,4,muchadoaboutnothing,1599 counterfeit,4,muchadoaboutnothing,1599 always,4,muchadoaboutnothing,1599 back,4,muchadoaboutnothing,1599 either,4,muchadoaboutnothing,1599 conclude,4,muchadoaboutnothing,1599 tells,4,muchadoaboutnothing,1599 together,4,muchadoaboutnothing,1599 sent,4,muchadoaboutnothing,1599 madam,4,muchadoaboutnothing,1599 protest,4,muchadoaboutnothing,1599 mad,4,muchadoaboutnothing,1599 spirits,4,muchadoaboutnothing,1599 Conrade,4,muchadoaboutnothing,1599 learn,4,muchadoaboutnothing,1599 fled,4,muchadoaboutnothing,1599 Amen,4,muchadoaboutnothing,1599 certain,4,muchadoaboutnothing,1599 he'll,4,muchadoaboutnothing,1599 shalt,4,muchadoaboutnothing,1599 spirit,4,muchadoaboutnothing,1599 wouldst,4,muchadoaboutnothing,1599 women,4,muchadoaboutnothing,1599 my,260,muchadoaboutnothing,1599 tomb,5,muchadoaboutnothing,1599 V,5,muchadoaboutnothing,1599 fancy,5,muchadoaboutnothing,1599 horse,5,muchadoaboutnothing,1599 while,5,muchadoaboutnothing,1599 jest,5,muchadoaboutnothing,1599 draw,5,muchadoaboutnothing,1599 dance,5,muchadoaboutnothing,1599 Give,5,muchadoaboutnothing,1599 deserve,5,muchadoaboutnothing,1599 she's,5,muchadoaboutnothing,1599 sit,5,muchadoaboutnothing,1599 body,5,muchadoaboutnothing,1599 impossible,5,muchadoaboutnothing,1599 virtuous,5,muchadoaboutnothing,1599 suit,5,muchadoaboutnothing,1599 'a,5,muchadoaboutnothing,1599 looks,5,muchadoaboutnothing,1599 doubt,5,muchadoaboutnothing,1599 born,5,muchadoaboutnothing,1599 rhyme,5,muchadoaboutnothing,1599 One,5,muchadoaboutnothing,1599 wish,5,muchadoaboutnothing,1599 mean,5,muchadoaboutnothing,1599 wronged,5,muchadoaboutnothing,1599 proof,5,muchadoaboutnothing,1599 means,5,muchadoaboutnothing,1599 challenge,5,muchadoaboutnothing,1599 whose,5,muchadoaboutnothing,1599 gone,5,muchadoaboutnothing,1599 farewell,5,muchadoaboutnothing,1599 despite,5,muchadoaboutnothing,1599 Pedro,5,muchadoaboutnothing,1599 Masters,5,muchadoaboutnothing,1599 stuffed,5,muchadoaboutnothing,1599 breath,5,muchadoaboutnothing,1599 tongues,5,muchadoaboutnothing,1599 Watch,5,muchadoaboutnothing,1599 less,5,muchadoaboutnothing,1599 killed,5,muchadoaboutnothing,1599 outward,5,muchadoaboutnothing,1599 half,5,muchadoaboutnothing,1599 appears,5,muchadoaboutnothing,1599 deny,5,muchadoaboutnothing,1599 examine,5,muchadoaboutnothing,1599 ask,5,muchadoaboutnothing,1599 foot,5,muchadoaboutnothing,1599 thanks,5,muchadoaboutnothing,1599 spoken,5,muchadoaboutnothing,1599 Have,5,muchadoaboutnothing,1599 Against,5,muchadoaboutnothing,1599 note,5,muchadoaboutnothing,1599 almost,5,muchadoaboutnothing,1599 rare,5,muchadoaboutnothing,1599 Hang,5,muchadoaboutnothing,1599 hide,5,muchadoaboutnothing,1599 mouth,5,muchadoaboutnothing,1599 Dost,5,muchadoaboutnothing,1599 issue,5,muchadoaboutnothing,1599 woo,5,muchadoaboutnothing,1599 fire,5,muchadoaboutnothing,1599 thine,5,muchadoaboutnothing,1599 sake,5,muchadoaboutnothing,1599 still,5,muchadoaboutnothing,1599 We'll,5,muchadoaboutnothing,1599 Thus,5,muchadoaboutnothing,1599 called,5,muchadoaboutnothing,1599 brother's,5,muchadoaboutnothing,1599 serve,5,muchadoaboutnothing,1599 supper,5,muchadoaboutnothing,1599 news,5,muchadoaboutnothing,1599 went,5,muchadoaboutnothing,1599 fall,5,muchadoaboutnothing,1599 fine,5,muchadoaboutnothing,1599 savage,5,muchadoaboutnothing,1599 shows,5,muchadoaboutnothing,1599 depart,5,muchadoaboutnothing,1599 hope,5,muchadoaboutnothing,1599 reason,5,muchadoaboutnothing,1599 argument,5,muchadoaboutnothing,1599 alone,5,muchadoaboutnothing,1599 low,5,muchadoaboutnothing,1599 seen,5,muchadoaboutnothing,1599 seem,5,muchadoaboutnothing,1599 liking,5,muchadoaboutnothing,1599 modest,5,muchadoaboutnothing,1599 match,5,muchadoaboutnothing,1599 remember,5,muchadoaboutnothing,1599 Before,5,muchadoaboutnothing,1599 Indeed,5,muchadoaboutnothing,1599 beauty,5,muchadoaboutnothing,1599 hurt,5,muchadoaboutnothing,1599 witness,5,muchadoaboutnothing,1599 Did,5,muchadoaboutnothing,1599 cross,5,muchadoaboutnothing,1599 ten,5,muchadoaboutnothing,1599 shape,5,muchadoaboutnothing,1599 horns,6,muchadoaboutnothing,1599 writ,6,muchadoaboutnothing,1599 peace,6,muchadoaboutnothing,1599 honourable,6,muchadoaboutnothing,1599 Would,6,muchadoaboutnothing,1599 sin,6,muchadoaboutnothing,1599 walk,6,muchadoaboutnothing,1599 set,6,muchadoaboutnothing,1599 wedding,6,muchadoaboutnothing,1599 scorn,6,muchadoaboutnothing,1599 son,6,muchadoaboutnothing,1599 sworn,6,muchadoaboutnothing,1599 worthy,6,muchadoaboutnothing,1599 princes,6,muchadoaboutnothing,1599 others,6,muchadoaboutnothing,1599 turned,6,muchadoaboutnothing,1599 died,6,muchadoaboutnothing,1599 neither,6,muchadoaboutnothing,1599 boy,6,muchadoaboutnothing,1599 Of,6,muchadoaboutnothing,1599 Ha,6,muchadoaboutnothing,1599 sorry,6,muchadoaboutnothing,1599 Re,6,muchadoaboutnothing,1599 orchard,6,muchadoaboutnothing,1599 curst,6,muchadoaboutnothing,1599 longer,6,muchadoaboutnothing,1599 i',6,muchadoaboutnothing,1599 God's,6,muchadoaboutnothing,1599 accused,6,muchadoaboutnothing,1599 hands,6,muchadoaboutnothing,1599 Second,6,muchadoaboutnothing,1599 Ursula,6,muchadoaboutnothing,1599 Yes,6,muchadoaboutnothing,1599 knew,6,muchadoaboutnothing,1599 speaks,6,muchadoaboutnothing,1599 Than,6,muchadoaboutnothing,1599 new,6,muchadoaboutnothing,1599 room,6,muchadoaboutnothing,1599 Sir,6,muchadoaboutnothing,1599 youth,6,muchadoaboutnothing,1599 end,6,muchadoaboutnothing,1599 thief,6,muchadoaboutnothing,1599 once,6,muchadoaboutnothing,1599 same,6,muchadoaboutnothing,1599 loving,6,muchadoaboutnothing,1599 believe,6,muchadoaboutnothing,1599 what's,6,muchadoaboutnothing,1599 please,6,muchadoaboutnothing,1599 three,6,muchadoaboutnothing,1599 fit,6,muchadoaboutnothing,1599 passion,6,muchadoaboutnothing,1599 Boy,6,muchadoaboutnothing,1599 practise,6,muchadoaboutnothing,1599 unto,6,muchadoaboutnothing,1599 wife,6,muchadoaboutnothing,1599 purpose,6,muchadoaboutnothing,1599 follow,6,muchadoaboutnothing,1599 flout,6,muchadoaboutnothing,1599 and,518,muchadoaboutnothing,1599 Hero's,7,muchadoaboutnothing,1599 friends,7,muchadoaboutnothing,1599 care,7,muchadoaboutnothing,1599 saw,7,muchadoaboutnothing,1599 came,7,muchadoaboutnothing,1599 Nor,7,muchadoaboutnothing,1599 Cupid,7,muchadoaboutnothing,1599 light,7,muchadoaboutnothing,1599 church,7,muchadoaboutnothing,1599 offence,7,muchadoaboutnothing,1599 wrong,7,muchadoaboutnothing,1599 fear,7,muchadoaboutnothing,1599 Here,7,muchadoaboutnothing,1599 swore,7,muchadoaboutnothing,1599 desire,7,muchadoaboutnothing,1599 morning,7,muchadoaboutnothing,1599 melancholy,7,muchadoaboutnothing,1599 sigh,7,muchadoaboutnothing,1599 measure,7,muchadoaboutnothing,1599 patience,7,muchadoaboutnothing,1599 stay,7,muchadoaboutnothing,1599 whole,7,muchadoaboutnothing,1599 Leonato's,7,muchadoaboutnothing,1599 prove,7,muchadoaboutnothing,1599 endure,7,muchadoaboutnothing,1599 brought,7,muchadoaboutnothing,1599 hast,7,muchadoaboutnothing,1599 Are,7,muchadoaboutnothing,1599 Hath,7,muchadoaboutnothing,1599 here's,7,muchadoaboutnothing,1599 where,7,muchadoaboutnothing,1599 wonder,7,muchadoaboutnothing,1599 beard,7,muchadoaboutnothing,1599 Lord,7,muchadoaboutnothing,1599 question,7,muchadoaboutnothing,1599 known,7,muchadoaboutnothing,1599 over,7,muchadoaboutnothing,1599 near,7,muchadoaboutnothing,1599 heavy,7,muchadoaboutnothing,1599 Can,7,muchadoaboutnothing,1599 between,7,muchadoaboutnothing,1599 'Tis,7,muchadoaboutnothing,1599 humour,7,muchadoaboutnothing,1599 company,7,muchadoaboutnothing,1599 Sweet,7,muchadoaboutnothing,1599 fare,7,muchadoaboutnothing,1599 tale,7,muchadoaboutnothing,1599 seek,7,muchadoaboutnothing,1599 cry,7,muchadoaboutnothing,1599 goes,7,muchadoaboutnothing,1599 ear,7,muchadoaboutnothing,1599 last,7,muchadoaboutnothing,1599 virtue,7,muchadoaboutnothing,1599 kind,7,muchadoaboutnothing,1599 villany,8,muchadoaboutnothing,1599 possible,8,muchadoaboutnothing,1599 help,8,muchadoaboutnothing,1599 slander,8,muchadoaboutnothing,1599 trust,8,muchadoaboutnothing,1599 head,8,muchadoaboutnothing,1599 With,8,muchadoaboutnothing,1599 after,8,muchadoaboutnothing,1599 office,8,muchadoaboutnothing,1599 sick,8,muchadoaboutnothing,1599 chamber,8,muchadoaboutnothing,1599 bad,8,muchadoaboutnothing,1599 innocent,8,muchadoaboutnothing,1599 II,8,muchadoaboutnothing,1599 enter,8,muchadoaboutnothing,1599 grief,8,muchadoaboutnothing,1599 dost,8,muchadoaboutnothing,1599 just,8,muchadoaboutnothing,1599 left,8,muchadoaboutnothing,1599 dear,8,muchadoaboutnothing,1599 long,8,muchadoaboutnothing,1599 age,8,muchadoaboutnothing,1599 keep,8,muchadoaboutnothing,1599 hang,8,muchadoaboutnothing,1599 foul,8,muchadoaboutnothing,1599 ass,8,muchadoaboutnothing,1599 maid,8,muchadoaboutnothing,1599 things,8,muchadoaboutnothing,1599 again,8,muchadoaboutnothing,1599 mind,8,muchadoaboutnothing,1599 They,8,muchadoaboutnothing,1599 friar,8,muchadoaboutnothing,1599 lay,8,muchadoaboutnothing,1599 man's,8,muchadoaboutnothing,1599 wilt,8,muchadoaboutnothing,1599 use,8,muchadoaboutnothing,1599 send,8,muchadoaboutnothing,1599 May,8,muchadoaboutnothing,1599 might,8,muchadoaboutnothing,1599 shame,8,muchadoaboutnothing,1599 kill,8,muchadoaboutnothing,1599 LEONATO'S,9,muchadoaboutnothing,1599 appear,9,muchadoaboutnothing,1599 yourself,9,muchadoaboutnothing,1599 sure,9,muchadoaboutnothing,1599 merry,9,muchadoaboutnothing,1599 counsel,9,muchadoaboutnothing,1599 both,9,muchadoaboutnothing,1599 else,9,muchadoaboutnothing,1599 III,9,muchadoaboutnothing,1599 music,9,muchadoaboutnothing,1599 pains,9,muchadoaboutnothing,1599 sing,9,muchadoaboutnothing,1599 dead,9,muchadoaboutnothing,1599 done,9,muchadoaboutnothing,1599 noble,9,muchadoaboutnothing,1599 Yet,9,muchadoaboutnothing,1599 those,9,muchadoaboutnothing,1599 praise,9,muchadoaboutnothing,1599 art,9,muchadoaboutnothing,1599 signior,9,muchadoaboutnothing,1599 Your,9,muchadoaboutnothing,1599 eye,9,muchadoaboutnothing,1599 yours,9,muchadoaboutnothing,1599 All,9,muchadoaboutnothing,1599 presently,9,muchadoaboutnothing,1599 knows,9,muchadoaboutnothing,1599 Then,9,muchadoaboutnothing,1599 off,9,muchadoaboutnothing,1599 break,9,muchadoaboutnothing,1599 Shall,9,muchadoaboutnothing,1599 worship,9,muchadoaboutnothing,1599 uncle,9,muchadoaboutnothing,1599 hour,9,muchadoaboutnothing,1599 master,9,muchadoaboutnothing,1599 hither,9,muchadoaboutnothing,1599 lie,9,muchadoaboutnothing,1599 eat,9,muchadoaboutnothing,1599 When,9,muchadoaboutnothing,1599 woman,9,muchadoaboutnothing,1599 neighbour,9,muchadoaboutnothing,1599 joy,10,muchadoaboutnothing,1599 Now,10,muchadoaboutnothing,1599 honour,10,muchadoaboutnothing,1599 masters,10,muchadoaboutnothing,1599 bring,10,muchadoaboutnothing,1599 false,10,muchadoaboutnothing,1599 window,10,muchadoaboutnothing,1599 Go,10,muchadoaboutnothing,1599 tongue,10,muchadoaboutnothing,1599 affection,10,muchadoaboutnothing,1599 loves,10,muchadoaboutnothing,1599 First,10,muchadoaboutnothing,1599 little,10,muchadoaboutnothing,1599 stand,10,muchadoaboutnothing,1599 says,10,muchadoaboutnothing,1599 even,10,muchadoaboutnothing,1599 talk,10,muchadoaboutnothing,1599 thousand,10,muchadoaboutnothing,1599 hold,10,muchadoaboutnothing,1599 poor,10,muchadoaboutnothing,1599 Will,11,muchadoaboutnothing,1599 thought,11,muchadoaboutnothing,1599 under,11,muchadoaboutnothing,1599 truth,11,muchadoaboutnothing,1599 world,11,muchadoaboutnothing,1599 full,11,muchadoaboutnothing,1599 Not,11,muchadoaboutnothing,1599 Who,11,muchadoaboutnothing,1599 There,11,muchadoaboutnothing,1599 fellow,11,muchadoaboutnothing,1599 friend,11,muchadoaboutnothing,1599 itself,11,muchadoaboutnothing,1599 We,11,muchadoaboutnothing,1599 put,11,muchadoaboutnothing,1599 'tis,11,muchadoaboutnothing,1599 bear,11,muchadoaboutnothing,1599 that's,11,muchadoaboutnothing,1599 Messina,11,muchadoaboutnothing,1599 ere,11,muchadoaboutnothing,1599 many,11,muchadoaboutnothing,1599 constable,11,muchadoaboutnothing,1599 heard,11,muchadoaboutnothing,1599 find,11,muchadoaboutnothing,1599 married,11,muchadoaboutnothing,1599 eyes,11,muchadoaboutnothing,1599 swear,11,muchadoaboutnothing,1599 father,11,muchadoaboutnothing,1599 Sexton,11,muchadoaboutnothing,1599 strange,11,muchadoaboutnothing,1599 rather,12,muchadoaboutnothing,1599 truly,12,muchadoaboutnothing,1599 words,12,muchadoaboutnothing,1599 another,12,muchadoaboutnothing,1599 warrant,12,muchadoaboutnothing,1599 Do,12,muchadoaboutnothing,1599 excellent,12,muchadoaboutnothing,1599 watch,12,muchadoaboutnothing,1599 Thou,12,muchadoaboutnothing,1599 child,12,muchadoaboutnothing,1599 there's,12,muchadoaboutnothing,1599 get,12,muchadoaboutnothing,1599 count,12,muchadoaboutnothing,1599 time,12,muchadoaboutnothing,1599 Let,12,muchadoaboutnothing,1599 sweet,12,muchadoaboutnothing,1599 write,12,muchadoaboutnothing,1599 live,12,muchadoaboutnothing,1599 without,12,muchadoaboutnothing,1599 villain,13,muchadoaboutnothing,1599 soul,13,muchadoaboutnothing,1599 charge,13,muchadoaboutnothing,1599 sad,13,muchadoaboutnothing,1599 call,13,muchadoaboutnothing,1599 against,13,muchadoaboutnothing,1599 therefore,13,muchadoaboutnothing,1599 blood,13,muchadoaboutnothing,1599 a',13,muchadoaboutnothing,1599 ill,13,muchadoaboutnothing,1599 loved,13,muchadoaboutnothing,1599 right,13,muchadoaboutnothing,1599 young,13,muchadoaboutnothing,1599 This,13,muchadoaboutnothing,1599 niece,13,muchadoaboutnothing,1599 face,13,muchadoaboutnothing,1599 word,13,muchadoaboutnothing,1599 honest,13,muchadoaboutnothing,1599 troth,13,muchadoaboutnothing,1599 marriage,13,muchadoaboutnothing,1599 dare,13,muchadoaboutnothing,1599 told,14,muchadoaboutnothing,1599 meet,14,muchadoaboutnothing,1599 John,14,muchadoaboutnothing,1599 better,14,muchadoaboutnothing,1599 away,14,muchadoaboutnothing,1599 wise,14,muchadoaboutnothing,1599 prince's,14,muchadoaboutnothing,1599 It,14,muchadoaboutnothing,1599 Which,14,muchadoaboutnothing,1599 part,14,muchadoaboutnothing,1599 though,14,muchadoaboutnothing,1599 myself,14,muchadoaboutnothing,1599 way,14,muchadoaboutnothing,1599 thus,14,muchadoaboutnothing,1599 house,14,muchadoaboutnothing,1599 first,14,muchadoaboutnothing,1599 Marry,14,muchadoaboutnothing,1599 life,15,muchadoaboutnothing,1599 death,15,muchadoaboutnothing,1599 enough,15,muchadoaboutnothing,1599 So,15,muchadoaboutnothing,1599 wear,15,muchadoaboutnothing,1599 fool,15,muchadoaboutnothing,1599 Count,15,muchadoaboutnothing,1599 before,15,muchadoaboutnothing,1599 thing,15,muchadoaboutnothing,1599 gentleman,15,muchadoaboutnothing,1599 thank,15,muchadoaboutnothing,1599 leave,15,muchadoaboutnothing,1599 Exit,15,muchadoaboutnothing,1599 Nay,16,muchadoaboutnothing,1599 BALTHASAR,16,muchadoaboutnothing,1599 about,16,muchadoaboutnothing,1599 matter,16,muchadoaboutnothing,1599 Good,16,muchadoaboutnothing,1599 look,16,muchadoaboutnothing,1599 grace,16,muchadoaboutnothing,1599 show,16,muchadoaboutnothing,1599 made,16,muchadoaboutnothing,1599 comes,16,muchadoaboutnothing,1599 fair,16,muchadoaboutnothing,1599 great,16,muchadoaboutnothing,1599 two,16,muchadoaboutnothing,1599 himself,16,muchadoaboutnothing,1599 die,16,muchadoaboutnothing,1599 Margaret,17,muchadoaboutnothing,1599 nothing,17,muchadoaboutnothing,1599 ACT,17,muchadoaboutnothing,1599 nor,17,muchadoaboutnothing,1599 could,17,muchadoaboutnothing,1599 why,17,muchadoaboutnothing,1599 only,17,muchadoaboutnothing,1599 being,17,muchadoaboutnothing,1599 Don,17,muchadoaboutnothing,1599 MUCH,18,muchadoaboutnothing,1599 ABOUT,18,muchadoaboutnothing,1599 By,18,muchadoaboutnothing,1599 bid,18,muchadoaboutnothing,1599 said,18,muchadoaboutnothing,1599 She,18,muchadoaboutnothing,1599 ADO,18,muchadoaboutnothing,1599 NOTHING,18,muchadoaboutnothing,1599 marry,18,muchadoaboutnothing,1599 day,18,muchadoaboutnothing,1599 SCENE,18,muchadoaboutnothing,1599 FRIAR,19,muchadoaboutnothing,1599 husband,19,muchadoaboutnothing,1599 Lady,19,muchadoaboutnothing,1599 FRANCIS,19,muchadoaboutnothing,1599 own,19,muchadoaboutnothing,1599 other,19,muchadoaboutnothing,1599 these,20,muchadoaboutnothing,1599 down,20,muchadoaboutnothing,1599 none,20,muchadoaboutnothing,1599 who,20,muchadoaboutnothing,1599 old,20,muchadoaboutnothing,1599 ever,20,muchadoaboutnothing,1599 fashion,20,muchadoaboutnothing,1599 every,21,muchadoaboutnothing,1599 For,21,muchadoaboutnothing,1599 As,21,muchadoaboutnothing,1599 name,21,muchadoaboutnothing,1599 My,21,muchadoaboutnothing,1599 hand,21,muchadoaboutnothing,1599 faith,21,muchadoaboutnothing,1599 our,21,muchadoaboutnothing,1599 till,21,muchadoaboutnothing,1599 He,22,muchadoaboutnothing,1599 Is,22,muchadoaboutnothing,1599 doth,22,muchadoaboutnothing,1599 indeed,22,muchadoaboutnothing,1599 morrow,22,muchadoaboutnothing,1599 Messenger,22,muchadoaboutnothing,1599 true,22,muchadoaboutnothing,1599 answer,23,muchadoaboutnothing,1599 been,23,muchadoaboutnothing,1599 most,23,muchadoaboutnothing,1599 Watchman,24,muchadoaboutnothing,1599 Yea,24,muchadoaboutnothing,1599 take,24,muchadoaboutnothing,1599 VERGES,25,muchadoaboutnothing,1599 Leonato,25,muchadoaboutnothing,1599 their,25,muchadoaboutnothing,1599 yet,25,muchadoaboutnothing,1599 give,25,muchadoaboutnothing,1599 men,25,muchadoaboutnothing,1599 cannot,25,muchadoaboutnothing,1599 is,281,muchadoaboutnothing,1599 up,26,muchadoaboutnothing,1599 How,26,muchadoaboutnothing,1599 from,26,muchadoaboutnothing,1599 URSULA,27,muchadoaboutnothing,1599 In,27,muchadoaboutnothing,1599 Exeunt,27,muchadoaboutnothing,1599 Well,27,muchadoaboutnothing,1599 pray,28,muchadoaboutnothing,1599 CONRADE,28,muchadoaboutnothing,1599 speak,28,muchadoaboutnothing,1599 daughter,29,muchadoaboutnothing,1599 into,29,muchadoaboutnothing,1599 very,29,muchadoaboutnothing,1599 in,285,muchadoaboutnothing,1599 the,541,muchadoaboutnothing,1599 some,30,muchadoaboutnothing,1599 sir,30,muchadoaboutnothing,1599 cousin,30,muchadoaboutnothing,1599 I'll,30,muchadoaboutnothing,1599 wit,30,muchadoaboutnothing,1599 A,31,muchadoaboutnothing,1599 here,32,muchadoaboutnothing,1599 Why,32,muchadoaboutnothing,1599 see,32,muchadoaboutnothing,1599 us,32,muchadoaboutnothing,1599 ANTONIO,32,muchadoaboutnothing,1599 That,32,muchadoaboutnothing,1599 mine,32,muchadoaboutnothing,1599 heart,32,muchadoaboutnothing,1599 much,33,muchadoaboutnothing,1599 Come,33,muchadoaboutnothing,1599 No,33,muchadoaboutnothing,1599 can,33,muchadoaboutnothing,1599 MARGARET,33,muchadoaboutnothing,1599 Signior,33,muchadoaboutnothing,1599 upon,34,muchadoaboutnothing,1599 brother,34,muchadoaboutnothing,1599 there,34,muchadoaboutnothing,1599 did,34,muchadoaboutnothing,1599 must,35,muchadoaboutnothing,1599 never,35,muchadoaboutnothing,1599 night,35,muchadoaboutnothing,1599 more,35,muchadoaboutnothing,1599 make,35,muchadoaboutnothing,1599 out,37,muchadoaboutnothing,1599 hear,38,muchadoaboutnothing,1599 prince,38,muchadoaboutnothing,1599 Enter,38,muchadoaboutnothing,1599 The,38,muchadoaboutnothing,1599 such,39,muchadoaboutnothing,1599 tell,39,muchadoaboutnothing,1599 What,39,muchadoaboutnothing,1599 To,40,muchadoaboutnothing,1599 You,40,muchadoaboutnothing,1599 now,41,muchadoaboutnothing,1599 ',42,muchadoaboutnothing,1599 which,42,muchadoaboutnothing,1599 then,42,muchadoaboutnothing,1599 come,42,muchadoaboutnothing,1599 too,42,muchadoaboutnothing,1599 Beatrice,43,muchadoaboutnothing,1599 how,43,muchadoaboutnothing,1599 lady,43,muchadoaboutnothing,1599 go,44,muchadoaboutnothing,1599 O,45,muchadoaboutnothing,1599 had,45,muchadoaboutnothing,1599 or,45,muchadoaboutnothing,1599 think,45,muchadoaboutnothing,1599 than,46,muchadoaboutnothing,1599 may,47,muchadoaboutnothing,1599 BORACHIO,48,muchadoaboutnothing,1599 If,48,muchadoaboutnothing,1599 should,48,muchadoaboutnothing,1599 well,48,muchadoaboutnothing,1599 was,49,muchadoaboutnothing,1599 like,50,muchadoaboutnothing,1599 But,50,muchadoaboutnothing,1599 when,50,muchadoaboutnothing,1599 thy,50,muchadoaboutnothing,1599 were,51,muchadoaboutnothing,1599 let,51,muchadoaboutnothing,1599 JOHN,51,muchadoaboutnothing,1599 Benedick,52,muchadoaboutnothing,1599 them,53,muchadoaboutnothing,1599 any,53,muchadoaboutnothing,1599 at,53,muchadoaboutnothing,1599 we,53,muchadoaboutnothing,1599 one,53,muchadoaboutnothing,1599 say,54,muchadoaboutnothing,1599 HERO,55,muchadoaboutnothing,1599 God,56,muchadoaboutnothing,1599 know,56,muchadoaboutnothing,1599 Hero,57,muchadoaboutnothing,1599 Claudio,57,muchadoaboutnothing,1599 DOGBERRY,59,muchadoaboutnothing,1599 what,62,muchadoaboutnothing,1599 hath,67,muchadoaboutnothing,1599 lord,68,muchadoaboutnothing,1599 on,71,muchadoaboutnothing,1599 shall,72,muchadoaboutnothing,1599 they,73,muchadoaboutnothing,1599 thou,74,muchadoaboutnothing,1599 thee,74,muchadoaboutnothing,1599 by,76,muchadoaboutnothing,1599 if,76,muchadoaboutnothing,1599 all,77,muchadoaboutnothing,1599 am,77,muchadoaboutnothing,1599 an,77,muchadoaboutnothing,1599 good,78,muchadoaboutnothing,1599 would,82,muchadoaboutnothing,1599 are,84,muchadoaboutnothing,1599 love,89,muchadoaboutnothing,1599 do,90,muchadoaboutnothing,1599 no,95,muchadoaboutnothing,1599 man,102,muchadoaboutnothing,1599 of,359,muchadoaboutnothing,1599 And,112,muchadoaboutnothing,1599 BEATRICE,117,muchadoaboutnothing,1599 as,122,muchadoaboutnothing,1599 she,123,muchadoaboutnothing,1599 his,123,muchadoaboutnothing,1599 but,123,muchadoaboutnothing,1599 so,123,muchadoaboutnothing,1599 him,132,muchadoaboutnothing,1599 LEONATO,136,muchadoaboutnothing,1599 this,137,muchadoaboutnothing,1599 CLAUDIO,141,muchadoaboutnothing,1599 BENEDICK,147,muchadoaboutnothing,1599 PEDRO,148,muchadoaboutnothing,1599 have,160,muchadoaboutnothing,1599 to,417,muchadoaboutnothing,1599 your,173,muchadoaboutnothing,1599 I,688,muchadoaboutnothing,1599 he,177,muchadoaboutnothing,1599 be,178,muchadoaboutnothing,1599 a,443,muchadoaboutnothing,1599 will,189,muchadoaboutnothing,1599 with,192,muchadoaboutnothing,1599 you,452,muchadoaboutnothing,1599 for,199,muchadoaboutnothing,1599 DON,199,muchadoaboutnothing,1599 me,219,muchadoaboutnothing,1599 her,222,muchadoaboutnothing,1599 not,239,muchadoaboutnothing,1599 it,240,muchadoaboutnothing,1599 is,256,allswellthatendswell,1603 brave,1,allswellthatendswell,1603 cheque'd,1,allswellthatendswell,1603 holding,1,allswellthatendswell,1603 plagues,1,allswellthatendswell,1603 incurred,1,allswellthatendswell,1603 indignation,1,allswellthatendswell,1603 discharged,1,allswellthatendswell,1603 answered,1,allswellthatendswell,1603 religion,1,allswellthatendswell,1603 'You,1,allswellthatendswell,1603 finisher,1,allswellthatendswell,1603 event,1,allswellthatendswell,1603 advanced,1,allswellthatendswell,1603 neighbouring,1,allswellthatendswell,1603 steads,1,allswellthatendswell,1603 Francis,1,allswellthatendswell,1603 naturalize,1,allswellthatendswell,1603 heel,1,allswellthatendswell,1603 Written,1,allswellthatendswell,1603 brawn,1,allswellthatendswell,1603 o'er,1,allswellthatendswell,1603 toll,1,allswellthatendswell,1603 villany,1,allswellthatendswell,1603 adoptious,1,allswellthatendswell,1603 retrograde,1,allswellthatendswell,1603 horns,1,allswellthatendswell,1603 moral,1,allswellthatendswell,1603 accordingly,1,allswellthatendswell,1603 name's,1,allswellthatendswell,1603 parted,1,allswellthatendswell,1603 Corrupt,1,allswellthatendswell,1603 guard,1,allswellthatendswell,1603 debts,1,allswellthatendswell,1603 ropes,1,allswellthatendswell,1603 meed,1,allswellthatendswell,1603 Prove,1,allswellthatendswell,1603 digested,1,allswellthatendswell,1603 nothings,1,allswellthatendswell,1603 join,1,allswellthatendswell,1603 cutting,1,allswellthatendswell,1603 infirm,1,allswellthatendswell,1603 red,1,allswellthatendswell,1603 Proud,1,allswellthatendswell,1603 calumnious,1,allswellthatendswell,1603 drop,1,allswellthatendswell,1603 John,1,allswellthatendswell,1603 darest,1,allswellthatendswell,1603 unroot,1,allswellthatendswell,1603 description,1,allswellthatendswell,1603 derived,1,allswellthatendswell,1603 doubly,1,allswellthatendswell,1603 fathers,1,allswellthatendswell,1603 protestations,1,allswellthatendswell,1603 Damnable,1,allswellthatendswell,1603 mightiest,1,allswellthatendswell,1603 assay,1,allswellthatendswell,1603 derives,1,allswellthatendswell,1603 belongs,1,allswellthatendswell,1603 heir,1,allswellthatendswell,1603 truer,1,allswellthatendswell,1603 relics,1,allswellthatendswell,1603 araise,1,allswellthatendswell,1603 prophet,1,allswellthatendswell,1603 wish'd,1,allswellthatendswell,1603 complaints,1,allswellthatendswell,1603 discord,1,allswellthatendswell,1603 following,1,allswellthatendswell,1603 especially,1,allswellthatendswell,1603 treasure,1,allswellthatendswell,1603 hinder,1,allswellthatendswell,1603 knell,1,allswellthatendswell,1603 bonto,1,allswellthatendswell,1603 obtain'd,1,allswellthatendswell,1603 neighbours,1,allswellthatendswell,1603 brows,1,allswellthatendswell,1603 Tib's,1,allswellthatendswell,1603 lower,1,allswellthatendswell,1603 dagger,1,allswellthatendswell,1603 rock,1,allswellthatendswell,1603 vinaigre,1,allswellthatendswell,1603 labours,1,allswellthatendswell,1603 noiseless,1,allswellthatendswell,1603 dolphin,1,allswellthatendswell,1603 foolery,1,allswellthatendswell,1603 preparation,1,allswellthatendswell,1603 rascal,1,allswellthatendswell,1603 assured,1,allswellthatendswell,1603 matron,1,allswellthatendswell,1603 offender,1,allswellthatendswell,1603 heart's,1,allswellthatendswell,1603 branch,1,allswellthatendswell,1603 scattered,1,allswellthatendswell,1603 muse,1,allswellthatendswell,1603 sainted,1,allswellthatendswell,1603 trivial,1,allswellthatendswell,1603 easily,1,allswellthatendswell,1603 decision,1,allswellthatendswell,1603 undoubted,1,allswellthatendswell,1603 epitaph,1,allswellthatendswell,1603 endless,1,allswellthatendswell,1603 handkercher,1,allswellthatendswell,1603 ministration,1,allswellthatendswell,1603 speedy,1,allswellthatendswell,1603 murk,1,allswellthatendswell,1603 Nebuchadnezzar,1,allswellthatendswell,1603 mell,1,allswellthatendswell,1603 hell,1,allswellthatendswell,1603 sleeps,1,allswellthatendswell,1603 Iris,1,allswellthatendswell,1603 helm,1,allswellthatendswell,1603 suggestions,1,allswellthatendswell,1603 reserved,1,allswellthatendswell,1603 moiety,1,allswellthatendswell,1603 whale,1,allswellthatendswell,1603 Boblibindo,1,allswellthatendswell,1603 suppliant,1,allswellthatendswell,1603 mule,1,allswellthatendswell,1603 singly,1,allswellthatendswell,1603 sleepy,1,allswellthatendswell,1603 darkness,1,allswellthatendswell,1603 Plutus,1,allswellthatendswell,1603 movousus,1,allswellthatendswell,1603 pilot's,1,allswellthatendswell,1603 authentic,1,allswellthatendswell,1603 contract,1,allswellthatendswell,1603 corbo,1,allswellthatendswell,1603 richest,1,allswellthatendswell,1603 Discover,1,allswellthatendswell,1603 inaudible,1,allswellthatendswell,1603 herd,1,allswellthatendswell,1603 spake,1,allswellthatendswell,1603 violent,1,allswellthatendswell,1603 Citizens,1,allswellthatendswell,1603 Especially,1,allswellthatendswell,1603 Either,1,allswellthatendswell,1603 Paracelsus,1,allswellthatendswell,1603 sighs,1,allswellthatendswell,1603 sight,1,allswellthatendswell,1603 christendoms,1,allswellthatendswell,1603 prosperous,1,allswellthatendswell,1603 surplice,1,allswellthatendswell,1603 rumour,1,allswellthatendswell,1603 lowly,1,allswellthatendswell,1603 paradise,1,allswellthatendswell,1603 damns,1,allswellthatendswell,1603 commodity,1,allswellthatendswell,1603 looked,1,allswellthatendswell,1603 fought,1,allswellthatendswell,1603 brightest,1,allswellthatendswell,1603 Beguiles,1,allswellthatendswell,1603 angels,1,allswellthatendswell,1603 appear,1,allswellthatendswell,1603 Resolved,1,allswellthatendswell,1603 flow,1,allswellthatendswell,1603 richly,1,allswellthatendswell,1603 although,1,allswellthatendswell,1603 widower's,1,allswellthatendswell,1603 drink,1,allswellthatendswell,1603 stretched,1,allswellthatendswell,1603 O'erbears,1,allswellthatendswell,1603 nought,1,allswellthatendswell,1603 sour,1,allswellthatendswell,1603 charter,1,allswellthatendswell,1603 laugh,1,allswellthatendswell,1603 Contempt,1,allswellthatendswell,1603 admirable,1,allswellthatendswell,1603 prey,1,allswellthatendswell,1603 Jaques',1,allswellthatendswell,1603 suggest,1,allswellthatendswell,1603 Lavache,1,allswellthatendswell,1603 jades,1,allswellthatendswell,1603 thirty,1,allswellthatendswell,1603 yonder,1,allswellthatendswell,1603 inclining,1,allswellthatendswell,1603 Wrapp'd,1,allswellthatendswell,1603 strumpet,1,allswellthatendswell,1603 pinch,1,allswellthatendswell,1603 Err,1,allswellthatendswell,1603 goers,1,allswellthatendswell,1603 corrupts,1,allswellthatendswell,1603 works,1,allswellthatendswell,1603 disobedience,1,allswellthatendswell,1603 scruple,1,allswellthatendswell,1603 musk,1,allswellthatendswell,1603 become,1,allswellthatendswell,1603 curious,1,allswellthatendswell,1603 PERSONAE,1,allswellthatendswell,1603 Opening,1,allswellthatendswell,1603 carp,1,allswellthatendswell,1603 proclaim,1,allswellthatendswell,1603 radiance,1,allswellthatendswell,1603 mute,1,allswellthatendswell,1603 cherished,1,allswellthatendswell,1603 cloister,1,allswellthatendswell,1603 saved,1,allswellthatendswell,1603 constancies,1,allswellthatendswell,1603 spark,1,allswellthatendswell,1603 cherishes,1,allswellthatendswell,1603 cherisher,1,allswellthatendswell,1603 mingled,1,allswellthatendswell,1603 saves,1,allswellthatendswell,1603 quirks,1,allswellthatendswell,1603 early,1,allswellthatendswell,1603 spares,1,allswellthatendswell,1603 buttocks,1,allswellthatendswell,1603 quench'd,1,allswellthatendswell,1603 regions,1,allswellthatendswell,1603 breach,1,allswellthatendswell,1603 pursue,1,allswellthatendswell,1603 performance,1,allswellthatendswell,1603 beneath,1,allswellthatendswell,1603 practiser,1,allswellthatendswell,1603 helper,1,allswellthatendswell,1603 passions,1,allswellthatendswell,1603 parson,1,allswellthatendswell,1603 drily,1,allswellthatendswell,1603 helped,1,allswellthatendswell,1603 practises,1,allswellthatendswell,1603 shrinks,1,allswellthatendswell,1603 honester,1,allswellthatendswell,1603 surfeit,1,allswellthatendswell,1603 birth,1,allswellthatendswell,1603 lacks,1,allswellthatendswell,1603 sad,1,allswellthatendswell,1603 amazed,1,allswellthatendswell,1603 spied,1,allswellthatendswell,1603 thank'd,1,allswellthatendswell,1603 feels,1,allswellthatendswell,1603 feather,1,allswellthatendswell,1603 jest,1,allswellthatendswell,1603 sadly,1,allswellthatendswell,1603 drive,1,allswellthatendswell,1603 reconciled,1,allswellthatendswell,1603 sole,1,allswellthatendswell,1603 sold,1,allswellthatendswell,1603 Young,1,allswellthatendswell,1603 opposer,1,allswellthatendswell,1603 unjustly,1,allswellthatendswell,1603 relieve,1,allswellthatendswell,1603 happened,1,allswellthatendswell,1603 years,1,allswellthatendswell,1603 betake,1,allswellthatendswell,1603 Jove,1,allswellthatendswell,1603 fortunate,1,allswellthatendswell,1603 linsey,1,allswellthatendswell,1603 sorrows,1,allswellthatendswell,1603 Cold,1,allswellthatendswell,1603 pile,1,allswellthatendswell,1603 Tongue,1,allswellthatendswell,1603 lustier,1,allswellthatendswell,1603 pilgrimage,1,allswellthatendswell,1603 lamentation,1,allswellthatendswell,1603 year',1,allswellthatendswell,1603 corner,1,allswellthatendswell,1603 Papist,1,allswellthatendswell,1603 dram,1,allswellthatendswell,1603 Austria,1,allswellthatendswell,1603 verbal,1,allswellthatendswell,1603 broken,1,allswellthatendswell,1603 amended,1,allswellthatendswell,1603 brokes,1,allswellthatendswell,1603 proceeds,1,allswellthatendswell,1603 End,1,allswellthatendswell,1603 succeeding,1,allswellthatendswell,1603 patent,1,allswellthatendswell,1603 honestly,1,allswellthatendswell,1603 concerns,1,allswellthatendswell,1603 heat,1,allswellthatendswell,1603 sources,1,allswellthatendswell,1603 additions,1,allswellthatendswell,1603 Know'st,1,allswellthatendswell,1603 roar'd,1,allswellthatendswell,1603 sparks,1,allswellthatendswell,1603 jowl,1,allswellthatendswell,1603 cheer,1,allswellthatendswell,1603 undoing,1,allswellthatendswell,1603 exclaim,1,allswellthatendswell,1603 wants,1,allswellthatendswell,1603 hearing,1,allswellthatendswell,1603 policy,1,allswellthatendswell,1603 repetition,1,allswellthatendswell,1603 demands,1,allswellthatendswell,1603 gross,1,allswellthatendswell,1603 collateral,1,allswellthatendswell,1603 glass,1,allswellthatendswell,1603 forswear't,1,allswellthatendswell,1603 sixteen,1,allswellthatendswell,1603 buttering,1,allswellthatendswell,1603 wrong'st,1,allswellthatendswell,1603 addition,1,allswellthatendswell,1603 soft,1,allswellthatendswell,1603 noise,1,allswellthatendswell,1603 richer,1,allswellthatendswell,1603 bated,1,allswellthatendswell,1603 blessed,1,allswellthatendswell,1603 reliques,1,allswellthatendswell,1603 bachelors,1,allswellthatendswell,1603 inhuman,1,allswellthatendswell,1603 amity,1,allswellthatendswell,1603 Madding,1,allswellthatendswell,1603 ingenious,1,allswellthatendswell,1603 kin,1,allswellthatendswell,1603 began,1,allswellthatendswell,1603 Cupid,1,allswellthatendswell,1603 general's,1,allswellthatendswell,1603 believe't,1,allswellthatendswell,1603 Gentle,1,allswellthatendswell,1603 counterpoise,1,allswellthatendswell,1603 anatomized,1,allswellthatendswell,1603 groats,1,allswellthatendswell,1603 mounts,1,allswellthatendswell,1603 sinful,1,allswellthatendswell,1603 discovery,1,allswellthatendswell,1603 Perchance,1,allswellthatendswell,1603 bareness,1,allswellthatendswell,1603 impostor,1,allswellthatendswell,1603 pancake,1,allswellthatendswell,1603 rarest,1,allswellthatendswell,1603 warnings,1,allswellthatendswell,1603 I'm,1,allswellthatendswell,1603 I'd,1,allswellthatendswell,1603 talked,1,allswellthatendswell,1603 sums,1,allswellthatendswell,1603 deeper,1,allswellthatendswell,1603 indignity,1,allswellthatendswell,1603 egregious,1,allswellthatendswell,1603 captious,1,allswellthatendswell,1603 'then',1,allswellthatendswell,1603 courtly,1,allswellthatendswell,1603 aged,1,allswellthatendswell,1603 sender,1,allswellthatendswell,1603 key,1,allswellthatendswell,1603 thou't,1,allswellthatendswell,1603 laugh'd,1,allswellthatendswell,1603 Change,1,allswellthatendswell,1603 wagon,1,allswellthatendswell,1603 jeweller,1,allswellthatendswell,1603 worthiest,1,allswellthatendswell,1603 acutely,1,allswellthatendswell,1603 assails,1,allswellthatendswell,1603 sex,1,allswellthatendswell,1603 merry,1,allswellthatendswell,1603 monarch,1,allswellthatendswell,1603 idolatrous,1,allswellthatendswell,1603 boskos,1,allswellthatendswell,1603 touched,1,allswellthatendswell,1603 Dutchman,1,allswellthatendswell,1603 recantation,1,allswellthatendswell,1603 Praising,1,allswellthatendswell,1603 tithe,1,allswellthatendswell,1603 kneel'd,1,allswellthatendswell,1603 deceit,1,allswellthatendswell,1603 throne,1,allswellthatendswell,1603 anew,1,allswellthatendswell,1603 peevish,1,allswellthatendswell,1603 passport,1,allswellthatendswell,1603 howsome'er,1,allswellthatendswell,1603 shackle,1,allswellthatendswell,1603 fell,1,allswellthatendswell,1603 abused,1,allswellthatendswell,1603 yield,1,allswellthatendswell,1603 concern,1,allswellthatendswell,1603 score,1,allswellthatendswell,1603 peril,1,allswellthatendswell,1603 actor,1,allswellthatendswell,1603 eunuchs,1,allswellthatendswell,1603 confirmed,1,allswellthatendswell,1603 premises,1,allswellthatendswell,1603 embrace,1,allswellthatendswell,1603 'longing,1,allswellthatendswell,1603 braving,1,allswellthatendswell,1603 Excellently,1,allswellthatendswell,1603 avails,1,allswellthatendswell,1603 entail,1,allswellthatendswell,1603 avail,1,allswellthatendswell,1603 scorn'd,1,allswellthatendswell,1603 diurnal,1,allswellthatendswell,1603 famed,1,allswellthatendswell,1603 justices,1,allswellthatendswell,1603 confident,1,allswellthatendswell,1603 'not',1,allswellthatendswell,1603 Merely,1,allswellthatendswell,1603 'a,1,allswellthatendswell,1603 follower,1,allswellthatendswell,1603 raised,1,allswellthatendswell,1603 fashions,1,allswellthatendswell,1603 followed,1,allswellthatendswell,1603 lawfully,1,allswellthatendswell,1603 where's,1,allswellthatendswell,1603 hotter,1,allswellthatendswell,1603 attends,1,allswellthatendswell,1603 headsman,1,allswellthatendswell,1603 procured,1,allswellthatendswell,1603 bow'd,1,allswellthatendswell,1603 livery,1,allswellthatendswell,1603 design,1,allswellthatendswell,1603 Distracted,1,allswellthatendswell,1603 testament,1,allswellthatendswell,1603 disgrace,1,allswellthatendswell,1603 exorcist,1,allswellthatendswell,1603 pitiful,1,allswellthatendswell,1603 sky,1,allswellthatendswell,1603 instruct,1,allswellthatendswell,1603 groans,1,allswellthatendswell,1603 gather,1,allswellthatendswell,1603 Doctor,1,allswellthatendswell,1603 barefoot,1,allswellthatendswell,1603 doubt,1,allswellthatendswell,1603 Thanks,1,allswellthatendswell,1603 yonder's,1,allswellthatendswell,1603 Servant,1,allswellthatendswell,1603 purifying,1,allswellthatendswell,1603 pieces,1,allswellthatendswell,1603 scope,1,allswellthatendswell,1603 becomes,1,allswellthatendswell,1603 cheese,1,allswellthatendswell,1603 adverse,1,allswellthatendswell,1603 Steals,1,allswellthatendswell,1603 amiss,1,allswellthatendswell,1603 daughter's,1,allswellthatendswell,1603 real,1,allswellthatendswell,1603 stuck,1,allswellthatendswell,1603 abstract,1,allswellthatendswell,1603 ordinaries,1,allswellthatendswell,1603 loneliness,1,allswellthatendswell,1603 ergo,1,allswellthatendswell,1603 everlasting,1,allswellthatendswell,1603 reap,1,allswellthatendswell,1603 Peruse,1,allswellthatendswell,1603 perverted,1,allswellthatendswell,1603 heavens,1,allswellthatendswell,1603 guide,1,allswellthatendswell,1603 cassocks,1,allswellthatendswell,1603 passed,1,allswellthatendswell,1603 fight,1,allswellthatendswell,1603 braid,1,allswellthatendswell,1603 debosh'd,1,allswellthatendswell,1603 Wast,1,allswellthatendswell,1603 snow,1,allswellthatendswell,1603 happen,1,allswellthatendswell,1603 piece,1,allswellthatendswell,1603 Commit,1,allswellthatendswell,1603 chicurmurco,1,allswellthatendswell,1603 revives,1,allswellthatendswell,1603 onions,1,allswellthatendswell,1603 Officers,1,allswellthatendswell,1603 rhyme,1,allswellthatendswell,1603 loathes,1,allswellthatendswell,1603 pestiferous,1,allswellthatendswell,1603 estimate,1,allswellthatendswell,1603 differences,1,allswellthatendswell,1603 Whereof,1,allswellthatendswell,1603 figure,1,allswellthatendswell,1603 seeds,1,allswellthatendswell,1603 dieted,1,allswellthatendswell,1603 Turk,1,allswellthatendswell,1603 unserviceable,1,allswellthatendswell,1603 Mayst,1,allswellthatendswell,1603 runs,1,allswellthatendswell,1603 Wish,1,allswellthatendswell,1603 word's,1,allswellthatendswell,1603 salad,1,allswellthatendswell,1603 terms,1,allswellthatendswell,1603 loose,1,allswellthatendswell,1603 seeks,1,allswellthatendswell,1603 commit,1,allswellthatendswell,1603 eldest,1,allswellthatendswell,1603 instance,1,allswellthatendswell,1603 displeasures,1,allswellthatendswell,1603 unable,1,allswellthatendswell,1603 austere,1,allswellthatendswell,1603 untrue,1,allswellthatendswell,1603 white,1,allswellthatendswell,1603 encourage,1,allswellthatendswell,1603 jacet,1,allswellthatendswell,1603 pears,1,allswellthatendswell,1603 Whilst,1,allswellthatendswell,1603 mouthed,1,allswellthatendswell,1603 cries,1,allswellthatendswell,1603 minority,1,allswellthatendswell,1603 scarre,1,allswellthatendswell,1603 vanity,1,allswellthatendswell,1603 Hers,1,allswellthatendswell,1603 feed,1,allswellthatendswell,1603 fearful,1,allswellthatendswell,1603 bride,1,allswellthatendswell,1603 forefinger,1,allswellthatendswell,1603 girls,1,allswellthatendswell,1603 feel,1,allswellthatendswell,1603 rush,1,allswellthatendswell,1603 unbridled,1,allswellthatendswell,1603 cease,1,allswellthatendswell,1603 hoodwink'd,1,allswellthatendswell,1603 swore,1,allswellthatendswell,1603 coragio,1,allswellthatendswell,1603 malice,1,allswellthatendswell,1603 infallible,1,allswellthatendswell,1603 outruns,1,allswellthatendswell,1603 cuckoo,1,allswellthatendswell,1603 brine,1,allswellthatendswell,1603 dial,1,allswellthatendswell,1603 baser,1,allswellthatendswell,1603 ancient,1,allswellthatendswell,1603 behaviors,1,allswellthatendswell,1603 intimate,1,allswellthatendswell,1603 tortures,1,allswellthatendswell,1603 speaking,1,allswellthatendswell,1603 wine,1,allswellthatendswell,1603 rude,1,allswellthatendswell,1603 putting,1,allswellthatendswell,1603 Fly,1,allswellthatendswell,1603 manor,1,allswellthatendswell,1603 bauble,1,allswellthatendswell,1603 rejoices,1,allswellthatendswell,1603 tax,1,allswellthatendswell,1603 ward,1,allswellthatendswell,1603 wished,1,allswellthatendswell,1603 Hence,1,allswellthatendswell,1603 nails,1,allswellthatendswell,1603 tragedians,1,allswellthatendswell,1603 wins,1,allswellthatendswell,1603 kneel,1,allswellthatendswell,1603 oily,1,allswellthatendswell,1603 failed,1,allswellthatendswell,1603 monarchy,1,allswellthatendswell,1603 rend,1,allswellthatendswell,1603 Crying,1,allswellthatendswell,1603 sphere,1,allswellthatendswell,1603 vendible,1,allswellthatendswell,1603 obstinacy,1,allswellthatendswell,1603 Safer,1,allswellthatendswell,1603 length,1,allswellthatendswell,1603 catch'd,1,allswellthatendswell,1603 damnable,1,allswellthatendswell,1603 Advancing,1,allswellthatendswell,1603 Fontibell,1,allswellthatendswell,1603 entertained,1,allswellthatendswell,1603 ruff,1,allswellthatendswell,1603 rely,1,allswellthatendswell,1603 edge,1,allswellthatendswell,1603 strew'd,1,allswellthatendswell,1603 stead,1,allswellthatendswell,1603 dearer,1,allswellthatendswell,1603 astonish,1,allswellthatendswell,1603 debile,1,allswellthatendswell,1603 hater,1,allswellthatendswell,1603 diet,1,allswellthatendswell,1603 ladyship's,1,allswellthatendswell,1603 trifles,1,allswellthatendswell,1603 poniards,1,allswellthatendswell,1603 died,1,allswellthatendswell,1603 thrown,1,allswellthatendswell,1603 unbaked,1,allswellthatendswell,1603 linta,1,allswellthatendswell,1603 accuse,1,allswellthatendswell,1603 succeed,1,allswellthatendswell,1603 sooth,1,allswellthatendswell,1603 heraldry,1,allswellthatendswell,1603 world's,1,allswellthatendswell,1603 Dane,1,allswellthatendswell,1603 bond,1,allswellthatendswell,1603 cunning,1,allswellthatendswell,1603 rule,1,allswellthatendswell,1603 triple,1,allswellthatendswell,1603 meat,1,allswellthatendswell,1603 o'erflow,1,allswellthatendswell,1603 wash,1,allswellthatendswell,1603 melted,1,allswellthatendswell,1603 distress,1,allswellthatendswell,1603 boot,1,allswellthatendswell,1603 steed,1,allswellthatendswell,1603 familiarity,1,allswellthatendswell,1603 tortured,1,allswellthatendswell,1603 Foh,1,allswellthatendswell,1603 wast,1,allswellthatendswell,1603 discoveries,1,allswellthatendswell,1603 manly,1,allswellthatendswell,1603 sally,1,allswellthatendswell,1603 marrow,1,allswellthatendswell,1603 blazing,1,allswellthatendswell,1603 Skill,1,allswellthatendswell,1603 tend,1,allswellthatendswell,1603 canary,1,allswellthatendswell,1603 Traduced,1,allswellthatendswell,1603 Muskos',1,allswellthatendswell,1603 smoked,1,allswellthatendswell,1603 infirmity,1,allswellthatendswell,1603 created,1,allswellthatendswell,1603 praises,1,allswellthatendswell,1603 sceptre,1,allswellthatendswell,1603 tent,1,allswellthatendswell,1603 musics,1,allswellthatendswell,1603 foolhardy,1,allswellthatendswell,1603 healthful,1,allswellthatendswell,1603 deserves,1,allswellthatendswell,1603 chimurcho,1,allswellthatendswell,1603 project,1,allswellthatendswell,1603 jarring,1,allswellthatendswell,1603 urge,1,allswellthatendswell,1603 frames,1,allswellthatendswell,1603 big,1,allswellthatendswell,1603 senses,1,allswellthatendswell,1603 wherefore,1,allswellthatendswell,1603 nail,1,allswellthatendswell,1603 mistaken,1,allswellthatendswell,1603 contrives,1,allswellthatendswell,1603 appointments,1,allswellthatendswell,1603 side,1,allswellthatendswell,1603 bastards,1,allswellthatendswell,1603 sauciness,1,allswellthatendswell,1603 Proffers,1,allswellthatendswell,1603 stir,1,allswellthatendswell,1603 'But,1,allswellthatendswell,1603 Throca,1,allswellthatendswell,1603 mortality,1,allswellthatendswell,1603 admiringly,1,allswellthatendswell,1603 strongly,1,allswellthatendswell,1603 Hold,1,allswellthatendswell,1603 precisely,1,allswellthatendswell,1603 Priam's,1,allswellthatendswell,1603 inducement,1,allswellthatendswell,1603 Vaumond,1,allswellthatendswell,1603 snuff,1,allswellthatendswell,1603 A',1,allswellthatendswell,1603 drudge,1,allswellthatendswell,1603 perspective,1,allswellthatendswell,1603 sift,1,allswellthatendswell,1603 Holy,1,allswellthatendswell,1603 utter,1,allswellthatendswell,1603 offend,1,allswellthatendswell,1603 luckiest,1,allswellthatendswell,1603 delivering,1,allswellthatendswell,1603 orator,1,allswellthatendswell,1603 religious,1,allswellthatendswell,1603 delights,1,allswellthatendswell,1603 granted,1,allswellthatendswell,1603 Charbon,1,allswellthatendswell,1603 'Twere,1,allswellthatendswell,1603 pulse,1,allswellthatendswell,1603 par,1,allswellthatendswell,1603 unsettled,1,allswellthatendswell,1603 inter'gatories,1,allswellthatendswell,1603 balls,1,allswellthatendswell,1603 perfection,1,allswellthatendswell,1603 Ah,1,allswellthatendswell,1603 Am,1,allswellthatendswell,1603 spoil,1,allswellthatendswell,1603 quarrel,1,allswellthatendswell,1603 persists,1,allswellthatendswell,1603 informed,1,allswellthatendswell,1603 chaste,1,allswellthatendswell,1603 replete,1,allswellthatendswell,1603 Means,1,allswellthatendswell,1603 hilding,1,allswellthatendswell,1603 motives,1,allswellthatendswell,1603 fool'd,1,allswellthatendswell,1603 youthful,1,allswellthatendswell,1603 box,1,allswellthatendswell,1603 bow,1,allswellthatendswell,1603 Him,1,allswellthatendswell,1603 loath,1,allswellthatendswell,1603 strangers,1,allswellthatendswell,1603 alarum,1,allswellthatendswell,1603 diverted,1,allswellthatendswell,1603 adversaries,1,allswellthatendswell,1603 languages,1,allswellthatendswell,1603 reason's,1,allswellthatendswell,1603 among,1,allswellthatendswell,1603 doctors,1,allswellthatendswell,1603 hen,1,allswellthatendswell,1603 Having,1,allswellthatendswell,1603 'After,1,allswellthatendswell,1603 spots,1,allswellthatendswell,1603 bannerets,1,allswellthatendswell,1603 mourningly,1,allswellthatendswell,1603 Me,1,allswellthatendswell,1603 bay,1,allswellthatendswell,1603 siege,1,allswellthatendswell,1603 performer,1,allswellthatendswell,1603 Impossible,1,allswellthatendswell,1603 Stand,1,allswellthatendswell,1603 ladyship,1,allswellthatendswell,1603 speakest,1,allswellthatendswell,1603 cruel,1,allswellthatendswell,1603 Thirty,1,allswellthatendswell,1603 greatly,1,allswellthatendswell,1603 belike,1,allswellthatendswell,1603 lottery,1,allswellthatendswell,1603 house's,1,allswellthatendswell,1603 pitied,1,allswellthatendswell,1603 innocent,1,allswellthatendswell,1603 'her',1,allswellthatendswell,1603 difficulty,1,allswellthatendswell,1603 conceived,1,allswellthatendswell,1603 goaded,1,allswellthatendswell,1603 Cosmo,1,allswellthatendswell,1603 changed,1,allswellthatendswell,1603 motions,1,allswellthatendswell,1603 remainder,1,allswellthatendswell,1603 enter'd,1,allswellthatendswell,1603 inherits,1,allswellthatendswell,1603 exact,1,allswellthatendswell,1603 flowery,1,allswellthatendswell,1603 required,1,allswellthatendswell,1603 bunting,1,allswellthatendswell,1603 bee,1,allswellthatendswell,1603 meant,1,allswellthatendswell,1603 sovereignty,1,allswellthatendswell,1603 team,1,allswellthatendswell,1603 dinner,1,allswellthatendswell,1603 owner,1,allswellthatendswell,1603 Religious,1,allswellthatendswell,1603 surely,1,allswellthatendswell,1603 fettering,1,allswellthatendswell,1603 thitherward,1,allswellthatendswell,1603 Approved,1,allswellthatendswell,1603 soundness,1,allswellthatendswell,1603 ease,1,allswellthatendswell,1603 eagerness,1,allswellthatendswell,1603 muskets,1,allswellthatendswell,1603 contracted,1,allswellthatendswell,1603 salads,1,allswellthatendswell,1603 unchaste,1,allswellthatendswell,1603 denial,1,allswellthatendswell,1603 pate,1,allswellthatendswell,1603 Let's,1,allswellthatendswell,1603 commendation,1,allswellthatendswell,1603 pie,1,allswellthatendswell,1603 abhorred,1,allswellthatendswell,1603 Dutch,1,allswellthatendswell,1603 election,1,allswellthatendswell,1603 off's,1,allswellthatendswell,1603 pin,1,allswellthatendswell,1603 stem,1,allswellthatendswell,1603 wedded,1,allswellthatendswell,1603 threateningly,1,allswellthatendswell,1603 step,1,allswellthatendswell,1603 heroes,1,allswellthatendswell,1603 Is't,1,allswellthatendswell,1603 Guiltian,1,allswellthatendswell,1603 nice,1,allswellthatendswell,1603 customer,1,allswellthatendswell,1603 Mere,1,allswellthatendswell,1603 VI,1,allswellthatendswell,1603 formerly,1,allswellthatendswell,1603 prostitute,1,allswellthatendswell,1603 Hoodman,1,allswellthatendswell,1603 heads,1,allswellthatendswell,1603 sire,1,allswellthatendswell,1603 became,1,allswellthatendswell,1603 obey,1,allswellthatendswell,1603 surprise,1,allswellthatendswell,1603 foully,1,allswellthatendswell,1603 courteous,1,allswellthatendswell,1603 Adieu,1,allswellthatendswell,1603 theft,1,allswellthatendswell,1603 offered,1,allswellthatendswell,1603 villiando,1,allswellthatendswell,1603 ruttish,1,allswellthatendswell,1603 doers,1,allswellthatendswell,1603 catalogue,1,allswellthatendswell,1603 inaidible,1,allswellthatendswell,1603 Deadly,1,allswellthatendswell,1603 thorn,1,allswellthatendswell,1603 sith,1,allswellthatendswell,1603 repeated,1,allswellthatendswell,1603 week,1,allswellthatendswell,1603 straw,1,allswellthatendswell,1603 bend,1,allswellthatendswell,1603 Receive,1,allswellthatendswell,1603 'the,1,allswellthatendswell,1603 sooner,1,allswellthatendswell,1603 fields,1,allswellthatendswell,1603 quick'st,1,allswellthatendswell,1603 drunkenness,1,allswellthatendswell,1603 preserver,1,allswellthatendswell,1603 behind,1,allswellthatendswell,1603 worshipper,1,allswellthatendswell,1603 possibility,1,allswellthatendswell,1603 difference,1,allswellthatendswell,1603 unfit,1,allswellthatendswell,1603 sorts,1,allswellthatendswell,1603 languishes,1,allswellthatendswell,1603 canon,1,allswellthatendswell,1603 succeeded,1,allswellthatendswell,1603 Exception,1,allswellthatendswell,1603 breathing,1,allswellthatendswell,1603 children,1,allswellthatendswell,1603 goodlier,1,allswellthatendswell,1603 awaked,1,allswellthatendswell,1603 tell'st,1,allswellthatendswell,1603 congregated,1,allswellthatendswell,1603 naming,1,allswellthatendswell,1603 altar,1,allswellthatendswell,1603 extended,1,allswellthatendswell,1603 strives,1,allswellthatendswell,1603 dote,1,allswellthatendswell,1603 paring,1,allswellthatendswell,1603 reference,1,allswellthatendswell,1603 immediate,1,allswellthatendswell,1603 anything,1,allswellthatendswell,1603 couch,1,allswellthatendswell,1603 sacrament,1,allswellthatendswell,1603 somewhat,1,allswellthatendswell,1603 bent,1,allswellthatendswell,1603 empirics,1,allswellthatendswell,1603 craft,1,allswellthatendswell,1603 treasons,1,allswellthatendswell,1603 imperial,1,allswellthatendswell,1603 Strange,1,allswellthatendswell,1603 Cheque,1,allswellthatendswell,1603 travails,1,allswellthatendswell,1603 sustain,1,allswellthatendswell,1603 shadow,1,allswellthatendswell,1603 Lies,1,allswellthatendswell,1603 disclose,1,allswellthatendswell,1603 yond's,1,allswellthatendswell,1603 Tucket,1,allswellthatendswell,1603 suddenly,1,allswellthatendswell,1603 sieve,1,allswellthatendswell,1603 serpent,1,allswellthatendswell,1603 keep'st,1,allswellthatendswell,1603 gamester,1,allswellthatendswell,1603 extreme,1,allswellthatendswell,1603 Spanish,1,allswellthatendswell,1603 tedious,1,allswellthatendswell,1603 friendly,1,allswellthatendswell,1603 descents,1,allswellthatendswell,1603 verity,1,allswellthatendswell,1603 worship's,1,allswellthatendswell,1603 amongst,1,allswellthatendswell,1603 raising,1,allswellthatendswell,1603 cruelly,1,allswellthatendswell,1603 preserve,1,allswellthatendswell,1603 As't,1,allswellthatendswell,1603 survey,1,allswellthatendswell,1603 longer,1,allswellthatendswell,1603 O'er,1,allswellthatendswell,1603 wheresoe'er,1,allswellthatendswell,1603 gown,1,allswellthatendswell,1603 swine,1,allswellthatendswell,1603 divine,1,allswellthatendswell,1603 enterprise,1,allswellthatendswell,1603 sink,1,allswellthatendswell,1603 Like,1,allswellthatendswell,1603 Strengthen'd,1,allswellthatendswell,1603 Whither,1,allswellthatendswell,1603 stretch,1,allswellthatendswell,1603 deservings,1,allswellthatendswell,1603 ashamed,1,allswellthatendswell,1603 turns,1,allswellthatendswell,1603 immortal,1,allswellthatendswell,1603 month's,1,allswellthatendswell,1603 cramp,1,allswellthatendswell,1603 ring's,1,allswellthatendswell,1603 crowns,1,allswellthatendswell,1603 inheritance,1,allswellthatendswell,1603 traitress,1,allswellthatendswell,1603 organ,1,allswellthatendswell,1603 quite,1,allswellthatendswell,1603 magnanimous,1,allswellthatendswell,1603 shrieve's,1,allswellthatendswell,1603 pasty,1,allswellthatendswell,1603 custard,1,allswellthatendswell,1603 dogs,1,allswellthatendswell,1603 college,1,allswellthatendswell,1603 flourishes,1,allswellthatendswell,1603 solely,1,allswellthatendswell,1603 curls,1,allswellthatendswell,1603 deem,1,allswellthatendswell,1603 deep,1,allswellthatendswell,1603 deer,1,allswellthatendswell,1603 saffron,1,allswellthatendswell,1603 affection,1,allswellthatendswell,1603 forgive,1,allswellthatendswell,1603 'but,1,allswellthatendswell,1603 mood,1,allswellthatendswell,1603 image,1,allswellthatendswell,1603 breast,1,allswellthatendswell,1603 blowing,1,allswellthatendswell,1603 Fortune,1,allswellthatendswell,1603 ail,1,allswellthatendswell,1603 reave,1,allswellthatendswell,1603 butter,1,allswellthatendswell,1603 Durst,1,allswellthatendswell,1603 citadel,1,allswellthatendswell,1603 snatch'd,1,allswellthatendswell,1603 yea,1,allswellthatendswell,1603 du,1,allswellthatendswell,1603 barely,1,allswellthatendswell,1603 unfeignedly,1,allswellthatendswell,1603 satisfy,1,allswellthatendswell,1603 dispositions,1,allswellthatendswell,1603 consider,1,allswellthatendswell,1603 took'st,1,allswellthatendswell,1603 Advise,1,allswellthatendswell,1603 wreck,1,allswellthatendswell,1603 stool,1,allswellthatendswell,1603 Making,1,allswellthatendswell,1603 yes,1,allswellthatendswell,1603 legs,1,allswellthatendswell,1603 beam,1,allswellthatendswell,1603 notes,1,allswellthatendswell,1603 handsome,1,allswellthatendswell,1603 amendment,1,allswellthatendswell,1603 stone,1,allswellthatendswell,1603 caitiff,1,allswellthatendswell,1603 fishpond,1,allswellthatendswell,1603 ''tis,1,allswellthatendswell,1603 expose,1,allswellthatendswell,1603 gait,1,allswellthatendswell,1603 dignity,1,allswellthatendswell,1603 commanders,1,allswellthatendswell,1603 priest,1,allswellthatendswell,1603 engines,1,allswellthatendswell,1603 'Fore,1,allswellthatendswell,1603 rector,1,allswellthatendswell,1603 nobleman,1,allswellthatendswell,1603 Besides,1,allswellthatendswell,1603 played,1,allswellthatendswell,1603 seeming,1,allswellthatendswell,1603 enforce,1,allswellthatendswell,1603 Sebastian,1,allswellthatendswell,1603 thirds,1,allswellthatendswell,1603 militarist,1,allswellthatendswell,1603 touch'd,1,allswellthatendswell,1603 accused,1,allswellthatendswell,1603 forged,1,allswellthatendswell,1603 torcher,1,allswellthatendswell,1603 lady's,1,allswellthatendswell,1603 ice,1,allswellthatendswell,1603 by't,1,allswellthatendswell,1603 makest,1,allswellthatendswell,1603 trophy,1,allswellthatendswell,1603 offendress,1,allswellthatendswell,1603 apes,1,allswellthatendswell,1603 'prentice,1,allswellthatendswell,1603 forges,1,allswellthatendswell,1603 forget,1,allswellthatendswell,1603 wench,1,allswellthatendswell,1603 piercing,1,allswellthatendswell,1603 door,1,allswellthatendswell,1603 forgotten,1,allswellthatendswell,1603 fixed,1,allswellthatendswell,1603 inclusive,1,allswellthatendswell,1603 cured,1,allswellthatendswell,1603 dried,1,allswellthatendswell,1603 feast,1,allswellthatendswell,1603 tinct,1,allswellthatendswell,1603 unseal'd,1,allswellthatendswell,1603 ask'd,1,allswellthatendswell,1603 know't,1,allswellthatendswell,1603 attending,1,allswellthatendswell,1603 commend,1,allswellthatendswell,1603 threaten,1,allswellthatendswell,1603 damn'd,1,allswellthatendswell,1603 plant,1,allswellthatendswell,1603 armipotent,1,allswellthatendswell,1603 necessity,1,allswellthatendswell,1603 utmost,1,allswellthatendswell,1603 aside,1,allswellthatendswell,1603 Cargo,1,allswellthatendswell,1603 wrinkles,1,allswellthatendswell,1603 novices,1,allswellthatendswell,1603 remainders,1,allswellthatendswell,1603 seventeen,1,allswellthatendswell,1603 whereof,1,allswellthatendswell,1603 collected,1,allswellthatendswell,1603 catastrophe,1,allswellthatendswell,1603 malignant,1,allswellthatendswell,1603 Lays,1,allswellthatendswell,1603 auspicious,1,allswellthatendswell,1603 reveal,1,allswellthatendswell,1603 inhibited,1,allswellthatendswell,1603 accomplished,1,allswellthatendswell,1603 eminent,1,allswellthatendswell,1603 crimes,1,allswellthatendswell,1603 'twould,1,allswellthatendswell,1603 rapes,1,allswellthatendswell,1603 lover,1,allswellthatendswell,1603 challenges,1,allswellthatendswell,1603 achieves,1,allswellthatendswell,1603 puritan,1,allswellthatendswell,1603 hadst,1,allswellthatendswell,1603 offences,1,allswellthatendswell,1603 mites,1,allswellthatendswell,1603 doer's,1,allswellthatendswell,1603 sharply,1,allswellthatendswell,1603 loud,1,allswellthatendswell,1603 endure,1,allswellthatendswell,1603 curbed,1,allswellthatendswell,1603 parents,1,allswellthatendswell,1603 commands,1,allswellthatendswell,1603 add,1,allswellthatendswell,1603 speak'st,1,allswellthatendswell,1603 Acquaint,1,allswellthatendswell,1603 resolved,1,allswellthatendswell,1603 Grief,1,allswellthatendswell,1603 talkest,1,allswellthatendswell,1603 afternoon,1,allswellthatendswell,1603 ravishments,1,allswellthatendswell,1603 quoted,1,allswellthatendswell,1603 weakest,1,allswellthatendswell,1603 ace,1,allswellthatendswell,1603 dole,1,allswellthatendswell,1603 apparel,1,allswellthatendswell,1603 removes,1,allswellthatendswell,1603 lock'd,1,allswellthatendswell,1603 greater,1,allswellthatendswell,1603 young',1,allswellthatendswell,1603 incertain,1,allswellthatendswell,1603 show'd,1,allswellthatendswell,1603 forgot,1,allswellthatendswell,1603 knee,1,allswellthatendswell,1603 hoodwink,1,allswellthatendswell,1603 attain,1,allswellthatendswell,1603 scatter'd,1,allswellthatendswell,1603 thought'st,1,allswellthatendswell,1603 natures,1,allswellthatendswell,1603 pure,1,allswellthatendswell,1603 marr'd,1,allswellthatendswell,1603 Because,1,allswellthatendswell,1603 prescriptions,1,allswellthatendswell,1603 Guards,1,allswellthatendswell,1603 briers,1,allswellthatendswell,1603 excels,1,allswellthatendswell,1603 Blessing,1,allswellthatendswell,1603 abandoned,1,allswellthatendswell,1603 swell's,1,allswellthatendswell,1603 zealous,1,allswellthatendswell,1603 harm'd,1,allswellthatendswell,1603 pomegranate,1,allswellthatendswell,1603 thrice,1,allswellthatendswell,1603 tucket,1,allswellthatendswell,1603 hark,1,allswellthatendswell,1603 Whence,1,allswellthatendswell,1603 Mort,1,allswellthatendswell,1603 Haply,1,allswellthatendswell,1603 eats,1,allswellthatendswell,1603 punk,1,allswellthatendswell,1603 running,1,allswellthatendswell,1603 botcher's,1,allswellthatendswell,1603 o'erta'en,1,allswellthatendswell,1603 ensconcing,1,allswellthatendswell,1603 blamed,1,allswellthatendswell,1603 ability,1,allswellthatendswell,1603 scratch,1,allswellthatendswell,1603 outward,1,allswellthatendswell,1603 Brought,1,allswellthatendswell,1603 blames,1,allswellthatendswell,1603 plume,1,allswellthatendswell,1603 pare,1,allswellthatendswell,1603 field,1,allswellthatendswell,1603 artists,1,allswellthatendswell,1603 distil,1,allswellthatendswell,1603 peering,1,allswellthatendswell,1603 fasten'd,1,allswellthatendswell,1603 pour'd,1,allswellthatendswell,1603 Camp,1,allswellthatendswell,1603 stripped,1,allswellthatendswell,1603 plod,1,allswellthatendswell,1603 afford,1,allswellthatendswell,1603 flinch,1,allswellthatendswell,1603 manifold,1,allswellthatendswell,1603 crow,1,allswellthatendswell,1603 labouring,1,allswellthatendswell,1603 Christian,1,allswellthatendswell,1603 crop,1,allswellthatendswell,1603 staining,1,allswellthatendswell,1603 kingly,1,allswellthatendswell,1603 senseless,1,allswellthatendswell,1603 unworthiness,1,allswellthatendswell,1603 shallow,1,allswellthatendswell,1603 impression,1,allswellthatendswell,1603 pale,1,allswellthatendswell,1603 coldest,1,allswellthatendswell,1603 Hercules,1,allswellthatendswell,1603 perform'd,1,allswellthatendswell,1603 Read,1,allswellthatendswell,1603 Unblinding,1,allswellthatendswell,1603 repeal'd,1,allswellthatendswell,1603 cites,1,allswellthatendswell,1603 repeat,1,allswellthatendswell,1603 Beware,1,allswellthatendswell,1603 Unquestion'd,1,allswellthatendswell,1603 re,1,allswellthatendswell,1603 Lady,1,allswellthatendswell,1603 reach,1,allswellthatendswell,1603 impositions,1,allswellthatendswell,1603 swiftest,1,allswellthatendswell,1603 confession,1,allswellthatendswell,1603 jades',1,allswellthatendswell,1603 porridge,1,allswellthatendswell,1603 Shrove,1,allswellthatendswell,1603 suitors,1,allswellthatendswell,1603 Manka,1,allswellthatendswell,1603 intenible,1,allswellthatendswell,1603 remembrances,1,allswellthatendswell,1603 restrained,1,allswellthatendswell,1603 Brings,1,allswellthatendswell,1603 perpetual,1,allswellthatendswell,1603 acquaintance,1,allswellthatendswell,1603 ROUSILLON,1,allswellthatendswell,1603 open,1,allswellthatendswell,1603 arm,1,allswellthatendswell,1603 refused,1,allswellthatendswell,1603 Smile,1,allswellthatendswell,1603 occasions,1,allswellthatendswell,1603 weeps,1,allswellthatendswell,1603 nun's,1,allswellthatendswell,1603 pain,1,allswellthatendswell,1603 incensing,1,allswellthatendswell,1603 hangs,1,allswellthatendswell,1603 fore,1,allswellthatendswell,1603 mock,1,allswellthatendswell,1603 entertain't,1,allswellthatendswell,1603 Dispatch,1,allswellthatendswell,1603 shakes,1,allswellthatendswell,1603 pace,1,allswellthatendswell,1603 Indian,1,allswellthatendswell,1603 fear'd,1,allswellthatendswell,1603 dismal,1,allswellthatendswell,1603 dreadful,1,allswellthatendswell,1603 rogue,1,allswellthatendswell,1603 hats,1,allswellthatendswell,1603 puts,1,allswellthatendswell,1603 supposition,1,allswellthatendswell,1603 yielded,1,allswellthatendswell,1603 cesse,1,allswellthatendswell,1603 except,1,allswellthatendswell,1603 gentry,1,allswellthatendswell,1603 detested,1,allswellthatendswell,1603 rough,1,allswellthatendswell,1603 vowed,1,allswellthatendswell,1603 saints,1,allswellthatendswell,1603 tyranny,1,allswellthatendswell,1603 prepared,1,allswellthatendswell,1603 yarn,1,allswellthatendswell,1603 enwombed,1,allswellthatendswell,1603 revenge,1,allswellthatendswell,1603 lousy,1,allswellthatendswell,1603 philosophical,1,allswellthatendswell,1603 testimony,1,allswellthatendswell,1603 excess,1,allswellthatendswell,1603 obey'd,1,allswellthatendswell,1603 object,1,allswellthatendswell,1603 purr,1,allswellthatendswell,1603 Alarum,1,allswellthatendswell,1603 protected,1,allswellthatendswell,1603 fresh,1,allswellthatendswell,1603 Attendant,1,allswellthatendswell,1603 attempts,1,allswellthatendswell,1603 monument,1,allswellthatendswell,1603 rightly,1,allswellthatendswell,1603 Moist,1,allswellthatendswell,1603 error,1,allswellthatendswell,1603 nearest,1,allswellthatendswell,1603 supernatural,1,allswellthatendswell,1603 embodied,1,allswellthatendswell,1603 foregone,1,allswellthatendswell,1603 hive,1,allswellthatendswell,1603 Expire,1,allswellthatendswell,1603 apprehensive,1,allswellthatendswell,1603 ceased,1,allswellthatendswell,1603 carbonadoed,1,allswellthatendswell,1603 knock,1,allswellthatendswell,1603 Loosing,1,allswellthatendswell,1603 inquire,1,allswellthatendswell,1603 Acordo,1,allswellthatendswell,1603 deadly,1,allswellthatendswell,1603 Hark,1,allswellthatendswell,1603 few,1,allswellthatendswell,1603 colour'd,1,allswellthatendswell,1603 hits,1,allswellthatendswell,1603 court's,1,allswellthatendswell,1603 partaken,1,allswellthatendswell,1603 dilated,1,allswellthatendswell,1603 ministers,1,allswellthatendswell,1603 sweetly,1,allswellthatendswell,1603 enemies,1,allswellthatendswell,1603 naughty,1,allswellthatendswell,1603 warp'd,1,allswellthatendswell,1603 Capilet,1,allswellthatendswell,1603 Contend,1,allswellthatendswell,1603 daring,1,allswellthatendswell,1603 wooing,1,allswellthatendswell,1603 conversation,1,allswellthatendswell,1603 trial,1,allswellthatendswell,1603 bountiful,1,allswellthatendswell,1603 Satan,1,allswellthatendswell,1603 Little,1,allswellthatendswell,1603 broke,1,allswellthatendswell,1603 Art,1,allswellthatendswell,1603 beams,1,allswellthatendswell,1603 having,1,allswellthatendswell,1603 Rust,1,allswellthatendswell,1603 consumes,1,allswellthatendswell,1603 superfluous,1,allswellthatendswell,1603 march,1,allswellthatendswell,1603 consumed,1,allswellthatendswell,1603 height,1,allswellthatendswell,1603 nobler,1,allswellthatendswell,1603 humbleness,1,allswellthatendswell,1603 Grecians,1,allswellthatendswell,1603 luck,1,allswellthatendswell,1603 notable,1,allswellthatendswell,1603 rarity,1,allswellthatendswell,1603 strumpet's,1,allswellthatendswell,1603 fan,1,allswellthatendswell,1603 borrow,1,allswellthatendswell,1603 contented,1,allswellthatendswell,1603 quatch,1,allswellthatendswell,1603 delicate,1,allswellthatendswell,1603 room,1,allswellthatendswell,1603 render'd,1,allswellthatendswell,1603 appoints,1,allswellthatendswell,1603 tried,1,allswellthatendswell,1603 spritely,1,allswellthatendswell,1603 education,1,allswellthatendswell,1603 languishings,1,allswellthatendswell,1603 rational,1,allswellthatendswell,1603 attributed,1,allswellthatendswell,1603 destiny,1,allswellthatendswell,1603 incurable,1,allswellthatendswell,1603 syllable,1,allswellthatendswell,1603 moved,1,allswellthatendswell,1603 helping,1,allswellthatendswell,1603 ballad,1,allswellthatendswell,1603 attributes,1,allswellthatendswell,1603 tarry,1,allswellthatendswell,1603 'Demand,1,allswellthatendswell,1603 Demand,1,allswellthatendswell,1603 allurement,1,allswellthatendswell,1603 requital,1,allswellthatendswell,1603 honey,1,allswellthatendswell,1603 Spoke,1,allswellthatendswell,1603 hind,1,allswellthatendswell,1603 Ten,1,allswellthatendswell,1603 tokens,1,allswellthatendswell,1603 carrier,1,allswellthatendswell,1603 griefs,1,allswellthatendswell,1603 forehead,1,allswellthatendswell,1603 compt,1,allswellthatendswell,1603 undeserved,1,allswellthatendswell,1603 rose,1,allswellthatendswell,1603 silence,1,allswellthatendswell,1603 weighing,1,allswellthatendswell,1603 broad,1,allswellthatendswell,1603 build,1,allswellthatendswell,1603 express'd,1,allswellthatendswell,1603 water,1,allswellthatendswell,1603 sickly,1,allswellthatendswell,1603 Tax,1,allswellthatendswell,1603 sending,1,allswellthatendswell,1603 rooted,1,allswellthatendswell,1603 Half,1,allswellthatendswell,1603 Else,1,allswellthatendswell,1603 o'erflows,1,allswellthatendswell,1603 square,1,allswellthatendswell,1603 lack'd,1,allswellthatendswell,1603 furniture,1,allswellthatendswell,1603 retreat,1,allswellthatendswell,1603 sparing,1,allswellthatendswell,1603 rare,1,allswellthatendswell,1603 experiment,1,allswellthatendswell,1603 disgraces,1,allswellthatendswell,1603 workman,1,allswellthatendswell,1603 faculties,1,allswellthatendswell,1603 Furies,1,allswellthatendswell,1603 overlooking,1,allswellthatendswell,1603 trumpeters,1,allswellthatendswell,1603 Undone,1,allswellthatendswell,1603 crushed,1,allswellthatendswell,1603 conquer'd,1,allswellthatendswell,1603 Derived,1,allswellthatendswell,1603 penny,1,allswellthatendswell,1603 penitents,1,allswellthatendswell,1603 scale,1,allswellthatendswell,1603 clog,1,allswellthatendswell,1603 shaking,1,allswellthatendswell,1603 guess'd,1,allswellthatendswell,1603 deserving,1,allswellthatendswell,1603 volubility,1,allswellthatendswell,1603 tended,1,allswellthatendswell,1603 ours,1,allswellthatendswell,1603 hasten,1,allswellthatendswell,1603 Bentii,1,allswellthatendswell,1603 communicate,1,allswellthatendswell,1603 thinkings,1,allswellthatendswell,1603 Safest,1,allswellthatendswell,1603 entirely,1,allswellthatendswell,1603 boys',1,allswellthatendswell,1603 Exempted,1,allswellthatendswell,1603 observed,1,allswellthatendswell,1603 chape,1,allswellthatendswell,1603 commoner,1,allswellthatendswell,1603 pastime,1,allswellthatendswell,1603 detesting,1,allswellthatendswell,1603 Vileness,1,allswellthatendswell,1603 hies,1,allswellthatendswell,1603 ascribe,1,allswellthatendswell,1603 Mars's,1,allswellthatendswell,1603 fails,1,allswellthatendswell,1603 traitorously,1,allswellthatendswell,1603 chase,1,allswellthatendswell,1603 personages,1,allswellthatendswell,1603 'That's,1,allswellthatendswell,1603 strike,1,allswellthatendswell,1603 enticements,1,allswellthatendswell,1603 meditating,1,allswellthatendswell,1603 excused,1,allswellthatendswell,1603 Thick,1,allswellthatendswell,1603 visage,1,allswellthatendswell,1603 Sit,1,allswellthatendswell,1603 learning,1,allswellthatendswell,1603 picking,1,allswellthatendswell,1603 narrow,1,allswellthatendswell,1603 sticks,1,allswellthatendswell,1603 nut,1,allswellthatendswell,1603 thirsts,1,allswellthatendswell,1603 'spare,1,allswellthatendswell,1603 progress,1,allswellthatendswell,1603 'Till,1,allswellthatendswell,1603 staggers,1,allswellthatendswell,1603 Lose,1,allswellthatendswell,1603 counsellor,1,allswellthatendswell,1603 who's,1,allswellthatendswell,1603 odious,1,allswellthatendswell,1603 slowness,1,allswellthatendswell,1603 ignorant,1,allswellthatendswell,1603 misery,1,allswellthatendswell,1603 unhappy,1,allswellthatendswell,1603 evermore,1,allswellthatendswell,1603 dares,1,allswellthatendswell,1603 housewife,1,allswellthatendswell,1603 defective,1,allswellthatendswell,1603 awhile,1,allswellthatendswell,1603 accessary,1,allswellthatendswell,1603 several,1,allswellthatendswell,1603 quarter,1,allswellthatendswell,1603 say'st,1,allswellthatendswell,1603 famous,1,allswellthatendswell,1603 lattice,1,allswellthatendswell,1603 Doth,1,allswellthatendswell,1603 Dost,1,allswellthatendswell,1603 grateful,1,allswellthatendswell,1603 Loss,1,allswellthatendswell,1603 lending,1,allswellthatendswell,1603 Colours,1,allswellthatendswell,1603 chill,1,allswellthatendswell,1603 See,1,allswellthatendswell,1603 Helena,1,allswellthatendswell,1603 foregoers,1,allswellthatendswell,1603 err,1,allswellthatendswell,1603 lodge,1,allswellthatendswell,1603 towards,1,allswellthatendswell,1603 leaves,1,allswellthatendswell,1603 blessings,1,allswellthatendswell,1603 Creaking,1,allswellthatendswell,1603 milk,1,allswellthatendswell,1603 fistula,1,allswellthatendswell,1603 arrived,1,allswellthatendswell,1603 eaves,1,allswellthatendswell,1603 nod,1,allswellthatendswell,1603 charitable,1,allswellthatendswell,1603 aiding,1,allswellthatendswell,1603 teeth,1,allswellthatendswell,1603 bubble,1,allswellthatendswell,1603 satisfaction,1,allswellthatendswell,1603 saving,1,allswellthatendswell,1603 shield,1,allswellthatendswell,1603 Makes,1,allswellthatendswell,1603 flinty,1,allswellthatendswell,1603 kisses,1,allswellthatendswell,1603 steely,1,allswellthatendswell,1603 purposes,1,allswellthatendswell,1603 escape,1,allswellthatendswell,1603 'word,1,allswellthatendswell,1603 slowly,1,allswellthatendswell,1603 vent,1,allswellthatendswell,1603 merrily,1,allswellthatendswell,1603 confidence,1,allswellthatendswell,1603 remorseful,1,allswellthatendswell,1603 process,1,allswellthatendswell,1603 chair,1,allswellthatendswell,1603 relinquish'd,1,allswellthatendswell,1603 bloods,1,allswellthatendswell,1603 lowest,1,allswellthatendswell,1603 belong,1,allswellthatendswell,1603 'gainst,1,allswellthatendswell,1603 arched,1,allswellthatendswell,1603 courage,1,allswellthatendswell,1603 Pursuit,1,allswellthatendswell,1603 egg,1,allswellthatendswell,1603 skin,1,allswellthatendswell,1603 villanous,1,allswellthatendswell,1603 friar's,1,allswellthatendswell,1603 tents,1,allswellthatendswell,1603 there't,1,allswellthatendswell,1603 concord,1,allswellthatendswell,1603 chief,1,allswellthatendswell,1603 dream,1,allswellthatendswell,1603 tartness,1,allswellthatendswell,1603 mark,1,allswellthatendswell,1603 son's,1,allswellthatendswell,1603 ranks,1,allswellthatendswell,1603 thick,1,allswellthatendswell,1603 Son,1,allswellthatendswell,1603 Necessitied,1,allswellthatendswell,1603 Honour,1,allswellthatendswell,1603 misled,1,allswellthatendswell,1603 hawking,1,allswellthatendswell,1603 credible,1,allswellthatendswell,1603 because,1,allswellthatendswell,1603 Flies,1,allswellthatendswell,1603 Strangers,1,allswellthatendswell,1603 designs,1,allswellthatendswell,1603 believing,1,allswellthatendswell,1603 haggish,1,allswellthatendswell,1603 leaden,1,allswellthatendswell,1603 kicky,1,allswellthatendswell,1603 minutes,1,allswellthatendswell,1603 ballads,1,allswellthatendswell,1603 Recantation,1,allswellthatendswell,1603 eke,1,allswellthatendswell,1603 beside,1,allswellthatendswell,1603 Antonio,1,allswellthatendswell,1603 address,1,allswellthatendswell,1603 chide,1,allswellthatendswell,1603 heaven's,1,allswellthatendswell,1603 forehorse,1,allswellthatendswell,1603 wealthiest,1,allswellthatendswell,1603 solicits,1,allswellthatendswell,1603 fundamental,1,allswellthatendswell,1603 captive,1,allswellthatendswell,1603 abed,1,allswellthatendswell,1603 bleak,1,allswellthatendswell,1603 camping,1,allswellthatendswell,1603 thievish,1,allswellthatendswell,1603 constable,1,allswellthatendswell,1603 cozen'd,1,allswellthatendswell,1603 trifle,1,allswellthatendswell,1603 Whatsome'er,1,allswellthatendswell,1603 Oscorbidulchos,1,allswellthatendswell,1603 thromuldo,1,allswellthatendswell,1603 smoke,1,allswellthatendswell,1603 warranted,1,allswellthatendswell,1603 Choose,1,allswellthatendswell,1603 disguised,1,allswellthatendswell,1603 FRANCE,1,allswellthatendswell,1603 sluttish,1,allswellthatendswell,1603 stake,1,allswellthatendswell,1603 examined,1,allswellthatendswell,1603 wet,1,allswellthatendswell,1603 Giving,1,allswellthatendswell,1603 barnes,1,allswellthatendswell,1603 wrath,1,allswellthatendswell,1603 forgiven,1,allswellthatendswell,1603 web,1,allswellthatendswell,1603 o'clock,1,allswellthatendswell,1603 desired,1,allswellthatendswell,1603 bear'st,1,allswellthatendswell,1603 possession,1,allswellthatendswell,1603 woodcock,1,allswellthatendswell,1603 under't,1,allswellthatendswell,1603 expedient,1,allswellthatendswell,1603 Drum's,1,allswellthatendswell,1603 breed,1,allswellthatendswell,1603 stall,1,allswellthatendswell,1603 losing,1,allswellthatendswell,1603 curiously,1,allswellthatendswell,1603 sleeves,1,allswellthatendswell,1603 sharpness,1,allswellthatendswell,1603 Maudlin,1,allswellthatendswell,1603 poll,1,allswellthatendswell,1603 slight,1,allswellthatendswell,1603 Embowell'd,1,allswellthatendswell,1603 dignified,1,allswellthatendswell,1603 passage,1,allswellthatendswell,1603 opinion,1,allswellthatendswell,1603 proved,1,allswellthatendswell,1603 stink,1,allswellthatendswell,1603 Charlemain,1,allswellthatendswell,1603 apology,1,allswellthatendswell,1603 wrongs,1,allswellthatendswell,1603 gabble,1,allswellthatendswell,1603 'Too,1,allswellthatendswell,1603 Gratii,1,allswellthatendswell,1603 merits,1,allswellthatendswell,1603 murders,1,allswellthatendswell,1603 example,1,allswellthatendswell,1603 gem,1,allswellthatendswell,1603 Hesperus,1,allswellthatendswell,1603 salt,1,allswellthatendswell,1603 Ambitious,1,allswellthatendswell,1603 pomp,1,allswellthatendswell,1603 barricado,1,allswellthatendswell,1603 dishonour,1,allswellthatendswell,1603 smoky,1,allswellthatendswell,1603 style,1,allswellthatendswell,1603 boarded,1,allswellthatendswell,1603 wit,1,allswellthatendswell,1603 sides,1,allswellthatendswell,1603 prologues,1,allswellthatendswell,1603 Morgan,1,allswellthatendswell,1603 amplest,1,allswellthatendswell,1603 proposes,1,allswellthatendswell,1603 persons,1,allswellthatendswell,1603 think't,1,allswellthatendswell,1603 mildest,1,allswellthatendswell,1603 Galen,1,allswellthatendswell,1603 Pilgrim,1,allswellthatendswell,1603 prophesier,1,allswellthatendswell,1603 'Twill,1,allswellthatendswell,1603 emblem,1,allswellthatendswell,1603 receipt,1,allswellthatendswell,1603 misprising,1,allswellthatendswell,1603 curd,1,allswellthatendswell,1603 pretence,1,allswellthatendswell,1603 import,1,allswellthatendswell,1603 hears,1,allswellthatendswell,1603 creating,1,allswellthatendswell,1603 Prejudicates,1,allswellthatendswell,1603 Titled,1,allswellthatendswell,1603 usurping,1,allswellthatendswell,1603 smock,1,allswellthatendswell,1603 novelty,1,allswellthatendswell,1603 prime,1,allswellthatendswell,1603 sitting,1,allswellthatendswell,1603 Tuesday,1,allswellthatendswell,1603 banish'd,1,allswellthatendswell,1603 abundance,1,allswellthatendswell,1603 unseen,1,allswellthatendswell,1603 creation,1,allswellthatendswell,1603 severed,1,allswellthatendswell,1603 sonnet,1,allswellthatendswell,1603 volivorco,1,allswellthatendswell,1603 manifest,1,allswellthatendswell,1603 waking,1,allswellthatendswell,1603 influence,1,allswellthatendswell,1603 Dead,1,allswellthatendswell,1603 recover,1,allswellthatendswell,1603 coxcomb,1,allswellthatendswell,1603 Hardly,1,allswellthatendswell,1603 knaveries,1,allswellthatendswell,1603 files,1,allswellthatendswell,1603 Say,1,allswellthatendswell,1603 walls,1,allswellthatendswell,1603 residence,1,allswellthatendswell,1603 Subdued,1,allswellthatendswell,1603 standing,1,allswellthatendswell,1603 impediments,1,allswellthatendswell,1603 death's,1,allswellthatendswell,1603 vouch,1,allswellthatendswell,1603 remains,1,allswellthatendswell,1603 integrity,1,allswellthatendswell,1603 nursery,1,allswellthatendswell,1603 occidental,1,allswellthatendswell,1603 dilemmas,1,allswellthatendswell,1603 poising,1,allswellthatendswell,1603 decrees,1,allswellthatendswell,1603 birthright,1,allswellthatendswell,1603 torture,1,allswellthatendswell,1603 champion,1,allswellthatendswell,1603 returning,1,allswellthatendswell,1603 Thine,1,allswellthatendswell,1603 Senoys,1,allswellthatendswell,1603 Thus,1,allswellthatendswell,1603 burthen,1,allswellthatendswell,1603 liked,1,allswellthatendswell,1603 'We,1,allswellthatendswell,1603 vow'd,1,allswellthatendswell,1603 sinewy,1,allswellthatendswell,1603 wax,1,allswellthatendswell,1603 spacious,1,allswellthatendswell,1603 Can,1,allswellthatendswell,1603 tuned,1,allswellthatendswell,1603 driven,1,allswellthatendswell,1603 entreating,1,allswellthatendswell,1603 facinerious,1,allswellthatendswell,1603 misprision,1,allswellthatendswell,1603 Florence's,1,allswellthatendswell,1603 trusty,1,allswellthatendswell,1603 fancy's,1,allswellthatendswell,1603 morris,1,allswellthatendswell,1603 important,1,allswellthatendswell,1603 profitable,1,allswellthatendswell,1603 Corambus,1,allswellthatendswell,1603 intent,1,allswellthatendswell,1603 commander,1,allswellthatendswell,1603 Bajazet's,1,allswellthatendswell,1603 rite,1,allswellthatendswell,1603 fervor,1,allswellthatendswell,1603 Conferr'd,1,allswellthatendswell,1603 knowingly,1,allswellthatendswell,1603 Expecting,1,allswellthatendswell,1603 pride,1,allswellthatendswell,1603 kinsmen,1,allswellthatendswell,1603 maiden's,1,allswellthatendswell,1603 greetings,1,allswellthatendswell,1603 resistance,1,allswellthatendswell,1603 thereabouts,1,allswellthatendswell,1603 disdain'st,1,allswellthatendswell,1603 tolerable,1,allswellthatendswell,1603 presumptuous,1,allswellthatendswell,1603 Knowing,1,allswellthatendswell,1603 undermine,1,allswellthatendswell,1603 admitted,1,allswellthatendswell,1603 apace,1,allswellthatendswell,1603 Lodowick,1,allswellthatendswell,1603 honestest,1,allswellthatendswell,1603 prick,1,allswellthatendswell,1603 tears',1,allswellthatendswell,1603 woodland,1,allswellthatendswell,1603 Poison,1,allswellthatendswell,1603 Three,1,allswellthatendswell,1603 bounty,1,allswellthatendswell,1603 lapse,1,allswellthatendswell,1603 equivocal,1,allswellthatendswell,1603 Given,1,allswellthatendswell,1603 hair,1,allswellthatendswell,1603 appliance,1,allswellthatendswell,1603 hail,1,allswellthatendswell,1603 sweets,1,allswellthatendswell,1603 grossly,1,allswellthatendswell,1603 Vanquish'd,1,allswellthatendswell,1603 surprised,1,allswellthatendswell,1603 angle,1,allswellthatendswell,1603 familiar,1,allswellthatendswell,1603 fix'd,1,allswellthatendswell,1603 requite,1,allswellthatendswell,1603 fact,1,allswellthatendswell,1603 gladly,1,allswellthatendswell,1603 'Came,1,allswellthatendswell,1603 reposing,1,allswellthatendswell,1603 breadth,1,allswellthatendswell,1603 earthquake,1,allswellthatendswell,1603 fruitfully,1,allswellthatendswell,1603 served,1,allswellthatendswell,1603 livelihood,1,allswellthatendswell,1603 Cupid's,1,allswellthatendswell,1603 dissolved,1,allswellthatendswell,1603 estates,1,allswellthatendswell,1603 validity,1,allswellthatendswell,1603 demonstrate,1,allswellthatendswell,1603 earthly,1,allswellthatendswell,1603 charges,1,allswellthatendswell,1603 rotten,1,allswellthatendswell,1603 virtue's,1,allswellthatendswell,1603 linguist,1,allswellthatendswell,1603 size,1,allswellthatendswell,1603 angel,1,allswellthatendswell,1603 anger,1,allswellthatendswell,1603 Extended,1,allswellthatendswell,1603 foreign,1,allswellthatendswell,1603 fisnomy,1,allswellthatendswell,1603 devoted,1,allswellthatendswell,1603 Bertram's,1,allswellthatendswell,1603 compulsion,1,allswellthatendswell,1603 knight,1,allswellthatendswell,1603 bitterness,1,allswellthatendswell,1603 neatly,1,allswellthatendswell,1603 questant,1,allswellthatendswell,1603 pitchy,1,allswellthatendswell,1603 disposition,1,allswellthatendswell,1603 similes,1,allswellthatendswell,1603 dull,1,allswellthatendswell,1603 nest,1,allswellthatendswell,1603 perfidious,1,allswellthatendswell,1603 duly,1,allswellthatendswell,1603 waters,1,allswellthatendswell,1603 belie,1,allswellthatendswell,1603 fry,1,allswellthatendswell,1603 wooes,1,allswellthatendswell,1603 doubling,1,allswellthatendswell,1603 vexed,1,allswellthatendswell,1603 wrong'd,1,allswellthatendswell,1603 unfortunate,1,allswellthatendswell,1603 Ever,1,allswellthatendswell,1603 Noble,1,allswellthatendswell,1603 gifts,1,allswellthatendswell,1603 grass,1,allswellthatendswell,1603 hideous,1,allswellthatendswell,1603 concealed,1,allswellthatendswell,1603 Offence,1,allswellthatendswell,1603 table,1,allswellthatendswell,1603 create,1,allswellthatendswell,1603 tailed,1,allswellthatendswell,1603 hunger,1,allswellthatendswell,1603 durst,1,allswellthatendswell,1603 examination,1,allswellthatendswell,1603 ground,1,allswellthatendswell,1603 Many,1,allswellthatendswell,1603 ore,1,allswellthatendswell,1603 wanted,1,allswellthatendswell,1603 messengers,1,allswellthatendswell,1603 highly,1,allswellthatendswell,1603 Thither,1,allswellthatendswell,1603 stolen,1,allswellthatendswell,1603 heedfull'st,1,allswellthatendswell,1603 clew,1,allswellthatendswell,1603 underminers,1,allswellthatendswell,1603 cares,1,allswellthatendswell,1603 prattle,1,allswellthatendswell,1603 Admiringly,1,allswellthatendswell,1603 proportions,1,allswellthatendswell,1603 embossed,1,allswellthatendswell,1603 clearly,1,allswellthatendswell,1603 constancy,1,allswellthatendswell,1603 Hadst,1,allswellthatendswell,1603 lump,1,allswellthatendswell,1603 wert,1,allswellthatendswell,1603 darkly,1,allswellthatendswell,1603 bedded,1,allswellthatendswell,1603 kinsman,1,allswellthatendswell,1603 methinks,1,allswellthatendswell,1603 Kerely,1,allswellthatendswell,1603 pleased,1,allswellthatendswell,1603 divulged,1,allswellthatendswell,1603 Escalus,1,allswellthatendswell,1603 parcels,1,allswellthatendswell,1603 parallels,1,allswellthatendswell,1603 multiplying,1,allswellthatendswell,1603 Reports,1,allswellthatendswell,1603 roses,1,allswellthatendswell,1603 scolding,1,allswellthatendswell,1603 husbanded,1,allswellthatendswell,1603 skilful,1,allswellthatendswell,1603 lodged,1,allswellthatendswell,1603 ride,1,allswellthatendswell,1603 allow,1,allswellthatendswell,1603 caution,1,allswellthatendswell,1603 unjust,1,allswellthatendswell,1603 officed,1,allswellthatendswell,1603 minute,1,allswellthatendswell,1603 grape,1,allswellthatendswell,1603 solicited,1,allswellthatendswell,1603 Bosko,1,allswellthatendswell,1603 pleases,1,allswellthatendswell,1603 wishing,1,allswellthatendswell,1603 Attend,1,allswellthatendswell,1603 admiration,1,allswellthatendswell,1603 safety,1,allswellthatendswell,1603 engaged,1,allswellthatendswell,1603 clap,1,allswellthatendswell,1603 barber's,1,allswellthatendswell,1603 friar,1,allswellthatendswell,1603 horn,1,allswellthatendswell,1603 hose,1,allswellthatendswell,1603 bare,1,allswellthatendswell,1603 meddle,1,allswellthatendswell,1603 host,1,allswellthatendswell,1603 pocket,1,allswellthatendswell,1603 fine's,1,allswellthatendswell,1603 unfold,1,allswellthatendswell,1603 arrogance,1,allswellthatendswell,1603 uncle,1,allswellthatendswell,1603 fondness,1,allswellthatendswell,1603 Defiles,1,allswellthatendswell,1603 beware,1,allswellthatendswell,1603 chiefly,1,allswellthatendswell,1603 Thank,1,allswellthatendswell,1603 wives,1,allswellthatendswell,1603 marjoram,1,allswellthatendswell,1603 lived,1,allswellthatendswell,1603 bate,1,allswellthatendswell,1603 coherent,1,allswellthatendswell,1603 watch'd,1,allswellthatendswell,1603 truth's,1,allswellthatendswell,1603 salvation,1,allswellthatendswell,1603 cicatrice,1,allswellthatendswell,1603 tile,1,allswellthatendswell,1603 strikes,1,allswellthatendswell,1603 gratitude,1,allswellthatendswell,1603 Bravely,1,allswellthatendswell,1603 Spending,1,allswellthatendswell,1603 dialogue,1,allswellthatendswell,1603 deliver'd,1,allswellthatendswell,1603 Tartar's,1,allswellthatendswell,1603 quicklier,1,allswellthatendswell,1603 friendship,1,allswellthatendswell,1603 dissever,1,allswellthatendswell,1603 lasted,1,allswellthatendswell,1603 dropsied,1,allswellthatendswell,1603 flames,1,allswellthatendswell,1603 Very,1,allswellthatendswell,1603 weakness,1,allswellthatendswell,1603 tame,1,allswellthatendswell,1603 subjection,1,allswellthatendswell,1603 will'd,1,allswellthatendswell,1603 strove,1,allswellthatendswell,1603 manifoldly,1,allswellthatendswell,1603 redeems,1,allswellthatendswell,1603 Curtal,1,allswellthatendswell,1603 evidence,1,allswellthatendswell,1603 implies,1,allswellthatendswell,1603 songs,1,allswellthatendswell,1603 blaze,1,allswellthatendswell,1603 predominant,1,allswellthatendswell,1603 Tokens,1,allswellthatendswell,1603 Caesar,1,allswellthatendswell,1603 timorous,1,allswellthatendswell,1603 complaint,1,allswellthatendswell,1603 Destroy,1,allswellthatendswell,1603 calendar,1,allswellthatendswell,1603 wrapp'd,1,allswellthatendswell,1603 reckon'd,1,allswellthatendswell,1603 departure,1,allswellthatendswell,1603 marries,1,allswellthatendswell,1603 falsely,1,allswellthatendswell,1603 casketed,1,allswellthatendswell,1603 bind,1,allswellthatendswell,1603 drumming,1,allswellthatendswell,1603 fresher,1,allswellthatendswell,1603 convey,1,allswellthatendswell,1603 Trust,1,allswellthatendswell,1603 impress'd,1,allswellthatendswell,1603 Already,1,allswellthatendswell,1603 insupportable,1,allswellthatendswell,1603 greets,1,allswellthatendswell,1603 Every,1,allswellthatendswell,1603 unthankfulness,1,allswellthatendswell,1603 shoot,1,allswellthatendswell,1603 Led,1,allswellthatendswell,1603 Worth,1,allswellthatendswell,1603 Inspired,1,allswellthatendswell,1603 woolsey,1,allswellthatendswell,1603 swears,1,allswellthatendswell,1603 dungeon,1,allswellthatendswell,1603 preceding,1,allswellthatendswell,1603 Adoption,1,allswellthatendswell,1603 quit,1,allswellthatendswell,1603 clean,1,allswellthatendswell,1603 guiding,1,allswellthatendswell,1603 Lay,1,allswellthatendswell,1603 professes,1,allswellthatendswell,1603 dozen,1,allswellthatendswell,1603 Fond,1,allswellthatendswell,1603 receipts,1,allswellthatendswell,1603 advertisement,1,allswellthatendswell,1603 unsuitable,1,allswellthatendswell,1603 infixing,1,allswellthatendswell,1603 metals,1,allswellthatendswell,1603 lackey,1,allswellthatendswell,1603 cut,1,allswellthatendswell,1603 settle,1,allswellthatendswell,1603 follows,1,allswellthatendswell,1603 robb'st,1,allswellthatendswell,1603 Although,1,allswellthatendswell,1603 Who's,1,allswellthatendswell,1603 Resolvedly,1,allswellthatendswell,1603 schools,1,allswellthatendswell,1603 request,1,allswellthatendswell,1603 applications,1,allswellthatendswell,1603 sunder,1,allswellthatendswell,1603 monumental,1,allswellthatendswell,1603 presumption,1,allswellthatendswell,1603 Frank,1,allswellthatendswell,1603 congied,1,allswellthatendswell,1603 condemn,1,allswellthatendswell,1603 amounts,1,allswellthatendswell,1603 forsooth,1,allswellthatendswell,1603 besiege,1,allswellthatendswell,1603 commonwealth,1,allswellthatendswell,1603 defeat,1,allswellthatendswell,1603 Hopest,1,allswellthatendswell,1603 coarsely,1,allswellthatendswell,1603 feeding,1,allswellthatendswell,1603 wondering,1,allswellthatendswell,1603 sparkle,1,allswellthatendswell,1603 subscribed,1,allswellthatendswell,1603 lustrous,1,allswellthatendswell,1603 curvet,1,allswellthatendswell,1603 undertook,1,allswellthatendswell,1603 sinned,1,allswellthatendswell,1603 seal,1,allswellthatendswell,1603 favours,1,allswellthatendswell,1603 fitter,1,allswellthatendswell,1603 borrowing,1,allswellthatendswell,1603 vainly,1,allswellthatendswell,1603 Discipled,1,allswellthatendswell,1603 unpitied,1,allswellthatendswell,1603 terrors,1,allswellthatendswell,1603 conjectural,1,allswellthatendswell,1603 hung,1,allswellthatendswell,1603 approved,1,allswellthatendswell,1603 FLORENCE,1,allswellthatendswell,1603 seas,1,allswellthatendswell,1603 perils,1,allswellthatendswell,1603 Troy,1,allswellthatendswell,1603 sunshine,1,allswellthatendswell,1603 fourteen,1,allswellthatendswell,1603 commission,1,allswellthatendswell,1603 cool,1,allswellthatendswell,1603 vexation,1,allswellthatendswell,1603 waiting,1,allswellthatendswell,1603 pudding,1,allswellthatendswell,1603 Juno,1,allswellthatendswell,1603 chastity's,1,allswellthatendswell,1603 gossips,1,allswellthatendswell,1603 nicer,1,allswellthatendswell,1603 acts,1,allswellthatendswell,1603 letting,1,allswellthatendswell,1603 'never,1,allswellthatendswell,1603 publish,1,allswellthatendswell,1603 thereto,1,allswellthatendswell,1603 Seek,1,allswellthatendswell,1603 oppress'd,1,allswellthatendswell,1603 Puritan,1,allswellthatendswell,1603 approves,1,allswellthatendswell,1603 aught,1,allswellthatendswell,1603 knowest,1,allswellthatendswell,1603 feathers,1,allswellthatendswell,1603 drums,1,allswellthatendswell,1603 we'ld,1,allswellthatendswell,1603 adore,1,allswellthatendswell,1603 con,1,allswellthatendswell,1603 unkindness,1,allswellthatendswell,1603 marvellous,1,allswellthatendswell,1603 science,1,allswellthatendswell,1603 camest,1,allswellthatendswell,1603 courtesy,1,allswellthatendswell,1603 supposes,1,allswellthatendswell,1603 divorce,1,allswellthatendswell,1603 sees,1,allswellthatendswell,1603 vessel,1,allswellthatendswell,1603 condition,1,allswellthatendswell,1603 numbered,1,allswellthatendswell,1603 cost,1,allswellthatendswell,1603 render,1,allswellthatendswell,1603 On's,1,allswellthatendswell,1603 tidings,1,allswellthatendswell,1603 battle,1,allswellthatendswell,1603 Debate,1,allswellthatendswell,1603 courtier's,1,allswellthatendswell,1603 estimation,1,allswellthatendswell,1603 expectation,1,allswellthatendswell,1603 'mother,1,allswellthatendswell,1603 thanking,1,allswellthatendswell,1603 setting,1,allswellthatendswell,1603 traitor,1,allswellthatendswell,1603 uncropped,1,allswellthatendswell,1603 thrust,1,allswellthatendswell,1603 Portotartarosa,1,allswellthatendswell,1603 Mile,1,allswellthatendswell,1603 owing,1,allswellthatendswell,1603 rascally,1,allswellthatendswell,1603 so's,1,allswellthatendswell,1603 sportive,1,allswellthatendswell,1603 Service,1,allswellthatendswell,1603 heavenly,1,allswellthatendswell,1603 Obey,1,allswellthatendswell,1603 Haste,1,allswellthatendswell,1603 excessive,1,allswellthatendswell,1603 modest,1,allswellthatendswell,1603 palmers,1,allswellthatendswell,1603 pour,1,allswellthatendswell,1603 downward,1,allswellthatendswell,1603 nights,1,allswellthatendswell,1603 entrenched,1,allswellthatendswell,1603 Know,1,allswellthatendswell,1603 Through,1,allswellthatendswell,1603 therein,1,allswellthatendswell,1603 hugs,1,allswellthatendswell,1603 lovest,1,allswellthatendswell,1603 wretched,1,allswellthatendswell,1603 Scorn'd,1,allswellthatendswell,1603 replies,1,allswellthatendswell,1603 blinking,1,allswellthatendswell,1603 glove,1,allswellthatendswell,1603 suffice,1,allswellthatendswell,1603 Use,1,allswellthatendswell,1603 port,1,allswellthatendswell,1603 Natural,1,allswellthatendswell,1603 gods,1,allswellthatendswell,1603 believed,1,allswellthatendswell,1603 sell,1,allswellthatendswell,1603 Can't,1,allswellthatendswell,1603 floods,1,allswellthatendswell,1603 Just,1,allswellthatendswell,1603 module,1,allswellthatendswell,1603 post,1,allswellthatendswell,1603 Quicken,1,allswellthatendswell,1603 levity,1,allswellthatendswell,1603 gloss,1,allswellthatendswell,1603 led,1,allswellthatendswell,1603 snipt,1,allswellthatendswell,1603 mated,1,allswellthatendswell,1603 reputed,1,allswellthatendswell,1603 confirmations,1,allswellthatendswell,1603 undo,1,allswellthatendswell,1603 choughs',1,allswellthatendswell,1603 trusting,1,allswellthatendswell,1603 simpleness,1,allswellthatendswell,1603 remedies,1,allswellthatendswell,1603 shoots,1,allswellthatendswell,1603 deceive,1,allswellthatendswell,1603 Spinii,1,allswellthatendswell,1603 greeting,1,allswellthatendswell,1603 herald,1,allswellthatendswell,1603 wrangling,1,allswellthatendswell,1603 residing,1,allswellthatendswell,1603 plunge,1,allswellthatendswell,1603 stable,1,allswellthatendswell,1603 countryman,1,allswellthatendswell,1603 Remain,1,allswellthatendswell,1603 garter,1,allswellthatendswell,1603 leaguer,1,allswellthatendswell,1603 ravin,1,allswellthatendswell,1603 highest,1,allswellthatendswell,1603 wicky,1,allswellthatendswell,1603 afterward,1,allswellthatendswell,1603 sickens,1,allswellthatendswell,1603 appeach'd,1,allswellthatendswell,1603 doughy,1,allswellthatendswell,1603 Tom's,1,allswellthatendswell,1603 blowers,1,allswellthatendswell,1603 revania,1,allswellthatendswell,1603 Cox,1,allswellthatendswell,1603 coil,1,allswellthatendswell,1603 Hearing,1,allswellthatendswell,1603 Wisdom,1,allswellthatendswell,1603 parcel,1,allswellthatendswell,1603 principal,1,allswellthatendswell,1603 sorely,1,allswellthatendswell,1603 credulous,1,allswellthatendswell,1603 slow,1,allswellthatendswell,1603 baring,1,allswellthatendswell,1603 Inform,1,allswellthatendswell,1603 perpetually,1,allswellthatendswell,1603 clearness,1,allswellthatendswell,1603 slumber,1,allswellthatendswell,1603 CAPILET,1,allswellthatendswell,1603 masonry,1,allswellthatendswell,1603 vouch'd,1,allswellthatendswell,1603 Herself,1,allswellthatendswell,1603 imagination,1,allswellthatendswell,1603 reprieve,1,allswellthatendswell,1603 evening,1,allswellthatendswell,1603 clouds,1,allswellthatendswell,1603 confound,1,allswellthatendswell,1603 wearing,1,allswellthatendswell,1603 barr'd,1,allswellthatendswell,1603 maidenhood,1,allswellthatendswell,1603 dulcet,1,allswellthatendswell,1603 Greater,1,allswellthatendswell,1603 Chitopher,1,allswellthatendswell,1603 vauvado,1,allswellthatendswell,1603 comfortable,1,allswellthatendswell,1603 afeard,1,allswellthatendswell,1603 Towards,1,allswellthatendswell,1603 conduct,1,allswellthatendswell,1603 blindfold,1,allswellthatendswell,1603 propagate,1,allswellthatendswell,1603 hostess,1,allswellthatendswell,1603 future,1,allswellthatendswell,1603 Pepin,1,allswellthatendswell,1603 consequence,1,allswellthatendswell,1603 reward,1,allswellthatendswell,1603 begins,1,allswellthatendswell,1603 learn,1,allswellthatendswell,1603 burst,1,allswellthatendswell,1603 unto't,1,allswellthatendswell,1603 posting,1,allswellthatendswell,1603 Isbel's,1,allswellthatendswell,1603 patient's,1,allswellthatendswell,1603 highways,1,allswellthatendswell,1603 Another,1,allswellthatendswell,1603 Messenger,1,allswellthatendswell,1603 enforcement,1,allswellthatendswell,1603 dulche,1,allswellthatendswell,1603 sadness,1,allswellthatendswell,1603 inferior,1,allswellthatendswell,1603 brooch,1,allswellthatendswell,1603 sister,1,allswellthatendswell,1603 persecuted,1,allswellthatendswell,1603 breaker,1,allswellthatendswell,1603 decayed,1,allswellthatendswell,1603 phoenix,1,allswellthatendswell,1603 parallel,1,allswellthatendswell,1603 devours,1,allswellthatendswell,1603 vilest,1,allswellthatendswell,1603 coranto,1,allswellthatendswell,1603 EPILOGUE,1,allswellthatendswell,1603 likelihoods,1,allswellthatendswell,1603 High'st,1,allswellthatendswell,1603 grafted,1,allswellthatendswell,1603 seducer,1,allswellthatendswell,1603 antiquity,1,allswellthatendswell,1603 employment,1,allswellthatendswell,1603 labourers,1,allswellthatendswell,1603 evils,1,allswellthatendswell,1603 Limbo,1,allswellthatendswell,1603 rights,1,allswellthatendswell,1603 comforted,1,allswellthatendswell,1603 Clock,1,allswellthatendswell,1603 boggle,1,allswellthatendswell,1603 heritage,1,allswellthatendswell,1603 Ours,1,allswellthatendswell,1603 abuse,1,allswellthatendswell,1603 seduced,1,allswellthatendswell,1603 burns,1,allswellthatendswell,1603 confirmation,1,allswellthatendswell,1603 whip,1,allswellthatendswell,1603 fully,1,allswellthatendswell,1603 merciful,1,allswellthatendswell,1603 limit,1,allswellthatendswell,1603 causeless,1,allswellthatendswell,1603 Men,1,allswellthatendswell,1603 widower,1,allswellthatendswell,1603 heartily,1,allswellthatendswell,1603 thinking,1,allswellthatendswell,1603 county,1,allswellthatendswell,1603 attorney,1,allswellthatendswell,1603 counts,1,allswellthatendswell,1603 across,1,allswellthatendswell,1603 crafts,1,allswellthatendswell,1603 Poysam,1,allswellthatendswell,1603 henceforth,1,allswellthatendswell,1603 'had',1,allswellthatendswell,1603 vagabond,1,allswellthatendswell,1603 on's,1,allswellthatendswell,1603 captives,1,allswellthatendswell,1603 expressive,1,allswellthatendswell,1603 lark,1,allswellthatendswell,1603 German,1,allswellthatendswell,1603 lass,1,allswellthatendswell,1603 respects,1,allswellthatendswell,1603 military,1,allswellthatendswell,1603 Instruct,1,allswellthatendswell,1603 engrossest,1,allswellthatendswell,1603 fleshes,1,allswellthatendswell,1603 phrase,1,allswellthatendswell,1603 revenges,1,allswellthatendswell,1603 consolate,1,allswellthatendswell,1603 Man,1,allswellthatendswell,1603 capriccio,1,allswellthatendswell,1603 tenderness,1,allswellthatendswell,1603 attendants,1,allswellthatendswell,1603 transcendence,1,allswellthatendswell,1603 limed,1,allswellthatendswell,1603 jack,1,allswellthatendswell,1603 fitness,1,allswellthatendswell,1603 Sear'd,1,allswellthatendswell,1603 VII,1,allswellthatendswell,1603 compel,1,allswellthatendswell,1603 severally,1,allswellthatendswell,1603 Debosh'd,1,allswellthatendswell,1603 importing,1,allswellthatendswell,1603 recompense,1,allswellthatendswell,1603 peep,1,allswellthatendswell,1603 list,1,allswellthatendswell,1603 suited,1,allswellthatendswell,1603 Disdain,1,allswellthatendswell,1603 justified,1,allswellthatendswell,1603 sacked,1,allswellthatendswell,1603 villained,1,allswellthatendswell,1603 Lend,1,allswellthatendswell,1603 fathom,1,allswellthatendswell,1603 follow'd,1,allswellthatendswell,1603 dispatched,1,allswellthatendswell,1603 defiled,1,allswellthatendswell,1603 undertaking,1,allswellthatendswell,1603 repairs,1,allswellthatendswell,1603 frank,1,allswellthatendswell,1603 despiteful,1,allswellthatendswell,1603 witty,1,allswellthatendswell,1603 date,1,allswellthatendswell,1603 You'll,1,allswellthatendswell,1603 enjoin'd,1,allswellthatendswell,1603 judges,1,allswellthatendswell,1603 slay,1,allswellthatendswell,1603 careless,1,allswellthatendswell,1603 laid,1,allswellthatendswell,1603 fail'd,1,allswellthatendswell,1603 distemper'd,1,allswellthatendswell,1603 dog,1,allswellthatendswell,1603 discovered,1,allswellthatendswell,1603 kick,1,allswellthatendswell,1603 instructions,1,allswellthatendswell,1603 Moderate,1,allswellthatendswell,1603 theoric,1,allswellthatendswell,1603 happily,1,allswellthatendswell,1603 harsh,1,allswellthatendswell,1603 losses,1,allswellthatendswell,1603 Gracious,1,allswellthatendswell,1603 'hic,1,allswellthatendswell,1603 impudence,1,allswellthatendswell,1603 precepts,1,allswellthatendswell,1603 tottering,1,allswellthatendswell,1603 frame,1,allswellthatendswell,1603 due,1,allswellthatendswell,1603 unseason'd,1,allswellthatendswell,1603 'First,1,allswellthatendswell,1603 weight,1,allswellthatendswell,1603 miseries,1,allswellthatendswell,1603 land,1,allswellthatendswell,1603 ha't,1,allswellthatendswell,1603 lord's,1,allswellthatendswell,1603 humbled,1,allswellthatendswell,1603 weighs,1,allswellthatendswell,1603 adversary's,1,allswellthatendswell,1603 contents',1,allswellthatendswell,1603 hoping,1,allswellthatendswell,1603 fifteen,1,allswellthatendswell,1603 instruction,1,allswellthatendswell,1603 transgressed,1,allswellthatendswell,1603 great'st,1,allswellthatendswell,1603 begotten,1,allswellthatendswell,1603 principles,1,allswellthatendswell,1603 proclamation,1,allswellthatendswell,1603 DRAMATIS,1,allswellthatendswell,1603 lamp,1,allswellthatendswell,1603 slew,1,allswellthatendswell,1603 shift,1,allswellthatendswell,1603 sinister,1,allswellthatendswell,1603 tie,1,allswellthatendswell,1603 rescue,1,allswellthatendswell,1603 physician,1,allswellthatendswell,1603 damp,1,allswellthatendswell,1603 propose,1,allswellthatendswell,1603 prerogative,1,allswellthatendswell,1603 'Dian,1,allswellthatendswell,1603 arming,1,allswellthatendswell,1603 flower,1,allswellthatendswell,1603 Desires,1,allswellthatendswell,1603 Tom,1,allswellthatendswell,1603 damn,1,allswellthatendswell,1603 flown,1,allswellthatendswell,1603 Nessus,1,allswellthatendswell,1603 BOTH,1,allswellthatendswell,1603 Lustig,1,allswellthatendswell,1603 greatness,1,allswellthatendswell,1603 Kneeling,1,allswellthatendswell,1603 consenting,1,allswellthatendswell,1603 encountered,1,allswellthatendswell,1603 private,1,allswellthatendswell,1603 acquired,1,allswellthatendswell,1603 Uncertain,1,allswellthatendswell,1603 boots,1,allswellthatendswell,1603 sithence,1,allswellthatendswell,1603 corporal,1,allswellthatendswell,1603 brim,1,allswellthatendswell,1603 sprat,1,allswellthatendswell,1603 slip,1,allswellthatendswell,1603 ennobled,1,allswellthatendswell,1603 darling,1,allswellthatendswell,1603 tainted,1,allswellthatendswell,1603 unlearned,1,allswellthatendswell,1603 Carries,1,allswellthatendswell,1603 hellish,1,allswellthatendswell,1603 mourned,1,allswellthatendswell,1603 justly,1,allswellthatendswell,1603 rounds,1,allswellthatendswell,1603 ames,1,allswellthatendswell,1603 neighbour,1,allswellthatendswell,1603 shoes,1,allswellthatendswell,1603 Cressid's,1,allswellthatendswell,1603 shape,1,allswellthatendswell,1603 tread,1,allswellthatendswell,1603 market,1,allswellthatendswell,1603 default,1,allswellthatendswell,1603 doctrine,1,allswellthatendswell,1603 Prepared,1,allswellthatendswell,1603 contain'd,1,allswellthatendswell,1603 turn'd,1,allswellthatendswell,1603 monsters,1,allswellthatendswell,1603 consents,1,allswellthatendswell,1603 scratched,1,allswellthatendswell,1603 hedge,1,allswellthatendswell,1603 summer,1,allswellthatendswell,1603 unnoted,1,allswellthatendswell,1603 sanctimony,1,allswellthatendswell,1603 quality,2,allswellthatendswell,1603 forbid,2,allswellthatendswell,1603 tax'd,2,allswellthatendswell,1603 ignorance,2,allswellthatendswell,1603 Youth,2,allswellthatendswell,1603 muster,2,allswellthatendswell,1603 c,2,allswellthatendswell,1603 afar,2,allswellthatendswell,1603 composition,2,allswellthatendswell,1603 Alas,2,allswellthatendswell,1603 possible,2,allswellthatendswell,1603 wicked,2,allswellthatendswell,1603 convoy,2,allswellthatendswell,1603 honours,2,allswellthatendswell,1603 riddle,2,allswellthatendswell,1603 bones,2,allswellthatendswell,1603 offended,2,allswellthatendswell,1603 suppose,2,allswellthatendswell,1603 mend,2,allswellthatendswell,1603 Wilt,2,allswellthatendswell,1603 Stay,2,allswellthatendswell,1603 thorns,2,allswellthatendswell,1603 writes,2,allswellthatendswell,1603 groan,2,allswellthatendswell,1603 herb,2,allswellthatendswell,1603 mere,2,allswellthatendswell,1603 disease,2,allswellthatendswell,1603 while,2,allswellthatendswell,1603 alias,2,allswellthatendswell,1603 offer,2,allswellthatendswell,1603 instrument,2,allswellthatendswell,1603 succession,2,allswellthatendswell,1603 Helen's,2,allswellthatendswell,1603 derive,2,allswellthatendswell,1603 Isbel,2,allswellthatendswell,1603 terrible,2,allswellthatendswell,1603 advise,2,allswellthatendswell,1603 damned,2,allswellthatendswell,1603 contrary,2,allswellthatendswell,1603 remain,2,allswellthatendswell,1603 Whom,2,allswellthatendswell,1603 cheeks,2,allswellthatendswell,1603 liar,2,allswellthatendswell,1603 obloquy,2,allswellthatendswell,1603 sanctified,2,allswellthatendswell,1603 Poor,2,allswellthatendswell,1603 delivered,2,allswellthatendswell,1603 strength,2,allswellthatendswell,1603 disdain,2,allswellthatendswell,1603 sons,2,allswellthatendswell,1603 After,2,allswellthatendswell,1603 sat,2,allswellthatendswell,1603 dance,2,allswellthatendswell,1603 stream,2,allswellthatendswell,1603 ling,2,allswellthatendswell,1603 boldness,2,allswellthatendswell,1603 Keep,2,allswellthatendswell,1603 purse,2,allswellthatendswell,1603 toward,2,allswellthatendswell,1603 enemy's,2,allswellthatendswell,1603 Only,2,allswellthatendswell,1603 d'ecu,2,allswellthatendswell,1603 babes,2,allswellthatendswell,1603 knaves,2,allswellthatendswell,1603 shrewdly,2,allswellthatendswell,1603 Methinks,2,allswellthatendswell,1603 confessed,2,allswellthatendswell,1603 wait,2,allswellthatendswell,1603 overture,2,allswellthatendswell,1603 view,2,allswellthatendswell,1603 hereafter,2,allswellthatendswell,1603 Get,2,allswellthatendswell,1603 faithfully,2,allswellthatendswell,1603 tooth,2,allswellthatendswell,1603 Write,2,allswellthatendswell,1603 traveller,2,allswellthatendswell,1603 'When,2,allswellthatendswell,1603 she'll,2,allswellthatendswell,1603 scorn,2,allswellthatendswell,1603 nine,2,allswellthatendswell,1603 forsake,2,allswellthatendswell,1603 council,2,allswellthatendswell,1603 convenience,2,allswellthatendswell,1603 deliver,2,allswellthatendswell,1603 delivers,2,allswellthatendswell,1603 counsel,2,allswellthatendswell,1603 cozen,2,allswellthatendswell,1603 Their,2,allswellthatendswell,1603 kindly,2,allswellthatendswell,1603 level,2,allswellthatendswell,1603 wings,2,allswellthatendswell,1603 betwixt,2,allswellthatendswell,1603 Florentines,2,allswellthatendswell,1603 affect,2,allswellthatendswell,1603 esteem,2,allswellthatendswell,1603 taught,2,allswellthatendswell,1603 vile,2,allswellthatendswell,1603 felt,2,allswellthatendswell,1603 These,2,allswellthatendswell,1603 Out,2,allswellthatendswell,1603 profess,2,allswellthatendswell,1603 afraid,2,allswellthatendswell,1603 physician's,2,allswellthatendswell,1603 direct,2,allswellthatendswell,1603 falls,2,allswellthatendswell,1603 shuns,2,allswellthatendswell,1603 exceeding,2,allswellthatendswell,1603 endeavours,2,allswellthatendswell,1603 encounter,2,allswellthatendswell,1603 Wherein,2,allswellthatendswell,1603 thence,2,allswellthatendswell,1603 physicians,2,allswellthatendswell,1603 sun,2,allswellthatendswell,1603 recovery,2,allswellthatendswell,1603 humbly,2,allswellthatendswell,1603 dissuade,2,allswellthatendswell,1603 saucy,2,allswellthatendswell,1603 quart,2,allswellthatendswell,1603 whisper,2,allswellthatendswell,1603 false,2,allswellthatendswell,1603 wing,2,allswellthatendswell,1603 ceremony,2,allswellthatendswell,1603 cuckold,2,allswellthatendswell,1603 latter,2,allswellthatendswell,1603 Please,2,allswellthatendswell,1603 know'st,2,allswellthatendswell,1603 dies,2,allswellthatendswell,1603 wise,2,allswellthatendswell,1603 property,2,allswellthatendswell,1603 muddied,2,allswellthatendswell,1603 rebellion,2,allswellthatendswell,1603 malady,2,allswellthatendswell,1603 voice,2,allswellthatendswell,1603 leaped,2,allswellthatendswell,1603 breeding,2,allswellthatendswell,1603 bright,2,allswellthatendswell,1603 praised,2,allswellthatendswell,1603 conditions,2,allswellthatendswell,1603 authority,2,allswellthatendswell,1603 life's,2,allswellthatendswell,1603 chamber,2,allswellthatendswell,1603 morning,2,allswellthatendswell,1603 approof,2,allswellthatendswell,1603 bestowing,2,allswellthatendswell,1603 While,2,allswellthatendswell,1603 foes,2,allswellthatendswell,1603 repented,2,allswellthatendswell,1603 altogether,2,allswellthatendswell,1603 showing,2,allswellthatendswell,1603 eternal,2,allswellthatendswell,1603 deeds,2,allswellthatendswell,1603 sequent,2,allswellthatendswell,1603 assault,2,allswellthatendswell,1603 blown,2,allswellthatendswell,1603 hopes,2,allswellthatendswell,1603 subscribe,2,allswellthatendswell,1603 unless,2,allswellthatendswell,1603 scarfs,2,allswellthatendswell,1603 denied,2,allswellthatendswell,1603 pen,2,allswellthatendswell,1603 force,2,allswellthatendswell,1603 hie,2,allswellthatendswell,1603 miracles,2,allswellthatendswell,1603 requires,2,allswellthatendswell,1603 blest,2,allswellthatendswell,1603 notorious,2,allswellthatendswell,1603 ambush,2,allswellthatendswell,1603 quick,2,allswellthatendswell,1603 braggart,2,allswellthatendswell,1603 fated,2,allswellthatendswell,1603 despair,2,allswellthatendswell,1603 troops,2,allswellthatendswell,1603 earl,2,allswellthatendswell,1603 nobility,2,allswellthatendswell,1603 yourselves,2,allswellthatendswell,1603 monstrous,2,allswellthatendswell,1603 god,2,allswellthatendswell,1603 sorry,2,allswellthatendswell,1603 metal,2,allswellthatendswell,1603 bury,2,allswellthatendswell,1603 'Twould,2,allswellthatendswell,1603 Prithee,2,allswellthatendswell,1603 petition,2,allswellthatendswell,1603 homely,2,allswellthatendswell,1603 confidently,2,allswellthatendswell,1603 Save,2,allswellthatendswell,1603 Speak,2,allswellthatendswell,1603 courtesies,2,allswellthatendswell,1603 legacy,2,allswellthatendswell,1603 jewel,2,allswellthatendswell,1603 twice,2,allswellthatendswell,1603 Tuscan,2,allswellthatendswell,1603 kernel,2,allswellthatendswell,1603 vassal,2,allswellthatendswell,1603 travel,2,allswellthatendswell,1603 used,2,allswellthatendswell,1603 disguise,2,allswellthatendswell,1603 Whate'er,2,allswellthatendswell,1603 stronger,2,allswellthatendswell,1603 gate,2,allswellthatendswell,1603 'Twas,2,allswellthatendswell,1603 smack,2,allswellthatendswell,1603 hourly,2,allswellthatendswell,1603 grace's,2,allswellthatendswell,1603 twigs,2,allswellthatendswell,1603 hurts,2,allswellthatendswell,1603 uses,2,allswellthatendswell,1603 store,2,allswellthatendswell,1603 deliverance,2,allswellthatendswell,1603 breath,2,allswellthatendswell,1603 aim,2,allswellthatendswell,1603 reservation,2,allswellthatendswell,1603 Methought,2,allswellthatendswell,1603 air,2,allswellthatendswell,1603 keeping,2,allswellthatendswell,1603 excellent,2,allswellthatendswell,1603 Here's,2,allswellthatendswell,1603 prevented,2,allswellthatendswell,1603 dwell,2,allswellthatendswell,1603 Return,2,allswellthatendswell,1603 stole,2,allswellthatendswell,1603 defence,2,allswellthatendswell,1603 generally,2,allswellthatendswell,1603 restraint,2,allswellthatendswell,1603 comforts,2,allswellthatendswell,1603 promising,2,allswellthatendswell,1603 shed,2,allswellthatendswell,1603 privilege,2,allswellthatendswell,1603 approach,2,allswellthatendswell,1603 delay,2,allswellthatendswell,1603 Italian,2,allswellthatendswell,1603 sometime,2,allswellthatendswell,1603 earth,2,allswellthatendswell,1603 Myself,2,allswellthatendswell,1603 Isbels,2,allswellthatendswell,1603 cousin,2,allswellthatendswell,1603 scornful,2,allswellthatendswell,1603 Countess,2,allswellthatendswell,1603 le,2,allswellthatendswell,1603 ho,2,allswellthatendswell,1603 ample,2,allswellthatendswell,1603 knot,2,allswellthatendswell,1603 spend,2,allswellthatendswell,1603 removed,2,allswellthatendswell,1603 suspected,2,allswellthatendswell,1603 serious,2,allswellthatendswell,1603 composed,2,allswellthatendswell,1603 acquaint,2,allswellthatendswell,1603 presume,2,allswellthatendswell,1603 harm,2,allswellthatendswell,1603 killed,2,allswellthatendswell,1603 brought,2,allswellthatendswell,1603 plot,2,allswellthatendswell,1603 easy,2,allswellthatendswell,1603 howe'er,2,allswellthatendswell,1603 Most,2,allswellthatendswell,1603 pull,2,allswellthatendswell,1603 half,2,allswellthatendswell,1603 submit,2,allswellthatendswell,1603 nation,2,allswellthatendswell,1603 acknowledge,2,allswellthatendswell,1603 'Let,2,allswellthatendswell,1603 Trumpets,2,allswellthatendswell,1603 foul,2,allswellthatendswell,1603 mighty,2,allswellthatendswell,1603 unlawful,2,allswellthatendswell,1603 city,2,allswellthatendswell,1603 Commend,2,allswellthatendswell,1603 stranger,2,allswellthatendswell,1603 fiery,2,allswellthatendswell,1603 diest,2,allswellthatendswell,1603 money,2,allswellthatendswell,1603 owed,2,allswellthatendswell,1603 sanctify,2,allswellthatendswell,1603 alive,2,allswellthatendswell,1603 shot,2,allswellthatendswell,1603 creatures,2,allswellthatendswell,1603 ass,2,allswellthatendswell,1603 mayst,2,allswellthatendswell,1603 poorer,2,allswellthatendswell,1603 King,2,allswellthatendswell,1603 furnish,2,allswellthatendswell,1603 aweary,2,allswellthatendswell,1603 trick,2,allswellthatendswell,1603 Among,2,allswellthatendswell,1603 fed,2,allswellthatendswell,1603 hazard,2,allswellthatendswell,1603 Ask,2,allswellthatendswell,1603 new,2,allswellthatendswell,1603 guess,2,allswellthatendswell,1603 change,2,allswellthatendswell,1603 pausing,2,allswellthatendswell,1603 regiment,2,allswellthatendswell,1603 restored,2,allswellthatendswell,1603 proofs,2,allswellthatendswell,1603 garments,2,allswellthatendswell,1603 keeps,2,allswellthatendswell,1603 breeds,2,allswellthatendswell,1603 venture,2,allswellthatendswell,1603 carried,2,allswellthatendswell,1603 carries,2,allswellthatendswell,1603 bravest,2,allswellthatendswell,1603 shouldst,2,allswellthatendswell,1603 distance,2,allswellthatendswell,1603 unknown,2,allswellthatendswell,1603 VIOLENTA,2,allswellthatendswell,1603 unclean,2,allswellthatendswell,1603 patch,2,allswellthatendswell,1603 proceed,2,allswellthatendswell,1603 action,2,allswellthatendswell,1603 seriously,2,allswellthatendswell,1603 forfeited,2,allswellthatendswell,1603 below,2,allswellthatendswell,1603 rash,2,allswellthatendswell,1603 hide,2,allswellthatendswell,1603 year,2,allswellthatendswell,1603 bottom,2,allswellthatendswell,1603 All's,2,allswellthatendswell,1603 misdoubt,2,allswellthatendswell,1603 you'll,2,allswellthatendswell,1603 parting,2,allswellthatendswell,1603 loses,2,allswellthatendswell,1603 places,2,allswellthatendswell,1603 Health,2,allswellthatendswell,1603 inform'd,2,allswellthatendswell,1603 effect,2,allswellthatendswell,1603 spurs,2,allswellthatendswell,1603 strife,2,allswellthatendswell,1603 Some,2,allswellthatendswell,1603 mortal,2,allswellthatendswell,1603 probable,2,allswellthatendswell,1603 start,2,allswellthatendswell,1603 approaches,2,allswellthatendswell,1603 plead,2,allswellthatendswell,1603 Grand,2,allswellthatendswell,1603 foolish,2,allswellthatendswell,1603 blush,2,allswellthatendswell,1603 beggar,2,allswellthatendswell,1603 bloody,2,allswellthatendswell,1603 reading,2,allswellthatendswell,1603 let's,2,allswellthatendswell,1603 woo,2,allswellthatendswell,1603 judgments,2,allswellthatendswell,1603 blow,2,allswellthatendswell,1603 brains,2,allswellthatendswell,1603 Spurio,2,allswellthatendswell,1603 labour,2,allswellthatendswell,1603 special,2,allswellthatendswell,1603 thief,2,allswellthatendswell,1603 miss,2,allswellthatendswell,1603 fish,2,allswellthatendswell,1603 higher,2,allswellthatendswell,1603 marvel,2,allswellthatendswell,1603 oil,2,allswellthatendswell,1603 desires,2,allswellthatendswell,1603 Rinaldo,2,allswellthatendswell,1603 stain,2,allswellthatendswell,1603 Were,2,allswellthatendswell,1603 Howe'er,2,allswellthatendswell,1603 close,2,allswellthatendswell,1603 impudent,2,allswellthatendswell,1603 affairs,2,allswellthatendswell,1603 renown,2,allswellthatendswell,1603 retire,2,allswellthatendswell,1603 safely,2,allswellthatendswell,1603 Confess,2,allswellthatendswell,1603 capable,2,allswellthatendswell,1603 herbs,2,allswellthatendswell,1603 break,2,allswellthatendswell,1603 happiness,2,allswellthatendswell,1603 loving,2,allswellthatendswell,1603 bondage,2,allswellthatendswell,1603 flight,2,allswellthatendswell,1603 speedily,2,allswellthatendswell,1603 likes,2,allswellthatendswell,1603 called,2,allswellthatendswell,1603 Think,2,allswellthatendswell,1603 dislikest,2,allswellthatendswell,1603 Worthy,2,allswellthatendswell,1603 arms,2,allswellthatendswell,1603 tailor,2,allswellthatendswell,1603 drives,2,allswellthatendswell,1603 commanded,2,allswellthatendswell,1603 oath,2,allswellthatendswell,1603 ambition,2,allswellthatendswell,1603 they'll,2,allswellthatendswell,1603 forward,2,allswellthatendswell,1603 wanton,2,allswellthatendswell,1603 ends,2,allswellthatendswell,1603 proceeding,2,allswellthatendswell,1603 Fourth,2,allswellthatendswell,1603 caught,2,allswellthatendswell,1603 Gives,2,allswellthatendswell,1603 mightily,2,allswellthatendswell,1603 seize,2,allswellthatendswell,1603 oblivion,2,allswellthatendswell,1603 Heaven,2,allswellthatendswell,1603 takes,2,allswellthatendswell,1603 scores,2,allswellthatendswell,1603 inform,2,allswellthatendswell,1603 forfeit,2,allswellthatendswell,1603 Share,2,allswellthatendswell,1603 dumb,2,allswellthatendswell,1603 lust,2,allswellthatendswell,1603 wondrous,2,allswellthatendswell,1603 wife's,2,allswellthatendswell,1603 consent,2,allswellthatendswell,1603 DUKE's,2,allswellthatendswell,1603 serves,2,allswellthatendswell,1603 Even,2,allswellthatendswell,1603 glad,2,allswellthatendswell,1603 minister,2,allswellthatendswell,1603 persever,2,allswellthatendswell,1603 evil,2,allswellthatendswell,1603 Time,2,allswellthatendswell,1603 'fore,2,allswellthatendswell,1603 modesty,2,allswellthatendswell,1603 desert,2,allswellthatendswell,1603 fame,2,allswellthatendswell,1603 wickedness,2,allswellthatendswell,1603 threw,2,allswellthatendswell,1603 worthiness,2,allswellthatendswell,1603 wore,2,allswellthatendswell,1603 Sweet,2,allswellthatendswell,1603 flame,2,allswellthatendswell,1603 perfect,2,allswellthatendswell,1603 fill,2,allswellthatendswell,1603 continue,2,allswellthatendswell,1603 lascivious,2,allswellthatendswell,1603 Fare,2,allswellthatendswell,1603 shown,2,allswellthatendswell,1603 divers,2,allswellthatendswell,1603 wealth,2,allswellthatendswell,1603 practise,2,allswellthatendswell,1603 base,2,allswellthatendswell,1603 observance,2,allswellthatendswell,1603 grapes,2,allswellthatendswell,1603 motive,2,allswellthatendswell,1603 secrets,2,allswellthatendswell,1603 trumpets,2,allswellthatendswell,1603 arm'd,2,allswellthatendswell,1603 reason,2,allswellthatendswell,1603 otherwise,2,allswellthatendswell,1603 mothers,2,allswellthatendswell,1603 Rather,2,allswellthatendswell,1603 getting,2,allswellthatendswell,1603 empire,2,allswellthatendswell,1603 None,2,allswellthatendswell,1603 hole,2,allswellthatendswell,1603 dangerous,2,allswellthatendswell,1603 concluded,2,allswellthatendswell,1603 argument,2,allswellthatendswell,1603 revolt,2,allswellthatendswell,1603 lives,2,allswellthatendswell,1603 convenient,2,allswellthatendswell,1603 copy,2,allswellthatendswell,1603 lying,2,allswellthatendswell,1603 always,2,allswellthatendswell,1603 adieu,2,allswellthatendswell,1603 drunk,2,allswellthatendswell,1603 needful,2,allswellthatendswell,1603 Right,2,allswellthatendswell,1603 seek,2,allswellthatendswell,1603 troth,2,allswellthatendswell,1603 presence,2,allswellthatendswell,1603 supposed,2,allswellthatendswell,1603 understood,2,allswellthatendswell,1603 bequeathed,2,allswellthatendswell,1603 drum',2,allswellthatendswell,1603 Believe,2,allswellthatendswell,1603 cry,2,allswellthatendswell,1603 taffeta,2,allswellthatendswell,1603 'twill,2,allswellthatendswell,1603 heels,2,allswellthatendswell,1603 bail,2,allswellthatendswell,1603 Send,2,allswellthatendswell,1603 Bequeathed,2,allswellthatendswell,1603 modern,2,allswellthatendswell,1603 leg,2,allswellthatendswell,1603 prison,2,allswellthatendswell,1603 bade,2,allswellthatendswell,1603 fearing,2,allswellthatendswell,1603 season,2,allswellthatendswell,1603 sickness,2,allswellthatendswell,1603 lip,2,allswellthatendswell,1603 master's,2,allswellthatendswell,1603 sighed,2,allswellthatendswell,1603 lordship's,2,allswellthatendswell,1603 effects,2,allswellthatendswell,1603 mad,2,allswellthatendswell,1603 limbs,2,allswellthatendswell,1603 pear,2,allswellthatendswell,1603 least,2,allswellthatendswell,1603 balance,2,allswellthatendswell,1603 plausive,2,allswellthatendswell,1603 Five,2,allswellthatendswell,1603 impossibility,2,allswellthatendswell,1603 doing,2,allswellthatendswell,1603 straight,2,allswellthatendswell,1603 chastely,2,allswellthatendswell,1603 warlike,2,allswellthatendswell,1603 knocked,2,allswellthatendswell,1603 Boskos,2,allswellthatendswell,1603 street,2,allswellthatendswell,1603 powerful,2,allswellthatendswell,1603 fled,2,allswellthatendswell,1603 fashion,2,allswellthatendswell,1603 wound,2,allswellthatendswell,1603 lion,2,allswellthatendswell,1603 physic,2,allswellthatendswell,1603 beguile,2,allswellthatendswell,1603 amorous,2,allswellthatendswell,1603 sometimes,2,allswellthatendswell,1603 politic,2,allswellthatendswell,1603 grounds,2,allswellthatendswell,1603 inherit,2,allswellthatendswell,1603 muffled,2,allswellthatendswell,1603 extend,2,allswellthatendswell,1603 compell'd,2,allswellthatendswell,1603 simply,2,allswellthatendswell,1603 shrewd,2,allswellthatendswell,1603 sentence,2,allswellthatendswell,1603 witness,2,allswellthatendswell,1603 cornets,2,allswellthatendswell,1603 leads,2,allswellthatendswell,1603 credence,2,allswellthatendswell,1603 provide,2,allswellthatendswell,1603 blessing,2,allswellthatendswell,1603 dispatch,2,allswellthatendswell,1603 top,2,allswellthatendswell,1603 months,2,allswellthatendswell,1603 Bring,2,allswellthatendswell,1603 filthy,2,allswellthatendswell,1603 behold,2,allswellthatendswell,1603 obedient,2,allswellthatendswell,1603 stings,2,allswellthatendswell,1603 Fair,2,allswellthatendswell,1603 spirit,2,allswellthatendswell,1603 Fall,2,allswellthatendswell,1603 kill,2,allswellthatendswell,1603 Humbly,2,allswellthatendswell,1603 breathe,2,allswellthatendswell,1603 bids,2,allswellthatendswell,1603 th',2,allswellthatendswell,1603 crown,2,allswellthatendswell,1603 order,2,allswellthatendswell,1603 expertness,2,allswellthatendswell,1603 women,2,allswellthatendswell,1603 attended,3,allswellthatendswell,1603 profession,3,allswellthatendswell,1603 Frenchmen,3,allswellthatendswell,1603 heed,3,allswellthatendswell,1603 tomb,3,allswellthatendswell,1603 taking,3,allswellthatendswell,1603 days,3,allswellthatendswell,1603 advice,3,allswellthatendswell,1603 motion,3,allswellthatendswell,1603 for't,3,allswellthatendswell,1603 double,3,allswellthatendswell,1603 wears,3,allswellthatendswell,1603 Frenchman,3,allswellthatendswell,1603 advantage,3,allswellthatendswell,1603 peace,3,allswellthatendswell,1603 Whether,3,allswellthatendswell,1603 health,3,allswellthatendswell,1603 joy,3,allswellthatendswell,1603 express,3,allswellthatendswell,1603 held,3,allswellthatendswell,1603 laughter,3,allswellthatendswell,1603 Tell,3,allswellthatendswell,1603 vain,3,allswellthatendswell,1603 withal,3,allswellthatendswell,1603 soul,3,allswellthatendswell,1603 calls,3,allswellthatendswell,1603 ancestors,3,allswellthatendswell,1603 pick,3,allswellthatendswell,1603 attempt,3,allswellthatendswell,1603 song,3,allswellthatendswell,1603 plague,3,allswellthatendswell,1603 soon,3,allswellthatendswell,1603 draw,3,allswellthatendswell,1603 backward,3,allswellthatendswell,1603 line,3,allswellthatendswell,1603 came,3,allswellthatendswell,1603 deserve,3,allswellthatendswell,1603 sit,3,allswellthatendswell,1603 Oft,3,allswellthatendswell,1603 stands,3,allswellthatendswell,1603 warrant,3,allswellthatendswell,1603 invention,3,allswellthatendswell,1603 whipping,3,allswellthatendswell,1603 love's,3,allswellthatendswell,1603 constraint,3,allswellthatendswell,1603 'O,3,allswellthatendswell,1603 's,3,allswellthatendswell,1603 cause,3,allswellthatendswell,1603 acquainted,3,allswellthatendswell,1603 second,3,allswellthatendswell,1603 offence,3,allswellthatendswell,1603 merit,3,allswellthatendswell,1603 turn,3,allswellthatendswell,1603 fault,3,allswellthatendswell,1603 above,3,allswellthatendswell,1603 infinite,3,allswellthatendswell,1603 beaten,3,allswellthatendswell,1603 brief,3,allswellthatendswell,1603 wind,3,allswellthatendswell,1603 Might,3,allswellthatendswell,1603 want,3,allswellthatendswell,1603 hence,3,allswellthatendswell,1603 window,3,allswellthatendswell,1603 bidding,3,allswellthatendswell,1603 stop,3,allswellthatendswell,1603 desire,3,allswellthatendswell,1603 observe,3,allswellthatendswell,1603 parts,3,allswellthatendswell,1603 intelligence,3,allswellthatendswell,1603 goddess,3,allswellthatendswell,1603 bitter,3,allswellthatendswell,1603 sick,3,allswellthatendswell,1603 drown,3,allswellthatendswell,1603 measure,3,allswellthatendswell,1603 surety,3,allswellthatendswell,1603 scarce,3,allswellthatendswell,1603 patience,3,allswellthatendswell,1603 knowing,3,allswellthatendswell,1603 Those,3,allswellthatendswell,1603 bad,3,allswellthatendswell,1603 scurvy,3,allswellthatendswell,1603 pays,3,allswellthatendswell,1603 OF,3,allswellthatendswell,1603 in's,3,allswellthatendswell,1603 brings,3,allswellthatendswell,1603 sings,3,allswellthatendswell,1603 finds,3,allswellthatendswell,1603 Something,3,allswellthatendswell,1603 medicine,3,allswellthatendswell,1603 bless,3,allswellthatendswell,1603 whole,3,allswellthatendswell,1603 Had,3,allswellthatendswell,1603 sport,3,allswellthatendswell,1603 pox,3,allswellthatendswell,1603 nobly,3,allswellthatendswell,1603 be'st,3,allswellthatendswell,1603 weep,3,allswellthatendswell,1603 absent,3,allswellthatendswell,1603 Drum,3,allswellthatendswell,1603 learned,3,allswellthatendswell,1603 fifty,3,allswellthatendswell,1603 mystery,3,allswellthatendswell,1603 casement,3,allswellthatendswell,1603 lately,3,allswellthatendswell,1603 solemn,3,allswellthatendswell,1603 God's,3,allswellthatendswell,1603 story,3,allswellthatendswell,1603 instant,3,allswellthatendswell,1603 promised,3,allswellthatendswell,1603 betray,3,allswellthatendswell,1603 promises,3,allswellthatendswell,1603 repent,3,allswellthatendswell,1603 de,3,allswellthatendswell,1603 left,3,allswellthatendswell,1603 gain,3,allswellthatendswell,1603 Unless,3,allswellthatendswell,1603 unworthy,3,allswellthatendswell,1603 lent,3,allswellthatendswell,1603 dower,3,allswellthatendswell,1603 hands,3,allswellthatendswell,1603 buried,3,allswellthatendswell,1603 fears,3,allswellthatendswell,1603 commendations,3,allswellthatendswell,1603 thankful,3,allswellthatendswell,1603 produce,3,allswellthatendswell,1603 loss,3,allswellthatendswell,1603 wherein,3,allswellthatendswell,1603 less,3,allswellthatendswell,1603 Gerard,3,allswellthatendswell,1603 twenty,3,allswellthatendswell,1603 Whoever,3,allswellthatendswell,1603 withered,3,allswellthatendswell,1603 Narbon,3,allswellthatendswell,1603 hard,3,allswellthatendswell,1603 soldiership,3,allswellthatendswell,1603 messenger,3,allswellthatendswell,1603 call'd,3,allswellthatendswell,1603 hang,3,allswellthatendswell,1603 shut,3,allswellthatendswell,1603 plain,3,allswellthatendswell,1603 pluck,3,allswellthatendswell,1603 whether,3,allswellthatendswell,1603 Under,3,allswellthatendswell,1603 She's,3,allswellthatendswell,1603 proper,3,allswellthatendswell,1603 fond,3,allswellthatendswell,1603 ye,3,allswellthatendswell,1603 bought,3,allswellthatendswell,1603 distinction,3,allswellthatendswell,1603 fee,3,allswellthatendswell,1603 Sirrah,3,allswellthatendswell,1603 touch,3,allswellthatendswell,1603 native,3,allswellthatendswell,1603 judgment,3,allswellthatendswell,1603 Into,3,allswellthatendswell,1603 often,3,allswellthatendswell,1603 through,3,allswellthatendswell,1603 effected,3,allswellthatendswell,1603 equal,3,allswellthatendswell,1603 main,3,allswellthatendswell,1603 reported,3,allswellthatendswell,1603 gentle,3,allswellthatendswell,1603 rate,3,allswellthatendswell,1603 entertainment,3,allswellthatendswell,1603 beard,3,allswellthatendswell,1603 velvet,3,allswellthatendswell,1603 bravely,3,allswellthatendswell,1603 estate,3,allswellthatendswell,1603 traitors,3,allswellthatendswell,1603 Therefore,3,allswellthatendswell,1603 mouth,3,allswellthatendswell,1603 freely,3,allswellthatendswell,1603 scarf,3,allswellthatendswell,1603 wiser,3,allswellthatendswell,1603 qualities,3,allswellthatendswell,1603 didst,3,allswellthatendswell,1603 slave,3,allswellthatendswell,1603 issue,3,allswellthatendswell,1603 quoth,3,allswellthatendswell,1603 over,3,allswellthatendswell,1603 search,3,allswellthatendswell,1603 wed,3,allswellthatendswell,1603 ones,3,allswellthatendswell,1603 Italy,3,allswellthatendswell,1603 claims,3,allswellthatendswell,1603 grave,3,allswellthatendswell,1603 rogues,3,allswellthatendswell,1603 blushes,3,allswellthatendswell,1603 fits,3,allswellthatendswell,1603 throw,3,allswellthatendswell,1603 experience,3,allswellthatendswell,1603 win,3,allswellthatendswell,1603 stomach,3,allswellthatendswell,1603 Dear,3,allswellthatendswell,1603 humility,3,allswellthatendswell,1603 dust,3,allswellthatendswell,1603 assure,3,allswellthatendswell,1603 happy,3,allswellthatendswell,1603 news,3,allswellthatendswell,1603 fallen,3,allswellthatendswell,1603 what's,3,allswellthatendswell,1603 reports,3,allswellthatendswell,1603 certainty,3,allswellthatendswell,1603 owe,3,allswellthatendswell,1603 haply,3,allswellthatendswell,1603 fox,3,allswellthatendswell,1603 whence,3,allswellthatendswell,1603 fail,3,allswellthatendswell,1603 file,3,allswellthatendswell,1603 fain,3,allswellthatendswell,1603 guilty,3,allswellthatendswell,1603 company,3,allswellthatendswell,1603 do't,3,allswellthatendswell,1603 officer,3,allswellthatendswell,1603 passion,3,allswellthatendswell,1603 folly,3,allswellthatendswell,1603 shows,3,allswellthatendswell,1603 queen,3,allswellthatendswell,1603 perceive,3,allswellthatendswell,1603 patient,3,allswellthatendswell,1603 whither,3,allswellthatendswell,1603 comfort,3,allswellthatendswell,1603 band,3,allswellthatendswell,1603 Welcome,3,allswellthatendswell,1603 gallant,3,allswellthatendswell,1603 short,3,allswellthatendswell,1603 virgins,3,allswellthatendswell,1603 counterfeit,3,allswellthatendswell,1603 horses,3,allswellthatendswell,1603 Wherefore,3,allswellthatendswell,1603 gives,3,allswellthatendswell,1603 Widow's,3,allswellthatendswell,1603 prithee,3,allswellthatendswell,1603 along,3,allswellthatendswell,1603 fairer,3,allswellthatendswell,1603 back,3,allswellthatendswell,1603 either,3,allswellthatendswell,1603 Truly,3,allswellthatendswell,1603 liking,3,allswellthatendswell,1603 Mine,3,allswellthatendswell,1603 fellows,3,allswellthatendswell,1603 troop,3,allswellthatendswell,1603 exploit,3,allswellthatendswell,1603 English,3,allswellthatendswell,1603 Gentlemen,3,allswellthatendswell,1603 increase,3,allswellthatendswell,1603 hours,3,allswellthatendswell,1603 whilst,3,allswellthatendswell,1603 mother's,3,allswellthatendswell,1603 protest,3,allswellthatendswell,1603 bestow,3,allswellthatendswell,1603 metaphor,3,allswellthatendswell,1603 nature's,3,allswellthatendswell,1603 until,3,allswellthatendswell,1603 sleep,3,allswellthatendswell,1603 servants,3,allswellthatendswell,1603 spirits,3,allswellthatendswell,1603 seldom,3,allswellthatendswell,1603 remember,3,allswellthatendswell,1603 met,3,allswellthatendswell,1603 Great,3,allswellthatendswell,1603 Away,3,allswellthatendswell,1603 E'en,3,allswellthatendswell,1603 thither,3,allswellthatendswell,1603 beauty,3,allswellthatendswell,1603 hush,3,allswellthatendswell,1603 Without,3,allswellthatendswell,1603 breaking,3,allswellthatendswell,1603 attend,3,allswellthatendswell,1603 honour'd,3,allswellthatendswell,1603 dark,3,allswellthatendswell,1603 stratagem,3,allswellthatendswell,1603 businesses,3,allswellthatendswell,1603 certain,3,allswellthatendswell,1603 shake,3,allswellthatendswell,1603 he'll,3,allswellthatendswell,1603 smell,3,allswellthatendswell,1603 Find,3,allswellthatendswell,1603 e'er,3,allswellthatendswell,1603 and,515,allswellthatendswell,1603 You're,4,allswellthatendswell,1603 fancy,4,allswellthatendswell,1603 leisure,4,allswellthatendswell,1603 interpreter,4,allswellthatendswell,1603 space,4,allswellthatendswell,1603 boys,4,allswellthatendswell,1603 single,4,allswellthatendswell,1603 Marseilles,4,allswellthatendswell,1603 younger,4,allswellthatendswell,1603 clothes,4,allswellthatendswell,1603 tears,4,allswellthatendswell,1603 Page,4,allswellthatendswell,1603 Ere,4,allswellthatendswell,1603 Would,4,allswellthatendswell,1603 spare,4,allswellthatendswell,1603 mercy,4,allswellthatendswell,1603 Give,4,allswellthatendswell,1603 gracious,4,allswellthatendswell,1603 thou'rt,4,allswellthatendswell,1603 black,4,allswellthatendswell,1603 sin,4,allswellthatendswell,1603 'twere,4,allswellthatendswell,1603 Aside,4,allswellthatendswell,1603 Such,4,allswellthatendswell,1603 skill,4,allswellthatendswell,1603 faults,4,allswellthatendswell,1603 Attendants,4,allswellthatendswell,1603 read,4,allswellthatendswell,1603 worse,4,allswellthatendswell,1603 received,4,allswellthatendswell,1603 guarded,4,allswellthatendswell,1603 dearly,4,allswellthatendswell,1603 Pardon,4,allswellthatendswell,1603 companion,4,allswellthatendswell,1603 promise,4,allswellthatendswell,1603 grow,4,allswellthatendswell,1603 wishes,4,allswellthatendswell,1603 seems,4,allswellthatendswell,1603 bold,4,allswellthatendswell,1603 stocks,4,allswellthatendswell,1603 pretty,4,allswellthatendswell,1603 colour,4,allswellthatendswell,1603 each,4,allswellthatendswell,1603 manners,4,allswellthatendswell,1603 melancholy,4,allswellthatendswell,1603 desperate,4,allswellthatendswell,1603 star,4,allswellthatendswell,1603 On,4,allswellthatendswell,1603 beg,4,allswellthatendswell,1603 deserved,4,allswellthatendswell,1603 valiant,4,allswellthatendswell,1603 goodly,4,allswellthatendswell,1603 cap,4,allswellthatendswell,1603 tricks,4,allswellthatendswell,1603 just,4,allswellthatendswell,1603 vows,4,allswellthatendswell,1603 Both,4,allswellthatendswell,1603 deed,4,allswellthatendswell,1603 servant,4,allswellthatendswell,1603 stood,4,allswellthatendswell,1603 beat,4,allswellthatendswell,1603 Bless,4,allswellthatendswell,1603 deal,4,allswellthatendswell,1603 thrive,4,allswellthatendswell,1603 move,4,allswellthatendswell,1603 questions,4,allswellthatendswell,1603 idle,4,allswellthatendswell,1603 lest,4,allswellthatendswell,1603 reasons,4,allswellthatendswell,1603 Jaques,4,allswellthatendswell,1603 deny,4,allswellthatendswell,1603 midnight,4,allswellthatendswell,1603 paid,4,allswellthatendswell,1603 owes,4,allswellthatendswell,1603 foot,4,allswellthatendswell,1603 bosom,4,allswellthatendswell,1603 duke's,4,allswellthatendswell,1603 Virginity,4,allswellthatendswell,1603 undone,4,allswellthatendswell,1603 token,4,allswellthatendswell,1603 here's,4,allswellthatendswell,1603 spoken,4,allswellthatendswell,1603 Have,4,allswellthatendswell,1603 justice,4,allswellthatendswell,1603 Against,4,allswellthatendswell,1603 thinks,4,allswellthatendswell,1603 nose,4,allswellthatendswell,1603 almost,4,allswellthatendswell,1603 wonder,4,allswellthatendswell,1603 remedy,4,allswellthatendswell,1603 scar,4,allswellthatendswell,1603 quickly,4,allswellthatendswell,1603 Look,4,allswellthatendswell,1603 soldiers,4,allswellthatendswell,1603 stars,4,allswellthatendswell,1603 presently,4,allswellthatendswell,1603 coward,4,allswellthatendswell,1603 free,4,allswellthatendswell,1603 behalf,4,allswellthatendswell,1603 near,4,allswellthatendswell,1603 five,4,allswellthatendswell,1603 fetch,4,allswellthatendswell,1603 able,4,allswellthatendswell,1603 receive,4,allswellthatendswell,1603 price,4,allswellthatendswell,1603 coming,4,allswellthatendswell,1603 ransom,4,allswellthatendswell,1603 hundred,4,allswellthatendswell,1603 contempt,4,allswellthatendswell,1603 Make,4,allswellthatendswell,1603 That's,4,allswellthatendswell,1603 grant,4,allswellthatendswell,1603 work,4,allswellthatendswell,1603 worn,4,allswellthatendswell,1603 rich,4,allswellthatendswell,1603 kiss,4,allswellthatendswell,1603 fare,4,allswellthatendswell,1603 talk,4,allswellthatendswell,1603 count's,4,allswellthatendswell,1603 carry,4,allswellthatendswell,1603 unto,4,allswellthatendswell,1603 virtues,4,allswellthatendswell,1603 buttock,4,allswellthatendswell,1603 intents,4,allswellthatendswell,1603 hearts,4,allswellthatendswell,1603 low,4,allswellthatendswell,1603 goodness,4,allswellthatendswell,1603 we'll,4,allswellthatendswell,1603 ended,4,allswellthatendswell,1603 Dian,4,allswellthatendswell,1603 sound,4,allswellthatendswell,1603 blame,4,allswellthatendswell,1603 entreat,4,allswellthatendswell,1603 Dumain,4,allswellthatendswell,1603 match,4,allswellthatendswell,1603 lie,4,allswellthatendswell,1603 ear,4,allswellthatendswell,1603 Before,4,allswellthatendswell,1603 hurt,4,allswellthatendswell,1603 going,4,allswellthatendswell,1603 content,4,allswellthatendswell,1603 disaster,4,allswellthatendswell,1603 respect,4,allswellthatendswell,1603 Did,4,allswellthatendswell,1603 weigh,4,allswellthatendswell,1603 kind,4,allswellthatendswell,1603 sharp,4,allswellthatendswell,1603 fortunes,4,allswellthatendswell,1603 meet,5,allswellthatendswell,1603 suffer,5,allswellthatendswell,1603 took,5,allswellthatendswell,1603 country,5,allswellthatendswell,1603 speech,5,allswellthatendswell,1603 woman's,5,allswellthatendswell,1603 lawful,5,allswellthatendswell,1603 truly,5,allswellthatendswell,1603 hers,5,allswellthatendswell,1603 honourable,5,allswellthatendswell,1603 whipped,5,allswellthatendswell,1603 case,5,allswellthatendswell,1603 paper,5,allswellthatendswell,1603 Nor,5,allswellthatendswell,1603 something,5,allswellthatendswell,1603 six,5,allswellthatendswell,1603 deceived,5,allswellthatendswell,1603 'twas,5,allswellthatendswell,1603 suit,5,allswellthatendswell,1603 sworn,5,allswellthatendswell,1603 wrong,5,allswellthatendswell,1603 ways,5,allswellthatendswell,1603 corrupt,5,allswellthatendswell,1603 language,5,allswellthatendswell,1603 title,5,allswellthatendswell,1603 anon,5,allswellthatendswell,1603 At,5,allswellthatendswell,1603 pay,5,allswellthatendswell,1603 kept,5,allswellthatendswell,1603 canst,5,allswellthatendswell,1603 wisdom,5,allswellthatendswell,1603 means,5,allswellthatendswell,1603 play,5,allswellthatendswell,1603 proud,5,allswellthatendswell,1603 gold,5,allswellthatendswell,1603 grief,5,allswellthatendswell,1603 Or,5,allswellthatendswell,1603 doth,5,allswellthatendswell,1603 weak,5,allswellthatendswell,1603 Saint,5,allswellthatendswell,1603 a',5,allswellthatendswell,1603 sing,5,allswellthatendswell,1603 confess,5,allswellthatendswell,1603 Soldiers,5,allswellthatendswell,1603 gift,5,allswellthatendswell,1603 aid,5,allswellthatendswell,1603 Lafeu,5,allswellthatendswell,1603 bear,5,allswellthatendswell,1603 needs,5,allswellthatendswell,1603 recovered,5,allswellthatendswell,1603 act,5,allswellthatendswell,1603 valour,5,allswellthatendswell,1603 welcome,5,allswellthatendswell,1603 More,5,allswellthatendswell,1603 prince,5,allswellthatendswell,1603 four,5,allswellthatendswell,1603 praise,5,allswellthatendswell,1603 majesty's,5,allswellthatendswell,1603 present,5,allswellthatendswell,1603 hate,5,allswellthatendswell,1603 maiden,5,allswellthatendswell,1603 right,5,allswellthatendswell,1603 lead,5,allswellthatendswell,1603 nay,5,allswellthatendswell,1603 report,5,allswellthatendswell,1603 sirrah,5,allswellthatendswell,1603 KING's,5,allswellthatendswell,1603 already,5,allswellthatendswell,1603 I'ld,5,allswellthatendswell,1603 state,5,allswellthatendswell,1603 same,5,allswellthatendswell,1603 get,5,allswellthatendswell,1603 sorrow,5,allswellthatendswell,1603 morrow,5,allswellthatendswell,1603 army,5,allswellthatendswell,1603 themselves,5,allswellthatendswell,1603 next,5,allswellthatendswell,1603 fall,5,allswellthatendswell,1603 fly,5,allswellthatendswell,1603 'em,5,allswellthatendswell,1603 vow,5,allswellthatendswell,1603 particular,5,allswellthatendswell,1603 married,5,allswellthatendswell,1603 meaning,5,allswellthatendswell,1603 lay,5,allswellthatendswell,1603 gentlemen,5,allswellthatendswell,1603 given,5,allswellthatendswell,1603 wilt,5,allswellthatendswell,1603 holds,5,allswellthatendswell,1603 alone,5,allswellthatendswell,1603 seen,5,allswellthatendswell,1603 Pray,5,allswellthatendswell,1603 self,5,allswellthatendswell,1603 together,5,allswellthatendswell,1603 goes,5,allswellthatendswell,1603 Nothing,5,allswellthatendswell,1603 sovereign,5,allswellthatendswell,1603 Indeed,5,allswellthatendswell,1603 try,5,allswellthatendswell,1603 simple,5,allswellthatendswell,1603 honour's,5,allswellthatendswell,1603 follow,5,allswellthatendswell,1603 He's,5,allswellthatendswell,1603 success,5,allswellthatendswell,1603 Take,5,allswellthatendswell,1603 shalt,5,allswellthatendswell,1603 shame,5,allswellthatendswell,1603 undertake,5,allswellthatendswell,1603 V,6,allswellthatendswell,1603 reputation,6,allswellthatendswell,1603 writ,6,allswellthatendswell,1603 royal,6,allswellthatendswell,1603 Must,6,allswellthatendswell,1603 finger,6,allswellthatendswell,1603 lies,6,allswellthatendswell,1603 trust,6,allswellthatendswell,1603 care,6,allswellthatendswell,1603 highness,6,allswellthatendswell,1603 words,6,allswellthatendswell,1603 head,6,allswellthatendswell,1603 body,6,allswellthatendswell,1603 light,6,allswellthatendswell,1603 looks,6,allswellthatendswell,1603 courtier,6,allswellthatendswell,1603 humble,6,allswellthatendswell,1603 choose,6,allswellthatendswell,1603 One,6,allswellthatendswell,1603 Diana,6,allswellthatendswell,1603 office,6,allswellthatendswell,1603 else,6,allswellthatendswell,1603 knowledge,6,allswellthatendswell,1603 creature,6,allswellthatendswell,1603 fortune's,6,allswellthatendswell,1603 bid,6,allswellthatendswell,1603 pass,6,allswellthatendswell,1603 ears,6,allswellthatendswell,1603 cat,6,allswellthatendswell,1603 dost,6,allswellthatendswell,1603 buy,6,allswellthatendswell,1603 pains,6,allswellthatendswell,1603 begin,6,allswellthatendswell,1603 virgin,6,allswellthatendswell,1603 lend,6,allswellthatendswell,1603 speed,6,allswellthatendswell,1603 thyself,6,allswellthatendswell,1603 age,6,allswellthatendswell,1603 ill,6,allswellthatendswell,1603 devil,6,allswellthatendswell,1603 choice,6,allswellthatendswell,1603 course,6,allswellthatendswell,1603 strive,6,allswellthatendswell,1603 Are,6,allswellthatendswell,1603 Hath,6,allswellthatendswell,1603 note,6,allswellthatendswell,1603 tender,6,allswellthatendswell,1603 child,6,allswellthatendswell,1603 question,6,allswellthatendswell,1603 pilgrim,6,allswellthatendswell,1603 mind,6,allswellthatendswell,1603 there's,6,allswellthatendswell,1603 dearest,6,allswellthatendswell,1603 monsieur,6,allswellthatendswell,1603 living,6,allswellthatendswell,1603 cure,6,allswellthatendswell,1603 heavy,6,allswellthatendswell,1603 duty,6,allswellthatendswell,1603 between,6,allswellthatendswell,1603 Monsieur,6,allswellthatendswell,1603 taken,6,allswellthatendswell,1603 cargo,6,allswellthatendswell,1603 three,6,allswellthatendswell,1603 gentleman,6,allswellthatendswell,1603 law,6,allswellthatendswell,1603 man's,6,allswellthatendswell,1603 strong,6,allswellthatendswell,1603 prayers,6,allswellthatendswell,1603 hither,6,allswellthatendswell,1603 sent,6,allswellthatendswell,1603 cold,6,allswellthatendswell,1603 purpose,6,allswellthatendswell,1603 write,6,allswellthatendswell,1603 liege,6,allswellthatendswell,1603 marriage,6,allswellthatendswell,1603 last,6,allswellthatendswell,1603 Marry,6,allswellthatendswell,1603 credit,6,allswellthatendswell,1603 strange,6,allswellthatendswell,1603 remembrance,6,allswellthatendswell,1603 enemy,6,allswellthatendswell,1603 told,7,allswellthatendswell,1603 times,7,allswellthatendswell,1603 horse,7,allswellthatendswell,1603 haste,7,allswellthatendswell,1603 run,7,allswellthatendswell,1603 Upon,7,allswellthatendswell,1603 camp,7,allswellthatendswell,1603 saw,7,allswellthatendswell,1603 cheek,7,allswellthatendswell,1603 call,7,allswellthatendswell,1603 bound,7,allswellthatendswell,1603 virtuous,7,allswellthatendswell,1603 worth,7,allswellthatendswell,1603 There,7,allswellthatendswell,1603 common,7,allswellthatendswell,1603 king's,7,allswellthatendswell,1603 flesh,7,allswellthatendswell,1603 steal,7,allswellthatendswell,1603 wish,7,allswellthatendswell,1603 displeasure,7,allswellthatendswell,1603 rest,7,allswellthatendswell,1603 mean,7,allswellthatendswell,1603 An,7,allswellthatendswell,1603 neither,7,allswellthatendswell,1603 boy,7,allswellthatendswell,1603 stay,7,allswellthatendswell,1603 Her,7,allswellthatendswell,1603 favour,7,allswellthatendswell,1603 Yes,7,allswellthatendswell,1603 keep,7,allswellthatendswell,1603 point,7,allswellthatendswell,1603 show,7,allswellthatendswell,1603 Than,7,allswellthatendswell,1603 lords,7,allswellthatendswell,1603 MARIANA,7,allswellthatendswell,1603 Love,7,allswellthatendswell,1603 end,7,allswellthatendswell,1603 won,7,allswellthatendswell,1603 once,7,allswellthatendswell,1603 sake,7,allswellthatendswell,1603 We'll,7,allswellthatendswell,1603 why,7,allswellthatendswell,1603 says,7,allswellthatendswell,1603 heard,7,allswellthatendswell,1603 danger,7,allswellthatendswell,1603 face,7,allswellthatendswell,1603 Till,7,allswellthatendswell,1603 even,7,allswellthatendswell,1603 Mars,7,allswellthatendswell,1603 fit,7,allswellthatendswell,1603 fine,7,allswellthatendswell,1603 ne'er,7,allswellthatendswell,1603 herself,7,allswellthatendswell,1603 is't,7,allswellthatendswell,1603 thus,7,allswellthatendswell,1603 eat,7,allswellthatendswell,1603 makes,7,allswellthatendswell,1603 on't,7,allswellthatendswell,1603 late,7,allswellthatendswell,1603 Thy,7,allswellthatendswell,1603 pity,8,allswellthatendswell,1603 thought,8,allswellthatendswell,1603 COUNT's,8,allswellthatendswell,1603 understand,8,allswellthatendswell,1603 Whose,8,allswellthatendswell,1603 enough,8,allswellthatendswell,1603 't,8,allswellthatendswell,1603 about,8,allswellthatendswell,1603 soldier,8,allswellthatendswell,1603 Though,8,allswellthatendswell,1603 spoke,8,allswellthatendswell,1603 Faith,8,allswellthatendswell,1603 since,8,allswellthatendswell,1603 IV,8,allswellthatendswell,1603 prove,8,allswellthatendswell,1603 got,8,allswellthatendswell,1603 Re,8,allswellthatendswell,1603 wear,8,allswellthatendswell,1603 Bertram,8,allswellthatendswell,1603 farewell,8,allswellthatendswell,1603 tongue,8,allswellthatendswell,1603 long,8,allswellthatendswell,1603 gentlewoman,8,allswellthatendswell,1603 loves,8,allswellthatendswell,1603 thanks,8,allswellthatendswell,1603 Madam,8,allswellthatendswell,1603 Lords,8,allswellthatendswell,1603 faith,8,allswellthatendswell,1603 general,8,allswellthatendswell,1603 known,8,allswellthatendswell,1603 Then,8,allswellthatendswell,1603 need,8,allswellthatendswell,1603 father's,8,allswellthatendswell,1603 fire,8,allswellthatendswell,1603 oft,8,allswellthatendswell,1603 thousand,8,allswellthatendswell,1603 hold,8,allswellthatendswell,1603 holy,8,allswellthatendswell,1603 Since,8,allswellthatendswell,1603 command,8,allswellthatendswell,1603 ten,8,allswellthatendswell,1603 woman,8,allswellthatendswell,1603 oaths,8,allswellthatendswell,1603 Will,9,allswellthatendswell,1603 demand,9,allswellthatendswell,1603 charge,9,allswellthatendswell,1603 yourself,9,allswellthatendswell,1603 full,9,allswellthatendswell,1603 she's,9,allswellthatendswell,1603 Was,9,allswellthatendswell,1603 fellow,9,allswellthatendswell,1603 born,9,allswellthatendswell,1603 fear,9,allswellthatendswell,1603 worthy,9,allswellthatendswell,1603 sword,9,allswellthatendswell,1603 sense,9,allswellthatendswell,1603 friend,9,allswellthatendswell,1603 What's,9,allswellthatendswell,1603 in't,9,allswellthatendswell,1603 pleasure,9,allswellthatendswell,1603 enter,9,allswellthatendswell,1603 best,9,allswellthatendswell,1603 Yet,9,allswellthatendswell,1603 knew,9,allswellthatendswell,1603 part,9,allswellthatendswell,1603 ask,9,allswellthatendswell,1603 far,9,allswellthatendswell,1603 eye,9,allswellthatendswell,1603 Flourish,9,allswellthatendswell,1603 From,9,allswellthatendswell,1603 All,9,allswellthatendswell,1603 letters,9,allswellthatendswell,1603 thing,9,allswellthatendswell,1603 only,9,allswellthatendswell,1603 beseech,9,allswellthatendswell,1603 save,9,allswellthatendswell,1603 hour,9,allswellthatendswell,1603 till,9,allswellthatendswell,1603 pardon,9,allswellthatendswell,1603 seem,9,allswellthatendswell,1603 send,9,allswellthatendswell,1603 Captain,9,allswellthatendswell,1603 without,9,allswellthatendswell,1603 lack,9,allswellthatendswell,1603 Florentine,9,allswellthatendswell,1603 mistress,10,allswellthatendswell,1603 under,10,allswellthatendswell,1603 brother,10,allswellthatendswell,1603 another,10,allswellthatendswell,1603 Farewell,10,allswellthatendswell,1603 within,10,allswellthatendswell,1603 wars,10,allswellthatendswell,1603 matter,10,allswellthatendswell,1603 Be,10,allswellthatendswell,1603 to't,10,allswellthatendswell,1603 II,10,allswellthatendswell,1603 dead,10,allswellthatendswell,1603 Reads,10,allswellthatendswell,1603 loved,10,allswellthatendswell,1603 hast,10,allswellthatendswell,1603 Steward,10,allswellthatendswell,1603 DUKE,10,allswellthatendswell,1603 Sir,10,allswellthatendswell,1603 youth,10,allswellthatendswell,1603 They,10,allswellthatendswell,1603 who,10,allswellthatendswell,1603 still,10,allswellthatendswell,1603 stand,10,allswellthatendswell,1603 please,10,allswellthatendswell,1603 thank,10,allswellthatendswell,1603 honest,10,allswellthatendswell,1603 eyes,10,allswellthatendswell,1603 swear,10,allswellthatendswell,1603 use,10,allswellthatendswell,1603 return,10,allswellthatendswell,1603 honesty,10,allswellthatendswell,1603 thoughts,10,allswellthatendswell,1603 being,10,allswellthatendswell,1603 virtue,10,allswellthatendswell,1603 May,10,allswellthatendswell,1603 dare,10,allswellthatendswell,1603 sure,11,allswellthatendswell,1603 Who,11,allswellthatendswell,1603 ourselves,11,allswellthatendswell,1603 Our,11,allswellthatendswell,1603 There's,11,allswellthatendswell,1603 he's,11,allswellthatendswell,1603 bed,11,allswellthatendswell,1603 gave,11,allswellthatendswell,1603 said,11,allswellthatendswell,1603 those,11,allswellthatendswell,1603 forth,11,allswellthatendswell,1603 little,11,allswellthatendswell,1603 She,11,allswellthatendswell,1603 ere,11,allswellthatendswell,1603 high,11,allswellthatendswell,1603 Count,11,allswellthatendswell,1603 greatest,11,allswellthatendswell,1603 believe,11,allswellthatendswell,1603 war,11,allswellthatendswell,1603 letter,11,allswellthatendswell,1603 word,11,allswellthatendswell,1603 Paris,11,allswellthatendswell,1603 Parolles,12,allswellthatendswell,1603 Here,12,allswellthatendswell,1603 French,12,allswellthatendswell,1603 III,12,allswellthatendswell,1603 itself,12,allswellthatendswell,1603 Go,12,allswellthatendswell,1603 look,12,allswellthatendswell,1603 dear,12,allswellthatendswell,1603 place,12,allswellthatendswell,1603 majesty,12,allswellthatendswell,1603 yours,12,allswellthatendswell,1603 nor,12,allswellthatendswell,1603 myself,12,allswellthatendswell,1603 Shall,12,allswellthatendswell,1603 fortune,12,allswellthatendswell,1603 captain,12,allswellthatendswell,1603 die,12,allswellthatendswell,1603 rather,13,allswellthatendswell,1603 Now,13,allswellthatendswell,1603 further,13,allswellthatendswell,1603 service,13,allswellthatendswell,1603 therefore,13,allswellthatendswell,1603 past,13,allswellthatendswell,1603 husband,13,allswellthatendswell,1603 that's,13,allswellthatendswell,1603 o',13,allswellthatendswell,1603 lost,13,allswellthatendswell,1603 lose,13,allswellthatendswell,1603 things,13,allswellthatendswell,1603 Thou,13,allswellthatendswell,1603 knows,13,allswellthatendswell,1603 found,13,allswellthatendswell,1603 help,14,allswellthatendswell,1603 friends,14,allswellthatendswell,1603 Come,14,allswellthatendswell,1603 Not,14,allswellthatendswell,1603 set,14,allswellthatendswell,1603 blood,14,allswellthatendswell,1603 Good,14,allswellthatendswell,1603 grace,14,allswellthatendswell,1603 Helen,14,allswellthatendswell,1603 fool,14,allswellthatendswell,1603 though,14,allswellthatendswell,1603 Well,14,allswellthatendswell,1603 way,14,allswellthatendswell,1603 duke,14,allswellthatendswell,1603 Nay,15,allswellthatendswell,1603 world,15,allswellthatendswell,1603 better,15,allswellthatendswell,1603 against,15,allswellthatendswell,1603 after,15,allswellthatendswell,1603 bring,15,allswellthatendswell,1603 Your,15,allswellthatendswell,1603 palace,15,allswellthatendswell,1603 lordship,15,allswellthatendswell,1603 day,15,allswellthatendswell,1603 Let,15,allswellthatendswell,1603 virginity,15,allswellthatendswell,1603 master,15,allswellthatendswell,1603 whom,15,allswellthatendswell,1603 house,15,allswellthatendswell,1603 men,15,allswellthatendswell,1603 true,15,allswellthatendswell,1603 father,15,allswellthatendswell,1603 power,15,allswellthatendswell,1603 in,271,allswellthatendswell,1603 down,16,allswellthatendswell,1603 i',16,allswellthatendswell,1603 indeed,16,allswellthatendswell,1603 none,16,allswellthatendswell,1603 court,16,allswellthatendswell,1603 marry,16,allswellthatendswell,1603 fair,16,allswellthatendswell,1603 home,16,allswellthatendswell,1603 sweet,16,allswellthatendswell,1603 Where,16,allswellthatendswell,1603 business,17,allswellthatendswell,1603 drum,17,allswellthatendswell,1603 death,17,allswellthatendswell,1603 Do,17,allswellthatendswell,1603 No,17,allswellthatendswell,1603 We,17,allswellthatendswell,1603 been,17,allswellthatendswell,1603 noble,17,allswellthatendswell,1603 art,17,allswellthatendswell,1603 made,17,allswellthatendswell,1603 heart,17,allswellthatendswell,1603 count,17,allswellthatendswell,1603 'Tis,17,allswellthatendswell,1603 himself,17,allswellthatendswell,1603 every,18,allswellthatendswell,1603 truth,18,allswellthatendswell,1603 France,18,allswellthatendswell,1603 daughter,18,allswellthatendswell,1603 whose,18,allswellthatendswell,1603 gone,18,allswellthatendswell,1603 God,18,allswellthatendswell,1603 How,18,allswellthatendswell,1603 many,18,allswellthatendswell,1603 comes,18,allswellthatendswell,1603 old,18,allswellthatendswell,1603 lady,18,allswellthatendswell,1603 answer,19,allswellthatendswell,1603 these,19,allswellthatendswell,1603 tell,19,allswellthatendswell,1603 name,19,allswellthatendswell,1603 put,19,allswellthatendswell,1603 into,19,allswellthatendswell,1603 could,19,allswellthatendswell,1603 first,19,allswellthatendswell,1603 both,20,allswellthatendswell,1603 By,20,allswellthatendswell,1603 up,20,allswellthatendswell,1603 Florence,20,allswellthatendswell,1603 hope,20,allswellthatendswell,1603 live,20,allswellthatendswell,1603 might,20,allswellthatendswell,1603 pray,21,allswellthatendswell,1603 nothing,21,allswellthatendswell,1603 With,21,allswellthatendswell,1603 heaven,21,allswellthatendswell,1603 For,21,allswellthatendswell,1603 Ay,21,allswellthatendswell,1603 His,21,allswellthatendswell,1603 Is,21,allswellthatendswell,1603 night,21,allswellthatendswell,1603 how,21,allswellthatendswell,1603 maid,21,allswellthatendswell,1603 where,21,allswellthatendswell,1603 thine,21,allswellthatendswell,1603 off,21,allswellthatendswell,1603 serve,21,allswellthatendswell,1603 find,21,allswellthatendswell,1603 hear,22,allswellthatendswell,1603 done,22,allswellthatendswell,1603 hand,22,allswellthatendswell,1603 young,22,allswellthatendswell,1603 two,22,allswellthatendswell,1603 nature,22,allswellthatendswell,1603 ',23,allswellthatendswell,1603 Why,23,allswellthatendswell,1603 go,23,allswellthatendswell,1603 ACT,23,allswellthatendswell,1603 before,23,allswellthatendswell,1603 does,24,allswellthatendswell,1603 SCENE,24,allswellthatendswell,1603 other,24,allswellthatendswell,1603 life,25,allswellthatendswell,1603 some,25,allswellthatendswell,1603 leave,25,allswellthatendswell,1603 Rousillon,25,allswellthatendswell,1603 ENDS,26,allswellthatendswell,1603 away,26,allswellthatendswell,1603 It,26,allswellthatendswell,1603 Exeunt,26,allswellthatendswell,1603 ALL'S,26,allswellthatendswell,1603 any,26,allswellthatendswell,1603 Gentleman,26,allswellthatendswell,1603 poor,26,allswellthatendswell,1603 THAT,26,allswellthatendswell,1603 cannot,26,allswellthatendswell,1603 much,27,allswellthatendswell,1603 then,27,allswellthatendswell,1603 their,27,allswellthatendswell,1603 again,27,allswellthatendswell,1603 knave,27,allswellthatendswell,1603 This,27,allswellthatendswell,1603 When,27,allswellthatendswell,1603 mother,28,allswellthatendswell,1603 has,28,allswellthatendswell,1603 never,28,allswellthatendswell,1603 Of,28,allswellthatendswell,1603 Which,28,allswellthatendswell,1603 So,28,allswellthatendswell,1603 ever,28,allswellthatendswell,1603 time,28,allswellthatendswell,1603 king,28,allswellthatendswell,1603 As,29,allswellthatendswell,1603 wife,30,allswellthatendswell,1603 let,30,allswellthatendswell,1603 Exit,30,allswellthatendswell,1603 did,31,allswellthatendswell,1603 son,32,allswellthatendswell,1603 Widow,32,allswellthatendswell,1603 out,32,allswellthatendswell,1603 take,32,allswellthatendswell,1603 such,33,allswellthatendswell,1603 come,33,allswellthatendswell,1603 O,34,allswellthatendswell,1603 In,34,allswellthatendswell,1603 ring,34,allswellthatendswell,1603 when,34,allswellthatendswell,1603 'tis,35,allswellthatendswell,1603 give,35,allswellthatendswell,1603 should,35,allswellthatendswell,1603 here,36,allswellthatendswell,1603 honour,36,allswellthatendswell,1603 very,36,allswellthatendswell,1603 like,37,allswellthatendswell,1603 see,37,allswellthatendswell,1603 think,37,allswellthatendswell,1603 madam,37,allswellthatendswell,1603 may,37,allswellthatendswell,1603 than,38,allswellthatendswell,1603 us,38,allswellthatendswell,1603 own,38,allswellthatendswell,1603 most,39,allswellthatendswell,1603 man,39,allswellthatendswell,1603 yet,40,allswellthatendswell,1603 speak,40,allswellthatendswell,1603 now,40,allswellthatendswell,1603 mine,40,allswellthatendswell,1603 must,41,allswellthatendswell,1603 Soldier,41,allswellthatendswell,1603 there,41,allswellthatendswell,1603 can,41,allswellthatendswell,1603 too,41,allswellthatendswell,1603 If,42,allswellthatendswell,1603 great,43,allswellthatendswell,1603 upon,44,allswellthatendswell,1603 hath,45,allswellthatendswell,1603 make,45,allswellthatendswell,1603 I'll,46,allswellthatendswell,1603 Enter,47,allswellthatendswell,1603 What,47,allswellthatendswell,1603 A,48,allswellthatendswell,1603 had,48,allswellthatendswell,1603 He,48,allswellthatendswell,1603 You,48,allswellthatendswell,1603 My,49,allswellthatendswell,1603 them,50,allswellthatendswell,1603 one,50,allswellthatendswell,1603 WELL,52,allswellthatendswell,1603 DIANA,52,allswellthatendswell,1603 were,52,allswellthatendswell,1603 an,53,allswellthatendswell,1603 they,54,allswellthatendswell,1603 on,54,allswellthatendswell,1603 love,55,allswellthatendswell,1603 or,58,allswellthatendswell,1603 which,59,allswellthatendswell,1603 say,60,allswellthatendswell,1603 at,62,allswellthatendswell,1603 from,62,allswellthatendswell,1603 if,63,allswellthatendswell,1603 But,64,allswellthatendswell,1603 more,65,allswellthatendswell,1603 Second,67,allswellthatendswell,1603 well,67,allswellthatendswell,1603 Clown,67,allswellthatendswell,1603 we,69,allswellthatendswell,1603 To,72,allswellthatendswell,1603 what,73,allswellthatendswell,1603 my,330,allswellthatendswell,1603 by,75,allswellthatendswell,1603 am,75,allswellthatendswell,1603 good,76,allswellthatendswell,1603 thy,77,allswellthatendswell,1603 she,78,allswellthatendswell,1603 thee,79,allswellthatendswell,1603 That,80,allswellthatendswell,1603 would,80,allswellthatendswell,1603 thou,82,allswellthatendswell,1603 know,82,allswellthatendswell,1603 sir,87,allswellthatendswell,1603 do,87,allswellthatendswell,1603 no,87,allswellthatendswell,1603 are,87,allswellthatendswell,1603 was,87,allswellthatendswell,1603 all,88,allswellthatendswell,1603 lord,89,allswellthatendswell,1603 our,89,allswellthatendswell,1603 KING,94,allswellthatendswell,1603 as,94,allswellthatendswell,1603 The,95,allswellthatendswell,1603 COUNTESS,97,allswellthatendswell,1603 First,98,allswellthatendswell,1603 shall,103,allswellthatendswell,1603 And,107,allswellthatendswell,1603 LAFEU,112,allswellthatendswell,1603 but,122,allswellthatendswell,1603 Lord,123,allswellthatendswell,1603 HELENA,124,allswellthatendswell,1603 so,127,allswellthatendswell,1603 the,639,allswellthatendswell,1603 BERTRAM,128,allswellthatendswell,1603 with,142,allswellthatendswell,1603 this,146,allswellthatendswell,1603 will,148,allswellthatendswell,1603 a,405,allswellthatendswell,1603 PAROLLES,165,allswellthatendswell,1603 her,169,allswellthatendswell,1603 him,178,allswellthatendswell,1603 for,179,allswellthatendswell,1603 you,435,allswellthatendswell,1603 of,436,allswellthatendswell,1603 I,694,allswellthatendswell,1603 be,184,allswellthatendswell,1603 he,185,allswellthatendswell,1603 have,192,allswellthatendswell,1603 me,201,allswellthatendswell,1603 your,204,allswellthatendswell,1603 to,467,allswellthatendswell,1603 his,212,allswellthatendswell,1603 not,236,allswellthatendswell,1603 that,245,allswellthatendswell,1603 it,254,allswellthatendswell,1603 seaman,1,periclesprinceoftyre,1608 silken,1,periclesprinceoftyre,1608 event,1,periclesprinceoftyre,1608 possibly,1,periclesprinceoftyre,1608 pistol's,1,periclesprinceoftyre,1608 Time's,1,periclesprinceoftyre,1608 rushing,1,periclesprinceoftyre,1608 villany,1,periclesprinceoftyre,1608 troubler,1,periclesprinceoftyre,1608 digs,1,periclesprinceoftyre,1608 authorities,1,periclesprinceoftyre,1608 troubles,1,periclesprinceoftyre,1608 Flesh,1,periclesprinceoftyre,1608 name't,1,periclesprinceoftyre,1608 proffer,1,periclesprinceoftyre,1608 biggest,1,periclesprinceoftyre,1608 parted,1,periclesprinceoftyre,1608 drawing,1,periclesprinceoftyre,1608 whales,1,periclesprinceoftyre,1608 puddings,1,periclesprinceoftyre,1608 times,1,periclesprinceoftyre,1608 finger'd,1,periclesprinceoftyre,1608 guard,1,periclesprinceoftyre,1608 debts,1,periclesprinceoftyre,1608 ropes,1,periclesprinceoftyre,1608 Y,1,periclesprinceoftyre,1608 Prove,1,periclesprinceoftyre,1608 c,1,periclesprinceoftyre,1608 suffer,1,periclesprinceoftyre,1608 address'd,1,periclesprinceoftyre,1608 Yours,1,periclesprinceoftyre,1608 red,1,periclesprinceoftyre,1608 gallants,1,periclesprinceoftyre,1608 Longer,1,periclesprinceoftyre,1608 Few,1,periclesprinceoftyre,1608 groom,1,periclesprinceoftyre,1608 y,1,periclesprinceoftyre,1608 infected,1,periclesprinceoftyre,1608 dames,1,periclesprinceoftyre,1608 description,1,periclesprinceoftyre,1608 reputation,1,periclesprinceoftyre,1608 beadle,1,periclesprinceoftyre,1608 tops,1,periclesprinceoftyre,1608 Hear,1,periclesprinceoftyre,1608 infamy,1,periclesprinceoftyre,1608 eche,1,periclesprinceoftyre,1608 fitment,1,periclesprinceoftyre,1608 restoratives,1,periclesprinceoftyre,1608 tremble,1,periclesprinceoftyre,1608 viands,1,periclesprinceoftyre,1608 weary,1,periclesprinceoftyre,1608 wears,1,periclesprinceoftyre,1608 brass,1,periclesprinceoftyre,1608 raw,1,periclesprinceoftyre,1608 disturb,1,periclesprinceoftyre,1608 twin,1,periclesprinceoftyre,1608 following,1,periclesprinceoftyre,1608 reign'd,1,periclesprinceoftyre,1608 especially,1,periclesprinceoftyre,1608 lament,1,periclesprinceoftyre,1608 neighbours,1,periclesprinceoftyre,1608 dives,1,periclesprinceoftyre,1608 travail,1,periclesprinceoftyre,1608 New,1,periclesprinceoftyre,1608 Fie,1,periclesprinceoftyre,1608 shadows,1,periclesprinceoftyre,1608 peruse,1,periclesprinceoftyre,1608 wooden,1,periclesprinceoftyre,1608 advantage,1,periclesprinceoftyre,1608 female,1,periclesprinceoftyre,1608 brows,1,periclesprinceoftyre,1608 Fit,1,periclesprinceoftyre,1608 lawful,1,periclesprinceoftyre,1608 alack,1,periclesprinceoftyre,1608 nursing,1,periclesprinceoftyre,1608 unborn,1,periclesprinceoftyre,1608 lower,1,periclesprinceoftyre,1608 jacks,1,periclesprinceoftyre,1608 longs,1,periclesprinceoftyre,1608 Messengers,1,periclesprinceoftyre,1608 festivals,1,periclesprinceoftyre,1608 thankfully,1,periclesprinceoftyre,1608 bones,1,periclesprinceoftyre,1608 purge,1,periclesprinceoftyre,1608 labours,1,periclesprinceoftyre,1608 robs,1,periclesprinceoftyre,1608 glads,1,periclesprinceoftyre,1608 assured,1,periclesprinceoftyre,1608 suppose,1,periclesprinceoftyre,1608 weave,1,periclesprinceoftyre,1608 stopp'd,1,periclesprinceoftyre,1608 pupils,1,periclesprinceoftyre,1608 chiding,1,periclesprinceoftyre,1608 Bear,1,periclesprinceoftyre,1608 roar,1,periclesprinceoftyre,1608 Syria,1,periclesprinceoftyre,1608 road,1,periclesprinceoftyre,1608 space,1,periclesprinceoftyre,1608 epitaph,1,periclesprinceoftyre,1608 testy,1,periclesprinceoftyre,1608 melt,1,periclesprinceoftyre,1608 foster,1,periclesprinceoftyre,1608 blustering,1,periclesprinceoftyre,1608 violets,1,periclesprinceoftyre,1608 strengthen,1,periclesprinceoftyre,1608 dish,1,periclesprinceoftyre,1608 single,1,periclesprinceoftyre,1608 sisters,1,periclesprinceoftyre,1608 Neptune,1,periclesprinceoftyre,1608 joint,1,periclesprinceoftyre,1608 joins,1,periclesprinceoftyre,1608 Whereby,1,periclesprinceoftyre,1608 clothes,1,periclesprinceoftyre,1608 vail,1,periclesprinceoftyre,1608 hers,1,periclesprinceoftyre,1608 pardon'd,1,periclesprinceoftyre,1608 aptly,1,periclesprinceoftyre,1608 environed,1,periclesprinceoftyre,1608 groan,1,periclesprinceoftyre,1608 bounteous,1,periclesprinceoftyre,1608 herb,1,periclesprinceoftyre,1608 vain,1,periclesprinceoftyre,1608 violent,1,periclesprinceoftyre,1608 mere,1,periclesprinceoftyre,1608 enticeth,1,periclesprinceoftyre,1608 decay,1,periclesprinceoftyre,1608 effectless,1,periclesprinceoftyre,1608 purer,1,periclesprinceoftyre,1608 celestial,1,periclesprinceoftyre,1608 unwholesome,1,periclesprinceoftyre,1608 disease,1,periclesprinceoftyre,1608 sighs,1,periclesprinceoftyre,1608 grim,1,periclesprinceoftyre,1608 Help,1,periclesprinceoftyre,1608 toil,1,periclesprinceoftyre,1608 upside,1,periclesprinceoftyre,1608 answering,1,periclesprinceoftyre,1608 relish'd,1,periclesprinceoftyre,1608 ravish'd,1,periclesprinceoftyre,1608 instrument,1,periclesprinceoftyre,1608 Hell,1,periclesprinceoftyre,1608 Conveniently,1,periclesprinceoftyre,1608 fought,1,periclesprinceoftyre,1608 Wife,1,periclesprinceoftyre,1608 hanged,1,periclesprinceoftyre,1608 advance,1,periclesprinceoftyre,1608 feeds,1,periclesprinceoftyre,1608 flow,1,periclesprinceoftyre,1608 omitted,1,periclesprinceoftyre,1608 richly,1,periclesprinceoftyre,1608 rubied,1,periclesprinceoftyre,1608 shelter,1,periclesprinceoftyre,1608 Scorn,1,periclesprinceoftyre,1608 bring'st,1,periclesprinceoftyre,1608 danceth,1,periclesprinceoftyre,1608 throat,1,periclesprinceoftyre,1608 nought,1,periclesprinceoftyre,1608 laugh,1,periclesprinceoftyre,1608 under,1,periclesprinceoftyre,1608 worms,1,periclesprinceoftyre,1608 Provided,1,periclesprinceoftyre,1608 commence,1,periclesprinceoftyre,1608 beauty's,1,periclesprinceoftyre,1608 yonder,1,periclesprinceoftyre,1608 terrible,1,periclesprinceoftyre,1608 innocence,1,periclesprinceoftyre,1608 crickets,1,periclesprinceoftyre,1608 cheap,1,periclesprinceoftyre,1608 plenty's,1,periclesprinceoftyre,1608 ravish,1,periclesprinceoftyre,1608 sort,1,periclesprinceoftyre,1608 lien,1,periclesprinceoftyre,1608 roguing,1,periclesprinceoftyre,1608 run,1,periclesprinceoftyre,1608 Post,1,periclesprinceoftyre,1608 ancestors,1,periclesprinceoftyre,1608 pick,1,periclesprinceoftyre,1608 vivo,1,periclesprinceoftyre,1608 wrens,1,periclesprinceoftyre,1608 entice,1,periclesprinceoftyre,1608 tyrannous,1,periclesprinceoftyre,1608 goest,1,periclesprinceoftyre,1608 bowed,1,periclesprinceoftyre,1608 thousandth,1,periclesprinceoftyre,1608 PERSONAE,1,periclesprinceoftyre,1608 province,1,periclesprinceoftyre,1608 rescued,1,periclesprinceoftyre,1608 vita,1,periclesprinceoftyre,1608 mute,1,periclesprinceoftyre,1608 demand,1,periclesprinceoftyre,1608 perishen,1,periclesprinceoftyre,1608 agreed,1,periclesprinceoftyre,1608 spare,1,periclesprinceoftyre,1608 saved,1,periclesprinceoftyre,1608 spark,1,periclesprinceoftyre,1608 fosters,1,periclesprinceoftyre,1608 quirks,1,periclesprinceoftyre,1608 teaches,1,periclesprinceoftyre,1608 attempt,1,periclesprinceoftyre,1608 spares,1,periclesprinceoftyre,1608 softly,1,periclesprinceoftyre,1608 song,1,periclesprinceoftyre,1608 cheapest,1,periclesprinceoftyre,1608 garment,1,periclesprinceoftyre,1608 pleasing,1,periclesprinceoftyre,1608 regions,1,periclesprinceoftyre,1608 agrees,1,periclesprinceoftyre,1608 shrieks,1,periclesprinceoftyre,1608 mercy,1,periclesprinceoftyre,1608 unfriendly,1,periclesprinceoftyre,1608 plague,1,periclesprinceoftyre,1608 law's,1,periclesprinceoftyre,1608 passions,1,periclesprinceoftyre,1608 Pilch,1,periclesprinceoftyre,1608 palates,1,periclesprinceoftyre,1608 ire,1,periclesprinceoftyre,1608 disdain,1,periclesprinceoftyre,1608 hunger's,1,periclesprinceoftyre,1608 patroness,1,periclesprinceoftyre,1608 Rare,1,periclesprinceoftyre,1608 lacks,1,periclesprinceoftyre,1608 imply,1,periclesprinceoftyre,1608 o'erpress'd,1,periclesprinceoftyre,1608 stock,1,periclesprinceoftyre,1608 pine,1,periclesprinceoftyre,1608 sole,1,periclesprinceoftyre,1608 sold,1,periclesprinceoftyre,1608 confusion,1,periclesprinceoftyre,1608 topple,1,periclesprinceoftyre,1608 befits,1,periclesprinceoftyre,1608 grown,1,periclesprinceoftyre,1608 toss,1,periclesprinceoftyre,1608 outside,1,periclesprinceoftyre,1608 betake,1,periclesprinceoftyre,1608 mundane,1,periclesprinceoftyre,1608 line,1,periclesprinceoftyre,1608 voiced,1,periclesprinceoftyre,1608 OLD,1,periclesprinceoftyre,1608 lamentation,1,periclesprinceoftyre,1608 choleric,1,periclesprinceoftyre,1608 prop,1,periclesprinceoftyre,1608 incensed,1,periclesprinceoftyre,1608 condolements,1,periclesprinceoftyre,1608 gracious,1,periclesprinceoftyre,1608 broken,1,periclesprinceoftyre,1608 Aboard,1,periclesprinceoftyre,1608 injury,1,periclesprinceoftyre,1608 beacon,1,periclesprinceoftyre,1608 succeeding,1,periclesprinceoftyre,1608 purse,1,periclesprinceoftyre,1608 overcome,1,periclesprinceoftyre,1608 trumpet,1,periclesprinceoftyre,1608 corse,1,periclesprinceoftyre,1608 Much,1,periclesprinceoftyre,1608 Remember,1,periclesprinceoftyre,1608 sources,1,periclesprinceoftyre,1608 anchor,1,periclesprinceoftyre,1608 heap,1,periclesprinceoftyre,1608 toward,1,periclesprinceoftyre,1608 revels,1,periclesprinceoftyre,1608 dejected,1,periclesprinceoftyre,1608 rosemary,1,periclesprinceoftyre,1608 o'erjoy'd,1,periclesprinceoftyre,1608 oppress,1,periclesprinceoftyre,1608 Quiet,1,periclesprinceoftyre,1608 cheek,1,periclesprinceoftyre,1608 Persons,1,periclesprinceoftyre,1608 hearing,1,periclesprinceoftyre,1608 fingers,1,periclesprinceoftyre,1608 Forgot,1,periclesprinceoftyre,1608 lift,1,periclesprinceoftyre,1608 babes,1,periclesprinceoftyre,1608 repetition,1,periclesprinceoftyre,1608 paper,1,periclesprinceoftyre,1608 Yield,1,periclesprinceoftyre,1608 rides,1,periclesprinceoftyre,1608 finding,1,periclesprinceoftyre,1608 making,1,periclesprinceoftyre,1608 Coistrel,1,periclesprinceoftyre,1608 Philemon,1,periclesprinceoftyre,1608 Ethiope,1,periclesprinceoftyre,1608 Loath,1,periclesprinceoftyre,1608 gelded,1,periclesprinceoftyre,1608 fools,1,periclesprinceoftyre,1608 soft,1,periclesprinceoftyre,1608 assail'd,1,periclesprinceoftyre,1608 target,1,periclesprinceoftyre,1608 Avaunt,1,periclesprinceoftyre,1608 bated,1,periclesprinceoftyre,1608 blessed,1,periclesprinceoftyre,1608 visit,1,periclesprinceoftyre,1608 sharpens,1,periclesprinceoftyre,1608 lesser,1,periclesprinceoftyre,1608 drones,1,periclesprinceoftyre,1608 began,1,periclesprinceoftyre,1608 Transylvanian,1,periclesprinceoftyre,1608 unholy,1,periclesprinceoftyre,1608 cities,1,periclesprinceoftyre,1608 explain,1,periclesprinceoftyre,1608 ladies',1,periclesprinceoftyre,1608 chequins,1,periclesprinceoftyre,1608 deserve,1,periclesprinceoftyre,1608 impostor,1,periclesprinceoftyre,1608 plucked,1,periclesprinceoftyre,1608 Whirring,1,periclesprinceoftyre,1608 six,1,periclesprinceoftyre,1608 Infant,1,periclesprinceoftyre,1608 rarest,1,periclesprinceoftyre,1608 Patch,1,periclesprinceoftyre,1608 hereafter,1,periclesprinceoftyre,1608 weaker,1,periclesprinceoftyre,1608 she'd,1,periclesprinceoftyre,1608 fere,1,periclesprinceoftyre,1608 flashes,1,periclesprinceoftyre,1608 perch,1,periclesprinceoftyre,1608 departs,1,periclesprinceoftyre,1608 epitaphs,1,periclesprinceoftyre,1608 angel's,1,periclesprinceoftyre,1608 erst,1,periclesprinceoftyre,1608 spheres,1,periclesprinceoftyre,1608 boat,1,periclesprinceoftyre,1608 afflict,1,periclesprinceoftyre,1608 proclaims,1,periclesprinceoftyre,1608 history,1,periclesprinceoftyre,1608 Untied,1,periclesprinceoftyre,1608 forever,1,periclesprinceoftyre,1608 'Prince,1,periclesprinceoftyre,1608 returned,1,periclesprinceoftyre,1608 trebles,1,periclesprinceoftyre,1608 orbs,1,periclesprinceoftyre,1608 aged,1,periclesprinceoftyre,1608 reaching,1,periclesprinceoftyre,1608 clerks,1,periclesprinceoftyre,1608 sweet'st,1,periclesprinceoftyre,1608 fuerza,1,periclesprinceoftyre,1608 Persever,1,periclesprinceoftyre,1608 ourself,1,periclesprinceoftyre,1608 deity,1,periclesprinceoftyre,1608 Egyptian,1,periclesprinceoftyre,1608 sew,1,periclesprinceoftyre,1608 merry,1,periclesprinceoftyre,1608 whipping,1,periclesprinceoftyre,1608 carrying,1,periclesprinceoftyre,1608 traveller,1,periclesprinceoftyre,1608 artist,1,periclesprinceoftyre,1608 KING,1,periclesprinceoftyre,1608 Boult's,1,periclesprinceoftyre,1608 deceit,1,periclesprinceoftyre,1608 languish,1,periclesprinceoftyre,1608 chiefest,1,periclesprinceoftyre,1608 seams,1,periclesprinceoftyre,1608 she'ld,1,periclesprinceoftyre,1608 throne,1,periclesprinceoftyre,1608 suit,1,periclesprinceoftyre,1608 recollect,1,periclesprinceoftyre,1608 passport,1,periclesprinceoftyre,1608 scorn,1,periclesprinceoftyre,1608 nine,1,periclesprinceoftyre,1608 council,1,periclesprinceoftyre,1608 spe,1,periclesprinceoftyre,1608 Seem'd,1,periclesprinceoftyre,1608 thunders,1,periclesprinceoftyre,1608 knives,1,periclesprinceoftyre,1608 scorn'd,1,periclesprinceoftyre,1608 steps,1,periclesprinceoftyre,1608 experienced,1,periclesprinceoftyre,1608 records,1,periclesprinceoftyre,1608 lewdly,1,periclesprinceoftyre,1608 'e,1,periclesprinceoftyre,1608 subject,1,periclesprinceoftyre,1608 plenty,1,periclesprinceoftyre,1608 constraint,1,periclesprinceoftyre,1608 fashions,1,periclesprinceoftyre,1608 shipp'd,1,periclesprinceoftyre,1608 nips,1,periclesprinceoftyre,1608 lawfully,1,periclesprinceoftyre,1608 looking,1,periclesprinceoftyre,1608 apparent,1,periclesprinceoftyre,1608 wight,1,periclesprinceoftyre,1608 'T,1,periclesprinceoftyre,1608 kindle,1,periclesprinceoftyre,1608 scour,1,periclesprinceoftyre,1608 cropp'd,1,periclesprinceoftyre,1608 belonging,1,periclesprinceoftyre,1608 stern,1,periclesprinceoftyre,1608 it's,1,periclesprinceoftyre,1608 fringes,1,periclesprinceoftyre,1608 kindly,1,periclesprinceoftyre,1608 moreo'er,1,periclesprinceoftyre,1608 caulked,1,periclesprinceoftyre,1608 acquainted,1,periclesprinceoftyre,1608 testament,1,periclesprinceoftyre,1608 Disgorges,1,periclesprinceoftyre,1608 him's,1,periclesprinceoftyre,1608 sharpest,1,periclesprinceoftyre,1608 beloved,1,periclesprinceoftyre,1608 wages,1,periclesprinceoftyre,1608 wager,1,periclesprinceoftyre,1608 shipping,1,periclesprinceoftyre,1608 pitiful,1,periclesprinceoftyre,1608 commends,1,periclesprinceoftyre,1608 instruct,1,periclesprinceoftyre,1608 sets,1,periclesprinceoftyre,1608 war's,1,periclesprinceoftyre,1608 stuff,1,periclesprinceoftyre,1608 supposing,1,periclesprinceoftyre,1608 play'd,1,periclesprinceoftyre,1608 equivalent,1,periclesprinceoftyre,1608 nill,1,periclesprinceoftyre,1608 awful,1,periclesprinceoftyre,1608 amiss,1,periclesprinceoftyre,1608 savour,1,periclesprinceoftyre,1608 poverty,1,periclesprinceoftyre,1608 various,1,periclesprinceoftyre,1608 thieves,1,periclesprinceoftyre,1608 taught,1,periclesprinceoftyre,1608 reception,1,periclesprinceoftyre,1608 merit,1,periclesprinceoftyre,1608 Immortal,1,periclesprinceoftyre,1608 Leaps,1,periclesprinceoftyre,1608 O'erbear,1,periclesprinceoftyre,1608 embracements,1,periclesprinceoftyre,1608 braid,1,periclesprinceoftyre,1608 received,1,periclesprinceoftyre,1608 turning,1,periclesprinceoftyre,1608 briefness,1,periclesprinceoftyre,1608 points,1,periclesprinceoftyre,1608 ante,1,periclesprinceoftyre,1608 conceit,1,periclesprinceoftyre,1608 portly,1,periclesprinceoftyre,1608 dances,1,periclesprinceoftyre,1608 monster,1,periclesprinceoftyre,1608 snowball,1,periclesprinceoftyre,1608 reft,1,periclesprinceoftyre,1608 crime,1,periclesprinceoftyre,1608 cambric,1,periclesprinceoftyre,1608 Be't,1,periclesprinceoftyre,1608 unhallow'd,1,periclesprinceoftyre,1608 rhyme,1,periclesprinceoftyre,1608 give's,1,periclesprinceoftyre,1608 bore,1,periclesprinceoftyre,1608 moulded,1,periclesprinceoftyre,1608 figure,1,periclesprinceoftyre,1608 habit,1,periclesprinceoftyre,1608 seeds,1,periclesprinceoftyre,1608 direct,1,periclesprinceoftyre,1608 Turn,1,periclesprinceoftyre,1608 Destinies,1,periclesprinceoftyre,1608 fault,1,periclesprinceoftyre,1608 seaman's,1,periclesprinceoftyre,1608 belch'd,1,periclesprinceoftyre,1608 quake,1,periclesprinceoftyre,1608 shuns,1,periclesprinceoftyre,1608 runs,1,periclesprinceoftyre,1608 feat,1,periclesprinceoftyre,1608 loathed,1,periclesprinceoftyre,1608 Cause,1,periclesprinceoftyre,1608 relating,1,periclesprinceoftyre,1608 relate,1,periclesprinceoftyre,1608 stunk,1,periclesprinceoftyre,1608 terms,1,periclesprinceoftyre,1608 bots,1,periclesprinceoftyre,1608 seeks,1,periclesprinceoftyre,1608 tennis,1,periclesprinceoftyre,1608 taper,1,periclesprinceoftyre,1608 Wind,1,periclesprinceoftyre,1608 Manner'd,1,periclesprinceoftyre,1608 unable,1,periclesprinceoftyre,1608 household,1,periclesprinceoftyre,1608 cavaliers,1,periclesprinceoftyre,1608 relation,1,periclesprinceoftyre,1608 flatterer,1,periclesprinceoftyre,1608 drouth,1,periclesprinceoftyre,1608 priestess,1,periclesprinceoftyre,1608 thornier,1,periclesprinceoftyre,1608 sty,1,periclesprinceoftyre,1608 Whilst,1,periclesprinceoftyre,1608 cries,1,periclesprinceoftyre,1608 model,1,periclesprinceoftyre,1608 speechless,1,periclesprinceoftyre,1608 Report,1,periclesprinceoftyre,1608 sum,1,periclesprinceoftyre,1608 elder,1,periclesprinceoftyre,1608 brace,1,periclesprinceoftyre,1608 Kings,1,periclesprinceoftyre,1608 fearful,1,periclesprinceoftyre,1608 rust,1,periclesprinceoftyre,1608 feel,1,periclesprinceoftyre,1608 bowl,1,periclesprinceoftyre,1608 spaniel,1,periclesprinceoftyre,1608 feet,1,periclesprinceoftyre,1608 descent,1,periclesprinceoftyre,1608 'scapes,1,periclesprinceoftyre,1608 recovery,1,periclesprinceoftyre,1608 descend,1,periclesprinceoftyre,1608 swore,1,periclesprinceoftyre,1608 'scaped,1,periclesprinceoftyre,1608 blind,1,periclesprinceoftyre,1608 sword,1,periclesprinceoftyre,1608 Search,1,periclesprinceoftyre,1608 bases,1,periclesprinceoftyre,1608 brine,1,periclesprinceoftyre,1608 conceal,1,periclesprinceoftyre,1608 whisper,1,periclesprinceoftyre,1608 false,1,periclesprinceoftyre,1608 speaking,1,periclesprinceoftyre,1608 wine,1,periclesprinceoftyre,1608 prevent,1,periclesprinceoftyre,1608 Bestow,1,periclesprinceoftyre,1608 soldier,1,periclesprinceoftyre,1608 rejoices,1,periclesprinceoftyre,1608 language,1,periclesprinceoftyre,1608 monarchs,1,periclesprinceoftyre,1608 rend,1,periclesprinceoftyre,1608 rarely,1,periclesprinceoftyre,1608 wand,1,periclesprinceoftyre,1608 Blow,1,periclesprinceoftyre,1608 usurp,1,periclesprinceoftyre,1608 sailing,1,periclesprinceoftyre,1608 Please,1,periclesprinceoftyre,1608 steal,1,periclesprinceoftyre,1608 ruff,1,periclesprinceoftyre,1608 edge,1,periclesprinceoftyre,1608 inflame,1,periclesprinceoftyre,1608 strew'd,1,periclesprinceoftyre,1608 dearer,1,periclesprinceoftyre,1608 access,1,periclesprinceoftyre,1608 visor,1,periclesprinceoftyre,1608 'For,1,periclesprinceoftyre,1608 befit,1,periclesprinceoftyre,1608 Earlier,1,periclesprinceoftyre,1608 dies,1,periclesprinceoftyre,1608 malign,1,periclesprinceoftyre,1608 trifles,1,periclesprinceoftyre,1608 ruin,1,periclesprinceoftyre,1608 Recount,1,periclesprinceoftyre,1608 jetted,1,periclesprinceoftyre,1608 seest,1,periclesprinceoftyre,1608 accuse,1,periclesprinceoftyre,1608 clasp,1,periclesprinceoftyre,1608 Fetch,1,periclesprinceoftyre,1608 seem'd,1,periclesprinceoftyre,1608 bidding,1,periclesprinceoftyre,1608 warm,1,periclesprinceoftyre,1608 Nurses,1,periclesprinceoftyre,1608 distemperature,1,periclesprinceoftyre,1608 claps,1,periclesprinceoftyre,1608 South,1,periclesprinceoftyre,1608 Lying,1,periclesprinceoftyre,1608 cunning,1,periclesprinceoftyre,1608 office,1,periclesprinceoftyre,1608 dealt,1,periclesprinceoftyre,1608 join'd,1,periclesprinceoftyre,1608 steel,1,periclesprinceoftyre,1608 shrivell'd,1,periclesprinceoftyre,1608 Ladies,1,periclesprinceoftyre,1608 wast,1,periclesprinceoftyre,1608 extinguit,1,periclesprinceoftyre,1608 ruled,1,periclesprinceoftyre,1608 manly,1,periclesprinceoftyre,1608 boon,1,periclesprinceoftyre,1608 malleable,1,periclesprinceoftyre,1608 French,1,periclesprinceoftyre,1608 praised,1,periclesprinceoftyre,1608 coffin'd,1,periclesprinceoftyre,1608 colour,1,periclesprinceoftyre,1608 Follow,1,periclesprinceoftyre,1608 sojourner,1,periclesprinceoftyre,1608 Draw,1,periclesprinceoftyre,1608 hungry,1,periclesprinceoftyre,1608 objects,1,periclesprinceoftyre,1608 viper,1,periclesprinceoftyre,1608 eftsoons,1,periclesprinceoftyre,1608 deserves,1,periclesprinceoftyre,1608 conditions,1,periclesprinceoftyre,1608 unquiet,1,periclesprinceoftyre,1608 feather'd,1,periclesprinceoftyre,1608 sick,1,periclesprinceoftyre,1608 oven's,1,periclesprinceoftyre,1608 senses,1,periclesprinceoftyre,1608 wherefore,1,periclesprinceoftyre,1608 prince's,1,periclesprinceoftyre,1608 youths,1,periclesprinceoftyre,1608 Faith,1,periclesprinceoftyre,1608 bolins,1,periclesprinceoftyre,1608 thoughten,1,periclesprinceoftyre,1608 authority,1,periclesprinceoftyre,1608 minister'st,1,periclesprinceoftyre,1608 Et,1,periclesprinceoftyre,1608 aim'd,1,periclesprinceoftyre,1608 snores,1,periclesprinceoftyre,1608 bastards,1,periclesprinceoftyre,1608 I',1,periclesprinceoftyre,1608 solicit,1,periclesprinceoftyre,1608 razor,1,periclesprinceoftyre,1608 gratify,1,periclesprinceoftyre,1608 drown,1,periclesprinceoftyre,1608 Takes,1,periclesprinceoftyre,1608 Drew,1,periclesprinceoftyre,1608 wanting,1,periclesprinceoftyre,1608 While,1,periclesprinceoftyre,1608 overthrow,1,periclesprinceoftyre,1608 hac,1,periclesprinceoftyre,1608 Unheard,1,periclesprinceoftyre,1608 foes,1,periclesprinceoftyre,1608 Drawn,1,periclesprinceoftyre,1608 sign,1,periclesprinceoftyre,1608 refuse,1,periclesprinceoftyre,1608 discern,1,periclesprinceoftyre,1608 Sends,1,periclesprinceoftyre,1608 overflow,1,periclesprinceoftyre,1608 votaress,1,periclesprinceoftyre,1608 wondered,1,periclesprinceoftyre,1608 Celestial,1,periclesprinceoftyre,1608 exercise,1,periclesprinceoftyre,1608 pulse,1,periclesprinceoftyre,1608 flatters,1,periclesprinceoftyre,1608 pilot,1,periclesprinceoftyre,1608 Am,1,periclesprinceoftyre,1608 argentine,1,periclesprinceoftyre,1608 tonight,1,periclesprinceoftyre,1608 depend,1,periclesprinceoftyre,1608 hang'd,1,periclesprinceoftyre,1608 mutiny,1,periclesprinceoftyre,1608 chaste,1,periclesprinceoftyre,1608 protector,1,periclesprinceoftyre,1608 loathing,1,periclesprinceoftyre,1608 bow,1,periclesprinceoftyre,1608 bereave,1,periclesprinceoftyre,1608 strangers,1,periclesprinceoftyre,1608 deeds,1,periclesprinceoftyre,1608 unnatural,1,periclesprinceoftyre,1608 inventions,1,periclesprinceoftyre,1608 lance,1,periclesprinceoftyre,1608 Still,1,periclesprinceoftyre,1608 blown,1,periclesprinceoftyre,1608 smile,1,periclesprinceoftyre,1608 Having,1,periclesprinceoftyre,1608 pointed,1,periclesprinceoftyre,1608 inclined,1,periclesprinceoftyre,1608 furthermore,1,periclesprinceoftyre,1608 razed,1,periclesprinceoftyre,1608 bar,1,periclesprinceoftyre,1608 holidays,1,periclesprinceoftyre,1608 cruel,1,periclesprinceoftyre,1608 subscribe,1,periclesprinceoftyre,1608 Says,1,periclesprinceoftyre,1608 Ne,1,periclesprinceoftyre,1608 in's,1,periclesprinceoftyre,1608 gallery,1,periclesprinceoftyre,1608 star,1,periclesprinceoftyre,1608 exceed,1,periclesprinceoftyre,1608 denied,1,periclesprinceoftyre,1608 quaintly,1,periclesprinceoftyre,1608 brings,1,periclesprinceoftyre,1608 tales,1,periclesprinceoftyre,1608 pen,1,periclesprinceoftyre,1608 to't,1,periclesprinceoftyre,1608 receptacles,1,periclesprinceoftyre,1608 diligence,1,periclesprinceoftyre,1608 Proclaim,1,periclesprinceoftyre,1608 force,1,periclesprinceoftyre,1608 hid,1,periclesprinceoftyre,1608 finds,1,periclesprinceoftyre,1608 innocent,1,periclesprinceoftyre,1608 ashes,1,periclesprinceoftyre,1608 approve,1,periclesprinceoftyre,1608 bee,1,periclesprinceoftyre,1608 Ha',1,periclesprinceoftyre,1608 blest,1,periclesprinceoftyre,1608 strangely,1,periclesprinceoftyre,1608 preached,1,periclesprinceoftyre,1608 whistles,1,periclesprinceoftyre,1608 annual,1,periclesprinceoftyre,1608 than's,1,periclesprinceoftyre,1608 applaud,1,periclesprinceoftyre,1608 added,1,periclesprinceoftyre,1608 prince',1,periclesprinceoftyre,1608 pass,1,periclesprinceoftyre,1608 election,1,periclesprinceoftyre,1608 cracks,1,periclesprinceoftyre,1608 proud,1,periclesprinceoftyre,1608 stem,1,periclesprinceoftyre,1608 wedded,1,periclesprinceoftyre,1608 Is't,1,periclesprinceoftyre,1608 display'd,1,periclesprinceoftyre,1608 strew,1,periclesprinceoftyre,1608 countries,1,periclesprinceoftyre,1608 VI,1,periclesprinceoftyre,1608 prostitute,1,periclesprinceoftyre,1608 monstrous,1,periclesprinceoftyre,1608 tumbled,1,periclesprinceoftyre,1608 nobly,1,periclesprinceoftyre,1608 outlive,1,periclesprinceoftyre,1608 neglection,1,periclesprinceoftyre,1608 awakes,1,periclesprinceoftyre,1608 allure,1,periclesprinceoftyre,1608 corrupted,1,periclesprinceoftyre,1608 kiss'd,1,periclesprinceoftyre,1608 doubting,1,periclesprinceoftyre,1608 surprise,1,periclesprinceoftyre,1608 courteous,1,periclesprinceoftyre,1608 offered,1,periclesprinceoftyre,1608 trimm'd,1,periclesprinceoftyre,1608 plants,1,periclesprinceoftyre,1608 quenched,1,periclesprinceoftyre,1608 Thunder,1,periclesprinceoftyre,1608 minstrelsy,1,periclesprinceoftyre,1608 espies,1,periclesprinceoftyre,1608 weed,1,periclesprinceoftyre,1608 repeated,1,periclesprinceoftyre,1608 relapse,1,periclesprinceoftyre,1608 melius,1,periclesprinceoftyre,1608 proportion,1,periclesprinceoftyre,1608 stray,1,periclesprinceoftyre,1608 stirr'st,1,periclesprinceoftyre,1608 Embolden'd,1,periclesprinceoftyre,1608 untold,1,periclesprinceoftyre,1608 sooner,1,periclesprinceoftyre,1608 Consume,1,periclesprinceoftyre,1608 rebel,1,periclesprinceoftyre,1608 Tellus,1,periclesprinceoftyre,1608 strived,1,periclesprinceoftyre,1608 narrowly,1,periclesprinceoftyre,1608 Melt,1,periclesprinceoftyre,1608 whoso,1,periclesprinceoftyre,1608 dove,1,periclesprinceoftyre,1608 Sits,1,periclesprinceoftyre,1608 salute,1,periclesprinceoftyre,1608 difference,1,periclesprinceoftyre,1608 whereat,1,periclesprinceoftyre,1608 mischief's,1,periclesprinceoftyre,1608 burn,1,periclesprinceoftyre,1608 climber,1,periclesprinceoftyre,1608 sorts,1,periclesprinceoftyre,1608 cat,1,periclesprinceoftyre,1608 children,1,periclesprinceoftyre,1608 breathing,1,periclesprinceoftyre,1608 corpse,1,periclesprinceoftyre,1608 struck,1,periclesprinceoftyre,1608 ornament,1,periclesprinceoftyre,1608 fisting,1,periclesprinceoftyre,1608 sounds,1,periclesprinceoftyre,1608 accounts,1,periclesprinceoftyre,1608 tumbles,1,periclesprinceoftyre,1608 interrupt,1,periclesprinceoftyre,1608 tables,1,periclesprinceoftyre,1608 furnished,1,periclesprinceoftyre,1608 couch,1,periclesprinceoftyre,1608 learned,1,periclesprinceoftyre,1608 ordered,1,periclesprinceoftyre,1608 somewhat,1,periclesprinceoftyre,1608 wear,1,periclesprinceoftyre,1608 Behold,1,periclesprinceoftyre,1608 beyond,1,periclesprinceoftyre,1608 lamps,1,periclesprinceoftyre,1608 rudeliest,1,periclesprinceoftyre,1608 travails,1,periclesprinceoftyre,1608 shadow,1,periclesprinceoftyre,1608 buildings,1,periclesprinceoftyre,1608 Speak,1,periclesprinceoftyre,1608 satin,1,periclesprinceoftyre,1608 Born,1,periclesprinceoftyre,1608 rutting,1,periclesprinceoftyre,1608 Waste,1,periclesprinceoftyre,1608 gaps,1,periclesprinceoftyre,1608 meanest,1,periclesprinceoftyre,1608 block,1,periclesprinceoftyre,1608 a',1,periclesprinceoftyre,1608 Didst,1,periclesprinceoftyre,1608 gamester,1,periclesprinceoftyre,1608 eater,1,periclesprinceoftyre,1608 delay'd,1,periclesprinceoftyre,1608 conversant,1,periclesprinceoftyre,1608 prorogue,1,periclesprinceoftyre,1608 Spanish,1,periclesprinceoftyre,1608 finny,1,periclesprinceoftyre,1608 fifth,1,periclesprinceoftyre,1608 friendly,1,periclesprinceoftyre,1608 Sail,1,periclesprinceoftyre,1608 spectanda,1,periclesprinceoftyre,1608 conquest,1,periclesprinceoftyre,1608 pompae,1,periclesprinceoftyre,1608 testify,1,periclesprinceoftyre,1608 bud,1,periclesprinceoftyre,1608 beget,1,periclesprinceoftyre,1608 swift,1,periclesprinceoftyre,1608 vows,1,periclesprinceoftyre,1608 buy,1,periclesprinceoftyre,1608 hurting,1,periclesprinceoftyre,1608 Prest,1,periclesprinceoftyre,1608 Above,1,periclesprinceoftyre,1608 frowns,1,periclesprinceoftyre,1608 Disappears,1,periclesprinceoftyre,1608 staleness,1,periclesprinceoftyre,1608 O'er,1,periclesprinceoftyre,1608 steerage,1,periclesprinceoftyre,1608 Enough,1,periclesprinceoftyre,1608 admired,1,periclesprinceoftyre,1608 Whate'er,1,periclesprinceoftyre,1608 people's,1,periclesprinceoftyre,1608 priestly,1,periclesprinceoftyre,1608 doest,1,periclesprinceoftyre,1608 Cynthia,1,periclesprinceoftyre,1608 sins,1,periclesprinceoftyre,1608 stronger,1,periclesprinceoftyre,1608 pains,1,periclesprinceoftyre,1608 beseeching,1,periclesprinceoftyre,1608 gate,1,periclesprinceoftyre,1608 Vail,1,periclesprinceoftyre,1608 hourly,1,periclesprinceoftyre,1608 immortality,1,periclesprinceoftyre,1608 clasping,1,periclesprinceoftyre,1608 calling,1,periclesprinceoftyre,1608 gash,1,periclesprinceoftyre,1608 fulfil,1,periclesprinceoftyre,1608 immortal,1,periclesprinceoftyre,1608 AEsculapius,1,periclesprinceoftyre,1608 lately,1,periclesprinceoftyre,1608 resort,1,periclesprinceoftyre,1608 buxom,1,periclesprinceoftyre,1608 destitute,1,periclesprinceoftyre,1608 Seeks,1,periclesprinceoftyre,1608 clients,1,periclesprinceoftyre,1608 store,1,periclesprinceoftyre,1608 entertain,1,periclesprinceoftyre,1608 sanctity,1,periclesprinceoftyre,1608 coigns,1,periclesprinceoftyre,1608 pleasure's,1,periclesprinceoftyre,1608 stay'd,1,periclesprinceoftyre,1608 forgive,1,periclesprinceoftyre,1608 promised,1,periclesprinceoftyre,1608 lead's,1,periclesprinceoftyre,1608 whereto,1,periclesprinceoftyre,1608 mood,1,periclesprinceoftyre,1608 Nature's,1,periclesprinceoftyre,1608 confess,1,periclesprinceoftyre,1608 ha,1,periclesprinceoftyre,1608 betray,1,periclesprinceoftyre,1608 Cannot,1,periclesprinceoftyre,1608 Fortune,1,periclesprinceoftyre,1608 aim,1,periclesprinceoftyre,1608 Forty,1,periclesprinceoftyre,1608 artificial,1,periclesprinceoftyre,1608 blithe,1,periclesprinceoftyre,1608 sage,1,periclesprinceoftyre,1608 tyrant,1,periclesprinceoftyre,1608 mole,1,periclesprinceoftyre,1608 satisfy,1,periclesprinceoftyre,1608 Fear,1,periclesprinceoftyre,1608 doit,1,periclesprinceoftyre,1608 repent,1,periclesprinceoftyre,1608 fencing,1,periclesprinceoftyre,1608 faster,1,periclesprinceoftyre,1608 shouts,1,periclesprinceoftyre,1608 favour,1,periclesprinceoftyre,1608 needy,1,periclesprinceoftyre,1608 prevented,1,periclesprinceoftyre,1608 sable,1,periclesprinceoftyre,1608 beat,1,periclesprinceoftyre,1608 ooze,1,periclesprinceoftyre,1608 inhospitable,1,periclesprinceoftyre,1608 violence,1,periclesprinceoftyre,1608 wreck,1,periclesprinceoftyre,1608 needs,1,periclesprinceoftyre,1608 Blest,1,periclesprinceoftyre,1608 Advanced,1,periclesprinceoftyre,1608 succor,1,periclesprinceoftyre,1608 eo,1,periclesprinceoftyre,1608 Apollo,1,periclesprinceoftyre,1608 legs,1,periclesprinceoftyre,1608 handsome,1,periclesprinceoftyre,1608 weigh'd,1,periclesprinceoftyre,1608 driving,1,periclesprinceoftyre,1608 plays,1,periclesprinceoftyre,1608 unworthy,1,periclesprinceoftyre,1608 endurance,1,periclesprinceoftyre,1608 renowns,1,periclesprinceoftyre,1608 victory,1,periclesprinceoftyre,1608 worthily,1,periclesprinceoftyre,1608 strictly,1,periclesprinceoftyre,1608 lent,1,periclesprinceoftyre,1608 interim,1,periclesprinceoftyre,1608 time's,1,periclesprinceoftyre,1608 continual,1,periclesprinceoftyre,1608 Return,1,periclesprinceoftyre,1608 thrive,1,periclesprinceoftyre,1608 rhymes,1,periclesprinceoftyre,1608 pierces,1,periclesprinceoftyre,1608 boast,1,periclesprinceoftyre,1608 bounties,1,periclesprinceoftyre,1608 apex,1,periclesprinceoftyre,1608 'Here,1,periclesprinceoftyre,1608 nicely,1,periclesprinceoftyre,1608 List,1,periclesprinceoftyre,1608 makest,1,periclesprinceoftyre,1608 ay,1,periclesprinceoftyre,1608 stages,1,periclesprinceoftyre,1608 shed,1,periclesprinceoftyre,1608 pierced,1,periclesprinceoftyre,1608 caper,1,periclesprinceoftyre,1608 forget,1,periclesprinceoftyre,1608 'Lux,1,periclesprinceoftyre,1608 Blows,1,periclesprinceoftyre,1608 wench,1,periclesprinceoftyre,1608 bless'd,1,periclesprinceoftyre,1608 doom,1,periclesprinceoftyre,1608 correct,1,periclesprinceoftyre,1608 prosper,1,periclesprinceoftyre,1608 pageantry,1,periclesprinceoftyre,1608 abominable,1,periclesprinceoftyre,1608 cures,1,periclesprinceoftyre,1608 o'erflow'd,1,periclesprinceoftyre,1608 approbation,1,periclesprinceoftyre,1608 appearer,1,periclesprinceoftyre,1608 fears,1,periclesprinceoftyre,1608 bodies,1,periclesprinceoftyre,1608 beget'st,1,periclesprinceoftyre,1608 commendations,1,periclesprinceoftyre,1608 strain,1,periclesprinceoftyre,1608 crew,1,periclesprinceoftyre,1608 unspotted,1,periclesprinceoftyre,1608 utmost,1,periclesprinceoftyre,1608 complexions,1,periclesprinceoftyre,1608 Early,1,periclesprinceoftyre,1608 thankful,1,periclesprinceoftyre,1608 abide,1,periclesprinceoftyre,1608 lown,1,periclesprinceoftyre,1608 cowers,1,periclesprinceoftyre,1608 account,1,periclesprinceoftyre,1608 sometime,1,periclesprinceoftyre,1608 Commended,1,periclesprinceoftyre,1608 mingle,1,periclesprinceoftyre,1608 blackness,1,periclesprinceoftyre,1608 Slack,1,periclesprinceoftyre,1608 morn,1,periclesprinceoftyre,1608 Diseases,1,periclesprinceoftyre,1608 Begin,1,periclesprinceoftyre,1608 stature,1,periclesprinceoftyre,1608 lots,1,periclesprinceoftyre,1608 'wilt,1,periclesprinceoftyre,1608 puritan,1,periclesprinceoftyre,1608 glance,1,periclesprinceoftyre,1608 dumbs,1,periclesprinceoftyre,1608 ink,1,periclesprinceoftyre,1608 studied,1,periclesprinceoftyre,1608 settled,1,periclesprinceoftyre,1608 la,1,periclesprinceoftyre,1608 levy,1,periclesprinceoftyre,1608 Yea,1,periclesprinceoftyre,1608 listened,1,periclesprinceoftyre,1608 sweetness,1,periclesprinceoftyre,1608 achieved,1,periclesprinceoftyre,1608 dragons,1,periclesprinceoftyre,1608 diamond,1,periclesprinceoftyre,1608 Servants,1,periclesprinceoftyre,1608 wherein,1,periclesprinceoftyre,1608 spent,1,periclesprinceoftyre,1608 celebrate,1,periclesprinceoftyre,1608 potent,1,periclesprinceoftyre,1608 dispose,1,periclesprinceoftyre,1608 foreshow,1,periclesprinceoftyre,1608 all's,1,periclesprinceoftyre,1608 customers,1,periclesprinceoftyre,1608 dole,1,periclesprinceoftyre,1608 devil,1,periclesprinceoftyre,1608 knot,1,periclesprinceoftyre,1608 hostile,1,periclesprinceoftyre,1608 defy,1,periclesprinceoftyre,1608 feats,1,periclesprinceoftyre,1608 greater,1,periclesprinceoftyre,1608 bootless,1,periclesprinceoftyre,1608 nimble,1,periclesprinceoftyre,1608 knew,1,periclesprinceoftyre,1608 It's,1,periclesprinceoftyre,1608 supremacy,1,periclesprinceoftyre,1608 vegetives,1,periclesprinceoftyre,1608 Hesperides,1,periclesprinceoftyre,1608 haps,1,periclesprinceoftyre,1608 kings',1,periclesprinceoftyre,1608 composes,1,periclesprinceoftyre,1608 show'd,1,periclesprinceoftyre,1608 serious,1,periclesprinceoftyre,1608 tyrants,1,periclesprinceoftyre,1608 slack,1,periclesprinceoftyre,1608 Protest,1,periclesprinceoftyre,1608 thought'st,1,periclesprinceoftyre,1608 provexit,1,periclesprinceoftyre,1608 respite,1,periclesprinceoftyre,1608 untimely,1,periclesprinceoftyre,1608 journey,1,periclesprinceoftyre,1608 reads,1,periclesprinceoftyre,1608 summers,1,periclesprinceoftyre,1608 pure,1,periclesprinceoftyre,1608 men's,1,periclesprinceoftyre,1608 hot,1,periclesprinceoftyre,1608 load,1,periclesprinceoftyre,1608 westerly,1,periclesprinceoftyre,1608 Came,1,periclesprinceoftyre,1608 graves,1,periclesprinceoftyre,1608 Whence,1,periclesprinceoftyre,1608 hardly,1,periclesprinceoftyre,1608 Seeing,1,periclesprinceoftyre,1608 clime,1,periclesprinceoftyre,1608 oppression,1,periclesprinceoftyre,1608 personal,1,periclesprinceoftyre,1608 Amazement,1,periclesprinceoftyre,1608 descry,1,periclesprinceoftyre,1608 fierce,1,periclesprinceoftyre,1608 kills,1,periclesprinceoftyre,1608 Thought,1,periclesprinceoftyre,1608 hard,1,periclesprinceoftyre,1608 discourse,1,periclesprinceoftyre,1608 axe,1,periclesprinceoftyre,1608 attractions,1,periclesprinceoftyre,1608 Freely,1,periclesprinceoftyre,1608 humming,1,periclesprinceoftyre,1608 Dispersedly,1,periclesprinceoftyre,1608 field,1,periclesprinceoftyre,1608 frighted,1,periclesprinceoftyre,1608 pour'd,1,periclesprinceoftyre,1608 keen,1,periclesprinceoftyre,1608 remember'd,1,periclesprinceoftyre,1608 keel,1,periclesprinceoftyre,1608 soldier's,1,periclesprinceoftyre,1608 aye,1,periclesprinceoftyre,1608 reclined,1,periclesprinceoftyre,1608 hall,1,periclesprinceoftyre,1608 crow,1,periclesprinceoftyre,1608 cancel,1,periclesprinceoftyre,1608 peaceable,1,periclesprinceoftyre,1608 Cleon's,1,periclesprinceoftyre,1608 dern,1,periclesprinceoftyre,1608 inflaming,1,periclesprinceoftyre,1608 text,1,periclesprinceoftyre,1608 basest,1,periclesprinceoftyre,1608 submit,1,periclesprinceoftyre,1608 parent's,1,periclesprinceoftyre,1608 burying,1,periclesprinceoftyre,1608 senate,1,periclesprinceoftyre,1608 killen,1,periclesprinceoftyre,1608 perform'd,1,periclesprinceoftyre,1608 natural,1,periclesprinceoftyre,1608 spur,1,periclesprinceoftyre,1608 Happy,1,periclesprinceoftyre,1608 Courage,1,periclesprinceoftyre,1608 interpret,1,periclesprinceoftyre,1608 expend,1,periclesprinceoftyre,1608 strings,1,periclesprinceoftyre,1608 Riding,1,periclesprinceoftyre,1608 re,1,periclesprinceoftyre,1608 t',1,periclesprinceoftyre,1608 quo,1,periclesprinceoftyre,1608 nobleness,1,periclesprinceoftyre,1608 shut,1,periclesprinceoftyre,1608 Losing,1,periclesprinceoftyre,1608 que,1,periclesprinceoftyre,1608 lengthen,1,periclesprinceoftyre,1608 plain,1,periclesprinceoftyre,1608 surges,1,periclesprinceoftyre,1608 ladder,1,periclesprinceoftyre,1608 MARINA's,1,periclesprinceoftyre,1608 hams,1,periclesprinceoftyre,1608 descried,1,periclesprinceoftyre,1608 sweetest,1,periclesprinceoftyre,1608 countervail,1,periclesprinceoftyre,1608 excuse,1,periclesprinceoftyre,1608 Hum,1,periclesprinceoftyre,1608 acquaintance,1,periclesprinceoftyre,1608 Empty,1,periclesprinceoftyre,1608 virginal,1,periclesprinceoftyre,1608 Under,1,periclesprinceoftyre,1608 page,1,periclesprinceoftyre,1608 disfurnish,1,periclesprinceoftyre,1608 vengeance,1,periclesprinceoftyre,1608 oped,1,periclesprinceoftyre,1608 Gripe,1,periclesprinceoftyre,1608 refused,1,periclesprinceoftyre,1608 form,1,periclesprinceoftyre,1608 Pure,1,periclesprinceoftyre,1608 kingdoms,1,periclesprinceoftyre,1608 subject's,1,periclesprinceoftyre,1608 hangs,1,periclesprinceoftyre,1608 pained'st,1,periclesprinceoftyre,1608 paid,1,periclesprinceoftyre,1608 fore,1,periclesprinceoftyre,1608 gins,1,periclesprinceoftyre,1608 mock,1,periclesprinceoftyre,1608 haven,1,periclesprinceoftyre,1608 frown,1,periclesprinceoftyre,1608 Prepare,1,periclesprinceoftyre,1608 minute's,1,periclesprinceoftyre,1608 scatter,1,periclesprinceoftyre,1608 strive,1,periclesprinceoftyre,1608 shakes,1,periclesprinceoftyre,1608 Paphos,1,periclesprinceoftyre,1608 stones,1,periclesprinceoftyre,1608 pace,1,periclesprinceoftyre,1608 hate,1,periclesprinceoftyre,1608 Musings,1,periclesprinceoftyre,1608 fear'd,1,periclesprinceoftyre,1608 dismal,1,periclesprinceoftyre,1608 dreadful,1,periclesprinceoftyre,1608 rogue,1,periclesprinceoftyre,1608 yielded,1,periclesprinceoftyre,1608 awe,1,periclesprinceoftyre,1608 faithful,1,periclesprinceoftyre,1608 Hymen,1,periclesprinceoftyre,1608 moan,1,periclesprinceoftyre,1608 fiend,1,periclesprinceoftyre,1608 flatter'd,1,periclesprinceoftyre,1608 Bereft,1,periclesprinceoftyre,1608 napkins,1,periclesprinceoftyre,1608 prepared,1,periclesprinceoftyre,1608 serpents,1,periclesprinceoftyre,1608 revenge,1,periclesprinceoftyre,1608 Wears,1,periclesprinceoftyre,1608 renowned,1,periclesprinceoftyre,1608 courser,1,periclesprinceoftyre,1608 push,1,periclesprinceoftyre,1608 scarcely,1,periclesprinceoftyre,1608 maiden,1,periclesprinceoftyre,1608 malkin,1,periclesprinceoftyre,1608 fancies,1,periclesprinceoftyre,1608 rightly,1,periclesprinceoftyre,1608 error,1,periclesprinceoftyre,1608 begets,1,periclesprinceoftyre,1608 Care,1,periclesprinceoftyre,1608 Hast,1,periclesprinceoftyre,1608 casualties,1,periclesprinceoftyre,1608 open'd,1,periclesprinceoftyre,1608 chance,1,periclesprinceoftyre,1608 Sparta,1,periclesprinceoftyre,1608 banquet,1,periclesprinceoftyre,1608 ploughed,1,periclesprinceoftyre,1608 inquire,1,periclesprinceoftyre,1608 theirs,1,periclesprinceoftyre,1608 Breathes,1,periclesprinceoftyre,1608 cleared,1,periclesprinceoftyre,1608 fee,1,periclesprinceoftyre,1608 hits,1,periclesprinceoftyre,1608 washed,1,periclesprinceoftyre,1608 smells,1,periclesprinceoftyre,1608 partakes,1,periclesprinceoftyre,1608 sweetly,1,periclesprinceoftyre,1608 Contend,1,periclesprinceoftyre,1608 show'dst,1,periclesprinceoftyre,1608 wooing,1,periclesprinceoftyre,1608 conversation,1,periclesprinceoftyre,1608 longing,1,periclesprinceoftyre,1608 demanded,1,periclesprinceoftyre,1608 dooms,1,periclesprinceoftyre,1608 baboon,1,periclesprinceoftyre,1608 purple,1,periclesprinceoftyre,1608 hazard,1,periclesprinceoftyre,1608 gain'd,1,periclesprinceoftyre,1608 willingly,1,periclesprinceoftyre,1608 new,1,periclesprinceoftyre,1608 strongest,1,periclesprinceoftyre,1608 moves,1,periclesprinceoftyre,1608 capital,1,periclesprinceoftyre,1608 nobles,1,periclesprinceoftyre,1608 wreck'd,1,periclesprinceoftyre,1608 execute,1,periclesprinceoftyre,1608 Leaves,1,periclesprinceoftyre,1608 canvas,1,periclesprinceoftyre,1608 Shows,1,periclesprinceoftyre,1608 roof,1,periclesprinceoftyre,1608 exposition,1,periclesprinceoftyre,1608 delicate,1,periclesprinceoftyre,1608 fitly,1,periclesprinceoftyre,1608 restored,1,periclesprinceoftyre,1608 leap,1,periclesprinceoftyre,1608 breech,1,periclesprinceoftyre,1608 whispers,1,periclesprinceoftyre,1608 washes,1,periclesprinceoftyre,1608 tried,1,periclesprinceoftyre,1608 perceived,1,periclesprinceoftyre,1608 FISHERMEN,1,periclesprinceoftyre,1608 mask'd,1,periclesprinceoftyre,1608 belfry,1,periclesprinceoftyre,1608 main,1,periclesprinceoftyre,1608 surgeon,1,periclesprinceoftyre,1608 moved,1,periclesprinceoftyre,1608 freeze,1,periclesprinceoftyre,1608 consider'd,1,periclesprinceoftyre,1608 nay,1,periclesprinceoftyre,1608 suffrages,1,periclesprinceoftyre,1608 glow,1,periclesprinceoftyre,1608 sleided,1,periclesprinceoftyre,1608 asks,1,periclesprinceoftyre,1608 said'st,1,periclesprinceoftyre,1608 Canst,1,periclesprinceoftyre,1608 bounced,1,periclesprinceoftyre,1608 silence,1,periclesprinceoftyre,1608 calm'd,1,periclesprinceoftyre,1608 scape,1,periclesprinceoftyre,1608 benign,1,periclesprinceoftyre,1608 distance,1,periclesprinceoftyre,1608 fides,1,periclesprinceoftyre,1608 built,1,periclesprinceoftyre,1608 'Gainst,1,periclesprinceoftyre,1608 unknown,1,periclesprinceoftyre,1608 repose,1,periclesprinceoftyre,1608 fourth,1,periclesprinceoftyre,1608 omit,1,periclesprinceoftyre,1608 rooted,1,periclesprinceoftyre,1608 Half,1,periclesprinceoftyre,1608 square,1,periclesprinceoftyre,1608 Alter,1,periclesprinceoftyre,1608 apparell'd,1,periclesprinceoftyre,1608 proceed,1,periclesprinceoftyre,1608 indeed's,1,periclesprinceoftyre,1608 scroll,1,periclesprinceoftyre,1608 Bethought,1,periclesprinceoftyre,1608 conquer'd,1,periclesprinceoftyre,1608 stirrest,1,periclesprinceoftyre,1608 gently,1,periclesprinceoftyre,1608 favourers,1,periclesprinceoftyre,1608 now's,1,periclesprinceoftyre,1608 gosling,1,periclesprinceoftyre,1608 givest,1,periclesprinceoftyre,1608 Hight,1,periclesprinceoftyre,1608 Bad,1,periclesprinceoftyre,1608 professest,1,periclesprinceoftyre,1608 Was't,1,periclesprinceoftyre,1608 majesty,1,periclesprinceoftyre,1608 cloths,1,periclesprinceoftyre,1608 riots,1,periclesprinceoftyre,1608 rout,1,periclesprinceoftyre,1608 superstition,1,periclesprinceoftyre,1608 tender,1,periclesprinceoftyre,1608 things,1,periclesprinceoftyre,1608 lading's,1,periclesprinceoftyre,1608 Copp'd,1,periclesprinceoftyre,1608 blurted,1,periclesprinceoftyre,1608 darks,1,periclesprinceoftyre,1608 mite,1,periclesprinceoftyre,1608 framing,1,periclesprinceoftyre,1608 Scorning,1,periclesprinceoftyre,1608 hastes,1,periclesprinceoftyre,1608 year,1,periclesprinceoftyre,1608 Sleeps,1,periclesprinceoftyre,1608 glory's,1,periclesprinceoftyre,1608 banners,1,periclesprinceoftyre,1608 Alack,1,periclesprinceoftyre,1608 belching,1,periclesprinceoftyre,1608 observed,1,periclesprinceoftyre,1608 bottom,1,periclesprinceoftyre,1608 pregnant,1,periclesprinceoftyre,1608 hies,1,periclesprinceoftyre,1608 treason's,1,periclesprinceoftyre,1608 bellows,1,periclesprinceoftyre,1608 mock'd,1,periclesprinceoftyre,1608 wandering,1,periclesprinceoftyre,1608 Perform'd,1,periclesprinceoftyre,1608 Down,1,periclesprinceoftyre,1608 substance,1,periclesprinceoftyre,1608 adventure,1,periclesprinceoftyre,1608 liable,1,periclesprinceoftyre,1608 borne,1,periclesprinceoftyre,1608 sustenance,1,periclesprinceoftyre,1608 Embrace,1,periclesprinceoftyre,1608 nun,1,periclesprinceoftyre,1608 mount,1,periclesprinceoftyre,1608 affections,1,periclesprinceoftyre,1608 thirsty,1,periclesprinceoftyre,1608 basket,1,periclesprinceoftyre,1608 quickly,1,periclesprinceoftyre,1608 you'ld,1,periclesprinceoftyre,1608 Inflame,1,periclesprinceoftyre,1608 misers,1,periclesprinceoftyre,1608 o'erlook,1,periclesprinceoftyre,1608 begging,1,periclesprinceoftyre,1608 Royal,1,periclesprinceoftyre,1608 Further,1,periclesprinceoftyre,1608 escapen,1,periclesprinceoftyre,1608 fairy,1,periclesprinceoftyre,1608 parting,1,periclesprinceoftyre,1608 odious,1,periclesprinceoftyre,1608 springs,1,periclesprinceoftyre,1608 Set,1,periclesprinceoftyre,1608 unhappy,1,periclesprinceoftyre,1608 evermore,1,periclesprinceoftyre,1608 dares,1,periclesprinceoftyre,1608 shall's,1,periclesprinceoftyre,1608 famous,1,periclesprinceoftyre,1608 mouse,1,periclesprinceoftyre,1608 wonder'd,1,periclesprinceoftyre,1608 bargained,1,periclesprinceoftyre,1608 leaving,1,periclesprinceoftyre,1608 vanquish'd,1,periclesprinceoftyre,1608 Loud,1,periclesprinceoftyre,1608 groves,1,periclesprinceoftyre,1608 question,1,periclesprinceoftyre,1608 Performance,1,periclesprinceoftyre,1608 Rarest,1,periclesprinceoftyre,1608 ensuing,1,periclesprinceoftyre,1608 unprovided,1,periclesprinceoftyre,1608 recount,1,periclesprinceoftyre,1608 chill,1,periclesprinceoftyre,1608 claspings,1,periclesprinceoftyre,1608 chime,1,periclesprinceoftyre,1608 err,1,periclesprinceoftyre,1608 sinn'd,1,periclesprinceoftyre,1608 scan,1,periclesprinceoftyre,1608 paced,1,periclesprinceoftyre,1608 lodge,1,periclesprinceoftyre,1608 'He,1,periclesprinceoftyre,1608 'Ha,1,periclesprinceoftyre,1608 leaves,1,periclesprinceoftyre,1608 entreasured,1,periclesprinceoftyre,1608 benison,1,periclesprinceoftyre,1608 milk,1,periclesprinceoftyre,1608 industry,1,periclesprinceoftyre,1608 farer,1,periclesprinceoftyre,1608 yellows,1,periclesprinceoftyre,1608 disdain'd,1,periclesprinceoftyre,1608 'In,1,periclesprinceoftyre,1608 teeth,1,periclesprinceoftyre,1608 vestals,1,periclesprinceoftyre,1608 prosperities,1,periclesprinceoftyre,1608 conclusion,1,periclesprinceoftyre,1608 knave,1,periclesprinceoftyre,1608 filth,1,periclesprinceoftyre,1608 beautify,1,periclesprinceoftyre,1608 Soon,1,periclesprinceoftyre,1608 Presumes,1,periclesprinceoftyre,1608 towers,1,periclesprinceoftyre,1608 Mark'd,1,periclesprinceoftyre,1608 smother,1,periclesprinceoftyre,1608 already,1,periclesprinceoftyre,1608 tackle,1,periclesprinceoftyre,1608 blush,1,periclesprinceoftyre,1608 keeper,1,periclesprinceoftyre,1608 didst,1,periclesprinceoftyre,1608 archer,1,periclesprinceoftyre,1608 nursed,1,periclesprinceoftyre,1608 dowry,1,periclesprinceoftyre,1608 shipwrecked,1,periclesprinceoftyre,1608 bloody,1,periclesprinceoftyre,1608 lowest,1,periclesprinceoftyre,1608 reading,1,periclesprinceoftyre,1608 'gainst,1,periclesprinceoftyre,1608 midwife,1,periclesprinceoftyre,1608 sovereign's,1,periclesprinceoftyre,1608 skip,1,periclesprinceoftyre,1608 untutor'd,1,periclesprinceoftyre,1608 mast,1,periclesprinceoftyre,1608 resorters,1,periclesprinceoftyre,1608 chief,1,periclesprinceoftyre,1608 coward,1,periclesprinceoftyre,1608 son's,1,periclesprinceoftyre,1608 knows,1,periclesprinceoftyre,1608 mart,1,periclesprinceoftyre,1608 derivation,1,periclesprinceoftyre,1608 comet,1,periclesprinceoftyre,1608 thick,1,periclesprinceoftyre,1608 Any,1,periclesprinceoftyre,1608 issue,1,periclesprinceoftyre,1608 attribute,1,periclesprinceoftyre,1608 Becoming,1,periclesprinceoftyre,1608 Macedon,1,periclesprinceoftyre,1608 landing,1,periclesprinceoftyre,1608 Trojan,1,periclesprinceoftyre,1608 quoth,1,periclesprinceoftyre,1608 'Keep,1,periclesprinceoftyre,1608 ungentle,1,periclesprinceoftyre,1608 woo,1,periclesprinceoftyre,1608 Joy,1,periclesprinceoftyre,1608 flatter,1,periclesprinceoftyre,1608 inch,1,periclesprinceoftyre,1608 craver,1,periclesprinceoftyre,1608 'Go,1,periclesprinceoftyre,1608 painful,1,periclesprinceoftyre,1608 martyrs,1,periclesprinceoftyre,1608 starves,1,periclesprinceoftyre,1608 beside,1,periclesprinceoftyre,1608 dropping,1,periclesprinceoftyre,1608 thief,1,periclesprinceoftyre,1608 heaven's,1,periclesprinceoftyre,1608 seal'd,1,periclesprinceoftyre,1608 deeps,1,periclesprinceoftyre,1608 peremptory,1,periclesprinceoftyre,1608 hypocrite,1,periclesprinceoftyre,1608 'Sic,1,periclesprinceoftyre,1608 bleak,1,periclesprinceoftyre,1608 Murder's,1,periclesprinceoftyre,1608 blacker,1,periclesprinceoftyre,1608 parent,1,periclesprinceoftyre,1608 borrow'd,1,periclesprinceoftyre,1608 smoke,1,periclesprinceoftyre,1608 blither,1,periclesprinceoftyre,1608 infusions,1,periclesprinceoftyre,1608 honouring,1,periclesprinceoftyre,1608 'She,1,periclesprinceoftyre,1608 adventures,1,periclesprinceoftyre,1608 Priapus,1,periclesprinceoftyre,1608 principals,1,periclesprinceoftyre,1608 disguised,1,periclesprinceoftyre,1608 Perhaps,1,periclesprinceoftyre,1608 blasted,1,periclesprinceoftyre,1608 reprovest,1,periclesprinceoftyre,1608 wet,1,periclesprinceoftyre,1608 desired,1,periclesprinceoftyre,1608 touchstone,1,periclesprinceoftyre,1608 Found,1,periclesprinceoftyre,1608 banks,1,periclesprinceoftyre,1608 Thetis',1,periclesprinceoftyre,1608 Built,1,periclesprinceoftyre,1608 pause,1,periclesprinceoftyre,1608 Build,1,periclesprinceoftyre,1608 nousle,1,periclesprinceoftyre,1608 maids,1,periclesprinceoftyre,1608 desolation,1,periclesprinceoftyre,1608 stink,1,periclesprinceoftyre,1608 Pages,1,periclesprinceoftyre,1608 dignifies,1,periclesprinceoftyre,1608 servitude,1,periclesprinceoftyre,1608 stint,1,periclesprinceoftyre,1608 Thetis,1,periclesprinceoftyre,1608 sale,1,periclesprinceoftyre,1608 stalk,1,periclesprinceoftyre,1608 former,1,periclesprinceoftyre,1608 blushes,1,periclesprinceoftyre,1608 dishonour,1,periclesprinceoftyre,1608 safely,1,periclesprinceoftyre,1608 wis,1,periclesprinceoftyre,1608 wit,1,periclesprinceoftyre,1608 experience,1,periclesprinceoftyre,1608 Deep,1,periclesprinceoftyre,1608 liberties,1,periclesprinceoftyre,1608 mihi,1,periclesprinceoftyre,1608 roast,1,periclesprinceoftyre,1608 'Me,1,periclesprinceoftyre,1608 pooped,1,periclesprinceoftyre,1608 odour,1,periclesprinceoftyre,1608 Taking,1,periclesprinceoftyre,1608 curb,1,periclesprinceoftyre,1608 relieved,1,periclesprinceoftyre,1608 bawdy,1,periclesprinceoftyre,1608 pretence,1,periclesprinceoftyre,1608 knife,1,periclesprinceoftyre,1608 Moreover,1,periclesprinceoftyre,1608 thrived,1,periclesprinceoftyre,1608 Blush,1,periclesprinceoftyre,1608 loving,1,periclesprinceoftyre,1608 err'd,1,periclesprinceoftyre,1608 prime,1,periclesprinceoftyre,1608 devour'd,1,periclesprinceoftyre,1608 gat,1,periclesprinceoftyre,1608 tractable,1,periclesprinceoftyre,1608 measures,1,periclesprinceoftyre,1608 galling,1,periclesprinceoftyre,1608 abundance,1,periclesprinceoftyre,1608 recover'd,1,periclesprinceoftyre,1608 closet,1,periclesprinceoftyre,1608 recover,1,periclesprinceoftyre,1608 bestow'd,1,periclesprinceoftyre,1608 blues,1,periclesprinceoftyre,1608 cheapen,1,periclesprinceoftyre,1608 Say,1,periclesprinceoftyre,1608 Peaceful,1,periclesprinceoftyre,1608 questionless,1,periclesprinceoftyre,1608 flight,1,periclesprinceoftyre,1608 talons,1,periclesprinceoftyre,1608 merit's,1,periclesprinceoftyre,1608 ostent,1,periclesprinceoftyre,1608 death's,1,periclesprinceoftyre,1608 niece,1,periclesprinceoftyre,1608 speeding,1,periclesprinceoftyre,1608 flint,1,periclesprinceoftyre,1608 licentious,1,periclesprinceoftyre,1608 certainly,1,periclesprinceoftyre,1608 thwarting,1,periclesprinceoftyre,1608 champion,1,periclesprinceoftyre,1608 vow'd,1,periclesprinceoftyre,1608 Think,1,periclesprinceoftyre,1608 Motion,1,periclesprinceoftyre,1608 earnest,1,periclesprinceoftyre,1608 stage,1,periclesprinceoftyre,1608 flourish,1,periclesprinceoftyre,1608 Throw,1,periclesprinceoftyre,1608 staff,1,periclesprinceoftyre,1608 spacious,1,periclesprinceoftyre,1608 duty,1,periclesprinceoftyre,1608 able,1,periclesprinceoftyre,1608 prevail,1,periclesprinceoftyre,1608 drives,1,periclesprinceoftyre,1608 balm'd,1,periclesprinceoftyre,1608 barbarous,1,periclesprinceoftyre,1608 Hangs,1,periclesprinceoftyre,1608 fancy's,1,periclesprinceoftyre,1608 growing,1,periclesprinceoftyre,1608 rite,1,periclesprinceoftyre,1608 bleed,1,periclesprinceoftyre,1608 opposing,1,periclesprinceoftyre,1608 fervor,1,periclesprinceoftyre,1608 arts,1,periclesprinceoftyre,1608 arrow,1,periclesprinceoftyre,1608 assure,1,periclesprinceoftyre,1608 Extremity,1,periclesprinceoftyre,1608 bereft,1,periclesprinceoftyre,1608 Veroles,1,periclesprinceoftyre,1608 vessels,1,periclesprinceoftyre,1608 proceeding,1,periclesprinceoftyre,1608 price,1,periclesprinceoftyre,1608 warmth,1,periclesprinceoftyre,1608 women's,1,periclesprinceoftyre,1608 Poison,1,periclesprinceoftyre,1608 Fourth,1,periclesprinceoftyre,1608 breakfast,1,periclesprinceoftyre,1608 Three,1,periclesprinceoftyre,1608 belly,1,periclesprinceoftyre,1608 Throws,1,periclesprinceoftyre,1608 Thrown,1,periclesprinceoftyre,1608 Monsieur,1,periclesprinceoftyre,1608 Unclasp,1,periclesprinceoftyre,1608 caught,1,periclesprinceoftyre,1608 appliance,1,periclesprinceoftyre,1608 hail,1,periclesprinceoftyre,1608 flags,1,periclesprinceoftyre,1608 Twixt,1,periclesprinceoftyre,1608 adored,1,periclesprinceoftyre,1608 betook,1,periclesprinceoftyre,1608 Sixth,1,periclesprinceoftyre,1608 discover'd,1,periclesprinceoftyre,1608 familiar,1,periclesprinceoftyre,1608 requite,1,periclesprinceoftyre,1608 fact,1,periclesprinceoftyre,1608 raging,1,periclesprinceoftyre,1608 husbandry,1,periclesprinceoftyre,1608 breadth,1,periclesprinceoftyre,1608 drone,1,periclesprinceoftyre,1608 darken,1,periclesprinceoftyre,1608 thankfulness,1,periclesprinceoftyre,1608 Bid,1,periclesprinceoftyre,1608 Heaven,1,periclesprinceoftyre,1608 Cupid's,1,periclesprinceoftyre,1608 morsel,1,periclesprinceoftyre,1608 edict,1,periclesprinceoftyre,1608 graff,1,periclesprinceoftyre,1608 conference,1,periclesprinceoftyre,1608 marry,1,periclesprinceoftyre,1608 reports,1,periclesprinceoftyre,1608 rotten,1,periclesprinceoftyre,1608 speken,1,periclesprinceoftyre,1608 Threw,1,periclesprinceoftyre,1608 tilting,1,periclesprinceoftyre,1608 require,1,periclesprinceoftyre,1608 foreign,1,periclesprinceoftyre,1608 Spaniard's,1,periclesprinceoftyre,1608 Sharp,1,periclesprinceoftyre,1608 labour'd,1,periclesprinceoftyre,1608 lute,1,periclesprinceoftyre,1608 Virgins,1,periclesprinceoftyre,1608 nets,1,periclesprinceoftyre,1608 inclination,1,periclesprinceoftyre,1608 compass,1,periclesprinceoftyre,1608 owe,1,periclesprinceoftyre,1608 wife's,1,periclesprinceoftyre,1608 rain,1,periclesprinceoftyre,1608 clip,1,periclesprinceoftyre,1608 whistle,1,periclesprinceoftyre,1608 minister'd,1,periclesprinceoftyre,1608 yoke,1,periclesprinceoftyre,1608 godlike,1,periclesprinceoftyre,1608 touching,1,periclesprinceoftyre,1608 rapture,1,periclesprinceoftyre,1608 harvest,1,periclesprinceoftyre,1608 fry,1,periclesprinceoftyre,1608 serves,1,periclesprinceoftyre,1608 Forbear,1,periclesprinceoftyre,1608 ope,1,periclesprinceoftyre,1608 authors,1,periclesprinceoftyre,1608 Noble,1,periclesprinceoftyre,1608 followers,1,periclesprinceoftyre,1608 cover,1,periclesprinceoftyre,1608 fill'd,1,periclesprinceoftyre,1608 Whispers,1,periclesprinceoftyre,1608 heirs,1,periclesprinceoftyre,1608 wholesome,1,periclesprinceoftyre,1608 enjoineth,1,periclesprinceoftyre,1608 dispatch'd,1,periclesprinceoftyre,1608 evil,1,periclesprinceoftyre,1608 they've,1,periclesprinceoftyre,1608 character,1,periclesprinceoftyre,1608 cloth,1,periclesprinceoftyre,1608 Thither,1,periclesprinceoftyre,1608 miracle,1,periclesprinceoftyre,1608 quest,1,periclesprinceoftyre,1608 utterly,1,periclesprinceoftyre,1608 article,1,periclesprinceoftyre,1608 hitherward,1,periclesprinceoftyre,1608 cloud,1,periclesprinceoftyre,1608 caterpillar,1,periclesprinceoftyre,1608 Shake,1,periclesprinceoftyre,1608 grant,1,periclesprinceoftyre,1608 Graces,1,periclesprinceoftyre,1608 lasting,1,periclesprinceoftyre,1608 Call'd,1,periclesprinceoftyre,1608 Decrease,1,periclesprinceoftyre,1608 race,1,periclesprinceoftyre,1608 ember,1,periclesprinceoftyre,1608 duck,1,periclesprinceoftyre,1608 wit's,1,periclesprinceoftyre,1608 darlings,1,periclesprinceoftyre,1608 tune,1,periclesprinceoftyre,1608 deafening,1,periclesprinceoftyre,1608 company,1,periclesprinceoftyre,1608 roses,1,periclesprinceoftyre,1608 disturbances,1,periclesprinceoftyre,1608 west,1,periclesprinceoftyre,1608 eves,1,periclesprinceoftyre,1608 ride,1,periclesprinceoftyre,1608 dancing,1,periclesprinceoftyre,1608 fie,1,periclesprinceoftyre,1608 'em,1,periclesprinceoftyre,1608 'Quod,1,periclesprinceoftyre,1608 endeavour,1,periclesprinceoftyre,1608 flame,1,periclesprinceoftyre,1608 Sorrow,1,periclesprinceoftyre,1608 Mark,1,periclesprinceoftyre,1608 officer,1,periclesprinceoftyre,1608 offices,1,periclesprinceoftyre,1608 Shook,1,periclesprinceoftyre,1608 gazing,1,periclesprinceoftyre,1608 fine,1,periclesprinceoftyre,1608 swallow'd,1,periclesprinceoftyre,1608 Opinion's,1,periclesprinceoftyre,1608 Welcomed,1,periclesprinceoftyre,1608 Attend,1,periclesprinceoftyre,1608 cherry,1,periclesprinceoftyre,1608 Recall,1,periclesprinceoftyre,1608 savage,1,periclesprinceoftyre,1608 punish'd,1,periclesprinceoftyre,1608 assume,1,periclesprinceoftyre,1608 Imagine,1,periclesprinceoftyre,1608 'Piu,1,periclesprinceoftyre,1608 bark,1,periclesprinceoftyre,1608 rebuke,1,periclesprinceoftyre,1608 Fare,1,periclesprinceoftyre,1608 contends,1,periclesprinceoftyre,1608 poison'd,1,periclesprinceoftyre,1608 ales,1,periclesprinceoftyre,1608 defiling,1,periclesprinceoftyre,1608 linen,1,periclesprinceoftyre,1608 smooth,1,periclesprinceoftyre,1608 wived,1,periclesprinceoftyre,1608 expounded,1,periclesprinceoftyre,1608 mates,1,periclesprinceoftyre,1608 Reveal,1,periclesprinceoftyre,1608 scenes,1,periclesprinceoftyre,1608 tyrants',1,periclesprinceoftyre,1608 wives,1,periclesprinceoftyre,1608 subtlety,1,periclesprinceoftyre,1608 turbulent,1,periclesprinceoftyre,1608 lived,1,periclesprinceoftyre,1608 'Good,1,periclesprinceoftyre,1608 hearkened,1,periclesprinceoftyre,1608 censure,1,periclesprinceoftyre,1608 base,1,periclesprinceoftyre,1608 grisly,1,periclesprinceoftyre,1608 unlicensed,1,periclesprinceoftyre,1608 deliver'd,1,periclesprinceoftyre,1608 fate,1,periclesprinceoftyre,1608 flamed,1,periclesprinceoftyre,1608 boatswain,1,periclesprinceoftyre,1608 vails,1,periclesprinceoftyre,1608 unlaid,1,periclesprinceoftyre,1608 hallow'd,1,periclesprinceoftyre,1608 tame,1,periclesprinceoftyre,1608 subjection,1,periclesprinceoftyre,1608 secrets,1,periclesprinceoftyre,1608 names,1,periclesprinceoftyre,1608 will'd,1,periclesprinceoftyre,1608 alit,1,periclesprinceoftyre,1608 prefer,1,periclesprinceoftyre,1608 fast,1,periclesprinceoftyre,1608 fare,1,periclesprinceoftyre,1608 meets,1,periclesprinceoftyre,1608 o'erwhelm,1,periclesprinceoftyre,1608 coal,1,periclesprinceoftyre,1608 coat,1,periclesprinceoftyre,1608 calendar,1,periclesprinceoftyre,1608 talk,1,periclesprinceoftyre,1608 constant,1,periclesprinceoftyre,1608 departure,1,periclesprinceoftyre,1608 inflamed,1,periclesprinceoftyre,1608 Mariner,1,periclesprinceoftyre,1608 arm'd,1,periclesprinceoftyre,1608 haling,1,periclesprinceoftyre,1608 bind,1,periclesprinceoftyre,1608 wanion,1,periclesprinceoftyre,1608 perish,1,periclesprinceoftyre,1608 sixth,1,periclesprinceoftyre,1608 Worse,1,periclesprinceoftyre,1608 consists,1,periclesprinceoftyre,1608 refresh,1,periclesprinceoftyre,1608 wild,1,periclesprinceoftyre,1608 mothers,1,periclesprinceoftyre,1608 bays,1,periclesprinceoftyre,1608 greets,1,periclesprinceoftyre,1608 unthankfulness,1,periclesprinceoftyre,1608 sights,1,periclesprinceoftyre,1608 Led,1,periclesprinceoftyre,1608 pledge,1,periclesprinceoftyre,1608 Speaks,1,periclesprinceoftyre,1608 Modest,1,periclesprinceoftyre,1608 eels,1,periclesprinceoftyre,1608 apron,1,periclesprinceoftyre,1608 pardon,1,periclesprinceoftyre,1608 bethought,1,periclesprinceoftyre,1608 empire,1,periclesprinceoftyre,1608 embarks,1,periclesprinceoftyre,1608 inscription,1,periclesprinceoftyre,1608 Lay,1,periclesprinceoftyre,1608 hole,1,periclesprinceoftyre,1608 Truth,1,periclesprinceoftyre,1608 Wash'd,1,periclesprinceoftyre,1608 peaceful,1,periclesprinceoftyre,1608 recovery's,1,periclesprinceoftyre,1608 dozen,1,periclesprinceoftyre,1608 populous,1,periclesprinceoftyre,1608 frequent,1,periclesprinceoftyre,1608 how's,1,periclesprinceoftyre,1608 metals,1,periclesprinceoftyre,1608 Arise,1,periclesprinceoftyre,1608 follows,1,periclesprinceoftyre,1608 fired,1,periclesprinceoftyre,1608 gaping,1,periclesprinceoftyre,1608 Vie,1,periclesprinceoftyre,1608 pangs,1,periclesprinceoftyre,1608 motes,1,periclesprinceoftyre,1608 fires,1,periclesprinceoftyre,1608 peerless,1,periclesprinceoftyre,1608 revolt,1,periclesprinceoftyre,1608 consist,1,periclesprinceoftyre,1608 assist,1,periclesprinceoftyre,1608 Assuming,1,periclesprinceoftyre,1608 tire,1,periclesprinceoftyre,1608 winter,1,periclesprinceoftyre,1608 flood,1,periclesprinceoftyre,1608 entrap,1,periclesprinceoftyre,1608 eagle's,1,periclesprinceoftyre,1608 writing,1,periclesprinceoftyre,1608 Wherefore,1,periclesprinceoftyre,1608 sodden,1,periclesprinceoftyre,1608 virtues,1,periclesprinceoftyre,1608 Day,1,periclesprinceoftyre,1608 mouthful,1,periclesprinceoftyre,1608 Awake,1,periclesprinceoftyre,1608 seal,1,periclesprinceoftyre,1608 train'd,1,periclesprinceoftyre,1608 potion,1,periclesprinceoftyre,1608 building,1,periclesprinceoftyre,1608 fitter,1,periclesprinceoftyre,1608 task,1,periclesprinceoftyre,1608 intents,1,periclesprinceoftyre,1608 Squire,1,periclesprinceoftyre,1608 Seize,1,periclesprinceoftyre,1608 Envy,1,periclesprinceoftyre,1608 robes,1,periclesprinceoftyre,1608 aspire,1,periclesprinceoftyre,1608 hearts,1,periclesprinceoftyre,1608 satisfied,1,periclesprinceoftyre,1608 lungs,1,periclesprinceoftyre,1608 cope,1,periclesprinceoftyre,1608 manage,1,periclesprinceoftyre,1608 seat,1,periclesprinceoftyre,1608 glittering,1,periclesprinceoftyre,1608 elements,1,periclesprinceoftyre,1608 cheerful,1,periclesprinceoftyre,1608 cool,1,periclesprinceoftyre,1608 lying,1,periclesprinceoftyre,1608 lop,1,periclesprinceoftyre,1608 Attended,1,periclesprinceoftyre,1608 favour's,1,periclesprinceoftyre,1608 wenchless,1,periclesprinceoftyre,1608 Calls,1,periclesprinceoftyre,1608 hearse,1,periclesprinceoftyre,1608 convince,1,periclesprinceoftyre,1608 winged,1,periclesprinceoftyre,1608 neglected,1,periclesprinceoftyre,1608 inward,1,periclesprinceoftyre,1608 favour'd,1,periclesprinceoftyre,1608 adieu,1,periclesprinceoftyre,1608 eyed,1,periclesprinceoftyre,1608 startle,1,periclesprinceoftyre,1608 aloof,1,periclesprinceoftyre,1608 acts,1,periclesprinceoftyre,1608 sorrowing,1,periclesprinceoftyre,1608 expound,1,periclesprinceoftyre,1608 needful,1,periclesprinceoftyre,1608 unsavoury,1,periclesprinceoftyre,1608 thereto,1,periclesprinceoftyre,1608 'Our,1,periclesprinceoftyre,1608 whipstock,1,periclesprinceoftyre,1608 Nestor,1,periclesprinceoftyre,1608 belches,1,periclesprinceoftyre,1608 back,1,periclesprinceoftyre,1608 litigious,1,periclesprinceoftyre,1608 feathers,1,periclesprinceoftyre,1608 gnats,1,periclesprinceoftyre,1608 talking,1,periclesprinceoftyre,1608 troth,1,periclesprinceoftyre,1608 weaved,1,periclesprinceoftyre,1608 feeling,1,periclesprinceoftyre,1608 shipman's,1,periclesprinceoftyre,1608 sports,1,periclesprinceoftyre,1608 supposed,1,periclesprinceoftyre,1608 wrack,1,periclesprinceoftyre,1608 discretion,1,periclesprinceoftyre,1608 camest,1,periclesprinceoftyre,1608 destruction's,1,periclesprinceoftyre,1608 understood,1,periclesprinceoftyre,1608 sees,1,periclesprinceoftyre,1608 drunken,1,periclesprinceoftyre,1608 hundreds,1,periclesprinceoftyre,1608 liking,1,periclesprinceoftyre,1608 cost,1,periclesprinceoftyre,1608 Mine,1,periclesprinceoftyre,1608 tidings,1,periclesprinceoftyre,1608 planets,1,periclesprinceoftyre,1608 jangling,1,periclesprinceoftyre,1608 Believe,1,periclesprinceoftyre,1608 porpus,1,periclesprinceoftyre,1608 wisdom's,1,periclesprinceoftyre,1608 pirate,1,periclesprinceoftyre,1608 adorn'd,1,periclesprinceoftyre,1608 secrecy,1,periclesprinceoftyre,1608 inquiring,1,periclesprinceoftyre,1608 confirm'd,1,periclesprinceoftyre,1608 expecting,1,periclesprinceoftyre,1608 fishermen,1,periclesprinceoftyre,1608 oblations,1,periclesprinceoftyre,1608 topp'd,1,periclesprinceoftyre,1608 increase,1,periclesprinceoftyre,1608 whate'er,1,periclesprinceoftyre,1608 hearken,1,periclesprinceoftyre,1608 person,1,periclesprinceoftyre,1608 modest,1,periclesprinceoftyre,1608 He'll,1,periclesprinceoftyre,1608 affright,1,periclesprinceoftyre,1608 cased,1,periclesprinceoftyre,1608 eyne,1,periclesprinceoftyre,1608 pour,1,periclesprinceoftyre,1608 loyalty,1,periclesprinceoftyre,1608 platform,1,periclesprinceoftyre,1608 Voice,1,periclesprinceoftyre,1608 goal,1,periclesprinceoftyre,1608 curtain,1,periclesprinceoftyre,1608 wretched,1,periclesprinceoftyre,1608 funeral,1,periclesprinceoftyre,1608 tied,1,periclesprinceoftyre,1608 dislike,1,periclesprinceoftyre,1608 Use,1,periclesprinceoftyre,1608 prayer,1,periclesprinceoftyre,1608 lovers,1,periclesprinceoftyre,1608 souls,1,periclesprinceoftyre,1608 secure,1,periclesprinceoftyre,1608 fairly,1,periclesprinceoftyre,1608 mirror,1,periclesprinceoftyre,1608 Chorus,1,periclesprinceoftyre,1608 ball,1,periclesprinceoftyre,1608 cases,1,periclesprinceoftyre,1608 harbourage,1,periclesprinceoftyre,1608 leg,1,periclesprinceoftyre,1608 Next,1,periclesprinceoftyre,1608 fearfully,1,periclesprinceoftyre,1608 glowing,1,periclesprinceoftyre,1608 send,1,periclesprinceoftyre,1608 gentlest,1,periclesprinceoftyre,1608 Intend,1,periclesprinceoftyre,1608 bade,1,periclesprinceoftyre,1608 betrothed,1,periclesprinceoftyre,1608 grieved,1,periclesprinceoftyre,1608 sexton,1,periclesprinceoftyre,1608 Varies,1,periclesprinceoftyre,1608 herald,1,periclesprinceoftyre,1608 Thinks,1,periclesprinceoftyre,1608 seized,1,periclesprinceoftyre,1608 shipboard,1,periclesprinceoftyre,1608 statue,1,periclesprinceoftyre,1608 fearing,1,periclesprinceoftyre,1608 sickness,1,periclesprinceoftyre,1608 gloze,1,periclesprinceoftyre,1608 seizes,1,periclesprinceoftyre,1608 leagues,1,periclesprinceoftyre,1608 protest,1,periclesprinceoftyre,1608 descending,1,periclesprinceoftyre,1608 inkle,1,periclesprinceoftyre,1608 invite,1,periclesprinceoftyre,1608 detect,1,periclesprinceoftyre,1608 glows,1,periclesprinceoftyre,1608 seem'st,1,periclesprinceoftyre,1608 chances,1,periclesprinceoftyre,1608 chanced,1,periclesprinceoftyre,1608 stormy,1,periclesprinceoftyre,1608 until,1,periclesprinceoftyre,1608 thread,1,periclesprinceoftyre,1608 brow,1,periclesprinceoftyre,1608 slow,1,periclesprinceoftyre,1608 torch,1,periclesprinceoftyre,1608 trod,1,periclesprinceoftyre,1608 PERICLES',1,periclesprinceoftyre,1608 overwhelm,1,periclesprinceoftyre,1608 perpetually,1,periclesprinceoftyre,1608 swearers,1,periclesprinceoftyre,1608 Serve,1,periclesprinceoftyre,1608 lays,1,periclesprinceoftyre,1608 seated,1,periclesprinceoftyre,1608 midway,1,periclesprinceoftyre,1608 berry,1,periclesprinceoftyre,1608 petty,1,periclesprinceoftyre,1608 sufficiently,1,periclesprinceoftyre,1608 o'erspread,1,periclesprinceoftyre,1608 portage,1,periclesprinceoftyre,1608 cloudy,1,periclesprinceoftyre,1608 mar,1,periclesprinceoftyre,1608 targets,1,periclesprinceoftyre,1608 confound,1,periclesprinceoftyre,1608 alter'd,1,periclesprinceoftyre,1608 slaked,1,periclesprinceoftyre,1608 Falseness,1,periclesprinceoftyre,1608 gains,1,periclesprinceoftyre,1608 volume,1,periclesprinceoftyre,1608 heinous,1,periclesprinceoftyre,1608 Shrouded,1,periclesprinceoftyre,1608 Divinest,1,periclesprinceoftyre,1608 Blame,1,periclesprinceoftyre,1608 Signior,1,periclesprinceoftyre,1608 comfortable,1,periclesprinceoftyre,1608 'scape,1,periclesprinceoftyre,1608 conduct,1,periclesprinceoftyre,1608 propagate,1,periclesprinceoftyre,1608 deafen'd,1,periclesprinceoftyre,1608 virginities,1,periclesprinceoftyre,1608 unclasp,1,periclesprinceoftyre,1608 watered,1,periclesprinceoftyre,1608 smiling,1,periclesprinceoftyre,1608 begins,1,periclesprinceoftyre,1608 learn,1,periclesprinceoftyre,1608 burst,1,periclesprinceoftyre,1608 forces,1,periclesprinceoftyre,1608 starve,1,periclesprinceoftyre,1608 bonum,1,periclesprinceoftyre,1608 chosen,1,periclesprinceoftyre,1608 met,1,periclesprinceoftyre,1608 Sooth,1,periclesprinceoftyre,1608 trip,1,periclesprinceoftyre,1608 trim,1,periclesprinceoftyre,1608 Unscissor'd,1,periclesprinceoftyre,1608 armours,1,periclesprinceoftyre,1608 devours,1,periclesprinceoftyre,1608 misinterpreting,1,periclesprinceoftyre,1608 Fits,1,periclesprinceoftyre,1608 Does,1,periclesprinceoftyre,1608 Rise,1,periclesprinceoftyre,1608 fishers,1,periclesprinceoftyre,1608 pitifully,1,periclesprinceoftyre,1608 sovereign,1,periclesprinceoftyre,1608 nobody,1,periclesprinceoftyre,1608 street,1,periclesprinceoftyre,1608 evils,1,periclesprinceoftyre,1608 heritage,1,periclesprinceoftyre,1608 graciously,1,periclesprinceoftyre,1608 furtherance,1,periclesprinceoftyre,1608 confirmation,1,periclesprinceoftyre,1608 conjures,1,periclesprinceoftyre,1608 whip,1,periclesprinceoftyre,1608 debtor,1,periclesprinceoftyre,1608 abuts,1,periclesprinceoftyre,1608 pompous,1,periclesprinceoftyre,1608 venomously,1,periclesprinceoftyre,1608 thinking,1,periclesprinceoftyre,1608 Away,1,periclesprinceoftyre,1608 reporting,1,periclesprinceoftyre,1608 superstitiously,1,periclesprinceoftyre,1608 wound,1,periclesprinceoftyre,1608 respected,1,periclesprinceoftyre,1608 caulk'd,1,periclesprinceoftyre,1608 remaining,1,periclesprinceoftyre,1608 marigolds,1,periclesprinceoftyre,1608 Faints,1,periclesprinceoftyre,1608 withdraw,1,periclesprinceoftyre,1608 casts,1,periclesprinceoftyre,1608 liege,1,periclesprinceoftyre,1608 envies,1,periclesprinceoftyre,1608 o'ershower'd,1,periclesprinceoftyre,1608 shafts,1,periclesprinceoftyre,1608 whiles,1,periclesprinceoftyre,1608 telling,1,periclesprinceoftyre,1608 sometimes,1,periclesprinceoftyre,1608 carpet,1,periclesprinceoftyre,1608 nativity,1,periclesprinceoftyre,1608 eaning,1,periclesprinceoftyre,1608 Beseech,1,periclesprinceoftyre,1608 vestal,1,periclesprinceoftyre,1608 Kneels,1,periclesprinceoftyre,1608 Man,1,periclesprinceoftyre,1608 flaw,1,periclesprinceoftyre,1608 fasting,1,periclesprinceoftyre,1608 flap,1,periclesprinceoftyre,1608 Inhabitants,1,periclesprinceoftyre,1608 pious,1,periclesprinceoftyre,1608 tua,1,periclesprinceoftyre,1608 cockles,1,periclesprinceoftyre,1608 Fifth,1,periclesprinceoftyre,1608 seemed,1,periclesprinceoftyre,1608 suspect,1,periclesprinceoftyre,1608 sailors,1,periclesprinceoftyre,1608 recompense,1,periclesprinceoftyre,1608 Without,1,periclesprinceoftyre,1608 stretch'd,1,periclesprinceoftyre,1608 wanderingly,1,periclesprinceoftyre,1608 divinity,1,periclesprinceoftyre,1608 Lend,1,periclesprinceoftyre,1608 leafy,1,periclesprinceoftyre,1608 contend,1,periclesprinceoftyre,1608 compell'd,1,periclesprinceoftyre,1608 windows,1,periclesprinceoftyre,1608 Justice,1,periclesprinceoftyre,1608 entreats,1,periclesprinceoftyre,1608 disaster,1,periclesprinceoftyre,1608 o'ercharged,1,periclesprinceoftyre,1608 defiled,1,periclesprinceoftyre,1608 leading,1,periclesprinceoftyre,1608 Omit,1,periclesprinceoftyre,1608 dwells,1,periclesprinceoftyre,1608 inestimable,1,periclesprinceoftyre,1608 Death,1,periclesprinceoftyre,1608 simple,1,periclesprinceoftyre,1608 sentence,1,periclesprinceoftyre,1608 mouths,1,periclesprinceoftyre,1608 date,1,periclesprinceoftyre,1608 harpy,1,periclesprinceoftyre,1608 entrance,1,periclesprinceoftyre,1608 risen,1,periclesprinceoftyre,1608 earned,1,periclesprinceoftyre,1608 You'll,1,periclesprinceoftyre,1608 Note,1,periclesprinceoftyre,1608 Tib,1,periclesprinceoftyre,1608 shaft,1,periclesprinceoftyre,1608 careless,1,periclesprinceoftyre,1608 judged,1,periclesprinceoftyre,1608 island's,1,periclesprinceoftyre,1608 invited,1,periclesprinceoftyre,1608 discovered,1,periclesprinceoftyre,1608 Nicander,1,periclesprinceoftyre,1608 unprofitable,1,periclesprinceoftyre,1608 provide,1,periclesprinceoftyre,1608 substitute,1,periclesprinceoftyre,1608 happily,1,periclesprinceoftyre,1608 dart,1,periclesprinceoftyre,1608 music's,1,periclesprinceoftyre,1608 dare,1,periclesprinceoftyre,1608 pelf,1,periclesprinceoftyre,1608 famish,1,periclesprinceoftyre,1608 sulphurous,1,periclesprinceoftyre,1608 Lest,1,periclesprinceoftyre,1608 impudence,1,periclesprinceoftyre,1608 Die,1,periclesprinceoftyre,1608 tottering,1,periclesprinceoftyre,1608 attent,1,periclesprinceoftyre,1608 Together,1,periclesprinceoftyre,1608 Rich,1,periclesprinceoftyre,1608 catch,1,periclesprinceoftyre,1608 lord's,1,periclesprinceoftyre,1608 longest,1,periclesprinceoftyre,1608 withhold,1,periclesprinceoftyre,1608 antiquius,1,periclesprinceoftyre,1608 destroy,1,periclesprinceoftyre,1608 blessing,1,periclesprinceoftyre,1608 dispatch,1,periclesprinceoftyre,1608 rocks,1,periclesprinceoftyre,1608 another's,1,periclesprinceoftyre,1608 liest,1,periclesprinceoftyre,1608 lame,1,periclesprinceoftyre,1608 proclamation,1,periclesprinceoftyre,1608 snatch,1,periclesprinceoftyre,1608 instantly,1,periclesprinceoftyre,1608 sea's,1,periclesprinceoftyre,1608 DRAMATIS,1,periclesprinceoftyre,1608 chariot,1,periclesprinceoftyre,1608 Due,1,periclesprinceoftyre,1608 tie,1,periclesprinceoftyre,1608 o'erboard,1,periclesprinceoftyre,1608 guests,1,periclesprinceoftyre,1608 nuptials,1,periclesprinceoftyre,1608 shine,1,periclesprinceoftyre,1608 physician,1,periclesprinceoftyre,1608 burden,1,periclesprinceoftyre,1608 finish'd,1,periclesprinceoftyre,1608 flower,1,periclesprinceoftyre,1608 gazed,1,periclesprinceoftyre,1608 dame,1,periclesprinceoftyre,1608 pass'd,1,periclesprinceoftyre,1608 awkward,1,periclesprinceoftyre,1608 dulzura,1,periclesprinceoftyre,1608 quietly,1,periclesprinceoftyre,1608 BOTH,1,periclesprinceoftyre,1608 fence,1,periclesprinceoftyre,1608 obtain,1,periclesprinceoftyre,1608 tired,1,periclesprinceoftyre,1608 trees,1,periclesprinceoftyre,1608 reserve,1,periclesprinceoftyre,1608 he'ld,1,periclesprinceoftyre,1608 frail,1,periclesprinceoftyre,1608 Kneeling,1,periclesprinceoftyre,1608 inheritor,1,periclesprinceoftyre,1608 boots,1,periclesprinceoftyre,1608 expire,1,periclesprinceoftyre,1608 shells,1,periclesprinceoftyre,1608 boundless,1,periclesprinceoftyre,1608 reconcile,1,periclesprinceoftyre,1608 brim,1,periclesprinceoftyre,1608 mis,1,periclesprinceoftyre,1608 cates,1,periclesprinceoftyre,1608 Wrong,1,periclesprinceoftyre,1608 crouches,1,periclesprinceoftyre,1608 eyelids,1,periclesprinceoftyre,1608 spirit,1,periclesprinceoftyre,1608 amaze,1,periclesprinceoftyre,1608 earth's,1,periclesprinceoftyre,1608 Honest,1,periclesprinceoftyre,1608 given't,1,periclesprinceoftyre,1608 remembrance,1,periclesprinceoftyre,1608 Valdes,1,periclesprinceoftyre,1608 wanteth,1,periclesprinceoftyre,1608 shape,1,periclesprinceoftyre,1608 Fame,1,periclesprinceoftyre,1608 tread,1,periclesprinceoftyre,1608 Bound,1,periclesprinceoftyre,1608 bewitch'd,1,periclesprinceoftyre,1608 subjects',1,periclesprinceoftyre,1608 Suppose,1,periclesprinceoftyre,1608 chivalry,1,periclesprinceoftyre,1608 'pothecary,1,periclesprinceoftyre,1608 Brief,1,periclesprinceoftyre,1608 mouse's,1,periclesprinceoftyre,1608 hatches,1,periclesprinceoftyre,1608 sands,1,periclesprinceoftyre,1608 e'en,1,periclesprinceoftyre,1608 dissemble,1,periclesprinceoftyre,1608 hold'st,1,periclesprinceoftyre,1608 Holding,1,periclesprinceoftyre,1608 gazes,1,periclesprinceoftyre,1608 gazer,1,periclesprinceoftyre,1608 nostril,1,periclesprinceoftyre,1608 entranced,1,periclesprinceoftyre,1608 vilely,1,periclesprinceoftyre,1608 woo'd,1,periclesprinceoftyre,1608 sapling,1,periclesprinceoftyre,1608 ending,1,periclesprinceoftyre,1608 sway,1,periclesprinceoftyre,1608 blustrous,1,periclesprinceoftyre,1608 doorkeeper,1,periclesprinceoftyre,1608 largely,1,periclesprinceoftyre,1608 Drove,1,periclesprinceoftyre,1608 stormest,1,periclesprinceoftyre,1608 schoolmaster,1,periclesprinceoftyre,1608 hatched,1,periclesprinceoftyre,1608 Grows,1,periclesprinceoftyre,1608 treason,2,periclesprinceoftyre,1608 neighbouring,2,periclesprinceoftyre,1608 generation,2,periclesprinceoftyre,1608 answer,2,periclesprinceoftyre,1608 meet,2,periclesprinceoftyre,1608 forbid,2,periclesprinceoftyre,1608 tomb,2,periclesprinceoftyre,1608 moral,2,periclesprinceoftyre,1608 grew,2,periclesprinceoftyre,1608 advice,2,periclesprinceoftyre,1608 infant,2,periclesprinceoftyre,1608 took,2,periclesprinceoftyre,1608 dream'd,2,periclesprinceoftyre,1608 writ,2,periclesprinceoftyre,1608 horse,2,periclesprinceoftyre,1608 treasure,2,periclesprinceoftyre,1608 riddle,2,periclesprinceoftyre,1608 offended,2,periclesprinceoftyre,1608 health,2,periclesprinceoftyre,1608 rob,2,periclesprinceoftyre,1608 branch,2,periclesprinceoftyre,1608 scene,2,periclesprinceoftyre,1608 Wilt,2,periclesprinceoftyre,1608 express,2,periclesprinceoftyre,1608 rather,2,periclesprinceoftyre,1608 held,2,periclesprinceoftyre,1608 hell,2,periclesprinceoftyre,1608 helps,2,periclesprinceoftyre,1608 whale,2,periclesprinceoftyre,1608 younger,2,periclesprinceoftyre,1608 darkness,2,periclesprinceoftyre,1608 spake,2,periclesprinceoftyre,1608 Either,2,periclesprinceoftyre,1608 Whereas,2,periclesprinceoftyre,1608 clothed,2,periclesprinceoftyre,1608 offer,2,periclesprinceoftyre,1608 whipped,2,periclesprinceoftyre,1608 steeple,2,periclesprinceoftyre,1608 commodity,2,periclesprinceoftyre,1608 rid,2,periclesprinceoftyre,1608 understand,2,periclesprinceoftyre,1608 although,2,periclesprinceoftyre,1608 drink,2,periclesprinceoftyre,1608 Expect,2,periclesprinceoftyre,1608 advise,2,periclesprinceoftyre,1608 absolute,2,periclesprinceoftyre,1608 damned,2,periclesprinceoftyre,1608 sore,2,periclesprinceoftyre,1608 trust,2,periclesprinceoftyre,1608 contrary,2,periclesprinceoftyre,1608 CLEON's,2,periclesprinceoftyre,1608 remain,2,periclesprinceoftyre,1608 baggage,2,periclesprinceoftyre,1608 become,2,periclesprinceoftyre,1608 curious,2,periclesprinceoftyre,1608 proclaim,2,periclesprinceoftyre,1608 vast,2,periclesprinceoftyre,1608 practised,2,periclesprinceoftyre,1608 beneath,2,periclesprinceoftyre,1608 strength,2,periclesprinceoftyre,1608 soon,2,periclesprinceoftyre,1608 seven,2,periclesprinceoftyre,1608 sad,2,periclesprinceoftyre,1608 drive,2,periclesprinceoftyre,1608 working,2,periclesprinceoftyre,1608 Young,2,periclesprinceoftyre,1608 tost,2,periclesprinceoftyre,1608 grows,2,periclesprinceoftyre,1608 highness,2,periclesprinceoftyre,1608 sorrows,2,periclesprinceoftyre,1608 words,2,periclesprinceoftyre,1608 sackcloth,2,periclesprinceoftyre,1608 Only,2,periclesprinceoftyre,1608 wants,2,periclesprinceoftyre,1608 town,2,periclesprinceoftyre,1608 characters,2,periclesprinceoftyre,1608 complexion,2,periclesprinceoftyre,1608 veins,2,periclesprinceoftyre,1608 covering,2,periclesprinceoftyre,1608 toss'd,2,periclesprinceoftyre,1608 sinful,2,periclesprinceoftyre,1608 pillow,2,periclesprinceoftyre,1608 conception,2,periclesprinceoftyre,1608 ground's,2,periclesprinceoftyre,1608 impossible,2,periclesprinceoftyre,1608 'twere,2,periclesprinceoftyre,1608 saying,2,periclesprinceoftyre,1608 vice,2,periclesprinceoftyre,1608 'twas,2,periclesprinceoftyre,1608 peevish,2,periclesprinceoftyre,1608 fell,2,periclesprinceoftyre,1608 mariner,2,periclesprinceoftyre,1608 livest,2,periclesprinceoftyre,1608 embrace,2,periclesprinceoftyre,1608 church,2,periclesprinceoftyre,1608 skill,2,periclesprinceoftyre,1608 bringing,2,periclesprinceoftyre,1608 murderer,2,periclesprinceoftyre,1608 viol,2,periclesprinceoftyre,1608 ashore,2,periclesprinceoftyre,1608 attends,2,periclesprinceoftyre,1608 Heavens,2,periclesprinceoftyre,1608 level,2,periclesprinceoftyre,1608 parish,2,periclesprinceoftyre,1608 Music,2,periclesprinceoftyre,1608 faults,2,periclesprinceoftyre,1608 Thanks,2,periclesprinceoftyre,1608 pieces,2,periclesprinceoftyre,1608 becomes,2,periclesprinceoftyre,1608 vile,2,periclesprinceoftyre,1608 felt,2,periclesprinceoftyre,1608 guide,2,periclesprinceoftyre,1608 Governor's,2,periclesprinceoftyre,1608 Princess,2,periclesprinceoftyre,1608 roots,2,periclesprinceoftyre,1608 twelve,2,periclesprinceoftyre,1608 absence,2,periclesprinceoftyre,1608 dearly,2,periclesprinceoftyre,1608 commit,2,periclesprinceoftyre,1608 Pardon,2,periclesprinceoftyre,1608 fruit,2,periclesprinceoftyre,1608 worthy,2,periclesprinceoftyre,1608 Wherein,2,periclesprinceoftyre,1608 thence,2,periclesprinceoftyre,1608 paragon,2,periclesprinceoftyre,1608 reverence,2,periclesprinceoftyre,1608 service,2,periclesprinceoftyre,1608 masters,2,periclesprinceoftyre,1608 upon't,2,periclesprinceoftyre,1608 accept,2,periclesprinceoftyre,1608 ancient,2,periclesprinceoftyre,1608 Old,2,periclesprinceoftyre,1608 others,2,periclesprinceoftyre,1608 wishes,2,periclesprinceoftyre,1608 stuff'd,2,periclesprinceoftyre,1608 bourn,2,periclesprinceoftyre,1608 kneel,2,periclesprinceoftyre,1608 Might,2,periclesprinceoftyre,1608 title,2,periclesprinceoftyre,1608 latter,2,periclesprinceoftyre,1608 length,2,periclesprinceoftyre,1608 hence,2,periclesprinceoftyre,1608 stead,2,periclesprinceoftyre,1608 hates,2,periclesprinceoftyre,1608 bold,2,periclesprinceoftyre,1608 turned,2,periclesprinceoftyre,1608 sooth,2,periclesprinceoftyre,1608 displeasure,2,periclesprinceoftyre,1608 minding,2,periclesprinceoftyre,1608 voice,2,periclesprinceoftyre,1608 doubts,2,periclesprinceoftyre,1608 desist,2,periclesprinceoftyre,1608 rule,2,periclesprinceoftyre,1608 wash,2,periclesprinceoftyre,1608 matter,2,periclesprinceoftyre,1608 There's,2,periclesprinceoftyre,1608 book,2,periclesprinceoftyre,1608 bright,2,periclesprinceoftyre,1608 spoke,2,periclesprinceoftyre,1608 wayward,2,periclesprinceoftyre,1608 praises,2,periclesprinceoftyre,1608 training,2,periclesprinceoftyre,1608 burning,2,periclesprinceoftyre,1608 mortality,2,periclesprinceoftyre,1608 rusty,2,periclesprinceoftyre,1608 crack,2,periclesprinceoftyre,1608 flattery,2,periclesprinceoftyre,1608 scarce,2,periclesprinceoftyre,1608 neither,2,periclesprinceoftyre,1608 blows,2,periclesprinceoftyre,1608 CERIMON's,2,periclesprinceoftyre,1608 knowing,2,periclesprinceoftyre,1608 Those,2,periclesprinceoftyre,1608 hopes,2,periclesprinceoftyre,1608 fates,2,periclesprinceoftyre,1608 Nature,2,periclesprinceoftyre,1608 unless,2,periclesprinceoftyre,1608 in't,2,periclesprinceoftyre,1608 sings,2,periclesprinceoftyre,1608 hie,2,periclesprinceoftyre,1608 changed,2,periclesprinceoftyre,1608 hit,2,periclesprinceoftyre,1608 Ha,2,periclesprinceoftyre,1608 Ho,2,periclesprinceoftyre,1608 meant,2,periclesprinceoftyre,1608 fortune's,2,periclesprinceoftyre,1608 quick,2,periclesprinceoftyre,1608 ease,2,periclesprinceoftyre,1608 indenture,2,periclesprinceoftyre,1608 shipwreck,2,periclesprinceoftyre,1608 wither'd,2,periclesprinceoftyre,1608 nourishment,2,periclesprinceoftyre,1608 past,2,periclesprinceoftyre,1608 Has,2,periclesprinceoftyre,1608 mortally,2,periclesprinceoftyre,1608 pox,2,periclesprinceoftyre,1608 por,2,periclesprinceoftyre,1608 heads,2,periclesprinceoftyre,1608 priests,2,periclesprinceoftyre,1608 iniquity,2,periclesprinceoftyre,1608 moons,2,periclesprinceoftyre,1608 hills,2,periclesprinceoftyre,1608 bend,2,periclesprinceoftyre,1608 preserved,2,periclesprinceoftyre,1608 belief,2,periclesprinceoftyre,1608 behind,2,periclesprinceoftyre,1608 suffer'd,2,periclesprinceoftyre,1608 'Twould,2,periclesprinceoftyre,1608 Prithee,2,periclesprinceoftyre,1608 got,2,periclesprinceoftyre,1608 bent,2,periclesprinceoftyre,1608 people,2,periclesprinceoftyre,1608 afore,2,periclesprinceoftyre,1608 suddenly,2,periclesprinceoftyre,1608 despise,2,periclesprinceoftyre,1608 silk,2,periclesprinceoftyre,1608 tedious,2,periclesprinceoftyre,1608 curse,2,periclesprinceoftyre,1608 amongst,2,periclesprinceoftyre,1608 gown,2,periclesprinceoftyre,1608 enterprise,2,periclesprinceoftyre,1608 sink,2,periclesprinceoftyre,1608 picture,2,periclesprinceoftyre,1608 'Twas,2,periclesprinceoftyre,1608 beds,2,periclesprinceoftyre,1608 Wrench,2,periclesprinceoftyre,1608 grace's,2,periclesprinceoftyre,1608 north,2,periclesprinceoftyre,1608 crowns,2,periclesprinceoftyre,1608 How's,2,periclesprinceoftyre,1608 begin,2,periclesprinceoftyre,1608 sail,2,periclesprinceoftyre,1608 voyage,2,periclesprinceoftyre,1608 Traitor,2,periclesprinceoftyre,1608 gift,2,periclesprinceoftyre,1608 aid,2,periclesprinceoftyre,1608 burial,2,periclesprinceoftyre,1608 Here's,2,periclesprinceoftyre,1608 battery,2,periclesprinceoftyre,1608 stood,2,periclesprinceoftyre,1608 safe,2,periclesprinceoftyre,1608 Making,2,periclesprinceoftyre,1608 recovered,2,periclesprinceoftyre,1608 deal,2,periclesprinceoftyre,1608 seeing,2,periclesprinceoftyre,1608 likely,2,periclesprinceoftyre,1608 nobleman,2,periclesprinceoftyre,1608 touch'd,2,periclesprinceoftyre,1608 houses,2,periclesprinceoftyre,1608 Fishermen,2,periclesprinceoftyre,1608 manner,2,periclesprinceoftyre,1608 crosses,2,periclesprinceoftyre,1608 Master,2,periclesprinceoftyre,1608 ask'd,2,periclesprinceoftyre,1608 board,2,periclesprinceoftyre,1608 attending,2,periclesprinceoftyre,1608 small,2,periclesprinceoftyre,1608 region,2,periclesprinceoftyre,1608 Deliver'd,2,periclesprinceoftyre,1608 Live,2,periclesprinceoftyre,1608 Reads,2,periclesprinceoftyre,1608 scholar,2,periclesprinceoftyre,1608 look'st,2,periclesprinceoftyre,1608 Took,2,periclesprinceoftyre,1608 age,2,periclesprinceoftyre,1608 value,2,periclesprinceoftyre,1608 hadst,2,periclesprinceoftyre,1608 loud,2,periclesprinceoftyre,1608 moon,2,periclesprinceoftyre,1608 add,2,periclesprinceoftyre,1608 beholding,2,periclesprinceoftyre,1608 ho,2,periclesprinceoftyre,1608 speak'st,2,periclesprinceoftyre,1608 semblance,2,periclesprinceoftyre,1608 lest,2,periclesprinceoftyre,1608 adventurous,2,periclesprinceoftyre,1608 forgot,2,periclesprinceoftyre,1608 Because,2,periclesprinceoftyre,1608 reasons,2,periclesprinceoftyre,1608 speaks,2,periclesprinceoftyre,1608 round,2,periclesprinceoftyre,1608 kingly,2,periclesprinceoftyre,1608 knit,2,periclesprinceoftyre,1608 infirmities,2,periclesprinceoftyre,1608 Call,2,periclesprinceoftyre,1608 pale,2,periclesprinceoftyre,1608 nation,2,periclesprinceoftyre,1608 More,2,periclesprinceoftyre,1608 Escanes,2,periclesprinceoftyre,1608 reach,2,periclesprinceoftyre,1608 deny,2,periclesprinceoftyre,1608 four,2,periclesprinceoftyre,1608 drawn,2,periclesprinceoftyre,1608 whether,2,periclesprinceoftyre,1608 expect,2,periclesprinceoftyre,1608 prepare,2,periclesprinceoftyre,1608 pair,2,periclesprinceoftyre,1608 Hush,2,periclesprinceoftyre,1608 spit,2,periclesprinceoftyre,1608 point,2,periclesprinceoftyre,1608 bosom,2,periclesprinceoftyre,1608 alive,2,periclesprinceoftyre,1608 shot,2,periclesprinceoftyre,1608 fishes,2,periclesprinceoftyre,1608 chastity,2,periclesprinceoftyre,1608 food,2,periclesprinceoftyre,1608 courses,2,periclesprinceoftyre,1608 girl,2,periclesprinceoftyre,1608 mayst,2,periclesprinceoftyre,1608 secret,2,periclesprinceoftyre,1608 beggars,2,periclesprinceoftyre,1608 bought,2,periclesprinceoftyre,1608 right,2,periclesprinceoftyre,1608 undone,2,periclesprinceoftyre,1608 touch,2,periclesprinceoftyre,1608 judgment,2,periclesprinceoftyre,1608 justify,2,periclesprinceoftyre,1608 guest,2,periclesprinceoftyre,1608 spoken,2,periclesprinceoftyre,1608 superfluous,2,periclesprinceoftyre,1608 height,2,periclesprinceoftyre,1608 Should,2,periclesprinceoftyre,1608 justice,2,periclesprinceoftyre,1608 distant,2,periclesprinceoftyre,1608 education,2,periclesprinceoftyre,1608 garments,2,periclesprinceoftyre,1608 syllable,2,periclesprinceoftyre,1608 Virtue,2,periclesprinceoftyre,1608 peers,2,periclesprinceoftyre,1608 tourney,2,periclesprinceoftyre,1608 honey,2,periclesprinceoftyre,1608 rose,2,periclesprinceoftyre,1608 needle,2,periclesprinceoftyre,1608 couldst,2,periclesprinceoftyre,1608 note,2,periclesprinceoftyre,1608 thinks,2,periclesprinceoftyre,1608 lodgings,2,periclesprinceoftyre,1608 envy,2,periclesprinceoftyre,1608 marks,2,periclesprinceoftyre,1608 rare,2,periclesprinceoftyre,1608 countless,2,periclesprinceoftyre,1608 below,2,periclesprinceoftyre,1608 Reverend,2,periclesprinceoftyre,1608 childbed,2,periclesprinceoftyre,1608 entertainment,2,periclesprinceoftyre,1608 spread,2,periclesprinceoftyre,1608 estate,2,periclesprinceoftyre,1608 pleaseth,2,periclesprinceoftyre,1608 ours,2,periclesprinceoftyre,1608 tenor,2,periclesprinceoftyre,1608 kneels,2,periclesprinceoftyre,1608 travels,2,periclesprinceoftyre,1608 slain,2,periclesprinceoftyre,1608 Soft,2,periclesprinceoftyre,1608 counsellor,2,periclesprinceoftyre,1608 misery,2,periclesprinceoftyre,1608 mouth,2,periclesprinceoftyre,1608 freely,2,periclesprinceoftyre,1608 graceful,2,periclesprinceoftyre,1608 doors,2,periclesprinceoftyre,1608 other's,2,periclesprinceoftyre,1608 towards,2,periclesprinceoftyre,1608 sacrifice,2,periclesprinceoftyre,1608 arrived,2,periclesprinceoftyre,1608 qualities,2,periclesprinceoftyre,1608 prize,2,periclesprinceoftyre,1608 foolish,2,periclesprinceoftyre,1608 bloods,2,periclesprinceoftyre,1608 Could,2,periclesprinceoftyre,1608 dearest,2,periclesprinceoftyre,1608 I'ld,2,periclesprinceoftyre,1608 quench,2,periclesprinceoftyre,1608 because,2,periclesprinceoftyre,1608 starved,2,periclesprinceoftyre,1608 vision,2,periclesprinceoftyre,1608 craves,2,periclesprinceoftyre,1608 mountain,2,periclesprinceoftyre,1608 higher,2,periclesprinceoftyre,1608 marvel,2,periclesprinceoftyre,1608 casket,2,periclesprinceoftyre,1608 trouble,2,periclesprinceoftyre,1608 mistress',2,periclesprinceoftyre,1608 wrath,2,periclesprinceoftyre,1608 living,2,periclesprinceoftyre,1608 louder,2,periclesprinceoftyre,1608 bequeath,2,periclesprinceoftyre,1608 close,2,periclesprinceoftyre,1608 opinion,2,periclesprinceoftyre,1608 flies,2,periclesprinceoftyre,1608 sake,2,periclesprinceoftyre,1608 purchase,2,periclesprinceoftyre,1608 twelvemonth,2,periclesprinceoftyre,1608 five,2,periclesprinceoftyre,1608 message,2,periclesprinceoftyre,1608 provoke,2,periclesprinceoftyre,1608 stomach,2,periclesprinceoftyre,1608 bread,2,periclesprinceoftyre,1608 says,2,periclesprinceoftyre,1608 woes,2,periclesprinceoftyre,1608 ring,2,periclesprinceoftyre,1608 third,2,periclesprinceoftyre,1608 protect,2,periclesprinceoftyre,1608 Sure,2,periclesprinceoftyre,1608 Lucina,2,periclesprinceoftyre,1608 ripe,2,periclesprinceoftyre,1608 Gower,2,periclesprinceoftyre,1608 crown'd,2,periclesprinceoftyre,1608 Thus,2,periclesprinceoftyre,1608 decreed,2,periclesprinceoftyre,1608 dust,2,periclesprinceoftyre,1608 called,2,periclesprinceoftyre,1608 'The,2,periclesprinceoftyre,1608 between,2,periclesprinceoftyre,1608 intent,2,periclesprinceoftyre,1608 threatens,2,periclesprinceoftyre,1608 pride,2,periclesprinceoftyre,1608 Princes,2,periclesprinceoftyre,1608 split,2,periclesprinceoftyre,1608 bounty,2,periclesprinceoftyre,1608 hair,2,periclesprinceoftyre,1608 Greece,2,periclesprinceoftyre,1608 watery,2,periclesprinceoftyre,1608 earthly,2,periclesprinceoftyre,1608 poison,2,periclesprinceoftyre,1608 wreath,2,periclesprinceoftyre,1608 listening,2,periclesprinceoftyre,1608 coffer,2,periclesprinceoftyre,1608 anger,2,periclesprinceoftyre,1608 bitumed,2,periclesprinceoftyre,1608 womb,2,periclesprinceoftyre,1608 dumb,2,periclesprinceoftyre,1608 lust,2,periclesprinceoftyre,1608 wondrous,2,periclesprinceoftyre,1608 dull,2,periclesprinceoftyre,1608 waste,2,periclesprinceoftyre,1608 gifts,2,periclesprinceoftyre,1608 compare,2,periclesprinceoftyre,1608 sails,2,periclesprinceoftyre,1608 grieve,2,periclesprinceoftyre,1608 hunger,2,periclesprinceoftyre,1608 durst,2,periclesprinceoftyre,1608 perfections,2,periclesprinceoftyre,1608 wept,2,periclesprinceoftyre,1608 giving,2,periclesprinceoftyre,1608 diamonds,2,periclesprinceoftyre,1608 That's,2,periclesprinceoftyre,1608 cares,2,periclesprinceoftyre,1608 fame,2,periclesprinceoftyre,1608 misfortune,2,periclesprinceoftyre,1608 woeful,2,periclesprinceoftyre,1608 pleased,2,periclesprinceoftyre,1608 work,2,periclesprinceoftyre,1608 threw,2,periclesprinceoftyre,1608 perfect,2,periclesprinceoftyre,1608 passion,2,periclesprinceoftyre,1608 lists,2,periclesprinceoftyre,1608 fill,2,periclesprinceoftyre,1608 married,2,periclesprinceoftyre,1608 perceive,2,periclesprinceoftyre,1608 patient,2,periclesprinceoftyre,1608 scholars,2,periclesprinceoftyre,1608 waves,2,periclesprinceoftyre,1608 hour,2,periclesprinceoftyre,1608 meaning,2,periclesprinceoftyre,1608 public,2,periclesprinceoftyre,1608 large,2,periclesprinceoftyre,1608 named,2,periclesprinceoftyre,1608 Welcome,2,periclesprinceoftyre,1608 lights,2,periclesprinceoftyre,1608 gallant,2,periclesprinceoftyre,1608 cup,2,periclesprinceoftyre,1608 otherwise,2,periclesprinceoftyre,1608 carry,2,periclesprinceoftyre,1608 reproof,2,periclesprinceoftyre,1608 holds,2,periclesprinceoftyre,1608 swears,2,periclesprinceoftyre,1608 quit,2,periclesprinceoftyre,1608 short,2,periclesprinceoftyre,1608 None,2,periclesprinceoftyre,1608 virginity,2,periclesprinceoftyre,1608 greet,2,periclesprinceoftyre,1608 hollow,2,periclesprinceoftyre,1608 Although,2,periclesprinceoftyre,1608 spices,2,periclesprinceoftyre,1608 presents,2,periclesprinceoftyre,1608 streets,2,periclesprinceoftyre,1608 boxes,2,periclesprinceoftyre,1608 provision,2,periclesprinceoftyre,1608 bawd,2,periclesprinceoftyre,1608 hairs,2,periclesprinceoftyre,1608 fourteen,2,periclesprinceoftyre,1608 along,2,periclesprinceoftyre,1608 commission,2,periclesprinceoftyre,1608 alone,2,periclesprinceoftyre,1608 Marina's,2,periclesprinceoftyre,1608 Juno,2,periclesprinceoftyre,1608 endowments,2,periclesprinceoftyre,1608 low,2,periclesprinceoftyre,1608 delightful,2,periclesprinceoftyre,1608 drunk,2,periclesprinceoftyre,1608 faithfulness,2,periclesprinceoftyre,1608 others',2,periclesprinceoftyre,1608 Resolve,2,periclesprinceoftyre,1608 corn,2,periclesprinceoftyre,1608 traitor,2,periclesprinceoftyre,1608 sacred,2,periclesprinceoftyre,1608 heavenly,2,periclesprinceoftyre,1608 'twill,2,periclesprinceoftyre,1608 tree,2,periclesprinceoftyre,1608 briefly,2,periclesprinceoftyre,1608 Know,2,periclesprinceoftyre,1608 therein,2,periclesprinceoftyre,1608 Through,2,periclesprinceoftyre,1608 entreat,2,periclesprinceoftyre,1608 huge,2,periclesprinceoftyre,1608 suffice,2,periclesprinceoftyre,1608 beheld,2,periclesprinceoftyre,1608 self,2,periclesprinceoftyre,1608 pavilion,2,periclesprinceoftyre,1608 Neither,2,periclesprinceoftyre,1608 blast,2,periclesprinceoftyre,1608 triumphs,2,periclesprinceoftyre,1608 bags,2,periclesprinceoftyre,1608 triumph,2,periclesprinceoftyre,1608 principal,2,periclesprinceoftyre,1608 Nothing,2,periclesprinceoftyre,1608 imagination,2,periclesprinceoftyre,1608 clouds,2,periclesprinceoftyre,1608 spirits,2,periclesprinceoftyre,1608 distressed,2,periclesprinceoftyre,1608 spite,2,periclesprinceoftyre,1608 seldom,2,periclesprinceoftyre,1608 dread,2,periclesprinceoftyre,1608 abuse,2,periclesprinceoftyre,1608 ladies,2,periclesprinceoftyre,1608 ravished,2,periclesprinceoftyre,1608 fled,2,periclesprinceoftyre,1608 eleven,2,periclesprinceoftyre,1608 harmony,2,periclesprinceoftyre,1608 KNIGHTS,2,periclesprinceoftyre,1608 E'er,2,periclesprinceoftyre,1608 thither,2,periclesprinceoftyre,1608 gets,2,periclesprinceoftyre,1608 going,2,periclesprinceoftyre,1608 spring,2,periclesprinceoftyre,1608 witness,2,periclesprinceoftyre,1608 respect,2,periclesprinceoftyre,1608 harsh,2,periclesprinceoftyre,1608 frame,2,periclesprinceoftyre,1608 due,2,periclesprinceoftyre,1608 ensues,2,periclesprinceoftyre,1608 miseries,2,periclesprinceoftyre,1608 top,2,periclesprinceoftyre,1608 Wishing,2,periclesprinceoftyre,1608 swallowed,2,periclesprinceoftyre,1608 reverend,2,periclesprinceoftyre,1608 months,2,periclesprinceoftyre,1608 Bring,2,periclesprinceoftyre,1608 Until,2,periclesprinceoftyre,1608 princes',2,periclesprinceoftyre,1608 regent,2,periclesprinceoftyre,1608 behold,2,periclesprinceoftyre,1608 Take,2,periclesprinceoftyre,1608 obedient,2,periclesprinceoftyre,1608 greatness,2,periclesprinceoftyre,1608 pirates,2,periclesprinceoftyre,1608 drown'd,2,periclesprinceoftyre,1608 Fair,2,periclesprinceoftyre,1608 justly,2,periclesprinceoftyre,1608 say'd,2,periclesprinceoftyre,1608 forbear,2,periclesprinceoftyre,1608 repair,2,periclesprinceoftyre,1608 hangman,2,periclesprinceoftyre,1608 throng'd,2,periclesprinceoftyre,1608 din,2,periclesprinceoftyre,1608 order,2,periclesprinceoftyre,1608 enemy,2,periclesprinceoftyre,1608 exeunt,2,periclesprinceoftyre,1608 summer,2,periclesprinceoftyre,1608 told,3,periclesprinceoftyre,1608 speech,3,periclesprinceoftyre,1608 wicked,3,periclesprinceoftyre,1608 day's,3,periclesprinceoftyre,1608 Never,3,periclesprinceoftyre,1608 Tell,3,periclesprinceoftyre,1608 chest,3,periclesprinceoftyre,1608 prosperous,3,periclesprinceoftyre,1608 withal,3,periclesprinceoftyre,1608 calls,3,periclesprinceoftyre,1608 truth,3,periclesprinceoftyre,1608 pleasures,3,periclesprinceoftyre,1608 works,3,periclesprinceoftyre,1608 joys,3,periclesprinceoftyre,1608 cheeks,3,periclesprinceoftyre,1608 early,3,periclesprinceoftyre,1608 charge,3,periclesprinceoftyre,1608 conscience,3,periclesprinceoftyre,1608 draw,3,periclesprinceoftyre,1608 relieve,3,periclesprinceoftyre,1608 saw,3,periclesprinceoftyre,1608 resolve,3,periclesprinceoftyre,1608 heat,3,periclesprinceoftyre,1608 golden,3,periclesprinceoftyre,1608 riches,3,periclesprinceoftyre,1608 wait,3,periclesprinceoftyre,1608 black,3,periclesprinceoftyre,1608 view,3,periclesprinceoftyre,1608 sung,3,periclesprinceoftyre,1608 Get,3,periclesprinceoftyre,1608 against,3,periclesprinceoftyre,1608 walk,3,periclesprinceoftyre,1608 virtuous,3,periclesprinceoftyre,1608 slaughter,3,periclesprinceoftyre,1608 Walk,3,periclesprinceoftyre,1608 sworn,3,periclesprinceoftyre,1608 Their,3,periclesprinceoftyre,1608 livery,3,periclesprinceoftyre,1608 second,3,periclesprinceoftyre,1608 ourselves,3,periclesprinceoftyre,1608 worst,3,periclesprinceoftyre,1608 There,3,periclesprinceoftyre,1608 kill'd,3,periclesprinceoftyre,1608 bride,3,periclesprinceoftyre,1608 cease,3,periclesprinceoftyre,1608 punish,3,periclesprinceoftyre,1608 grow,3,periclesprinceoftyre,1608 mirth,3,periclesprinceoftyre,1608 knees,3,periclesprinceoftyre,1608 wise,3,periclesprinceoftyre,1608 custom,3,periclesprinceoftyre,1608 thrown,3,periclesprinceoftyre,1608 succeed,3,periclesprinceoftyre,1608 sense,3,periclesprinceoftyre,1608 wars,3,periclesprinceoftyre,1608 meat,3,periclesprinceoftyre,1608 goddess,3,periclesprinceoftyre,1608 knowledge,3,periclesprinceoftyre,1608 life's,3,periclesprinceoftyre,1608 stir,3,periclesprinceoftyre,1608 Hold,3,periclesprinceoftyre,1608 What's,3,periclesprinceoftyre,1608 offend,3,periclesprinceoftyre,1608 patience,3,periclesprinceoftyre,1608 govern,3,periclesprinceoftyre,1608 kings,3,periclesprinceoftyre,1608 kept,3,periclesprinceoftyre,1608 stay,3,periclesprinceoftyre,1608 wisdom,3,periclesprinceoftyre,1608 bless,3,periclesprinceoftyre,1608 quiet,3,periclesprinceoftyre,1608 obey,3,periclesprinceoftyre,1608 sought,3,periclesprinceoftyre,1608 gave,3,periclesprinceoftyre,1608 coffin,3,periclesprinceoftyre,1608 altar,3,periclesprinceoftyre,1608 yon,3,periclesprinceoftyre,1608 jewel,3,periclesprinceoftyre,1608 twice,3,periclesprinceoftyre,1608 travel,3,periclesprinceoftyre,1608 used,3,periclesprinceoftyre,1608 God,3,periclesprinceoftyre,1608 storm,3,periclesprinceoftyre,1608 government,3,periclesprinceoftyre,1608 deep,3,periclesprinceoftyre,1608 breast,3,periclesprinceoftyre,1608 tongues,3,periclesprinceoftyre,1608 Unless,3,periclesprinceoftyre,1608 dwell,3,periclesprinceoftyre,1608 Besides,3,periclesprinceoftyre,1608 husband,3,periclesprinceoftyre,1608 Yon,3,periclesprinceoftyre,1608 Neptune's,3,periclesprinceoftyre,1608 move,3,periclesprinceoftyre,1608 necessity,3,periclesprinceoftyre,1608 train,3,periclesprinceoftyre,1608 loves,3,periclesprinceoftyre,1608 Yes,3,periclesprinceoftyre,1608 resolved,3,periclesprinceoftyre,1608 less,3,periclesprinceoftyre,1608 spend,3,periclesprinceoftyre,1608 lose,3,periclesprinceoftyre,1608 act,3,periclesprinceoftyre,1608 choice,3,periclesprinceoftyre,1608 outward,3,periclesprinceoftyre,1608 Brought,3,periclesprinceoftyre,1608 repeat,3,periclesprinceoftyre,1608 hang,3,periclesprinceoftyre,1608 shun,3,periclesprinceoftyre,1608 Lady,3,periclesprinceoftyre,1608 mighty,3,periclesprinceoftyre,1608 praise,3,periclesprinceoftyre,1608 She's,3,periclesprinceoftyre,1608 arm,3,periclesprinceoftyre,1608 pain,3,periclesprinceoftyre,1608 money,3,periclesprinceoftyre,1608 fool,3,periclesprinceoftyre,1608 puts,3,periclesprinceoftyre,1608 armour,3,periclesprinceoftyre,1608 Than,3,periclesprinceoftyre,1608 Hark,3,periclesprinceoftyre,1608 fed,3,periclesprinceoftyre,1608 SHOW,3,periclesprinceoftyre,1608 Hath,3,periclesprinceoftyre,1608 Into,3,periclesprinceoftyre,1608 DUMB,3,periclesprinceoftyre,1608 Madam,3,periclesprinceoftyre,1608 water,3,periclesprinceoftyre,1608 action,3,periclesprinceoftyre,1608 Peace,3,periclesprinceoftyre,1608 Sit,3,periclesprinceoftyre,1608 several,3,periclesprinceoftyre,1608 powers,3,periclesprinceoftyre,1608 placed,3,periclesprinceoftyre,1608 yours,3,periclesprinceoftyre,1608 mourn,3,periclesprinceoftyre,1608 Some,3,periclesprinceoftyre,1608 expired,3,periclesprinceoftyre,1608 mild,3,periclesprinceoftyre,1608 strict,3,periclesprinceoftyre,1608 Makes,3,periclesprinceoftyre,1608 Philoten,3,periclesprinceoftyre,1608 presently,3,periclesprinceoftyre,1608 dream,3,periclesprinceoftyre,1608 mark,3,periclesprinceoftyre,1608 let's,3,periclesprinceoftyre,1608 billow,3,periclesprinceoftyre,1608 free,3,periclesprinceoftyre,1608 Being,3,periclesprinceoftyre,1608 sayest,3,periclesprinceoftyre,1608 desires,3,periclesprinceoftyre,1608 ones,3,periclesprinceoftyre,1608 breed,3,periclesprinceoftyre,1608 same,3,periclesprinceoftyre,1608 renown,3,periclesprinceoftyre,1608 win,3,periclesprinceoftyre,1608 oft,3,periclesprinceoftyre,1608 why,3,periclesprinceoftyre,1608 break,3,periclesprinceoftyre,1608 fetch,3,periclesprinceoftyre,1608 happiness,3,periclesprinceoftyre,1608 standing,3,periclesprinceoftyre,1608 you're,3,periclesprinceoftyre,1608 save,3,periclesprinceoftyre,1608 maidenhead,3,periclesprinceoftyre,1608 war,3,periclesprinceoftyre,1608 driven,3,periclesprinceoftyre,1608 oath,3,periclesprinceoftyre,1608 themselves,3,periclesprinceoftyre,1608 serve,3,periclesprinceoftyre,1608 coming,3,periclesprinceoftyre,1608 next,3,periclesprinceoftyre,1608 bells,3,periclesprinceoftyre,1608 takes,3,periclesprinceoftyre,1608 taken,3,periclesprinceoftyre,1608 consent,3,periclesprinceoftyre,1608 waters,3,periclesprinceoftyre,1608 angry,3,periclesprinceoftyre,1608 went,3,periclesprinceoftyre,1608 motto,3,periclesprinceoftyre,1608 cried,3,periclesprinceoftyre,1608 ground,3,periclesprinceoftyre,1608 desert,3,periclesprinceoftyre,1608 worm,3,periclesprinceoftyre,1608 overboard,3,periclesprinceoftyre,1608 minute,3,periclesprinceoftyre,1608 lordship,3,periclesprinceoftyre,1608 thunder,3,periclesprinceoftyre,1608 shown,3,periclesprinceoftyre,1608 Unto,3,periclesprinceoftyre,1608 herself,3,periclesprinceoftyre,1608 practise,3,periclesprinceoftyre,1608 bird,3,periclesprinceoftyre,1608 kiss,3,periclesprinceoftyre,1608 law,3,periclesprinceoftyre,1608 man's,3,periclesprinceoftyre,1608 thousand,3,periclesprinceoftyre,1608 convey,3,periclesprinceoftyre,1608 green,3,periclesprinceoftyre,1608 dangerous,3,periclesprinceoftyre,1608 lives,3,periclesprinceoftyre,1608 Where's,3,periclesprinceoftyre,1608 prithee,3,periclesprinceoftyre,1608 swear,3,periclesprinceoftyre,1608 kingdom,3,periclesprinceoftyre,1608 goodness,3,periclesprinceoftyre,1608 either,3,periclesprinceoftyre,1608 look'd,3,periclesprinceoftyre,1608 tells,3,periclesprinceoftyre,1608 sent,3,periclesprinceoftyre,1608 cold,3,periclesprinceoftyre,1608 goes,3,periclesprinceoftyre,1608 endured,3,periclesprinceoftyre,1608 slumber,3,periclesprinceoftyre,1608 queen's,3,periclesprinceoftyre,1608 least,3,periclesprinceoftyre,1608 careful,3,periclesprinceoftyre,1608 reward,3,periclesprinceoftyre,1608 doing,3,periclesprinceoftyre,1608 Before,3,periclesprinceoftyre,1608 lips,3,periclesprinceoftyre,1608 credit,3,periclesprinceoftyre,1608 late,3,periclesprinceoftyre,1608 silver,3,periclesprinceoftyre,1608 expense,3,periclesprinceoftyre,1608 attend,3,periclesprinceoftyre,1608 princely,3,periclesprinceoftyre,1608 honour's,3,periclesprinceoftyre,1608 follow,3,periclesprinceoftyre,1608 he'll,3,periclesprinceoftyre,1608 cross,3,periclesprinceoftyre,1608 awake,3,periclesprinceoftyre,1608 princess,3,periclesprinceoftyre,1608 undertake,3,periclesprinceoftyre,1608 wouldst,3,periclesprinceoftyre,1608 e'er,3,periclesprinceoftyre,1608 sharp,3,periclesprinceoftyre,1608 women,3,periclesprinceoftyre,1608 profession,4,periclesprinceoftyre,1608 o'er,4,periclesprinceoftyre,1608 resist,4,periclesprinceoftyre,1608 heir,4,periclesprinceoftyre,1608 Alas,4,periclesprinceoftyre,1608 haste,4,periclesprinceoftyre,1608 while,4,periclesprinceoftyre,1608 sight,4,periclesprinceoftyre,1608 honourable,4,periclesprinceoftyre,1608 appear,4,periclesprinceoftyre,1608 soul,4,periclesprinceoftyre,1608 Whom,4,periclesprinceoftyre,1608 reign,4,periclesprinceoftyre,1608 Whose,4,periclesprinceoftyre,1608 dance,4,periclesprinceoftyre,1608 Give,4,periclesprinceoftyre,1608 Jove,4,periclesprinceoftyre,1608 glass,4,periclesprinceoftyre,1608 something,4,periclesprinceoftyre,1608 bound,4,periclesprinceoftyre,1608 body,4,periclesprinceoftyre,1608 set,4,periclesprinceoftyre,1608 she'll,4,periclesprinceoftyre,1608 deliver,4,periclesprinceoftyre,1608 Such,4,periclesprinceoftyre,1608 winds,4,periclesprinceoftyre,1608 Lysimachus,4,periclesprinceoftyre,1608 Was,4,periclesprinceoftyre,1608 worse,4,periclesprinceoftyre,1608 wrong,4,periclesprinceoftyre,1608 heavens,4,periclesprinceoftyre,1608 common,4,periclesprinceoftyre,1608 actions,4,periclesprinceoftyre,1608 white,4,periclesprinceoftyre,1608 about,4,periclesprinceoftyre,1608 sun,4,periclesprinceoftyre,1608 companion,4,periclesprinceoftyre,1608 above,4,periclesprinceoftyre,1608 feed,4,periclesprinceoftyre,1608 PHILEMON,4,periclesprinceoftyre,1608 One,4,periclesprinceoftyre,1608 know'st,4,periclesprinceoftyre,1608 murder,4,periclesprinceoftyre,1608 parts,4,periclesprinceoftyre,1608 fairest,4,periclesprinceoftyre,1608 side,4,periclesprinceoftyre,1608 chamber,4,periclesprinceoftyre,1608 melancholy,4,periclesprinceoftyre,1608 pay,4,periclesprinceoftyre,1608 flowers,4,periclesprinceoftyre,1608 means,4,periclesprinceoftyre,1608 whole,4,periclesprinceoftyre,1608 Had,4,periclesprinceoftyre,1608 prove,4,periclesprinceoftyre,1608 Marshal,4,periclesprinceoftyre,1608 farewell,4,periclesprinceoftyre,1608 Whither,4,periclesprinceoftyre,1608 excellent,4,periclesprinceoftyre,1608 deck,4,periclesprinceoftyre,1608 lend,4,periclesprinceoftyre,1608 buried,4,periclesprinceoftyre,1608 commend,4,periclesprinceoftyre,1608 crave,4,periclesprinceoftyre,1608 loss,4,periclesprinceoftyre,1608 Diana's,4,periclesprinceoftyre,1608 appears,4,periclesprinceoftyre,1608 foul,4,periclesprinceoftyre,1608 delight,4,periclesprinceoftyre,1608 creatures,4,periclesprinceoftyre,1608 fresh,4,periclesprinceoftyre,1608 monument,4,periclesprinceoftyre,1608 thanks,4,periclesprinceoftyre,1608 net,4,periclesprinceoftyre,1608 change,4,periclesprinceoftyre,1608 DIANA,4,periclesprinceoftyre,1608 report,4,periclesprinceoftyre,1608 almost,4,periclesprinceoftyre,1608 bears,4,periclesprinceoftyre,1608 you'll,4,periclesprinceoftyre,1608 perform,4,periclesprinceoftyre,1608 awhile,4,periclesprinceoftyre,1608 general,4,periclesprinceoftyre,1608 device,4,periclesprinceoftyre,1608 mortal,4,periclesprinceoftyre,1608 shield,4,periclesprinceoftyre,1608 courage,4,periclesprinceoftyre,1608 labour,4,periclesprinceoftyre,1608 fish,4,periclesprinceoftyre,1608 father's,4,periclesprinceoftyre,1608 number,4,periclesprinceoftyre,1608 Made,4,periclesprinceoftyre,1608 letters,4,periclesprinceoftyre,1608 wed,4,periclesprinceoftyre,1608 taste,4,periclesprinceoftyre,1608 fits,4,periclesprinceoftyre,1608 heavy,4,periclesprinceoftyre,1608 receive,4,periclesprinceoftyre,1608 rage,4,periclesprinceoftyre,1608 cursed,4,periclesprinceoftyre,1608 weeping,4,periclesprinceoftyre,1608 Make,4,periclesprinceoftyre,1608 fly,4,periclesprinceoftyre,1608 do't,4,periclesprinceoftyre,1608 fit,4,periclesprinceoftyre,1608 they're,4,periclesprinceoftyre,1608 profit,4,periclesprinceoftyre,1608 depart,4,periclesprinceoftyre,1608 lay,4,periclesprinceoftyre,1608 given,4,periclesprinceoftyre,1608 holy,4,periclesprinceoftyre,1608 clear,4,periclesprinceoftyre,1608 strong,4,periclesprinceoftyre,1608 aught,4,periclesprinceoftyre,1608 presence,4,periclesprinceoftyre,1608 defend,4,periclesprinceoftyre,1608 courtesy,4,periclesprinceoftyre,1608 cry,4,periclesprinceoftyre,1608 hours,4,periclesprinceoftyre,1608 stored,4,periclesprinceoftyre,1608 undo,4,periclesprinceoftyre,1608 together,4,periclesprinceoftyre,1608 lie,4,periclesprinceoftyre,1608 eat,4,periclesprinceoftyre,1608 Great,4,periclesprinceoftyre,1608 physic,4,periclesprinceoftyre,1608 on't,4,periclesprinceoftyre,1608 virtue,4,periclesprinceoftyre,1608 beauty,4,periclesprinceoftyre,1608 content,4,periclesprinceoftyre,1608 He's,4,periclesprinceoftyre,1608 bred,4,periclesprinceoftyre,1608 private,4,periclesprinceoftyre,1608 kill,4,periclesprinceoftyre,1608 market,4,periclesprinceoftyre,1608 Nay,5,periclesprinceoftyre,1608 for't,5,periclesprinceoftyre,1608 royal,5,periclesprinceoftyre,1608 villain,5,periclesprinceoftyre,1608 Must,5,periclesprinceoftyre,1608 lies,5,periclesprinceoftyre,1608 Sailors,5,periclesprinceoftyre,1608 brothel,5,periclesprinceoftyre,1608 years,5,periclesprinceoftyre,1608 subjects,5,periclesprinceoftyre,1608 teach,5,periclesprinceoftyre,1608 further,5,periclesprinceoftyre,1608 Pirates,5,periclesprinceoftyre,1608 yield,5,periclesprinceoftyre,1608 't,5,periclesprinceoftyre,1608 looks,5,periclesprinceoftyre,1608 Attendants,5,periclesprinceoftyre,1608 daughter's,5,periclesprinceoftyre,1608 read,5,periclesprinceoftyre,1608 These,5,periclesprinceoftyre,1608 seems,5,periclesprinceoftyre,1608 want,5,periclesprinceoftyre,1608 friend,5,periclesprinceoftyre,1608 stop,5,periclesprinceoftyre,1608 mean,5,periclesprinceoftyre,1608 ESCANES,5,periclesprinceoftyre,1608 aboard,5,periclesprinceoftyre,1608 therefore,5,periclesprinceoftyre,1608 bad,5,periclesprinceoftyre,1608 creature,5,periclesprinceoftyre,1608 Go,5,periclesprinceoftyre,1608 beg,5,periclesprinceoftyre,1608 glorious,5,periclesprinceoftyre,1608 incest,5,periclesprinceoftyre,1608 Helicane,5,periclesprinceoftyre,1608 god,5,periclesprinceoftyre,1608 grief,5,periclesprinceoftyre,1608 dost,5,periclesprinceoftyre,1608 preserve,5,periclesprinceoftyre,1608 longer,5,periclesprinceoftyre,1608 tongue,5,periclesprinceoftyre,1608 sing,5,periclesprinceoftyre,1608 i',5,periclesprinceoftyre,1608 story,5,periclesprinceoftyre,1608 virgin,5,periclesprinceoftyre,1608 jewels,5,periclesprinceoftyre,1608 bear,5,periclesprinceoftyre,1608 Thaliard,5,periclesprinceoftyre,1608 loved,5,periclesprinceoftyre,1608 ready,5,periclesprinceoftyre,1608 hark,5,periclesprinceoftyre,1608 trade,5,periclesprinceoftyre,1608 hand,5,periclesprinceoftyre,1608 city,5,periclesprinceoftyre,1608 rough,5,periclesprinceoftyre,1608 Tyrus,5,periclesprinceoftyre,1608 ye,5,periclesprinceoftyre,1608 equal,5,periclesprinceoftyre,1608 indeed,5,periclesprinceoftyre,1608 lords,5,periclesprinceoftyre,1608 wonder,5,periclesprinceoftyre,1608 eye,5,periclesprinceoftyre,1608 strike,5,periclesprinceoftyre,1608 shores,5,periclesprinceoftyre,1608 Doth,5,periclesprinceoftyre,1608 See,5,periclesprinceoftyre,1608 Look,5,periclesprinceoftyre,1608 stars,5,periclesprinceoftyre,1608 tempest,5,periclesprinceoftyre,1608 We'll,5,periclesprinceoftyre,1608 sorrow,5,periclesprinceoftyre,1608 only,5,periclesprinceoftyre,1608 Can,5,periclesprinceoftyre,1608 rise,5,periclesprinceoftyre,1608 danger,5,periclesprinceoftyre,1608 what's,5,periclesprinceoftyre,1608 Hail,5,periclesprinceoftyre,1608 reason,5,periclesprinceoftyre,1608 hold,5,periclesprinceoftyre,1608 wilt,5,periclesprinceoftyre,1608 cut,5,periclesprinceoftyre,1608 prayers,5,periclesprinceoftyre,1608 Prince,5,periclesprinceoftyre,1608 babe,5,periclesprinceoftyre,1608 seek,5,periclesprinceoftyre,1608 Patience,5,periclesprinceoftyre,1608 Pray,5,periclesprinceoftyre,1608 mother's,5,periclesprinceoftyre,1608 sleep,5,periclesprinceoftyre,1608 straight,5,periclesprinceoftyre,1608 Messenger,5,periclesprinceoftyre,1608 glory,5,periclesprinceoftyre,1608 marriage,5,periclesprinceoftyre,1608 Marry,5,periclesprinceoftyre,1608 hurt,5,periclesprinceoftyre,1608 strange,5,periclesprinceoftyre,1608 honour'd,5,periclesprinceoftyre,1608 shalt,5,periclesprinceoftyre,1608 shame,5,periclesprinceoftyre,1608 kind,5,periclesprinceoftyre,1608 command,5,periclesprinceoftyre,1608 charity,5,periclesprinceoftyre,1608 crown,5,periclesprinceoftyre,1608 V,6,periclesprinceoftyre,1608 pity,6,periclesprinceoftyre,1608 Upon,6,periclesprinceoftyre,1608 yourself,6,periclesprinceoftyre,1608 sure,6,periclesprinceoftyre,1608 Tyrian,6,periclesprinceoftyre,1608 she's,6,periclesprinceoftyre,1608 stands,6,periclesprinceoftyre,1608 nothing,6,periclesprinceoftyre,1608 warrant,6,periclesprinceoftyre,1608 son,6,periclesprinceoftyre,1608 mother,6,periclesprinceoftyre,1608 offence,6,periclesprinceoftyre,1608 passes,6,periclesprinceoftyre,1608 Diana,6,periclesprinceoftyre,1608 Though,6,periclesprinceoftyre,1608 died,6,periclesprinceoftyre,1608 coast,6,periclesprinceoftyre,1608 else,6,periclesprinceoftyre,1608 Daughter,6,periclesprinceoftyre,1608 each,6,periclesprinceoftyre,1608 itself,6,periclesprinceoftyre,1608 bed,6,periclesprinceoftyre,1608 pleasure,6,periclesprinceoftyre,1608 bid,6,periclesprinceoftyre,1608 play,6,periclesprinceoftyre,1608 ears,6,periclesprinceoftyre,1608 weep,6,periclesprinceoftyre,1608 goodly,6,periclesprinceoftyre,1608 just,6,periclesprinceoftyre,1608 deed,6,periclesprinceoftyre,1608 gain,6,periclesprinceoftyre,1608 feast,6,periclesprinceoftyre,1608 o',6,periclesprinceoftyre,1608 course,6,periclesprinceoftyre,1608 ask,6,periclesprinceoftyre,1608 ship,6,periclesprinceoftyre,1608 far,6,periclesprinceoftyre,1608 griefs,6,periclesprinceoftyre,1608 faith,6,periclesprinceoftyre,1608 young,6,periclesprinceoftyre,1608 end,6,periclesprinceoftyre,1608 need,6,periclesprinceoftyre,1608 search,6,periclesprinceoftyre,1608 once,6,periclesprinceoftyre,1608 grave,6,periclesprinceoftyre,1608 stand,6,periclesprinceoftyre,1608 happy,6,periclesprinceoftyre,1608 old,6,periclesprinceoftyre,1608 three,6,periclesprinceoftyre,1608 rich,6,periclesprinceoftyre,1608 gentleman,6,periclesprinceoftyre,1608 honest,6,periclesprinceoftyre,1608 Cerimon,6,periclesprinceoftyre,1608 use,6,periclesprinceoftyre,1608 seen,6,periclesprinceoftyre,1608 vessel,6,periclesprinceoftyre,1608 sweet,6,periclesprinceoftyre,1608 Dian,6,periclesprinceoftyre,1608 sound,6,periclesprinceoftyre,1608 madam,6,periclesprinceoftyre,1608 purpose,6,periclesprinceoftyre,1608 Since,6,periclesprinceoftyre,1608 certain,6,periclesprinceoftyre,1608 power,6,periclesprinceoftyre,1608 days,7,periclesprinceoftyre,1608 help,7,periclesprinceoftyre,1608 joy,7,periclesprinceoftyre,1608 friends,7,periclesprinceoftyre,1608 Leonine,7,periclesprinceoftyre,1608 birth,7,periclesprinceoftyre,1608 head,7,periclesprinceoftyre,1608 another,7,periclesprinceoftyre,1608 Nor,7,periclesprinceoftyre,1608 Not,7,periclesprinceoftyre,1608 barge,7,periclesprinceoftyre,1608 cause,7,periclesprinceoftyre,1608 Servant,7,periclesprinceoftyre,1608 Dionyza,7,periclesprinceoftyre,1608 piece,7,periclesprinceoftyre,1608 turn,7,periclesprinceoftyre,1608 fellow,7,periclesprinceoftyre,1608 king's,7,periclesprinceoftyre,1608 'Faith,7,periclesprinceoftyre,1608 flesh,7,periclesprinceoftyre,1608 An,7,periclesprinceoftyre,1608 canst,7,periclesprinceoftyre,1608 On,7,periclesprinceoftyre,1608 temple,7,periclesprinceoftyre,1608 Good,7,periclesprinceoftyre,1608 kindness,7,periclesprinceoftyre,1608 put,7,periclesprinceoftyre,1608 breath,7,periclesprinceoftyre,1608 servant,7,periclesprinceoftyre,1608 dear,7,periclesprinceoftyre,1608 long,7,periclesprinceoftyre,1608 hands,7,periclesprinceoftyre,1608 thyself,7,periclesprinceoftyre,1608 Most,7,periclesprinceoftyre,1608 part,7,periclesprinceoftyre,1608 welcome,7,periclesprinceoftyre,1608 call'd,7,periclesprinceoftyre,1608 open,7,periclesprinceoftyre,1608 present,7,periclesprinceoftyre,1608 stranger,7,periclesprinceoftyre,1608 having,7,periclesprinceoftyre,1608 here's,7,periclesprinceoftyre,1608 Have,7,periclesprinceoftyre,1608 gentle,7,periclesprinceoftyre,1608 into,7,periclesprinceoftyre,1608 Therefore,7,periclesprinceoftyre,1608 ere,7,periclesprinceoftyre,1608 there's,7,periclesprinceoftyre,1608 They,7,periclesprinceoftyre,1608 state,7,periclesprinceoftyre,1608 Were,7,periclesprinceoftyre,1608 get,7,periclesprinceoftyre,1608 near,7,periclesprinceoftyre,1608 morrow,7,periclesprinceoftyre,1608 beseech,7,periclesprinceoftyre,1608 heard,7,periclesprinceoftyre,1608 believe,7,periclesprinceoftyre,1608 found,7,periclesprinceoftyre,1608 Pirate,7,periclesprinceoftyre,1608 Shall,7,periclesprinceoftyre,1608 fall,7,periclesprinceoftyre,1608 palace,7,periclesprinceoftyre,1608 shows,7,periclesprinceoftyre,1608 comfort,7,periclesprinceoftyre,1608 hope,7,periclesprinceoftyre,1608 nurse,7,periclesprinceoftyre,1608 ear,7,periclesprinceoftyre,1608 May,7,periclesprinceoftyre,1608 land,7,periclesprinceoftyre,1608 without,7,periclesprinceoftyre,1608 woman,7,periclesprinceoftyre,1608 Boult,7,periclesprinceoftyre,1608 ships,7,periclesprinceoftyre,1608 fortunes,7,periclesprinceoftyre,1608 country,8,periclesprinceoftyre,1608 tears,8,periclesprinceoftyre,1608 full,8,periclesprinceoftyre,1608 enough,8,periclesprinceoftyre,1608 Pentapolis,8,periclesprinceoftyre,1608 after,8,periclesprinceoftyre,1608 air,8,periclesprinceoftyre,1608 door,8,periclesprinceoftyre,1608 lost,8,periclesprinceoftyre,1608 ill,8,periclesprinceoftyre,1608 half,8,periclesprinceoftyre,1608 forth,8,periclesprinceoftyre,1608 through,8,periclesprinceoftyre,1608 high,8,periclesprinceoftyre,1608 mind,8,periclesprinceoftyre,1608 known,8,periclesprinceoftyre,1608 woe,8,periclesprinceoftyre,1608 thine,8,periclesprinceoftyre,1608 Even,8,periclesprinceoftyre,1608 glad,8,periclesprinceoftyre,1608 letter,8,periclesprinceoftyre,1608 gentlemen,8,periclesprinceoftyre,1608 gives,8,periclesprinceoftyre,1608 seas,8,periclesprinceoftyre,1608 parentage,8,periclesprinceoftyre,1608 nature,8,periclesprinceoftyre,1608 peace,9,periclesprinceoftyre,1608 Would,9,periclesprinceoftyre,1608 Knights,9,periclesprinceoftyre,1608 sit,9,periclesprinceoftyre,1608 sin,9,periclesprinceoftyre,1608 light,9,periclesprinceoftyre,1608 within,9,periclesprinceoftyre,1608 doubt,9,periclesprinceoftyre,1608 Our,9,periclesprinceoftyre,1608 princes,9,periclesprinceoftyre,1608 wind,9,periclesprinceoftyre,1608 knights,9,periclesprinceoftyre,1608 pretty,9,periclesprinceoftyre,1608 Do,9,periclesprinceoftyre,1608 he's,9,periclesprinceoftyre,1608 His,9,periclesprinceoftyre,1608 Be,9,periclesprinceoftyre,1608 blood,9,periclesprinceoftyre,1608 down,9,periclesprinceoftyre,1608 Like,9,periclesprinceoftyre,1608 does,9,periclesprinceoftyre,1608 that's,9,periclesprinceoftyre,1608 earth,9,periclesprinceoftyre,1608 Are,9,periclesprinceoftyre,1608 very,9,periclesprinceoftyre,1608 many,9,periclesprinceoftyre,1608 blow,9,periclesprinceoftyre,1608 over,9,periclesprinceoftyre,1608 could,9,periclesprinceoftyre,1608 court,9,periclesprinceoftyre,1608 fortune,9,periclesprinceoftyre,1608 word,9,periclesprinceoftyre,1608 find,9,periclesprinceoftyre,1608 Simonides,9,periclesprinceoftyre,1608 Let,9,periclesprinceoftyre,1608 Lychorida,9,periclesprinceoftyre,1608 we'll,9,periclesprinceoftyre,1608 seem,9,periclesprinceoftyre,1608 Gentlemen,9,periclesprinceoftyre,1608 return,9,periclesprinceoftyre,1608 remember,9,periclesprinceoftyre,1608 Thy,9,periclesprinceoftyre,1608 himself,9,periclesprinceoftyre,1608 care,10,periclesprinceoftyre,1608 ways,10,periclesprinceoftyre,1608 desire,10,periclesprinceoftyre,1608 III,10,periclesprinceoftyre,1608 At,10,periclesprinceoftyre,1608 since,10,periclesprinceoftyre,1608 LYCHORIDA,10,periclesprinceoftyre,1608 gold,10,periclesprinceoftyre,1608 whose,10,periclesprinceoftyre,1608 gone,10,periclesprinceoftyre,1608 grace,10,periclesprinceoftyre,1608 governor,10,periclesprinceoftyre,1608 though,10,periclesprinceoftyre,1608 hast,10,periclesprinceoftyre,1608 King,10,periclesprinceoftyre,1608 maid,10,periclesprinceoftyre,1608 myself,10,periclesprinceoftyre,1608 All,10,periclesprinceoftyre,1608 Cleon,10,periclesprinceoftyre,1608 off,10,periclesprinceoftyre,1608 heart,10,periclesprinceoftyre,1608 arms,10,periclesprinceoftyre,1608 till,10,periclesprinceoftyre,1608 home,10,periclesprinceoftyre,1608 thank,10,periclesprinceoftyre,1608 hither,10,periclesprinceoftyre,1608 thoughts,10,periclesprinceoftyre,1608 last,10,periclesprinceoftyre,1608 Did,10,periclesprinceoftyre,1608 die,10,periclesprinceoftyre,1608 Will,11,periclesprinceoftyre,1608 thought,11,periclesprinceoftyre,1608 every,11,periclesprinceoftyre,1608 cast,11,periclesprinceoftyre,1608 call,11,periclesprinceoftyre,1608 away,11,periclesprinceoftyre,1608 born,11,periclesprinceoftyre,1608 Ay,11,periclesprinceoftyre,1608 music,11,periclesprinceoftyre,1608 II,11,periclesprinceoftyre,1608 IV,11,periclesprinceoftyre,1608 Re,11,periclesprinceoftyre,1608 left,11,periclesprinceoftyre,1608 those,11,periclesprinceoftyre,1608 show,11,periclesprinceoftyre,1608 Ephesus,11,periclesprinceoftyre,1608 Lords,11,periclesprinceoftyre,1608 fire,11,periclesprinceoftyre,1608 still,11,periclesprinceoftyre,1608 Thaisa,11,periclesprinceoftyre,1608 own,11,periclesprinceoftyre,1608 face,11,periclesprinceoftyre,1608 whence,11,periclesprinceoftyre,1608 makes,11,periclesprinceoftyre,1608 much,12,periclesprinceoftyre,1608 pray,12,periclesprinceoftyre,1608 worth,12,periclesprinceoftyre,1608 fear,12,periclesprinceoftyre,1608 Her,12,periclesprinceoftyre,1608 enter,12,periclesprinceoftyre,1608 said,12,periclesprinceoftyre,1608 noble,12,periclesprinceoftyre,1608 Antioch,12,periclesprinceoftyre,1608 room,12,periclesprinceoftyre,1608 From,12,periclesprinceoftyre,1608 THALIARD,12,periclesprinceoftyre,1608 Then,12,periclesprinceoftyre,1608 knight,12,periclesprinceoftyre,1608 Till,12,periclesprinceoftyre,1608 please,12,periclesprinceoftyre,1608 wife,12,periclesprinceoftyre,1608 first,12,periclesprinceoftyre,1608 true,12,periclesprinceoftyre,1608 cannot,12,periclesprinceoftyre,1608 mistress,13,periclesprinceoftyre,1608 came,13,periclesprinceoftyre,1608 better,13,periclesprinceoftyre,1608 bring,13,periclesprinceoftyre,1608 wish,13,periclesprinceoftyre,1608 best,13,periclesprinceoftyre,1608 Or,13,periclesprinceoftyre,1608 brought,13,periclesprinceoftyre,1608 little,13,periclesprinceoftyre,1608 before,13,periclesprinceoftyre,1608 thing,13,periclesprinceoftyre,1608 even,13,periclesprinceoftyre,1608 ne'er,13,periclesprinceoftyre,1608 thus,13,periclesprinceoftyre,1608 poor,13,periclesprinceoftyre,1608 Knight,13,periclesprinceoftyre,1608 the,525,periclesprinceoftyre,1608 Sailor,14,periclesprinceoftyre,1608 Helicanus,14,periclesprinceoftyre,1608 doth,14,periclesprinceoftyre,1608 'tis,14,periclesprinceoftyre,1608 look,14,periclesprinceoftyre,1608 Yet,14,periclesprinceoftyre,1608 Antiochus,14,periclesprinceoftyre,1608 none,14,periclesprinceoftyre,1608 again,14,periclesprinceoftyre,1608 way,14,periclesprinceoftyre,1608 shore,14,periclesprinceoftyre,1608 unto,14,periclesprinceoftyre,1608 two,14,periclesprinceoftyre,1608 world,15,periclesprinceoftyre,1608 Aside,15,periclesprinceoftyre,1608 rest,15,periclesprinceoftyre,1608 has,15,periclesprinceoftyre,1608 keep,15,periclesprinceoftyre,1608 Mytilene,15,periclesprinceoftyre,1608 comes,15,periclesprinceoftyre,1608 ever,15,periclesprinceoftyre,1608 day,15,periclesprinceoftyre,1608 master,15,periclesprinceoftyre,1608 live,15,periclesprinceoftyre,1608 other,15,periclesprinceoftyre,1608 lady,15,periclesprinceoftyre,1608 death,16,periclesprinceoftyre,1608 name,16,periclesprinceoftyre,1608 No,16,periclesprinceoftyre,1608 Is,16,periclesprinceoftyre,1608 It,16,periclesprinceoftyre,1608 night,16,periclesprinceoftyre,1608 most,16,periclesprinceoftyre,1608 art,16,periclesprinceoftyre,1608 where,16,periclesprinceoftyre,1608 fair,16,periclesprinceoftyre,1608 Pandar,16,periclesprinceoftyre,1608 time,16,periclesprinceoftyre,1608 queen,16,periclesprinceoftyre,1608 GOWER,16,periclesprinceoftyre,1608 let,16,periclesprinceoftyre,1608 LEONINE,16,periclesprinceoftyre,1608 being,16,periclesprinceoftyre,1608 When,16,periclesprinceoftyre,1608 might,16,periclesprinceoftyre,1608 both,17,periclesprinceoftyre,1608 prince,17,periclesprinceoftyre,1608 speak,17,periclesprinceoftyre,1608 child,17,periclesprinceoftyre,1608 nor,17,periclesprinceoftyre,1608 Third,17,periclesprinceoftyre,1608 great,17,periclesprinceoftyre,1608 house,17,periclesprinceoftyre,1608 leave,17,periclesprinceoftyre,1608 heaven,18,periclesprinceoftyre,1608 go,18,periclesprinceoftyre,1608 made,18,periclesprinceoftyre,1608 Sir,18,periclesprinceoftyre,1608 Well,18,periclesprinceoftyre,1608 'Tis,18,periclesprinceoftyre,1608 out,18,periclesprinceoftyre,1608 whom,18,periclesprinceoftyre,1608 ANTIOCHUS,18,periclesprinceoftyre,1608 ',19,periclesprinceoftyre,1608 hear,19,periclesprinceoftyre,1608 So,19,periclesprinceoftyre,1608 any,19,periclesprinceoftyre,1608 done,19,periclesprinceoftyre,1608 place,19,periclesprinceoftyre,1608 Where,19,periclesprinceoftyre,1608 In,20,periclesprinceoftyre,1608 Now,21,periclesprinceoftyre,1608 these,21,periclesprinceoftyre,1608 By,21,periclesprinceoftyre,1608 when,21,periclesprinceoftyre,1608 some,22,periclesprinceoftyre,1608 then,22,periclesprinceoftyre,1608 tell,22,periclesprinceoftyre,1608 Your,22,periclesprinceoftyre,1608 She,22,periclesprinceoftyre,1608 mine,22,periclesprinceoftyre,1608 think,22,periclesprinceoftyre,1608 eyes,22,periclesprinceoftyre,1608 Why,23,periclesprinceoftyre,1608 With,23,periclesprinceoftyre,1608 dead,23,periclesprinceoftyre,1608 how,23,periclesprinceoftyre,1608 Tarsus,23,periclesprinceoftyre,1608 Gentleman,23,periclesprinceoftyre,1608 father,23,periclesprinceoftyre,1608 SCENE,23,periclesprinceoftyre,1608 honour,24,periclesprinceoftyre,1608 Marina,24,periclesprinceoftyre,1608 than,25,periclesprinceoftyre,1608 Here,25,periclesprinceoftyre,1608 take,25,periclesprinceoftyre,1608 Exit,25,periclesprinceoftyre,1608 He,26,periclesprinceoftyre,1608 Exeunt,26,periclesprinceoftyre,1608 love,26,periclesprinceoftyre,1608 life,27,periclesprinceoftyre,1608 such,27,periclesprinceoftyre,1608 Of,27,periclesprinceoftyre,1608 been,27,periclesprinceoftyre,1608 ACT,27,periclesprinceoftyre,1608 This,27,periclesprinceoftyre,1608 DIONYZA,27,periclesprinceoftyre,1608 see,28,periclesprinceoftyre,1608 CERIMON,28,periclesprinceoftyre,1608 there,28,periclesprinceoftyre,1608 OF,28,periclesprinceoftyre,1608 Which,28,periclesprinceoftyre,1608 an,28,periclesprinceoftyre,1608 up,28,periclesprinceoftyre,1608 should,28,periclesprinceoftyre,1608 TYRE,28,periclesprinceoftyre,1608 Thou,28,periclesprinceoftyre,1608 PRINCE,28,periclesprinceoftyre,1608 man,28,periclesprinceoftyre,1608 say,29,periclesprinceoftyre,1608 We,29,periclesprinceoftyre,1608 who,29,periclesprinceoftyre,1608 CLEON,29,periclesprinceoftyre,1608 never,30,periclesprinceoftyre,1608 You,30,periclesprinceoftyre,1608 How,30,periclesprinceoftyre,1608 Tyre,30,periclesprinceoftyre,1608 too,30,periclesprinceoftyre,1608 Come,31,periclesprinceoftyre,1608 had,31,periclesprinceoftyre,1608 As,32,periclesprinceoftyre,1608 know,32,periclesprinceoftyre,1608 hath,32,periclesprinceoftyre,1608 men,32,periclesprinceoftyre,1608 were,33,periclesprinceoftyre,1608 did,33,periclesprinceoftyre,1608 king,33,periclesprinceoftyre,1608 yet,34,periclesprinceoftyre,1608 Pericles,35,periclesprinceoftyre,1608 give,36,periclesprinceoftyre,1608 here,37,periclesprinceoftyre,1608 sea,37,periclesprinceoftyre,1608 Fisherman,37,periclesprinceoftyre,1608 Lord,38,periclesprinceoftyre,1608 come,38,periclesprinceoftyre,1608 a,294,periclesprinceoftyre,1608 must,39,periclesprinceoftyre,1608 daughter,39,periclesprinceoftyre,1608 My,39,periclesprinceoftyre,1608 If,39,periclesprinceoftyre,1608 am,39,periclesprinceoftyre,1608 or,39,periclesprinceoftyre,1608 Who,40,periclesprinceoftyre,1608 Second,40,periclesprinceoftyre,1608 THAISA,40,periclesprinceoftyre,1608 make,41,periclesprinceoftyre,1608 now,41,periclesprinceoftyre,1608 one,41,periclesprinceoftyre,1608 may,41,periclesprinceoftyre,1608 upon,42,periclesprinceoftyre,1608 lord,42,periclesprinceoftyre,1608 more,43,periclesprinceoftyre,1608 which,44,periclesprinceoftyre,1608 For,44,periclesprinceoftyre,1608 HELICANUS,44,periclesprinceoftyre,1608 What,44,periclesprinceoftyre,1608 well,45,periclesprinceoftyre,1608 I'll,46,periclesprinceoftyre,1608 gods,46,periclesprinceoftyre,1608 of,302,periclesprinceoftyre,1608 BOULT,47,periclesprinceoftyre,1608 us,47,periclesprinceoftyre,1608 LYSIMACHUS,47,periclesprinceoftyre,1608 O,48,periclesprinceoftyre,1608 them,48,periclesprinceoftyre,1608 good,48,periclesprinceoftyre,1608 can,48,periclesprinceoftyre,1608 was,48,periclesprinceoftyre,1608 would,48,periclesprinceoftyre,1608 if,49,periclesprinceoftyre,1608 Bawd,49,periclesprinceoftyre,1608 SIMONIDES,49,periclesprinceoftyre,1608 no,50,periclesprinceoftyre,1608 sir,51,periclesprinceoftyre,1608 they,51,periclesprinceoftyre,1608 their,52,periclesprinceoftyre,1608 thy,53,periclesprinceoftyre,1608 First,54,periclesprinceoftyre,1608 Enter,54,periclesprinceoftyre,1608 from,54,periclesprinceoftyre,1608 on,55,periclesprinceoftyre,1608 shall,57,periclesprinceoftyre,1608 what,58,periclesprinceoftyre,1608 like,61,periclesprinceoftyre,1608 thee,61,periclesprinceoftyre,1608 That,62,periclesprinceoftyre,1608 you,318,periclesprinceoftyre,1608 But,63,periclesprinceoftyre,1608 we,64,periclesprinceoftyre,1608 A,65,periclesprinceoftyre,1608 thou,69,periclesprinceoftyre,1608 at,71,periclesprinceoftyre,1608 she,74,periclesprinceoftyre,1608 by,76,periclesprinceoftyre,1608 MARINA,77,periclesprinceoftyre,1608 so,77,periclesprinceoftyre,1608 our,78,periclesprinceoftyre,1608 him,80,periclesprinceoftyre,1608 all,80,periclesprinceoftyre,1608 are,81,periclesprinceoftyre,1608 do,83,periclesprinceoftyre,1608 will,86,periclesprinceoftyre,1608 but,89,periclesprinceoftyre,1608 To,90,periclesprinceoftyre,1608 he,93,periclesprinceoftyre,1608 and,357,periclesprinceoftyre,1608 as,102,periclesprinceoftyre,1608 I,363,periclesprinceoftyre,1608 The,108,periclesprinceoftyre,1608 his,109,periclesprinceoftyre,1608 this,123,periclesprinceoftyre,1608 be,127,periclesprinceoftyre,1608 is,130,periclesprinceoftyre,1608 have,131,periclesprinceoftyre,1608 for,133,periclesprinceoftyre,1608 with,136,periclesprinceoftyre,1608 it,140,periclesprinceoftyre,1608 her,143,periclesprinceoftyre,1608 that,144,periclesprinceoftyre,1608 not,146,periclesprinceoftyre,1608 me,163,periclesprinceoftyre,1608 And,166,periclesprinceoftyre,1608 your,174,periclesprinceoftyre,1608 PERICLES,177,periclesprinceoftyre,1608 to,434,periclesprinceoftyre,1608 in,200,periclesprinceoftyre,1608 my,205,periclesprinceoftyre,1608 fealty,1,twogentlemenofverona,1594 peopled,1,twogentlemenofverona,1594 plagues,1,twogentlemenofverona,1594 augury,1,twogentlemenofverona,1594 interpeter,1,twogentlemenofverona,1594 silken,1,twogentlemenofverona,1594 'You,1,twogentlemenofverona,1594 degenerate,1,twogentlemenofverona,1594 possibly,1,twogentlemenofverona,1594 regard,1,twogentlemenofverona,1594 o'er,1,twogentlemenofverona,1594 unwelcome,1,twogentlemenofverona,1594 quality,1,twogentlemenofverona,1594 forbid,1,twogentlemenofverona,1594 instruments,1,twogentlemenofverona,1594 B,1,twogentlemenofverona,1594 C,1,twogentlemenofverona,1594 advised,1,twogentlemenofverona,1594 puddings,1,twogentlemenofverona,1594 grey,1,twogentlemenofverona,1594 Silvia',1,twogentlemenofverona,1594 lamentable,1,twogentlemenofverona,1594 invisible,1,twogentlemenofverona,1594 smiles,1,twogentlemenofverona,1594 dispraised,1,twogentlemenofverona,1594 pestilence,1,twogentlemenofverona,1594 Proud,1,twogentlemenofverona,1594 fancy,1,twogentlemenofverona,1594 Valiant,1,twogentlemenofverona,1594 thou'dst,1,twogentlemenofverona,1594 pretended,1,twogentlemenofverona,1594 milkmaid,1,twogentlemenofverona,1594 dined,1,twogentlemenofverona,1594 darest,1,twogentlemenofverona,1594 anthem,1,twogentlemenofverona,1594 lamely,1,twogentlemenofverona,1594 motion,1,twogentlemenofverona,1594 guilt,1,twogentlemenofverona,1594 protestations,1,twogentlemenofverona,1594 Agent,1,twogentlemenofverona,1594 Hear,1,twogentlemenofverona,1594 Pity,1,twogentlemenofverona,1594 churlish,1,twogentlemenofverona,1594 double,1,twogentlemenofverona,1594 heir,1,twogentlemenofverona,1594 OUTLAWS,1,twogentlemenofverona,1594 infamy,1,twogentlemenofverona,1594 truer,1,twogentlemenofverona,1594 forswear,1,twogentlemenofverona,1594 pageants,1,twogentlemenofverona,1594 jolt,1,twogentlemenofverona,1594 business,1,twogentlemenofverona,1594 possible,1,twogentlemenofverona,1594 lament,1,twogentlemenofverona,1594 hinder,1,twogentlemenofverona,1594 whiteness,1,twogentlemenofverona,1594 spends,1,twogentlemenofverona,1594 shapeless,1,twogentlemenofverona,1594 shadowy,1,twogentlemenofverona,1594 shadows,1,twogentlemenofverona,1594 peruse,1,twogentlemenofverona,1594 dine,1,twogentlemenofverona,1594 rock,1,twogentlemenofverona,1594 'away,1,twogentlemenofverona,1594 Hero's,1,twogentlemenofverona,1594 clerkly,1,twogentlemenofverona,1594 Villain,1,twogentlemenofverona,1594 longs,1,twogentlemenofverona,1594 reasonless,1,twogentlemenofverona,1594 zeal,1,twogentlemenofverona,1594 outrun,1,twogentlemenofverona,1594 bonds,1,twogentlemenofverona,1594 rod,1,twogentlemenofverona,1594 suppose,1,twogentlemenofverona,1594 counterfeits,1,twogentlemenofverona,1594 steals,1,twogentlemenofverona,1594 western,1,twogentlemenofverona,1594 stopp'd,1,twogentlemenofverona,1594 turmoil,1,twogentlemenofverona,1594 Bear,1,twogentlemenofverona,1594 embark,1,twogentlemenofverona,1594 muse,1,twogentlemenofverona,1594 Women,1,twogentlemenofverona,1594 waxed,1,twogentlemenofverona,1594 easily,1,twogentlemenofverona,1594 testy,1,twogentlemenofverona,1594 waxen,1,twogentlemenofverona,1594 boys,1,twogentlemenofverona,1594 endless,1,twogentlemenofverona,1594 painter,1,twogentlemenofverona,1594 aimed,1,twogentlemenofverona,1594 melt,1,twogentlemenofverona,1594 dire,1,twogentlemenofverona,1594 wailing,1,twogentlemenofverona,1594 Warrant,1,twogentlemenofverona,1594 despised,1,twogentlemenofverona,1594 truly,1,twogentlemenofverona,1594 Nan,1,twogentlemenofverona,1594 suppliant,1,twogentlemenofverona,1594 Meaning,1,twogentlemenofverona,1594 sisters,1,twogentlemenofverona,1594 Muse,1,twogentlemenofverona,1594 writes,1,twogentlemenofverona,1594 clothes,1,twogentlemenofverona,1594 finger,1,twogentlemenofverona,1594 wreathe,1,twogentlemenofverona,1594 vain,1,twogentlemenofverona,1594 proceedings,1,twogentlemenofverona,1594 spake,1,twogentlemenofverona,1594 Especially,1,twogentlemenofverona,1594 Black,1,twogentlemenofverona,1594 recourse,1,twogentlemenofverona,1594 learn'd,1,twogentlemenofverona,1594 hearted,1,twogentlemenofverona,1594 steeple,1,twogentlemenofverona,1594 looked,1,twogentlemenofverona,1594 naked,1,twogentlemenofverona,1594 understand,1,twogentlemenofverona,1594 arms',1,twogentlemenofverona,1594 appear,1,twogentlemenofverona,1594 praising,1,twogentlemenofverona,1594 cave,1,twogentlemenofverona,1594 melodious,1,twogentlemenofverona,1594 although,1,twogentlemenofverona,1594 fury,1,twogentlemenofverona,1594 sour,1,twogentlemenofverona,1594 pined,1,twogentlemenofverona,1594 Provided,1,twogentlemenofverona,1594 thou'lt,1,twogentlemenofverona,1594 Dispose,1,twogentlemenofverona,1594 reformed,1,twogentlemenofverona,1594 press,1,twogentlemenofverona,1594 lieu,1,twogentlemenofverona,1594 sort,1,twogentlemenofverona,1594 lively,1,twogentlemenofverona,1594 Assure,1,twogentlemenofverona,1594 rail'd,1,twogentlemenofverona,1594 worshipp'd,1,twogentlemenofverona,1594 'noddy',1,twogentlemenofverona,1594 'baa,1,twogentlemenofverona,1594 tilts,1,twogentlemenofverona,1594 Garden,1,twogentlemenofverona,1594 lustily,1,twogentlemenofverona,1594 enfranchised,1,twogentlemenofverona,1594 nymph,1,twogentlemenofverona,1594 Whom,1,twogentlemenofverona,1594 Were't,1,twogentlemenofverona,1594 JULlA,1,twogentlemenofverona,1594 thicket,1,twogentlemenofverona,1594 cheeks,1,twogentlemenofverona,1594 unwilling,1,twogentlemenofverona,1594 PERSONAE,1,twogentlemenofverona,1594 weathercock,1,twogentlemenofverona,1594 Alphonso,1,twogentlemenofverona,1594 cloister,1,twogentlemenofverona,1594 saved,1,twogentlemenofverona,1594 early,1,twogentlemenofverona,1594 repulse,1,twogentlemenofverona,1594 cate,1,twogentlemenofverona,1594 confirming,1,twogentlemenofverona,1594 garment,1,twogentlemenofverona,1594 weepest,1,twogentlemenofverona,1594 worser,1,twogentlemenofverona,1594 Valentinus,1,twogentlemenofverona,1594 mercy,1,twogentlemenofverona,1594 Over,1,twogentlemenofverona,1594 strength,1,twogentlemenofverona,1594 perversely,1,twogentlemenofverona,1594 graces,1,twogentlemenofverona,1594 practises,1,twogentlemenofverona,1594 seven,1,twogentlemenofverona,1594 disdain,1,twogentlemenofverona,1594 sons,1,twogentlemenofverona,1594 graced,1,twogentlemenofverona,1594 surfeit,1,twogentlemenofverona,1594 thievery,1,twogentlemenofverona,1594 Survives,1,twogentlemenofverona,1594 universities,1,twogentlemenofverona,1594 principality,1,twogentlemenofverona,1594 mischances,1,twogentlemenofverona,1594 After,1,twogentlemenofverona,1594 wander'd,1,twogentlemenofverona,1594 draw,1,twogentlemenofverona,1594 pins,1,twogentlemenofverona,1594 sadly,1,twogentlemenofverona,1594 friend's,1,twogentlemenofverona,1594 drive,1,twogentlemenofverona,1594 spies,1,twogentlemenofverona,1594 whirlwind,1,twogentlemenofverona,1594 sole,1,twogentlemenofverona,1594 'What,1,twogentlemenofverona,1594 opposes,1,twogentlemenofverona,1594 Excuse,1,twogentlemenofverona,1594 sat,1,twogentlemenofverona,1594 bearing,1,twogentlemenofverona,1594 years,1,twogentlemenofverona,1594 mastership,1,twogentlemenofverona,1594 dance,1,twogentlemenofverona,1594 loiterer,1,twogentlemenofverona,1594 stream,1,twogentlemenofverona,1594 inhabit,1,twogentlemenofverona,1594 grows,1,twogentlemenofverona,1594 hour's,1,twogentlemenofverona,1594 Jove,1,twogentlemenofverona,1594 disprove,1,twogentlemenofverona,1594 pilgrimage,1,twogentlemenofverona,1594 confounds,1,twogentlemenofverona,1594 crying,1,twogentlemenofverona,1594 lime,1,twogentlemenofverona,1594 'Friend,1,twogentlemenofverona,1594 Provokes,1,twogentlemenofverona,1594 Pulling,1,twogentlemenofverona,1594 brother,1,twogentlemenofverona,1594 broker,1,twogentlemenofverona,1594 obdurate,1,twogentlemenofverona,1594 heap,1,twogentlemenofverona,1594 necessaries,1,twogentlemenofverona,1594 soho,1,twogentlemenofverona,1594 worthies,1,twogentlemenofverona,1594 spurns,1,twogentlemenofverona,1594 hearing,1,twogentlemenofverona,1594 soften,1,twogentlemenofverona,1594 Nicholas,1,twogentlemenofverona,1594 golden,1,twogentlemenofverona,1594 excelling,1,twogentlemenofverona,1594 testerned,1,twogentlemenofverona,1594 Tarry,1,twogentlemenofverona,1594 sixteen,1,twogentlemenofverona,1594 beseem,1,twogentlemenofverona,1594 Ethiope,1,twogentlemenofverona,1594 chains,1,twogentlemenofverona,1594 fools,1,twogentlemenofverona,1594 teach,1,twogentlemenofverona,1594 riches,1,twogentlemenofverona,1594 toys,1,twogentlemenofverona,1594 Nod,1,twogentlemenofverona,1594 blessed,1,twogentlemenofverona,1594 abode,1,twogentlemenofverona,1594 visit,1,twogentlemenofverona,1594 lesser,1,twogentlemenofverona,1594 coldly,1,twogentlemenofverona,1594 partner,1,twogentlemenofverona,1594 something,1,twogentlemenofverona,1594 asked,1,twogentlemenofverona,1594 moving,1,twogentlemenofverona,1594 oftentimes,1,twogentlemenofverona,1594 Gentle,1,twogentlemenofverona,1594 companies,1,twogentlemenofverona,1594 unholy,1,twogentlemenofverona,1594 Win,1,twogentlemenofverona,1594 towns,1,twogentlemenofverona,1594 impress,1,twogentlemenofverona,1594 view,1,twogentlemenofverona,1594 Perchance,1,twogentlemenofverona,1594 discovery,1,twogentlemenofverona,1594 Fellows,1,twogentlemenofverona,1594 deserve,1,twogentlemenofverona,1594 she's,1,twogentlemenofverona,1594 Twenty,1,twogentlemenofverona,1594 illumined,1,twogentlemenofverona,1594 acted,1,twogentlemenofverona,1594 Fills,1,twogentlemenofverona,1594 boat,1,twogentlemenofverona,1594 crusts,1,twogentlemenofverona,1594 wilderness,1,twogentlemenofverona,1594 deeper,1,twogentlemenofverona,1594 Confirm,1,twogentlemenofverona,1594 babble,1,twogentlemenofverona,1594 impossible,1,twogentlemenofverona,1594 aged,1,twogentlemenofverona,1594 'Whip,1,twogentlemenofverona,1594 robbing,1,twogentlemenofverona,1594 key,1,twogentlemenofverona,1594 agent,1,twogentlemenofverona,1594 fingering,1,twogentlemenofverona,1594 worthiest,1,twogentlemenofverona,1594 bastard,1,twogentlemenofverona,1594 disclosed,1,twogentlemenofverona,1594 wall,1,twogentlemenofverona,1594 sew,1,twogentlemenofverona,1594 vice,1,twogentlemenofverona,1594 virtuous,1,twogentlemenofverona,1594 plural,1,twogentlemenofverona,1594 deceived,1,twogentlemenofverona,1594 'Tell,1,twogentlemenofverona,1594 wake,1,twogentlemenofverona,1594 Write,1,twogentlemenofverona,1594 catching,1,twogentlemenofverona,1594 chronicled,1,twogentlemenofverona,1594 scoured,1,twogentlemenofverona,1594 she'ld,1,twogentlemenofverona,1594 'twas,1,twogentlemenofverona,1594 wedding,1,twogentlemenofverona,1594 bitterly,1,twogentlemenofverona,1594 laying,1,twogentlemenofverona,1594 lions,1,twogentlemenofverona,1594 geese,1,twogentlemenofverona,1594 ancestry,1,twogentlemenofverona,1594 concert,1,twogentlemenofverona,1594 spy,1,twogentlemenofverona,1594 concern,1,twogentlemenofverona,1594 confirmed,1,twogentlemenofverona,1594 help'd,1,twogentlemenofverona,1594 betideth,1,twogentlemenofverona,1594 lesson,1,twogentlemenofverona,1594 Himself,1,twogentlemenofverona,1594 Withdraw,1,twogentlemenofverona,1594 bringing,1,twogentlemenofverona,1594 erring,1,twogentlemenofverona,1594 sworn,1,twogentlemenofverona,1594 nourished,1,twogentlemenofverona,1594 subject,1,twogentlemenofverona,1594 deformity,1,twogentlemenofverona,1594 looking,1,twogentlemenofverona,1594 apparent,1,twogentlemenofverona,1594 melting,1,twogentlemenofverona,1594 Was,1,twogentlemenofverona,1594 War,1,twogentlemenofverona,1594 Recking,1,twogentlemenofverona,1594 kindle,1,twogentlemenofverona,1594 scour,1,twogentlemenofverona,1594 attends,1,twogentlemenofverona,1594 't,1,twogentlemenofverona,1594 sues,1,twogentlemenofverona,1594 acquainted,1,twogentlemenofverona,1594 cause,1,twogentlemenofverona,1594 disgrace,1,twogentlemenofverona,1594 deeply,1,twogentlemenofverona,1594 study,1,twogentlemenofverona,1594 adversity,1,twogentlemenofverona,1594 deserts,1,twogentlemenofverona,1594 sky,1,twogentlemenofverona,1594 Unheedful,1,twogentlemenofverona,1594 Music,1,twogentlemenofverona,1594 sadder,1,twogentlemenofverona,1594 lambs,1,twogentlemenofverona,1594 doubt,1,twogentlemenofverona,1594 dearth,1,twogentlemenofverona,1594 Unkind,1,twogentlemenofverona,1594 unreverend,1,twogentlemenofverona,1594 affect,1,twogentlemenofverona,1594 awful,1,twogentlemenofverona,1594 smaller,1,twogentlemenofverona,1594 daughter's,1,twogentlemenofverona,1594 Experience,1,twogentlemenofverona,1594 indifferent,1,twogentlemenofverona,1594 exhibition,1,twogentlemenofverona,1594 'kind,1,twogentlemenofverona,1594 swelling,1,twogentlemenofverona,1594 ourselves,1,twogentlemenofverona,1594 worst,1,twogentlemenofverona,1594 esteem,1,twogentlemenofverona,1594 vile,1,twogentlemenofverona,1594 merit,1,twogentlemenofverona,1594 Peruse,1,twogentlemenofverona,1594 sly,1,twogentlemenofverona,1594 thrusts,1,twogentlemenofverona,1594 felt,1,twogentlemenofverona,1594 guide,1,twogentlemenofverona,1594 breeches,1,twogentlemenofverona,1594 fight,1,twogentlemenofverona,1594 musing,1,twogentlemenofverona,1594 Forswear,1,twogentlemenofverona,1594 snow,1,twogentlemenofverona,1594 receives,1,twogentlemenofverona,1594 murmur,1,twogentlemenofverona,1594 conceit,1,twogentlemenofverona,1594 fawning,1,twogentlemenofverona,1594 granting,1,twogentlemenofverona,1594 Our,1,twogentlemenofverona,1594 heal'd,1,twogentlemenofverona,1594 chased,1,twogentlemenofverona,1594 ways,1,twogentlemenofverona,1594 lumpish,1,twogentlemenofverona,1594 rhyme,1,twogentlemenofverona,1594 common,1,twogentlemenofverona,1594 bore,1,twogentlemenofverona,1594 rounder,1,twogentlemenofverona,1594 loathes,1,twogentlemenofverona,1594 repentance,1,twogentlemenofverona,1594 civil,1,twogentlemenofverona,1594 kill'd,1,twogentlemenofverona,1594 absence,1,twogentlemenofverona,1594 Whereon,1,twogentlemenofverona,1594 falls,1,twogentlemenofverona,1594 exceeding,1,twogentlemenofverona,1594 Wise,1,twogentlemenofverona,1594 Wish,1,twogentlemenofverona,1594 encounter,1,twogentlemenofverona,1594 ruminate,1,twogentlemenofverona,1594 loose,1,twogentlemenofverona,1594 cherish,1,twogentlemenofverona,1594 commit,1,twogentlemenofverona,1594 instance,1,twogentlemenofverona,1594 willing,1,twogentlemenofverona,1594 Wherein,1,twogentlemenofverona,1594 shelving,1,twogentlemenofverona,1594 humble,1,twogentlemenofverona,1594 Gentlewoman,1,twogentlemenofverona,1594 biding,1,twogentlemenofverona,1594 sum,1,twogentlemenofverona,1594 sup,1,twogentlemenofverona,1594 paragon,1,twogentlemenofverona,1594 illiterate,1,twogentlemenofverona,1594 vanished,1,twogentlemenofverona,1594 complete,1,twogentlemenofverona,1594 companion,1,twogentlemenofverona,1594 fearful,1,twogentlemenofverona,1594 watchers,1,twogentlemenofverona,1594 feel,1,twogentlemenofverona,1594 cease,1,twogentlemenofverona,1594 speediest,1,twogentlemenofverona,1594 feet,1,twogentlemenofverona,1594 promise,1,twogentlemenofverona,1594 descent,1,twogentlemenofverona,1594 pinfold,1,twogentlemenofverona,1594 conceitless,1,twogentlemenofverona,1594 relish,1,twogentlemenofverona,1594 saucy,1,twogentlemenofverona,1594 brief,1,twogentlemenofverona,1594 flourishing,1,twogentlemenofverona,1594 Betideth,1,twogentlemenofverona,1594 tarriance,1,twogentlemenofverona,1594 conceal,1,twogentlemenofverona,1594 whisper,1,twogentlemenofverona,1594 protestation,1,twogentlemenofverona,1594 speaking,1,twogentlemenofverona,1594 choose,1,twogentlemenofverona,1594 rude,1,twogentlemenofverona,1594 prevent,1,twogentlemenofverona,1594 Bestow,1,twogentlemenofverona,1594 stuff'd,1,twogentlemenofverona,1594 soldier,1,twogentlemenofverona,1594 Banished,1,twogentlemenofverona,1594 ungovern'd,1,twogentlemenofverona,1594 shrink,1,twogentlemenofverona,1594 cavil,1,twogentlemenofverona,1594 bechance,1,twogentlemenofverona,1594 lament'st,1,twogentlemenofverona,1594 servants',1,twogentlemenofverona,1594 rend,1,twogentlemenofverona,1594 moment's,1,twogentlemenofverona,1594 tender'd,1,twogentlemenofverona,1594 leviathans,1,twogentlemenofverona,1594 Dare,1,twogentlemenofverona,1594 Stop,1,twogentlemenofverona,1594 wand,1,twogentlemenofverona,1594 deploring,1,twogentlemenofverona,1594 night's,1,twogentlemenofverona,1594 seems,1,twogentlemenofverona,1594 respective,1,twogentlemenofverona,1594 enjoined,1,twogentlemenofverona,1594 entertained,1,twogentlemenofverona,1594 dearer,1,twogentlemenofverona,1594 wipe,1,twogentlemenofverona,1594 Friend,1,twogentlemenofverona,1594 halloing,1,twogentlemenofverona,1594 hates,1,twogentlemenofverona,1594 Entreated,1,twogentlemenofverona,1594 diet,1,twogentlemenofverona,1594 wrongful,1,twogentlemenofverona,1594 immaculate,1,twogentlemenofverona,1594 died,1,twogentlemenofverona,1594 Dumb,1,twogentlemenofverona,1594 imperious,1,twogentlemenofverona,1594 resembleth,1,twogentlemenofverona,1594 froward,1,twogentlemenofverona,1594 travellers,1,twogentlemenofverona,1594 sense,1,twogentlemenofverona,1594 staying,1,twogentlemenofverona,1594 victuals,1,twogentlemenofverona,1594 malady,1,twogentlemenofverona,1594 stop,1,twogentlemenofverona,1594 voice,1,twogentlemenofverona,1594 wars,1,twogentlemenofverona,1594 stocks,1,twogentlemenofverona,1594 approacheth,1,twogentlemenofverona,1594 timeless,1,twogentlemenofverona,1594 wash,1,twogentlemenofverona,1594 boot,1,twogentlemenofverona,1594 There's,1,twogentlemenofverona,1594 ruled,1,twogentlemenofverona,1594 inhabits,1,twogentlemenofverona,1594 shedding,1,twogentlemenofverona,1594 boom,1,twogentlemenofverona,1594 gentlewoman's,1,twogentlemenofverona,1594 boon,1,twogentlemenofverona,1594 heardest,1,twogentlemenofverona,1594 bright,1,twogentlemenofverona,1594 praised,1,twogentlemenofverona,1594 parts,1,twogentlemenofverona,1594 sojourned,1,twogentlemenofverona,1594 spoke,1,twogentlemenofverona,1594 Repair,1,twogentlemenofverona,1594 wayward,1,twogentlemenofverona,1594 Wherewith,1,twogentlemenofverona,1594 hungry,1,twogentlemenofverona,1594 everlastingly,1,twogentlemenofverona,1594 Descended,1,twogentlemenofverona,1594 conditions,1,twogentlemenofverona,1594 nephew,1,twogentlemenofverona,1594 pills,1,twogentlemenofverona,1594 big,1,twogentlemenofverona,1594 wherefore,1,twogentlemenofverona,1594 nail,1,twogentlemenofverona,1594 preferr'd,1,twogentlemenofverona,1594 grievous,1,twogentlemenofverona,1594 unadvised,1,twogentlemenofverona,1594 stumble,1,twogentlemenofverona,1594 life's,1,twogentlemenofverona,1594 verily,1,twogentlemenofverona,1594 stir,1,twogentlemenofverona,1594 keys,1,twogentlemenofverona,1594 solicit,1,twogentlemenofverona,1594 slaves,1,twogentlemenofverona,1594 Moyses,1,twogentlemenofverona,1594 burning,1,twogentlemenofverona,1594 manners,1,twogentlemenofverona,1594 visibly,1,twogentlemenofverona,1594 melancholy,1,twogentlemenofverona,1594 commended,1,twogentlemenofverona,1594 hap,1,twogentlemenofverona,1594 precisely,1,twogentlemenofverona,1594 unmellow'd,1,twogentlemenofverona,1594 hat,1,twogentlemenofverona,1594 Pentecost,1,twogentlemenofverona,1594 Home,1,twogentlemenofverona,1594 sweeter,1,twogentlemenofverona,1594 Holy,1,twogentlemenofverona,1594 utter,1,twogentlemenofverona,1594 sign,1,twogentlemenofverona,1594 delivering,1,twogentlemenofverona,1594 delights,1,twogentlemenofverona,1594 exercise,1,twogentlemenofverona,1594 flattery,1,twogentlemenofverona,1594 Ah,1,twogentlemenofverona,1594 appeased,1,twogentlemenofverona,1594 stubborn,1,twogentlemenofverona,1594 Rehearse,1,twogentlemenofverona,1594 movingly,1,twogentlemenofverona,1594 dazzled,1,twogentlemenofverona,1594 loitering,1,twogentlemenofverona,1594 govern,1,twogentlemenofverona,1594 deeds,1,twogentlemenofverona,1594 Those,1,twogentlemenofverona,1594 reason's,1,twogentlemenofverona,1594 Counsel,1,twogentlemenofverona,1594 desperate,1,twogentlemenofverona,1594 Sovereign,1,twogentlemenofverona,1594 Hope,1,twogentlemenofverona,1594 twits,1,twogentlemenofverona,1594 Lo,1,twogentlemenofverona,1594 prodigious,1,twogentlemenofverona,1594 lands,1,twogentlemenofverona,1594 Stand,1,twogentlemenofverona,1594 proof,1,twogentlemenofverona,1594 cruel,1,twogentlemenofverona,1594 subscribe,1,twogentlemenofverona,1594 pities,1,twogentlemenofverona,1594 star,1,twogentlemenofverona,1594 exceed,1,twogentlemenofverona,1594 fantastic,1,twogentlemenofverona,1594 reasoning,1,twogentlemenofverona,1594 Oh,1,twogentlemenofverona,1594 braggardism,1,twogentlemenofverona,1594 finds,1,twogentlemenofverona,1594 changed,1,twogentlemenofverona,1594 parable,1,twogentlemenofverona,1594 Ha,1,twogentlemenofverona,1594 beg,1,twogentlemenofverona,1594 vanquished,1,twogentlemenofverona,1594 sovereignty,1,twogentlemenofverona,1594 team,1,twogentlemenofverona,1594 unruly,1,twogentlemenofverona,1594 blest,1,twogentlemenofverona,1594 whole,1,twogentlemenofverona,1594 bless,1,twogentlemenofverona,1594 deserved,1,twogentlemenofverona,1594 goods,1,twogentlemenofverona,1594 sport,1,twogentlemenofverona,1594 commendation,1,twogentlemenofverona,1594 past,1,twogentlemenofverona,1594 ears,1,twogentlemenofverona,1594 Almost,1,twogentlemenofverona,1594 pox,1,twogentlemenofverona,1594 Is't,1,twogentlemenofverona,1594 grandfather,1,twogentlemenofverona,1594 nice,1,twogentlemenofverona,1594 vesture,1,twogentlemenofverona,1594 VI,1,twogentlemenofverona,1594 Hapless,1,twogentlemenofverona,1594 monstrous,1,twogentlemenofverona,1594 Heavy,1,twogentlemenofverona,1594 sire,1,twogentlemenofverona,1594 became,1,twogentlemenofverona,1594 begot,1,twogentlemenofverona,1594 corrupted,1,twogentlemenofverona,1594 kiss'd,1,twogentlemenofverona,1594 nick,1,twogentlemenofverona,1594 wringing,1,twogentlemenofverona,1594 swarthy,1,twogentlemenofverona,1594 St,1,twogentlemenofverona,1594 Adieu,1,twogentlemenofverona,1594 offered,1,twogentlemenofverona,1594 trimm'd,1,twogentlemenofverona,1594 god,1,twogentlemenofverona,1594 intercept,1,twogentlemenofverona,1594 allycholly,1,twogentlemenofverona,1594 sought,1,twogentlemenofverona,1594 depending,1,twogentlemenofverona,1594 gold,1,twogentlemenofverona,1594 dolour,1,twogentlemenofverona,1594 whatever,1,twogentlemenofverona,1594 weed,1,twogentlemenofverona,1594 sith,1,twogentlemenofverona,1594 sits,1,twogentlemenofverona,1594 reckless,1,twogentlemenofverona,1594 sorry,1,twogentlemenofverona,1594 postern,1,twogentlemenofverona,1594 proportion,1,twogentlemenofverona,1594 sedge,1,twogentlemenofverona,1594 Open,1,twogentlemenofverona,1594 stray,1,twogentlemenofverona,1594 closest,1,twogentlemenofverona,1594 dignify,1,twogentlemenofverona,1594 behind,1,twogentlemenofverona,1594 bury,1,twogentlemenofverona,1594 befortune,1,twogentlemenofverona,1594 salute,1,twogentlemenofverona,1594 difference,1,twogentlemenofverona,1594 'thus,1,twogentlemenofverona,1594 kindness,1,twogentlemenofverona,1594 car,1,twogentlemenofverona,1594 cat,1,twogentlemenofverona,1594 Yourself,1,twogentlemenofverona,1594 prisoners,1,twogentlemenofverona,1594 ornament,1,twogentlemenofverona,1594 altar,1,twogentlemenofverona,1594 sorted,1,twogentlemenofverona,1594 devised,1,twogentlemenofverona,1594 learned,1,twogentlemenofverona,1594 Sirs,1,twogentlemenofverona,1594 gaze,1,twogentlemenofverona,1594 somewhat,1,twogentlemenofverona,1594 parle,1,twogentlemenofverona,1594 Behold,1,twogentlemenofverona,1594 idleness,1,twogentlemenofverona,1594 meaneth,1,twogentlemenofverona,1594 Saint,1,twogentlemenofverona,1594 'greed,1,twogentlemenofverona,1594 Put,1,twogentlemenofverona,1594 jealous,1,twogentlemenofverona,1594 SILVIA's,1,twogentlemenofverona,1594 sepulchre,1,twogentlemenofverona,1594 'Poor,1,twogentlemenofverona,1594 reportest,1,twogentlemenofverona,1594 legacy,1,twogentlemenofverona,1594 suddenly,1,twogentlemenofverona,1594 bended,1,twogentlemenofverona,1594 block,1,twogentlemenofverona,1594 curst,1,twogentlemenofverona,1594 Didst,1,twogentlemenofverona,1594 persuasion,1,twogentlemenofverona,1594 eaten,1,twogentlemenofverona,1594 disguising,1,twogentlemenofverona,1594 despise,1,twogentlemenofverona,1594 drowning,1,twogentlemenofverona,1594 'no,1,twogentlemenofverona,1594 extreme,1,twogentlemenofverona,1594 friendly,1,twogentlemenofverona,1594 tedious,1,twogentlemenofverona,1594 Inhabits,1,twogentlemenofverona,1594 beadsman,1,twogentlemenofverona,1594 testify,1,twogentlemenofverona,1594 beget,1,twogentlemenofverona,1594 likest,1,twogentlemenofverona,1594 frowns,1,twogentlemenofverona,1594 Urge,1,twogentlemenofverona,1594 disguise,1,twogentlemenofverona,1594 quips,1,twogentlemenofverona,1594 bees,1,twogentlemenofverona,1594 Enough,1,twogentlemenofverona,1594 gown,1,twogentlemenofverona,1594 admired,1,twogentlemenofverona,1594 stabb'd,1,twogentlemenofverona,1594 sins,1,twogentlemenofverona,1594 Vain,1,twogentlemenofverona,1594 Like,1,twogentlemenofverona,1594 'Twas,1,twogentlemenofverona,1594 Whither,1,twogentlemenofverona,1594 rejoice,1,twogentlemenofverona,1594 turns,1,twogentlemenofverona,1594 Trampling,1,twogentlemenofverona,1594 orderly,1,twogentlemenofverona,1594 upper,1,twogentlemenofverona,1594 month's,1,twogentlemenofverona,1594 chafed,1,twogentlemenofverona,1594 convey'd,1,twogentlemenofverona,1594 grandmother,1,twogentlemenofverona,1594 quite,1,twogentlemenofverona,1594 rifle,1,twogentlemenofverona,1594 river,1,twogentlemenofverona,1594 store,1,twogentlemenofverona,1594 Omitting,1,twogentlemenofverona,1594 noblemen,1,twogentlemenofverona,1594 enthralled,1,twogentlemenofverona,1594 contemptuously,1,twogentlemenofverona,1594 concealing,1,twogentlemenofverona,1594 engine,1,twogentlemenofverona,1594 promised,1,twogentlemenofverona,1594 mood,1,twogentlemenofverona,1594 image,1,twogentlemenofverona,1594 eloquence,1,twogentlemenofverona,1594 confess,1,twogentlemenofverona,1594 Cannot,1,twogentlemenofverona,1594 breast,1,twogentlemenofverona,1594 sheds,1,twogentlemenofverona,1594 torments,1,twogentlemenofverona,1594 keeping,1,twogentlemenofverona,1594 exercises,1,twogentlemenofverona,1594 uncompassionate,1,twogentlemenofverona,1594 aid,1,twogentlemenofverona,1594 instances,1,twogentlemenofverona,1594 SONG,1,twogentlemenofverona,1594 Here's,1,twogentlemenofverona,1594 stopt,1,twogentlemenofverona,1594 vow'dst,1,twogentlemenofverona,1594 Best,1,twogentlemenofverona,1594 repute,1,twogentlemenofverona,1594 current,1,twogentlemenofverona,1594 jewels,1,twogentlemenofverona,1594 intruder,1,twogentlemenofverona,1594 Ill,1,twogentlemenofverona,1594 Advise,1,twogentlemenofverona,1594 safe,1,twogentlemenofverona,1594 yoked,1,twogentlemenofverona,1594 wreck,1,twogentlemenofverona,1594 stoop,1,twogentlemenofverona,1594 gain,1,twogentlemenofverona,1594 newer,1,twogentlemenofverona,1594 tongues,1,twogentlemenofverona,1594 notes,1,twogentlemenofverona,1594 Eve's,1,twogentlemenofverona,1594 strung,1,twogentlemenofverona,1594 unworthy,1,twogentlemenofverona,1594 Aiming,1,twogentlemenofverona,1594 profaned,1,twogentlemenofverona,1594 liberal,1,twogentlemenofverona,1594 deaf,1,twogentlemenofverona,1594 seeing,1,twogentlemenofverona,1594 gild,1,twogentlemenofverona,1594 lent,1,twogentlemenofverona,1594 Last,1,twogentlemenofverona,1594 Return,1,twogentlemenofverona,1594 thrive,1,twogentlemenofverona,1594 rhymes,1,twogentlemenofverona,1594 enforce,1,twogentlemenofverona,1594 does,1,twogentlemenofverona,1594 dower,1,twogentlemenofverona,1594 boast,1,twogentlemenofverona,1594 unwillingly,1,twogentlemenofverona,1594 Mercatio,1,twogentlemenofverona,1594 ice,1,twogentlemenofverona,1594 'Here,1,twogentlemenofverona,1594 makest,1,twogentlemenofverona,1594 memory,1,twogentlemenofverona,1594 possess'd,1,twogentlemenofverona,1594 shed,1,twogentlemenofverona,1594 reckon,1,twogentlemenofverona,1594 privilege,1,twogentlemenofverona,1594 approach,1,twogentlemenofverona,1594 inscrutable,1,twogentlemenofverona,1594 onset,1,twogentlemenofverona,1594 displeased,1,twogentlemenofverona,1594 bless'd,1,twogentlemenofverona,1594 forgotten,1,twogentlemenofverona,1594 feast,1,twogentlemenofverona,1594 move,1,twogentlemenofverona,1594 committed,1,twogentlemenofverona,1594 fears,1,twogentlemenofverona,1594 Yonder,1,twogentlemenofverona,1594 month,1,twogentlemenofverona,1594 comment,1,twogentlemenofverona,1594 commendations,1,twogentlemenofverona,1594 engraved,1,twogentlemenofverona,1594 potentates,1,twogentlemenofverona,1594 necessity,1,twogentlemenofverona,1594 banish,1,twogentlemenofverona,1594 aside,1,twogentlemenofverona,1594 publisher,1,twogentlemenofverona,1594 shipped,1,twogentlemenofverona,1594 o',1,twogentlemenofverona,1594 thankful,1,twogentlemenofverona,1594 sluggardized,1,twogentlemenofverona,1594 beautified,1,twogentlemenofverona,1594 malignant,1,twogentlemenofverona,1594 account,1,twogentlemenofverona,1594 May't,1,twogentlemenofverona,1594 lout,1,twogentlemenofverona,1594 auburn,1,twogentlemenofverona,1594 studies,1,twogentlemenofverona,1594 temper,1,twogentlemenofverona,1594 crimes,1,twogentlemenofverona,1594 morn,1,twogentlemenofverona,1594 train,1,twogentlemenofverona,1594 noble,1,twogentlemenofverona,1594 expostulate,1,twogentlemenofverona,1594 stature,1,twogentlemenofverona,1594 environ,1,twogentlemenofverona,1594 Ursula,1,twogentlemenofverona,1594 endure,1,twogentlemenofverona,1594 lightly,1,twogentlemenofverona,1594 ado,1,twogentlemenofverona,1594 Wouldst,1,twogentlemenofverona,1594 agone,1,twogentlemenofverona,1594 Yes,1,twogentlemenofverona,1594 beholding,1,twogentlemenofverona,1594 ho,1,twogentlemenofverona,1594 speak'st,1,twogentlemenofverona,1594 Thrust,1,twogentlemenofverona,1594 achieved,1,twogentlemenofverona,1594 Servants,1,twogentlemenofverona,1594 agood,1,twogentlemenofverona,1594 spent,1,twogentlemenofverona,1594 angels',1,twogentlemenofverona,1594 lawlessly,1,twogentlemenofverona,1594 effectual,1,twogentlemenofverona,1594 twinkling,1,twogentlemenofverona,1594 swains,1,twogentlemenofverona,1594 drier,1,twogentlemenofverona,1594 ANTONIO's,1,twogentlemenofverona,1594 pissing,1,twogentlemenofverona,1594 bruising,1,twogentlemenofverona,1594 lets,1,twogentlemenofverona,1594 beauteous,1,twogentlemenofverona,1594 unheedfully,1,twogentlemenofverona,1594 natured,1,twogentlemenofverona,1594 decks,1,twogentlemenofverona,1594 nimble,1,twogentlemenofverona,1594 It's,1,twogentlemenofverona,1594 ready,1,twogentlemenofverona,1594 dully,1,twogentlemenofverona,1594 glides,1,twogentlemenofverona,1594 composed,1,twogentlemenofverona,1594 expels,1,twogentlemenofverona,1594 men's,1,twogentlemenofverona,1594 endued,1,twogentlemenofverona,1594 presume,1,twogentlemenofverona,1594 killed,1,twogentlemenofverona,1594 Whence,1,twogentlemenofverona,1594 valour,1,twogentlemenofverona,1594 executed,1,twogentlemenofverona,1594 tempted,1,twogentlemenofverona,1594 transgression,1,twogentlemenofverona,1594 scratch,1,twogentlemenofverona,1594 solitary,1,twogentlemenofverona,1594 unmannerly,1,twogentlemenofverona,1594 speaks,1,twogentlemenofverona,1594 suggested,1,twogentlemenofverona,1594 Dinner,1,twogentlemenofverona,1594 madcap,1,twogentlemenofverona,1594 squirrel,1,twogentlemenofverona,1594 crow,1,twogentlemenofverona,1594 round,1,twogentlemenofverona,1594 perfected,1,twogentlemenofverona,1594 signify,1,twogentlemenofverona,1594 character'd,1,twogentlemenofverona,1594 Call,1,twogentlemenofverona,1594 impression,1,twogentlemenofverona,1594 intended,1,twogentlemenofverona,1594 employ'd,1,twogentlemenofverona,1594 weeds,1,twogentlemenofverona,1594 spur,1,twogentlemenofverona,1594 impeachment,1,twogentlemenofverona,1594 expelling,1,twogentlemenofverona,1594 interpret,1,twogentlemenofverona,1594 repeat,1,twogentlemenofverona,1594 appears,1,twogentlemenofverona,1594 muttons,1,twogentlemenofverona,1594 Lady,1,twogentlemenofverona,1594 nobleness,1,twogentlemenofverona,1594 'love,1,twogentlemenofverona,1594 prince,1,twogentlemenofverona,1594 shut,1,twogentlemenofverona,1594 deny,1,twogentlemenofverona,1594 Losing,1,twogentlemenofverona,1594 swiftest,1,twogentlemenofverona,1594 Hood's,1,twogentlemenofverona,1594 plain,1,twogentlemenofverona,1594 drawn,1,twogentlemenofverona,1594 sincere,1,twogentlemenofverona,1594 fire's,1,twogentlemenofverona,1594 accurst,1,twogentlemenofverona,1594 school,1,twogentlemenofverona,1594 sweetest,1,twogentlemenofverona,1594 mighty,1,twogentlemenofverona,1594 provided,1,twogentlemenofverona,1594 pluck,1,twogentlemenofverona,1594 whether,1,twogentlemenofverona,1594 disfurnish,1,twogentlemenofverona,1594 She's,1,twogentlemenofverona,1594 vengeance,1,twogentlemenofverona,1594 rashness,1,twogentlemenofverona,1594 refused,1,twogentlemenofverona,1594 weeps,1,twogentlemenofverona,1594 brothers,1,twogentlemenofverona,1594 hammering,1,twogentlemenofverona,1594 kingdoms,1,twogentlemenofverona,1594 'Light,1,twogentlemenofverona,1594 impatient,1,twogentlemenofverona,1594 Commend,1,twogentlemenofverona,1594 tomorrow,1,twogentlemenofverona,1594 stranger,1,twogentlemenofverona,1594 fasts,1,twogentlemenofverona,1594 diest,1,twogentlemenofverona,1594 mended,1,twogentlemenofverona,1594 suggesting,1,twogentlemenofverona,1594 walked,1,twogentlemenofverona,1594 footed,1,twogentlemenofverona,1594 Dispatch,1,twogentlemenofverona,1594 exquisite,1,twogentlemenofverona,1594 deceitful,1,twogentlemenofverona,1594 strays,1,twogentlemenofverona,1594 Beseeming,1,twogentlemenofverona,1594 foot,1,twogentlemenofverona,1594 fear'd,1,twogentlemenofverona,1594 pack,1,twogentlemenofverona,1594 worldly,1,twogentlemenofverona,1594 persevers,1,twogentlemenofverona,1594 forehead's,1,twogentlemenofverona,1594 MILAN,1,twogentlemenofverona,1594 fasted,1,twogentlemenofverona,1594 proper,1,twogentlemenofverona,1594 concerning,1,twogentlemenofverona,1594 chastity,1,twogentlemenofverona,1594 nectar,1,twogentlemenofverona,1594 moan,1,twogentlemenofverona,1594 rough,1,twogentlemenofverona,1594 flatter'd,1,twogentlemenofverona,1594 duke's,1,twogentlemenofverona,1594 creatures,1,twogentlemenofverona,1594 excess,1,twogentlemenofverona,1594 overweening,1,twogentlemenofverona,1594 fresh,1,twogentlemenofverona,1594 hapless,1,twogentlemenofverona,1594 'Mongst,1,twogentlemenofverona,1594 Moist,1,twogentlemenofverona,1594 Ruffian,1,twogentlemenofverona,1594 error,1,twogentlemenofverona,1594 contemning,1,twogentlemenofverona,1594 ingratitude,1,twogentlemenofverona,1594 Robin,1,twogentlemenofverona,1594 Hast,1,twogentlemenofverona,1594 chance,1,twogentlemenofverona,1594 liveries,1,twogentlemenofverona,1594 furnish,1,twogentlemenofverona,1594 passengers,1,twogentlemenofverona,1594 esteemest,1,twogentlemenofverona,1594 right,1,twogentlemenofverona,1594 inquire,1,twogentlemenofverona,1594 sequel,1,twogentlemenofverona,1594 theirs,1,twogentlemenofverona,1594 Think'st,1,twogentlemenofverona,1594 fee,1,twogentlemenofverona,1594 unprevented,1,twogentlemenofverona,1594 colour'd,1,twogentlemenofverona,1594 Sirrah,1,twogentlemenofverona,1594 fed,1,twogentlemenofverona,1594 washed,1,twogentlemenofverona,1594 esteemeth,1,twogentlemenofverona,1594 partaker,1,twogentlemenofverona,1594 cheque,1,twogentlemenofverona,1594 enemies,1,twogentlemenofverona,1594 journeying,1,twogentlemenofverona,1594 relying,1,twogentlemenofverona,1594 'you,1,twogentlemenofverona,1594 behavior,1,twogentlemenofverona,1594 scandalized,1,twogentlemenofverona,1594 daring,1,twogentlemenofverona,1594 Elysium,1,twogentlemenofverona,1594 Ask,1,twogentlemenofverona,1594 Receiving,1,twogentlemenofverona,1594 howling,1,twogentlemenofverona,1594 guess,1,twogentlemenofverona,1594 guest,1,twogentlemenofverona,1594 doubtfully,1,twogentlemenofverona,1594 height,1,twogentlemenofverona,1594 Into,1,twogentlemenofverona,1594 watch,1,twogentlemenofverona,1594 wheels,1,twogentlemenofverona,1594 fat,1,twogentlemenofverona,1594 Shows,1,twogentlemenofverona,1594 lacking,1,twogentlemenofverona,1594 lean,1,twogentlemenofverona,1594 Comes,1,twogentlemenofverona,1594 fodder,1,twogentlemenofverona,1594 justice,1,twogentlemenofverona,1594 tried,1,twogentlemenofverona,1594 JULIA's,1,twogentlemenofverona,1594 frozen,1,twogentlemenofverona,1594 tincture,1,twogentlemenofverona,1594 mask'd,1,twogentlemenofverona,1594 equal,1,twogentlemenofverona,1594 damm'st,1,twogentlemenofverona,1594 Inconstancy,1,twogentlemenofverona,1594 consider'd,1,twogentlemenofverona,1594 venture,1,twogentlemenofverona,1594 tarry,1,twogentlemenofverona,1594 carried,1,twogentlemenofverona,1594 requital,1,twogentlemenofverona,1594 honey,1,twogentlemenofverona,1594 Launces,1,twogentlemenofverona,1594 drench'd,1,twogentlemenofverona,1594 griefs,1,twogentlemenofverona,1594 blackest,1,twogentlemenofverona,1594 Phaeton,1,twogentlemenofverona,1594 Determined,1,twogentlemenofverona,1594 pebble,1,twogentlemenofverona,1594 finest,1,twogentlemenofverona,1594 profferer,1,twogentlemenofverona,1594 faction,1,twogentlemenofverona,1594 couldst,1,twogentlemenofverona,1594 distance,1,twogentlemenofverona,1594 built,1,twogentlemenofverona,1594 Better,1,twogentlemenofverona,1594 unknown,1,twogentlemenofverona,1594 repose,1,twogentlemenofverona,1594 Orpheus',1,twogentlemenofverona,1594 nose,1,twogentlemenofverona,1594 marks,1,twogentlemenofverona,1594 proverb,1,twogentlemenofverona,1594 endanger,1,twogentlemenofverona,1594 beast,1,twogentlemenofverona,1594 almost,1,twogentlemenofverona,1594 fraught,1,twogentlemenofverona,1594 trencher,1,twogentlemenofverona,1594 wonder,1,twogentlemenofverona,1594 action,1,twogentlemenofverona,1594 gavest,1,twogentlemenofverona,1594 churlishly,1,twogentlemenofverona,1594 unrivall'd,1,twogentlemenofverona,1594 scale,1,twogentlemenofverona,1594 now's,1,twogentlemenofverona,1594 pinch'd,1,twogentlemenofverona,1594 Injurious,1,twogentlemenofverona,1594 guess'd,1,twogentlemenofverona,1594 conceited,1,twogentlemenofverona,1594 scalp,1,twogentlemenofverona,1594 ducat,1,twogentlemenofverona,1594 spokesman,1,twogentlemenofverona,1594 disgraced,1,twogentlemenofverona,1594 infancy,1,twogentlemenofverona,1594 remedy,1,twogentlemenofverona,1594 bears,1,twogentlemenofverona,1594 beard,1,twogentlemenofverona,1594 clothe,1,twogentlemenofverona,1594 tigers,1,twogentlemenofverona,1594 blunt,1,twogentlemenofverona,1594 knots,1,twogentlemenofverona,1594 'Take,1,twogentlemenofverona,1594 hasten,1,twogentlemenofverona,1594 unfrequented,1,twogentlemenofverona,1594 hide,1,twogentlemenofverona,1594 tenor,1,twogentlemenofverona,1594 feature,1,twogentlemenofverona,1594 overtake,1,twogentlemenofverona,1594 observed,1,twogentlemenofverona,1594 need'st,1,twogentlemenofverona,1594 pastime,1,twogentlemenofverona,1594 out',1,twogentlemenofverona,1594 bottom,1,twogentlemenofverona,1594 Wear,1,twogentlemenofverona,1594 gingerly,1,twogentlemenofverona,1594 Base,1,twogentlemenofverona,1594 disloyal,1,twogentlemenofverona,1594 chase,1,twogentlemenofverona,1594 adventure,1,twogentlemenofverona,1594 abridge,1,twogentlemenofverona,1594 written,1,twogentlemenofverona,1594 idolatry,1,twogentlemenofverona,1594 Flatter,1,twogentlemenofverona,1594 mount,1,twogentlemenofverona,1594 morrows,1,twogentlemenofverona,1594 Soho,1,twogentlemenofverona,1594 HOST,1,twogentlemenofverona,1594 Lose,1,twogentlemenofverona,1594 counsellor,1,twogentlemenofverona,1594 Proteus',1,twogentlemenofverona,1594 intercession,1,twogentlemenofverona,1594 islands,1,twogentlemenofverona,1594 Doth,1,twogentlemenofverona,1594 wonder'd,1,twogentlemenofverona,1594 Thyself,1,twogentlemenofverona,1594 inly,1,twogentlemenofverona,1594 precious,1,twogentlemenofverona,1594 pilgrim,1,twogentlemenofverona,1594 ensuing,1,twogentlemenofverona,1594 placed,1,twogentlemenofverona,1594 Foster'd,1,twogentlemenofverona,1594 See,1,twogentlemenofverona,1594 general,1,twogentlemenofverona,1594 consort,1,twogentlemenofverona,1594 device,1,twogentlemenofverona,1594 err,1,twogentlemenofverona,1594 duty's,1,twogentlemenofverona,1594 doors,1,twogentlemenofverona,1594 reigns,1,twogentlemenofverona,1594 mortal,1,twogentlemenofverona,1594 towards,1,twogentlemenofverona,1594 leaves,1,twogentlemenofverona,1594 kissed,1,twogentlemenofverona,1594 'Silvia,1,twogentlemenofverona,1594 sacrifice,1,twogentlemenofverona,1594 mild,1,twogentlemenofverona,1594 industry,1,twogentlemenofverona,1594 random,1,twogentlemenofverona,1594 Regard,1,twogentlemenofverona,1594 covers,1,twogentlemenofverona,1594 sonnets,1,twogentlemenofverona,1594 Makes,1,twogentlemenofverona,1594 escape,1,twogentlemenofverona,1594 purposed,1,twogentlemenofverona,1594 blinded,1,twogentlemenofverona,1594 blush,1,twogentlemenofverona,1594 remorseful,1,twogentlemenofverona,1594 beggar,1,twogentlemenofverona,1594 'yet,1,twogentlemenofverona,1594 mask,1,twogentlemenofverona,1594 concord,1,twogentlemenofverona,1594 there's,1,twogentlemenofverona,1594 chief,1,twogentlemenofverona,1594 persuaded,1,twogentlemenofverona,1594 raiment,1,twogentlemenofverona,1594 penitence,1,twogentlemenofverona,1594 blot,1,twogentlemenofverona,1594 mistakest,1,twogentlemenofverona,1594 state,1,twogentlemenofverona,1594 habiliments,1,twogentlemenofverona,1594 let's,1,twogentlemenofverona,1594 forsook,1,twogentlemenofverona,1594 wot,1,twogentlemenofverona,1594 believing,1,twogentlemenofverona,1594 judgments,1,twogentlemenofverona,1594 starved,1,twogentlemenofverona,1594 lubber,1,twogentlemenofverona,1594 Torment,1,twogentlemenofverona,1594 mountain,1,twogentlemenofverona,1594 benefit,1,twogentlemenofverona,1594 fish,1,twogentlemenofverona,1594 deeps,1,twogentlemenofverona,1594 peremptory,1,twogentlemenofverona,1594 free,1,twogentlemenofverona,1594 overtaketh,1,twogentlemenofverona,1594 search,1,twogentlemenofverona,1594 abhors,1,twogentlemenofverona,1594 trifle,1,twogentlemenofverona,1594 heaviest,1,twogentlemenofverona,1594 'Proteus',1,twogentlemenofverona,1594 one's,1,twogentlemenofverona,1594 desires,1,twogentlemenofverona,1594 sand,1,twogentlemenofverona,1594 firm,1,twogentlemenofverona,1594 wed,1,twogentlemenofverona,1594 o'clock,1,twogentlemenofverona,1594 possession,1,twogentlemenofverona,1594 blindness,1,twogentlemenofverona,1594 accords,1,twogentlemenofverona,1594 breed,1,twogentlemenofverona,1594 slight,1,twogentlemenofverona,1594 dignified,1,twogentlemenofverona,1594 unreversed,1,twogentlemenofverona,1594 maids,1,twogentlemenofverona,1594 winding,1,twogentlemenofverona,1594 accomplish'd,1,twogentlemenofverona,1594 despairing,1,twogentlemenofverona,1594 wrongs,1,twogentlemenofverona,1594 Wept,1,twogentlemenofverona,1594 neat,1,twogentlemenofverona,1594 odd,1,twogentlemenofverona,1594 flies,1,twogentlemenofverona,1594 'My,1,twogentlemenofverona,1594 blushes,1,twogentlemenofverona,1594 banishment,1,twogentlemenofverona,1594 fits,1,twogentlemenofverona,1594 swain,1,twogentlemenofverona,1594 experience,1,twogentlemenofverona,1594 Run,1,twogentlemenofverona,1594 discipline,1,twogentlemenofverona,1594 Witness,1,twogentlemenofverona,1594 desolate,1,twogentlemenofverona,1594 privy,1,twogentlemenofverona,1594 hateful,1,twogentlemenofverona,1594 penitential,1,twogentlemenofverona,1594 thoroughly,1,twogentlemenofverona,1594 stomach,1,twogentlemenofverona,1594 wrath's,1,twogentlemenofverona,1594 impose,1,twogentlemenofverona,1594 enamell'ed,1,twogentlemenofverona,1594 pretence,1,twogentlemenofverona,1594 import,1,twogentlemenofverona,1594 Sad,1,twogentlemenofverona,1594 Outside,1,twogentlemenofverona,1594 Dissolves,1,twogentlemenofverona,1594 third,1,twogentlemenofverona,1594 include,1,twogentlemenofverona,1594 prime,1,twogentlemenofverona,1594 thrives,1,twogentlemenofverona,1594 sonnet,1,twogentlemenofverona,1594 fawneth,1,twogentlemenofverona,1594 influence,1,twogentlemenofverona,1594 recover,1,twogentlemenofverona,1594 bestow'd,1,twogentlemenofverona,1594 conspire,1,twogentlemenofverona,1594 Often,1,twogentlemenofverona,1594 closed,1,twogentlemenofverona,1594 'no',1,twogentlemenofverona,1594 ripe,1,twogentlemenofverona,1594 'alas',1,twogentlemenofverona,1594 you're,1,twogentlemenofverona,1594 integrity,1,twogentlemenofverona,1594 subtle,1,twogentlemenofverona,1594 patiently,1,twogentlemenofverona,1594 dust,1,twogentlemenofverona,1594 oars,1,twogentlemenofverona,1594 Hebrew,1,twogentlemenofverona,1594 sinews,1,twogentlemenofverona,1594 hooks,1,twogentlemenofverona,1594 war,1,twogentlemenofverona,1594 linger,1,twogentlemenofverona,1594 able,1,twogentlemenofverona,1594 Worthy,1,twogentlemenofverona,1594 heave,1,twogentlemenofverona,1594 arms,1,twogentlemenofverona,1594 Remembering,1,twogentlemenofverona,1594 drives,1,twogentlemenofverona,1594 between,1,twogentlemenofverona,1594 commanded,1,twogentlemenofverona,1594 commander,1,twogentlemenofverona,1594 wag,1,twogentlemenofverona,1594 enraged,1,twogentlemenofverona,1594 Wringing,1,twogentlemenofverona,1594 tutor'd,1,twogentlemenofverona,1594 pride,1,twogentlemenofverona,1594 Knowing,1,twogentlemenofverona,1594 villains,1,twogentlemenofverona,1594 'ay,1,twogentlemenofverona,1594 threats,1,twogentlemenofverona,1594 Three,1,twogentlemenofverona,1594 urinal,1,twogentlemenofverona,1594 pence,1,twogentlemenofverona,1594 o'ernight,1,twogentlemenofverona,1594 enforced,1,twogentlemenofverona,1594 notice,1,twogentlemenofverona,1594 adored,1,twogentlemenofverona,1594 brews,1,twogentlemenofverona,1594 requite,1,twogentlemenofverona,1594 anchoring,1,twogentlemenofverona,1594 raging,1,twogentlemenofverona,1594 Shall,1,twogentlemenofverona,1594 competitor,1,twogentlemenofverona,1594 faces,1,twogentlemenofverona,1594 dreams,1,twogentlemenofverona,1594 rake,1,twogentlemenofverona,1594 Bid,1,twogentlemenofverona,1594 ransom,1,twogentlemenofverona,1594 earthly,1,twogentlemenofverona,1594 Laurence,1,twogentlemenofverona,1594 charged,1,twogentlemenofverona,1594 wasps,1,twogentlemenofverona,1594 linguist,1,twogentlemenofverona,1594 angel,1,twogentlemenofverona,1594 Eternal's,1,twogentlemenofverona,1594 disembark,1,twogentlemenofverona,1594 Ariadne,1,twogentlemenofverona,1594 lute,1,twogentlemenofverona,1594 dump,1,twogentlemenofverona,1594 knight,1,twogentlemenofverona,1594 owe,1,twogentlemenofverona,1594 descant,1,twogentlemenofverona,1594 Cancel,1,twogentlemenofverona,1594 Merops',1,twogentlemenofverona,1594 Plead,1,twogentlemenofverona,1594 commending,1,twogentlemenofverona,1594 consent,1,twogentlemenofverona,1594 virtuously,1,twogentlemenofverona,1594 determined,1,twogentlemenofverona,1594 wooes,1,twogentlemenofverona,1594 waste,1,twogentlemenofverona,1594 fox,1,twogentlemenofverona,1594 beguiled,1,twogentlemenofverona,1594 Forbear,1,twogentlemenofverona,1594 hundred,1,twogentlemenofverona,1594 went,1,twogentlemenofverona,1594 whence,1,twogentlemenofverona,1594 followers,1,twogentlemenofverona,1594 Ever,1,twogentlemenofverona,1594 cover,1,twogentlemenofverona,1594 overcharged,1,twogentlemenofverona,1594 Theseus',1,twogentlemenofverona,1594 contempt,1,twogentlemenofverona,1594 minister,1,twogentlemenofverona,1594 garlands,1,twogentlemenofverona,1594 followest,1,twogentlemenofverona,1594 Make,1,twogentlemenofverona,1594 Unhappy,1,twogentlemenofverona,1594 perfections,1,twogentlemenofverona,1594 yond,1,twogentlemenofverona,1594 Time,1,twogentlemenofverona,1594 practising,1,twogentlemenofverona,1594 messengers,1,twogentlemenofverona,1594 highly,1,twogentlemenofverona,1594 doublet,1,twogentlemenofverona,1594 clownish,1,twogentlemenofverona,1594 Swoons,1,twogentlemenofverona,1594 crystal,1,twogentlemenofverona,1594 saint,1,twogentlemenofverona,1594 cares,1,twogentlemenofverona,1594 article,1,twogentlemenofverona,1594 cloud,1,twogentlemenofverona,1594 constancy,1,twogentlemenofverona,1594 quell,1,twogentlemenofverona,1594 passioning,1,twogentlemenofverona,1594 answers,1,twogentlemenofverona,1594 scorns,1,twogentlemenofverona,1594 Considers,1,twogentlemenofverona,1594 lodges,1,twogentlemenofverona,1594 threw,1,twogentlemenofverona,1594 roses,1,twogentlemenofverona,1594 west,1,twogentlemenofverona,1594 enfranchise,1,twogentlemenofverona,1594 undeserving,1,twogentlemenofverona,1594 officer,1,twogentlemenofverona,1594 gazing,1,twogentlemenofverona,1594 astray,1,twogentlemenofverona,1594 they're,1,twogentlemenofverona,1594 passion,1,twogentlemenofverona,1594 vow,1,twogentlemenofverona,1594 scratch'd,1,twogentlemenofverona,1594 glances,1,twogentlemenofverona,1594 woods,1,twogentlemenofverona,1594 punish'd,1,twogentlemenofverona,1594 continue,1,twogentlemenofverona,1594 friar,1,twogentlemenofverona,1594 lascivious,1,twogentlemenofverona,1594 rehearse,1,twogentlemenofverona,1594 Plotted,1,twogentlemenofverona,1594 thereby,1,twogentlemenofverona,1594 mansion,1,twogentlemenofverona,1594 shown,1,twogentlemenofverona,1594 bite,1,twogentlemenofverona,1594 immodest,1,twogentlemenofverona,1594 stay'st,1,twogentlemenofverona,1594 vex,1,twogentlemenofverona,1594 unstaid,1,twogentlemenofverona,1594 queen,1,twogentlemenofverona,1594 Bears,1,twogentlemenofverona,1594 chiefly,1,twogentlemenofverona,1594 Thank,1,twogentlemenofverona,1594 importunacy,1,twogentlemenofverona,1594 partly,1,twogentlemenofverona,1594 watch'd,1,twogentlemenofverona,1594 endamage,1,twogentlemenofverona,1594 censure,1,twogentlemenofverona,1594 bass,1,twogentlemenofverona,1594 breeder,1,twogentlemenofverona,1594 strikes,1,twogentlemenofverona,1594 grievances,1,twogentlemenofverona,1594 qualify,1,twogentlemenofverona,1594 cock,1,twogentlemenofverona,1594 friendship,1,twogentlemenofverona,1594 Visit,1,twogentlemenofverona,1594 bounds,1,twogentlemenofverona,1594 tame,1,twogentlemenofverona,1594 rising,1,twogentlemenofverona,1594 Imperial's,1,twogentlemenofverona,1594 mischance,1,twogentlemenofverona,1594 feeble,1,twogentlemenofverona,1594 lights,1,twogentlemenofverona,1594 soul's,1,twogentlemenofverona,1594 tale,1,twogentlemenofverona,1594 is't,1,twogentlemenofverona,1594 disability,1,twogentlemenofverona,1594 Partly,1,twogentlemenofverona,1594 tall,1,twogentlemenofverona,1594 conversed,1,twogentlemenofverona,1594 welcomes,1,twogentlemenofverona,1594 bind,1,twogentlemenofverona,1594 aloft,1,twogentlemenofverona,1594 deliberate,1,twogentlemenofverona,1594 sufficient,1,twogentlemenofverona,1594 perish,1,twogentlemenofverona,1594 excepted,1,twogentlemenofverona,1594 Trust,1,twogentlemenofverona,1594 watchful,1,twogentlemenofverona,1594 ungartered,1,twogentlemenofverona,1594 torment,1,twogentlemenofverona,1594 thwarted,1,twogentlemenofverona,1594 Already,1,twogentlemenofverona,1594 Rather,1,twogentlemenofverona,1594 regarding,1,twogentlemenofverona,1594 sights,1,twogentlemenofverona,1594 creep,1,twogentlemenofverona,1594 thaw'd,1,twogentlemenofverona,1594 ought,1,twogentlemenofverona,1594 holds,1,twogentlemenofverona,1594 redbreast,1,twogentlemenofverona,1594 poets',1,twogentlemenofverona,1594 shore,1,twogentlemenofverona,1594 Attends,1,twogentlemenofverona,1594 manfully,1,twogentlemenofverona,1594 capon's,1,twogentlemenofverona,1594 clean,1,twogentlemenofverona,1594 blasting,1,twogentlemenofverona,1594 hole,1,twogentlemenofverona,1594 excus'd,1,twogentlemenofverona,1594 pupil,1,twogentlemenofverona,1594 cut,1,twogentlemenofverona,1594 unwind,1,twogentlemenofverona,1594 Gregory's,1,twogentlemenofverona,1594 counterfeit,1,twogentlemenofverona,1594 loyal,1,twogentlemenofverona,1594 revolt,1,twogentlemenofverona,1594 assist,1,twogentlemenofverona,1594 perplexity,1,twogentlemenofverona,1594 tire,1,twogentlemenofverona,1594 winter,1,twogentlemenofverona,1594 periwig,1,twogentlemenofverona,1594 grudge,1,twogentlemenofverona,1594 remnant,1,twogentlemenofverona,1594 o'erlooked,1,twogentlemenofverona,1594 nooks,1,twogentlemenofverona,1594 sinned,1,twogentlemenofverona,1594 want'st,1,twogentlemenofverona,1594 conjure,1,twogentlemenofverona,1594 building,1,twogentlemenofverona,1594 gives,1,twogentlemenofverona,1594 notwithstanding,1,twogentlemenofverona,1594 puling,1,twogentlemenofverona,1594 prayers,1,twogentlemenofverona,1594 DUKE'S,1,twogentlemenofverona,1594 cleft,1,twogentlemenofverona,1594 also,1,twogentlemenofverona,1594 aspire,1,twogentlemenofverona,1594 prettily,1,twogentlemenofverona,1594 satisfied,1,twogentlemenofverona,1594 manage,1,twogentlemenofverona,1594 yellow,1,twogentlemenofverona,1594 verdure,1,twogentlemenofverona,1594 approved,1,twogentlemenofverona,1594 seas,1,twogentlemenofverona,1594 interest,1,twogentlemenofverona,1594 Expects,1,twogentlemenofverona,1594 hearty,1,twogentlemenofverona,1594 lying,1,twogentlemenofverona,1594 recall'd,1,twogentlemenofverona,1594 vexation,1,twogentlemenofverona,1594 waiting,1,twogentlemenofverona,1594 log,1,twogentlemenofverona,1594 tangle,1,twogentlemenofverona,1594 inward,1,twogentlemenofverona,1594 favour'd,1,twogentlemenofverona,1594 gossips,1,twogentlemenofverona,1594 fairer,1,twogentlemenofverona,1594 deepest,1,twogentlemenofverona,1594 captain's,1,twogentlemenofverona,1594 babe,1,twogentlemenofverona,1594 remission,1,twogentlemenofverona,1594 serviceable,1,twogentlemenofverona,1594 puppet,1,twogentlemenofverona,1594 converse,1,twogentlemenofverona,1594 thereto,1,twogentlemenofverona,1594 crept,1,twogentlemenofverona,1594 'Out,1,twogentlemenofverona,1594 Seem,1,twogentlemenofverona,1594 aught,1,twogentlemenofverona,1594 knowest,1,twogentlemenofverona,1594 fitting,1,twogentlemenofverona,1594 talking,1,twogentlemenofverona,1594 either,1,twogentlemenofverona,1594 feeling,1,twogentlemenofverona,1594 skill'd,1,twogentlemenofverona,1594 Truly,1,twogentlemenofverona,1594 puppy,1,twogentlemenofverona,1594 Hallowmas,1,twogentlemenofverona,1594 hindered,1,twogentlemenofverona,1594 coy,1,twogentlemenofverona,1594 discretion,1,twogentlemenofverona,1594 robin,1,twogentlemenofverona,1594 camest,1,twogentlemenofverona,1594 angerly,1,twogentlemenofverona,1594 courtesy,1,twogentlemenofverona,1594 sees,1,twogentlemenofverona,1594 'Blessing,1,twogentlemenofverona,1594 conclude,1,twogentlemenofverona,1594 pricks,1,twogentlemenofverona,1594 condition,1,twogentlemenofverona,1594 tells,1,twogentlemenofverona,1594 period,1,twogentlemenofverona,1594 Forsworn,1,twogentlemenofverona,1594 scribe,1,twogentlemenofverona,1594 Mine,1,twogentlemenofverona,1594 estimation,1,twogentlemenofverona,1594 Forsake,1,twogentlemenofverona,1594 traitor,1,twogentlemenofverona,1594 thrust,1,twogentlemenofverona,1594 'get,1,twogentlemenofverona,1594 preferment,1,twogentlemenofverona,1594 sacred,1,twogentlemenofverona,1594 Gentlemen,1,twogentlemenofverona,1594 changing,1,twogentlemenofverona,1594 whate'er,1,twogentlemenofverona,1594 hearken,1,twogentlemenofverona,1594 person,1,twogentlemenofverona,1594 deign,1,twogentlemenofverona,1594 'twill,1,twogentlemenofverona,1594 nights,1,twogentlemenofverona,1594 loyalty,1,twogentlemenofverona,1594 musician,1,twogentlemenofverona,1594 heels,1,twogentlemenofverona,1594 Deliver,1,twogentlemenofverona,1594 wretches,1,twogentlemenofverona,1594 million,1,twogentlemenofverona,1594 crews,1,twogentlemenofverona,1594 slender,1,twogentlemenofverona,1594 rhyming,1,twogentlemenofverona,1594 heedfully,1,twogentlemenofverona,1594 up',1,twogentlemenofverona,1594 'alas,1,twogentlemenofverona,1594 glove,1,twogentlemenofverona,1594 beheld,1,twogentlemenofverona,1594 wailful,1,twogentlemenofverona,1594 halidom,1,twogentlemenofverona,1594 unseeing,1,twogentlemenofverona,1594 ravel,1,twogentlemenofverona,1594 according,1,twogentlemenofverona,1594 fairly,1,twogentlemenofverona,1594 Close,1,twogentlemenofverona,1594 uncertain,1,twogentlemenofverona,1594 penetrate,1,twogentlemenofverona,1594 bankrupt,1,twogentlemenofverona,1594 see'st,1,twogentlemenofverona,1594 prison,1,twogentlemenofverona,1594 mother's,1,twogentlemenofverona,1594 grieves,1,twogentlemenofverona,1594 trusting,1,twogentlemenofverona,1594 herald,1,twogentlemenofverona,1594 chose,1,twogentlemenofverona,1594 disobedient,1,twogentlemenofverona,1594 seized,1,twogentlemenofverona,1594 sullen,1,twogentlemenofverona,1594 statue,1,twogentlemenofverona,1594 garter,1,twogentlemenofverona,1594 leagues,1,twogentlemenofverona,1594 passionate,1,twogentlemenofverona,1594 triumphs,1,twogentlemenofverona,1594 currish,1,twogentlemenofverona,1594 afterward,1,twogentlemenofverona,1594 bolder,1,twogentlemenofverona,1594 crooked,1,twogentlemenofverona,1594 hunts,1,twogentlemenofverona,1594 Coy,1,twogentlemenofverona,1594 coil,1,twogentlemenofverona,1594 Fire,1,twogentlemenofverona,1594 brow,1,twogentlemenofverona,1594 regarded,1,twogentlemenofverona,1594 lordship's,1,twogentlemenofverona,1594 effects,1,twogentlemenofverona,1594 servants,1,twogentlemenofverona,1594 persuade,1,twogentlemenofverona,1594 suitor,1,twogentlemenofverona,1594 Herself,1,twogentlemenofverona,1594 honesty,1,twogentlemenofverona,1594 petty,1,twogentlemenofverona,1594 mad,1,twogentlemenofverona,1594 mar,1,twogentlemenofverona,1594 Trenched,1,twogentlemenofverona,1594 alter'd,1,twogentlemenofverona,1594 'Hang,1,twogentlemenofverona,1594 allied,1,twogentlemenofverona,1594 dining,1,twogentlemenofverona,1594 encounters,1,twogentlemenofverona,1594 construe,1,twogentlemenofverona,1594 However,1,twogentlemenofverona,1594 abroad,1,twogentlemenofverona,1594 spite,1,twogentlemenofverona,1594 Signior,1,twogentlemenofverona,1594 mine's,1,twogentlemenofverona,1594 'scape,1,twogentlemenofverona,1594 pasture,1,twogentlemenofverona,1594 hostess,1,twogentlemenofverona,1594 future,1,twogentlemenofverona,1594 forced,1,twogentlemenofverona,1594 tournaments,1,twogentlemenofverona,1594 lease,1,twogentlemenofverona,1594 laughed,1,twogentlemenofverona,1594 impatiently,1,twogentlemenofverona,1594 Another,1,twogentlemenofverona,1594 distresses,1,twogentlemenofverona,1594 poesy,1,twogentlemenofverona,1594 trusted,1,twogentlemenofverona,1594 chidden,1,twogentlemenofverona,1594 met,1,twogentlemenofverona,1594 knocked,1,twogentlemenofverona,1594 treacherous,1,twogentlemenofverona,1594 glory,1,twogentlemenofverona,1594 lamenting,1,twogentlemenofverona,1594 readiness,1,twogentlemenofverona,1594 likelihoods,1,twogentlemenofverona,1594 extol,1,twogentlemenofverona,1594 gentlemanlike,1,twogentlemenofverona,1594 sovereign,1,twogentlemenofverona,1594 employment,1,twogentlemenofverona,1594 ruinous,1,twogentlemenofverona,1594 determine,1,twogentlemenofverona,1594 grievously,1,twogentlemenofverona,1594 seduced,1,twogentlemenofverona,1594 whit,1,twogentlemenofverona,1594 whip,1,twogentlemenofverona,1594 thinking,1,twogentlemenofverona,1594 counts,1,twogentlemenofverona,1594 Tears,1,twogentlemenofverona,1594 'Welcome,1,twogentlemenofverona,1594 elegies,1,twogentlemenofverona,1594 on's,1,twogentlemenofverona,1594 lion,1,twogentlemenofverona,1594 on't,1,twogentlemenofverona,1594 Amen,1,twogentlemenofverona,1594 forgetfulness,1,twogentlemenofverona,1594 homage,1,twogentlemenofverona,1594 mannerly,1,twogentlemenofverona,1594 telling,1,twogentlemenofverona,1594 volley,1,twogentlemenofverona,1594 sometimes,1,twogentlemenofverona,1594 wearisome,1,twogentlemenofverona,1594 fraud,1,twogentlemenofverona,1594 flat,1,twogentlemenofverona,1594 fasting,1,twogentlemenofverona,1594 inherit,1,twogentlemenofverona,1594 unworthily,1,twogentlemenofverona,1594 swum,1,twogentlemenofverona,1594 late,1,twogentlemenofverona,1594 attendants,1,twogentlemenofverona,1594 truant,1,twogentlemenofverona,1594 VII,1,twogentlemenofverona,1594 o'erslips,1,twogentlemenofverona,1594 territories,1,twogentlemenofverona,1594 Done,1,twogentlemenofverona,1594 studious,1,twogentlemenofverona,1594 besides,1,twogentlemenofverona,1594 jade,1,twogentlemenofverona,1594 silver,1,twogentlemenofverona,1594 revenged,1,twogentlemenofverona,1594 April,1,twogentlemenofverona,1594 untuneable,1,twogentlemenofverona,1594 Disdain,1,twogentlemenofverona,1594 breaking,1,twogentlemenofverona,1594 ragged,1,twogentlemenofverona,1594 strange,1,twogentlemenofverona,1594 nature,1,twogentlemenofverona,1594 Lend,1,twogentlemenofverona,1594 contend,1,twogentlemenofverona,1594 oracles,1,twogentlemenofverona,1594 severely,1,twogentlemenofverona,1594 content,1,twogentlemenofverona,1594 leading,1,twogentlemenofverona,1594 undertaking,1,twogentlemenofverona,1594 dwells,1,twogentlemenofverona,1594 silent,1,twogentlemenofverona,1594 spring,1,twogentlemenofverona,1594 malecontent,1,twogentlemenofverona,1594 leads,1,twogentlemenofverona,1594 reply,1,twogentlemenofverona,1594 You'll,1,twogentlemenofverona,1594 enjoin'd,1,twogentlemenofverona,1594 Thy,1,twogentlemenofverona,1594 Valerius,1,twogentlemenofverona,1594 brag,1,twogentlemenofverona,1594 judged,1,twogentlemenofverona,1594 discovered,1,twogentlemenofverona,1594 confirm,1,twogentlemenofverona,1594 essence,1,twogentlemenofverona,1594 provide,1,twogentlemenofverona,1594 honour'd,1,twogentlemenofverona,1594 destined,1,twogentlemenofverona,1594 happily,1,twogentlemenofverona,1594 with't,1,twogentlemenofverona,1594 nightingale,1,twogentlemenofverona,1594 honour's,1,twogentlemenofverona,1594 maintenance,1,twogentlemenofverona,1594 frame,1,twogentlemenofverona,1594 nodding,1,twogentlemenofverona,1594 sudden,1,twogentlemenofverona,1594 lawless,1,twogentlemenofverona,1594 longest,1,twogentlemenofverona,1594 cunningly,1,twogentlemenofverona,1594 Thurio's,1,twogentlemenofverona,1594 blessing,1,twogentlemenofverona,1594 pillory,1,twogentlemenofverona,1594 rocks,1,twogentlemenofverona,1594 Wishing,1,twogentlemenofverona,1594 bred,1,twogentlemenofverona,1594 liest,1,twogentlemenofverona,1594 couples,1,twogentlemenofverona,1594 wonders,1,twogentlemenofverona,1594 months,1,twogentlemenofverona,1594 DRAMATIS,1,twogentlemenofverona,1594 slew,1,twogentlemenofverona,1594 shake,1,twogentlemenofverona,1594 spurr'd,1,twogentlemenofverona,1594 physician,1,twogentlemenofverona,1594 Teach,1,twogentlemenofverona,1594 burden,1,twogentlemenofverona,1594 brew,1,twogentlemenofverona,1594 undergo,1,twogentlemenofverona,1594 flower,1,twogentlemenofverona,1594 Too,1,twogentlemenofverona,1594 rewards,1,twogentlemenofverona,1594 bargain,1,twogentlemenofverona,1594 record,1,twogentlemenofverona,1594 obtain,1,twogentlemenofverona,1594 entreated,1,twogentlemenofverona,1594 wills,1,twogentlemenofverona,1594 ascend,1,twogentlemenofverona,1594 smell,1,twogentlemenofverona,1594 stol'n,1,twogentlemenofverona,1594 stings,1,twogentlemenofverona,1594 private,1,twogentlemenofverona,1594 sourest,1,twogentlemenofverona,1594 dwelling,1,twogentlemenofverona,1594 smelt,1,twogentlemenofverona,1594 jealousy,1,twogentlemenofverona,1594 gloves,1,twogentlemenofverona,1594 obtaining,1,twogentlemenofverona,1594 mutual,1,twogentlemenofverona,1594 amen,1,twogentlemenofverona,1594 exchequer,1,twogentlemenofverona,1594 charity,1,twogentlemenofverona,1594 tenantless,1,twogentlemenofverona,1594 parley,1,twogentlemenofverona,1594 repair,1,twogentlemenofverona,1594 solemnity,1,twogentlemenofverona,1594 wanteth,1,twogentlemenofverona,1594 ''twas,1,twogentlemenofverona,1594 shape,1,twogentlemenofverona,1594 hangman,1,twogentlemenofverona,1594 unsounded,1,twogentlemenofverona,1594 market,1,twogentlemenofverona,1594 perhaps,1,twogentlemenofverona,1594 direction,1,twogentlemenofverona,1594 Dog,1,twogentlemenofverona,1594 fading,1,twogentlemenofverona,1594 turn'd,1,twogentlemenofverona,1594 fortuned,1,twogentlemenofverona,1594 Tut,1,twogentlemenofverona,1594 ending,1,twogentlemenofverona,1594 consents,1,twogentlemenofverona,1594 nightingale's,1,twogentlemenofverona,1594 summer,1,twogentlemenofverona,1594 attended,2,twogentlemenofverona,1594 grandam,2,twogentlemenofverona,1594 alehouse,2,twogentlemenofverona,1594 told,2,twogentlemenofverona,1594 horns,2,twogentlemenofverona,1594 meed,2,twogentlemenofverona,1594 suffer,2,twogentlemenofverona,1594 Longer,2,twogentlemenofverona,1594 reputation,2,twogentlemenofverona,1594 derived,2,twogentlemenofverona,1594 fathers,2,twogentlemenofverona,1594 votary,2,twogentlemenofverona,1594 wish'd,2,twogentlemenofverona,1594 treasure,2,twogentlemenofverona,1594 peasant,2,twogentlemenofverona,1594 follies,2,twogentlemenofverona,1594 advantage,2,twogentlemenofverona,1594 royal,2,twogentlemenofverona,1594 esteems,2,twogentlemenofverona,1594 heart's,2,twogentlemenofverona,1594 road,2,twogentlemenofverona,1594 whips,2,twogentlemenofverona,1594 villain,2,twogentlemenofverona,1594 cords,2,twogentlemenofverona,1594 nameless,2,twogentlemenofverona,1594 celestial,2,twogentlemenofverona,1594 brook,2,twogentlemenofverona,1594 Beshrew,2,twogentlemenofverona,1594 offer,2,twogentlemenofverona,1594 hanged,2,twogentlemenofverona,1594 withal,2,twogentlemenofverona,1594 cowardice,2,twogentlemenofverona,1594 calls,2,twogentlemenofverona,1594 lies,2,twogentlemenofverona,1594 sore,2,twogentlemenofverona,1594 contrary,2,twogentlemenofverona,1594 wounded,2,twogentlemenofverona,1594 whoreson,2,twogentlemenofverona,1594 boy's,2,twogentlemenofverona,1594 laced,2,twogentlemenofverona,1594 Once,2,twogentlemenofverona,1594 Poor,2,twogentlemenofverona,1594 delivered,2,twogentlemenofverona,1594 stock,2,twogentlemenofverona,1594 line,2,twogentlemenofverona,1594 sorrows,2,twogentlemenofverona,1594 broken,2,twogentlemenofverona,1594 lily,2,twogentlemenofverona,1594 Keep,2,twogentlemenofverona,1594 Much,2,twogentlemenofverona,1594 concerns,2,twogentlemenofverona,1594 wants,2,twogentlemenofverona,1594 calm,2,twogentlemenofverona,1594 hanging,2,twogentlemenofverona,1594 glass,2,twogentlemenofverona,1594 grievance,2,twogentlemenofverona,1594 Methinks,2,twogentlemenofverona,1594 ladies',2,twogentlemenofverona,1594 ocean,2,twogentlemenofverona,1594 execution,2,twogentlemenofverona,1594 prevail'd,2,twogentlemenofverona,1594 body,2,twogentlemenofverona,1594 'twere,2,twogentlemenofverona,1594 saying,2,twogentlemenofverona,1594 merry,2,twogentlemenofverona,1594 flying,2,twogentlemenofverona,1594 carrying,2,twogentlemenofverona,1594 she'll,2,twogentlemenofverona,1594 peevish,2,twogentlemenofverona,1594 yield,2,twogentlemenofverona,1594 love's,2,twogentlemenofverona,1594 embrace,2,twogentlemenofverona,1594 steps,2,twogentlemenofverona,1594 skill,2,twogentlemenofverona,1594 Farewell,2,twogentlemenofverona,1594 shipp'd,2,twogentlemenofverona,1594 kindly,2,twogentlemenofverona,1594 wings,2,twogentlemenofverona,1594 play'd,2,twogentlemenofverona,1594 suffered,2,twogentlemenofverona,1594 minion,2,twogentlemenofverona,1594 offence,2,twogentlemenofverona,1594 worse,2,twogentlemenofverona,1594 eating,2,twogentlemenofverona,1594 received,2,twogentlemenofverona,1594 seeks,2,twogentlemenofverona,1594 affected,2,twogentlemenofverona,1594 white,2,twogentlemenofverona,1594 pearl,2,twogentlemenofverona,1594 Leave,2,twogentlemenofverona,1594 despiseth,2,twogentlemenofverona,1594 spaniel,2,twogentlemenofverona,1594 empress',2,twogentlemenofverona,1594 Tune,2,twogentlemenofverona,1594 infinite,2,twogentlemenofverona,1594 claim,2,twogentlemenofverona,1594 masters,2,twogentlemenofverona,1594 wind,2,twogentlemenofverona,1594 Vouchsafe,2,twogentlemenofverona,1594 mirth,2,twogentlemenofverona,1594 length,2,twogentlemenofverona,1594 knees,2,twogentlemenofverona,1594 stead,2,twogentlemenofverona,1594 pretty,2,twogentlemenofverona,1594 cunning,2,twogentlemenofverona,1594 meat,2,twogentlemenofverona,1594 steel,2,twogentlemenofverona,1594 wits,2,twogentlemenofverona,1594 book,2,twogentlemenofverona,1594 colour,2,twogentlemenofverona,1594 praises,2,twogentlemenofverona,1594 deserves,2,twogentlemenofverona,1594 Do,2,twogentlemenofverona,1594 he's,2,twogentlemenofverona,1594 sick,2,twogentlemenofverona,1594 morning,2,twogentlemenofverona,1594 has,2,twogentlemenofverona,1594 aboard,2,twogentlemenofverona,1594 While,2,twogentlemenofverona,1594 foes,2,twogentlemenofverona,1594 measure,2,twogentlemenofverona,1594 deformed,2,twogentlemenofverona,1594 scarce,2,twogentlemenofverona,1594 Him,2,twogentlemenofverona,1594 loath,2,twogentlemenofverona,1594 among,2,twogentlemenofverona,1594 smile,2,twogentlemenofverona,1594 itself,2,twogentlemenofverona,1594 borrows,2,twogentlemenofverona,1594 hopes,2,twogentlemenofverona,1594 farthingale,2,twogentlemenofverona,1594 unless,2,twogentlemenofverona,1594 belike,2,twogentlemenofverona,1594 beautiful,2,twogentlemenofverona,1594 quaintly,2,twogentlemenofverona,1594 tales,2,twogentlemenofverona,1594 On,2,twogentlemenofverona,1594 pawn,2,twogentlemenofverona,1594 hie,2,twogentlemenofverona,1594 'Imprimis,2,twogentlemenofverona,1594 pleasure,2,twogentlemenofverona,1594 meant,2,twogentlemenofverona,1594 bid,2,twogentlemenofverona,1594 applaud,2,twogentlemenofverona,1594 Let's,2,twogentlemenofverona,1594 Had,2,twogentlemenofverona,1594 pass,2,twogentlemenofverona,1594 hides,2,twogentlemenofverona,1594 pin,2,twogentlemenofverona,1594 treachery,2,twogentlemenofverona,1594 proud,2,twogentlemenofverona,1594 step,2,twogentlemenofverona,1594 shunn'd,2,twogentlemenofverona,1594 Gone,2,twogentlemenofverona,1594 blood,2,twogentlemenofverona,1594 We,2,twogentlemenofverona,1594 writers,2,twogentlemenofverona,1594 canker,2,twogentlemenofverona,1594 goodly,2,twogentlemenofverona,1594 cherish'd,2,twogentlemenofverona,1594 got,2,twogentlemenofverona,1594 homely,2,twogentlemenofverona,1594 weak,2,twogentlemenofverona,1594 abbey,2,twogentlemenofverona,1594 exile,2,twogentlemenofverona,1594 jewel,2,twogentlemenofverona,1594 farewell,2,twogentlemenofverona,1594 swift,2,twogentlemenofverona,1594 used,2,twogentlemenofverona,1594 About,2,twogentlemenofverona,1594 vantage,2,twogentlemenofverona,1594 ashamed,2,twogentlemenofverona,1594 tower,2,twogentlemenofverona,1594 dogs,2,twogentlemenofverona,1594 stay'd,2,twogentlemenofverona,1594 affection,2,twogentlemenofverona,1594 papers,2,twogentlemenofverona,1594 aim,2,twogentlemenofverona,1594 gift,2,twogentlemenofverona,1594 Fear,2,twogentlemenofverona,1594 excellent,2,twogentlemenofverona,1594 repent,2,twogentlemenofverona,1594 stood,2,twogentlemenofverona,1594 yes,2,twogentlemenofverona,1594 stone,2,twogentlemenofverona,1594 plays,2,twogentlemenofverona,1594 Sebastian,2,twogentlemenofverona,1594 manner,2,twogentlemenofverona,1594 Deliver'd,2,twogentlemenofverona,1594 idle,2,twogentlemenofverona,1594 Reads,2,twogentlemenofverona,1594 ink,2,twogentlemenofverona,1594 miserable,2,twogentlemenofverona,1594 offer'd,2,twogentlemenofverona,1594 loss,2,twogentlemenofverona,1594 wherein,2,twogentlemenofverona,1594 lest,2,twogentlemenofverona,1594 those,2,twogentlemenofverona,1594 dispose,2,twogentlemenofverona,1594 Grace,2,twogentlemenofverona,1594 lock'd,2,twogentlemenofverona,1594 outrages,2,twogentlemenofverona,1594 jerkin,2,twogentlemenofverona,1594 hot,2,twogentlemenofverona,1594 excels,2,twogentlemenofverona,1594 thrice,2,twogentlemenofverona,1594 hark,2,twogentlemenofverona,1594 Haply,2,twogentlemenofverona,1594 plot,2,twogentlemenofverona,1594 senseless,2,twogentlemenofverona,1594 pale,2,twogentlemenofverona,1594 Read,2,twogentlemenofverona,1594 repeal,2,twogentlemenofverona,1594 reach,2,twogentlemenofverona,1594 thinkest,2,twogentlemenofverona,1594 four,2,twogentlemenofverona,1594 foul,2,twogentlemenofverona,1594 confession,2,twogentlemenofverona,1594 forth,2,twogentlemenofverona,1594 city,2,twogentlemenofverona,1594 open,2,twogentlemenofverona,1594 Under,2,twogentlemenofverona,1594 cite,2,twogentlemenofverona,1594 pair,2,twogentlemenofverona,1594 ship,2,twogentlemenofverona,1594 chameleon,2,twogentlemenofverona,1594 delight,2,twogentlemenofverona,1594 paid,2,twogentlemenofverona,1594 money,2,twogentlemenofverona,1594 spin,2,twogentlemenofverona,1594 frown,2,twogentlemenofverona,1594 entertain'd,2,twogentlemenofverona,1594 forlorn,2,twogentlemenofverona,1594 revenge,2,twogentlemenofverona,1594 fond,2,twogentlemenofverona,1594 unkindest,2,twogentlemenofverona,1594 mayst,2,twogentlemenofverona,1594 fold,2,twogentlemenofverona,1594 thanks,2,twogentlemenofverona,1594 bought,2,twogentlemenofverona,1594 undone,2,twogentlemenofverona,1594 deadly,2,twogentlemenofverona,1594 Hark,2,twogentlemenofverona,1594 judgment,2,twogentlemenofverona,1594 token,2,twogentlemenofverona,1594 longing,2,twogentlemenofverona,1594 hazard,2,twogentlemenofverona,1594 willingly,2,twogentlemenofverona,1594 root,2,twogentlemenofverona,1594 spoken,2,twogentlemenofverona,1594 Hellespont,2,twogentlemenofverona,1594 North,2,twogentlemenofverona,1594 notable,2,twogentlemenofverona,1594 codpiece,2,twogentlemenofverona,1594 perceived,2,twogentlemenofverona,1594 JULIA'S,2,twogentlemenofverona,1594 report,2,twogentlemenofverona,1594 shouldst,2,twogentlemenofverona,1594 silence,2,twogentlemenofverona,1594 thinks,2,twogentlemenofverona,1594 rare,2,twogentlemenofverona,1594 daily,2,twogentlemenofverona,1594 Jew,2,twogentlemenofverona,1594 'Ay,2,twogentlemenofverona,1594 who's,2,twogentlemenofverona,1594 threefold,2,twogentlemenofverona,1594 mouth,2,twogentlemenofverona,1594 several,2,twogentlemenofverona,1594 anger'd,2,twogentlemenofverona,1594 say'st,2,twogentlemenofverona,1594 tutor,2,twogentlemenofverona,1594 Dost,2,twogentlemenofverona,1594 likewise,2,twogentlemenofverona,1594 exchange,2,twogentlemenofverona,1594 nod,2,twogentlemenofverona,1594 teeth,2,twogentlemenofverona,1594 stars,2,twogentlemenofverona,1594 conclusion,2,twogentlemenofverona,1594 knave,2,twogentlemenofverona,1594 jars,2,twogentlemenofverona,1594 Cease,2,twogentlemenofverona,1594 reading,2,twogentlemenofverona,1594 'gainst,2,twogentlemenofverona,1594 Could,2,twogentlemenofverona,1594 'And,2,twogentlemenofverona,1594 known,2,twogentlemenofverona,1594 quench,2,twogentlemenofverona,1594 quote,2,twogentlemenofverona,1594 woo,2,twogentlemenofverona,1594 won,2,twogentlemenofverona,1594 blow,2,twogentlemenofverona,1594 Antonio,2,twogentlemenofverona,1594 Panthino,2,twogentlemenofverona,1594 trouble,2,twogentlemenofverona,1594 sayest,2,twogentlemenofverona,1594 Giving,2,twogentlemenofverona,1594 wrath,2,twogentlemenofverona,1594 Were,2,twogentlemenofverona,1594 milder,2,twogentlemenofverona,1594 proves,2,twogentlemenofverona,1594 close,2,twogentlemenofverona,1594 opinion,2,twogentlemenofverona,1594 former,2,twogentlemenofverona,1594 five,2,twogentlemenofverona,1594 cross'd,2,twogentlemenofverona,1594 only,2,twogentlemenofverona,1594 woes,2,twogentlemenofverona,1594 detest,2,twogentlemenofverona,1594 beseech,2,twogentlemenofverona,1594 unseen,2,twogentlemenofverona,1594 noddy,2,twogentlemenofverona,1594 Saw,2,twogentlemenofverona,1594 save,2,twogentlemenofverona,1594 idol,2,twogentlemenofverona,1594 heavy,2,twogentlemenofverona,1594 Think,2,twogentlemenofverona,1594 stick,2,twogentlemenofverona,1594 earnest,2,twogentlemenofverona,1594 believe,2,twogentlemenofverona,1594 receive,2,twogentlemenofverona,1594 'To,2,twogentlemenofverona,1594 swinged,2,twogentlemenofverona,1594 growing,2,twogentlemenofverona,1594 oath,2,twogentlemenofverona,1594 print,2,twogentlemenofverona,1594 wood,2,twogentlemenofverona,1594 rage,2,twogentlemenofverona,1594 forward,2,twogentlemenofverona,1594 wanton,2,twogentlemenofverona,1594 proceeding,2,twogentlemenofverona,1594 metamorphosed,2,twogentlemenofverona,1594 supper,2,twogentlemenofverona,1594 breakfast,2,twogentlemenofverona,1594 stayed,2,twogentlemenofverona,1594 bounty,2,twogentlemenofverona,1594 passenger,2,twogentlemenofverona,1594 served,2,twogentlemenofverona,1594 taken,2,twogentlemenofverona,1594 what's,2,twogentlemenofverona,1594 anger,2,twogentlemenofverona,1594 devoted,2,twogentlemenofverona,1594 dumb,2,twogentlemenofverona,1594 haply,2,twogentlemenofverona,1594 dull,2,twogentlemenofverona,1594 serves,2,twogentlemenofverona,1594 angry,2,twogentlemenofverona,1594 fail,2,twogentlemenofverona,1594 gifts,2,twogentlemenofverona,1594 glad,2,twogentlemenofverona,1594 fain,2,twogentlemenofverona,1594 table,2,twogentlemenofverona,1594 ground,2,twogentlemenofverona,1594 minds,2,twogentlemenofverona,1594 stolen,2,twogentlemenofverona,1594 Till,2,twogentlemenofverona,1594 silly,2,twogentlemenofverona,1594 fie,2,twogentlemenofverona,1594 unjust,2,twogentlemenofverona,1594 fill,2,twogentlemenofverona,1594 host,2,twogentlemenofverona,1594 ta'en,2,twogentlemenofverona,1594 tail,2,twogentlemenofverona,1594 practise,2,twogentlemenofverona,1594 depart,2,twogentlemenofverona,1594 mates,2,twogentlemenofverona,1594 patient,2,twogentlemenofverona,1594 dispraise,2,twogentlemenofverona,1594 deliver'd,2,twogentlemenofverona,1594 will't,2,twogentlemenofverona,1594 Leander,2,twogentlemenofverona,1594 secrets,2,twogentlemenofverona,1594 large,2,twogentlemenofverona,1594 Welcome,2,twogentlemenofverona,1594 law,2,twogentlemenofverona,1594 lay,2,twogentlemenofverona,1594 man's,2,twogentlemenofverona,1594 departure,2,twogentlemenofverona,1594 convey,2,twogentlemenofverona,1594 given,2,twogentlemenofverona,1594 wild,2,twogentlemenofverona,1594 dangerous,2,twogentlemenofverona,1594 honest,2,twogentlemenofverona,1594 flood,2,twogentlemenofverona,1594 Wherefore,2,twogentlemenofverona,1594 favours,2,twogentlemenofverona,1594 giver,2,twogentlemenofverona,1594 wife,2,twogentlemenofverona,1594 beset,2,twogentlemenofverona,1594 hairs,2,twogentlemenofverona,1594 lovely,2,twogentlemenofverona,1594 contents,2,twogentlemenofverona,1594 adieu,2,twogentlemenofverona,1594 low,2,twogentlemenofverona,1594 seem,2,twogentlemenofverona,1594 presence,2,twogentlemenofverona,1594 adore,2,twogentlemenofverona,1594 shapes,2,twogentlemenofverona,1594 thereof,2,twogentlemenofverona,1594 Pray,2,twogentlemenofverona,1594 understands,2,twogentlemenofverona,1594 therein,2,twogentlemenofverona,1594 hours,2,twogentlemenofverona,1594 entreat,2,twogentlemenofverona,1594 huge,2,twogentlemenofverona,1594 Send,2,twogentlemenofverona,1594 exceptions,2,twogentlemenofverona,1594 post,2,twogentlemenofverona,1594 reputed,2,twogentlemenofverona,1594 nurse,2,twogentlemenofverona,1594 deceive,2,twogentlemenofverona,1594 countryman,2,twogentlemenofverona,1594 protest,2,twogentlemenofverona,1594 betroth'd,2,twogentlemenofverona,1594 vices,2,twogentlemenofverona,1594 begins,2,twogentlemenofverona,1594 learn,2,twogentlemenofverona,1594 remember,2,twogentlemenofverona,1594 correction,2,twogentlemenofverona,1594 street,2,twogentlemenofverona,1594 burns,2,twogentlemenofverona,1594 Away,2,twogentlemenofverona,1594 wound,2,twogentlemenofverona,1594 marriage,2,twogentlemenofverona,1594 corded,2,twogentlemenofverona,1594 simple,2,twogentlemenofverona,1594 lover's,2,twogentlemenofverona,1594 employ,2,twogentlemenofverona,1594 therewithal,2,twogentlemenofverona,1594 asleep,2,twogentlemenofverona,1594 harsh,2,twogentlemenofverona,1594 Did,2,twogentlemenofverona,1594 liquor,2,twogentlemenofverona,1594 humbled,2,twogentlemenofverona,1594 dispatch,2,twogentlemenofverona,1594 dry,2,twogentlemenofverona,1594 proclamation,2,twogentlemenofverona,1594 success,2,twogentlemenofverona,1594 rescue,2,twogentlemenofverona,1594 shine,2,twogentlemenofverona,1594 uncivil,2,twogentlemenofverona,1594 drown'd,2,twogentlemenofverona,1594 ten,2,twogentlemenofverona,1594 power,2,twogentlemenofverona,1594 remembrance,2,twogentlemenofverona,1594 shoes,2,twogentlemenofverona,1594 breathe,2,twogentlemenofverona,1594 intends,2,twogentlemenofverona,1594 undertake,2,twogentlemenofverona,1594 sands,2,twogentlemenofverona,1594 enemy,2,twogentlemenofverona,1594 sharp,2,twogentlemenofverona,1594 Don,2,twogentlemenofverona,1594 answer,3,twogentlemenofverona,1594 parted,3,twogentlemenofverona,1594 days,3,twogentlemenofverona,1594 took,3,twogentlemenofverona,1594 horse,3,twogentlemenofverona,1594 Patrick's,3,twogentlemenofverona,1594 Fie,3,twogentlemenofverona,1594 peace,3,twogentlemenofverona,1594 haste,3,twogentlemenofverona,1594 health,3,twogentlemenofverona,1594 held,3,twogentlemenofverona,1594 painted,3,twogentlemenofverona,1594 sight,3,twogentlemenofverona,1594 honourable,3,twogentlemenofverona,1594 slander,3,twogentlemenofverona,1594 nought,3,twogentlemenofverona,1594 cast,3,twogentlemenofverona,1594 song,3,twogentlemenofverona,1594 mistook,3,twogentlemenofverona,1594 chid,3,twogentlemenofverona,1594 birth,3,twogentlemenofverona,1594 sad,3,twogentlemenofverona,1594 jest,3,twogentlemenofverona,1594 saw,3,twogentlemenofverona,1594 Give,3,twogentlemenofverona,1594 gracious,3,twogentlemenofverona,1594 heat,3,twogentlemenofverona,1594 Only,3,twogentlemenofverona,1594 wait,3,twogentlemenofverona,1594 perjured,3,twogentlemenofverona,1594 sit,3,twogentlemenofverona,1594 think'st,3,twogentlemenofverona,1594 favoured,3,twogentlemenofverona,1594 suit,3,twogentlemenofverona,1594 Such,3,twogentlemenofverona,1594 within,3,twogentlemenofverona,1594 wages,3,twogentlemenofverona,1594 groans,3,twogentlemenofverona,1594 sends,3,twogentlemenofverona,1594 These,3,twogentlemenofverona,1594 Out,3,twogentlemenofverona,1594 fellow,3,twogentlemenofverona,1594 figure,3,twogentlemenofverona,1594 habit,3,twogentlemenofverona,1594 Pardon,3,twogentlemenofverona,1594 wink,3,twogentlemenofverona,1594 Musicians,3,twogentlemenofverona,1594 steal,3,twogentlemenofverona,1594 access,3,twogentlemenofverona,1594 ladyship's,3,twogentlemenofverona,1594 wise,3,twogentlemenofverona,1594 Though,3,twogentlemenofverona,1594 seest,3,twogentlemenofverona,1594 bold,3,twogentlemenofverona,1594 harbour,3,twogentlemenofverona,1594 office,3,twogentlemenofverona,1594 mistake,3,twogentlemenofverona,1594 Love's,3,twogentlemenofverona,1594 bitter,3,twogentlemenofverona,1594 rival,3,twogentlemenofverona,1594 Belike,3,twogentlemenofverona,1594 sigh,3,twogentlemenofverona,1594 bed,3,twogentlemenofverona,1594 dinner,3,twogentlemenofverona,1594 quick,3,twogentlemenofverona,1594 Forgive,3,twogentlemenofverona,1594 sooner,3,twogentlemenofverona,1594 burn,3,twogentlemenofverona,1594 dote,3,twogentlemenofverona,1594 wear,3,twogentlemenofverona,1594 put,3,twogentlemenofverona,1594 twice,3,twogentlemenofverona,1594 curse,3,twogentlemenofverona,1594 bud,3,twogentlemenofverona,1594 longer,3,twogentlemenofverona,1594 gate,3,twogentlemenofverona,1594 importune,3,twogentlemenofverona,1594 begin,3,twogentlemenofverona,1594 pearls,3,twogentlemenofverona,1594 entertain,3,twogentlemenofverona,1594 story,3,twogentlemenofverona,1594 deep,3,twogentlemenofverona,1594 breath,3,twogentlemenofverona,1594 voyage,3,twogentlemenofverona,1594 air,3,twogentlemenofverona,1594 Crab,3,twogentlemenofverona,1594 favour,3,twogentlemenofverona,1594 lend,3,twogentlemenofverona,1594 buried,3,twogentlemenofverona,1594 speed,3,twogentlemenofverona,1594 ale,3,twogentlemenofverona,1594 gentlewoman,3,twogentlemenofverona,1594 wench,3,twogentlemenofverona,1594 doom,3,twogentlemenofverona,1594 banished,3,twogentlemenofverona,1594 Master,3,twogentlemenofverona,1594 whereof,3,twogentlemenofverona,1594 Myself,3,twogentlemenofverona,1594 drift,3,twogentlemenofverona,1594 resolved,3,twogentlemenofverona,1594 ill,3,twogentlemenofverona,1594 greater,3,twogentlemenofverona,1594 forgot,3,twogentlemenofverona,1594 climb,3,twogentlemenofverona,1594 hardly,3,twogentlemenofverona,1594 Christian,3,twogentlemenofverona,1594 knit,3,twogentlemenofverona,1594 shallow,3,twogentlemenofverona,1594 More,3,twogentlemenofverona,1594 strings,3,twogentlemenofverona,1594 excuse,3,twogentlemenofverona,1594 course,3,twogentlemenofverona,1594 page,3,twogentlemenofverona,1594 form,3,twogentlemenofverona,1594 nightly,3,twogentlemenofverona,1594 ask,3,twogentlemenofverona,1594 neglect,3,twogentlemenofverona,1594 alive,3,twogentlemenofverona,1594 shot,3,twogentlemenofverona,1594 food,3,twogentlemenofverona,1594 object,3,twogentlemenofverona,1594 secret,3,twogentlemenofverona,1594 trick,3,twogentlemenofverona,1594 new,3,twogentlemenofverona,1594 here's,3,twogentlemenofverona,1594 note,3,twogentlemenofverona,1594 proceed,3,twogentlemenofverona,1594 sirrah,3,twogentlemenofverona,1594 strike,3,twogentlemenofverona,1594 quickly,3,twogentlemenofverona,1594 you'll,3,twogentlemenofverona,1594 parting,3,twogentlemenofverona,1594 child,3,twogentlemenofverona,1594 effect,3,twogentlemenofverona,1594 lodge,3,twogentlemenofverona,1594 milk,3,twogentlemenofverona,1594 Friar,3,twogentlemenofverona,1594 qualities,3,twogentlemenofverona,1594 prize,3,twogentlemenofverona,1594 plead,3,twogentlemenofverona,1594 Father,3,twogentlemenofverona,1594 dream,3,twogentlemenofverona,1594 mark,3,twogentlemenofverona,1594 woe,3,twogentlemenofverona,1594 slave,3,twogentlemenofverona,1594 quoth,3,twogentlemenofverona,1594 labour,3,twogentlemenofverona,1594 chide,3,twogentlemenofverona,1594 special,3,twogentlemenofverona,1594 father's,3,twogentlemenofverona,1594 Made,3,twogentlemenofverona,1594 mistress',3,twogentlemenofverona,1594 living,3,twogentlemenofverona,1594 salt,3,twogentlemenofverona,1594 throw,3,twogentlemenofverona,1594 oft,3,twogentlemenofverona,1594 win,3,twogentlemenofverona,1594 message,3,twogentlemenofverona,1594 fetch,3,twogentlemenofverona,1594 count,3,twogentlemenofverona,1594 Thus,3,twogentlemenofverona,1594 Can,3,twogentlemenofverona,1594 intend,3,twogentlemenofverona,1594 found,3,twogentlemenofverona,1594 danger,3,twogentlemenofverona,1594 Heaven,3,twogentlemenofverona,1594 weeping,3,twogentlemenofverona,1594 compass,3,twogentlemenofverona,1594 wept,3,twogentlemenofverona,1594 judge,3,twogentlemenofverona,1594 fall,3,twogentlemenofverona,1594 amends,3,twogentlemenofverona,1594 old,3,twogentlemenofverona,1594 grant,3,twogentlemenofverona,1594 methinks,3,twogentlemenofverona,1594 three,3,twogentlemenofverona,1594 pleased,3,twogentlemenofverona,1594 passing,3,twogentlemenofverona,1594 'em,3,twogentlemenofverona,1594 fine,3,twogentlemenofverona,1594 rich,3,twogentlemenofverona,1594 ne'er,3,twogentlemenofverona,1594 hose,3,twogentlemenofverona,1594 Unto,3,twogentlemenofverona,1594 shows,3,twogentlemenofverona,1594 herself,3,twogentlemenofverona,1594 whither,3,twogentlemenofverona,1594 names,3,twogentlemenofverona,1594 prefer,3,twogentlemenofverona,1594 emperor,3,twogentlemenofverona,1594 constant,3,twogentlemenofverona,1594 frontiers,3,twogentlemenofverona,1594 otherwise,3,twogentlemenofverona,1594 request,3,twogentlemenofverona,1594 virtues,3,twogentlemenofverona,1594 seal,3,twogentlemenofverona,1594 falsehood,3,twogentlemenofverona,1594 complaining,3,twogentlemenofverona,1594 swear,3,twogentlemenofverona,1594 captain,3,twogentlemenofverona,1594 seen,3,twogentlemenofverona,1594 True,3,twogentlemenofverona,1594 lovers,3,twogentlemenofverona,1594 leg,3,twogentlemenofverona,1594 Neither,3,twogentlemenofverona,1594 together,3,twogentlemenofverona,1594 bade,3,twogentlemenofverona,1594 cold,3,twogentlemenofverona,1594 fearing,3,twogentlemenofverona,1594 purpose,3,twogentlemenofverona,1594 bestow,3,twogentlemenofverona,1594 ear,3,twogentlemenofverona,1594 evening,3,twogentlemenofverona,1594 sister,3,twogentlemenofverona,1594 According,3,twogentlemenofverona,1594 Since,3,twogentlemenofverona,1594 fled,3,twogentlemenofverona,1594 henceforth,3,twogentlemenofverona,1594 respects,3,twogentlemenofverona,1594 thither,3,twogentlemenofverona,1594 severally,3,twogentlemenofverona,1594 cell,3,twogentlemenofverona,1594 try,3,twogentlemenofverona,1594 witness,3,twogentlemenofverona,1594 attend,3,twogentlemenofverona,1594 emperor's,3,twogentlemenofverona,1594 certain,3,twogentlemenofverona,1594 Take,3,twogentlemenofverona,1594 cross,3,twogentlemenofverona,1594 king,3,twogentlemenofverona,1594 possessions,3,twogentlemenofverona,1594 spirit,3,twogentlemenofverona,1594 kill,3,twogentlemenofverona,1594 bids,3,twogentlemenofverona,1594 e'er,3,twogentlemenofverona,1594 die,3,twogentlemenofverona,1594 Valentine's,3,twogentlemenofverona,1594 for't,4,twogentlemenofverona,1594 weary,4,twogentlemenofverona,1594 woman's,4,twogentlemenofverona,1594 thought,4,twogentlemenofverona,1594 every,4,twogentlemenofverona,1594 Tell,4,twogentlemenofverona,1594 hers,4,twogentlemenofverona,1594 while,4,twogentlemenofverona,1594 soul,4,twogentlemenofverona,1594 run,4,twogentlemenofverona,1594 Would,4,twogentlemenofverona,1594 soon,4,twogentlemenofverona,1594 Whose,4,twogentlemenofverona,1594 circumstance,4,twogentlemenofverona,1594 purse,4,twogentlemenofverona,1594 head,4,twogentlemenofverona,1594 warrant,4,twogentlemenofverona,1594 enough,4,twogentlemenofverona,1594 penance,4,twogentlemenofverona,1594 walk,4,twogentlemenofverona,1594 scorn,4,twogentlemenofverona,1594 deliver,4,twogentlemenofverona,1594 it's,4,twogentlemenofverona,1594 Servant,4,twogentlemenofverona,1594 mother,4,twogentlemenofverona,1594 taught,4,twogentlemenofverona,1594 both,4,twogentlemenofverona,1594 expedition,4,twogentlemenofverona,1594 above,4,twogentlemenofverona,1594 feed,4,twogentlemenofverona,1594 One,4,twogentlemenofverona,1594 desire,4,twogentlemenofverona,1594 each,4,twogentlemenofverona,1594 'Twere,4,twogentlemenofverona,1594 An,4,twogentlemenofverona,1594 neither,4,twogentlemenofverona,1594 patience,4,twogentlemenofverona,1594 youthful,4,twogentlemenofverona,1594 bad,4,twogentlemenofverona,1594 Her,4,twogentlemenofverona,1594 Outlaws,4,twogentlemenofverona,1594 Good,4,twogentlemenofverona,1594 weep,4,twogentlemenofverona,1594 grief,4,twogentlemenofverona,1594 Re,4,twogentlemenofverona,1594 vows,4,twogentlemenofverona,1594 travel,4,twogentlemenofverona,1594 divine,4,twogentlemenofverona,1594 resort,4,twogentlemenofverona,1594 needs,4,twogentlemenofverona,1594 Besides,4,twogentlemenofverona,1594 lady's,4,twogentlemenofverona,1594 forget,4,twogentlemenofverona,1594 small,4,twogentlemenofverona,1594 age,4,twogentlemenofverona,1594 less,4,twogentlemenofverona,1594 journey,4,twogentlemenofverona,1594 hand,4,twogentlemenofverona,1594 praise,4,twogentlemenofverona,1594 stones,4,twogentlemenofverona,1594 bosom,4,twogentlemenofverona,1594 except,4,twogentlemenofverona,1594 ass,4,twogentlemenofverona,1594 Hath,4,twogentlemenofverona,1594 Silvia's,4,twogentlemenofverona,1594 through,4,twogentlemenofverona,1594 moved,4,twogentlemenofverona,1594 mutton,4,twogentlemenofverona,1594 Peace,4,twogentlemenofverona,1594 substance,4,twogentlemenofverona,1594 stays,4,twogentlemenofverona,1594 ignorant,4,twogentlemenofverona,1594 Look,4,twogentlemenofverona,1594 foolish,4,twogentlemenofverona,1594 already,4,twogentlemenofverona,1594 knows,4,twogentlemenofverona,1594 flatter,4,twogentlemenofverona,1594 Being,4,twogentlemenofverona,1594 affairs,4,twogentlemenofverona,1594 grave,4,twogentlemenofverona,1594 near,4,twogentlemenofverona,1594 pound,4,twogentlemenofverona,1594 We'll,4,twogentlemenofverona,1594 sorrow,4,twogentlemenofverona,1594 loving,4,twogentlemenofverona,1594 heard,4,twogentlemenofverona,1594 likes,4,twogentlemenofverona,1594 staff,4,twogentlemenofverona,1594 wont,4,twogentlemenofverona,1594 next,4,twogentlemenofverona,1594 duke,4,twogentlemenofverona,1594 marry,4,twogentlemenofverona,1594 modesty,4,twogentlemenofverona,1594 desert,4,twogentlemenofverona,1594 discover,4,twogentlemenofverona,1594 perfect,4,twogentlemenofverona,1594 bare,4,twogentlemenofverona,1594 lordship,4,twogentlemenofverona,1594 wealth,4,twogentlemenofverona,1594 hope,4,twogentlemenofverona,1594 Let,4,twogentlemenofverona,1594 wilt,4,twogentlemenofverona,1594 pardon,4,twogentlemenofverona,1594 holy,4,twogentlemenofverona,1594 follows,4,twogentlemenofverona,1594 always,4,twogentlemenofverona,1594 back,4,twogentlemenofverona,1594 cry,4,twogentlemenofverona,1594 heavenly,4,twogentlemenofverona,1594 self,4,twogentlemenofverona,1594 hither,4,twogentlemenofverona,1594 goes,4,twogentlemenofverona,1594 perjury,4,twogentlemenofverona,1594 least,4,twogentlemenofverona,1594 Except,4,twogentlemenofverona,1594 Indeed,4,twogentlemenofverona,1594 last,4,twogentlemenofverona,1594 respect,4,twogentlemenofverona,1594 dare,4,twogentlemenofverona,1594 Lest,4,twogentlemenofverona,1594 boots,4,twogentlemenofverona,1594 wouldst,4,twogentlemenofverona,1594 women,4,twogentlemenofverona,1594 V,5,twogentlemenofverona,1594 times,5,twogentlemenofverona,1594 advice,5,twogentlemenofverona,1594 help,5,twogentlemenofverona,1594 Will,5,twogentlemenofverona,1594 Wilt,5,twogentlemenofverona,1594 joy,5,twogentlemenofverona,1594 rather,5,twogentlemenofverona,1594 sighs,5,twogentlemenofverona,1594 under,5,twogentlemenofverona,1594 truth,5,twogentlemenofverona,1594 trust,5,twogentlemenofverona,1594 Nor,5,twogentlemenofverona,1594 black,5,twogentlemenofverona,1594 sea,5,twogentlemenofverona,1594 beloved,5,twogentlemenofverona,1594 looks,5,twogentlemenofverona,1594 read,5,twogentlemenofverona,1594 wrong,5,twogentlemenofverona,1594 confer,5,twogentlemenofverona,1594 thence,5,twogentlemenofverona,1594 about,5,twogentlemenofverona,1594 sun,5,twogentlemenofverona,1594 want,5,twogentlemenofverona,1594 know'st,5,twogentlemenofverona,1594 perfection,5,twogentlemenofverona,1594 canst,5,twogentlemenofverona,1594 stay,5,twogentlemenofverona,1594 force,5,twogentlemenofverona,1594 tear,5,twogentlemenofverona,1594 means,5,twogentlemenofverona,1594 enter,5,twogentlemenofverona,1594 play,5,twogentlemenofverona,1594 sing,5,twogentlemenofverona,1594 hands,5,twogentlemenofverona,1594 commend,5,twogentlemenofverona,1594 lover,5,twogentlemenofverona,1594 lost,5,twogentlemenofverona,1594 twenty,5,twogentlemenofverona,1594 knew,5,twogentlemenofverona,1594 place,5,twogentlemenofverona,1594 brought,5,twogentlemenofverona,1594 part,5,twogentlemenofverona,1594 keep,5,twogentlemenofverona,1594 messenger,5,twogentlemenofverona,1594 present,5,twogentlemenofverona,1594 though,5,twogentlemenofverona,1594 shoe,5,twogentlemenofverona,1594 girl,5,twogentlemenofverona,1594 touch,5,twogentlemenofverona,1594 Should,5,twogentlemenofverona,1594 water,5,twogentlemenofverona,1594 things,5,twogentlemenofverona,1594 From,5,twogentlemenofverona,1594 unhappy,5,twogentlemenofverona,1594 forest,5,twogentlemenofverona,1594 awhile,5,twogentlemenofverona,1594 Lord,5,twogentlemenofverona,1594 high,5,twogentlemenofverona,1594 They,5,twogentlemenofverona,1594 once,5,twogentlemenofverona,1594 worthless,5,twogentlemenofverona,1594 letters,5,twogentlemenofverona,1594 before,5,twogentlemenofverona,1594 losing,5,twogentlemenofverona,1594 off,5,twogentlemenofverona,1594 happiness,5,twogentlemenofverona,1594 Say,5,twogentlemenofverona,1594 flight,5,twogentlemenofverona,1594 coming,5,twogentlemenofverona,1594 takes,5,twogentlemenofverona,1594 fly,5,twogentlemenofverona,1594 worship,5,twogentlemenofverona,1594 talk,5,twogentlemenofverona,1594 carry,5,twogentlemenofverona,1594 cur,5,twogentlemenofverona,1594 Julia's,5,twogentlemenofverona,1594 Know,5,twogentlemenofverona,1594 tied,5,twogentlemenofverona,1594 send,5,twogentlemenofverona,1594 Mistress,5,twogentlemenofverona,1594 first,5,twogentlemenofverona,1594 lie,5,twogentlemenofverona,1594 Nothing,5,twogentlemenofverona,1594 sleep,5,twogentlemenofverona,1594 fashion,5,twogentlemenofverona,1594 Without,5,twogentlemenofverona,1594 going,5,twogentlemenofverona,1594 command,5,twogentlemenofverona,1594 forbear,5,twogentlemenofverona,1594 care,6,twogentlemenofverona,1594 came,6,twogentlemenofverona,1594 stands,6,twogentlemenofverona,1594 light,6,twogentlemenofverona,1594 counsel,6,twogentlemenofverona,1594 turn,6,twogentlemenofverona,1594 fault,6,twogentlemenofverona,1594 blind,6,twogentlemenofverona,1594 Please,6,twogentlemenofverona,1594 wish,6,twogentlemenofverona,1594 window,6,twogentlemenofverona,1594 What's,6,twogentlemenofverona,1594 III,6,twogentlemenofverona,1594 At,6,twogentlemenofverona,1594 Be,6,twogentlemenofverona,1594 kept,6,twogentlemenofverona,1594 tongue,6,twogentlemenofverona,1594 pains,6,twogentlemenofverona,1594 left,6,twogentlemenofverona,1594 dear,6,twogentlemenofverona,1594 thyself,6,twogentlemenofverona,1594 spend,6,twogentlemenofverona,1594 pure,6,twogentlemenofverona,1594 Mantua,6,twogentlemenofverona,1594 forsworn,6,twogentlemenofverona,1594 Are,6,twogentlemenofverona,1594 having,6,twogentlemenofverona,1594 change,6,twogentlemenofverona,1594 often,6,twogentlemenofverona,1594 nay,6,twogentlemenofverona,1594 none,6,twogentlemenofverona,1594 tender,6,twogentlemenofverona,1594 young,6,twogentlemenofverona,1594 ere,6,twogentlemenofverona,1594 cloak,6,twogentlemenofverona,1594 nor,6,twogentlemenofverona,1594 end,6,twogentlemenofverona,1594 didst,6,twogentlemenofverona,1594 All,6,twogentlemenofverona,1594 need,6,twogentlemenofverona,1594 over,6,twogentlemenofverona,1594 fire,6,twogentlemenofverona,1594 thine,6,twogentlemenofverona,1594 break,6,twogentlemenofverona,1594 duty,6,twogentlemenofverona,1594 serve,6,twogentlemenofverona,1594 DUKE's,6,twogentlemenofverona,1594 fit,6,twogentlemenofverona,1594 lines,6,twogentlemenofverona,1594 hour,6,twogentlemenofverona,1594 till,6,twogentlemenofverona,1594 fast,6,twogentlemenofverona,1594 lives,6,twogentlemenofverona,1594 we'll,6,twogentlemenofverona,1594 lovest,6,twogentlemenofverona,1594 tide,6,twogentlemenofverona,1594 return,6,twogentlemenofverona,1594 match,6,twogentlemenofverona,1594 master's,6,twogentlemenofverona,1594 slow,6,twogentlemenofverona,1594 write,6,twogentlemenofverona,1594 virtue,6,twogentlemenofverona,1594 shame,6,twogentlemenofverona,1594 Alas,7,twogentlemenofverona,1594 become,7,twogentlemenofverona,1594 yourself,7,twogentlemenofverona,1594 death,7,twogentlemenofverona,1594 set,7,twogentlemenofverona,1594 faults,7,twogentlemenofverona,1594 IV,7,twogentlemenofverona,1594 whose,7,twogentlemenofverona,1594 dost,7,twogentlemenofverona,1594 shadow,7,twogentlemenofverona,1594 picture,7,twogentlemenofverona,1594 said,7,twogentlemenofverona,1594 Unless,7,twogentlemenofverona,1594 dead,7,twogentlemenofverona,1594 earth,7,twogentlemenofverona,1594 Yet,7,twogentlemenofverona,1594 show,7,twogentlemenofverona,1594 ye,7,twogentlemenofverona,1594 far,7,twogentlemenofverona,1594 faith,7,twogentlemenofverona,1594 eye,7,twogentlemenofverona,1594 Some,7,twogentlemenofverona,1594 because,7,twogentlemenofverona,1594 who,7,twogentlemenofverona,1594 get,7,twogentlemenofverona,1594 morrow,7,twogentlemenofverona,1594 way,7,twogentlemenofverona,1594 face,7,twogentlemenofverona,1594 happy,7,twogentlemenofverona,1594 hair,7,twogentlemenofverona,1594 tune,7,twogentlemenofverona,1594 palace,7,twogentlemenofverona,1594 Sweet,7,twogentlemenofverona,1594 find,7,twogentlemenofverona,1594 base,7,twogentlemenofverona,1594 great,7,twogentlemenofverona,1594 along,7,twogentlemenofverona,1594 seek,7,twogentlemenofverona,1594 house,7,twogentlemenofverona,1594 two,7,twogentlemenofverona,1594 follow,7,twogentlemenofverona,1594 without,7,twogentlemenofverona,1594 shalt,7,twogentlemenofverona,1594 oaths,7,twogentlemenofverona,1594 Launce,7,twogentlemenofverona,1594 pity,8,twogentlemenofverona,1594 life,8,twogentlemenofverona,1594 world,8,twogentlemenofverona,1594 sure,8,twogentlemenofverona,1594 against,8,twogentlemenofverona,1594 son,8,twogentlemenofverona,1594 honour,8,twogentlemenofverona,1594 rest,8,twogentlemenofverona,1594 prove,8,twogentlemenofverona,1594 Or,8,twogentlemenofverona,1594 ay,8,twogentlemenofverona,1594 loves,8,twogentlemenofverona,1594 Because,8,twogentlemenofverona,1594 hard,8,twogentlemenofverona,1594 discourse,8,twogentlemenofverona,1594 ladder,8,twogentlemenofverona,1594 hate,8,twogentlemenofverona,1594 Than,8,twogentlemenofverona,1594 Have,8,twogentlemenofverona,1594 maid,8,twogentlemenofverona,1594 indeed,8,twogentlemenofverona,1594 into,8,twogentlemenofverona,1594 Verona,8,twogentlemenofverona,1594 yours,8,twogentlemenofverona,1594 many,8,twogentlemenofverona,1594 stand,8,twogentlemenofverona,1594 court,8,twogentlemenofverona,1594 banish'd,8,twogentlemenofverona,1594 Even,8,twogentlemenofverona,1594 perceive,8,twogentlemenofverona,1594 shepherd,8,twogentlemenofverona,1594 reason,8,twogentlemenofverona,1594 alone,8,twogentlemenofverona,1594 use,8,twogentlemenofverona,1594 poor,8,twogentlemenofverona,1594 thoughts,8,twogentlemenofverona,1594 beauty,8,twogentlemenofverona,1594 might,8,twogentlemenofverona,1594 woman,8,twogentlemenofverona,1594 himself,8,twogentlemenofverona,1594 other,8,twogentlemenofverona,1594 meet,9,twogentlemenofverona,1594 friends,9,twogentlemenofverona,1594 paper,9,twogentlemenofverona,1594 full,9,twogentlemenofverona,1594 bring,9,twogentlemenofverona,1594 therefore,9,twogentlemenofverona,1594 since,9,twogentlemenofverona,1594 down,9,twogentlemenofverona,1594 So,9,twogentlemenofverona,1594 bear,9,twogentlemenofverona,1594 fool,9,twogentlemenofverona,1594 Your,9,twogentlemenofverona,1594 Therefore,9,twogentlemenofverona,1594 comes,9,twogentlemenofverona,1594 Third,9,twogentlemenofverona,1594 could,9,twogentlemenofverona,1594 That's,9,twogentlemenofverona,1594 fortune,9,twogentlemenofverona,1594 please,9,twogentlemenofverona,1594 kiss,9,twogentlemenofverona,1594 hold,9,twogentlemenofverona,1594 home,9,twogentlemenofverona,1594 whom,9,twogentlemenofverona,1594 live,9,twogentlemenofverona,1594 kind,9,twogentlemenofverona,1594 mistress,10,twogentlemenofverona,1594 daughter,10,twogentlemenofverona,1594 worthy,10,twogentlemenofverona,1594 service,10,twogentlemenofverona,1594 heaven,10,twogentlemenofverona,1594 matter,10,twogentlemenofverona,1594 music,10,twogentlemenofverona,1594 His,10,twogentlemenofverona,1594 In,10,twogentlemenofverona,1594 Lucetta,10,twogentlemenofverona,1594 any,10,twogentlemenofverona,1594 most,10,twogentlemenofverona,1594 loved,10,twogentlemenofverona,1594 welcome,10,twogentlemenofverona,1594 folly,10,twogentlemenofverona,1594 unto,10,twogentlemenofverona,1594 Marry,10,twogentlemenofverona,1594 tears,11,twogentlemenofverona,1594 Upon,11,twogentlemenofverona,1594 call,11,twogentlemenofverona,1594 better,11,twogentlemenofverona,1594 worth,11,twogentlemenofverona,1594 There,11,twogentlemenofverona,1594 Eglamour,11,twogentlemenofverona,1594 Of,11,twogentlemenofverona,1594 sheep,11,twogentlemenofverona,1594 long,11,twogentlemenofverona,1594 Second,11,twogentlemenofverona,1594 little,11,twogentlemenofverona,1594 EGLAMOUR,11,twogentlemenofverona,1594 same,11,twogentlemenofverona,1594 thing,11,twogentlemenofverona,1594 sake,11,twogentlemenofverona,1594 ring,11,twogentlemenofverona,1594 Milan,11,twogentlemenofverona,1594 news,11,twogentlemenofverona,1594 company,11,twogentlemenofverona,1594 even,11,twogentlemenofverona,1594 day,11,twogentlemenofverona,1594 thousand,11,twogentlemenofverona,1594 gentlemen,11,twogentlemenofverona,1594 thank,11,twogentlemenofverona,1594 eyes,11,twogentlemenofverona,1594 thus,11,twogentlemenofverona,1594 sent,11,twogentlemenofverona,1594 Not,12,twogentlemenofverona,1594 after,12,twogentlemenofverona,1594 Here,12,twogentlemenofverona,1594 name,12,twogentlemenofverona,1594 By,12,twogentlemenofverona,1594 boy,12,twogentlemenofverona,1594 II,12,twogentlemenofverona,1594 night,12,twogentlemenofverona,1594 again,12,twogentlemenofverona,1594 says,12,twogentlemenofverona,1594 'Tis,12,twogentlemenofverona,1594 ever,12,twogentlemenofverona,1594 words,13,twogentlemenofverona,1594 another,13,twogentlemenofverona,1594 Who,13,twogentlemenofverona,1594 nothing,13,twogentlemenofverona,1594 fear,13,twogentlemenofverona,1594 false,13,twogentlemenofverona,1594 hence,13,twogentlemenofverona,1594 ladyship,13,twogentlemenofverona,1594 It,13,twogentlemenofverona,1594 best,13,twogentlemenofverona,1594 gave,13,twogentlemenofverona,1594 doth,13,twogentlemenofverona,1594 that's,13,twogentlemenofverona,1594 First,13,twogentlemenofverona,1594 made,13,twogentlemenofverona,1594 mind,13,twogentlemenofverona,1594 still,13,twogentlemenofverona,1594 own,13,twogentlemenofverona,1594 men,13,twogentlemenofverona,1594 Where,13,twogentlemenofverona,1594 mean,14,twogentlemenofverona,1594 these,14,twogentlemenofverona,1594 chamber,14,twogentlemenofverona,1594 Go,14,twogentlemenofverona,1594 done,14,twogentlemenofverona,1594 lose,14,twogentlemenofverona,1594 up,14,twogentlemenofverona,1594 ANTONIO,14,twogentlemenofverona,1594 presently,14,twogentlemenofverona,1594 hear,15,twogentlemenofverona,1594 Aside,15,twogentlemenofverona,1594 else,15,twogentlemenofverona,1594 never,15,twogentlemenofverona,1594 gone,15,twogentlemenofverona,1594 grace,15,twogentlemenofverona,1594 us,15,twogentlemenofverona,1594 youth,15,twogentlemenofverona,1594 Then,15,twogentlemenofverona,1594 why,15,twogentlemenofverona,1594 gentleman,15,twogentlemenofverona,1594 leave,15,twogentlemenofverona,1594 makes,15,twogentlemenofverona,1594 writ,16,twogentlemenofverona,1594 pray,16,twogentlemenofverona,1594 servant,16,twogentlemenofverona,1594 speak,16,twogentlemenofverona,1594 gentle,16,twogentlemenofverona,1594 Well,16,twogentlemenofverona,1594 word,16,twogentlemenofverona,1594 being,16,twogentlemenofverona,1594 When,16,twogentlemenofverona,1594 away,17,twogentlemenofverona,1594 Is,17,twogentlemenofverona,1594 very,17,twogentlemenofverona,1594 wit,17,twogentlemenofverona,1594 true,17,twogentlemenofverona,1594 Nay,18,twogentlemenofverona,1594 tell,18,twogentlemenofverona,1594 He,18,twogentlemenofverona,1594 look,18,twogentlemenofverona,1594 Love,18,twogentlemenofverona,1594 'Item,18,twogentlemenofverona,1594 With,19,twogentlemenofverona,1594 Host,19,twogentlemenofverona,1594 Which,19,twogentlemenofverona,1594 Exeunt,19,twogentlemenofverona,1594 been,19,twogentlemenofverona,1594 give,19,twogentlemenofverona,1594 art,19,twogentlemenofverona,1594 hast,19,twogentlemenofverona,1594 where,19,twogentlemenofverona,1594 heart,19,twogentlemenofverona,1594 father,19,twogentlemenofverona,1594 Come,20,twogentlemenofverona,1594 PANTHINO,20,twogentlemenofverona,1594 ACT,20,twogentlemenofverona,1594 Thou,20,twogentlemenofverona,1594 This,20,twogentlemenofverona,1594 take,20,twogentlemenofverona,1594 VERONA,21,twogentlemenofverona,1594 or,21,twogentlemenofverona,1594 TWO,21,twogentlemenofverona,1594 THE,21,twogentlemenofverona,1594 fair,21,twogentlemenofverona,1594 come,21,twogentlemenofverona,1594 sweet,21,twogentlemenofverona,1594 GENTLEMEN,21,twogentlemenofverona,1594 SCENE,21,twogentlemenofverona,1594 lady,21,twogentlemenofverona,1594 upon,22,twogentlemenofverona,1594 OF,22,twogentlemenofverona,1594 myself,22,twogentlemenofverona,1594 out,22,twogentlemenofverona,1594 dog,22,twogentlemenofverona,1594 which,23,twogentlemenofverona,1594 Thurio,23,twogentlemenofverona,1594 had,23,twogentlemenofverona,1594 there,23,twogentlemenofverona,1594 My,23,twogentlemenofverona,1594 You,23,twogentlemenofverona,1594 madam,23,twogentlemenofverona,1594 Now,24,twogentlemenofverona,1594 lord,24,twogentlemenofverona,1594 Madam,24,twogentlemenofverona,1594 time,24,twogentlemenofverona,1594 did,25,twogentlemenofverona,1594 friend,26,twogentlemenofverona,1594 'tis,26,twogentlemenofverona,1594 Exit,26,twogentlemenofverona,1594 see,27,twogentlemenofverona,1594 No,27,twogentlemenofverona,1594 their,27,twogentlemenofverona,1594 let,27,twogentlemenofverona,1594 too,27,twogentlemenofverona,1594 must,28,twogentlemenofverona,1594 we,28,twogentlemenofverona,1594 letter,28,twogentlemenofverona,1594 A,29,twogentlemenofverona,1594 As,29,twogentlemenofverona,1594 mine,29,twogentlemenofverona,1594 Julia,29,twogentlemenofverona,1594 man,29,twogentlemenofverona,1594 how,30,twogentlemenofverona,1594 here,31,twogentlemenofverona,1594 say,31,twogentlemenofverona,1594 some,31,twogentlemenofverona,1594 they,31,twogentlemenofverona,1594 an,31,twogentlemenofverona,1594 make,31,twogentlemenofverona,1594 master,31,twogentlemenofverona,1594 may,31,twogentlemenofverona,1594 Outlaw,32,twogentlemenofverona,1594 can,32,twogentlemenofverona,1594 were,32,twogentlemenofverona,1594 go,33,twogentlemenofverona,1594 should,33,twogentlemenofverona,1594 think,33,twogentlemenofverona,1594 our,33,twogentlemenofverona,1594 cannot,33,twogentlemenofverona,1594 like,34,twogentlemenofverona,1594 If,34,twogentlemenofverona,1594 yet,34,twogentlemenofverona,1594 know,34,twogentlemenofverona,1594 Ay,36,twogentlemenofverona,1594 much,37,twogentlemenofverona,1594 then,37,twogentlemenofverona,1594 such,37,twogentlemenofverona,1594 when,37,twogentlemenofverona,1594 a,294,twogentlemenofverona,1594 sir,39,twogentlemenofverona,1594 well,40,twogentlemenofverona,1594 than,41,twogentlemenofverona,1594 How,41,twogentlemenofverona,1594 you,297,twogentlemenofverona,1594 Enter,42,twogentlemenofverona,1594 was,42,twogentlemenofverona,1594 O,44,twogentlemenofverona,1594 For,44,twogentlemenofverona,1594 at,44,twogentlemenofverona,1594 what,44,twogentlemenofverona,1594 She,45,twogentlemenofverona,1594 them,46,twogentlemenofverona,1594 am,46,twogentlemenofverona,1594 I'll,46,twogentlemenofverona,1594 one,46,twogentlemenofverona,1594 I,558,twogentlemenofverona,1594 good,47,twogentlemenofverona,1594 THURIO,48,twogentlemenofverona,1594 more,49,twogentlemenofverona,1594 hath,49,twogentlemenofverona,1594 ',50,twogentlemenofverona,1594 Why,50,twogentlemenofverona,1594 if,50,twogentlemenofverona,1594 now,51,twogentlemenofverona,1594 shall,51,twogentlemenofverona,1594 no,52,twogentlemenofverona,1594 LUCETTA,53,twogentlemenofverona,1594 Sir,53,twogentlemenofverona,1594 Silvia,53,twogentlemenofverona,1594 The,53,twogentlemenofverona,1594 DUKE,55,twogentlemenofverona,1594 Proteus,56,twogentlemenofverona,1594 What,56,twogentlemenofverona,1594 Valentine,58,twogentlemenofverona,1594 all,58,twogentlemenofverona,1594 would,60,twogentlemenofverona,1594 from,62,twogentlemenofverona,1594 on,63,twogentlemenofverona,1594 That,64,twogentlemenofverona,1594 are,66,twogentlemenofverona,1594 by,69,twogentlemenofverona,1594 But,69,twogentlemenofverona,1594 SILVIA,70,twogentlemenofverona,1594 do,70,twogentlemenofverona,1594 To,73,twogentlemenofverona,1594 LAUNCE,75,twogentlemenofverona,1594 but,79,twogentlemenofverona,1594 thee,84,twogentlemenofverona,1594 he,84,twogentlemenofverona,1594 him,87,twogentlemenofverona,1594 this,90,twogentlemenofverona,1594 his,93,twogentlemenofverona,1594 the,353,twogentlemenofverona,1594 thy,98,twogentlemenofverona,1594 so,102,twogentlemenofverona,1594 will,104,twogentlemenofverona,1594 as,107,twogentlemenofverona,1594 JULIA,115,twogentlemenofverona,1594 to,373,twogentlemenofverona,1594 thou,122,twogentlemenofverona,1594 she,124,twogentlemenofverona,1594 SPEED,125,twogentlemenofverona,1594 have,129,twogentlemenofverona,1594 with,133,twogentlemenofverona,1594 be,144,twogentlemenofverona,1594 love,147,twogentlemenofverona,1594 your,154,twogentlemenofverona,1594 VALENTINE,158,twogentlemenofverona,1594 it,162,twogentlemenofverona,1594 PROTEUS,162,twogentlemenofverona,1594 in,167,twogentlemenofverona,1594 And,169,twogentlemenofverona,1594 for,184,twogentlemenofverona,1594 not,189,twogentlemenofverona,1594 her,197,twogentlemenofverona,1594 is,205,twogentlemenofverona,1594 that,221,twogentlemenofverona,1594 of,224,twogentlemenofverona,1594 me,235,twogentlemenofverona,1594 my,253,twogentlemenofverona,1594 and,255,twogentlemenofverona,1594 courageously,1,midsummersnightsdream,1595 brave,1,midsummersnightsdream,1595 shrewishness,1,midsummersnightsdream,1595 holding,1,midsummersnightsdream,1595 befal,1,midsummersnightsdream,1595 overbear,1,midsummersnightsdream,1595 answered,1,midsummersnightsdream,1595 heed,1,midsummersnightsdream,1595 shepherd's,1,midsummersnightsdream,1595 Francis,1,midsummersnightsdream,1595 asses,1,midsummersnightsdream,1595 jole,1,midsummersnightsdream,1595 moral,1,midsummersnightsdream,1595 Quick,1,midsummersnightsdream,1595 advised,1,midsummersnightsdream,1595 V,1,midsummersnightsdream,1595 grew,1,midsummersnightsdream,1595 swords,1,midsummersnightsdream,1595 flowerets',1,midsummersnightsdream,1595 Taurus,1,midsummersnightsdream,1595 grey,1,midsummersnightsdream,1595 Limander,1,midsummersnightsdream,1595 lamentable,1,midsummersnightsdream,1595 c,1,midsummersnightsdream,1595 suffer,1,midsummersnightsdream,1595 address'd,1,midsummersnightsdream,1595 smiles,1,midsummersnightsdream,1595 Yours,1,midsummersnightsdream,1595 Stir,1,midsummersnightsdream,1595 plainest,1,midsummersnightsdream,1595 extremity,1,midsummersnightsdream,1595 drop,1,midsummersnightsdream,1595 echo,1,midsummersnightsdream,1595 dined,1,midsummersnightsdream,1595 plaster,1,midsummersnightsdream,1595 derived,1,midsummersnightsdream,1595 fathers,1,midsummersnightsdream,1595 motion,1,midsummersnightsdream,1595 cheer'd,1,midsummersnightsdream,1595 yielding,1,midsummersnightsdream,1595 preferred,1,midsummersnightsdream,1595 rank'd,1,midsummersnightsdream,1595 country,1,midsummersnightsdream,1595 truer,1,midsummersnightsdream,1595 forswear,1,midsummersnightsdream,1595 writ,1,midsummersnightsdream,1595 burn'd,1,midsummersnightsdream,1595 Bacchanals,1,midsummersnightsdream,1595 disturb,1,midsummersnightsdream,1595 flower's,1,midsummersnightsdream,1595 possible,1,midsummersnightsdream,1595 espy,1,midsummersnightsdream,1595 tyrant's,1,midsummersnightsdream,1595 Skim,1,midsummersnightsdream,1595 hempen,1,midsummersnightsdream,1595 Daphne,1,midsummersnightsdream,1595 TITANIA's,1,midsummersnightsdream,1595 New,1,midsummersnightsdream,1595 gray,1,midsummersnightsdream,1595 torn,1,midsummersnightsdream,1595 hindering,1,midsummersnightsdream,1595 advantage,1,midsummersnightsdream,1595 Abide,1,midsummersnightsdream,1595 female,1,midsummersnightsdream,1595 royal,1,midsummersnightsdream,1595 brows,1,midsummersnightsdream,1595 Whether,1,midsummersnightsdream,1595 lower,1,midsummersnightsdream,1595 hasty,1,midsummersnightsdream,1595 dagger,1,midsummersnightsdream,1595 rock,1,midsummersnightsdream,1595 distill'd,1,midsummersnightsdream,1595 bones,1,midsummersnightsdream,1595 purge,1,midsummersnightsdream,1595 breathless,1,midsummersnightsdream,1595 patched,1,midsummersnightsdream,1595 anoint,1,midsummersnightsdream,1595 offended,1,midsummersnightsdream,1595 wren,1,midsummersnightsdream,1595 health,1,midsummersnightsdream,1595 knitteth,1,midsummersnightsdream,1595 rod,1,midsummersnightsdream,1595 patches,1,midsummersnightsdream,1595 mend,1,midsummersnightsdream,1595 wisher's,1,midsummersnightsdream,1595 Wilt,1,midsummersnightsdream,1595 chiding,1,midsummersnightsdream,1595 day's,1,midsummersnightsdream,1595 brands,1,midsummersnightsdream,1595 testy,1,midsummersnightsdream,1595 boys,1,midsummersnightsdream,1595 melt,1,midsummersnightsdream,1595 held,1,midsummersnightsdream,1595 sealing,1,midsummersnightsdream,1595 swifter,1,midsummersnightsdream,1595 drowsy,1,midsummersnightsdream,1595 Venus',1,midsummersnightsdream,1595 laughter,1,midsummersnightsdream,1595 warning,1,midsummersnightsdream,1595 Weeds,1,midsummersnightsdream,1595 throstle,1,midsummersnightsdream,1595 needles,1,midsummersnightsdream,1595 Neptune,1,midsummersnightsdream,1595 momentany,1,midsummersnightsdream,1595 wrap,1,midsummersnightsdream,1595 richest,1,midsummersnightsdream,1595 finger,1,midsummersnightsdream,1595 plainer,1,midsummersnightsdream,1595 imitate,1,midsummersnightsdream,1595 governess,1,midsummersnightsdream,1595 celestial,1,midsummersnightsdream,1595 Whereat,1,midsummersnightsdream,1595 blossom,1,midsummersnightsdream,1595 comest,1,midsummersnightsdream,1595 Unworthy,1,midsummersnightsdream,1595 broom,1,midsummersnightsdream,1595 brook,1,midsummersnightsdream,1595 Beshrew,1,midsummersnightsdream,1595 hearted,1,midsummersnightsdream,1595 offer,1,midsummersnightsdream,1595 paradise,1,midsummersnightsdream,1595 Far,1,midsummersnightsdream,1595 rid,1,midsummersnightsdream,1595 Amazon,1,midsummersnightsdream,1595 advance,1,midsummersnightsdream,1595 Helen's,1,midsummersnightsdream,1595 fury,1,midsummersnightsdream,1595 Scorn,1,midsummersnightsdream,1595 drink,1,midsummersnightsdream,1595 match'd,1,midsummersnightsdream,1595 rubies,1,midsummersnightsdream,1595 Sisters,1,midsummersnightsdream,1595 terribly,1,midsummersnightsdream,1595 laugh,1,midsummersnightsdream,1595 ribbons,1,midsummersnightsdream,1595 worms,1,midsummersnightsdream,1595 admirable,1,midsummersnightsdream,1595 wormy,1,midsummersnightsdream,1595 lapp'd,1,midsummersnightsdream,1595 Asleep,1,midsummersnightsdream,1595 ivy,1,midsummersnightsdream,1595 damned,1,midsummersnightsdream,1595 worm's,1,midsummersnightsdream,1595 sisters',1,midsummersnightsdream,1595 minimus,1,midsummersnightsdream,1595 lids,1,midsummersnightsdream,1595 fables,1,midsummersnightsdream,1595 kinder,1,midsummersnightsdream,1595 lied,1,midsummersnightsdream,1595 disobedience,1,midsummersnightsdream,1595 abound,1,midsummersnightsdream,1595 Whom,1,midsummersnightsdream,1595 Nought,1,midsummersnightsdream,1595 wing'd,1,midsummersnightsdream,1595 entice,1,midsummersnightsdream,1595 PERSONAE,1,midsummersnightsdream,1595 Opening,1,midsummersnightsdream,1595 marshal,1,midsummersnightsdream,1595 Roaring,1,midsummersnightsdream,1595 clamorous,1,midsummersnightsdream,1595 spare,1,midsummersnightsdream,1595 cloister,1,midsummersnightsdream,1595 lightning,1,midsummersnightsdream,1595 Pretty,1,midsummersnightsdream,1595 early,1,midsummersnightsdream,1595 garment,1,midsummersnightsdream,1595 liar,1,midsummersnightsdream,1595 worser,1,midsummersnightsdream,1595 swimming,1,midsummersnightsdream,1595 vast,1,midsummersnightsdream,1595 practised,1,midsummersnightsdream,1595 stirring,1,midsummersnightsdream,1595 extort,1,midsummersnightsdream,1595 strength,1,midsummersnightsdream,1595 spinners,1,midsummersnightsdream,1595 graces,1,midsummersnightsdream,1595 inconstant,1,midsummersnightsdream,1595 seven,1,midsummersnightsdream,1595 charge,1,midsummersnightsdream,1595 wanderers,1,midsummersnightsdream,1595 giant,1,midsummersnightsdream,1595 spied,1,midsummersnightsdream,1595 conscience,1,midsummersnightsdream,1595 tarrying,1,midsummersnightsdream,1595 Forsook,1,midsummersnightsdream,1595 performing,1,midsummersnightsdream,1595 lakin,1,midsummersnightsdream,1595 Effect,1,midsummersnightsdream,1595 years,1,midsummersnightsdream,1595 Swift,1,midsummersnightsdream,1595 Jove,1,midsummersnightsdream,1595 highness,1,midsummersnightsdream,1595 broach'd,1,midsummersnightsdream,1595 riddles,1,midsummersnightsdream,1595 pilgrimage,1,midsummersnightsdream,1595 witnesseth,1,midsummersnightsdream,1595 lily,1,midsummersnightsdream,1595 Consent,1,midsummersnightsdream,1595 luscious,1,midsummersnightsdream,1595 patent,1,midsummersnightsdream,1595 heat,1,midsummersnightsdream,1595 concerns,1,midsummersnightsdream,1595 stalls,1,midsummersnightsdream,1595 function,1,midsummersnightsdream,1595 toward,1,midsummersnightsdream,1595 drew,1,midsummersnightsdream,1595 meddling,1,midsummersnightsdream,1595 frolic,1,midsummersnightsdream,1595 headless,1,midsummersnightsdream,1595 wants,1,midsummersnightsdream,1595 dwarf,1,midsummersnightsdream,1595 streak,1,midsummersnightsdream,1595 dogged,1,midsummersnightsdream,1595 voices,1,midsummersnightsdream,1595 gross,1,midsummersnightsdream,1595 paper,1,midsummersnightsdream,1595 bragging,1,midsummersnightsdream,1595 Tarry,1,midsummersnightsdream,1595 making,1,midsummersnightsdream,1595 Eyes,1,midsummersnightsdream,1595 congealed,1,midsummersnightsdream,1595 Ethiope,1,midsummersnightsdream,1595 fools,1,midsummersnightsdream,1595 Pale,1,midsummersnightsdream,1595 soft,1,midsummersnightsdream,1595 toys,1,midsummersnightsdream,1595 bated,1,midsummersnightsdream,1595 Nod,1,midsummersnightsdream,1595 errs,1,midsummersnightsdream,1595 Wedded,1,midsummersnightsdream,1595 wait,1,midsummersnightsdream,1595 lesser,1,midsummersnightsdream,1595 amity,1,midsummersnightsdream,1595 boar,1,midsummersnightsdream,1595 Amazons,1,midsummersnightsdream,1595 perjured,1,midsummersnightsdream,1595 cankers,1,midsummersnightsdream,1595 admiring,1,midsummersnightsdream,1595 companies,1,midsummersnightsdream,1595 Gentle,1,midsummersnightsdream,1595 snakes,1,midsummersnightsdream,1595 unwished,1,midsummersnightsdream,1595 monster's,1,midsummersnightsdream,1595 Perchance,1,midsummersnightsdream,1595 barky,1,midsummersnightsdream,1595 deserve,1,midsummersnightsdream,1595 pillow,1,midsummersnightsdream,1595 Gently,1,midsummersnightsdream,1595 she's,1,midsummersnightsdream,1595 provender,1,midsummersnightsdream,1595 conceits,1,midsummersnightsdream,1595 six,1,midsummersnightsdream,1595 Painted,1,midsummersnightsdream,1595 shames,1,midsummersnightsdream,1595 Accompany,1,midsummersnightsdream,1595 throned,1,midsummersnightsdream,1595 Presenteth,1,midsummersnightsdream,1595 I'd,1,midsummersnightsdream,1595 mock'st,1,midsummersnightsdream,1595 spheres,1,midsummersnightsdream,1595 'Ninus',1,midsummersnightsdream,1595 hail'd,1,midsummersnightsdream,1595 history,1,midsummersnightsdream,1595 prevail'd,1,midsummersnightsdream,1595 warrant,1,midsummersnightsdream,1595 Beteem,1,midsummersnightsdream,1595 orbs,1,midsummersnightsdream,1595 rememberest,1,midsummersnightsdream,1595 Uttering,1,midsummersnightsdream,1595 deceased,1,midsummersnightsdream,1595 paying,1,midsummersnightsdream,1595 clerks,1,midsummersnightsdream,1595 engilds,1,midsummersnightsdream,1595 laugh'd,1,midsummersnightsdream,1595 Newts,1,midsummersnightsdream,1595 entwist,1,midsummersnightsdream,1595 'A,1,midsummersnightsdream,1595 walk,1,midsummersnightsdream,1595 saying,1,midsummersnightsdream,1595 holla'd,1,midsummersnightsdream,1595 Write,1,midsummersnightsdream,1595 catching,1,midsummersnightsdream,1595 society,1,midsummersnightsdream,1595 languish,1,midsummersnightsdream,1595 chronicled,1,midsummersnightsdream,1595 lions,1,midsummersnightsdream,1595 geese,1,midsummersnightsdream,1595 abused,1,midsummersnightsdream,1595 manager,1,midsummersnightsdream,1595 frosts,1,midsummersnightsdream,1595 glide,1,midsummersnightsdream,1595 nine,1,midsummersnightsdream,1595 concern,1,midsummersnightsdream,1595 eternally,1,midsummersnightsdream,1595 actor,1,midsummersnightsdream,1595 ringlets,1,midsummersnightsdream,1595 birds,1,midsummersnightsdream,1595 Corin,1,midsummersnightsdream,1595 Tempt,1,midsummersnightsdream,1595 blessedness,1,midsummersnightsdream,1595 cradle,1,midsummersnightsdream,1595 worth,1,midsummersnightsdream,1595 nymphs,1,midsummersnightsdream,1595 church,1,midsummersnightsdream,1595 Wake,1,midsummersnightsdream,1595 disordered,1,midsummersnightsdream,1595 winds,1,midsummersnightsdream,1595 extempore,1,midsummersnightsdream,1595 War,1,midsummersnightsdream,1595 Silence,1,midsummersnightsdream,1595 usual,1,midsummersnightsdream,1595 stern,1,midsummersnightsdream,1595 unharden'd,1,midsummersnightsdream,1595 Chanting,1,midsummersnightsdream,1595 videlicet,1,midsummersnightsdream,1595 livery,1,midsummersnightsdream,1595 't,1,midsummersnightsdream,1595 Wait,1,midsummersnightsdream,1595 Extremely,1,midsummersnightsdream,1595 Heavens,1,midsummersnightsdream,1595 interchanged,1,midsummersnightsdream,1595 disgrace,1,midsummersnightsdream,1595 study,1,midsummersnightsdream,1595 middle,1,midsummersnightsdream,1595 beloved,1,midsummersnightsdream,1595 Devoutly,1,midsummersnightsdream,1595 Other,1,midsummersnightsdream,1595 stuff,1,midsummersnightsdream,1595 thin,1,midsummersnightsdream,1595 play'd,1,midsummersnightsdream,1595 betwixt,1,midsummersnightsdream,1595 becomes,1,midsummersnightsdream,1595 conjunction,1,midsummersnightsdream,1595 condole,1,midsummersnightsdream,1595 amiss,1,midsummersnightsdream,1595 daughter's,1,midsummersnightsdream,1595 griffin,1,midsummersnightsdream,1595 suck'd,1,midsummersnightsdream,1595 Merry,1,midsummersnightsdream,1595 crannied,1,midsummersnightsdream,1595 loosed,1,midsummersnightsdream,1595 rear,1,midsummersnightsdream,1595 shriek,1,midsummersnightsdream,1595 offence,1,midsummersnightsdream,1595 everlasting,1,midsummersnightsdream,1595 merit,1,midsummersnightsdream,1595 felt,1,midsummersnightsdream,1595 imagining,1,midsummersnightsdream,1595 freckles,1,midsummersnightsdream,1595 grunt,1,midsummersnightsdream,1595 passed,1,midsummersnightsdream,1595 fortunately,1,midsummersnightsdream,1595 'Ladies,1,midsummersnightsdream,1595 points,1,midsummersnightsdream,1595 piece,1,midsummersnightsdream,1595 unkindly,1,midsummersnightsdream,1595 turf,1,midsummersnightsdream,1595 silliest,1,midsummersnightsdream,1595 skies,1,midsummersnightsdream,1595 marred,1,midsummersnightsdream,1595 Muses,1,midsummersnightsdream,1595 twelve,1,midsummersnightsdream,1595 ways,1,midsummersnightsdream,1595 onions,1,midsummersnightsdream,1595 torturing,1,midsummersnightsdream,1595 roundel,1,midsummersnightsdream,1595 worlds,1,midsummersnightsdream,1595 choughs,1,midsummersnightsdream,1595 moulded,1,midsummersnightsdream,1595 tempting,1,midsummersnightsdream,1595 kill'd,1,midsummersnightsdream,1595 rounded,1,midsummersnightsdream,1595 Turn,1,midsummersnightsdream,1595 prosecute,1,midsummersnightsdream,1595 absence,1,midsummersnightsdream,1595 runs,1,midsummersnightsdream,1595 loathed,1,midsummersnightsdream,1595 eyelid,1,midsummersnightsdream,1595 brow'd,1,midsummersnightsdream,1595 terms,1,midsummersnightsdream,1595 confer,1,midsummersnightsdream,1595 commit,1,midsummersnightsdream,1595 Sound,1,midsummersnightsdream,1595 Wink,1,midsummersnightsdream,1595 stung,1,midsummersnightsdream,1595 mark'd,1,midsummersnightsdream,1595 Pardon,1,midsummersnightsdream,1595 showers,1,midsummersnightsdream,1595 overflown,1,midsummersnightsdream,1595 swoon,1,midsummersnightsdream,1595 worthy,1,midsummersnightsdream,1595 Wherein,1,midsummersnightsdream,1595 pageant,1,midsummersnightsdream,1595 Starting,1,midsummersnightsdream,1595 memories,1,midsummersnightsdream,1595 shining,1,midsummersnightsdream,1595 singer,1,midsummersnightsdream,1595 vanished,1,midsummersnightsdream,1595 companion,1,midsummersnightsdream,1595 accent,1,midsummersnightsdream,1595 bride,1,midsummersnightsdream,1595 honour,1,midsummersnightsdream,1595 bowl,1,midsummersnightsdream,1595 feel,1,midsummersnightsdream,1595 Telling,1,midsummersnightsdream,1595 legg'd,1,midsummersnightsdream,1595 plainly,1,midsummersnightsdream,1595 blink,1,midsummersnightsdream,1595 desirest,1,midsummersnightsdream,1595 winded,1,midsummersnightsdream,1595 saucy,1,midsummersnightsdream,1595 swore,1,midsummersnightsdream,1595 'scaped,1,midsummersnightsdream,1595 odorous,1,midsummersnightsdream,1595 eglantine,1,midsummersnightsdream,1595 cuckoo,1,midsummersnightsdream,1595 conceal,1,midsummersnightsdream,1595 choose,1,midsummersnightsdream,1595 hedgehogs,1,midsummersnightsdream,1595 Slow,1,midsummersnightsdream,1595 ceremony,1,midsummersnightsdream,1595 statures,1,midsummersnightsdream,1595 claws,1,midsummersnightsdream,1595 'Behold,1,midsummersnightsdream,1595 tiger,1,midsummersnightsdream,1595 Dark,1,midsummersnightsdream,1595 rarely,1,midsummersnightsdream,1595 wane,1,midsummersnightsdream,1595 title,1,midsummersnightsdream,1595 Thisne,1,midsummersnightsdream,1595 latter,1,midsummersnightsdream,1595 length,1,midsummersnightsdream,1595 rent,1,midsummersnightsdream,1595 Advancing,1,midsummersnightsdream,1595 smartly,1,midsummersnightsdream,1595 sphery,1,midsummersnightsdream,1595 abjure,1,midsummersnightsdream,1595 scorning,1,midsummersnightsdream,1595 Troop,1,midsummersnightsdream,1595 hates,1,midsummersnightsdream,1595 bolt,1,midsummersnightsdream,1595 dies,1,midsummersnightsdream,1595 displease,1,midsummersnightsdream,1595 Though,1,midsummersnightsdream,1595 Sickness,1,midsummersnightsdream,1595 transformed,1,midsummersnightsdream,1595 Emptying,1,midsummersnightsdream,1595 seest,1,midsummersnightsdream,1595 Immediately,1,midsummersnightsdream,1595 died,1,midsummersnightsdream,1595 Precious,1,midsummersnightsdream,1595 mead,1,midsummersnightsdream,1595 murder,1,midsummersnightsdream,1595 oxlips,1,midsummersnightsdream,1595 bladed,1,midsummersnightsdream,1595 throws,1,midsummersnightsdream,1595 property,1,midsummersnightsdream,1595 heraldry,1,midsummersnightsdream,1595 gawds,1,midsummersnightsdream,1595 pierce,1,midsummersnightsdream,1595 bulls,1,midsummersnightsdream,1595 stop,1,midsummersnightsdream,1595 minding,1,midsummersnightsdream,1595 distemperature,1,midsummersnightsdream,1595 wars,1,midsummersnightsdream,1595 crescent,1,midsummersnightsdream,1595 rere,1,midsummersnightsdream,1595 during,1,midsummersnightsdream,1595 sunny,1,midsummersnightsdream,1595 triple,1,midsummersnightsdream,1595 rule,1,midsummersnightsdream,1595 shuts,1,midsummersnightsdream,1595 consecrate,1,midsummersnightsdream,1595 lunatic,1,midsummersnightsdream,1595 slayeth,1,midsummersnightsdream,1595 steep,1,midsummersnightsdream,1595 steel,1,midsummersnightsdream,1595 crazed,1,midsummersnightsdream,1595 rules,1,midsummersnightsdream,1595 wits,1,midsummersnightsdream,1595 observe,1,midsummersnightsdream,1595 creeping,1,midsummersnightsdream,1595 book,1,midsummersnightsdream,1595 manly,1,midsummersnightsdream,1595 manhood,1,midsummersnightsdream,1595 Glance,1,midsummersnightsdream,1595 uneven,1,midsummersnightsdream,1595 tend,1,midsummersnightsdream,1595 knee'd,1,midsummersnightsdream,1595 created,1,midsummersnightsdream,1595 schooling,1,midsummersnightsdream,1595 sympathy,1,midsummersnightsdream,1595 judgement,1,midsummersnightsdream,1595 hungry,1,midsummersnightsdream,1595 harmonious,1,midsummersnightsdream,1595 wittiest,1,midsummersnightsdream,1595 intelligence,1,midsummersnightsdream,1595 fairest,1,midsummersnightsdream,1595 overcast,1,midsummersnightsdream,1595 big,1,midsummersnightsdream,1595 bristled,1,midsummersnightsdream,1595 mistaken,1,midsummersnightsdream,1595 scandal,1,midsummersnightsdream,1595 rival,1,midsummersnightsdream,1595 mulberry,1,midsummersnightsdream,1595 sanded,1,midsummersnightsdream,1595 snores,1,midsummersnightsdream,1595 contrived,1,midsummersnightsdream,1595 merriment,1,midsummersnightsdream,1595 tapers,1,midsummersnightsdream,1595 Takes,1,midsummersnightsdream,1595 unkind,1,midsummersnightsdream,1595 'tide,1,midsummersnightsdream,1595 melancholy,1,midsummersnightsdream,1595 bob,1,midsummersnightsdream,1595 bog,1,midsummersnightsdream,1595 ousel,1,midsummersnightsdream,1595 trippingly,1,midsummersnightsdream,1595 snuff,1,midsummersnightsdream,1595 wanting,1,midsummersnightsdream,1595 HERNIA,1,midsummersnightsdream,1595 imprinted,1,midsummersnightsdream,1595 Draws,1,midsummersnightsdream,1595 Belike,1,midsummersnightsdream,1595 utter,1,midsummersnightsdream,1595 refuse,1,midsummersnightsdream,1595 Knacks,1,midsummersnightsdream,1595 streams,1,midsummersnightsdream,1595 chaplet,1,midsummersnightsdream,1595 Ah,1,midsummersnightsdream,1595 prevailment,1,midsummersnightsdream,1595 Am,1,midsummersnightsdream,1595 stubborn,1,midsummersnightsdream,1595 pay,1,midsummersnightsdream,1595 fogs,1,midsummersnightsdream,1595 Hit,1,midsummersnightsdream,1595 fool's,1,midsummersnightsdream,1595 neither,1,midsummersnightsdream,1595 chaste,1,midsummersnightsdream,1595 heresy,1,midsummersnightsdream,1595 Hie,1,midsummersnightsdream,1595 loathing,1,midsummersnightsdream,1595 blows,1,midsummersnightsdream,1595 loath,1,midsummersnightsdream,1595 Whiles,1,midsummersnightsdream,1595 Becomes,1,midsummersnightsdream,1595 wash'd,1,midsummersnightsdream,1595 smile,1,midsummersnightsdream,1595 Having,1,midsummersnightsdream,1595 spots,1,midsummersnightsdream,1595 Scornful,1,midsummersnightsdream,1595 told'st,1,midsummersnightsdream,1595 By'r,1,midsummersnightsdream,1595 Lo,1,midsummersnightsdream,1595 prodigious,1,midsummersnightsdream,1595 secretly,1,midsummersnightsdream,1595 warrior,1,midsummersnightsdream,1595 sensible,1,midsummersnightsdream,1595 siege,1,midsummersnightsdream,1595 pays,1,midsummersnightsdream,1595 cherries,1,midsummersnightsdream,1595 foal,1,midsummersnightsdream,1595 'low',1,midsummersnightsdream,1595 embarked,1,midsummersnightsdream,1595 blots,1,midsummersnightsdream,1595 Wall's,1,midsummersnightsdream,1595 Centaurs,1,midsummersnightsdream,1595 gentleness,1,midsummersnightsdream,1595 doves,1,midsummersnightsdream,1595 hymns,1,midsummersnightsdream,1595 listen,1,midsummersnightsdream,1595 overhear,1,midsummersnightsdream,1595 creature,1,midsummersnightsdream,1595 Answer,1,midsummersnightsdream,1595 beautiful,1,midsummersnightsdream,1595 Pat,1,midsummersnightsdream,1595 brings,1,midsummersnightsdream,1595 tales,1,midsummersnightsdream,1595 pen,1,midsummersnightsdream,1595 Oh,1,midsummersnightsdream,1595 handicraft,1,midsummersnightsdream,1595 enter'd,1,midsummersnightsdream,1595 conjoin'd,1,midsummersnightsdream,1595 habitation,1,midsummersnightsdream,1595 'long,1,midsummersnightsdream,1595 medicine,1,midsummersnightsdream,1595 approve,1,midsummersnightsdream,1595 hipped,1,midsummersnightsdream,1595 bee,1,midsummersnightsdream,1595 Ho,1,midsummersnightsdream,1595 kinds,1,midsummersnightsdream,1595 sovereignty,1,midsummersnightsdream,1595 meant,1,midsummersnightsdream,1595 team,1,midsummersnightsdream,1595 owner,1,midsummersnightsdream,1595 deserved,1,midsummersnightsdream,1595 ease,1,midsummersnightsdream,1595 fatted,1,midsummersnightsdream,1595 constraineth,1,midsummersnightsdream,1595 wither'd,1,midsummersnightsdream,1595 east,1,midsummersnightsdream,1595 conqueror,1,midsummersnightsdream,1595 Let's,1,midsummersnightsdream,1595 Had,1,midsummersnightsdream,1595 enrich,1,midsummersnightsdream,1595 finch,1,midsummersnightsdream,1595 mermaid,1,midsummersnightsdream,1595 buys,1,midsummersnightsdream,1595 stem,1,midsummersnightsdream,1595 wedded,1,midsummersnightsdream,1595 step,1,midsummersnightsdream,1595 temples,1,midsummersnightsdream,1595 Is't,1,midsummersnightsdream,1595 Up,1,midsummersnightsdream,1595 thighs,1,midsummersnightsdream,1595 brawls,1,midsummersnightsdream,1595 quantity,1,midsummersnightsdream,1595 Athens',1,midsummersnightsdream,1595 Rising,1,midsummersnightsdream,1595 blameless,1,midsummersnightsdream,1595 heads,1,midsummersnightsdream,1595 quiet,1,midsummersnightsdream,1595 kiss'd,1,midsummersnightsdream,1595 devices,1,midsummersnightsdream,1595 Adieu,1,midsummersnightsdream,1595 god,1,midsummersnightsdream,1595 mountain's,1,midsummersnightsdream,1595 haunt,1,midsummersnightsdream,1595 madmen,1,midsummersnightsdream,1595 crawling,1,midsummersnightsdream,1595 espies,1,midsummersnightsdream,1595 bull,1,midsummersnightsdream,1595 weep,1,midsummersnightsdream,1595 gave,1,midsummersnightsdream,1595 morning's,1,midsummersnightsdream,1595 mechanicals,1,midsummersnightsdream,1595 Dance,1,midsummersnightsdream,1595 bouncing,1,midsummersnightsdream,1595 straw,1,midsummersnightsdream,1595 busy,1,midsummersnightsdream,1595 stray,1,midsummersnightsdream,1595 canker,1,midsummersnightsdream,1595 days',1,midsummersnightsdream,1595 burr,1,midsummersnightsdream,1595 imagine,1,midsummersnightsdream,1595 bury,1,midsummersnightsdream,1595 burn,1,midsummersnightsdream,1595 immediately,1,midsummersnightsdream,1595 car,1,midsummersnightsdream,1595 hymn,1,midsummersnightsdream,1595 children,1,midsummersnightsdream,1595 madman,1,midsummersnightsdream,1595 awaked,1,midsummersnightsdream,1595 honeysuckle,1,midsummersnightsdream,1595 unheedy,1,midsummersnightsdream,1595 altar,1,midsummersnightsdream,1595 hoary,1,midsummersnightsdream,1595 tricks,1,midsummersnightsdream,1595 Wings,1,midsummersnightsdream,1595 devilish,1,midsummersnightsdream,1595 darkling,1,midsummersnightsdream,1595 anything,1,midsummersnightsdream,1595 devised,1,midsummersnightsdream,1595 Save,1,midsummersnightsdream,1595 canopied,1,midsummersnightsdream,1595 imperial,1,midsummersnightsdream,1595 quill,1,midsummersnightsdream,1595 people,1,midsummersnightsdream,1595 Valentine,1,midsummersnightsdream,1595 silently,1,midsummersnightsdream,1595 shadow,1,midsummersnightsdream,1595 Wishes,1,midsummersnightsdream,1595 idleness,1,midsummersnightsdream,1595 welkin,1,midsummersnightsdream,1595 enamell'd,1,midsummersnightsdream,1595 Saint,1,midsummersnightsdream,1595 pairs,1,midsummersnightsdream,1595 exile,1,midsummersnightsdream,1595 courtesies,1,midsummersnightsdream,1595 dumbly,1,midsummersnightsdream,1595 gore,1,midsummersnightsdream,1595 transpose,1,midsummersnightsdream,1595 jewel,1,midsummersnightsdream,1595 Crook,1,midsummersnightsdream,1595 farewell,1,midsummersnightsdream,1595 Didst,1,midsummersnightsdream,1595 carpenter,1,midsummersnightsdream,1595 persuasion,1,midsummersnightsdream,1595 despise,1,midsummersnightsdream,1595 silk,1,midsummersnightsdream,1595 theme,1,midsummersnightsdream,1595 Sink,1,midsummersnightsdream,1595 friendly,1,midsummersnightsdream,1595 dissembling,1,midsummersnightsdream,1595 anguish,1,midsummersnightsdream,1595 bum,1,midsummersnightsdream,1595 sentinel,1,midsummersnightsdream,1595 hoots,1,midsummersnightsdream,1595 badge,1,midsummersnightsdream,1595 bud,1,midsummersnightsdream,1595 despite,1,midsummersnightsdream,1595 swift,1,midsummersnightsdream,1595 herein,1,midsummersnightsdream,1595 buy,1,midsummersnightsdream,1595 beef,1,midsummersnightsdream,1595 roared,1,midsummersnightsdream,1595 used,1,midsummersnightsdream,1595 frowns,1,midsummersnightsdream,1595 gaud,1,midsummersnightsdream,1595 bees,1,midsummersnightsdream,1595 wheresoe'er,1,midsummersnightsdream,1595 Meet,1,midsummersnightsdream,1595 About,1,midsummersnightsdream,1595 masques,1,midsummersnightsdream,1595 pains,1,midsummersnightsdream,1595 ensue,1,midsummersnightsdream,1595 gate,1,midsummersnightsdream,1595 stories,1,midsummersnightsdream,1595 neeze,1,midsummersnightsdream,1595 quire,1,midsummersnightsdream,1595 vantage,1,midsummersnightsdream,1595 attain'd,1,midsummersnightsdream,1595 turns,1,midsummersnightsdream,1595 harbinger,1,midsummersnightsdream,1595 crowned,1,midsummersnightsdream,1595 Cadmus,1,midsummersnightsdream,1595 beginning,1,midsummersnightsdream,1595 Thessaly,1,midsummersnightsdream,1595 crowns,1,midsummersnightsdream,1595 tongs,1,midsummersnightsdream,1595 Name,1,midsummersnightsdream,1595 pearls,1,midsummersnightsdream,1595 river,1,midsummersnightsdream,1595 sleepers,1,midsummersnightsdream,1595 enthralled,1,midsummersnightsdream,1595 God's,1,midsummersnightsdream,1595 sorting,1,midsummersnightsdream,1595 pumps,1,midsummersnightsdream,1595 government,1,midsummersnightsdream,1595 interchained,1,midsummersnightsdream,1595 wretch,1,midsummersnightsdream,1595 mood,1,midsummersnightsdream,1595 whereto,1,midsummersnightsdream,1595 eloquence,1,midsummersnightsdream,1595 Nature's,1,midsummersnightsdream,1595 Cannot,1,midsummersnightsdream,1595 aim,1,midsummersnightsdream,1595 voyage,1,midsummersnightsdream,1595 Durst,1,midsummersnightsdream,1595 consecrated,1,midsummersnightsdream,1595 artificial,1,midsummersnightsdream,1595 yea,1,midsummersnightsdream,1595 mole,1,midsummersnightsdream,1595 gift,1,midsummersnightsdream,1595 Fear,1,midsummersnightsdream,1595 servant,1,midsummersnightsdream,1595 Pard,1,midsummersnightsdream,1595 burial,1,midsummersnightsdream,1595 faster,1,midsummersnightsdream,1595 consider,1,midsummersnightsdream,1595 sheen,1,midsummersnightsdream,1595 moans,1,midsummersnightsdream,1595 runaway,1,midsummersnightsdream,1595 favour,1,midsummersnightsdream,1595 jewels,1,midsummersnightsdream,1595 Ill,1,midsummersnightsdream,1595 Throttle,1,midsummersnightsdream,1595 stood,1,midsummersnightsdream,1595 beat,1,midsummersnightsdream,1595 bean,1,midsummersnightsdream,1595 promontory,1,midsummersnightsdream,1595 debt,1,midsummersnightsdream,1595 stool,1,midsummersnightsdream,1595 Making,1,midsummersnightsdream,1595 Bless,1,midsummersnightsdream,1595 bead,1,midsummersnightsdream,1595 Apollo,1,midsummersnightsdream,1595 Unless,1,midsummersnightsdream,1595 dwell,1,midsummersnightsdream,1595 player,1,midsummersnightsdream,1595 fountains,1,midsummersnightsdream,1595 whereon,1,midsummersnightsdream,1595 oftener,1,midsummersnightsdream,1595 almanac,1,midsummersnightsdream,1595 stone,1,midsummersnightsdream,1595 tragedy,1,midsummersnightsdream,1595 plays,1,midsummersnightsdream,1595 autumn,1,midsummersnightsdream,1595 dignity,1,midsummersnightsdream,1595 radiant,1,midsummersnightsdream,1595 latch'd,1,midsummersnightsdream,1595 Feed,1,midsummersnightsdream,1595 seeing,1,midsummersnightsdream,1595 sampler,1,midsummersnightsdream,1595 mulberries,1,midsummersnightsdream,1595 stain'd,1,midsummersnightsdream,1595 childing,1,midsummersnightsdream,1595 rhymes,1,midsummersnightsdream,1595 dwarfish,1,midsummersnightsdream,1595 icy,1,midsummersnightsdream,1595 buskin'd,1,midsummersnightsdream,1595 lighter,1,midsummersnightsdream,1595 Jill,1,midsummersnightsdream,1595 laughing,1,midsummersnightsdream,1595 treats,1,midsummersnightsdream,1595 lady's,1,midsummersnightsdream,1595 Puppet,1,midsummersnightsdream,1595 ice,1,midsummersnightsdream,1595 generally,1,midsummersnightsdream,1595 attractive,1,midsummersnightsdream,1595 ay,1,midsummersnightsdream,1595 yields,1,midsummersnightsdream,1595 comforts,1,midsummersnightsdream,1595 ale,1,midsummersnightsdream,1595 crab,1,midsummersnightsdream,1595 possess'd,1,midsummersnightsdream,1595 shed,1,midsummersnightsdream,1595 gleams,1,midsummersnightsdream,1595 cruelty,1,midsummersnightsdream,1595 manner,1,midsummersnightsdream,1595 asshead,1,midsummersnightsdream,1595 Neptune's,1,midsummersnightsdream,1595 door,1,midsummersnightsdream,1595 fixed,1,midsummersnightsdream,1595 Scratch,1,midsummersnightsdream,1595 dried,1,midsummersnightsdream,1595 feast,1,midsummersnightsdream,1595 flew'd,1,midsummersnightsdream,1595 overwatch'd,1,midsummersnightsdream,1595 frights,1,midsummersnightsdream,1595 cowardly,1,midsummersnightsdream,1595 questions,1,midsummersnightsdream,1595 batty,1,midsummersnightsdream,1595 board,1,midsummersnightsdream,1595 commend,1,midsummersnightsdream,1595 pursuit,1,midsummersnightsdream,1595 Transparent,1,midsummersnightsdream,1595 Yonder,1,midsummersnightsdream,1595 region,1,midsummersnightsdream,1595 shears,1,midsummersnightsdream,1595 crew,1,midsummersnightsdream,1595 squeezes,1,midsummersnightsdream,1595 mote,1,midsummersnightsdream,1595 gambol,1,midsummersnightsdream,1595 crawl,1,midsummersnightsdream,1595 abide,1,midsummersnightsdream,1595 huntsmen,1,midsummersnightsdream,1595 playfellow,1,midsummersnightsdream,1595 hoard,1,midsummersnightsdream,1595 Myself,1,midsummersnightsdream,1595 attendant,1,midsummersnightsdream,1595 look'st,1,midsummersnightsdream,1595 India,1,midsummersnightsdream,1595 age,1,midsummersnightsdream,1595 committ'st,1,midsummersnightsdream,1595 enmity,1,midsummersnightsdream,1595 venturous,1,midsummersnightsdream,1595 Begin,1,midsummersnightsdream,1595 spell,1,midsummersnightsdream,1595 everywhere,1,midsummersnightsdream,1595 Lower,1,midsummersnightsdream,1595 glance,1,midsummersnightsdream,1595 begg'd,1,midsummersnightsdream,1595 miserable,1,midsummersnightsdream,1595 transfigured,1,midsummersnightsdream,1595 endure,1,midsummersnightsdream,1595 parents,1,midsummersnightsdream,1595 speak'st,1,midsummersnightsdream,1595 playing,1,midsummersnightsdream,1595 dragons,1,midsummersnightsdream,1595 lest,1,midsummersnightsdream,1595 dispose,1,midsummersnightsdream,1595 dole,1,midsummersnightsdream,1595 knot,1,midsummersnightsdream,1595 spend,1,midsummersnightsdream,1595 unfolds,1,midsummersnightsdream,1595 violet,1,midsummersnightsdream,1595 removed,1,midsummersnightsdream,1595 local,1,midsummersnightsdream,1595 lets,1,midsummersnightsdream,1595 dewberries,1,midsummersnightsdream,1595 greater,1,midsummersnightsdream,1595 nimble,1,midsummersnightsdream,1595 knew,1,midsummersnightsdream,1595 swaggering,1,midsummersnightsdream,1595 ready,1,midsummersnightsdream,1595 Creep,1,midsummersnightsdream,1595 premeditated,1,midsummersnightsdream,1595 composed,1,midsummersnightsdream,1595 waggish,1,midsummersnightsdream,1595 harshness,1,midsummersnightsdream,1595 men's,1,midsummersnightsdream,1595 hot,1,midsummersnightsdream,1595 hop,1,midsummersnightsdream,1595 wisest,1,midsummersnightsdream,1595 harp,1,midsummersnightsdream,1595 Came,1,midsummersnightsdream,1595 thrice,1,midsummersnightsdream,1595 killed,1,midsummersnightsdream,1595 graves,1,midsummersnightsdream,1595 brought,1,midsummersnightsdream,1595 running,1,midsummersnightsdream,1595 plot,1,midsummersnightsdream,1595 critical,1,midsummersnightsdream,1595 easy,1,midsummersnightsdream,1595 rushy,1,midsummersnightsdream,1595 hare,1,midsummersnightsdream,1595 blamed,1,midsummersnightsdream,1595 Jack,1,midsummersnightsdream,1595 park,1,midsummersnightsdream,1595 Seeking,1,midsummersnightsdream,1595 speaks,1,midsummersnightsdream,1595 reasonable,1,midsummersnightsdream,1595 Moth,1,midsummersnightsdream,1595 haunts,1,midsummersnightsdream,1595 messenger,1,midsummersnightsdream,1595 crop,1,midsummersnightsdream,1595 Diana's,1,midsummersnightsdream,1595 continents,1,midsummersnightsdream,1595 signify,1,midsummersnightsdream,1595 senseless,1,midsummersnightsdream,1595 fowl,1,midsummersnightsdream,1595 impression,1,midsummersnightsdream,1595 verses,1,midsummersnightsdream,1595 perform'd,1,midsummersnightsdream,1595 seething,1,midsummersnightsdream,1595 natural,1,midsummersnightsdream,1595 serpent's,1,midsummersnightsdream,1595 'Let,1,midsummersnightsdream,1595 Flower,1,midsummersnightsdream,1595 re,1,midsummersnightsdream,1595 shun,1,midsummersnightsdream,1595 reach,1,midsummersnightsdream,1595 deny,1,midsummersnightsdream,1595 foul,1,midsummersnightsdream,1595 drawn,1,midsummersnightsdream,1595 mew'd,1,midsummersnightsdream,1595 trace,1,midsummersnightsdream,1595 threaten'd,1,midsummersnightsdream,1595 forty,1,midsummersnightsdream,1595 sweetest,1,midsummersnightsdream,1595 mighty,1,midsummersnightsdream,1595 provided,1,midsummersnightsdream,1595 praise,1,midsummersnightsdream,1595 examine,1,midsummersnightsdream,1595 sucking,1,midsummersnightsdream,1595 Antiopa,1,midsummersnightsdream,1595 course,1,midsummersnightsdream,1595 open,1,midsummersnightsdream,1595 page,1,midsummersnightsdream,1595 arm,1,midsummersnightsdream,1595 refused,1,midsummersnightsdream,1595 juvenal,1,midsummersnightsdream,1595 prepare,1,midsummersnightsdream,1595 Pleading,1,midsummersnightsdream,1595 charmed,1,midsummersnightsdream,1595 Deserve,1,midsummersnightsdream,1595 pair,1,midsummersnightsdream,1595 costs,1,midsummersnightsdream,1595 heaviness,1,midsummersnightsdream,1595 return'd,1,midsummersnightsdream,1595 ape,1,midsummersnightsdream,1595 Puts,1,midsummersnightsdream,1595 Night,1,midsummersnightsdream,1595 mended,1,midsummersnightsdream,1595 wretchedness,1,midsummersnightsdream,1595 apt,1,midsummersnightsdream,1595 footed,1,midsummersnightsdream,1595 forsworn,1,midsummersnightsdream,1595 frown,1,midsummersnightsdream,1595 Dispatch,1,midsummersnightsdream,1595 shakes,1,midsummersnightsdream,1595 devise,1,midsummersnightsdream,1595 twain,1,midsummersnightsdream,1595 lode,1,midsummersnightsdream,1595 pace,1,midsummersnightsdream,1595 fear'd,1,midsummersnightsdream,1595 shot,1,midsummersnightsdream,1595 Quail,1,midsummersnightsdream,1595 hats,1,midsummersnightsdream,1595 rings,1,midsummersnightsdream,1595 proper,1,midsummersnightsdream,1595 leeks,1,midsummersnightsdream,1595 chastity,1,midsummersnightsdream,1595 faithful,1,midsummersnightsdream,1595 merriments,1,midsummersnightsdream,1595 moan,1,midsummersnightsdream,1595 duke's,1,midsummersnightsdream,1595 images,1,midsummersnightsdream,1595 signior,1,midsummersnightsdream,1595 renowned,1,midsummersnightsdream,1595 mural,1,midsummersnightsdream,1595 object,1,midsummersnightsdream,1595 Squeezing,1,midsummersnightsdream,1595 Pierced,1,midsummersnightsdream,1595 juggler,1,midsummersnightsdream,1595 accidents,1,midsummersnightsdream,1595 Attendant,1,midsummersnightsdream,1595 sojourn'd,1,midsummersnightsdream,1595 moonbeams,1,midsummersnightsdream,1595 forms,1,midsummersnightsdream,1595 fancies,1,midsummersnightsdream,1595 beards,1,midsummersnightsdream,1595 mayst,1,midsummersnightsdream,1595 nearly,1,midsummersnightsdream,1595 fold,1,midsummersnightsdream,1595 hateth,1,midsummersnightsdream,1595 condoling,1,midsummersnightsdream,1595 King,1,midsummersnightsdream,1595 liveries,1,midsummersnightsdream,1595 overborne,1,midsummersnightsdream,1595 roll,1,midsummersnightsdream,1595 aweary,1,midsummersnightsdream,1595 Goblin,1,midsummersnightsdream,1595 thistle,1,midsummersnightsdream,1595 unloved,1,midsummersnightsdream,1595 theirs,1,midsummersnightsdream,1595 mazes,1,midsummersnightsdream,1595 fee,1,midsummersnightsdream,1595 beggary,1,midsummersnightsdream,1595 fed,1,midsummersnightsdream,1595 Hard,1,midsummersnightsdream,1595 Pursue,1,midsummersnightsdream,1595 Peascod,1,midsummersnightsdream,1595 mazed,1,midsummersnightsdream,1595 enemies,1,midsummersnightsdream,1595 nole,1,midsummersnightsdream,1595 fantasy,1,midsummersnightsdream,1595 visited,1,midsummersnightsdream,1595 Content,1,midsummersnightsdream,1595 trial,1,midsummersnightsdream,1595 Stood,1,midsummersnightsdream,1595 strongest,1,midsummersnightsdream,1595 Tartar,1,midsummersnightsdream,1595 Hate,1,midsummersnightsdream,1595 misprised,1,midsummersnightsdream,1595 'paragon,1,midsummersnightsdream,1595 guest,1,midsummersnightsdream,1595 merrier,1,midsummersnightsdream,1595 here's,1,midsummersnightsdream,1595 rehearsal,1,midsummersnightsdream,1595 whistling,1,midsummersnightsdream,1595 spoken,1,midsummersnightsdream,1595 jaws,1,midsummersnightsdream,1595 compact,1,midsummersnightsdream,1595 Thorny,1,midsummersnightsdream,1595 Should,1,midsummersnightsdream,1595 aggravate,1,midsummersnightsdream,1595 watch,1,midsummersnightsdream,1595 fat,1,midsummersnightsdream,1595 fan,1,midsummersnightsdream,1595 frenzy,1,midsummersnightsdream,1595 exposition,1,midsummersnightsdream,1595 sweetmeats,1,midsummersnightsdream,1595 distant,1,midsummersnightsdream,1595 washes,1,midsummersnightsdream,1595 occasion,1,midsummersnightsdream,1595 notably,1,midsummersnightsdream,1595 deceiving,1,midsummersnightsdream,1595 Carthage,1,midsummersnightsdream,1595 Marking,1,midsummersnightsdream,1595 garments,1,midsummersnightsdream,1595 Tearing,1,midsummersnightsdream,1595 confederacy,1,midsummersnightsdream,1595 destiny,1,midsummersnightsdream,1595 heavier,1,midsummersnightsdream,1595 surgeon,1,midsummersnightsdream,1595 ballad,1,midsummersnightsdream,1595 tarry,1,midsummersnightsdream,1595 counterfeiting,1,midsummersnightsdream,1595 'cuckoo',1,midsummersnightsdream,1595 carried,1,midsummersnightsdream,1595 piping,1,midsummersnightsdream,1595 rote,1,midsummersnightsdream,1595 hind,1,midsummersnightsdream,1595 empty,1,midsummersnightsdream,1595 tokens,1,midsummersnightsdream,1595 apprehension,1,midsummersnightsdream,1595 leviathan,1,midsummersnightsdream,1595 folding,1,midsummersnightsdream,1595 antique,1,midsummersnightsdream,1595 takest,1,midsummersnightsdream,1595 bored,1,midsummersnightsdream,1595 lords,1,midsummersnightsdream,1595 couldst,1,midsummersnightsdream,1595 Lords,1,midsummersnightsdream,1595 rolling,1,midsummersnightsdream,1595 triumphant,1,midsummersnightsdream,1595 wilfully,1,midsummersnightsdream,1595 smallest,1,midsummersnightsdream,1595 unknown,1,midsummersnightsdream,1595 thinks,1,midsummersnightsdream,1595 Else,1,midsummersnightsdream,1595 Half,1,midsummersnightsdream,1595 square,1,midsummersnightsdream,1595 nose,1,midsummersnightsdream,1595 gleek,1,midsummersnightsdream,1595 midst,1,midsummersnightsdream,1595 apply,1,midsummersnightsdream,1595 Hecate's,1,midsummersnightsdream,1595 tends,1,midsummersnightsdream,1595 proverb,1,midsummersnightsdream,1595 begone,1,midsummersnightsdream,1595 number'd,1,midsummersnightsdream,1595 toil'd,1,midsummersnightsdream,1595 Sever,1,midsummersnightsdream,1595 wakes,1,midsummersnightsdream,1595 'nointed,1,midsummersnightsdream,1595 Furies,1,midsummersnightsdream,1595 Hand,1,midsummersnightsdream,1595 Henceforth,1,midsummersnightsdream,1595 hips,1,midsummersnightsdream,1595 Hang,1,midsummersnightsdream,1595 awaking,1,midsummersnightsdream,1595 restore,1,midsummersnightsdream,1595 apple,1,midsummersnightsdream,1595 unbreathed,1,midsummersnightsdream,1595 locks,1,midsummersnightsdream,1595 pated,1,midsummersnightsdream,1595 gently,1,midsummersnightsdream,1595 Injurious,1,midsummersnightsdream,1595 females,1,midsummersnightsdream,1595 paths,1,midsummersnightsdream,1595 rate,1,midsummersnightsdream,1595 murrion,1,midsummersnightsdream,1595 Flourish,1,midsummersnightsdream,1595 shew'd,1,midsummersnightsdream,1595 scalp,1,midsummersnightsdream,1595 bottle,1,midsummersnightsdream,1595 Playing,1,midsummersnightsdream,1595 rash,1,midsummersnightsdream,1595 spread,1,midsummersnightsdream,1595 bravely,1,midsummersnightsdream,1595 estate,1,midsummersnightsdream,1595 'Most,1,midsummersnightsdream,1595 scar,1,midsummersnightsdream,1595 Jew,1,midsummersnightsdream,1595 cawing,1,midsummersnightsdream,1595 candle,1,midsummersnightsdream,1595 Sleeps,1,midsummersnightsdream,1595 cowslip,1,midsummersnightsdream,1595 Alack,1,midsummersnightsdream,1595 Uncouple,1,midsummersnightsdream,1595 'tailor',1,midsummersnightsdream,1595 austerity,1,midsummersnightsdream,1595 yielders,1,midsummersnightsdream,1595 'Ah,1,midsummersnightsdream,1595 bottom,1,midsummersnightsdream,1595 meditation,1,midsummersnightsdream,1595 leathern,1,midsummersnightsdream,1595 tipsy,1,midsummersnightsdream,1595 lingers,1,midsummersnightsdream,1595 enthrall'd,1,midsummersnightsdream,1595 mimic,1,midsummersnightsdream,1595 idolatry,1,midsummersnightsdream,1595 Flying,1,midsummersnightsdream,1595 nun,1,midsummersnightsdream,1595 spuns,1,midsummersnightsdream,1595 fowler,1,midsummersnightsdream,1595 o'erlook,1,midsummersnightsdream,1595 Consider,1,midsummersnightsdream,1595 odious,1,midsummersnightsdream,1595 Set,1,midsummersnightsdream,1595 presented,1,midsummersnightsdream,1595 Approach,1,midsummersnightsdream,1595 shared,1,midsummersnightsdream,1595 housewife,1,midsummersnightsdream,1595 places,1,midsummersnightsdream,1595 masque,1,midsummersnightsdream,1595 several,1,midsummersnightsdream,1595 avouch,1,midsummersnightsdream,1595 scare,1,midsummersnightsdream,1595 powers,1,midsummersnightsdream,1595 wall's,1,midsummersnightsdream,1595 withholds,1,midsummersnightsdream,1595 heel'd,1,midsummersnightsdream,1595 shivering,1,midsummersnightsdream,1595 pensioners,1,midsummersnightsdream,1595 dirty,1,midsummersnightsdream,1595 Decking,1,midsummersnightsdream,1595 recount,1,midsummersnightsdream,1595 consort,1,midsummersnightsdream,1595 effect,1,midsummersnightsdream,1595 seasons,1,midsummersnightsdream,1595 parlous,1,midsummersnightsdream,1595 strife,1,midsummersnightsdream,1595 Neighing,1,midsummersnightsdream,1595 Mislead,1,midsummersnightsdream,1595 mile,1,midsummersnightsdream,1595 elf,1,midsummersnightsdream,1595 Long,1,midsummersnightsdream,1595 Song,1,midsummersnightsdream,1595 elm,1,midsummersnightsdream,1595 Relent,1,midsummersnightsdream,1595 rehearsed,1,midsummersnightsdream,1595 start,1,midsummersnightsdream,1595 qualities,1,midsummersnightsdream,1595 conclusion,1,midsummersnightsdream,1595 Makes,1,midsummersnightsdream,1595 plead,1,midsummersnightsdream,1595 tempest,1,midsummersnightsdream,1595 valley,1,midsummersnightsdream,1595 beauties,1,midsummersnightsdream,1595 observation,1,midsummersnightsdream,1595 fortnight,1,midsummersnightsdream,1595 chain,1,midsummersnightsdream,1595 Queen,1,midsummersnightsdream,1595 mask,1,midsummersnightsdream,1595 skip,1,midsummersnightsdream,1595 dearest,1,midsummersnightsdream,1595 'Tide,1,midsummersnightsdream,1595 Bearing,1,midsummersnightsdream,1595 chief,1,midsummersnightsdream,1595 presently,1,midsummersnightsdream,1595 forests,1,midsummersnightsdream,1595 mare,1,midsummersnightsdream,1595 Perigenia,1,midsummersnightsdream,1595 kissing,1,midsummersnightsdream,1595 mistaketh,1,midsummersnightsdream,1595 monsieur,1,midsummersnightsdream,1595 injuries,1,midsummersnightsdream,1595 crimson,1,midsummersnightsdream,1595 thick,1,midsummersnightsdream,1595 gloriously,1,midsummersnightsdream,1595 Odours,1,midsummersnightsdream,1595 bringer,1,midsummersnightsdream,1595 devils,1,midsummersnightsdream,1595 mistakest,1,midsummersnightsdream,1595 state,1,midsummersnightsdream,1595 Weigh,1,midsummersnightsdream,1595 coronet,1,midsummersnightsdream,1595 let's,1,midsummersnightsdream,1595 because,1,midsummersnightsdream,1595 leaden,1,midsummersnightsdream,1595 Joy,1,midsummersnightsdream,1595 Phibbus',1,midsummersnightsdream,1595 brains,1,midsummersnightsdream,1595 greatest,1,midsummersnightsdream,1595 labour,1,midsummersnightsdream,1595 eke,1,midsummersnightsdream,1595 address,1,midsummersnightsdream,1595 bushes,1,midsummersnightsdream,1595 abridgement,1,midsummersnightsdream,1595 thief,1,midsummersnightsdream,1595 fret,1,midsummersnightsdream,1595 free,1,midsummersnightsdream,1595 naught,1,midsummersnightsdream,1595 circumference,1,midsummersnightsdream,1595 number,1,midsummersnightsdream,1595 marvel,1,midsummersnightsdream,1595 dainty,1,midsummersnightsdream,1595 Being,1,midsummersnightsdream,1595 preposterously,1,midsummersnightsdream,1595 thyme,1,midsummersnightsdream,1595 adamant,1,midsummersnightsdream,1595 filly,1,midsummersnightsdream,1595 sayest,1,midsummersnightsdream,1595 Giving,1,midsummersnightsdream,1595 i'faith,1,midsummersnightsdream,1595 wrath,1,midsummersnightsdream,1595 hight,1,midsummersnightsdream,1595 living,1,midsummersnightsdream,1595 stain,1,midsummersnightsdream,1595 mockers,1,midsummersnightsdream,1595 blameful,1,midsummersnightsdream,1595 russet,1,midsummersnightsdream,1595 Lamenting,1,midsummersnightsdream,1595 bequeath,1,midsummersnightsdream,1595 behalf,1,midsummersnightsdream,1595 proves,1,midsummersnightsdream,1595 auditor,1,midsummersnightsdream,1595 neaf,1,midsummersnightsdream,1595 sleeves,1,midsummersnightsdream,1595 pause,1,midsummersnightsdream,1595 slight,1,midsummersnightsdream,1595 affairs,1,midsummersnightsdream,1595 disturb'd,1,midsummersnightsdream,1595 wrongs,1,midsummersnightsdream,1595 cough,1,midsummersnightsdream,1595 neck,1,midsummersnightsdream,1595 roars,1,midsummersnightsdream,1595 oes,1,midsummersnightsdream,1595 'Deceiving,1,midsummersnightsdream,1595 former,1,midsummersnightsdream,1595 throw,1,midsummersnightsdream,1595 swain,1,midsummersnightsdream,1595 Run,1,midsummersnightsdream,1595 scrip,1,midsummersnightsdream,1595 stamp,1,midsummersnightsdream,1595 five,1,midsummersnightsdream,1595 stomach,1,midsummersnightsdream,1595 sorrow,1,midsummersnightsdream,1595 traders,1,midsummersnightsdream,1595 bay'd,1,midsummersnightsdream,1595 Enrings,1,midsummersnightsdream,1595 Ninus',1,midsummersnightsdream,1595 cross'd,1,midsummersnightsdream,1595 bread,1,midsummersnightsdream,1595 services,1,midsummersnightsdream,1595 loving,1,midsummersnightsdream,1595 third,1,midsummersnightsdream,1595 detest,1,midsummersnightsdream,1595 sitting,1,midsummersnightsdream,1595 maypole,1,midsummersnightsdream,1595 Dream,1,midsummersnightsdream,1595 unseen,1,midsummersnightsdream,1595 different,1,midsummersnightsdream,1595 moment,1,midsummersnightsdream,1595 riot,1,midsummersnightsdream,1595 LYSANDER's,1,midsummersnightsdream,1595 recover,1,midsummersnightsdream,1595 handed,1,midsummersnightsdream,1595 oak,1,midsummersnightsdream,1595 knaveries,1,midsummersnightsdream,1595 Antipodes,1,midsummersnightsdream,1595 quicker,1,midsummersnightsdream,1595 Say,1,midsummersnightsdream,1595 sparrow,1,midsummersnightsdream,1595 charmeth,1,midsummersnightsdream,1595 walls,1,midsummersnightsdream,1595 negligence,1,midsummersnightsdream,1595 defeated,1,midsummersnightsdream,1595 mice,1,midsummersnightsdream,1595 patiently,1,midsummersnightsdream,1595 See'st,1,midsummersnightsdream,1595 Ercles',1,midsummersnightsdream,1595 liked,1,midsummersnightsdream,1595 topples,1,midsummersnightsdream,1595 Dian's,1,midsummersnightsdream,1595 cowslips,1,midsummersnightsdream,1595 thrum,1,midsummersnightsdream,1595 dust,1,midsummersnightsdream,1595 called,1,midsummersnightsdream,1595 stick,1,midsummersnightsdream,1595 earnest,1,midsummersnightsdream,1595 wode,1,midsummersnightsdream,1595 wax,1,midsummersnightsdream,1595 stage,1,midsummersnightsdream,1595 war,1,midsummersnightsdream,1595 Can,1,midsummersnightsdream,1595 poet,1,midsummersnightsdream,1595 Weed,1,midsummersnightsdream,1595 arms,1,midsummersnightsdream,1595 misprision,1,midsummersnightsdream,1595 audience,1,midsummersnightsdream,1595 morris,1,midsummersnightsdream,1595 growing,1,midsummersnightsdream,1595 solemnly,1,midsummersnightsdream,1595 rite,1,midsummersnightsdream,1595 oats,1,midsummersnightsdream,1595 'Tis,1,midsummersnightsdream,1595 girdle,1,midsummersnightsdream,1595 brother's,1,midsummersnightsdream,1595 pride,1,midsummersnightsdream,1595 maiden's,1,midsummersnightsdream,1595 Aurora's,1,midsummersnightsdream,1595 Hobgoblin,1,midsummersnightsdream,1595 Knowing,1,midsummersnightsdream,1595 apace,1,midsummersnightsdream,1595 peradventure,1,midsummersnightsdream,1595 supper,1,midsummersnightsdream,1595 split,1,midsummersnightsdream,1595 Beg,1,midsummersnightsdream,1595 Cavalery,1,midsummersnightsdream,1595 bells,1,midsummersnightsdream,1595 threats,1,midsummersnightsdream,1595 Three,1,midsummersnightsdream,1595 Shine,1,midsummersnightsdream,1595 enforced,1,midsummersnightsdream,1595 drowned,1,midsummersnightsdream,1595 hail,1,midsummersnightsdream,1595 curses,1,midsummersnightsdream,1595 fade,1,midsummersnightsdream,1595 grossness,1,midsummersnightsdream,1595 Egypt,1,midsummersnightsdream,1595 raging,1,midsummersnightsdream,1595 henchman,1,midsummersnightsdream,1595 Pyramus',1,midsummersnightsdream,1595 muddy,1,midsummersnightsdream,1595 dissolved,1,midsummersnightsdream,1595 shallowest,1,midsummersnightsdream,1595 edict,1,midsummersnightsdream,1595 butterflies,1,midsummersnightsdream,1595 fallen,1,midsummersnightsdream,1595 imbrue,1,midsummersnightsdream,1595 rotted,1,midsummersnightsdream,1595 figs,1,midsummersnightsdream,1595 what's,1,midsummersnightsdream,1595 virtue's,1,midsummersnightsdream,1595 shiver,1,midsummersnightsdream,1595 charged,1,midsummersnightsdream,1595 angel,1,midsummersnightsdream,1595 anger,1,midsummersnightsdream,1595 spleen,1,midsummersnightsdream,1595 Ariadne,1,midsummersnightsdream,1595 killing,1,midsummersnightsdream,1595 labour'd,1,midsummersnightsdream,1595 opposite,1,midsummersnightsdream,1595 womb,1,midsummersnightsdream,1595 compass,1,midsummersnightsdream,1595 dumb,1,midsummersnightsdream,1595 willfully,1,midsummersnightsdream,1595 wondrous,1,midsummersnightsdream,1595 rail,1,midsummersnightsdream,1595 rain,1,midsummersnightsdream,1595 Learning,1,midsummersnightsdream,1595 cups,1,midsummersnightsdream,1595 dull,1,midsummersnightsdream,1595 nest,1,midsummersnightsdream,1595 crossways,1,midsummersnightsdream,1595 touching,1,midsummersnightsdream,1595 grain,1,midsummersnightsdream,1595 lurk,1,midsummersnightsdream,1595 waste,1,midsummersnightsdream,1595 hundred,1,midsummersnightsdream,1595 falling,1,midsummersnightsdream,1595 went,1,midsummersnightsdream,1595 wrong'd,1,midsummersnightsdream,1595 followers,1,midsummersnightsdream,1595 fill'd,1,midsummersnightsdream,1595 Even,1,midsummersnightsdream,1595 wend,1,midsummersnightsdream,1595 satire,1,midsummersnightsdream,1595 glad,1,midsummersnightsdream,1595 Show,1,midsummersnightsdream,1595 shocks,1,midsummersnightsdream,1595 guilty,1,midsummersnightsdream,1595 sails,1,midsummersnightsdream,1595 create,1,midsummersnightsdream,1595 quern,1,midsummersnightsdream,1595 boiling,1,midsummersnightsdream,1595 perishing,1,midsummersnightsdream,1595 persever,1,midsummersnightsdream,1595 Lull'd,1,midsummersnightsdream,1595 snail,1,midsummersnightsdream,1595 durst,1,midsummersnightsdream,1595 pressed,1,midsummersnightsdream,1595 diseases,1,midsummersnightsdream,1595 messengers,1,midsummersnightsdream,1595 union,1,midsummersnightsdream,1595 doubler,1,midsummersnightsdream,1595 weapons,1,midsummersnightsdream,1595 desert,1,midsummersnightsdream,1595 slumber'd,1,midsummersnightsdream,1595 That's,1,midsummersnightsdream,1595 snake,1,midsummersnightsdream,1595 fog,1,midsummersnightsdream,1595 Acheron,1,midsummersnightsdream,1595 foe,1,midsummersnightsdream,1595 wilful,1,midsummersnightsdream,1595 constancy,1,midsummersnightsdream,1595 Proceed,1,midsummersnightsdream,1595 quell,1,midsummersnightsdream,1595 Call'd,1,midsummersnightsdream,1595 answers,1,midsummersnightsdream,1595 churn,1,midsummersnightsdream,1595 Impatient,1,midsummersnightsdream,1595 kinsman,1,midsummersnightsdream,1595 vaward,1,midsummersnightsdream,1595 humour,1,midsummersnightsdream,1595 duck,1,midsummersnightsdream,1595 scorns,1,midsummersnightsdream,1595 worm,1,midsummersnightsdream,1595 cues,1,midsummersnightsdream,1595 passing,1,midsummersnightsdream,1595 Heigh,1,midsummersnightsdream,1595 west,1,midsummersnightsdream,1595 fie,1,midsummersnightsdream,1595 vixen,1,midsummersnightsdream,1595 Deny,1,midsummersnightsdream,1595 minute,1,midsummersnightsdream,1595 impeach,1,midsummersnightsdream,1595 offices,1,midsummersnightsdream,1595 astray,1,midsummersnightsdream,1595 wheat,1,midsummersnightsdream,1595 runn'st,1,midsummersnightsdream,1595 separation,1,midsummersnightsdream,1595 howsoever,1,midsummersnightsdream,1595 safety,1,midsummersnightsdream,1595 ne'er,1,midsummersnightsdream,1595 engaged,1,midsummersnightsdream,1595 barber's,1,midsummersnightsdream,1595 periods,1,midsummersnightsdream,1595 rattling,1,midsummersnightsdream,1595 'little',1,midsummersnightsdream,1595 horn,1,midsummersnightsdream,1595 incorporate,1,midsummersnightsdream,1595 married,1,midsummersnightsdream,1595 barm,1,midsummersnightsdream,1595 bark,1,midsummersnightsdream,1595 Thessalian,1,midsummersnightsdream,1595 rebuke,1,midsummersnightsdream,1595 bare,1,midsummersnightsdream,1595 lordship,1,midsummersnightsdream,1595 thunder,1,midsummersnightsdream,1595 Fare,1,midsummersnightsdream,1595 shown,1,midsummersnightsdream,1595 Unto,1,midsummersnightsdream,1595 shows,1,midsummersnightsdream,1595 unfold,1,midsummersnightsdream,1595 herself,1,midsummersnightsdream,1595 fawn,1,midsummersnightsdream,1595 linen,1,midsummersnightsdream,1595 Worm,1,midsummersnightsdream,1595 partly,1,midsummersnightsdream,1595 lived,1,midsummersnightsdream,1595 dewlap,1,midsummersnightsdream,1595 impaired,1,midsummersnightsdream,1595 meaning,1,midsummersnightsdream,1595 Coward,1,midsummersnightsdream,1595 base,1,midsummersnightsdream,1595 grisly,1,midsummersnightsdream,1595 triumphantly,1,midsummersnightsdream,1595 Cut,1,midsummersnightsdream,1595 extenuate,1,midsummersnightsdream,1595 fate,1,midsummersnightsdream,1595 appointed,1,midsummersnightsdream,1595 Tartar's,1,midsummersnightsdream,1595 observance,1,midsummersnightsdream,1595 band,1,midsummersnightsdream,1595 grapes,1,midsummersnightsdream,1595 friendship,1,midsummersnightsdream,1595 hallow'd,1,midsummersnightsdream,1595 creeps,1,midsummersnightsdream,1595 carol,1,midsummersnightsdream,1595 bounds,1,midsummersnightsdream,1595 tame,1,midsummersnightsdream,1595 names,1,midsummersnightsdream,1595 dam,1,midsummersnightsdream,1595 Each,1,midsummersnightsdream,1595 sentences,1,midsummersnightsdream,1595 trumpets,1,midsummersnightsdream,1595 flock,1,midsummersnightsdream,1595 drinks,1,midsummersnightsdream,1595 lad,1,midsummersnightsdream,1595 soul's,1,midsummersnightsdream,1595 lap,1,midsummersnightsdream,1595 officious,1,midsummersnightsdream,1595 complaint,1,midsummersnightsdream,1595 talk,1,midsummersnightsdream,1595 saddest,1,midsummersnightsdream,1595 lay,1,midsummersnightsdream,1595 amiable,1,midsummersnightsdream,1595 arm'd,1,midsummersnightsdream,1595 thousand,1,midsummersnightsdream,1595 farthest,1,midsummersnightsdream,1595 orient,1,midsummersnightsdream,1595 welcomes,1,midsummersnightsdream,1595 gentlemen,1,midsummersnightsdream,1595 Contagious,1,midsummersnightsdream,1595 perish,1,midsummersnightsdream,1595 Trust,1,midsummersnightsdream,1595 audacious,1,midsummersnightsdream,1595 torment,1,midsummersnightsdream,1595 asunder,1,midsummersnightsdream,1595 screeching,1,midsummersnightsdream,1595 churchyards,1,midsummersnightsdream,1595 Already,1,midsummersnightsdream,1595 Rather,1,midsummersnightsdream,1595 bewail,1,midsummersnightsdream,1595 beshrew,1,midsummersnightsdream,1595 tangled,1,midsummersnightsdream,1595 recorder,1,midsummersnightsdream,1595 eyeballs,1,midsummersnightsdream,1595 heresies,1,midsummersnightsdream,1595 Lulla,1,midsummersnightsdream,1595 shore,1,midsummersnightsdream,1595 holy,1,midsummersnightsdream,1595 clean,1,midsummersnightsdream,1595 None,1,midsummersnightsdream,1595 virginity,1,midsummersnightsdream,1595 greet,1,midsummersnightsdream,1595 stand'st,1,midsummersnightsdream,1595 cur,1,midsummersnightsdream,1595 devour,1,midsummersnightsdream,1595 follows,1,midsummersnightsdream,1595 gaping,1,midsummersnightsdream,1595 Although,1,midsummersnightsdream,1595 defect,1,midsummersnightsdream,1595 sunder,1,midsummersnightsdream,1595 argument,1,midsummersnightsdream,1595 solemnities,1,midsummersnightsdream,1595 paved,1,midsummersnightsdream,1595 unsay,1,midsummersnightsdream,1595 lives,1,midsummersnightsdream,1595 spiced,1,midsummersnightsdream,1595 Faintness,1,midsummersnightsdream,1595 Awake,1,midsummersnightsdream,1595 counsels,1,midsummersnightsdream,1595 seal,1,midsummersnightsdream,1595 potion,1,midsummersnightsdream,1595 Turn'd,1,midsummersnightsdream,1595 conjure,1,midsummersnightsdream,1595 unearned,1,midsummersnightsdream,1595 task,1,midsummersnightsdream,1595 notwithstanding,1,midsummersnightsdream,1595 'Fair,1,midsummersnightsdream,1595 intents,1,midsummersnightsdream,1595 convenient,1,midsummersnightsdream,1595 Neglect,1,midsummersnightsdream,1595 Intended,1,midsummersnightsdream,1595 shout,1,midsummersnightsdream,1595 prettily,1,midsummersnightsdream,1595 dissension,1,midsummersnightsdream,1595 seat,1,midsummersnightsdream,1595 along,1,midsummersnightsdream,1595 glittering,1,midsummersnightsdream,1595 cool,1,midsummersnightsdream,1595 Disparage,1,midsummersnightsdream,1595 bachelor,1,midsummersnightsdream,1595 eyed,1,midsummersnightsdream,1595 sweat,1,midsummersnightsdream,1595 deepest,1,midsummersnightsdream,1595 aloof,1,midsummersnightsdream,1595 dolphin's,1,midsummersnightsdream,1595 ugly,1,midsummersnightsdream,1595 'never,1,midsummersnightsdream,1595 lob,1,midsummersnightsdream,1595 expound,1,midsummersnightsdream,1595 kingdom,1,midsummersnightsdream,1595 AEgle,1,midsummersnightsdream,1595 puppet,1,midsummersnightsdream,1595 Sees,1,midsummersnightsdream,1595 Seem,1,midsummersnightsdream,1595 we'll,1,midsummersnightsdream,1595 handful,1,midsummersnightsdream,1595 bracelets,1,midsummersnightsdream,1595 original,1,midsummersnightsdream,1595 screech,1,midsummersnightsdream,1595 con,1,midsummersnightsdream,1595 progeny,1,midsummersnightsdream,1595 supposed,1,midsummersnightsdream,1595 sports,1,midsummersnightsdream,1595 meantime,1,midsummersnightsdream,1595 coy,1,midsummersnightsdream,1595 pick'd,1,midsummersnightsdream,1595 conclude,1,midsummersnightsdream,1595 bashfulness,1,midsummersnightsdream,1595 shapes,1,midsummersnightsdream,1595 prospers,1,midsummersnightsdream,1595 fellows,1,midsummersnightsdream,1595 battle,1,midsummersnightsdream,1595 thereof,1,midsummersnightsdream,1595 jangling,1,midsummersnightsdream,1595 Believe,1,midsummersnightsdream,1595 forgeries,1,midsummersnightsdream,1595 crest,1,midsummersnightsdream,1595 berries,1,midsummersnightsdream,1595 ditty,1,midsummersnightsdream,1595 setting,1,midsummersnightsdream,1595 behowls,1,midsummersnightsdream,1595 Fann'd,1,midsummersnightsdream,1595 moused,1,midsummersnightsdream,1595 exploit,1,midsummersnightsdream,1595 increase,1,midsummersnightsdream,1595 confounding,1,midsummersnightsdream,1595 monkey,1,midsummersnightsdream,1595 affright,1,midsummersnightsdream,1595 gathering,1,midsummersnightsdream,1595 pour,1,midsummersnightsdream,1595 nights,1,midsummersnightsdream,1595 loyalty,1,midsummersnightsdream,1595 downright,1,midsummersnightsdream,1595 Know,1,midsummersnightsdream,1595 therein,1,midsummersnightsdream,1595 million,1,midsummersnightsdream,1595 lovest,1,midsummersnightsdream,1595 tiring,1,midsummersnightsdream,1595 cushion,1,midsummersnightsdream,1595 revelling,1,midsummersnightsdream,1595 Quench'd,1,midsummersnightsdream,1595 bait,1,midsummersnightsdream,1595 kindred,1,midsummersnightsdream,1595 tied,1,midsummersnightsdream,1595 Use,1,midsummersnightsdream,1595 Ercles,1,midsummersnightsdream,1595 self,1,midsummersnightsdream,1595 fairly,1,midsummersnightsdream,1595 raven,1,midsummersnightsdream,1595 capacity,1,midsummersnightsdream,1595 moon's,1,midsummersnightsdream,1595 drivest,1,midsummersnightsdream,1595 apricocks,1,midsummersnightsdream,1595 distracted,1,midsummersnightsdream,1595 'Thisne,1,midsummersnightsdream,1595 return,1,midsummersnightsdream,1595 bankrupt,1,midsummersnightsdream,1595 see'st,1,midsummersnightsdream,1595 prison,1,midsummersnightsdream,1595 led,1,midsummersnightsdream,1595 roaring,1,midsummersnightsdream,1595 beached,1,midsummersnightsdream,1595 colt,1,midsummersnightsdream,1595 undo,1,midsummersnightsdream,1595 ghosts,1,midsummersnightsdream,1595 remote,1,midsummersnightsdream,1595 simpleness,1,midsummersnightsdream,1595 swell,1,midsummersnightsdream,1595 erewhile,1,midsummersnightsdream,1595 betrothed,1,midsummersnightsdream,1595 Cursed,1,midsummersnightsdream,1595 deceive,1,midsummersnightsdream,1595 squirrel's,1,midsummersnightsdream,1595 plunge,1,midsummersnightsdream,1595 season,1,midsummersnightsdream,1595 Phoebe,1,midsummersnightsdream,1595 match,1,midsummersnightsdream,1595 garter,1,midsummersnightsdream,1595 leagues,1,midsummersnightsdream,1595 passionate,1,midsummersnightsdream,1595 protest,1,midsummersnightsdream,1595 purpose,1,midsummersnightsdream,1595 aright,1,midsummersnightsdream,1595 affair,1,midsummersnightsdream,1595 Mistress,1,midsummersnightsdream,1595 couple,1,midsummersnightsdream,1595 spiders,1,midsummersnightsdream,1595 hinders,1,midsummersnightsdream,1595 lip,1,midsummersnightsdream,1595 palpable,1,midsummersnightsdream,1595 drooping,1,midsummersnightsdream,1595 pipes,1,midsummersnightsdream,1595 Judge,1,midsummersnightsdream,1595 coil,1,midsummersnightsdream,1595 bags,1,midsummersnightsdream,1595 merchandise,1,midsummersnightsdream,1595 triumph,1,midsummersnightsdream,1595 'Little',1,midsummersnightsdream,1595 brow,1,midsummersnightsdream,1595 storms,1,midsummersnightsdream,1595 frantic,1,midsummersnightsdream,1595 Nothing,1,midsummersnightsdream,1595 sleek,1,midsummersnightsdream,1595 upbraid,1,midsummersnightsdream,1595 starry,1,midsummersnightsdream,1595 Phillida,1,midsummersnightsdream,1595 rheumatic,1,midsummersnightsdream,1595 debate,1,midsummersnightsdream,1595 write,1,midsummersnightsdream,1595 insufficiency,1,midsummersnightsdream,1595 mar,1,midsummersnightsdream,1595 evening,1,midsummersnightsdream,1595 clouds,1,midsummersnightsdream,1595 confound,1,midsummersnightsdream,1595 Weaving,1,midsummersnightsdream,1595 betroth'd,1,midsummersnightsdream,1595 dulcet,1,midsummersnightsdream,1595 lazy,1,midsummersnightsdream,1595 peas,1,midsummersnightsdream,1595 filch'd,1,midsummersnightsdream,1595 least,1,midsummersnightsdream,1595 me',1,midsummersnightsdream,1595 conn'd,1,midsummersnightsdream,1595 wanes,1,midsummersnightsdream,1595 'scape,1,midsummersnightsdream,1595 balance,1,midsummersnightsdream,1595 obscenely,1,midsummersnightsdream,1595 smiling,1,midsummersnightsdream,1595 starve,1,midsummersnightsdream,1595 doing,1,midsummersnightsdream,1595 villagery,1,midsummersnightsdream,1595 funerals,1,midsummersnightsdream,1595 Thebes,1,midsummersnightsdream,1595 remember,1,midsummersnightsdream,1595 gossip's,1,midsummersnightsdream,1595 margent,1,midsummersnightsdream,1595 courageous,1,midsummersnightsdream,1595 gossip'd,1,midsummersnightsdream,1595 sister,1,midsummersnightsdream,1595 headed,1,midsummersnightsdream,1595 swim,1,midsummersnightsdream,1595 lofty,1,midsummersnightsdream,1595 trim,1,midsummersnightsdream,1595 glory,1,midsummersnightsdream,1595 Captain,1,midsummersnightsdream,1595 ounce,1,midsummersnightsdream,1595 meeting,1,midsummersnightsdream,1595 collied,1,midsummersnightsdream,1595 dye,1,midsummersnightsdream,1595 evils,1,midsummersnightsdream,1595 whit,1,midsummersnightsdream,1595 whip,1,midsummersnightsdream,1595 recreant,1,midsummersnightsdream,1595 heartily,1,midsummersnightsdream,1595 ravished,1,midsummersnightsdream,1595 cowslip's,1,midsummersnightsdream,1595 Met,1,midsummersnightsdream,1595 earthlier,1,midsummersnightsdream,1595 Crystal,1,midsummersnightsdream,1595 bethink,1,midsummersnightsdream,1595 Abate,1,midsummersnightsdream,1595 fashion,1,midsummersnightsdream,1595 bellied,1,midsummersnightsdream,1595 taunted,1,midsummersnightsdream,1595 flights,1,midsummersnightsdream,1595 withdraw,1,midsummersnightsdream,1595 maidenly,1,midsummersnightsdream,1595 brisky,1,midsummersnightsdream,1595 shaping,1,midsummersnightsdream,1595 Amen,1,midsummersnightsdream,1595 Indeed,1,midsummersnightsdream,1595 mourning,1,midsummersnightsdream,1595 amorous,1,midsummersnightsdream,1595 Melted,1,midsummersnightsdream,1595 telling,1,midsummersnightsdream,1595 last,1,midsummersnightsdream,1595 respects,1,midsummersnightsdream,1595 eunuch,1,midsummersnightsdream,1595 Thereby,1,midsummersnightsdream,1595 vestal,1,midsummersnightsdream,1595 peck,1,midsummersnightsdream,1595 credit,1,midsummersnightsdream,1595 gun's,1,midsummersnightsdream,1595 liquid,1,midsummersnightsdream,1595 thither,1,midsummersnightsdream,1595 brakes,1,midsummersnightsdream,1595 Squash,1,midsummersnightsdream,1595 tickle,1,midsummersnightsdream,1595 shroud,1,midsummersnightsdream,1595 customary,1,midsummersnightsdream,1595 Reason,1,midsummersnightsdream,1595 recompense,1,midsummersnightsdream,1595 Without,1,midsummersnightsdream,1595 peep,1,midsummersnightsdream,1595 besides,1,midsummersnightsdream,1595 opportunity,1,midsummersnightsdream,1595 imperfection,1,midsummersnightsdream,1595 squire,1,midsummersnightsdream,1595 Troyan,1,midsummersnightsdream,1595 reprehend,1,midsummersnightsdream,1595 pelting,1,midsummersnightsdream,1595 Crowns,1,midsummersnightsdream,1595 neigh,1,midsummersnightsdream,1595 Hiems',1,midsummersnightsdream,1595 devoured,1,midsummersnightsdream,1595 sway'd,1,midsummersnightsdream,1595 Churl,1,midsummersnightsdream,1595 urged,1,midsummersnightsdream,1595 floor,1,midsummersnightsdream,1595 defiled,1,midsummersnightsdream,1595 simply,1,midsummersnightsdream,1595 transported,1,midsummersnightsdream,1595 assurance,1,midsummersnightsdream,1595 pert,1,midsummersnightsdream,1595 nosegays,1,midsummersnightsdream,1595 mouths,1,midsummersnightsdream,1595 date,1,midsummersnightsdream,1595 leads,1,midsummersnightsdream,1595 widow,1,midsummersnightsdream,1595 shady,1,midsummersnightsdream,1595 reply,1,midsummersnightsdream,1595 nuts,1,midsummersnightsdream,1595 slay,1,midsummersnightsdream,1595 Tie,1,midsummersnightsdream,1595 expense,1,midsummersnightsdream,1595 centre,1,midsummersnightsdream,1595 mud,1,midsummersnightsdream,1595 nightingale,1,midsummersnightsdream,1595 amazedly,1,midsummersnightsdream,1595 dark,1,midsummersnightsdream,1595 Bedabbled,1,midsummersnightsdream,1595 Lest,1,midsummersnightsdream,1595 Less,1,midsummersnightsdream,1595 shone,1,midsummersnightsdream,1595 nodding,1,midsummersnightsdream,1595 Thracian,1,midsummersnightsdream,1595 carcass,1,midsummersnightsdream,1595 primrose,1,midsummersnightsdream,1595 roasted,1,midsummersnightsdream,1595 rocks,1,midsummersnightsdream,1595 fordone,1,midsummersnightsdream,1595 globe,1,midsummersnightsdream,1595 fellowship,1,midsummersnightsdream,1595 dry,1,midsummersnightsdream,1595 bred,1,midsummersnightsdream,1595 illusion,1,midsummersnightsdream,1595 snatch,1,midsummersnightsdream,1595 Steppe,1,midsummersnightsdream,1595 DRAMATIS,1,midsummersnightsdream,1595 spangled,1,midsummersnightsdream,1595 sinister,1,midsummersnightsdream,1595 Due,1,midsummersnightsdream,1595 garlic,1,midsummersnightsdream,1595 tie,1,midsummersnightsdream,1595 shake,1,midsummersnightsdream,1595 dank,1,midsummersnightsdream,1595 dotage,1,midsummersnightsdream,1595 finish'd,1,midsummersnightsdream,1595 Knight,1,midsummersnightsdream,1595 undergo,1,midsummersnightsdream,1595 versing,1,midsummersnightsdream,1595 noontide,1,midsummersnightsdream,1595 Tom,1,midsummersnightsdream,1595 superpraise,1,midsummersnightsdream,1595 exit,1,midsummersnightsdream,1595 he'll,1,midsummersnightsdream,1595 Beetles,1,midsummersnightsdream,1595 impair,1,midsummersnightsdream,1595 boasts,1,midsummersnightsdream,1595 contest,1,midsummersnightsdream,1595 munch,1,midsummersnightsdream,1595 private,1,midsummersnightsdream,1595 shifting,1,midsummersnightsdream,1595 press'd,1,midsummersnightsdream,1595 scales,1,midsummersnightsdream,1595 slip,1,midsummersnightsdream,1595 princess,1,midsummersnightsdream,1595 mutual,1,midsummersnightsdream,1595 eyelids,1,midsummersnightsdream,1595 deflower'd,1,midsummersnightsdream,1595 amen,1,midsummersnightsdream,1595 fragrant,1,midsummersnightsdream,1595 archery,1,midsummersnightsdream,1595 doting,1,midsummersnightsdream,1595 repair,1,midsummersnightsdream,1595 shoes,1,midsummersnightsdream,1595 Fine,1,midsummersnightsdream,1595 obedience,1,midsummersnightsdream,1595 properties,1,midsummersnightsdream,1595 bewitch'd,1,midsummersnightsdream,1595 Spartan,1,midsummersnightsdream,1595 Thrice,1,midsummersnightsdream,1595 bide,1,midsummersnightsdream,1595 conspired,1,midsummersnightsdream,1595 hunting,1,midsummersnightsdream,1595 dewdrops,1,midsummersnightsdream,1595 undertake,1,midsummersnightsdream,1595 Brief,1,midsummersnightsdream,1595 crows,1,midsummersnightsdream,1595 sands,1,midsummersnightsdream,1595 order,1,midsummersnightsdream,1595 hold'st,1,midsummersnightsdream,1595 sharp,1,midsummersnightsdream,1595 woo'd,1,midsummersnightsdream,1595 seek'st,1,midsummersnightsdream,1595 women,1,midsummersnightsdream,1595 consents,1,midsummersnightsdream,1595 fortunes,1,midsummersnightsdream,1595 sway,1,midsummersnightsdream,1595 ungrateful,1,midsummersnightsdream,1595 lads,1,midsummersnightsdream,1595 misgraffed,1,midsummersnightsdream,1595 Grows,1,midsummersnightsdream,1595 discharged,2,midsummersnightsdream,1595 forbid,2,midsummersnightsdream,1595 invisible,2,midsummersnightsdream,1595 join,2,midsummersnightsdream,1595 took,2,midsummersnightsdream,1595 apprehend,2,midsummersnightsdream,1595 speech,2,midsummersnightsdream,1595 tremble,2,midsummersnightsdream,1595 discord,2,midsummersnightsdream,1595 business,2,midsummersnightsdream,1595 neighbours,2,midsummersnightsdream,1595 Fie,2,midsummersnightsdream,1595 wicked,2,midsummersnightsdream,1595 peace,2,midsummersnightsdream,1595 Procrus,2,midsummersnightsdream,1595 scene,2,midsummersnightsdream,1595 western,2,midsummersnightsdream,1595 villain,2,midsummersnightsdream,1595 waxen,2,midsummersnightsdream,1595 cranny,2,midsummersnightsdream,1595 Thisbe's,2,midsummersnightsdream,1595 Tell,2,midsummersnightsdream,1595 thorns,2,midsummersnightsdream,1595 darkness,2,midsummersnightsdream,1595 painted,2,midsummersnightsdream,1595 hers,2,midsummersnightsdream,1595 Must,2,midsummersnightsdream,1595 vain,2,midsummersnightsdream,1595 sighs,2,midsummersnightsdream,1595 grim,2,midsummersnightsdream,1595 Help,2,midsummersnightsdream,1595 tuneable,2,midsummersnightsdream,1595 hanged,2,midsummersnightsdream,1595 summer's,2,midsummersnightsdream,1595 understand,2,midsummersnightsdream,1595 QUINCE'S,2,midsummersnightsdream,1595 Ere,2,midsummersnightsdream,1595 cowardice,2,midsummersnightsdream,1595 under,2,midsummersnightsdream,1595 calls,2,midsummersnightsdream,1595 Nedar's,2,midsummersnightsdream,1595 innocence,2,midsummersnightsdream,1595 befall,2,midsummersnightsdream,1595 press,2,midsummersnightsdream,1595 iron,2,midsummersnightsdream,1595 Quite,2,midsummersnightsdream,1595 cheeks,2,midsummersnightsdream,1595 care,2,midsummersnightsdream,1595 mistook,2,midsummersnightsdream,1595 mercy,2,midsummersnightsdream,1595 Over,2,midsummersnightsdream,1595 chid,2,midsummersnightsdream,1595 surfeit,2,midsummersnightsdream,1595 amazed,2,midsummersnightsdream,1595 confusion,2,midsummersnightsdream,1595 Whose,2,midsummersnightsdream,1595 grown,2,midsummersnightsdream,1595 grows,2,midsummersnightsdream,1595 fortunate,2,midsummersnightsdream,1595 Tongue,2,midsummersnightsdream,1595 Keep,2,midsummersnightsdream,1595 worthier,2,midsummersnightsdream,1595 cheek,2,midsummersnightsdream,1595 golden,2,midsummersnightsdream,1595 poet's,2,midsummersnightsdream,1595 glass,2,midsummersnightsdream,1595 likeness,2,midsummersnightsdream,1595 noise,2,midsummersnightsdream,1595 visions,2,midsummersnightsdream,1595 stealth,2,midsummersnightsdream,1595 view,2,midsummersnightsdream,1595 Duke,2,midsummersnightsdream,1595 sung,2,midsummersnightsdream,1595 sit,2,midsummersnightsdream,1595 stands,2,midsummersnightsdream,1595 Get,2,midsummersnightsdream,1595 conceive,2,midsummersnightsdream,1595 lovers',2,midsummersnightsdream,1595 knavish,2,midsummersnightsdream,1595 maidens,2,midsummersnightsdream,1595 'twere,2,midsummersnightsdream,1595 key,2,midsummersnightsdream,1595 sex,2,midsummersnightsdream,1595 virtuous,2,midsummersnightsdream,1595 personage,2,midsummersnightsdream,1595 wedding,2,midsummersnightsdream,1595 wildest,2,midsummersnightsdream,1595 Seem'd,2,midsummersnightsdream,1595 murderer,2,midsummersnightsdream,1595 Farewell,2,midsummersnightsdream,1595 'I,2,midsummersnightsdream,1595 Their,2,midsummersnightsdream,1595 interlude,2,midsummersnightsdream,1595 Music,2,midsummersnightsdream,1595 childhood,2,midsummersnightsdream,1595 Thanks,2,midsummersnightsdream,1595 release,2,midsummersnightsdream,1595 Athenian's,2,midsummersnightsdream,1595 worst,2,midsummersnightsdream,1595 esteem,2,midsummersnightsdream,1595 fight,2,midsummersnightsdream,1595 dances,2,midsummersnightsdream,1595 monster,2,midsummersnightsdream,1595 afraid,2,midsummersnightsdream,1595 fellow,2,midsummersnightsdream,1595 born,2,midsummersnightsdream,1595 common,2,midsummersnightsdream,1595 figure,2,midsummersnightsdream,1595 civil,2,midsummersnightsdream,1595 bliss,2,midsummersnightsdream,1595 quake,2,midsummersnightsdream,1595 loose,2,midsummersnightsdream,1595 pearl,2,midsummersnightsdream,1595 thence,2,midsummersnightsdream,1595 Whilst,2,midsummersnightsdream,1595 cries,2,midsummersnightsdream,1595 humble,2,midsummersnightsdream,1595 sun,2,midsummersnightsdream,1595 spaniel,2,midsummersnightsdream,1595 service,2,midsummersnightsdream,1595 blind,2,midsummersnightsdream,1595 ancient,2,midsummersnightsdream,1595 undistinguishable,2,midsummersnightsdream,1595 nails,2,midsummersnightsdream,1595 sphere,2,midsummersnightsdream,1595 want,2,midsummersnightsdream,1595 steal,2,midsummersnightsdream,1595 fruitless,2,midsummersnightsdream,1595 trifles,2,midsummersnightsdream,1595 wise,2,midsummersnightsdream,1595 bold,2,midsummersnightsdream,1595 sooth,2,midsummersnightsdream,1595 Fetch,2,midsummersnightsdream,1595 bully,2,midsummersnightsdream,1595 window,2,midsummersnightsdream,1595 pretty,2,midsummersnightsdream,1595 cunning,2,midsummersnightsdream,1595 mistake,2,midsummersnightsdream,1595 wast,2,midsummersnightsdream,1595 French,2,midsummersnightsdream,1595 spoke,2,midsummersnightsdream,1595 Goodfellow,2,midsummersnightsdream,1595 Love's,2,midsummersnightsdream,1595 Bottom's,2,midsummersnightsdream,1595 goddess,2,midsummersnightsdream,1595 manners,2,midsummersnightsdream,1595 What's,2,midsummersnightsdream,1595 votaress,2,midsummersnightsdream,1595 Stabs,2,midsummersnightsdream,1595 III,2,midsummersnightsdream,1595 pat,2,midsummersnightsdream,1595 pap,2,midsummersnightsdream,1595 Those,2,midsummersnightsdream,1595 among,2,midsummersnightsdream,1595 Nature,2,midsummersnightsdream,1595 ass's,2,midsummersnightsdream,1595 Philomel,2,midsummersnightsdream,1595 canst,2,midsummersnightsdream,1595 shines,2,midsummersnightsdream,1595 finds,2,midsummersnightsdream,1595 changed,2,midsummersnightsdream,1595 tear,2,midsummersnightsdream,1595 flowery,2,midsummersnightsdream,1595 means,2,midsummersnightsdream,1595 pleasure,2,midsummersnightsdream,1595 IV,2,midsummersnightsdream,1595 blest,2,midsummersnightsdream,1595 whole,2,midsummersnightsdream,1595 quick,2,midsummersnightsdream,1595 revenue,2,midsummersnightsdream,1595 ears,2,midsummersnightsdream,1595 courteous,2,midsummersnightsdream,1595 gold,2,midsummersnightsdream,1595 tongue's,2,midsummersnightsdream,1595 nigh,2,midsummersnightsdream,1595 crush,2,midsummersnightsdream,1595 wear,2,midsummersnightsdream,1595 bent,2,midsummersnightsdream,1595 jealous,2,midsummersnightsdream,1595 Dies,2,midsummersnightsdream,1595 curse,2,midsummersnightsdream,1595 worship's,2,midsummersnightsdream,1595 Enough,2,midsummersnightsdream,1595 casement,2,midsummersnightsdream,1595 divine,2,midsummersnightsdream,1595 enterprise,2,midsummersnightsdream,1595 beds,2,midsummersnightsdream,1595 Both,2,midsummersnightsdream,1595 quite,2,midsummersnightsdream,1595 i',2,midsummersnightsdream,1595 sail,2,midsummersnightsdream,1595 affection,2,midsummersnightsdream,1595 tyrant,2,midsummersnightsdream,1595 excellent,2,midsummersnightsdream,1595 repent,2,midsummersnightsdream,1595 Crete,2,midsummersnightsdream,1595 seeming,2,midsummersnightsdream,1595 quaint,2,midsummersnightsdream,1595 game,2,midsummersnightsdream,1595 amend,2,midsummersnightsdream,1595 Thorough,2,midsummersnightsdream,1595 aby,2,midsummersnightsdream,1595 ox,2,midsummersnightsdream,1595 attending,2,midsummersnightsdream,1595 warbling,2,midsummersnightsdream,1595 fears,2,midsummersnightsdream,1595 bodies,2,midsummersnightsdream,1595 delay,2,midsummersnightsdream,1595 aside,2,midsummersnightsdream,1595 morn,2,midsummersnightsdream,1595 pursues,2,midsummersnightsdream,1595 loud,2,midsummersnightsdream,1595 Yes,2,midsummersnightsdream,1595 spent,2,midsummersnightsdream,1595 ill,2,midsummersnightsdream,1595 ace,2,midsummersnightsdream,1595 apparel,2,midsummersnightsdream,1595 beauteous,2,midsummersnightsdream,1595 bootless,2,midsummersnightsdream,1595 pure,2,midsummersnightsdream,1595 loam,2,midsummersnightsdream,1595 hog,2,midsummersnightsdream,1595 withering,2,midsummersnightsdream,1595 briers,2,midsummersnightsdream,1595 hark,2,midsummersnightsdream,1595 kills,2,midsummersnightsdream,1595 hard,2,midsummersnightsdream,1595 scratch,2,midsummersnightsdream,1595 Most,2,midsummersnightsdream,1595 crow,2,midsummersnightsdream,1595 welcome,2,midsummersnightsdream,1595 Call,2,midsummersnightsdream,1595 Hercules,2,midsummersnightsdream,1595 Happy,2,midsummersnightsdream,1595 strings,2,midsummersnightsdream,1595 appears,2,midsummersnightsdream,1595 Full,2,midsummersnightsdream,1595 four,2,midsummersnightsdream,1595 draws,2,midsummersnightsdream,1595 plain,2,midsummersnightsdream,1595 school,2,midsummersnightsdream,1595 spotted,2,midsummersnightsdream,1595 pluck,2,midsummersnightsdream,1595 whether,2,midsummersnightsdream,1595 city,2,midsummersnightsdream,1595 weeps,2,midsummersnightsdream,1595 form,2,midsummersnightsdream,1595 nightly,2,midsummersnightsdream,1595 pain,2,midsummersnightsdream,1595 stranger,2,midsummersnightsdream,1595 wasted,2,midsummersnightsdream,1595 point,2,midsummersnightsdream,1595 foot,2,midsummersnightsdream,1595 bosom,2,midsummersnightsdream,1595 fool,2,midsummersnightsdream,1595 dreadful,2,midsummersnightsdream,1595 food,2,midsummersnightsdream,1595 Bergomask,2,midsummersnightsdream,1595 revenge,2,midsummersnightsdream,1595 Hop,2,midsummersnightsdream,1595 ye,2,midsummersnightsdream,1595 error,2,midsummersnightsdream,1595 Hast,2,midsummersnightsdream,1595 chance,2,midsummersnightsdream,1595 Sparta,2,midsummersnightsdream,1595 thanks,2,midsummersnightsdream,1595 disdainful,2,midsummersnightsdream,1595 touch,2,midsummersnightsdream,1595 judgment,2,midsummersnightsdream,1595 broke,2,midsummersnightsdream,1595 Hath,2,midsummersnightsdream,1595 height,2,midsummersnightsdream,1595 Into,2,midsummersnightsdream,1595 Between,2,midsummersnightsdream,1595 room,2,midsummersnightsdream,1595 hawthorn,2,midsummersnightsdream,1595 glow,2,midsummersnightsdream,1595 Against,2,midsummersnightsdream,1595 carries,2,midsummersnightsdream,1595 report,2,midsummersnightsdream,1595 hill,2,midsummersnightsdream,1595 mischief,2,midsummersnightsdream,1595 water,2,midsummersnightsdream,1595 prosperity,2,midsummersnightsdream,1595 Venus,2,midsummersnightsdream,1595 almost,2,midsummersnightsdream,1595 rare,2,midsummersnightsdream,1595 proceed,2,midsummersnightsdream,1595 action,2,midsummersnightsdream,1595 waked,2,midsummersnightsdream,1595 scroll,2,midsummersnightsdream,1595 chase,2,midsummersnightsdream,1595 visage,2,midsummersnightsdream,1595 alter,2,midsummersnightsdream,1595 quickly,2,midsummersnightsdream,1595 arise,2,midsummersnightsdream,1595 Philostrate,2,midsummersnightsdream,1595 parting,2,midsummersnightsdream,1595 horned,2,midsummersnightsdream,1595 orange,2,midsummersnightsdream,1595 evermore,2,midsummersnightsdream,1595 mouth,2,midsummersnightsdream,1595 forest,2,midsummersnightsdream,1595 Lord,2,midsummersnightsdream,1595 mouse,2,midsummersnightsdream,1595 Doth,2,midsummersnightsdream,1595 Turns,2,midsummersnightsdream,1595 groves,2,midsummersnightsdream,1595 question,2,midsummersnightsdream,1595 See,2,midsummersnightsdream,1595 device,2,midsummersnightsdream,1595 airy,2,midsummersnightsdream,1595 daylight,2,midsummersnightsdream,1595 mild,2,midsummersnightsdream,1595 purposed,2,midsummersnightsdream,1595 Nick,2,midsummersnightsdream,1595 already,2,midsummersnightsdream,1595 didst,2,midsummersnightsdream,1595 straightway,2,midsummersnightsdream,1595 Could,2,midsummersnightsdream,1595 skin,2,midsummersnightsdream,1595 concord,2,midsummersnightsdream,1595 coward,2,midsummersnightsdream,1595 ALL,2,midsummersnightsdream,1595 knows,2,midsummersnightsdream,1595 fountain,2,midsummersnightsdream,1595 woe,2,midsummersnightsdream,1595 issue,2,midsummersnightsdream,1595 wot,2,midsummersnightsdream,1595 won,2,midsummersnightsdream,1595 minutes,2,midsummersnightsdream,1595 vision,2,midsummersnightsdream,1595 gates,2,midsummersnightsdream,1595 discharge,2,midsummersnightsdream,1595 mockery,2,midsummersnightsdream,1595 Horns,2,midsummersnightsdream,1595 ploughman,2,midsummersnightsdream,1595 paramour,2,midsummersnightsdream,1595 Were,2,midsummersnightsdream,1595 disfigure,2,midsummersnightsdream,1595 knavery,2,midsummersnightsdream,1595 close,2,midsummersnightsdream,1595 woodbine,2,midsummersnightsdream,1595 duchess,2,midsummersnightsdream,1595 flies,2,midsummersnightsdream,1595 enamour'd,2,midsummersnightsdream,1595 salt,2,midsummersnightsdream,1595 pomp,2,midsummersnightsdream,1595 sides,2,midsummersnightsdream,1595 oft,2,midsummersnightsdream,1595 Dead,2,midsummersnightsdream,1595 walks,2,midsummersnightsdream,1595 partition,2,midsummersnightsdream,1595 musical,2,midsummersnightsdream,1595 heavy,2,midsummersnightsdream,1595 maid's,2,midsummersnightsdream,1595 Think,2,midsummersnightsdream,1595 able,2,midsummersnightsdream,1595 tailor,2,midsummersnightsdream,1595 fancy's,2,midsummersnightsdream,1595 intend,2,midsummersnightsdream,1595 fantasies,2,midsummersnightsdream,1595 arrow,2,midsummersnightsdream,1595 rage,2,midsummersnightsdream,1595 assure,2,midsummersnightsdream,1595 forward,2,midsummersnightsdream,1595 ends,2,midsummersnightsdream,1595 owl,2,midsummersnightsdream,1595 news,2,midsummersnightsdream,1595 dreams,2,midsummersnightsdream,1595 takes,2,midsummersnightsdream,1595 faced,2,midsummersnightsdream,1595 conference,2,midsummersnightsdream,1595 owe,2,midsummersnightsdream,1595 yoke,2,midsummersnightsdream,1595 wolf,2,midsummersnightsdream,1595 beguiled,2,midsummersnightsdream,1595 angry,2,midsummersnightsdream,1595 cover,2,midsummersnightsdream,1595 fail,2,midsummersnightsdream,1595 grass,2,midsummersnightsdream,1595 Till,2,midsummersnightsdream,1595 amends,2,midsummersnightsdream,1595 wander,2,midsummersnightsdream,1595 grant,2,midsummersnightsdream,1595 worn,2,midsummersnightsdream,1595 fine,2,midsummersnightsdream,1595 folly,2,midsummersnightsdream,1595 Near,2,midsummersnightsdream,1595 wide,2,midsummersnightsdream,1595 smooth,2,midsummersnightsdream,1595 wonted,2,midsummersnightsdream,1595 whither,2,midsummersnightsdream,1595 odours,2,midsummersnightsdream,1595 Four,2,midsummersnightsdream,1595 comfort,2,midsummersnightsdream,1595 aunt,2,midsummersnightsdream,1595 cock,2,midsummersnightsdream,1595 Steal,2,midsummersnightsdream,1595 bank,2,midsummersnightsdream,1595 large,2,midsummersnightsdream,1595 bill,2,midsummersnightsdream,1595 fare,2,midsummersnightsdream,1595 Welcome,2,midsummersnightsdream,1595 gallant,2,midsummersnightsdream,1595 tale,2,midsummersnightsdream,1595 is't,2,midsummersnightsdream,1595 calendar,2,midsummersnightsdream,1595 acorn,2,midsummersnightsdream,1595 hatred,2,midsummersnightsdream,1595 comprehends,2,midsummersnightsdream,1595 carry,2,midsummersnightsdream,1595 Shafalus,2,midsummersnightsdream,1595 creep,2,midsummersnightsdream,1595 ought,2,midsummersnightsdream,1595 pardon,2,midsummersnightsdream,1595 starlight,2,midsummersnightsdream,1595 clear,2,midsummersnightsdream,1595 short,2,midsummersnightsdream,1595 Lay,2,midsummersnightsdream,1595 counterfeit,2,midsummersnightsdream,1595 request,2,midsummersnightsdream,1595 winter,2,midsummersnightsdream,1595 flood,2,midsummersnightsdream,1595 Wherefore,2,midsummersnightsdream,1595 favours,2,midsummersnightsdream,1595 gives,2,midsummersnightsdream,1595 fitted,2,midsummersnightsdream,1595 wife,2,midsummersnightsdream,1595 prayers,2,midsummersnightsdream,1595 Anon,2,midsummersnightsdream,1595 hung,2,midsummersnightsdream,1595 hairy,2,midsummersnightsdream,1595 vexation,2,midsummersnightsdream,1595 wanderer,2,midsummersnightsdream,1595 aught,2,midsummersnightsdream,1595 Truly,2,midsummersnightsdream,1595 Lie,2,midsummersnightsdream,1595 marvellous,2,midsummersnightsdream,1595 feigning,2,midsummersnightsdream,1595 render,2,midsummersnightsdream,1595 hound,2,midsummersnightsdream,1595 True,2,midsummersnightsdream,1595 corn,2,midsummersnightsdream,1595 Pray,2,midsummersnightsdream,1595 person,2,midsummersnightsdream,1595 Things,2,midsummersnightsdream,1595 hours,2,midsummersnightsdream,1595 loathe,2,midsummersnightsdream,1595 prayer,2,midsummersnightsdream,1595 gods,2,midsummersnightsdream,1595 Trip,2,midsummersnightsdream,1595 floods,2,midsummersnightsdream,1595 mother's,2,midsummersnightsdream,1595 barren,2,midsummersnightsdream,1595 sickness,2,midsummersnightsdream,1595 Following,2,midsummersnightsdream,1595 sorrow's,2,midsummersnightsdream,1595 methought,2,midsummersnightsdream,1595 until,2,midsummersnightsdream,1595 thread,2,midsummersnightsdream,1595 slow,2,midsummersnightsdream,1595 mad,2,midsummersnightsdream,1595 afeard,2,midsummersnightsdream,1595 Despised,2,midsummersnightsdream,1595 straight,2,midsummersnightsdream,1595 Sometime,2,midsummersnightsdream,1595 murder'd,2,midsummersnightsdream,1595 Before,2,midsummersnightsdream,1595 thoughts,2,midsummersnightsdream,1595 simplicity,2,midsummersnightsdream,1595 Away,2,midsummersnightsdream,1595 beguile,2,midsummersnightsdream,1595 players,2,midsummersnightsdream,1595 sometimes,2,midsummersnightsdream,1595 Marry,2,midsummersnightsdream,1595 nativity,2,midsummersnightsdream,1595 jollity,2,midsummersnightsdream,1595 late,2,midsummersnightsdream,1595 Sings,2,midsummersnightsdream,1595 eastern,2,midsummersnightsdream,1595 virtue,2,midsummersnightsdream,1595 beauty,2,midsummersnightsdream,1595 compel,2,midsummersnightsdream,1595 glimmering,2,midsummersnightsdream,1595 stretch'd,2,midsummersnightsdream,1595 silver,2,midsummersnightsdream,1595 hurt,2,midsummersnightsdream,1595 content,2,midsummersnightsdream,1595 shade,2,midsummersnightsdream,1595 try,2,midsummersnightsdream,1595 shrewd,2,midsummersnightsdream,1595 simple,2,midsummersnightsdream,1595 spring,2,midsummersnightsdream,1595 lover's,2,midsummersnightsdream,1595 shaft,2,midsummersnightsdream,1595 employ,2,midsummersnightsdream,1595 laid,2,midsummersnightsdream,1595 attend,2,midsummersnightsdream,1595 perchance,2,midsummersnightsdream,1595 Gentles,2,midsummersnightsdream,1595 weigh,2,midsummersnightsdream,1595 frame,2,midsummersnightsdream,1595 due,2,midsummersnightsdream,1595 liquor,2,midsummersnightsdream,1595 another's,2,midsummersnightsdream,1595 top,2,midsummersnightsdream,1595 couples,2,midsummersnightsdream,1595 wonders,2,midsummersnightsdream,1595 flout,2,midsummersnightsdream,1595 behold,2,midsummersnightsdream,1595 dame,2,midsummersnightsdream,1595 shame,2,midsummersnightsdream,1595 dale,2,midsummersnightsdream,1595 jealousy,2,midsummersnightsdream,1595 ten,2,midsummersnightsdream,1595 haunted,2,midsummersnightsdream,1595 remembrance,2,midsummersnightsdream,1595 oaths,2,midsummersnightsdream,1595 tread,2,midsummersnightsdream,1595 perhaps,2,midsummersnightsdream,1595 crown,2,midsummersnightsdream,1595 dowager,2,midsummersnightsdream,1595 horns,3,midsummersnightsdream,1595 parted,3,midsummersnightsdream,1595 red,3,midsummersnightsdream,1595 fancy,3,midsummersnightsdream,1595 darest,3,midsummersnightsdream,1595 weary,3,midsummersnightsdream,1595 shadows,3,midsummersnightsdream,1595 alack,3,midsummersnightsdream,1595 haste,3,midsummersnightsdream,1595 dotes,3,midsummersnightsdream,1595 Stay,3,midsummersnightsdream,1595 eight,3,midsummersnightsdream,1595 Either,3,midsummersnightsdream,1595 while,3,midsummersnightsdream,1595 Lovers,3,midsummersnightsdream,1595 lulla,3,midsummersnightsdream,1595 yonder,3,midsummersnightsdream,1595 nymph,3,midsummersnightsdream,1595 musk,3,midsummersnightsdream,1595 bower,3,midsummersnightsdream,1595 cast,3,midsummersnightsdream,1595 case,3,midsummersnightsdream,1595 pursue,3,midsummersnightsdream,1595 soon,3,midsummersnightsdream,1595 yourself,3,midsummersnightsdream,1595 Give,3,midsummersnightsdream,1595 lime,3,midsummersnightsdream,1595 injury,3,midsummersnightsdream,1595 sure,3,midsummersnightsdream,1595 cheer,3,midsummersnightsdream,1595 hearing,3,midsummersnightsdream,1595 fingers,3,midsummersnightsdream,1595 teach,3,midsummersnightsdream,1595 moonshine,3,midsummersnightsdream,1595 merry,3,midsummersnightsdream,1595 beasts,3,midsummersnightsdream,1595 yield,3,midsummersnightsdream,1595 spy,3,midsummersnightsdream,1595 peril,3,midsummersnightsdream,1595 son,3,midsummersnightsdream,1595 skill,3,midsummersnightsdream,1595 counsel,3,midsummersnightsdream,1595 cause,3,midsummersnightsdream,1595 sky,3,midsummersnightsdream,1595 wings,3,midsummersnightsdream,1595 league,3,midsummersnightsdream,1595 mother,3,midsummersnightsdream,1595 Attendants,3,midsummersnightsdream,1595 read,3,midsummersnightsdream,1595 worse,3,midsummersnightsdream,1595 snow,3,midsummersnightsdream,1595 fault,3,midsummersnightsdream,1595 falls,3,midsummersnightsdream,1595 fearful,3,midsummersnightsdream,1595 masters,3,midsummersnightsdream,1595 rude,3,midsummersnightsdream,1595 Hence,3,midsummersnightsdream,1595 comedy,3,midsummersnightsdream,1595 night's,3,midsummersnightsdream,1595 tinker,3,midsummersnightsdream,1595 goose,3,midsummersnightsdream,1595 wish,3,midsummersnightsdream,1595 translated,3,midsummersnightsdream,1595 anon,3,midsummersnightsdream,1595 bond,3,midsummersnightsdream,1595 coats,3,midsummersnightsdream,1595 parts,3,midsummersnightsdream,1595 colour,3,midsummersnightsdream,1595 Follow,3,midsummersnightsdream,1595 sick,3,midsummersnightsdream,1595 wherefore,3,midsummersnightsdream,1595 Demetrius',3,midsummersnightsdream,1595 stir,3,midsummersnightsdream,1595 morning,3,midsummersnightsdream,1595 While,3,midsummersnightsdream,1595 offend,3,midsummersnightsdream,1595 hay,3,midsummersnightsdream,1595 measure,3,midsummersnightsdream,1595 bag,3,midsummersnightsdream,1595 cruel,3,midsummersnightsdream,1595 since,3,midsummersnightsdream,1595 adder,3,midsummersnightsdream,1595 pass,3,midsummersnightsdream,1595 proud,3,midsummersnightsdream,1595 yourselves,3,midsummersnightsdream,1595 monstrous,3,midsummersnightsdream,1595 changeling,3,midsummersnightsdream,1595 cat,3,midsummersnightsdream,1595 curst,3,midsummersnightsdream,1595 Sing,3,midsummersnightsdream,1595 longer,3,midsummersnightsdream,1595 epilogue,3,midsummersnightsdream,1595 savours,3,midsummersnightsdream,1595 begin,3,midsummersnightsdream,1595 story,3,midsummersnightsdream,1595 virgin,3,midsummersnightsdream,1595 deep,3,midsummersnightsdream,1595 confess,3,midsummersnightsdream,1595 breast,3,midsummersnightsdream,1595 air,3,midsummersnightsdream,1595 truest,3,midsummersnightsdream,1595 tawny,3,midsummersnightsdream,1595 legs,3,midsummersnightsdream,1595 Starveling,3,midsummersnightsdream,1595 gait,3,midsummersnightsdream,1595 played,3,midsummersnightsdream,1595 speed,3,midsummersnightsdream,1595 privilege,3,midsummersnightsdream,1595 move,3,midsummersnightsdream,1595 idle,3,midsummersnightsdream,1595 Yea,3,midsummersnightsdream,1595 lost,3,midsummersnightsdream,1595 forgot,3,midsummersnightsdream,1595 fierce,3,midsummersnightsdream,1595 keen,3,midsummersnightsdream,1595 aye,3,midsummersnightsdream,1595 hue,3,midsummersnightsdream,1595 half,3,midsummersnightsdream,1595 knit,3,midsummersnightsdream,1595 excuse,3,midsummersnightsdream,1595 acquaintance,3,midsummersnightsdream,1595 First,3,midsummersnightsdream,1595 midnight,3,midsummersnightsdream,1595 ask,3,midsummersnightsdream,1595 mender,3,midsummersnightsdream,1595 mock,3,midsummersnightsdream,1595 stones,3,midsummersnightsdream,1595 Indian,3,midsummersnightsdream,1595 mortals,3,midsummersnightsdream,1595 rivals,3,midsummersnightsdream,1595 Ninny's,3,midsummersnightsdream,1595 beams,3,midsummersnightsdream,1595 luck,3,midsummersnightsdream,1595 nay,3,midsummersnightsdream,1595 indeed,3,midsummersnightsdream,1595 beast,3,midsummersnightsdream,1595 faint,3,midsummersnightsdream,1595 bellows,3,midsummersnightsdream,1595 slain,3,midsummersnightsdream,1595 dares,3,midsummersnightsdream,1595 awhile,3,midsummersnightsdream,1595 yours,3,midsummersnightsdream,1595 spurn,3,midsummersnightsdream,1595 Look,3,midsummersnightsdream,1595 milk,3,midsummersnightsdream,1595 stars,3,midsummersnightsdream,1595 shield,3,midsummersnightsdream,1595 foolish,3,midsummersnightsdream,1595 bloody,3,midsummersnightsdream,1595 known,3,midsummersnightsdream,1595 vein,3,midsummersnightsdream,1595 chide,3,midsummersnightsdream,1595 Swifter,3,midsummersnightsdream,1595 desires,3,midsummersnightsdream,1595 thorough,3,midsummersnightsdream,1595 wed,3,midsummersnightsdream,1595 fray,3,midsummersnightsdream,1595 taste,3,midsummersnightsdream,1595 We'll,3,midsummersnightsdream,1595 hateful,3,midsummersnightsdream,1595 fetch,3,midsummersnightsdream,1595 beseech,3,midsummersnightsdream,1595 waking,3,midsummersnightsdream,1595 flight,3,midsummersnightsdream,1595 'The,3,midsummersnightsdream,1595 intent,3,midsummersnightsdream,1595 Fates,3,midsummersnightsdream,1595 wanton,3,midsummersnightsdream,1595 serve,3,midsummersnightsdream,1595 watery,3,midsummersnightsdream,1595 knight,3,midsummersnightsdream,1595 forester,3,midsummersnightsdream,1595 fox,3,midsummersnightsdream,1595 Ever,3,midsummersnightsdream,1595 Theseus',3,midsummersnightsdream,1595 compare,3,midsummersnightsdream,1595 Make,3,midsummersnightsdream,1595 fall,3,midsummersnightsdream,1595 roses,3,midsummersnightsdream,1595 tragical,3,midsummersnightsdream,1595 fit,3,midsummersnightsdream,1595 perfect,3,midsummersnightsdream,1595 vow,3,midsummersnightsdream,1595 cherry,3,midsummersnightsdream,1595 madly,3,midsummersnightsdream,1595 bird,3,midsummersnightsdream,1595 fast,3,midsummersnightsdream,1595 hope,3,midsummersnightsdream,1595 Snout,3,midsummersnightsdream,1595 tall,3,midsummersnightsdream,1595 man's,3,midsummersnightsdream,1595 given,3,midsummersnightsdream,1595 Every,3,midsummersnightsdream,1595 thank,3,midsummersnightsdream,1595 melody,3,midsummersnightsdream,1595 hole,3,midsummersnightsdream,1595 master,3,midsummersnightsdream,1595 cut,3,midsummersnightsdream,1595 honest,3,midsummersnightsdream,1595 tire,3,midsummersnightsdream,1595 forsooth,3,midsummersnightsdream,1595 strong,3,midsummersnightsdream,1595 Where's,3,midsummersnightsdream,1595 lying,3,midsummersnightsdream,1595 blade,3,midsummersnightsdream,1595 weaver,3,midsummersnightsdream,1595 sees,3,midsummersnightsdream,1595 sweep,3,midsummersnightsdream,1595 Mine,3,midsummersnightsdream,1595 souls,3,midsummersnightsdream,1595 according,3,midsummersnightsdream,1595 sent,3,midsummersnightsdream,1595 cold,3,midsummersnightsdream,1595 eat,3,midsummersnightsdream,1595 Snug,3,midsummersnightsdream,1595 Another,3,midsummersnightsdream,1595 fled,3,midsummersnightsdream,1595 wound,3,midsummersnightsdream,1595 lark,3,midsummersnightsdream,1595 Sleep,3,midsummersnightsdream,1595 fright,3,midsummersnightsdream,1595 human,3,midsummersnightsdream,1595 sprite,3,midsummersnightsdream,1595 cross,3,midsummersnightsdream,1595 Lysander's,3,midsummersnightsdream,1595 solemnity,3,midsummersnightsdream,1595 lack,3,midsummersnightsdream,1595 shape,3,midsummersnightsdream,1595 e'er,3,midsummersnightsdream,1595 turn'd,3,midsummersnightsdream,1595 summer,3,midsummersnightsdream,1595 days,4,midsummersnightsdream,1595 double,4,midsummersnightsdream,1595 following,4,midsummersnightsdream,1595 help,4,midsummersnightsdream,1595 Flute,4,midsummersnightsdream,1595 truly,4,midsummersnightsdream,1595 single,4,midsummersnightsdream,1595 herb,4,midsummersnightsdream,1595 lies,4,midsummersnightsdream,1595 trust,4,midsummersnightsdream,1595 remain,4,midsummersnightsdream,1595 Would,4,midsummersnightsdream,1595 Upon,4,midsummersnightsdream,1595 sad,4,midsummersnightsdream,1595 jest,4,midsummersnightsdream,1595 sat,4,midsummersnightsdream,1595 saw,4,midsummersnightsdream,1595 words,4,midsummersnightsdream,1595 gracious,4,midsummersnightsdream,1595 town,4,midsummersnightsdream,1595 Methinks,4,midsummersnightsdream,1595 Cupid,4,midsummersnightsdream,1595 something,4,midsummersnightsdream,1595 derision,4,midsummersnightsdream,1595 sir,4,midsummersnightsdream,1595 better,4,midsummersnightsdream,1595 against,4,midsummersnightsdream,1595 sea,4,midsummersnightsdream,1595 Such,4,midsummersnightsdream,1595 mantle,4,midsummersnightsdream,1595 Was,4,midsummersnightsdream,1595 looks,4,midsummersnightsdream,1595 doubt,4,midsummersnightsdream,1595 wrong,4,midsummersnightsdream,1595 brier,4,midsummersnightsdream,1595 daughter,4,midsummersnightsdream,1595 after,4,midsummersnightsdream,1595 white,4,midsummersnightsdream,1595 promise,4,midsummersnightsdream,1595 whisper,4,midsummersnightsdream,1595 false,4,midsummersnightsdream,1595 seems,4,midsummersnightsdream,1595 hated,4,midsummersnightsdream,1595 sense,4,midsummersnightsdream,1595 friend,4,midsummersnightsdream,1595 mean,4,midsummersnightsdream,1595 brake,4,midsummersnightsdream,1595 bright,4,midsummersnightsdream,1595 bitter,4,midsummersnightsdream,1595 chamber,4,midsummersnightsdream,1595 Stand,4,midsummersnightsdream,1595 force,4,midsummersnightsdream,1595 Her,4,midsummersnightsdream,1595 Go,4,midsummersnightsdream,1595 bid,4,midsummersnightsdream,1595 past,4,midsummersnightsdream,1595 temple,4,midsummersnightsdream,1595 thorn,4,midsummersnightsdream,1595 dove,4,midsummersnightsdream,1595 weak,4,midsummersnightsdream,1595 Speak,4,midsummersnightsdream,1595 put,4,midsummersnightsdream,1595 buds,4,midsummersnightsdream,1595 serpent,4,midsummersnightsdream,1595 'tis,4,midsummersnightsdream,1595 been,4,midsummersnightsdream,1595 Masters,4,midsummersnightsdream,1595 said,4,midsummersnightsdream,1595 Methought,4,midsummersnightsdream,1595 sixpence,4,midsummersnightsdream,1595 needs,4,midsummersnightsdream,1595 approach,4,midsummersnightsdream,1595 done,4,midsummersnightsdream,1595 small,4,midsummersnightsdream,1595 Reads,4,midsummersnightsdream,1595 Yet,4,midsummersnightsdream,1595 ho,4,midsummersnightsdream,1595 lose,4,midsummersnightsdream,1595 valour,4,midsummersnightsdream,1595 discourse,4,midsummersnightsdream,1595 field,4,midsummersnightsdream,1595 round,4,midsummersnightsdream,1595 delight,4,midsummersnightsdream,1595 fiery,4,midsummersnightsdream,1595 fond,4,midsummersnightsdream,1595 fresh,4,midsummersnightsdream,1595 maiden,4,midsummersnightsdream,1595 purple,4,midsummersnightsdream,1595 change,4,midsummersnightsdream,1595 honey,4,midsummersnightsdream,1595 note,4,midsummersnightsdream,1595 remedy,4,midsummersnightsdream,1595 tender,4,midsummersnightsdream,1595 hide,4,midsummersnightsdream,1595 wandering,4,midsummersnightsdream,1595 written,4,midsummersnightsdream,1595 charm,4,midsummersnightsdream,1595 high,4,midsummersnightsdream,1595 mortal,4,midsummersnightsdream,1595 myself,4,midsummersnightsdream,1595 bosoms,4,midsummersnightsdream,1595 mind,4,midsummersnightsdream,1595 They,4,midsummersnightsdream,1595 Made,4,midsummersnightsdream,1595 wit,4,midsummersnightsdream,1595 says,4,midsummersnightsdream,1595 ripe,4,midsummersnightsdream,1595 believe,4,midsummersnightsdream,1595 actors,4,midsummersnightsdream,1595 between,4,midsummersnightsdream,1595 trusty,4,midsummersnightsdream,1595 perforce,4,midsummersnightsdream,1595 found,4,midsummersnightsdream,1595 wont,4,midsummersnightsdream,1595 coming,4,midsummersnightsdream,1595 lullaby,4,midsummersnightsdream,1595 Cupid's,4,midsummersnightsdream,1595 Hail,4,midsummersnightsdream,1595 consent,4,midsummersnightsdream,1595 minds,4,midsummersnightsdream,1595 please,4,midsummersnightsdream,1595 work,4,midsummersnightsdream,1595 even,4,midsummersnightsdream,1595 Sweet,4,midsummersnightsdream,1595 passion,4,midsummersnightsdream,1595 rich,4,midsummersnightsdream,1595 joiner,4,midsummersnightsdream,1595 perceive,4,midsummersnightsdream,1595 kiss,4,midsummersnightsdream,1595 cue,4,midsummersnightsdream,1595 holds,4,midsummersnightsdream,1595 home,4,midsummersnightsdream,1595 yellow,4,midsummersnightsdream,1595 adieu,4,midsummersnightsdream,1595 use,4,midsummersnightsdream,1595 either,4,midsummersnightsdream,1595 presence,4,midsummersnightsdream,1595 elves,4,midsummersnightsdream,1595 whom,4,midsummersnightsdream,1595 cry,4,midsummersnightsdream,1595 eyne,4,midsummersnightsdream,1595 goes,4,midsummersnightsdream,1595 Two,4,midsummersnightsdream,1595 spirits,4,midsummersnightsdream,1595 met,4,midsummersnightsdream,1595 makes,4,midsummersnightsdream,1595 Since,4,midsummersnightsdream,1595 Mounsieur,4,midsummersnightsdream,1595 follow'd,4,midsummersnightsdream,1595 respect,4,midsummersnightsdream,1595 Did,4,midsummersnightsdream,1595 without,4,midsummersnightsdream,1595 Fair,4,midsummersnightsdream,1595 answer,5,midsummersnightsdream,1595 mistress,5,midsummersnightsdream,1595 horse,5,midsummersnightsdream,1595 thought,5,midsummersnightsdream,1595 rather,5,midsummersnightsdream,1595 hell,5,midsummersnightsdream,1595 appear,5,midsummersnightsdream,1595 sort,5,midsummersnightsdream,1595 song,5,midsummersnightsdream,1595 draw,5,midsummersnightsdream,1595 grove,5,midsummersnightsdream,1595 Peaseblossom,5,midsummersnightsdream,1595 revels,5,midsummersnightsdream,1595 blessed,5,midsummersnightsdream,1595 Who,5,midsummersnightsdream,1595 black,5,midsummersnightsdream,1595 further,5,midsummersnightsdream,1595 wake,5,midsummersnightsdream,1595 turn,5,midsummersnightsdream,1595 Our,5,midsummersnightsdream,1595 wakest,5,midsummersnightsdream,1595 brief,5,midsummersnightsdream,1595 wind,5,midsummersnightsdream,1595 lion's,5,midsummersnightsdream,1595 mirth,5,midsummersnightsdream,1595 One,5,midsummersnightsdream,1595 side,5,midsummersnightsdream,1595 patience,5,midsummersnightsdream,1595 bow,5,midsummersnightsdream,1595 On,5,midsummersnightsdream,1595 flowers,5,midsummersnightsdream,1595 beg,5,midsummersnightsdream,1595 prove,5,midsummersnightsdream,1595 Good,5,midsummersnightsdream,1595 behind,5,midsummersnightsdream,1595 dote,5,midsummersnightsdream,1595 dost,5,midsummersnightsdream,1595 Lies,5,midsummersnightsdream,1595 tedious,5,midsummersnightsdream,1595 vows,5,midsummersnightsdream,1595 Like,5,midsummersnightsdream,1595 God,5,midsummersnightsdream,1595 Master,5,midsummersnightsdream,1595 Puck,5,midsummersnightsdream,1595 Ready,5,midsummersnightsdream,1595 those,5,midsummersnightsdream,1595 loved,5,midsummersnightsdream,1595 hang,5,midsummersnightsdream,1595 Moon,5,midsummersnightsdream,1595 rough,5,midsummersnightsdream,1595 Than,5,midsummersnightsdream,1595 far,5,midsummersnightsdream,1595 often,5,midsummersnightsdream,1595 Prologue,5,midsummersnightsdream,1595 rose,5,midsummersnightsdream,1595 silence,5,midsummersnightsdream,1595 faith,5,midsummersnightsdream,1595 strike,5,midsummersnightsdream,1595 chink,5,midsummersnightsdream,1595 many,5,midsummersnightsdream,1595 mark,5,midsummersnightsdream,1595 woo,5,midsummersnightsdream,1595 only,5,midsummersnightsdream,1595 Thus,5,midsummersnightsdream,1595 duty,5,midsummersnightsdream,1595 nuptial,5,midsummersnightsdream,1595 oath,5,midsummersnightsdream,1595 themselves,5,midsummersnightsdream,1595 happy,5,midsummersnightsdream,1595 marry,5,midsummersnightsdream,1595 modesty,5,midsummersnightsdream,1595 methinks,5,midsummersnightsdream,1595 palace,5,midsummersnightsdream,1595 rehearse,5,midsummersnightsdream,1595 Awaking,5,midsummersnightsdream,1595 wild,5,midsummersnightsdream,1595 hearts,5,midsummersnightsdream,1595 low,5,midsummersnightsdream,1595 seem,5,midsummersnightsdream,1595 troth,5,midsummersnightsdream,1595 hounds,5,midsummersnightsdream,1595 look'd,5,midsummersnightsdream,1595 courtesy,5,midsummersnightsdream,1595 MOTH,5,midsummersnightsdream,1595 entreat,5,midsummersnightsdream,1595 lie,5,midsummersnightsdream,1595 imagination,5,midsummersnightsdream,1595 spite,5,midsummersnightsdream,1595 lips,5,midsummersnightsdream,1595 live,5,midsummersnightsdream,1595 strange,5,midsummersnightsdream,1595 dog,5,midsummersnightsdream,1595 land,5,midsummersnightsdream,1595 catch,5,midsummersnightsdream,1595 certain,5,midsummersnightsdream,1595 shine,5,midsummersnightsdream,1595 king,5,midsummersnightsdream,1595 kind,5,midsummersnightsdream,1595 woman,5,midsummersnightsdream,1595 told,6,midsummersnightsdream,1595 tomb,6,midsummersnightsdream,1595 Nay,6,midsummersnightsdream,1595 Never,6,midsummersnightsdream,1595 sleeps,6,midsummersnightsdream,1595 world,6,midsummersnightsdream,1595 dance,6,midsummersnightsdream,1595 another,6,midsummersnightsdream,1595 full,6,midsummersnightsdream,1595 fell,6,midsummersnightsdream,1595 love's,6,midsummersnightsdream,1595 Out,6,midsummersnightsdream,1595 about,6,midsummersnightsdream,1595 grow,6,midsummersnightsdream,1595 sword,6,midsummersnightsdream,1595 heaven,6,midsummersnightsdream,1595 Thisby's,6,midsummersnightsdream,1595 Fairy,6,midsummersnightsdream,1595 each,6,midsummersnightsdream,1595 At,6,midsummersnightsdream,1595 His,6,midsummersnightsdream,1595 II,6,midsummersnightsdream,1595 bless,6,midsummersnightsdream,1595 whose,6,midsummersnightsdream,1595 breath,6,midsummersnightsdream,1595 left,6,midsummersnightsdream,1595 earth,6,midsummersnightsdream,1595 noble,6,midsummersnightsdream,1595 Fairies,6,midsummersnightsdream,1595 Because,6,midsummersnightsdream,1595 harm,6,midsummersnightsdream,1595 choice,6,midsummersnightsdream,1595 Cobweb,6,midsummersnightsdream,1595 pale,6,midsummersnightsdream,1595 More,6,midsummersnightsdream,1595 present,6,midsummersnightsdream,1595 ass,6,midsummersnightsdream,1595 Are,6,midsummersnightsdream,1595 new,6,midsummersnightsdream,1595 maid,6,midsummersnightsdream,1595 She,6,midsummersnightsdream,1595 Some,6,midsummersnightsdream,1595 end,6,midsummersnightsdream,1595 over,6,midsummersnightsdream,1595 Mustardseed,6,midsummersnightsdream,1595 fire,6,midsummersnightsdream,1595 who,6,midsummersnightsdream,1595 get,6,midsummersnightsdream,1595 thine,6,midsummersnightsdream,1595 sake,6,midsummersnightsdream,1595 stand,6,midsummersnightsdream,1595 why,6,midsummersnightsdream,1595 juice,6,midsummersnightsdream,1595 moonlight,6,midsummersnightsdream,1595 hair,6,midsummersnightsdream,1595 mounsieur,6,midsummersnightsdream,1595 prologue,6,midsummersnightsdream,1595 old,6,midsummersnightsdream,1595 fly,6,midsummersnightsdream,1595 hour,6,midsummersnightsdream,1595 gentleman,6,midsummersnightsdream,1595 law,6,midsummersnightsdream,1595 wilt,6,midsummersnightsdream,1595 alone,6,midsummersnightsdream,1595 swear,6,midsummersnightsdream,1595 seen,6,midsummersnightsdream,1595 seek,6,midsummersnightsdream,1595 discretion,6,midsummersnightsdream,1595 sound,6,midsummersnightsdream,1595 hither,6,midsummersnightsdream,1595 together,6,midsummersnightsdream,1595 first,6,midsummersnightsdream,1595 May,6,midsummersnightsdream,1595 Take,6,midsummersnightsdream,1595 dew,6,midsummersnightsdream,1595 awake,6,midsummersnightsdream,1595 spirit,6,midsummersnightsdream,1595 Egeus,6,midsummersnightsdream,1595 Will,7,midsummersnightsdream,1595 joy,7,midsummersnightsdream,1595 soul,7,midsummersnightsdream,1595 PEASEBLOSSOM,7,midsummersnightsdream,1595 set,7,midsummersnightsdream,1595 These,7,midsummersnightsdream,1595 hence,7,midsummersnightsdream,1595 An,7,midsummersnightsdream,1595 Is,7,midsummersnightsdream,1595 SNUG,7,midsummersnightsdream,1595 sing,7,midsummersnightsdream,1595 hands,7,midsummersnightsdream,1595 keep,7,midsummersnightsdream,1595 lanthorn,7,midsummersnightsdream,1595 Helen,7,midsummersnightsdream,1595 right,7,midsummersnightsdream,1595 lead,7,midsummersnightsdream,1595 Have,7,midsummersnightsdream,1595 wonder,7,midsummersnightsdream,1595 none,7,midsummersnightsdream,1595 into,7,midsummersnightsdream,1595 beard,7,midsummersnightsdream,1595 Love,7,midsummersnightsdream,1595 young,7,midsummersnightsdream,1595 Therefore,7,midsummersnightsdream,1595 youth,7,midsummersnightsdream,1595 All,7,midsummersnightsdream,1595 father's,7,midsummersnightsdream,1595 break,7,midsummersnightsdream,1595 next,7,midsummersnightsdream,1595 Shall,7,midsummersnightsdream,1595 ground,7,midsummersnightsdream,1595 reason,7,midsummersnightsdream,1595 hold,7,midsummersnightsdream,1595 lovely,7,midsummersnightsdream,1595 fairies,7,midsummersnightsdream,1595 Hippolyta,7,midsummersnightsdream,1595 father,7,midsummersnightsdream,1595 Thy,7,midsummersnightsdream,1595 asleep,7,midsummersnightsdream,1595 flower,7,midsummersnightsdream,1595 shalt,7,midsummersnightsdream,1595 might,7,midsummersnightsdream,1595 COBWEB,7,midsummersnightsdream,1595 Hermia's,7,midsummersnightsdream,1595 himself,7,midsummersnightsdream,1595 pity,8,midsummersnightsdream,1595 roar,8,midsummersnightsdream,1595 tears,8,midsummersnightsdream,1595 run,8,midsummersnightsdream,1595 truth,8,midsummersnightsdream,1595 Nor,8,midsummersnightsdream,1595 scorn,8,midsummersnightsdream,1595 vile,8,midsummersnightsdream,1595 MUSTARDSEED,8,midsummersnightsdream,1595 bring,8,midsummersnightsdream,1595 Do,8,midsummersnightsdream,1595 music,8,midsummersnightsdream,1595 Be,8,midsummersnightsdream,1595 blood,8,midsummersnightsdream,1595 bush,8,midsummersnightsdream,1595 any,8,midsummersnightsdream,1595 sometime,8,midsummersnightsdream,1595 train,8,midsummersnightsdream,1595 lover,8,midsummersnightsdream,1595 hate,8,midsummersnightsdream,1595 show,8,midsummersnightsdream,1595 Robin,8,midsummersnightsdream,1595 Your,8,midsummersnightsdream,1595 Peter,8,midsummersnightsdream,1595 before,8,midsummersnightsdream,1595 still,8,midsummersnightsdream,1595 off,8,midsummersnightsdream,1595 morrow,8,midsummersnightsdream,1595 Quince,8,midsummersnightsdream,1595 stolen,8,midsummersnightsdream,1595 great,8,midsummersnightsdream,1595 Oberon,8,midsummersnightsdream,1595 ear,8,midsummersnightsdream,1595 being,8,midsummersnightsdream,1595 sleeping,8,midsummersnightsdream,1595 STARVELING,9,midsummersnightsdream,1595 friends,9,midsummersnightsdream,1595 call,9,midsummersnightsdream,1595 came,9,midsummersnightsdream,1595 enough,9,midsummersnightsdream,1595 light,9,midsummersnightsdream,1595 desire,9,midsummersnightsdream,1595 else,9,midsummersnightsdream,1595 boy,9,midsummersnightsdream,1595 Titania,9,midsummersnightsdream,1595 Theseus,9,midsummersnightsdream,1595 loves,9,midsummersnightsdream,1595 hand,9,midsummersnightsdream,1595 forth,9,midsummersnightsdream,1595 little,9,midsummersnightsdream,1595 though,9,midsummersnightsdream,1595 ACT,9,midsummersnightsdream,1595 From,9,midsummersnightsdream,1595 once,9,midsummersnightsdream,1595 Well,9,midsummersnightsdream,1595 way,9,midsummersnightsdream,1595 own,9,midsummersnightsdream,1595 face,9,midsummersnightsdream,1595 three,9,midsummersnightsdream,1595 company,9,midsummersnightsdream,1595 word,9,midsummersnightsdream,1595 green,9,midsummersnightsdream,1595 unto,9,midsummersnightsdream,1595 Through,9,midsummersnightsdream,1595 poor,9,midsummersnightsdream,1595 ladies,9,midsummersnightsdream,1595 power,9,midsummersnightsdream,1595 sight,10,midsummersnightsdream,1595 Not,10,midsummersnightsdream,1595 within,10,midsummersnightsdream,1595 both,10,midsummersnightsdream,1595 voice,10,midsummersnightsdream,1595 Ay,10,midsummersnightsdream,1595 best,10,midsummersnightsdream,1595 long,10,midsummersnightsdream,1595 made,10,midsummersnightsdream,1595 child,10,midsummersnightsdream,1595 DREAM,10,midsummersnightsdream,1595 same,10,midsummersnightsdream,1595 heard,10,midsummersnightsdream,1595 MIDSUMMER,10,midsummersnightsdream,1595 Let,10,midsummersnightsdream,1595 back,10,midsummersnightsdream,1595 NIGHT'S,10,midsummersnightsdream,1595 Bottom,10,midsummersnightsdream,1595 SCENE,10,midsummersnightsdream,1595 kill,10,midsummersnightsdream,1595 lady,10,midsummersnightsdream,1595 o'er,11,midsummersnightsdream,1595 much,11,midsummersnightsdream,1595 Wall,11,midsummersnightsdream,1595 There,11,midsummersnightsdream,1595 stay,11,midsummersnightsdream,1595 sport,11,midsummersnightsdream,1595 tongue,11,midsummersnightsdream,1595 bear,11,midsummersnightsdream,1595 grace,11,midsummersnightsdream,1595 ere,11,midsummersnightsdream,1595 very,11,midsummersnightsdream,1595 could,11,midsummersnightsdream,1595 near,11,midsummersnightsdream,1595 thing,11,midsummersnightsdream,1595 EGEUS,11,midsummersnightsdream,1595 duke,11,midsummersnightsdream,1595 find,11,midsummersnightsdream,1595 time,11,midsummersnightsdream,1595 till,11,midsummersnightsdream,1595 house,11,midsummersnightsdream,1595 other,11,midsummersnightsdream,1595 pray,12,midsummersnightsdream,1595 head,12,midsummersnightsdream,1595 nothing,12,midsummersnightsdream,1595 Moonshine,12,midsummersnightsdream,1595 therefore,12,midsummersnightsdream,1595 He,12,midsummersnightsdream,1595 We,12,midsummersnightsdream,1595 Lion,12,midsummersnightsdream,1595 dead,12,midsummersnightsdream,1595 place,12,midsummersnightsdream,1595 where,12,midsummersnightsdream,1595 PHILOSTRATE,12,midsummersnightsdream,1595 nor,12,midsummersnightsdream,1595 ever,12,midsummersnightsdream,1595 lovers,12,midsummersnightsdream,1595 men,12,midsummersnightsdream,1595 cannot,12,midsummersnightsdream,1595 die,12,midsummersnightsdream,1595 rest,13,midsummersnightsdream,1595 name,13,midsummersnightsdream,1595 dream,13,midsummersnightsdream,1595 think,13,midsummersnightsdream,1595 SNOUT,14,midsummersnightsdream,1595 life,14,midsummersnightsdream,1595 death,14,midsummersnightsdream,1595 tell,14,midsummersnightsdream,1595 Re,14,midsummersnightsdream,1595 hast,14,midsummersnightsdream,1595 things,14,midsummersnightsdream,1595 again,14,midsummersnightsdream,1595 queen,14,midsummersnightsdream,1595 Athenian,14,midsummersnightsdream,1595 follow,14,midsummersnightsdream,1595 Here,15,midsummersnightsdream,1595 FLUTE,15,midsummersnightsdream,1595 bed,15,midsummersnightsdream,1595 Which,15,midsummersnightsdream,1595 dear,15,midsummersnightsdream,1595 gentle,15,midsummersnightsdream,1595 were,15,midsummersnightsdream,1595 leave,15,midsummersnightsdream,1595 two,15,midsummersnightsdream,1595 Where,15,midsummersnightsdream,1595 ',16,midsummersnightsdream,1595 meet,16,midsummersnightsdream,1595 every,16,midsummersnightsdream,1595 Why,16,midsummersnightsdream,1595 fear,16,midsummersnightsdream,1595 By,16,midsummersnightsdream,1595 It,16,midsummersnightsdream,1595 gone,16,midsummersnightsdream,1595 how,16,midsummersnightsdream,1595 part,16,midsummersnightsdream,1595 art,16,midsummersnightsdream,1595 Then,16,midsummersnightsdream,1595 thus,16,midsummersnightsdream,1595 sleep,16,midsummersnightsdream,1595 Of,17,midsummersnightsdream,1595 enter,17,midsummersnightsdream,1595 down,17,midsummersnightsdream,1595 Exeunt,17,midsummersnightsdream,1595 Or,17,midsummersnightsdream,1595 give,17,midsummersnightsdream,1595 comes,17,midsummersnightsdream,1595 most,18,midsummersnightsdream,1595 Thou,18,midsummersnightsdream,1595 take,18,midsummersnightsdream,1595 lion,18,midsummersnightsdream,1595 had,19,midsummersnightsdream,1595 through,19,midsummersnightsdream,1595 HIPPOLYTA,19,midsummersnightsdream,1595 too,19,midsummersnightsdream,1595 Come,20,midsummersnightsdream,1595 hear,20,midsummersnightsdream,1595 wall,20,midsummersnightsdream,1595 such,20,midsummersnightsdream,1595 How,20,midsummersnightsdream,1595 mine,20,midsummersnightsdream,1595 away,21,midsummersnightsdream,1595 As,21,midsummersnightsdream,1595 Thisbe,21,midsummersnightsdream,1595 No,21,midsummersnightsdream,1595 eye,21,midsummersnightsdream,1595 heart,21,midsummersnightsdream,1595 like,22,midsummersnightsdream,1595 yet,22,midsummersnightsdream,1595 fairy,22,midsummersnightsdream,1595 well,22,midsummersnightsdream,1595 out,22,midsummersnightsdream,1595 which,23,midsummersnightsdream,1595 Thisby,23,midsummersnightsdream,1595 know,23,midsummersnightsdream,1595 speak,23,midsummersnightsdream,1595 day,23,midsummersnightsdream,1595 Now,24,midsummersnightsdream,1595 these,24,midsummersnightsdream,1595 My,24,midsummersnightsdream,1595 look,24,midsummersnightsdream,1595 moon,24,midsummersnightsdream,1595 us,24,midsummersnightsdream,1595 Helena,24,midsummersnightsdream,1595 wood,24,midsummersnightsdream,1595 to,280,midsummersnightsdream,1595 upon,25,midsummersnightsdream,1595 say,25,midsummersnightsdream,1595 may,25,midsummersnightsdream,1595 true,25,midsummersnightsdream,1595 Athens,26,midsummersnightsdream,1595 there,26,midsummersnightsdream,1595 If,26,midsummersnightsdream,1595 was,26,midsummersnightsdream,1595 let,26,midsummersnightsdream,1595 them,27,midsummersnightsdream,1595 In,27,midsummersnightsdream,1595 lord,27,midsummersnightsdream,1595 up,27,midsummersnightsdream,1595 I'll,27,midsummersnightsdream,1595 With,28,midsummersnightsdream,1595 than,28,midsummersnightsdream,1595 an,28,midsummersnightsdream,1595 fair,28,midsummersnightsdream,1595 never,29,midsummersnightsdream,1595 doth,29,midsummersnightsdream,1595 When,29,midsummersnightsdream,1595 they,30,midsummersnightsdream,1595 So,30,midsummersnightsdream,1595 some,31,midsummersnightsdream,1595 then,31,midsummersnightsdream,1595 can,31,midsummersnightsdream,1595 when,31,midsummersnightsdream,1595 Exit,31,midsummersnightsdream,1595 What,31,midsummersnightsdream,1595 go,32,midsummersnightsdream,1595 TITANIA,32,midsummersnightsdream,1595 at,33,midsummersnightsdream,1595 This,33,midsummersnightsdream,1595 did,33,midsummersnightsdream,1595 play,34,midsummersnightsdream,1595 should,34,midsummersnightsdream,1595 hath,34,midsummersnightsdream,1595 make,34,midsummersnightsdream,1595 For,35,midsummersnightsdream,1595 You,35,midsummersnightsdream,1595 OBERON,36,midsummersnightsdream,1595 Enter,36,midsummersnightsdream,1595 would,36,midsummersnightsdream,1595 see,37,midsummersnightsdream,1595 good,37,midsummersnightsdream,1595 A,38,midsummersnightsdream,1595 Hermia,38,midsummersnightsdream,1595 Demetrius,38,midsummersnightsdream,1595 Lysander,38,midsummersnightsdream,1595 one,38,midsummersnightsdream,1595 if,39,midsummersnightsdream,1595 come,39,midsummersnightsdream,1595 eyes,40,midsummersnightsdream,1595 what,41,midsummersnightsdream,1595 must,42,midsummersnightsdream,1595 now,42,midsummersnightsdream,1595 more,44,midsummersnightsdream,1595 PUCK,44,midsummersnightsdream,1595 sweet,44,midsummersnightsdream,1595 QUINCE,45,midsummersnightsdream,1595 HELENA,45,midsummersnightsdream,1595 night,46,midsummersnightsdream,1595 or,46,midsummersnightsdream,1595 That,46,midsummersnightsdream,1595 man,47,midsummersnightsdream,1595 their,50,midsummersnightsdream,1595 from,50,midsummersnightsdream,1595 him,51,midsummersnightsdream,1595 here,52,midsummersnightsdream,1595 by,53,midsummersnightsdream,1595 our,54,midsummersnightsdream,1595 am,55,midsummersnightsdream,1595 THESEUS,55,midsummersnightsdream,1595 she,56,midsummersnightsdream,1595 BOTTOM,56,midsummersnightsdream,1595 Pyramus,56,midsummersnightsdream,1595 HERMIA,58,midsummersnightsdream,1595 thy,58,midsummersnightsdream,1595 DEMETRIUS,60,midsummersnightsdream,1595 but,60,midsummersnightsdream,1595 O,61,midsummersnightsdream,1595 To,61,midsummersnightsdream,1595 are,61,midsummersnightsdream,1595 But,61,midsummersnightsdream,1595 LYSANDER,62,midsummersnightsdream,1595 thee,64,midsummersnightsdream,1595 we,64,midsummersnightsdream,1595 no,65,midsummersnightsdream,1595 shall,65,midsummersnightsdream,1595 on,66,midsummersnightsdream,1595 The,77,midsummersnightsdream,1595 he,78,midsummersnightsdream,1595 all,82,midsummersnightsdream,1595 his,83,midsummersnightsdream,1595 so,85,midsummersnightsdream,1595 have,92,midsummersnightsdream,1595 her,95,midsummersnightsdream,1595 as,96,midsummersnightsdream,1595 thou,98,midsummersnightsdream,1595 be,98,midsummersnightsdream,1595 do,99,midsummersnightsdream,1595 love,102,midsummersnightsdream,1595 for,109,midsummersnightsdream,1595 will,111,midsummersnightsdream,1595 this,115,midsummersnightsdream,1595 your,115,midsummersnightsdream,1595 it,118,midsummersnightsdream,1595 and,379,midsummersnightsdream,1595 that,140,midsummersnightsdream,1595 with,150,midsummersnightsdream,1595 not,160,midsummersnightsdream,1595 my,177,midsummersnightsdream,1595 me,179,midsummersnightsdream,1595 I,440,midsummersnightsdream,1595 is,185,midsummersnightsdream,1595 And,197,midsummersnightsdream,1595 in,216,midsummersnightsdream,1595 the,486,midsummersnightsdream,1595 you,240,midsummersnightsdream,1595 a,242,midsummersnightsdream,1595 of,255,midsummersnightsdream,1595 ================================================ FILE: spark-bigquery-connector-common/src/test/resources/integration/shakespeare.json ================================================ [File too large to display: 12.7 MB] ================================================ FILE: spark-bigquery-connector-common/src/test/resources/log4j.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 # # 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. # # Set everything to be logged to the console # Set Default log level to WARN log4j.rootCategory=WARN, console log4j.appender.console=org.apache.log4j.ConsoleAppender log4j.appender.console.target=System.err log4j.appender.console.layout=org.apache.log4j.PatternLayout log4j.appender.console.layout.ConversionPattern=%d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n # Set connector code to INFO log4j.logger.com.google.cloud.bigquery=INFO ================================================ FILE: spark-bigquery-connector-common/src/test/resources/spark-bigquery-connector.properties ================================================ # needed for the tests connector.version=test ================================================ FILE: spark-bigquery-connector-common/third_party/apache-spark/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. ------------------------------------------------------------------------------------ This product bundles various third-party components under other open source licenses. This section summarizes those components and their licenses. See licenses/ for text of these licenses. Apache Software Foundation License 2.0 -------------------------------------- common/network-common/src/main/java/org/apache/spark/network/util/LimitedInputStream.java core/src/main/java/org/apache/spark/util/collection/TimSort.java core/src/main/resources/org/apache/spark/ui/static/bootstrap* core/src/main/resources/org/apache/spark/ui/static/jsonFormatter* core/src/main/resources/org/apache/spark/ui/static/vis* docs/js/vendor/bootstrap.js external/spark-ganglia-lgpl/src/main/java/com/codahale/metrics/ganglia/GangliaReporter.java Python Software Foundation License ---------------------------------- pyspark/heapq3.py python/docs/_static/copybutton.js BSD 3-Clause ------------ python/lib/py4j-*-src.zip python/pyspark/cloudpickle.py python/pyspark/join.py core/src/main/resources/org/apache/spark/ui/static/d3.min.js The CSS style for the navigation sidebar of the documentation was originally submitted by Óscar Nájera for the scikit-learn project. The scikit-learn project is distributed under the 3-Clause BSD license. MIT License ----------- core/src/main/resources/org/apache/spark/ui/static/dagre-d3.min.js core/src/main/resources/org/apache/spark/ui/static/*dataTables* core/src/main/resources/org/apache/spark/ui/static/graphlib-dot.min.js core/src/main/resources/org/apache/spark/ui/static/jquery* core/src/main/resources/org/apache/spark/ui/static/sorttable.js docs/js/vendor/anchor.min.js docs/js/vendor/jquery* docs/js/vendor/modernizer* Creative Commons CC0 1.0 Universal Public Domain Dedication ----------------------------------------------------------- (see LICENSE-CC0.txt) data/mllib/images/kittens/29.5.a_b_EGDP022204.jpg data/mllib/images/kittens/54893.jpg data/mllib/images/kittens/DP153539.jpg data/mllib/images/kittens/DP802813.jpg data/mllib/images/multi-channel/chr30.4.184.jpg ================================================ FILE: spark-bigquery-connector-common/third_party/apache-spark/NOTICE ================================================ Apache Spark Copyright 2014 and onwards The Apache Software Foundation. This product includes software developed at The Apache Software Foundation (http://www.apache.org/). Export Control Notice --------------------- This distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See for more information. The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this Apache Software Foundation distribution makes it eligible for export under the License Exception ENC Technology Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for both object code and source code. The following provides more details on the included cryptographic software: This software uses Apache Commons Crypto (https://commons.apache.org/proper/commons-crypto/) to support authentication, and encryption and decryption of data sent across the network between services. Metrics Copyright 2010-2013 Coda Hale and Yammer, Inc. This product includes software developed by Coda Hale and Yammer, Inc. This product includes code derived from the JSR-166 project (ThreadLocalRandom, Striped64, LongAdder), which was released with the following comments: Written by Doug Lea with assistance from members of JCP JSR-166 Expert Group and released to the public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/s ================================================ FILE: spark-bigquery-connector-common/third_party/apache-spark/src/main/java/com/google/cloud/spark/bigquery/ArrowSchemaConverter.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import java.lang.reflect.Method; import java.math.BigDecimal; import java.util.Arrays; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.stream.Collectors; import org.apache.arrow.memory.ArrowBuf; import java.time.LocalDateTime; import java.time.ZoneOffset; import org.apache.arrow.vector.*; import org.apache.arrow.vector.complex.*; import org.apache.arrow.vector.types.pojo.ArrowType; import org.apache.arrow.vector.types.pojo.ArrowType.ArrowTypeID; import org.apache.spark.sql.internal.SQLConf; import org.apache.spark.sql.types.*; import org.apache.spark.sql.vectorized.ColumnVector; import org.apache.spark.sql.vectorized.ColumnarArray; import org.apache.spark.sql.vectorized.ColumnarMap; import org.apache.spark.unsafe.types.UTF8String; import org.apache.arrow.vector.types.pojo.Field; /** * ArrowSchemaConverter class for accessing values and converting * arrow data types to the types supported by big query. */ public abstract class ArrowSchemaConverter extends ColumnVector { public abstract ValueVector vector(); @Override public boolean hasNull() { return vector().getNullCount() > 0; } @Override public int numNulls() { return vector().getNullCount(); } @Override public void close() { vector().close(); } @Override public boolean getBoolean(int rowId) { throw new UnsupportedOperationException(); } @Override public byte getByte(int rowId) { throw new UnsupportedOperationException(); } @Override public short getShort(int rowId) { throw new UnsupportedOperationException(); } @Override public int getInt(int rowId) { throw new UnsupportedOperationException(); } @Override public long getLong(int rowId) { throw new UnsupportedOperationException(); } @Override public float getFloat(int rowId) { throw new UnsupportedOperationException(); } @Override public double getDouble(int rowId) { throw new UnsupportedOperationException(); } @Override public Decimal getDecimal(int rowId, int precision, int scale) { throw new UnsupportedOperationException(); } @Override public UTF8String getUTF8String(int rowId) { throw new UnsupportedOperationException(); } @Override public byte[] getBinary(int rowId) { throw new UnsupportedOperationException(); } @Override public ColumnarArray getArray(int rowId) { throw new UnsupportedOperationException(); } @Override public ColumnarMap getMap(int rowId) { throw new UnsupportedOperationException(); } @Override public ColumnVector getChild(int ordinal) { throw new UnsupportedOperationException(); } private static DataType fromArrowType(ArrowType arrowType) { switch (arrowType.getTypeID()) { case Int: return DataTypes.LongType; case Bool: return DataTypes.BooleanType; case FloatingPoint: return DataTypes.DoubleType; case Binary: return DataTypes.BinaryType; case Utf8: return DataTypes.StringType; case Date: return DataTypes.DateType; case Time: case Timestamp: return DataTypes.TimestampType; case Decimal: return DataTypes.createDecimalType(); } throw new UnsupportedOperationException("Unsupported data type " + arrowType.toString()); } private static DataType fromArrowField(Field field) { if (field.getType().getTypeID() == ArrowTypeID.List) { Field elementField = field.getChildren().get(0); DataType elementType = fromArrowField(elementField); return new ArrayType(elementType, elementField.isNullable()); } if (field.getType().getTypeID() == ArrowTypeID.Struct) { java.util.List fieldChildren = field.getChildren(); StructField[] structFields = new StructField[fieldChildren.size()]; int ind = 0; for (Field childField : field.getChildren()) { DataType childType = fromArrowField(childField); structFields[ind++] = new StructField(childField.getName(), childType, childField.isNullable(), Metadata.empty()); } return new StructType(structFields); } return fromArrowType(field.getType()); } ArrowSchemaConverter(ValueVector vector) { super(fromArrowField(vector.getField())); } public static ArrowSchemaConverter newArrowSchemaConverter(ValueVector vector, StructField userProvidedField) { if (vector instanceof BitVector) { return new ArrowSchemaConverter.BooleanAccessor((BitVector) vector); } else if (vector instanceof BigIntVector) { return new ArrowSchemaConverter.LongAccessor((BigIntVector) vector); } else if (vector instanceof Float8Vector) { return new ArrowSchemaConverter.DoubleAccessor((Float8Vector) vector); } else if (vector instanceof DecimalVector) { return new ArrowSchemaConverter.DecimalAccessor((DecimalVector) vector); } else if (vector instanceof Decimal256Vector) { return new ArrowSchemaConverter.Decimal256Accessor((Decimal256Vector) vector); } else if (vector instanceof VarCharVector) { return new ArrowSchemaConverter.StringAccessor((VarCharVector) vector); } else if (vector instanceof VarBinaryVector) { return new ArrowSchemaConverter.BinaryAccessor((VarBinaryVector) vector); } else if (vector instanceof DateDayVector) { return new ArrowSchemaConverter.DateAccessor((DateDayVector) vector); } else if (vector instanceof TimeMicroVector) { return new ArrowSchemaConverter.TimeMicroVectorAccessor((TimeMicroVector) vector); } else if (vector instanceof TimeStampMicroVector) { return new ArrowSchemaConverter.TimestampMicroVectorAccessor((TimeStampMicroVector) vector); } else if (vector instanceof TimeStampMicroTZVector) { return new ArrowSchemaConverter.TimestampMicroTZVectorAccessor((TimeStampMicroTZVector) vector); } else if (vector instanceof ListVector) { ListVector listVector = (ListVector) vector; return new ArrowSchemaConverter.ArrayAccessor(listVector, userProvidedField); } else if (vector instanceof StructVector) { StructVector structVector = (StructVector) vector; return new ArrowSchemaConverter.StructAccessor(structVector, userProvidedField); } else { throw new UnsupportedOperationException(); } } private static class BooleanAccessor extends ArrowSchemaConverter { private final BitVector vector; BooleanAccessor(BitVector vector) { super(vector); this.vector = vector; } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final boolean getBoolean(int rowId) { return vector.get(rowId) == 1; } @Override public final ValueVector vector() { return vector; } } private static class LongAccessor extends ArrowSchemaConverter { private final BigIntVector vector; LongAccessor(BigIntVector vector) { super(vector); this.vector = vector; } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final byte getByte(int rowId) { return (byte)getLong(rowId); } @Override public final short getShort(int rowId) { return (short)getLong(rowId); } @Override public final int getInt(int rowId) { return (int)getLong(rowId); } @Override public final long getLong(int rowId) { return vector.get(rowId); } @Override public final ValueVector vector() { return vector; } } private static class DoubleAccessor extends ArrowSchemaConverter { private final Float8Vector vector; DoubleAccessor(Float8Vector vector) { super(vector); this.vector = vector; } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final double getDouble(int rowId) { return vector.get(rowId); } @Override public final ValueVector vector() { return vector; } } private static class DecimalAccessor extends ArrowSchemaConverter { private final DecimalVector vector; DecimalAccessor(DecimalVector vector) { super(vector); this.vector = vector; } // Implemented this method for tpc-ds queries that cast from Decimal to Byte @Override public byte getByte(int rowId) { return vector.getObject(rowId).byteValueExact(); } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final Decimal getDecimal(int rowId, int precision, int scale) { if (isNullAt(rowId)) return null; return Decimal.apply(((DecimalVector)vector).getObject(rowId), precision, scale); } @Override public final ValueVector vector() { return vector; } } private static class Decimal256Accessor extends ArrowSchemaConverter { private final Decimal256Vector vector; Decimal256Accessor(Decimal256Vector vector) { super(vector); this.vector = vector; } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } public UTF8String getUTF8String(int rowId){ if (isNullAt(rowId)) { return null; } BigDecimal bigDecimal = ((Decimal256Vector)vector).getObject(rowId); return UTF8String.fromString(bigDecimal.toPlainString()); } // Implemented this method for reading BigNumeric values @Override public final Decimal getDecimal(int rowId, int precision, int scale) { if (isNullAt(rowId)) return null; return Decimal.apply(((Decimal256Vector)vector).getObject(rowId), precision, scale); } @Override public final ValueVector vector() { return vector; } } private static class StringAccessor extends ArrowSchemaConverter { private final VarCharVector vector; StringAccessor(VarCharVector vector) { super(vector); this.vector = vector; } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final UTF8String getUTF8String(int rowId) { if (vector.isSet(rowId) == 0) { return null; } else { ArrowBuf offsets = ((VarCharVector)vector).getOffsetBuffer(); int index = rowId * VarCharVector.OFFSET_WIDTH; int start = offsets.getInt(index); int end = offsets.getInt(index + VarCharVector.OFFSET_WIDTH); /* Since the result is accessed lazily if the memory address is corrupted we * might lose the data. Might be better to include a byte array. Not doing so * for performance reasons. */ return UTF8String.fromAddress(/* base = */null, ((VarCharVector)vector).getDataBuffer().memoryAddress() + start, end - start); } } @Override public final ValueVector vector() { return vector; } } private static class BinaryAccessor extends ArrowSchemaConverter { private final VarBinaryVector vector; BinaryAccessor(VarBinaryVector vector) { super(vector); this.vector = vector; } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final byte[] getBinary(int rowId) { return vector.getObject(rowId); } @Override public final ValueVector vector() { return vector; } } private static class DateAccessor extends ArrowSchemaConverter { ; private final DateDayVector vector; DateAccessor(DateDayVector vector) { super(vector); this.vector = vector; } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } /** * Interpreting Data here as int to keep it consistent with Avro. */ @Override public final int getInt(int rowId) { return ((DateDayVector)vector).get(rowId); } @Override public final ValueVector vector() { return vector; } } private static class TimeMicroVectorAccessor extends ArrowSchemaConverter { private final TimeMicroVector vector; TimeMicroVectorAccessor(TimeMicroVector vector) { super(vector); this.vector = vector; } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final long getLong(int rowId) { return vector.get(rowId); } @Override public final ValueVector vector() { return vector; } } private static class TimestampMicroVectorAccessor extends ArrowSchemaConverter { private static final int ONE_THOUSAND = 1_000; private static final int ONE_MILLION = 1_000_000; private static final int ONE_BILLION = 1_000_000_000; private final TimeStampMicroVector vector; TimestampMicroVectorAccessor(TimeStampMicroVector vector) { super(vector); this.vector = vector; } @Override public final long getLong(int rowId) { return vector.get(rowId); } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final UTF8String getUTF8String(int rowId) { if (isNullAt(rowId)) { return null; } long epoch = getLong(rowId); long seconds = epoch / ONE_MILLION; int nanoOfSeconds = (int)(epoch % ONE_MILLION) * ONE_THOUSAND; // The method LocalDateTime.ofEpochSecond expects // seconds as the number of seconds from the epoch of 1970-01-01T00:00:00Z and // the nanosecond within the second, from 0 to 999,999,999. // For time prior to 1970-01-01, seconds and nanoseconds both could be negative, but // negative nanoseconds is not allowed, hence for such cases adding 1_000_000_000 to // nanosecond's value and subtracting 1 from the second's value. if(nanoOfSeconds < 0) { seconds--; nanoOfSeconds += ONE_BILLION; } LocalDateTime dateTime = LocalDateTime.ofEpochSecond(seconds, nanoOfSeconds, ZoneOffset.UTC); return UTF8String.fromString(dateTime.toString()); } @Override public final ValueVector vector() { return vector; } } private static class TimestampMicroTZVectorAccessor extends ArrowSchemaConverter { private final Optional rebaseMicrosMethod; private final TimeStampMicroTZVector vector; TimestampMicroTZVectorAccessor(TimeStampMicroTZVector vector) { super(vector); this.vector = vector; Method rebaseMicrosTmp = null; try { // for Spark 3.0+ only. See https://issues.apache.org/jira/browse/SPARK-26651 Class rebaseDateTimeClass = Class.forName( "org.apache.spark.sql.catalyst.util.RebaseDateTime"); rebaseMicrosTmp = rebaseDateTimeClass.getDeclaredMethod("rebaseJulianToGregorianMicros", long.class); } catch (ReflectiveOperationException ignored) { } rebaseMicrosMethod = Optional.ofNullable(rebaseMicrosTmp); } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final long getLong(int rowId) { try { if (rebaseMicrosMethod.isPresent()) { return (long) rebaseMicrosMethod.get().invoke(rebaseMicrosMethod.get(), vector.get(rowId)); } } catch (ReflectiveOperationException ignored) { } return vector.get(rowId); } @Override public final ValueVector vector() { return vector; } } private static class ArrayAccessor extends ArrowSchemaConverter { private final ListVector vector; private final ArrowSchemaConverter arrayData; ArrayAccessor(ListVector vector, StructField userProvidedField) { super(vector); this.vector = vector; StructField structField = null; // this is to support Array of StructType/StructVector if(userProvidedField != null) { DataType dataType = userProvidedField.dataType(); ArrayType arrayType = dataType instanceof MapType ? convertMapTypeToArrayType((MapType) dataType) : (ArrayType) dataType; structField = new StructField( vector.getDataVector().getName(), arrayType.elementType(), arrayType.containsNull(), Metadata.empty());// safe to pass empty metadata as it is not used anywhere } this.arrayData = newArrowSchemaConverter(vector.getDataVector(), structField); } static ArrayType convertMapTypeToArrayType(MapType mapType) { StructField key = StructField.apply("key", mapType.keyType(), false, Metadata.empty()); StructField value = StructField.apply("value", mapType.valueType(), mapType.valueContainsNull(), Metadata.empty()); StructField[] fields = new StructField[] { key, value}; return ArrayType.apply(new StructType(fields)); } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public final ColumnarArray getArray(int rowId) { ArrowBuf offsets = ((ListVector)vector).getOffsetBuffer(); int index = rowId * ListVector.OFFSET_WIDTH; int start = offsets.getInt(index); int end = offsets.getInt(index + ListVector.OFFSET_WIDTH); return new ColumnarArray(arrayData, start, end - start); } @Override public ColumnarMap getMap(int rowId) { ArrowBuf offsets = ((ListVector)vector).getOffsetBuffer(); int index = rowId * ListVector.OFFSET_WIDTH; int start = offsets.getInt(index); int end = offsets.getInt(index + ListVector.OFFSET_WIDTH); ColumnVector keys = ((StructAccessor)arrayData).childColumns[0]; ColumnVector values = ((StructAccessor)arrayData).childColumns[1]; return new ColumnarMap(keys, values, start, end - start); } @Override public final ValueVector vector() { return vector; } } /** * Any call to "get" method will throw UnsupportedOperationException. */ private static class StructAccessor extends ArrowSchemaConverter { private final StructVector vector; private ArrowSchemaConverter childColumns[]; StructAccessor(StructVector structVector, StructField userProvidedField) { super(structVector); this.vector = structVector; if(userProvidedField !=null) { StructType schema = (StructType) SupportedCustomDataType.toSqlType(userProvidedField.dataType()); List structList = Arrays.asList(schema.fields()); this.childColumns = new ArrowSchemaConverter[structList.size()]; Map valueVectorMap = structVector .getChildrenFromFields() .stream() .collect(Collectors.toMap(ValueVector::getName, valueVector -> valueVector)); for (int i = 0; i < childColumns.length; ++i) { StructField structField = structList.get(i); childColumns[i] = newArrowSchemaConverter(valueVectorMap.get(structField.name()), structField); } } else { childColumns = new ArrowSchemaConverter[structVector.size()]; for (int i = 0; i < childColumns.length; ++i) { childColumns[i] = newArrowSchemaConverter(structVector.getVectorById(i), /*userProvidedField=*/null); } } } @Override public final boolean isNullAt(int rowId) { return vector.isNull(rowId); } @Override public ColumnVector getChild(int ordinal) { return childColumns[ordinal]; } @Override public void close() { if (childColumns != null) { for (ColumnVector v : childColumns) { v.close(); } childColumns = null; } vector.close(); } @Override public final ValueVector vector() { return vector; } } } ================================================ FILE: spark-bigquery-connector-common/third_party/apache-spark/src/main/java/com/google/cloud/spark/bigquery/AvroSchemaConverter.java ================================================ /* * Copyright 2020 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.common.base.Preconditions; import java.util.HashMap; import org.apache.avro.Conversions; import org.apache.avro.LogicalTypes; import org.apache.avro.Schema; import org.apache.avro.Schema.Type; import org.apache.avro.SchemaBuilder; import org.apache.avro.generic.GenericData; import org.apache.avro.util.Utf8; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSqlUtils; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.expressions.SpecializedGetters; import org.apache.spark.sql.catalyst.expressions.UnsafeArrayData; import org.apache.spark.sql.catalyst.expressions.UnsafeRow; import org.apache.spark.sql.catalyst.util.ArrayData; import org.apache.spark.sql.catalyst.util.MapData; import org.apache.spark.sql.types.ArrayType; import org.apache.spark.sql.types.BinaryType; import org.apache.spark.sql.types.BooleanType; import org.apache.spark.sql.types.ByteType; import org.apache.spark.sql.types.DataType; import org.apache.spark.sql.types.DateType; import org.apache.spark.sql.types.Decimal; import org.apache.spark.sql.types.DecimalType; import org.apache.spark.sql.types.DoubleType; import org.apache.spark.sql.types.FloatType; import org.apache.spark.sql.types.IntegerType; import org.apache.spark.sql.types.LongType; import org.apache.spark.sql.types.MapType; import org.apache.spark.sql.types.Metadata; import org.apache.spark.sql.types.NullType; import org.apache.spark.sql.types.ShortType; import org.apache.spark.sql.types.StringType; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.types.TimestampType; import org.apache.spark.sql.types.UserDefinedType; import scala.collection.mutable.IndexedSeq; import java.math.BigDecimal; import java.nio.ByteBuffer; import java.util.List; import java.util.Optional; public class AvroSchemaConverter { private static final Schema NULL = Schema.create(Schema.Type.NULL); private static final Conversions.DecimalConversion DECIMAL_CONVERSIONS = new Conversions.DecimalConversion(); public static Schema sparkSchemaToAvroSchema(StructType sparkSchema) { return sparkTypeToRawAvroType(sparkSchema, Metadata.empty(), false, "root"); } static Schema sparkTypeToRawAvroType(DataType dataType, Metadata metadata, boolean nullable, String recordName) { SchemaBuilder.TypeBuilder builder = SchemaBuilder.builder(); Schema avroType = sparkTypeToRawAvroType(dataType, metadata, recordName, builder); if (nullable) { avroType = Schema.createUnion(avroType, NULL); } return avroType; } static Schema sparkTypeToRawAvroType( DataType dataType, Metadata metadata, String recordName, SchemaBuilder.TypeBuilder builder) { if (dataType instanceof BinaryType) { return builder.bytesType(); } if (dataType instanceof ByteType || dataType instanceof ShortType || dataType instanceof IntegerType || dataType instanceof LongType) { return builder.longType(); } if (dataType instanceof BooleanType) { return builder.booleanType(); } if (dataType instanceof FloatType || dataType instanceof DoubleType) { return builder.doubleType(); } if (dataType instanceof DecimalType) { DecimalType decimalType = (DecimalType) dataType; if (decimalType.precision() <= BigQueryUtil.DEFAULT_NUMERIC_PRECISION && decimalType.scale() <= BigQueryUtil.DEFAULT_BIG_NUMERIC_SCALE) { return LogicalTypes.decimal(decimalType.precision(), decimalType.scale()) .addToSchema(builder.bytesType()); } else { throw new IllegalArgumentException( "Decimal type is too wide to fit in BigQuery Numeric format"); } } if (dataType instanceof StringType) { // Allows loading Avro strings as JSON // https://cloud.google.com/bigquery/docs/loading-data-cloud-storage-avro#extract_json_data_from_avro_data if (SparkBigQueryUtil.isJson(metadata)) { return builder.stringBuilder().prop("sqlType", "JSON").endString(); } else { return builder.stringType(); } } if (dataType instanceof TimestampType) { // return builder.TIMESTAMP; FIXME: Restore this correct conversion when the Vortex // team adds microsecond support to their backend return LogicalTypes.timestampMicros().addToSchema(builder.longType()); } if (dataType instanceof DateType) { return LogicalTypes.date().addToSchema(builder.intType()); } if (dataType instanceof ArrayType) { return builder .array() .items( sparkTypeToRawAvroType( ((ArrayType) dataType).elementType(), metadata, ((ArrayType) dataType).containsNull(), recordName)); } if (dataType instanceof StructType) { SchemaBuilder.FieldAssembler fieldsAssembler = builder.record(recordName).fields(); for (StructField field : ((StructType) dataType).fields()) { Schema avroType = sparkTypeToRawAvroType(field.dataType(), field.metadata(), field.nullable(), field.name()); fieldsAssembler.name(field.name()).type(avroType).noDefault(); } return fieldsAssembler.endRecord(); } if (dataType instanceof MapType) { MapType mapType = (MapType) dataType; return builder.map() .values( sparkTypeToRawAvroType( mapType.valueType(), metadata, mapType.valueContainsNull(), "value" )); } if (dataType instanceof UserDefinedType) { DataType userDefinedType = ((UserDefinedType) dataType).sqlType(); return sparkTypeToRawAvroType(userDefinedType, metadata, recordName, builder); } throw new IllegalArgumentException("Data type not supported: " + dataType.simpleString()); } public static GenericData.Record sparkRowToAvroGenericData( InternalRow row, StructType sparkSchema, Schema avroSchema) { StructConverter structConverter = new StructConverter(sparkSchema, avroSchema); return structConverter.convert(row); } static Schema resolveNullableType(Schema avroType, boolean nullable) { if (nullable && avroType.getType() != Schema.Type.NULL) { // avro uses union to represent nullable type. List fields = avroType.getTypes(); Preconditions.checkArgument( fields.size() == 2, "Avro nullable filed should be represented by a union of size 2"); Optional actualType = fields.stream().filter(field -> field.getType() != Schema.Type.NULL).findFirst(); return actualType.orElseThrow( () -> new IllegalArgumentException("No actual type has been found in " + avroType)); } else { return avroType; } } static Converter createConverterFor(DataType sparkType, Schema avroType) { if (sparkType instanceof NullType && avroType.getType() == Schema.Type.NULL) { return (getter, ordinal) -> null; } if (sparkType instanceof BooleanType && avroType.getType() == Schema.Type.BOOLEAN) { return (getter, ordinal) -> getter.getBoolean(ordinal); } if (sparkType instanceof ByteType && avroType.getType() == Schema.Type.LONG) { return (getter, ordinal) -> Long.valueOf(getter.getByte(ordinal)); } if (sparkType instanceof ShortType && avroType.getType() == Schema.Type.LONG) { return (getter, ordinal) -> Long.valueOf(getter.getShort(ordinal)); } if (sparkType instanceof IntegerType && avroType.getType() == Schema.Type.LONG) { return (getter, ordinal) -> Long.valueOf(getter.getInt(ordinal)); } if (sparkType instanceof LongType && avroType.getType() == Schema.Type.LONG) { return (getter, ordinal) -> getter.getLong(ordinal); } if (sparkType instanceof FloatType && avroType.getType() == Schema.Type.DOUBLE) { return (getter, ordinal) -> Double.valueOf(getter.getFloat(ordinal)); } if (sparkType instanceof DoubleType && avroType.getType() == Schema.Type.DOUBLE) { return (getter, ordinal) -> getter.getDouble(ordinal); } if (sparkType instanceof DecimalType && avroType.getType() == Schema.Type.BYTES) { DecimalType decimalType = (DecimalType) sparkType; return (getter, ordinal) -> { BigDecimal bigDecimal = null; if (getter instanceof UnsafeRow || getter instanceof UnsafeArrayData) { // UnsafeRow mandates Datatype Decimal decimal = getter.getDecimal(ordinal, decimalType.precision(), decimalType.scale()); bigDecimal = decimal.toJavaBigDecimal(); } else { Object decimal = getter.get(ordinal, /* unused */ null); bigDecimal = decimal instanceof Decimal ? ((Decimal) decimal).toJavaBigDecimal() : (BigDecimal) decimal; } return DECIMAL_CONVERSIONS.toBytes( bigDecimal, avroType, LogicalTypes.decimal(decimalType.precision(), decimalType.scale())); }; } if (sparkType instanceof StringType && avroType.getType() == Schema.Type.STRING) { return (getter, ordinal) -> { String str = // UnsafeRow mandates Datatype getter instanceof UnsafeRow || getter instanceof UnsafeArrayData ? getter.getUTF8String(ordinal).toString() : getter.get(ordinal, /* unused */ null).toString(); return new Utf8(str); }; } if (sparkType instanceof BinaryType && avroType.getType() == Schema.Type.FIXED) { int size = avroType.getFixedSize(); return (getter, ordinal) -> { byte[] data = getter.getBinary(ordinal); if (data.length != size) { throw new IllegalArgumentException( String.format( "Cannot write %s bytes of binary data into FIXED Type with size of %s bytes", data.length, size)); } return new GenericData.Fixed(avroType, data); }; } if (sparkType instanceof BinaryType && avroType.getType() == Schema.Type.BYTES) { return (getter, ordinal) -> ByteBuffer.wrap(getter.getBinary(ordinal)); } if (sparkType instanceof DateType && avroType.getType() == Schema.Type.INT) { return (getter, ordinal) -> { Object sparkValue = // UnsafeRow mandates Datatype getter instanceof UnsafeRow || getter instanceof UnsafeArrayData ? getter.getInt(ordinal) : getter.get(ordinal, /* unused */ null); return SparkBigQueryUtil.sparkDateToBigQuery(sparkValue); }; } if (sparkType instanceof TimestampType && avroType.getType() == Schema.Type.LONG) { return (getter, ordinal) -> { Object sparkValue = // UnsafeRow mandates Datatype getter instanceof UnsafeRow || getter instanceof UnsafeArrayData ? getter.getLong(ordinal) : getter.get(ordinal, /* unused */ null); return SparkBigQueryUtil.sparkTimestampToBigQuery(sparkValue); }; } if (sparkType instanceof ArrayType && avroType.getType() == Schema.Type.ARRAY) { DataType et = ((ArrayType) sparkType).elementType(); boolean containsNull = ((ArrayType) sparkType).containsNull(); Converter elementConverter = createConverterFor(et, resolveNullableType(avroType.getElementType(), containsNull)); return (getter, ordinal) -> { ArrayData arrayData = null; if (getter instanceof UnsafeRow || getter instanceof UnsafeArrayData) { // UnsafeRow mandates DataType arrayData = getter.getArray(ordinal); } else { Object array = getter.get(ordinal, /* unused */ null); if (array instanceof IndexedSeq) { arrayData = ArrayData.toArrayData(array); } else { arrayData = (ArrayData) array; } } int len = arrayData.numElements(); Object[] result = new Object[len]; for (int i = 0; i < len; i++) { if (containsNull && arrayData.isNullAt(i)) { result[i] = null; } else { result[i] = elementConverter.convert(arrayData, i); } } // avro writer is expecting a Java Collection, so we convert it into // `ArrayList` backed by the specified array without data copying. return java.util.Arrays.asList(result); }; } if (sparkType instanceof StructType && avroType.getType() == Schema.Type.RECORD) { StructType sparkStruct = (StructType) sparkType; StructConverter structConverter = new StructConverter(sparkStruct, avroType); int numFields = sparkStruct.length(); return (getter, ordinal) -> { InternalRow internalRow = null; if (getter instanceof UnsafeRow || getter instanceof UnsafeArrayData) { // UnsafeRow mandates Datatype internalRow = getter.getStruct(ordinal, numFields); } else { Object obj = getter.get(ordinal, /* unused */ null); if (obj instanceof Row) { internalRow = SparkSqlUtils.getInstance().rowToInternalRow((Row) obj); } else { internalRow = (InternalRow) obj; } } return structConverter.convert(internalRow); }; } if (sparkType instanceof MapType && avroType.getType() == Type.MAP) { final MapType mapType = (MapType) sparkType; final Converter keyConverter = createConverterFor(mapType.keyType(), Schema.create(Type.STRING)); Schema valueType = avroType.getValueType(); Schema nullableValueType = resolveNullableType(valueType, mapType.valueContainsNull()); final Converter valueConverter = createConverterFor(mapType.valueType(), nullableValueType); return (getter, ordinal) -> { HashMap result = new HashMap<>(); MapData map = getter.getMap(ordinal); ArrayData keys = map.keyArray(); ArrayData values = map.valueArray(); for(int i = 0; i< map.numElements(); i++) { Utf8 key = (Utf8) keyConverter.convert(keys, i); Object value = valueConverter.convert(values, i); result.put(key, value); } return result; }; } if (sparkType instanceof UserDefinedType) { UserDefinedType userDefinedType = (UserDefinedType) sparkType; return createConverterFor(userDefinedType.sqlType(), avroType); } throw new IllegalArgumentException( String.format("Cannot convert Catalyst type %s to Avro type %s", sparkType, avroType)); } @FunctionalInterface interface Converter { Object convert(SpecializedGetters getters, int ordinal); } static class StructConverter { private final StructType sparkStruct; private final Schema avroStruct; StructConverter(StructType sparkStruct, Schema avroStruct) { this.sparkStruct = sparkStruct; this.avroStruct = avroStruct; Preconditions.checkArgument( avroStruct.getType() == Schema.Type.RECORD && avroStruct.getFields().size() == sparkStruct.length(), "Cannot convert Catalyst type %s to Avro type %s.", sparkStruct, avroStruct); } GenericData.Record convert(InternalRow row) { int numFields = sparkStruct.length(); Converter[] fieldConverters = new Converter[numFields]; StructField[] sparkFields = sparkStruct.fields(); Schema.Field[] avroFields = avroStruct.getFields().toArray(new Schema.Field[numFields]); GenericData.Record result = new GenericData.Record(avroStruct); for (int i = 0; i < numFields; i++) { if (row.isNullAt(i)) { result.put(i, null); } else { Converter fieldConverter = AvroSchemaConverter.createConverterFor( sparkFields[i].dataType(), AvroSchemaConverter.resolveNullableType( avroFields[i].schema(), sparkFields[i].nullable())); result.put(i, fieldConverter.convert(row, i)); } } return result; } } } ================================================ FILE: spark-bigquery-dsv1/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../spark-bigquery-parent spark-bigquery-dsv1 BigQuery DataSource v1 implementation org.apache.spark spark-sql_2.13 4.0.0 provided pom spark-bigquery-dsv1-spark2-support spark-bigquery-dsv1-spark3-support spark-bigquery-dsv1-parent spark-bigquery_2.11 spark-bigquery_2.12 spark-bigquery_2.13 spark-bigquery-with-dependencies-parent spark-bigquery-with-dependencies_2.11 spark-bigquery-with-dependencies_2.12 spark-bigquery-with-dependencies_2.13 ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-dsv1-parent/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../../spark-bigquery-parent spark-bigquery-dsv1-parent BigQuery DataSource v1 implementation common settings pom 1.8 1.8 true 2.12 2.12.18 3.1.0 Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-connector-common ${project.version} ${project.groupId} spark-bigquery-dsv1-spark2-support ${project.version} ${project.groupId} spark-bigquery-dsv1-spark3-support ${project.version} commons-lang commons-lang provided org.apache.spark spark-mllib_${scala.binary.version} ${spark.version} provided io.netty netty org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided io.netty netty org.apache.spark spark-avro_${scala.binary.version} ${spark.version} test ${project.groupId} bigquery-connector-common ${project.version} test tests ${project.groupId} spark-bigquery-connector-common ${project.version} test tests ${project.groupId} spark-bigquery-tests ${project.version} test org.apache.maven.plugins maven-resources-plugin copy-resources validate copy-resources ${basedir}/target/classes src/build/resources true org.codehaus.mojo build-helper-maven-plugin generate-sources add-test-source src/test/scala org.apache.maven.plugins maven-jar-plugin empty-javadoc-jar package jar javadoc ${basedir}/src/build/javadoc ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../../spark-bigquery-parent spark-bigquery-dsv1-spark2-support Spark BigQuery Connector Spark 2 Support Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-connector-common ${project.version} org.apache.spark spark-sql_2.12 2.4.0 provided ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support/src/main/java/com/google/cloud/spark/bigquery/spark2/Spark2DataFrameToRDDConverter.java ================================================ /* * Copyright 2022 Google LLC * * 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. */ package com.google.cloud.spark.bigquery.spark2; import com.google.cloud.spark.bigquery.DataFrameToRDDConverter; import java.util.Iterator; import java.util.stream.Stream; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.analysis.SimpleAnalyzer$; import org.apache.spark.sql.catalyst.encoders.ExpressionEncoder; import org.apache.spark.sql.catalyst.encoders.RowEncoder; import org.apache.spark.sql.catalyst.expressions.Attribute; import org.apache.spark.sql.catalyst.expressions.AttributeReference; import org.apache.spark.sql.types.StructType; import scala.collection.Seq; import scala.collection.mutable.WrappedArray; public class Spark2DataFrameToRDDConverter implements DataFrameToRDDConverter { @Override public RDD convertToRDD(Dataset data) { StructType schema = data.schema(); // Going to more explicit API as JavaConverters changed significantly across Scala versions Seq attributeReferenceSeq = schema.toAttributes(); AttributeReference[] attributeReferenceArray = new AttributeReference[attributeReferenceSeq.size()]; attributeReferenceSeq.copyToArray(attributeReferenceArray); Attribute[] attributes = Stream.of(attributeReferenceArray).map(Attribute::toAttribute).toArray(Attribute[]::new); Seq attributeSeq = WrappedArray.make(attributes).toSeq(); final ExpressionEncoder expressionEncoder = RowEncoder.apply(schema).resolveAndBind(attributeSeq, SimpleAnalyzer$.MODULE$); RDD rowRdd = data.queryExecution() .toRdd() .toJavaRDD() .mapPartitions(iter -> new EncodingIterator(iter, expressionEncoder)) .rdd(); return rowRdd; } @Override public boolean supports(String sparkVersion) { return sparkVersion.compareTo("3") < 0; } static class EncodingIterator implements Iterator { private Iterator internalIterator; private ExpressionEncoder expressionEncoder; public EncodingIterator( Iterator internalIterator, ExpressionEncoder expressionEncoder) { this.internalIterator = internalIterator; this.expressionEncoder = expressionEncoder; } @Override public boolean hasNext() { return internalIterator.hasNext(); } @Override public Row next() { return expressionEncoder.fromRow(internalIterator.next()); } } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.DataFrameToRDDConverter ================================================ com.google.cloud.spark.bigquery.spark2.Spark2DataFrameToRDDConverter ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../../spark-bigquery-parent spark-bigquery-dsv1-spark3-support Spark BigQuery Connector Spark 3 Support Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-connector-common ${project.version} org.apache.spark spark-sql_2.12 3.2.0 provided ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support/src/main/java/com/google/cloud/spark/bigquery/spark3/SerializableAbstractFunction1.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.spark3; import java.io.Serializable; import java.util.function.Function; import scala.runtime.AbstractFunction1; public class SerializableAbstractFunction1 extends AbstractFunction1 implements Serializable { private Function func; SerializableAbstractFunction1(Function func) { this.func = func; } @Override public U apply(T obj) { return func.apply(obj); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support/src/main/java/com/google/cloud/spark/bigquery/spark3/Spark3DataFrameToRDDConverter.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.spark3; import com.google.cloud.spark.bigquery.DataFrameToRDDConverter; import java.io.Serializable; import java.util.function.Function; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSqlUtils; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.encoders.ExpressionEncoder; import org.apache.spark.sql.catalyst.encoders.ExpressionEncoder.Deserializer; import org.apache.spark.sql.types.StructType; import scala.collection.Iterator; import scala.reflect.ClassTag; import scala.reflect.ClassTag$; import scala.runtime.AbstractFunction1; public class Spark3DataFrameToRDDConverter implements DataFrameToRDDConverter { @Override public RDD convertToRDD(Dataset data) { StructType schema = data.schema(); final ExpressionEncoder expressionEncoder = SparkSqlUtils.getInstance().createExpressionEncoder(schema); final Deserializer deserializer = expressionEncoder.createDeserializer(); ClassTag classTag = ClassTag$.MODULE$.apply(Row.class); RDD rowRdd = data.queryExecution() .toRdd() .mapPartitions(getIteratorMapper(deserializer), false, classTag); return rowRdd; } @Override public boolean supports(String sparkVersion) { return sparkVersion.compareTo("3") >= 0; } private AbstractFunction1, Iterator> getIteratorMapper( final Deserializer deserializer) { final AbstractFunction1 internalRowMapper = new SerializableAbstractFunction1( (Function & Serializable) internalRow -> deserializer.apply(internalRow)); final AbstractFunction1, Iterator> iteratorMapper = new SerializableAbstractFunction1( (Function, Iterator> & Serializable) iterator -> iterator.map(internalRowMapper)); return iteratorMapper; } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.DataFrameToRDDConverter ================================================ com.google.cloud.spark.bigquery.spark3.Spark3DataFrameToRDDConverter ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../../spark-bigquery-parent spark-bigquery-with-dependencies-parent BigQuery DataSource v1 shaded distributable common settings pom Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-tests ${project.parent.version} test org.apache.maven.plugins maven-jar-plugin empty-javadoc-jar package jar javadoc ${basedir}/src/build/javadoc ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-with-dependencies-parent ${revision} ../spark-bigquery-with-dependencies-parent spark-bigquery-with-dependencies_2.11 BigQuery DataSource v1 shaded distributable for Scala 2.11 2.11 false Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery_${scala.binary.version} ${project.version} ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/build/javadoc/README.md ================================================ In order to comply with Maven-Central requirements ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala211DataprocImage13AcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Scala211DataprocImage13AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala211DataprocImage13AcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("1.3-debian10", "spark-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala211DataprocImage13DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Scala211DataprocImage13DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala211DataprocImage13DisableConscryptAcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("1.3-debian10", "spark-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala211DataprocImage14AcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Scala211DataprocImage14AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala211DataprocImage14AcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("1.4-debian10", "spark-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala211DataprocImage14DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Scala211DataprocImage14DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala211DataprocImage14DisableConscryptAcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("1.4-debian10", "spark-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-with-dependencies-parent ${revision} ../spark-bigquery-with-dependencies-parent spark-bigquery-with-dependencies_2.12 BigQuery DataSource v1 shaded distributable for Scala 2.12 2.12 2.12.18 false Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery_${scala.binary.version} ${project.version} org.codehaus.mojo build-helper-maven-plugin add-acceptance-test-source generate-sources add-test-source src/test_2.12/java ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/build/javadoc/README.md ================================================ In order to comply with Maven-Central requirements ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage15AcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Scala212DataprocImage15AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala212DataprocImage15AcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("1.5-debian10", "spark-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage15DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Scala212DataprocImage15DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala212DataprocImage15DisableConscryptAcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("1.5-debian10", "spark-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage20AcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; public class Scala212DataprocImage20AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala212DataprocImage20AcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("2.0-debian10", "spark-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage20DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; public class Scala212DataprocImage20DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala212DataprocImage20DisableConscryptAcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("2.0-debian10", "spark-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage21AcceptanceTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; public class Scala212DataprocImage21AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala212DataprocImage21AcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("2.1-debian11", "spark-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage21DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; public class Scala212DataprocImage21DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala212DataprocImage21DisableConscryptAcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("2.1-debian11", "spark-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage22AcceptanceTest.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; public class Scala212DataprocImage22AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala212DataprocImage22AcceptanceTest() { // TODO: sparkStreamingSupported should be set to true once bug is fixed in image 2.2 super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("2.2-debian12", "spark-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage22DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; public class Scala212DataprocImage22DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala212DataprocImage22DisableConscryptAcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("2.2-debian12", "spark-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212Spark32WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // spark-3.1-bigquery does not support streaming yet public class Scala212Spark32WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Scala212Spark32WriteStreamDataprocServerlessAcceptanceTest() { super("spark-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212Spark33BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala212Spark33BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Scala212Spark33BigNumericDataprocServerlessAcceptanceTest() { super("spark-bigquery", "1.1"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212Spark33ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala212Spark33ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Scala212Spark33ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-bigquery", "1.1"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test_2.12/java/com/google/cloud/spark/bigquery/acceptance/Scala212BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala212BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Scala212BigNumericDataprocServerlessAcceptanceTest() { super("spark-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test_2.12/java/com/google/cloud/spark/bigquery/acceptance/Scala212ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala212ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Scala212ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test_2.12/java/com/google/cloud/spark/bigquery/acceptance/Scala212WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala212WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Scala212WriteStreamDataprocServerlessAcceptanceTest() { super("spark-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-with-dependencies-parent ${revision} ../spark-bigquery-with-dependencies-parent spark-bigquery-with-dependencies_2.13 BigQuery DataSource v1 shaded distributable for Scala 2.13 2.13 2.13.5 false Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery_${scala.binary.version} ${project.version} org.codehaus.mojo build-helper-maven-plugin add-acceptance-test-source generate-sources add-test-source src/test_2.13/java ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213DataprocImage21AcceptanceTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore // A placeholder until a Scala 2.13 image is released public class Scala213DataprocImage21AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala213DataprocImage21AcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("2.0-debian10", "spark-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213DataprocImage21DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore // A placeholder until a Scala 2.13 image is released public class Scala213DataprocImage21DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Scala213DataprocImage21DisableConscryptAcceptanceTest() { super(context); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup("2.0-debian10", "spark-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark33BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala213Spark33BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Scala213Spark33BigNumericDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark33ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala213Spark33ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Scala213Spark33ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark33WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // spark-3.1-bigquery does not support streaming yet public class Scala213Spark33WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Scala213Spark33WriteStreamDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark34BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala213Spark34BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Scala213Spark34BigNumericDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.1"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark34ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala213Spark34ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Scala213Spark34ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.1"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark35BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala213Spark35BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Scala213Spark35BigNumericDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.2"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark35ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala213Spark35ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Scala213Spark35ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.2"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test_2.13/java/com/google/cloud/spark/bigquery/acceptance/Scala213BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala213BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Scala213BigNumericDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test_2.13/java/com/google/cloud/spark/bigquery/acceptance/Scala213ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala213ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Scala213ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test_2.13/java/com/google/cloud/spark/bigquery/acceptance/Scala213WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Scala213WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Scala213WriteStreamDataprocServerlessAcceptanceTest() { super("spark-bigquery", "2.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.11/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv1-parent ${revision} ../spark-bigquery-dsv1-parent spark-bigquery_2.11 BigQuery DataSource v1 for Scala 2.11 2.11 2.4.0 Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo org.apache.maven.plugins maven-enforcer-plugin 3.0.0-M3 enforce-versions enforce *:*_2.12 *:*_2.10 ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.12/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv1-parent ${revision} ../spark-bigquery-dsv1-parent spark-bigquery_2.12 BigQuery DataSource v1 for Scala 2.12 2.12 2.12.18 3.1.0 Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-scala-212-support ${project.version} io.openlineage openlineage-spark_${scala.binary.version} org.apache.maven.plugins maven-enforcer-plugin 3.0.0-M3 enforce-versions enforce *:*_2.11 *:*_2.10 ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.12/src/main/java/com/google/cloud/spark/bigquery/DefaultSource.java ================================================ /* * Copyright 2025 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery; public class DefaultSource extends Scala212BigQueryRelationProvider { // empty } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.12/src/main/java/com/google/cloud/spark/bigquery/Scala212BigQueryRelationProvider.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import java.util.function.Supplier; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.execution.streaming.Sink; import org.apache.spark.sql.sources.BaseRelation; import org.apache.spark.sql.sources.CreatableRelationProvider; import org.apache.spark.sql.sources.RelationProvider; import org.apache.spark.sql.sources.SchemaRelationProvider; import org.apache.spark.sql.sources.StreamSinkProvider; import org.apache.spark.sql.streaming.OutputMode; import org.apache.spark.sql.types.StructType; import scala.collection.JavaConverters; import scala.collection.Seq; import scala.collection.immutable.Map; public class Scala212BigQueryRelationProvider extends BigQueryRelationProviderBase implements RelationProvider, CreatableRelationProvider, SchemaRelationProvider, StreamSinkProvider { public Scala212BigQueryRelationProvider() { super(); } public Scala212BigQueryRelationProvider(Supplier getGuiceInjectorCreator) { super(getGuiceInjectorCreator); } @Override public BaseRelation createRelation( SQLContext sqlContext, SaveMode mode, Map parameters, Dataset data) { return super.createRelation(sqlContext, mode, asJava(parameters), data); } @Override public BaseRelation createRelation(SQLContext sqlContext, Map parameters) { return super.createRelation(sqlContext, asJava(parameters)); } @Override public BaseRelation createRelation( SQLContext sqlContext, Map parameters, StructType schema) { return super.createRelation(sqlContext, asJava(parameters), schema); } @Override public Sink createSink( SQLContext sqlContext, Map parameters, Seq partitionColumns, OutputMode outputMode) { return super.createSink(sqlContext, asJava(parameters), asJava(partitionColumns), outputMode); } private java.util.List asJava(Seq seq) { return JavaConverters.seqAsJavaListConverter(seq).asJava(); } private java.util.Map asJava(Map map) { return JavaConverters.mapAsJavaMapConverter(map).asJava(); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.12/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.Scala212BigQueryRelationProvider ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.12/src/test/java/com/google/cloud/spark/bigquery/Scala212BigQueryRelationProviderTest.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import java.util.function.Supplier; public class Scala212BigQueryRelationProviderTest extends BigQueryRelationProviderTestBase { @Override BigQueryRelationProviderBase createProvider(Supplier injectorCreator) { return new Scala212BigQueryRelationProvider(injectorCreator); } @Override BigQueryRelationProviderBase createProvider() { return new Scala212BigQueryRelationProvider(); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.13/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv1-parent ${revision} ../spark-bigquery-dsv1-parent spark-bigquery_2.13 BigQuery DataSource v1 for Scala 2.13 2.13 2.13.5 3.2.0 Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo io.openlineage openlineage-spark_${scala.binary.version} org.apache.maven.plugins maven-enforcer-plugin enforce-versions enforce *:*_2.12 *:*_2.11 *:*_2.10 ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.13/src/main/java/com/google/cloud/spark/bigquery/DefaultSource.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; public class DefaultSource extends Scala213BigQueryRelationProvider { // empty } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.13/src/main/java/com/google/cloud/spark/bigquery/Scala213BigQueryRelationProvider.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import java.util.function.Supplier; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.execution.streaming.Sink; import org.apache.spark.sql.sources.BaseRelation; import org.apache.spark.sql.sources.CreatableRelationProvider; import org.apache.spark.sql.sources.RelationProvider; import org.apache.spark.sql.sources.SchemaRelationProvider; import org.apache.spark.sql.sources.StreamSinkProvider; import org.apache.spark.sql.streaming.OutputMode; import org.apache.spark.sql.types.StructType; import scala.collection.immutable.Map; import scala.collection.immutable.Seq; import scala.jdk.javaapi.CollectionConverters; public class Scala213BigQueryRelationProvider extends BigQueryRelationProviderBase implements RelationProvider, CreatableRelationProvider, SchemaRelationProvider, StreamSinkProvider { public Scala213BigQueryRelationProvider() { super(); } public Scala213BigQueryRelationProvider(Supplier getGuiceInjectorCreator) { super(getGuiceInjectorCreator); } @Override public BaseRelation createRelation( SQLContext sqlContext, SaveMode mode, Map parameters, Dataset data) { return super.createRelation(sqlContext, mode, CollectionConverters.asJava(parameters), data); } @Override public BaseRelation createRelation(SQLContext sqlContext, Map parameters) { return super.createRelation(sqlContext, CollectionConverters.asJava(parameters)); } @Override public BaseRelation createRelation( SQLContext sqlContext, Map parameters, StructType schema) { return super.createRelation(sqlContext, CollectionConverters.asJava(parameters), schema); } @Override public Sink createSink( SQLContext sqlContext, Map parameters, Seq partitionColumns, OutputMode outputMode) { return super.createSink( sqlContext, CollectionConverters.asJava(parameters), CollectionConverters.asJava(partitionColumns), outputMode); } } ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.13/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.Scala213BigQueryRelationProvider ================================================ FILE: spark-bigquery-dsv1/spark-bigquery_2.13/src/test/java/com/google/cloud/spark/bigquery/Scala213BigQueryRelationProviderTest.java ================================================ /* * Copyright 2025 Google LLC * * 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. */ package com.google.cloud.spark.bigquery; import java.util.function.Supplier; public class Scala213BigQueryRelationProviderTest extends BigQueryRelationProviderTestBase { @Override BigQueryRelationProviderBase createProvider(Supplier injectorCreator) { return new Scala213BigQueryRelationProvider(injectorCreator); } @Override BigQueryRelationProviderBase createProvider() { return new Scala213BigQueryRelationProvider(); } } ================================================ FILE: spark-bigquery-dsv1/src/build/javadoc/README.md ================================================ In order to comply with Maven-Central requirements ================================================ FILE: spark-bigquery-dsv1/src/build/resources/spark-bigquery-connector.properties ================================================ scala.binary.version=${scala.binary.version} connector.version=${project.version} ================================================ FILE: spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/SchemaConvertersTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import static com.google.common.truth.Truth.assertThat; // Google Truth import import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.Schema; import org.apache.spark.sql.types.*; import org.junit.Test; public class SchemaConvertersTest { private final SchemaConverters schemaConverters = SchemaConverters.from(SchemaConvertersConfiguration.createDefault()); @Test public void emptySchemaConversion() { Schema bqSchema = Schema.of(); StructType expected = new StructType(new StructField[] {}); StructType result = schemaConverters.toSpark(bqSchema); assertThat(result).isEqualTo(expected); } @Test public void singleFieldSchemaConversion() { Schema bqSchema = Schema.of(Field.of("foo", LegacySQLTypeName.STRING)); StructType expected = new StructType( new StructField[] {DataTypes.createStructField("foo", DataTypes.StringType, true)}); StructType result = schemaConverters.toSpark(bqSchema); assertThat(result).isEqualTo(expected); } @Test public void singleFieldSchemaConversionForJson() { Schema bqSchema = Schema.of(Field.of("foo", LegacySQLTypeName.JSON)); Metadata metadata = new MetadataBuilder().putString("sqlType", "JSON").build(); StructType expected = new StructType( new StructField[] { DataTypes.createStructField("foo", DataTypes.StringType, true, metadata) }); StructType result = schemaConverters.toSpark(bqSchema); assertThat(result).isEqualTo(expected); } @Test public void fullFieldSchemaConversion() { Schema bqSchema = Schema.of( Field.of("foo", LegacySQLTypeName.STRING), Field.of("bar", LegacySQLTypeName.INTEGER), Field.newBuilder("required", LegacySQLTypeName.BOOLEAN) .setMode(Field.Mode.REQUIRED) .build(), Field.newBuilder("binary_arr", LegacySQLTypeName.BYTES) .setMode(Field.Mode.REPEATED) .build(), Field.of("float", LegacySQLTypeName.FLOAT), Field.newBuilder("numeric", LegacySQLTypeName.NUMERIC) .setPrecision(38L) .setScale(9L) .build(), Field.of("date", LegacySQLTypeName.DATE), Field.of( "times", LegacySQLTypeName.RECORD, Field.of("time", LegacySQLTypeName.TIME), Field.of("timestamp", LegacySQLTypeName.TIMESTAMP), Field.of("datetime", LegacySQLTypeName.DATETIME))); StructType expected = new StructType( new StructField[] { DataTypes.createStructField("foo", DataTypes.StringType, true), DataTypes.createStructField("bar", DataTypes.LongType, true), DataTypes.createStructField("required", DataTypes.BooleanType, false), DataTypes.createStructField( "binary_arr", DataTypes.createArrayType(DataTypes.BinaryType, true), true), DataTypes.createStructField("float", DataTypes.DoubleType, true), DataTypes.createStructField("numeric", DataTypes.createDecimalType(38, 9), true), DataTypes.createStructField("date", DataTypes.DateType, true), DataTypes.createStructField( "times", new StructType( new StructField[] { DataTypes.createStructField("time", DataTypes.LongType, true), DataTypes.createStructField("timestamp", DataTypes.TimestampType, true), DataTypes.createStructField("datetime", DataTypes.StringType, true) }), true) }); StructType result = schemaConverters.toSpark(bqSchema); assertThat(result).isEqualTo(expected); } @Test public void fieldHasDescription() { Schema bqSchema = Schema.of( Field.newBuilder("name", LegacySQLTypeName.STRING) .setDescription("foo") .setMode(Field.Mode.NULLABLE) .build()); Metadata expectedMetadata = new MetadataBuilder().putString("description", "foo").putString("comment", "foo").build(); StructType expected = new StructType( new StructField[] { DataTypes.createStructField("name", DataTypes.StringType, true, expectedMetadata) }); StructType result = schemaConverters.toSpark(bqSchema); assertThat(result).isEqualTo(expected); } } ================================================ FILE: spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1DirectWriteIntegrationTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; public class DataSourceV1DirectWriteIntegrationTest extends DataSourceV1WriteIntegrationTestBase { public DataSourceV1DirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.DIRECT); } // additional tests are from the super-class } ================================================ FILE: spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1IndirectWriteIntegrationTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.junit.Before; public class DataSourceV1IndirectWriteIntegrationTest extends DataSourceV1WriteIntegrationTestBase { public DataSourceV1IndirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.INDIRECT); } @Before public void setParquetLoadBehaviour() { // TODO: make this the default value spark.conf().set("enableListInference", "true"); } // additional tests are from the super-class } ================================================ FILE: spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1OpenLineageIntegrationTest.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class DataSourceV1OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {} ================================================ FILE: spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1ReadByFormatIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation; import java.util.Arrays; import java.util.Collection; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; @RunWith(Parameterized.class) public class DataSourceV1ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase { @Parameterized.Parameters(name = "{0}") public static Collection formats() { return Arrays.asList(new Object[][] {{"AVRO"}, {"ARROW"}}); } public DataSourceV1ReadByFormatIntegrationTest(String format) { super(format); } @Test public void testOptimizedCountStarWithFilter() { DirectBigQueryRelation.emptyRowRDDsCreated = 0; long oldMethodCount = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("optimizedEmptyProjection", "false") .option("readDataFormat", dataFormat) .load() .select("corpus_date") .where("corpus_date > 0") .count(); assertThat(DirectBigQueryRelation.emptyRowRDDsCreated).isEqualTo(0); long optimizedCount = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", dataFormat) .load() .where("corpus_date > 0") .count(); assertThat(optimizedCount).isEqualTo(oldMethodCount); assertThat(DirectBigQueryRelation.emptyRowRDDsCreated).isEqualTo(1); } @Test public void testOptimizedCountStar() { DirectBigQueryRelation.emptyRowRDDsCreated = 0; long oldMethodCount = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("optimizedEmptyProjection", "false") .option("readDataFormat", dataFormat) .load() .select("corpus_date") .count(); assertThat(DirectBigQueryRelation.emptyRowRDDsCreated).isEqualTo(0); long optimizedCount = spark .read() .format("bigquery") .option("table", "bigquery-public-data.samples.shakespeare") .option("readDataFormat", dataFormat) .load() .count(); assertThat(optimizedCount).isEqualTo(oldMethodCount); assertThat(DirectBigQueryRelation.emptyRowRDDsCreated).isEqualTo(1); } // additional tests are from the super-class } ================================================ FILE: spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1ReadFromQueryIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class DataSourceV1ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase { // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1ReadIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.common.truth.Truth.assertThat; import com.google.cloud.bigquery.connector.common.integration.DefaultCredentialsDelegateAccessTokenProvider; import org.apache.spark.sql.Column; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.junit.Test; public class DataSourceV1ReadIntegrationTest extends ReadIntegrationTestBase { // @TODO Move to support class once DSv2 supports all types @Test public void testReadDataTypes() { Dataset allTypesTable = readAllTypesTable(); Row expectedValues = spark .range(1) .select(TestConstants.ALL_TYPES_TABLE_COLS.stream().toArray(Column[]::new)) .head(); Row row = allTypesTable.head(); IntegrationTestUtils.compareRows(row, expectedValues); } @Test public void testCustomAccessTokenProvider() throws Exception { Dataset df = spark .read() .format("bigquery") .option( "gcpAccessTokenProvider", DefaultCredentialsDelegateAccessTokenProvider.class.getCanonicalName()) .load(TestConstants.SHAKESPEARE_TABLE); assertThat(df.count()).isEqualTo(TestConstants.SHAKESPEARE_TABLE_NUM_ROWS); } // additional tests are from the super-class } ================================================ FILE: spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1WriteIntegrationTestBase.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import static com.google.common.truth.Truth.assertThat; import static org.hamcrest.CoreMatchers.equalTo; import static org.junit.Assert.assertThrows; import static org.junit.Assume.assumeThat; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.common.util.concurrent.Uninterruptibles; import java.util.List; import java.util.concurrent.TimeUnit; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.catalyst.encoders.ExpressionEncoder; import org.apache.spark.sql.catalyst.encoders.RowEncoder; import org.apache.spark.sql.execution.streaming.MemoryStream; import org.apache.spark.sql.streaming.OutputMode; import org.apache.spark.sql.streaming.StreamingQuery; import org.apache.spark.sql.types.StructType; import org.junit.Test; import scala.collection.JavaConverters; import scala.collection.Seq; public class DataSourceV1WriteIntegrationTestBase extends WriteIntegrationTestBase { public DataSourceV1WriteIntegrationTestBase(SparkBigQueryConfig.WriteMethod writeMethod) { super(writeMethod); } // DSv2 does not support BigNumeric yet @Test public void testWriteAllDataTypes() { // temporarily skipping for v1, as "AVRO" write format is throwing error // while writing to GCS Dataset allTypesTable = readAllTypesTable(); writeToBigQuery(allTypesTable, SaveMode.Overwrite, "avro"); Dataset df = spark .read() .format("bigquery") .option("dataset", testDataset.toString()) .option("table", testTable) .option("readDataFormat", "arrow") .load() .cache(); IntegrationTestUtils.compareRows(df.head(), allTypesTable.head()); // read from cache IntegrationTestUtils.compareRows(df.head(), allTypesTable.head()); IntegrationTestUtils.compareBigNumericDataSetSchema(df.schema(), allTypesTable.schema()); } // v2 does not support ORC @Test public void testWriteToBigQuery_OrcFormat() throws InterruptedException { assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); // required by ORC spark.conf().set("spark.sql.orc.impl", "native"); writeToBigQuery(initialData(), SaveMode.ErrorIfExists, "orc"); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); } // v2 does not support parquet @Test public void testWriteToBigQuery_ParquetFormat() throws InterruptedException { assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); writeToBigQuery(initialData(), SaveMode.ErrorIfExists, "parquet"); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); } @Test public void testWriteToBigQuery_UnsupportedFormat() { assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); assertThrows( Exception.class, () -> { writeToBigQuery(initialData(), SaveMode.ErrorIfExists, "something else"); }); } @Test(timeout = 120_000) public void testStreamingToBigQueryWriteAppend() throws Exception { assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT)); StructType schema = initialData().schema(); ExpressionEncoder expressionEncoder = RowEncoder.apply(schema); MemoryStream stream = MemoryStream.apply(expressionEncoder, spark.sqlContext()); long lastBatchId = 0; Dataset streamingDF = stream.toDF(); String cpLoc = String.format("/tmp/%s-%d", fullTableName(), System.nanoTime()); // Start write stream StreamingQuery writeStream = streamingDF .writeStream() .format("bigquery") .outputMode(OutputMode.Append()) .option("checkpointLocation", cpLoc) .option("table", fullTableName()) .option("temporaryGcsBucket", TestConstants.TEMPORARY_GCS_BUCKET) .start(); // Write to stream stream.addData(toSeq(initialData().collectAsList())); while (writeStream.lastProgress().batchId() <= lastBatchId) { Uninterruptibles.sleepUninterruptibly(1, TimeUnit.SECONDS); } lastBatchId = writeStream.lastProgress().batchId(); assertThat(testTableNumberOfRows()).isEqualTo(2); assertThat(initialDataValuesExist()).isTrue(); // Write to stream stream.addData(toSeq(additonalData().collectAsList())); while (writeStream.lastProgress().batchId() <= lastBatchId) { Uninterruptibles.sleepUninterruptibly(1, TimeUnit.SECONDS); } writeStream.stop(); assertThat(testTableNumberOfRows()).isEqualTo(4); assertThat(additionalDataValuesExist()).isTrue(); } private static Seq toSeq(List list) { return JavaConverters.asScalaIteratorConverter(list.iterator()).asScala().toSeq(); } // additional tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../spark-bigquery-parent spark-bigquery-dsv2 BigQuery DataSource v2 implementation pom spark-bigquery-dsv2-common spark-bigquery-dsv2-parent spark-3.1-bigquery-lib spark-3.1-bigquery spark-bigquery-metrics spark-3.2-bigquery-lib spark-3.2-bigquery spark-3.3-bigquery-lib spark-3.3-bigquery spark-3.4-bigquery-lib spark-3.4-bigquery spark-3.5-bigquery-lib spark-3.5-bigquery spark-4.0-bigquery-lib spark-4.0-bigquery spark-4.1-bigquery-lib spark-4.1-bigquery ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-2.4-bigquery ${revision} BigQuery DataSource v2 for Spark 2.4 2.4.0 false Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-tests ${project.parent.version} test ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/build/resources/spark-bigquery-connector.properties ================================================ connector.version=${project.version} ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryDataSourceReader.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.SupportsQueryPushdown; import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.sources.Filter; import org.apache.spark.sql.sources.v2.reader.*; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.vectorized.ColumnarBatch; public class BigQueryDataSourceReader implements DataSourceReader, SupportsPushDownRequiredColumns, SupportsPushDownFilters, SupportsReportStatistics, SupportsScanColumnarBatch, SupportsQueryPushdown { private BigQueryDataSourceReaderContext context; public BigQueryDataSourceReader(BigQueryDataSourceReaderContext context) { this.context = context; } @Override public Filter[] pushFilters(Filter[] filters) { return context.pushFilters(filters); } @Override public Filter[] pushedFilters() { return context.pushedFilters(); } @Override public void pruneColumns(StructType requiredSchema) { context.pruneColumns(requiredSchema); } @Override public Statistics estimateStatistics() { return new Spark24Statistics(context.estimateStatistics()); } @Override public List> planBatchInputPartitions() { return context .planBatchInputPartitionContexts() .map(ctx -> new Spark24InputPartition(ctx)) .collect(Collectors.toList()); } @Override public StructType readSchema() { return context.readSchema(); } @Override public List> planInputPartitions() { return context .planInputPartitionContexts() .map(ctx -> new Spark24InputPartition(ctx)) .collect(Collectors.toList()); } @Override public boolean enableBatchRead() { return context.enableBatchRead(); } @Override public BigQueryRDDFactory getBigQueryRDDFactory() { return context.getBigQueryRddFactory(); } @Override public Optional getPushdownFilters() { // Return Optional.empty() here since we can get the filters from the Filter node in the // LogicalPlan in Spark 2.4 return Optional.empty(); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryDataSourceV2.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.InjectorFactory; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderModule; import com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext; import com.google.inject.Injector; import java.util.Optional; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.sources.v2.DataSourceOptions; import org.apache.spark.sql.sources.v2.DataSourceV2; import org.apache.spark.sql.sources.v2.ReadSupport; import org.apache.spark.sql.sources.v2.WriteSupport; import org.apache.spark.sql.sources.v2.reader.DataSourceReader; import org.apache.spark.sql.sources.v2.writer.DataSourceWriter; import org.apache.spark.sql.types.StructType; /** * A DataSourceV2 implementation, providing efficient reader and writer for the Google Cloud * Platform BigQuery. */ public class BigQueryDataSourceV2 extends BaseBigQuerySource implements DataSourceV2, ReadSupport, WriteSupport { @Override public DataSourceReader createReader(StructType schema, DataSourceOptions options) { Injector injector = InjectorFactory.createInjector(schema, options.asMap(), /* tableIsMandatory */ true) .createChildInjector(new BigQueryDataSourceReaderModule()); BigQueryDataSourceReader reader = new BigQueryDataSourceReader(injector.getInstance(BigQueryDataSourceReaderContext.class)); return reader; } @Override public DataSourceReader createReader(DataSourceOptions options) { return createReader(null, options); } /** * Returning a DataSourceWriter for the specified parameters. In case the table already exist and * the SaveMode is "Ignore", an Optional.empty() is returned. */ @Override public Optional createWriter( String writeUUID, StructType schema, SaveMode mode, DataSourceOptions options) { Injector injector = InjectorFactory.createInjector(schema, options.asMap(), /* tableIsMandatory */ true); Optional dataSourceWriterContext = DataSourceWriterContext.create(injector, writeUUID, schema, mode, options.asMap()); return dataSourceWriterContext.map(ctx -> new BigQueryDataSourceWriter(ctx)); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryDataSourceWriter.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext; import com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext; import java.util.stream.Stream; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.sources.v2.writer.DataSourceWriter; import org.apache.spark.sql.sources.v2.writer.DataWriterFactory; import org.apache.spark.sql.sources.v2.writer.WriterCommitMessage; public class BigQueryDataSourceWriter implements DataSourceWriter { private DataSourceWriterContext ctx; public BigQueryDataSourceWriter(DataSourceWriterContext ctx) { this.ctx = ctx; } @Override public DataWriterFactory createWriterFactory() { return new Spark24DataWriterFactory(ctx.createWriterContextFactory()); } @Override public boolean useCommitCoordinator() { return ctx.useCommitCoordinator(); } @Override public void onDataWriterCommit(WriterCommitMessage message) { ctx.onDataWriterCommit(toWriterCommitMessageContext(message)); } @Override public void commit(WriterCommitMessage[] messages) { ctx.commit(toWriterCommitMessageContextArray(messages)); } @Override public void abort(WriterCommitMessage[] messages) { ctx.abort(toWriterCommitMessageContextArray(messages)); } private WriterCommitMessageContext toWriterCommitMessageContext(WriterCommitMessage message) { return ((Spark24WriterCommitMessage) message).getContext(); } private WriterCommitMessageContext[] toWriterCommitMessageContextArray( WriterCommitMessage[] messages) { return Stream.of(messages) .map(this::toWriterCommitMessageContext) .toArray(WriterCommitMessageContext[]::new); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24DataWriter.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataWriterContext; import java.io.IOException; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.sources.v2.writer.DataWriter; import org.apache.spark.sql.sources.v2.writer.WriterCommitMessage; public class Spark24DataWriter implements DataWriter { private DataWriterContext ctx; public Spark24DataWriter(DataWriterContext ctx) { this.ctx = ctx; } @Override public void write(InternalRow record) throws IOException { ctx.write(record); } @Override public WriterCommitMessage commit() throws IOException { return new Spark24WriterCommitMessage(ctx.commit()); } @Override public void abort() throws IOException { ctx.abort(); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24DataWriterFactory.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.sources.v2.writer.DataWriter; import org.apache.spark.sql.sources.v2.writer.DataWriterFactory; public class Spark24DataWriterFactory implements DataWriterFactory { private DataWriterContextFactory ctxFactory; public Spark24DataWriterFactory(DataWriterContextFactory ctxFactory) { this.ctxFactory = ctxFactory; } @Override public DataWriter createDataWriter(int partitionId, long taskId, long epochId) { return new Spark24DataWriter(ctxFactory.createDataWriterContext(partitionId, taskId, epochId)); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24InputPartition.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.InputPartitionContext; import org.apache.spark.sql.sources.v2.reader.InputPartition; import org.apache.spark.sql.sources.v2.reader.InputPartitionReader; class Spark24InputPartition implements InputPartition { private InputPartitionContext context; public Spark24InputPartition(InputPartitionContext context) { this.context = context; } @Override public InputPartitionReader createPartitionReader() { return new Spark24InputPartitionReader(context.createPartitionReaderContext()); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24InputPartitionReader.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.InputPartitionReaderContext; import java.io.IOException; import org.apache.spark.sql.sources.v2.reader.InputPartitionReader; class Spark24InputPartitionReader implements InputPartitionReader { private InputPartitionReaderContext context; public Spark24InputPartitionReader(InputPartitionReaderContext context) { this.context = context; } @Override public boolean next() throws IOException { return context.next(); } @Override public T get() { return context.get(); } @Override public void close() throws IOException { context.close(); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24Statistics.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.StatisticsContext; import java.util.OptionalLong; import org.apache.spark.sql.sources.v2.reader.Statistics; public class Spark24Statistics implements Statistics { private StatisticsContext context; public Spark24Statistics(StatisticsContext context) { this.context = context; } @Override public OptionalLong sizeInBytes() { return context.sizeInBytes(); } @Override public OptionalLong numRows() { return context.numRows(); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24WriterCommitMessage.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext; import org.apache.spark.sql.sources.v2.writer.WriterCommitMessage; public class Spark24WriterCommitMessage implements WriterCommitMessage { WriterCommitMessageContext ctx; public Spark24WriterCommitMessage(WriterCommitMessageContext ctx) { this.ctx = ctx; } public WriterCommitMessageContext getContext() { return ctx; } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.BigQueryDataSourceV2 ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark24DataprocImage14AcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Spark24DataprocImage14AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark24DataprocImage14AcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "1.4-debian10", "spark-2.4-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark24DataprocImage14DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Spark24DataprocImage14DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark24DataprocImage14DisableConscryptAcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "1.4-debian10", "spark-2.4-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark24DataprocImage15AcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Spark24DataprocImage15AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark24DataprocImage15AcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "1.5-debian10", "spark-2.4-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark24DataprocImage15DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; @Ignore public class Spark24DataprocImage15DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark24DataprocImage15DisableConscryptAcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "1.5-debian10", "spark-2.4-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24DirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; public class Spark24DirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark24DirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.DIRECT); } } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24IndirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; public class Spark24IndirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark24IndirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.INDIRECT); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24OpenLineageIntegrationTest.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark24OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {} ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24ReadByFormatIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark24ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase { public Spark24ReadByFormatIntegrationTest() { super("ARROW"); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24ReadFromQueryIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark24ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase { // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24ReadIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark24ReadIntegrationTest extends ReadIntegrationTestBase { // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.1-bigquery ${revision} BigQuery DataSource v2 for Spark 3.1 3.1.0 false Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-3.1-bigquery-lib ${project.version} ${project.groupId} spark-bigquery-scala-212-support ${project.version} compile org.apache.spark spark-avro_2.12 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/build/resources/spark-bigquery-connector.properties ================================================ connector.version=${project.version} ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark31BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Spark31BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Spark31BigNumericDataprocServerlessAcceptanceTest() { super("spark-3.1-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31DataprocImage20AcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark31DataprocImage20AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark31DataprocImage20AcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "2.0-debian10", "spark-3.1-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31DataprocImage20DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark31DataprocImage20DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark31DataprocImage20DisableConscryptAcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "2.0-debian10", "spark-3.1-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Spark31ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Spark31ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-3.1-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // spark-3.1-bigquery does not support streaming yet public class Spark31WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Spark31WriteStreamDataprocServerlessAcceptanceTest() { super("spark-3.1-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31DirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; public class Spark31DirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark31DirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.DIRECT); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31IndirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.junit.Before; public class Spark31IndirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark31IndirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.INDIRECT); } @Before public void setParquetLoadBehaviour() { // TODO: make this the default value spark.conf().set("enableListInference", "true"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31OpenLineageIntegrationTest.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark31OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {} ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31ReadByFormatIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark31ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase { public Spark31ReadByFormatIntegrationTest() { super("ARROW", /* userProvidedSchemaAllowed */ false); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31ReadFromQueryIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark31ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase { public Spark31ReadFromQueryIntegrationTest() { super(true); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31ReadIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark31ReadIntegrationTest extends ReadIntegrationTestBase { public Spark31ReadIntegrationTest() { super(/* userProvidedSchemaAllowed */ false); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.1-bigquery-lib ${revision} Connector code for BigQuery DataSource v2 for Spark 3.1 3.1.0 true Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo org.apache.spark spark-avro_2.12 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryBatchWrite.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext; import com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext; import java.util.stream.Stream; import org.apache.spark.sql.connector.write.BatchWrite; import org.apache.spark.sql.connector.write.DataWriterFactory; import org.apache.spark.sql.connector.write.PhysicalWriteInfo; import org.apache.spark.sql.connector.write.WriterCommitMessage; public class BigQueryBatchWrite implements BatchWrite { private DataSourceWriterContext ctx; public BigQueryBatchWrite(DataSourceWriterContext ctx) { this.ctx = ctx; } @Override public DataWriterFactory createBatchWriterFactory(PhysicalWriteInfo info) { return new Spark31BigQueryDataWriterFactory(ctx.createWriterContextFactory()); } @Override public void onDataWriterCommit(WriterCommitMessage message) { ctx.onDataWriterCommit(toWriterCommitMessageContext(message)); } @Override public void commit(WriterCommitMessage[] messages) { ctx.commit(toWriterCommitMessageContextArray(messages)); } @Override public void abort(WriterCommitMessage[] messages) { ctx.abort(toWriterCommitMessageContextArray(messages)); } private WriterCommitMessageContext toWriterCommitMessageContext(WriterCommitMessage message) { return ((Spark31BigQueryWriterCommitMessage) message).getContext(); } private WriterCommitMessageContext[] toWriterCommitMessageContextArray( WriterCommitMessage[] messages) { return Stream.of(messages) .map(this::toWriterCommitMessageContext) .toArray(WriterCommitMessageContext[]::new); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryInputPartition.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.InputPartitionContext; import org.apache.spark.sql.connector.read.InputPartition; public class BigQueryInputPartition implements InputPartition { private static final long serialVersionUID = -8318843699265025053L; InputPartitionContext ctx; public BigQueryInputPartition(InputPartitionContext ctx) { this.ctx = ctx; } public InputPartitionContext getContext() { return ctx; } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryPartitionReader.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.InputPartitionReaderContext; import java.io.IOException; import org.apache.spark.sql.connector.read.PartitionReader; public class BigQueryPartitionReader implements PartitionReader { private InputPartitionReaderContext context; public BigQueryPartitionReader(InputPartitionReaderContext context) { this.context = context; } @Override public boolean next() throws IOException { return context.next(); } @Override public T get() { return context.get(); } @Override public void close() throws IOException { context.close(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryPartitionReaderFactory.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.InputPartitionContext; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.connector.read.InputPartition; import org.apache.spark.sql.connector.read.PartitionReader; import org.apache.spark.sql.connector.read.PartitionReaderFactory; import org.apache.spark.sql.vectorized.ColumnarBatch; public class BigQueryPartitionReaderFactory implements PartitionReaderFactory { @Override public PartitionReader createReader(InputPartition partition) { InputPartitionContext ctx = ((BigQueryInputPartition) partition).getContext(); return new BigQueryPartitionReader<>(ctx.createPartitionReaderContext()); } @Override public PartitionReader createColumnarReader(InputPartition partition) { InputPartitionContext ctx = ((BigQueryInputPartition) partition).getContext(); return new BigQueryPartitionReader<>(ctx.createPartitionReaderContext()); } @Override public boolean supportColumnarReads(InputPartition partition) { InputPartitionContext ctx = ((BigQueryInputPartition) partition).getContext(); return ctx.supportColumnarReads(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryStreamingDataWriter.java ================================================ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataWriterContext; import java.io.IOException; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.connector.write.DataWriter; import org.apache.spark.sql.connector.write.WriterCommitMessage; public class BigQueryStreamingDataWriter implements DataWriter { private final DataWriterContext ctx; public BigQueryStreamingDataWriter(DataWriterContext ctx) { this.ctx = ctx; } @Override public void write(InternalRow record) throws IOException { ctx.write(record); } @Override public WriterCommitMessage commit() throws IOException { return new Spark31BigQueryWriterCommitMessage(ctx.commit()); } @Override public void abort() throws IOException { ctx.abort(); } @Override public void close() throws IOException { ctx.close(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryStreamingWrite.java ================================================ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext; import com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext; import java.util.stream.Stream; import org.apache.spark.sql.connector.write.PhysicalWriteInfo; import org.apache.spark.sql.connector.write.WriterCommitMessage; import org.apache.spark.sql.connector.write.streaming.StreamingDataWriterFactory; import org.apache.spark.sql.connector.write.streaming.StreamingWrite; public class BigQueryStreamingWrite implements StreamingWrite { private final DataSourceWriterContext ctx; public BigQueryStreamingWrite(DataSourceWriterContext ctx) { this.ctx = ctx; } @Override public StreamingDataWriterFactory createStreamingWriterFactory(PhysicalWriteInfo info) { return new BigQueryStreamingWriterFactory(ctx.createWriterContextFactory()); } @Override public void commit(long epochId, WriterCommitMessage[] messages) { this.ctx.onDataStreamingWriterCommit(epochId, toWriterCommitMessageContextArray(messages)); } @Override public void abort(long epochId, WriterCommitMessage[] messages) { this.ctx.onDataStreamingWriterAbort(epochId, toWriterCommitMessageContextArray(messages)); } private WriterCommitMessageContext toWriterCommitMessageContext(WriterCommitMessage message) { return ((Spark31BigQueryWriterCommitMessage) message).getContext(); } private WriterCommitMessageContext[] toWriterCommitMessageContextArray( WriterCommitMessage[] messages) { return Stream.of(messages) .map(this::toWriterCommitMessageContext) .toArray(WriterCommitMessageContext[]::new); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryStreamingWriterFactory.java ================================================ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.connector.write.DataWriter; import org.apache.spark.sql.connector.write.streaming.StreamingDataWriterFactory; public class BigQueryStreamingWriterFactory implements StreamingDataWriterFactory { private final DataWriterContextFactory writerContextFactory; public BigQueryStreamingWriterFactory( DataWriterContextFactory writerContextFactory) { this.writerContextFactory = writerContextFactory; } @Override public DataWriter createWriter(int partitionId, long taskId, long epochId) { return new BigQueryStreamingDataWriter( writerContextFactory.createDataWriterContext(partitionId, taskId, epochId)); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryTableCreator.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.inject.Injector; import java.util.function.Supplier; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.types.StructType; @FunctionalInterface public interface BigQueryTableCreator { Table create(Injector injector, Supplier schema); } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryWriteBuilder.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext; import com.google.inject.Injector; import java.util.Optional; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.connector.write.BatchWrite; import org.apache.spark.sql.connector.write.LogicalWriteInfo; import org.apache.spark.sql.connector.write.SupportsOverwrite; import org.apache.spark.sql.connector.write.WriteBuilder; import org.apache.spark.sql.connector.write.streaming.StreamingWrite; import org.apache.spark.sql.sources.Filter; public class BigQueryWriteBuilder implements WriteBuilder, SupportsOverwrite { protected final Injector injector; protected final LogicalWriteInfo info; protected final SaveMode mode; @Override public StreamingWrite buildForStreaming() { Optional dataSourceWriterContext = DataSourceWriterContext.create( injector, info.queryId(), info.schema(), mode, info.options()); return new BigQueryStreamingWrite(dataSourceWriterContext.get()); } public BigQueryWriteBuilder(Injector injector, LogicalWriteInfo info, SaveMode mode) { this.injector = injector; this.info = info; this.mode = mode; } @Override public BatchWrite buildForBatch() { Optional dataSourceWriterContext = DataSourceWriterContext.create( injector, info.queryId(), info.schema(), mode, info.options()); return new BigQueryBatchWrite(dataSourceWriterContext.get()); } @Override public WriteBuilder overwrite(Filter[] filters) { return null; } @Override public WriteBuilder truncate() { return new BigQueryWriteBuilder(injector, info, SaveMode.Overwrite); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryDataWriter.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataWriterContext; import java.io.IOException; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.connector.write.DataWriter; import org.apache.spark.sql.connector.write.WriterCommitMessage; public class Spark31BigQueryDataWriter implements DataWriter { private DataWriterContext ctx; public Spark31BigQueryDataWriter(DataWriterContext ctx) { this.ctx = ctx; } @Override public void write(InternalRow record) throws IOException { ctx.write(record); } @Override public WriterCommitMessage commit() throws IOException { return new Spark31BigQueryWriterCommitMessage(ctx.commit()); } @Override public void abort() throws IOException { ctx.abort(); } @Override public void close() throws IOException { ctx.close(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryDataWriterFactory.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.connector.write.DataWriter; import org.apache.spark.sql.connector.write.DataWriterFactory; public class Spark31BigQueryDataWriterFactory implements DataWriterFactory { private DataWriterContextFactory writerContextFactory; public Spark31BigQueryDataWriterFactory( DataWriterContextFactory writerContextFactory) { this.writerContextFactory = writerContextFactory; } @Override public DataWriter createWriter(int partitionId, long taskId) { return new Spark31BigQueryDataWriter( writerContextFactory.createDataWriterContext(partitionId, taskId, 0)); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryScanBuilder.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.bigquery.TableId; import com.google.cloud.spark.bigquery.SupportsQueryPushdown; import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext; import java.util.Objects; import java.util.Optional; import org.apache.spark.sql.connector.read.Batch; import org.apache.spark.sql.connector.read.InputPartition; import org.apache.spark.sql.connector.read.PartitionReaderFactory; import org.apache.spark.sql.connector.read.Scan; import org.apache.spark.sql.connector.read.ScanBuilder; import org.apache.spark.sql.connector.read.Statistics; import org.apache.spark.sql.connector.read.SupportsPushDownFilters; import org.apache.spark.sql.connector.read.SupportsPushDownRequiredColumns; import org.apache.spark.sql.connector.read.SupportsReportStatistics; import org.apache.spark.sql.sources.Filter; import org.apache.spark.sql.types.StructType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Both Scan and ScanBuilder implementation, otherwise estimateStatistics() is not called due to bug * in DataSourceV2Relation */ public class Spark31BigQueryScanBuilder implements Batch, Scan, ScanBuilder, SupportsPushDownFilters, SupportsPushDownRequiredColumns, SupportsReportStatistics, SupportsQueryPushdown { protected final Logger logger = LoggerFactory.getLogger(getClass()); protected BigQueryDataSourceReaderContext ctx; protected InputPartition[] partitions; public Spark31BigQueryScanBuilder(BigQueryDataSourceReaderContext ctx) { this.ctx = ctx; } public TableId getTableId() { return ctx.getTableId(); } @Override public Scan build() { // start creating ReadSession asynchronously // no further pushFilters / pruneColumns expected from this point ctx.build(); return this; // new BigQueryScan(ctx); } @Override public Filter[] pushFilters(Filter[] filters) { ctx.pushFilters(filters); // We tell Spark that all filters were unhandled, in order to trigger DPP if needed // The relevant filters (usually all of them) where pushed to the Read API by `ctx` return filters; } @Override public Filter[] pushedFilters() { // We tell Spark that all filters were pushable, in order to trigger bloom filter if needed return ctx.getAllFilters(); } @Override public void pruneColumns(StructType requiredSchema) { ctx.pruneColumns(requiredSchema); } @Override public StructType readSchema() { return ctx.readSchema(); } @Override public String description() { return String.format( "Reading table [%s], filters [%s], Read session Id : %s ", ctx.getFullTableName(), getPushdownFilters().orElse(""), ctx.getReadSessionId()); } @Override public Batch toBatch() { return this; } @Override public Statistics estimateStatistics() { return new Spark3Statistics(ctx.estimateStatistics()); } @Override public BigQueryRDDFactory getBigQueryRDDFactory() { return ctx.getBigQueryRddFactory(); } @Override public Optional getPushdownFilters() { // Return the combined filters (pushed + global) here since Spark 3.1 does not create a Filter // node in the LogicalPlan return ctx.getCombinedFilter(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Spark31BigQueryScanBuilder that = (Spark31BigQueryScanBuilder) o; return getTableId().equals(that.getTableId()) && readSchema().equals(that.readSchema()) && // compare Spark schemas to ignore field ids getPushdownFilters().equals(that.getPushdownFilters()); } @Override public int hashCode() { return Objects.hash(getTableId(), readSchema(), getPushdownFilters()); } @Override public InputPartition[] planInputPartitions() { // As each result has another template type we cannot set this to the same variable and to share // code if (partitions != null) { return partitions; } if (ctx.enableBatchRead()) { partitions = ctx.planBatchInputPartitionContexts() .map(inputPartitionContext -> new BigQueryInputPartition(inputPartitionContext)) .toArray(InputPartition[]::new); } else { partitions = ctx.planInputPartitionContexts() .map(inputPartitionContext -> new BigQueryInputPartition(inputPartitionContext)) .toArray(InputPartition[]::new); } return partitions; } @Override public PartitionReaderFactory createReaderFactory() { return new BigQueryPartitionReaderFactory(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryTable.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.spark.bigquery.DataSourceVersion; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderModule; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; import com.google.inject.Injector; import java.util.Map; import java.util.Optional; import java.util.Set; import java.util.function.Supplier; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.connector.catalog.SupportsRead; import org.apache.spark.sql.connector.catalog.SupportsWrite; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.connector.catalog.TableCapability; import org.apache.spark.sql.connector.read.ScanBuilder; import org.apache.spark.sql.connector.write.LogicalWriteInfo; import org.apache.spark.sql.connector.write.WriteBuilder; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.util.CaseInsensitiveStringMap; public class Spark31BigQueryTable implements Table, SupportsRead, SupportsWrite { public static final ImmutableSet TABLE_CAPABILITIES = ImmutableSet.of( TableCapability.BATCH_READ, TableCapability.V1_BATCH_WRITE, TableCapability.TRUNCATE, TableCapability.STREAMING_WRITE); protected Injector injector; protected Supplier schemaSupplier; protected TableId tableId; public Spark31BigQueryTable(Injector injector, Supplier schemaSupplier) { this.injector = injector; this.schemaSupplier = schemaSupplier; SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class); // if this is a real table then use it this.tableId = config.getQuery().isPresent() ? null : config.getTableId(); } @Override public ScanBuilder newScanBuilder(CaseInsensitiveStringMap options) { BigQueryDataSourceReaderContext ctx = createBigQueryDataSourceReaderContext(options); return new Spark31BigQueryScanBuilder(ctx); } protected BigQueryDataSourceReaderContext createBigQueryDataSourceReaderContext( CaseInsensitiveStringMap options) { SparkBigQueryConfig tableScanConfig = SparkBigQueryConfig.from( options, ImmutableMap.of(), injector.getInstance(DataSourceVersion.class), injector.getInstance(SparkSession.class), Optional.ofNullable(schemaSupplier.get()), true /* tableIsMandatory */, Optional.ofNullable(tableId)); Injector readerInjector = injector.createChildInjector( new BigQueryDataSourceReaderModule(Optional.of(tableScanConfig))); BigQueryDataSourceReaderContext ctx = readerInjector.getInstance(BigQueryDataSourceReaderContext.class); return ctx; } @Override public String name() { return injector.getInstance(SparkBigQueryConfig.class).getTableId().getTable(); } @Override public StructType schema() { return this.schemaSupplier.get(); } @Override public Set capabilities() { return TABLE_CAPABILITIES; } @Override public WriteBuilder newWriteBuilder(LogicalWriteInfo info) { // SaveMode is not provided by spark 3, it is handled by the DataFrameWriter // The case where mode == SaveMode.Ignore is handled by Spark, so we can assume we can get the // context return new BigQueryWriteBuilder(injector, info, SaveMode.Append); } @Override public Map properties() { SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class); ImmutableMap.Builder propertiesBuilder = ImmutableMap.builder() .put("openlineage.dataset.namespace", "bigquery") .put("openlineage.dataset.storageDatasetFacet.storageLayer", "bigquery"); if (config.getQuery().isPresent()) { propertiesBuilder.put("openlineage.dataset.query", config.getQuery().get()); } else { TableId tableId = config.getTableIdWithExplicitProject(); propertiesBuilder.put("openlineage.dataset.name", BigQueryUtil.friendlyTableName(tableId)); } return propertiesBuilder.build(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryTableProvider.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import static com.google.cloud.bigquery.connector.common.BigQueryUtil.formatTableResult; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableResult; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.spark.bigquery.InjectorBuilder; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.write.CreatableRelationProviderHelper; import com.google.common.collect.ImmutableMap; import com.google.inject.Injector; import io.openlineage.spark.shade.client.OpenLineage; import io.openlineage.spark.shade.client.utils.DatasetIdentifier; import io.openlineage.spark.shade.extension.v1.LineageRelationProvider; import java.util.Locale; import java.util.Map; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.catalyst.util.CaseInsensitiveMap; import org.apache.spark.sql.connector.ExternalCommandRunner; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.connector.catalog.TableProvider; import org.apache.spark.sql.connector.expressions.Transform; import org.apache.spark.sql.sources.BaseRelation; import org.apache.spark.sql.sources.CreatableRelationProvider; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.util.CaseInsensitiveStringMap; import scala.collection.JavaConverters; public class Spark31BigQueryTableProvider extends BaseBigQuerySource implements TableProvider, CreatableRelationProvider, LineageRelationProvider, ExternalCommandRunner { private static final Transform[] EMPTY_TRANSFORM_ARRAY = {}; @Override public StructType inferSchema(CaseInsensitiveStringMap options) { return getBigQueryTableInternal(options).schema(); } @Override public Table getTable( StructType schema, Transform[] partitioning, Map properties) { return Spark3Util.createBigQueryTableInstance(Spark31BigQueryTable::new, schema, properties); } protected Table getBigQueryTableInternal(Map properties) { return Spark3Util.createBigQueryTableInstance(Spark31BigQueryTable::new, null, properties); } @Override public boolean supportsExternalMetadata() { return false; } @Override public BaseRelation createRelation( SQLContext sqlContext, SaveMode mode, scala.collection.immutable.Map parameters, Dataset data) { return new CreatableRelationProviderHelper() .createRelation(sqlContext, mode, parameters, data, ImmutableMap.of()); } @Override public DatasetIdentifier getLineageDatasetIdentifier( String sparkListenerEventName, OpenLineage openLineage, Object sqlContext, Object parameters) { Map properties = JavaConverters.mapAsJavaMap((CaseInsensitiveMap) parameters); Injector injector = new InjectorBuilder().withOptions(properties).build(); SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class); TableId tableId = config.getTableIdWithExplicitProject(); return new DatasetIdentifier(BigQueryUtil.friendlyTableName(tableId), "bigquery"); } @Override public String[] executeCommand(String command, CaseInsensitiveStringMap options) { String trimmedCommand = command.trim().toUpperCase(Locale.ROOT); if (trimmedCommand.startsWith("SELECT") || trimmedCommand.startsWith("WITH")) { throw new IllegalArgumentException( "SELECT and WITH statements are not supported for EXECUTE IMMEDIATE. " + "Please use spark.read.format(\"bigquery\").load(command) instead."); } Injector injector = new InjectorBuilder().withTableIsMandatory(false).withOptions(options).build(); BigQueryClient bqClient = injector.getInstance(BigQueryClient.class); TableResult result = bqClient.query(command); return formatTableResult(result, /* withHeader */ false); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryWriterCommitMessage.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext; import org.apache.spark.sql.connector.write.WriterCommitMessage; public class Spark31BigQueryWriterCommitMessage implements WriterCommitMessage { WriterCommitMessageContext ctx; public Spark31BigQueryWriterCommitMessage(WriterCommitMessageContext ctx) { this.ctx = ctx; } public WriterCommitMessageContext getContext() { return ctx; } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark3Statistics.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.StatisticsContext; import java.util.OptionalLong; import org.apache.spark.sql.connector.read.Statistics; public class Spark3Statistics implements Statistics { private StatisticsContext context; public Spark3Statistics(StatisticsContext context) { this.context = context; } @Override public OptionalLong sizeInBytes() { return context.sizeInBytes(); } @Override public OptionalLong numRows() { return OptionalLong.empty(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark3Util.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.UserAgentProvider; import com.google.cloud.spark.bigquery.DataSourceVersion; import com.google.cloud.spark.bigquery.InjectorBuilder; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.metrics.SparkBigQueryConnectorMetricsUtils; import com.google.inject.Injector; import java.util.Map; import java.util.function.Supplier; import org.apache.spark.SparkContext; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.types.StructType; public class Spark3Util { public static Table createBigQueryTableInstance( BigQueryTableCreator bigQueryTableCreator, StructType sparkProvidedSchema, Map properties) { Injector injector = new InjectorBuilder() .withOptions(properties) .withSchema(sparkProvidedSchema) .withTableIsMandatory(true) .withDataSourceVersion(DataSourceVersion.V2) .build(); BigQueryClient bigQueryClient = injector.getInstance(BigQueryClient.class); SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class); SparkContext sparkContext = injector.getInstance(SparkSession.class).sparkContext(); SparkBigQueryConnectorMetricsUtils.postInputFormatEvent(sparkContext); UserAgentProvider userAgentProvider = injector.getInstance(UserAgentProvider.class); SparkBigQueryConnectorMetricsUtils.postConnectorVersion( sparkContext, userAgentProvider.getConnectorInfo()); Supplier schemaSupplier = () -> { if (sparkProvidedSchema != null) { return sparkProvidedSchema; } Schema schemaFromTable = bigQueryClient.getReadTableSchema(config.toReadTableOptions()); return schemaFromTable != null ? SchemaConverters.from(SchemaConvertersConfiguration.from(config)) .toSpark(schemaFromTable) : null; }; return bigQueryTableCreator.create(injector, schemaSupplier); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark31BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.2-bigquery ${revision} BigQuery DataSource v2 for Spark 3.2 3.2.0 false Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-3.2-bigquery-lib ${project.version} ${project.groupId} spark-bigquery-scala-212-support ${project.version} compile org.apache.spark spark-avro_2.12 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/build/resources/spark-bigquery-connector.properties ================================================ connector.version=${project.version} ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark32BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Spark32BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Spark32BigNumericDataprocServerlessAcceptanceTest() { super("spark-3.2-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32DataprocImage21AcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark32DataprocImage21AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark32DataprocImage21AcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "2.1-debian11", "spark-3.2-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32DataprocImage21DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark32DataprocImage21DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark32DataprocImage21DisableConscryptAcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "2.1-debian11", "spark-3.2-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Spark32ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Spark32ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-3.2-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // spark-3.2-bigquery does not support streaming yet public class Spark32WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Spark32WriteStreamDataprocServerlessAcceptanceTest() { super("spark-3.2-bigquery", "1.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32DirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; public class Spark32DirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark32DirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.DIRECT); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32IndirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.junit.Before; public class Spark32IndirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark32IndirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.INDIRECT); } @Before public void setParquetLoadBehaviour() { // TODO: make this the default value spark.conf().set("enableListInference", "true"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32OpenLineageIntegrationTest.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark32OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {} ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32ReadByFormatIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark32ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase { public Spark32ReadByFormatIntegrationTest() { super("ARROW", /* userProvidedSchemaAllowed */ false); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32ReadFromQueryIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark32ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase { public Spark32ReadFromQueryIntegrationTest() { super(true); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32ReadIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark32ReadIntegrationTest extends ReadIntegrationTestBase { public Spark32ReadIntegrationTest() { super(/* userProvidedSchemaAllowed */ false); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery-lib/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.2-bigquery-lib ${revision} Connector code for BigQuery DataSource v2 for Spark 3.2 3.2.0 true Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-metrics ${project.version} ${project.groupId} spark-3.1-bigquery-lib ${project.version} org.apache.spark spark-avro_2.12 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryPartitionReader.java ================================================ package com.google.cloud.spark.bigquery.v2; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*; import com.google.cloud.spark.bigquery.v2.context.InputPartitionReaderContext; import com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryTaskMetric; import org.apache.spark.sql.connector.metric.CustomTaskMetric; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Spark32BigQueryPartitionReader extends BigQueryPartitionReader { public Logger log = LoggerFactory.getLogger(this.getClass()); private InputPartitionReaderContext context; public Spark32BigQueryPartitionReader(InputPartitionReaderContext context) { super(context); this.context = context; } @Override public CustomTaskMetric[] currentMetricsValues() { log.trace("in current metric values"); return context .getBigQueryStorageReadRowsTracer() .map( bigQueryStorageReadRowsTracer -> new SparkBigQueryTaskMetric[] { new SparkBigQueryTaskMetric( BIG_QUERY_BYTES_READ_METRIC_NAME, bigQueryStorageReadRowsTracer.getBytesRead()), new SparkBigQueryTaskMetric( BIG_QUERY_ROWS_READ_METRIC_NAME, bigQueryStorageReadRowsTracer.getRowsRead()), new SparkBigQueryTaskMetric( BIG_QUERY_SCAN_TIME_METRIC_NAME, bigQueryStorageReadRowsTracer.getScanTimeInMilliSec()), new SparkBigQueryTaskMetric( BIG_QUERY_PARSE_TIME_METRIC_NAME, bigQueryStorageReadRowsTracer.getParseTimeInMilliSec()), new SparkBigQueryTaskMetric( BIG_QUERY_TIME_IN_SPARK_METRIC_NAME, bigQueryStorageReadRowsTracer.getTimeInSparkInMilliSec()), new SparkBigQueryTaskMetric(BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME, 1) }) .orElse(new SparkBigQueryTaskMetric[] {}); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryPartitionReaderFactory.java ================================================ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.InputPartitionContext; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.connector.read.InputPartition; import org.apache.spark.sql.connector.read.PartitionReader; import org.apache.spark.sql.connector.read.PartitionReaderFactory; import org.apache.spark.sql.vectorized.ColumnarBatch; public class Spark32BigQueryPartitionReaderFactory implements PartitionReaderFactory { @Override public PartitionReader createReader(InputPartition partition) { InputPartitionContext ctx = ((BigQueryInputPartition) partition).getContext(); return new Spark32BigQueryPartitionReader<>(ctx.createPartitionReaderContext()); } @Override public PartitionReader createColumnarReader(InputPartition partition) { InputPartitionContext ctx = ((BigQueryInputPartition) partition).getContext(); return new Spark32BigQueryPartitionReader<>(ctx.createPartitionReaderContext()); } @Override public boolean supportColumnarReads(InputPartition partition) { InputPartitionContext ctx = ((BigQueryInputPartition) partition).getContext(); return ctx.supportColumnarReads(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryScanBuilder.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.spark.bigquery.v2.context.ArrowInputPartitionContext; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext; import com.google.cloud.spark.bigquery.v2.customMetrics.*; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import java.util.Arrays; import java.util.List; import java.util.Optional; import org.apache.spark.sql.connector.expressions.Expressions; import org.apache.spark.sql.connector.expressions.NamedReference; import org.apache.spark.sql.connector.metric.CustomMetric; import org.apache.spark.sql.connector.read.InputPartition; import org.apache.spark.sql.connector.read.PartitionReaderFactory; import org.apache.spark.sql.connector.read.SupportsRuntimeFiltering; import org.apache.spark.sql.sources.Filter; public class Spark32BigQueryScanBuilder extends Spark31BigQueryScanBuilder implements SupportsRuntimeFiltering { public Spark32BigQueryScanBuilder(BigQueryDataSourceReaderContext ctx) { super(ctx); } @Override public NamedReference[] filterAttributes() { ImmutableList partitionFields = BigQueryUtil.getPartitionFields(ctx.getTableInfo()); ImmutableList clusteringFields = BigQueryUtil.getClusteringFields(ctx.getTableInfo()); ImmutableSet.Builder filterFieldsBuilder = ImmutableSet.builder(); filterFieldsBuilder.addAll(partitionFields); filterFieldsBuilder.addAll(clusteringFields); ImmutableSet filterFields = filterFieldsBuilder.build(); return Arrays.stream(ctx.readSchema().fieldNames()) .filter(filterFields::contains) .map(Expressions::column) .toArray(NamedReference[]::new); } @Override public void filter(Filter[] filters) { Optional> newInputPartitionContexts = ctx.filter(filters); // re-assign partitions newInputPartitionContexts.ifPresent( arrowInputPartitionContexts -> super.partitions = arrowInputPartitionContexts.stream() .map(BigQueryInputPartition::new) .toArray(InputPartition[]::new)); } @Override public CustomMetric[] supportedCustomMetrics() { return new CustomMetric[] { new SparkBigQueryBytesReadMetric(), new SparkBigQueryRowsReadMetric(), new SparkBigQueryScanTimeMetric(), new SparkBigQueryParseTimeMetric(), new SparkBigQueryTimeInSparkMetric(), new SparkBigQueryNumberOfReadStreamsMetric() }; } @Override public PartitionReaderFactory createReaderFactory() { return new Spark32BigQueryPartitionReaderFactory(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryTable.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext; import com.google.inject.Injector; import java.util.function.Supplier; import org.apache.spark.sql.connector.read.ScanBuilder; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.util.CaseInsensitiveStringMap; public class Spark32BigQueryTable extends Spark31BigQueryTable { protected Spark32BigQueryTable(Injector injector, Supplier schemaSupplier) { super(injector, schemaSupplier); } @Override public ScanBuilder newScanBuilder(CaseInsensitiveStringMap options) { BigQueryDataSourceReaderContext ctx = createBigQueryDataSourceReaderContext(options); return new Spark32BigQueryScanBuilder(ctx); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryTableProvider.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import java.util.Map; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.connector.expressions.Transform; import org.apache.spark.sql.types.StructType; public class Spark32BigQueryTableProvider extends Spark31BigQueryTableProvider { @Override public Table getTable( StructType schema, Transform[] partitioning, Map properties) { return Spark3Util.createBigQueryTableInstance(Spark32BigQueryTable::new, schema, properties); } @Override protected Table getBigQueryTableInternal(Map properties) { return Spark3Util.createBigQueryTableInstance(Spark32BigQueryTable::new, null, properties); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark32BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.3-bigquery ${revision} BigQuery DataSource v2 for Spark 3.3 3.3.0 false Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-3.3-bigquery-lib ${project.version} ${project.groupId} spark-bigquery-scala-212-support ${project.version} compile org.apache.spark spark-avro_2.12 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/build/resources/spark-bigquery-connector.properties ================================================ connector.version=${project.version} ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark33BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Spark33BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Spark33BigNumericDataprocServerlessAcceptanceTest() { super("spark-3.3-bigquery", "2.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33DataprocImage21AcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark33DataprocImage21AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark33DataprocImage21AcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "2.1-debian11", "spark-3.3-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33DataprocImage21DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark33DataprocImage21DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark33DataprocImage21DisableConscryptAcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "2.1-debian11", "spark-3.3-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; public class Spark33ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Spark33ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-3.3-bigquery", "2.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // spark-3.3-bigquery does not support streaming yet public class Spark33WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Spark33WriteStreamDataprocServerlessAcceptanceTest() { super("spark-3.3-bigquery", "2.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33DirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; public class Spark33DirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark33DirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.DIRECT); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33IndirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.junit.Before; public class Spark33IndirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark33IndirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.INDIRECT); } @Before public void setParquetLoadBehaviour() { // TODO: make this the default value spark.conf().set("enableListInference", "true"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33OpenLineageIntegrationTest.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark33OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {} ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33ReadByFormatIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark33ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase { public Spark33ReadByFormatIntegrationTest() { super("ARROW", /* userProvidedSchemaAllowed */ false); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33ReadFromQueryIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark33ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase { public Spark33ReadFromQueryIntegrationTest() { super(true); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33ReadIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark33ReadIntegrationTest extends ReadIntegrationTestBase { public Spark33ReadIntegrationTest() { super(/* userProvidedSchemaAllowed */ false); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery-lib/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.3-bigquery-lib ${revision} Connector code for BigQuery DataSource v2 for Spark 3.3 3.3.0 true Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-3.2-bigquery-lib ${project.version} org.apache.spark spark-avro_2.13 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark33BigQueryScanBuilder.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext; public class Spark33BigQueryScanBuilder extends Spark32BigQueryScanBuilder { public Spark33BigQueryScanBuilder(BigQueryDataSourceReaderContext ctx) { super(ctx); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark33BigQueryTable.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext; import com.google.inject.Injector; import java.util.function.Supplier; import org.apache.spark.sql.connector.read.ScanBuilder; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.util.CaseInsensitiveStringMap; public class Spark33BigQueryTable extends Spark32BigQueryTable { protected Spark33BigQueryTable(Injector injector, Supplier schemaSupplier) { super(injector, schemaSupplier); } @Override public ScanBuilder newScanBuilder(CaseInsensitiveStringMap options) { BigQueryDataSourceReaderContext ctx = createBigQueryDataSourceReaderContext(options); return new Spark33BigQueryScanBuilder(ctx); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark33BigQueryTableProvider.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import java.util.Map; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.connector.expressions.Transform; import org.apache.spark.sql.types.StructType; public class Spark33BigQueryTableProvider extends Spark32BigQueryTableProvider { // empty @Override public Table getTable( StructType schema, Transform[] partitioning, Map properties) { return Spark3Util.createBigQueryTableInstance(Spark33BigQueryTable::new, schema, properties); } @Override protected Table getBigQueryTableInternal(Map properties) { return Spark3Util.createBigQueryTableInstance(Spark33BigQueryTable::new, null, properties); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.3-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark33BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.4-bigquery ${revision} BigQuery DataSource v2 for Spark 3.4 3.4.0 false Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-3.4-bigquery-lib ${project.version} ${project.groupId} spark-bigquery-scala-212-support ${project.version} compile org.apache.spark spark-avro_2.12 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/build/resources/spark-bigquery-connector.properties ================================================ connector.version=${project.version} ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark34BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark34BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // Waiting for the serverless dataproc.sparkBqConnector.uri property public class Spark34BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Spark34BigNumericDataprocServerlessAcceptanceTest() { super("spark-3.4-bigquery", "2.1"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark34ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // Waiting for the serverless dataproc.sparkBqConnector.uri property public class Spark34ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Spark34ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-3.4-bigquery", "2.1"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark34WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // spark-3.4-bigquery does not support streaming yet public class Spark34WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Spark34WriteStreamDataprocServerlessAcceptanceTest() { super("spark-3.4-bigquery", "2.1"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34DirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.apache.spark.sql.types.DataTypes; public class Spark34DirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark34DirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.DIRECT, DataTypes.TimestampNTZType); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34IndirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.apache.spark.sql.types.DataTypes; import org.junit.Before; public class Spark34IndirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark34IndirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.INDIRECT, DataTypes.TimestampNTZType); } @Before public void setParquetLoadBehaviour() { // TODO: make this the default value spark.conf().set("enableListInference", "true"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34OpenLineageIntegrationTest.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark34OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {} ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34ReadByFormatIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; import org.apache.spark.sql.types.DataTypes; public class Spark34ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase { public Spark34ReadByFormatIntegrationTest() { super("ARROW", /* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34ReadFromQueryIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark34ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase { public Spark34ReadFromQueryIntegrationTest() { super(true); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34ReadIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; import org.apache.spark.sql.types.DataTypes; public class Spark34ReadIntegrationTest extends ReadIntegrationTestBase { public Spark34ReadIntegrationTest() { super(/* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery-lib/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.4-bigquery-lib ${revision} Connector code for BigQuery DataSource v2 for Spark 3.4 3.4.0 2.13 true Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-3.3-bigquery-lib ${project.version} org.apache.spark spark-avro_2.13 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark34BigQueryTable.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.inject.Injector; import java.util.function.Supplier; import org.apache.spark.sql.types.StructType; public class Spark34BigQueryTable extends Spark33BigQueryTable { protected Spark34BigQueryTable(Injector injector, Supplier schemaSupplier) { super(injector, schemaSupplier); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark34BigQueryTableProvider.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import java.util.Map; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.connector.expressions.Transform; import org.apache.spark.sql.types.StructType; public class Spark34BigQueryTableProvider extends Spark33BigQueryTableProvider { // empty @Override public Table getTable( StructType schema, Transform[] partitioning, Map properties) { return Spark3Util.createBigQueryTableInstance(Spark34BigQueryTable::new, schema, properties); } @Override protected Table getBigQueryTableInternal(Map properties) { return Spark3Util.createBigQueryTableInstance(Spark34BigQueryTable::new, null, properties); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/TimestampNTZTypeConverter.java ================================================ /* * Copyright 2023 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.StandardSQLTypeName; import com.google.cloud.bigquery.storage.v1.CivilTimeEncoder; import com.google.cloud.spark.bigquery.TypeConverter; import com.google.protobuf.DescriptorProtos; import org.apache.spark.sql.types.DataType; import org.apache.spark.sql.types.DataTypes; public class TimestampNTZTypeConverter implements TypeConverter { @Override public DataType toSparkType(LegacySQLTypeName bigQueryType) { if (supportsBigQueryType(bigQueryType)) { return DataTypes.TimestampNTZType; } throw new IllegalArgumentException("Data type not supported : " + bigQueryType); } @Override public LegacySQLTypeName toBigQueryType(DataType sparkType) { if (supportsSparkType(sparkType)) { return LegacySQLTypeName.DATETIME; } throw new IllegalArgumentException("Data type not supported : " + sparkType); } @Override public DescriptorProtos.FieldDescriptorProto.Type toProtoFieldType(DataType sparkType) { if (supportsSparkType(sparkType)) { return DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64; } throw new IllegalArgumentException("Data type not supported : " + sparkType); } @Override public boolean supportsBigQueryType(LegacySQLTypeName bigQueryType) { return bigQueryType.getStandardType().equals(StandardSQLTypeName.DATETIME); } @Override public boolean supportsSparkType(DataType sparkType) { return sparkType.sameType(DataTypes.TimestampNTZType); } @Override public Long sparkToProtoValue(Object sparkValue) { java.time.LocalDateTime javaLocalTime = (java.time.LocalDateTime) sparkValue; org.threeten.bp.LocalDateTime threeTenLocalTime = org.threeten.bp.LocalDateTime.of( javaLocalTime.getYear(), javaLocalTime.getMonthValue(), javaLocalTime.getDayOfMonth(), javaLocalTime.getHour(), javaLocalTime.getMinute(), javaLocalTime.getSecond(), javaLocalTime.getNano()); return CivilTimeEncoder.encodePacked64DatetimeMicros(threeTenLocalTime); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.TypeConverter ================================================ com.google.cloud.spark.bigquery.v2.TimestampNTZTypeConverter ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/test/java/com/google/cloud/spark/bigquery/v2/TimestampNTZTypeConverterTest.java ================================================ /* * Copyright 2023 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertThrows; import com.google.cloud.bigquery.LegacySQLTypeName; import com.google.cloud.bigquery.storage.v1.CivilTimeEncoder; import com.google.protobuf.DescriptorProtos; import java.time.LocalDateTime; import org.apache.spark.sql.types.DataTypes; import org.junit.Test; public class TimestampNTZTypeConverterTest { private final TimestampNTZTypeConverter timestampNTZTypeConverter = new TimestampNTZTypeConverter(); @Test public void testToSparkType() { assertThat(timestampNTZTypeConverter.toSparkType(LegacySQLTypeName.DATETIME)) .isEqualTo(DataTypes.TimestampNTZType); } @Test public void testToSparkTypeThrowsException() { assertThrows( IllegalArgumentException.class, () -> { timestampNTZTypeConverter.toSparkType(LegacySQLTypeName.FLOAT); }); } @Test public void testToBigQueryType() { assertThat(timestampNTZTypeConverter.toBigQueryType(DataTypes.TimestampNTZType)) .isEqualTo(LegacySQLTypeName.DATETIME); } @Test public void testToBigQueryTypeThrowsException() { assertThrows( IllegalArgumentException.class, () -> { timestampNTZTypeConverter.toBigQueryType(DataTypes.TimestampType); }); } @Test public void testToProtoFieldType() { assertThat(timestampNTZTypeConverter.toProtoFieldType(DataTypes.TimestampNTZType)) .isEqualTo(DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64); } @Test public void testToProtoFieldTypeThrowsException() { assertThrows( IllegalArgumentException.class, () -> { timestampNTZTypeConverter.toProtoFieldType(DataTypes.TimestampType); }); } @Test public void testSupportsBigQueryType() { assertThat(timestampNTZTypeConverter.supportsBigQueryType(LegacySQLTypeName.DATETIME)) .isEqualTo(true); assertThat(timestampNTZTypeConverter.supportsBigQueryType(LegacySQLTypeName.TIMESTAMP)) .isEqualTo(false); } @Test public void testSupportsSparkType() { assertThat(timestampNTZTypeConverter.supportsSparkType(DataTypes.TimestampNTZType)) .isEqualTo(true); assertThat(timestampNTZTypeConverter.supportsSparkType(DataTypes.TimestampType)) .isEqualTo(false); } @Test public void testSparkToProtoValue() { LocalDateTime javaLocalTime = LocalDateTime.of(2023, 9, 18, 14, 30, 15, 234 * 1_000_000); long protoDateTime = timestampNTZTypeConverter.sparkToProtoValue(javaLocalTime); org.threeten.bp.LocalDateTime threeTenLocalTime = org.threeten.bp.LocalDateTime.of( javaLocalTime.getYear(), javaLocalTime.getMonthValue(), javaLocalTime.getDayOfMonth(), javaLocalTime.getHour(), javaLocalTime.getMinute(), javaLocalTime.getSecond(), javaLocalTime.getNano()); assertThat(threeTenLocalTime) .isEqualTo(CivilTimeEncoder.decodePacked64DatetimeMicros(protoDateTime)); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark34BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.5-bigquery ${revision} BigQuery DataSource v2 for Spark 3.5 ${jdk11plus.argLine} [11,12) 2.13 3.5.0 false Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-3.5-bigquery-lib ${project.version} ${project.groupId} spark-bigquery-scala-212-support ${project.version} compile org.apache.spark spark-avro_${scala.binary.version} ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/build/resources/spark-bigquery-connector.properties ================================================ connector.version=${project.version} ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark35BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // Waiting for the serverless spark 3.5 runtime public class Spark35BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Spark35BigNumericDataprocServerlessAcceptanceTest() { super("spark-3.5-bigquery", "2.2"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35CatalogAcceptanceTest.java ================================================ /// * // * Copyright 2018 Google Inc. All Rights Reserved. // * // * 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. // */ // package com.google.cloud.spark.bigquery.acceptance; // // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY; // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.DATAPROC_ENDPOINT; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.PROJECT_ID; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.REGION; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset; // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName; // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar; // import static com.google.common.truth.Truth.assertThat; // import static com.google.common.truth.Truth.assertWithMessage; // import static org.junit.Assume.assumeTrue; // // import com.google.cloud.bigquery.BigQuery; // import com.google.cloud.bigquery.BigQueryOptions; // import com.google.cloud.bigquery.Dataset; // import com.google.cloud.bigquery.Table; // import com.google.cloud.dataproc.v1.*; // import com.google.common.collect.ImmutableList; // import com.google.common.io.ByteStreams; // import java.io.*; // import java.nio.charset.StandardCharsets; // import java.nio.file.Path; // import java.nio.file.Paths; // import java.time.Duration; // import java.util.Arrays; // import java.util.List; // import java.util.Map; // import java.util.concurrent.CompletableFuture; // import java.util.concurrent.TimeUnit; // import java.util.stream.Collectors; // import org.junit.Before; // import org.junit.Ignore; // import org.junit.Test; // // public class CatalogIntegrationTest { // // protected static final ClusterProperty DISABLE_CONSCRYPT = // ClusterProperty.of("dataproc:dataproc.conscrypt.provider.enable", "false", "nc"); // protected static final ImmutableList DISABLE_CONSCRYPT_LIST = // ImmutableList.builder().add(DISABLE_CONSCRYPT).build(); // // private AcceptanceTestContext context; // private boolean sparkStreamingSupported; // // protected CatalogIntegrationTest(AcceptanceTestContext context) { // this(context, true); // } // // protected CatalogIntegrationTest( // AcceptanceTestContext context, boolean sparkStreamingSupported) { // this.context = context; // this.sparkStreamingSupported = sparkStreamingSupported; // } // // protected static AcceptanceTestContext setup( // String dataprocImageVersion, // String connectorJarPrefix, // List clusterProperties) // throws Exception { // String clusterPropertiesMarkers = // clusterProperties.isEmpty() // ? "" // : clusterProperties.stream() // .map(ClusterProperty::getMarker) // .collect(Collectors.joining("-", "-", "")); // String testId = // String.format( // "%s-%s%s%s", // System.currentTimeMillis(), // dataprocImageVersion.charAt(0), // dataprocImageVersion.charAt(2), // clusterPropertiesMarkers); // Map properties = // clusterProperties.stream() // .collect(Collectors.toMap(ClusterProperty::getKey, ClusterProperty::getValue)); // String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId); // String connectorJarUri = testBaseGcsDir + "/connector.jar"; // uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, connectorJarUri); // // String clusterName = // createClusterIfNeeded(dataprocImageVersion, testId, properties, connectorJarUri); // AcceptanceTestContext acceptanceTestContext = // new AcceptanceTestContext(testId, clusterName, testBaseGcsDir, connectorJarUri); // createBqDataset(acceptanceTestContext.bqDataset); // return acceptanceTestContext; // } // // @Before // public void refreshTestTableNames() { // context.refreshTableNames(); // } // // protected static void tearDown(AcceptanceTestContext context) throws Exception { // if (context != null) { // terminateCluster(context.clusterId); // AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir); // deleteBqDatasetAndTables(context.bqDataset); // } // } // // protected static String createClusterIfNeeded( // String dataprocImageVersion, // String testId, // Map properties, // String connectorJarUri) // throws Exception { // String clusterName = generateClusterName(testId); // cluster( // client -> // client // .createClusterAsync( // PROJECT_ID, // REGION, // createCluster(clusterName, dataprocImageVersion, properties, connectorJarUri)) // .get()); // return clusterName; // } // // protected static void terminateCluster(String clusterName) throws Exception { // cluster(client -> client.deleteClusterAsync(PROJECT_ID, REGION, clusterName).get()); // } // // private static void cluster(ThrowingConsumer command) throws Exception // { // try (ClusterControllerClient clusterControllerClient = // ClusterControllerClient.create( // ClusterControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) { // command.accept(clusterControllerClient); // } // } // // private static Cluster createCluster( // String clusterName, // String dataprocImageVersion, // Map properties, // String connectorJarUri) { // return Cluster.newBuilder() // .setClusterName(clusterName) // .setProjectId(PROJECT_ID) // .setConfig( // ClusterConfig.newBuilder() // .setGceClusterConfig( // GceClusterConfig.newBuilder() // .setNetworkUri("default") // .setInternalIpOnly(false) // .setZoneUri(REGION + "-a") // .putMetadata("SPARK_BQ_CONNECTOR_URL", connectorJarUri)) // .setMasterConfig( // InstanceGroupConfig.newBuilder() // .setNumInstances(1) // .setMachineTypeUri("n1-standard-4") // .setDiskConfig( // DiskConfig.newBuilder() // .setBootDiskType("pd-standard") // .setBootDiskSizeGb(300) // .setNumLocalSsds(0))) // .setWorkerConfig( // InstanceGroupConfig.newBuilder() // .setNumInstances(2) // .setMachineTypeUri("n1-standard-4") // .setDiskConfig( // DiskConfig.newBuilder() // .setBootDiskType("pd-standard") // .setBootDiskSizeGb(300) // .setNumLocalSsds(0))) // .setEndpointConfig( // EndpointConfig.newBuilder().setEnableHttpPortAccess(true).build()) // .setSoftwareConfig( // SoftwareConfig.newBuilder() // .setImageVersion(dataprocImageVersion) // .putAllProperties(properties))) // .build(); // } // // @Test // @Ignore // public void testRead() throws Exception { // String testName = "test-read"; // Job result = // createAndRunPythonJob( // testName, // "read_shakespeare.py", // null, // Arrays.asList(context.getResultsDirUri(testName)), // 120); // // String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); // assertThat(output.trim()).isEqualTo("spark,10"); // } // // @Test // @Ignore // public void writeStream() throws Exception { // // TODO: Should be removed once streaming is supported in DSv2 // assumeTrue("Spark streaming is not supported by this connector", sparkStreamingSupported); // String testName = "write-stream-test"; // String jsonFileName = "write_stream_data.json"; // String jsonFileUri = context.testBaseGcsDir + "/" + testName + "/json/" + jsonFileName; // // AcceptanceTestUtils.uploadToGcs( // getClass().getResourceAsStream("/acceptance/" + jsonFileName), // jsonFileUri, // "application/json"); // // Job result = // createAndRunPythonJob( // testName, // "write_stream.py", // null, // Arrays.asList( // context.testBaseGcsDir + "/" + testName + "/json/", // context.bqDataset, // context.bqStreamTable, // AcceptanceTestUtils.BUCKET), // 120); // // int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable); // assertThat(numOfRows == 2); // } // // @Test // @Ignore // public void testBigNumeric() throws Exception { // String testName = "test-big-numeric"; // Path pythonLibTargetDir = Paths.get("../../spark-bigquery-python-lib/target"); // Path pythonLibZip = // AcceptanceTestUtils.getArtifact(pythonLibTargetDir, "spark-bigquery", ".zip"); // String zipFileUri = // context.testBaseGcsDir + "/" + testName + "/big_numeric_acceptance_test.zip"; // AcceptanceTestUtils.uploadToGcs( // new FileInputStream(pythonLibZip.toFile()), zipFileUri, "application/zip"); // // runBqQuery( // String.format( // AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE, // context.bqDataset, // context.bqTable)); // // String tableName = context.bqDataset + "." + context.bqTable; // // Job result = // createAndRunPythonJob( // testName, // "big_numeric.py", // zipFileUri, // Arrays.asList(tableName, context.getResultsDirUri(testName)), // 120); // // String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); // assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + "," + MAX_BIG_NUMERIC); // } // // @Test // public void testSparkDml_explicitTableCreation() throws Exception { // String testName = "spark-dml-explicit-table"; // // Job result = createAndRunSparkSqlJob(testName, /* outputTable */ "N/A", /* duration */ 120); // String output = AcceptanceTestUtils.getDriverOutput(result); // assertThat(output.trim()).contains("spark\t10"); // } // // @Test // public void testSparkDml_createTableInDefaultDataset() throws Exception { // String testName = "spark-dml-create-table-in-default-dataset"; // // testWithTableInDefaultDataset(testName); // } // // @Test // public void testSparkDml_createTableAsSelectInDefaultDataset() throws Exception { // String testName = "spark-dml-create-table-as-select-in-default-dataset"; // // testWithTableInDefaultDataset(testName); // } // // private void testWithTableInDefaultDataset(String testName) throws Exception { // BigQuery bq = BigQueryOptions.getDefaultInstance().getService(); // Dataset defaultDataset = bq.getDataset("default"); // assertWithMessage("This test assume that the a dataset named `default` exists in the project") // .that(defaultDataset) // .isNotNull(); // // Job result = createAndRunSparkSqlJob(testName, /* outputTable */ "N/A", /* duration */ 120); // // Table table = null; // try { // table = bq.getTable("default", context.bqTable); // assertThat(table).isNotNull(); // assertThat(table.getNumRows().intValue()).isEqualTo(1); // } finally { // if (table != null) { // assertThat(table.delete()).isTrue(); // } // } // } // // @Test // public void testSparkDml_createTableInCustomDataset() throws Exception { // String testName = "spark-dml-custom-dataset"; // // BigQuery bq = BigQueryOptions.getDefaultInstance().getService(); // Dataset defaultDataset = bq.getDataset(context.bqDataset); // assertWithMessage( // "This test assume that the a dataset named `" // + context.bqDataset // + "` exists in the project") // .that(defaultDataset) // .isNotNull(); // // Job result = createAndRunSparkSqlJob(testName, /* outputTable */ "N/A", /* duration */ 120); // // Table table = null; // try { // table = bq.getTable("default", context.bqTable); // assertThat(table).isNotNull(); // assertThat(table.getNumRows().intValue()).isEqualTo(1); // } finally { // if (table != null) { // assertThat(table.delete()).isTrue(); // } // } // } // // private Job createAndRunPythonJob( // String testName, String pythonFile, String pythonZipUri, List args, long duration) // throws Exception { // AcceptanceTestUtils.uploadToGcs( // getClass().getResourceAsStream("/acceptance/" + pythonFile), // context.getScriptUri(testName), // "text/x-python"); // // Job job = // Job.newBuilder() // .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId)) // .putLabels("test-name", testName) // .setPysparkJob(createPySparkJobBuilder(testName, pythonZipUri, args)) // .build(); // // return runAndWait(job, Duration.ofSeconds(duration)); // } // // private PySparkJob.Builder createPySparkJobBuilder( // String testName, String pythonZipUri, List args) { // PySparkJob.Builder builder = // PySparkJob.newBuilder() // .setMainPythonFileUri(context.getScriptUri(testName)) // .addJarFileUris(context.connectorJarUri); // // if (pythonZipUri != null && !pythonZipUri.isEmpty()) { // builder.addPythonFileUris(pythonZipUri); // builder.addFileUris(pythonZipUri); // } // // if (args != null && !args.isEmpty()) { // builder.addAllArgs(args); // } // // return builder; // } // // private Job createAndRunSparkSqlJob(String testName, String outputTable, long duration) // throws Exception { // // InputStream sqlScriptSourceStream = // getClass().getResourceAsStream("/acceptance/" + testName + ".sql"); // assertWithMessage("Could not find SQL script for " + testName + ".sql") // .that(sqlScriptSourceStream) // .isNotNull(); // String sqlScriptSource = // new String(ByteStreams.toByteArray(sqlScriptSourceStream), StandardCharsets.UTF_8); // // String sqlScript = // sqlScriptSource // .replace("${DATASET}", context.bqDataset) // .replace("${TABLE}", context.bqTable) // .replace("${OUTPUT_TABLE}", outputTable); // // AcceptanceTestUtils.uploadToGcs( // new ByteArrayInputStream(sqlScript.getBytes(StandardCharsets.UTF_8)), // context.getScriptUri(testName), // "application/x-sql"); // // Job job = // Job.newBuilder() // .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId)) // .putLabels("test-name", testName) // .setSparkSqlJob(createSparkSqlJobBuilder(testName)) // .build(); // // return runAndWait(job, Duration.ofSeconds(duration)); // } // // private SparkSqlJob.Builder createSparkSqlJobBuilder(String testName) { // return SparkSqlJob.newBuilder() // .setQueryFileUri(context.getScriptUri(testName)) // .addJarFileUris(context.connectorJarUri) // .setLoggingConfig( // LoggingConfig.newBuilder() // .putDriverLogLevels("com", LoggingConfig.Level.DEBUG) // .putDriverLogLevels("io", LoggingConfig.Level.DEBUG) // .putDriverLogLevels("org", LoggingConfig.Level.DEBUG) // .putDriverLogLevels("net", LoggingConfig.Level.DEBUG) // .build()) // .putProperties("spark.sql.legacy.createHiveTableByDefault", "false") // .putProperties("spark.sql.sources.default", "bigquery") // .putProperties("spark.datasource.bigquery.writeMethod", "direct"); // } // // private Job runAndWait(Job job, Duration timeout) throws Exception { // try (JobControllerClient jobControllerClient = // JobControllerClient.create( // JobControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) { // Job request = jobControllerClient.submitJob(PROJECT_ID, REGION, job); // String jobId = request.getReference().getJobId(); // CompletableFuture finishedJobFuture = // CompletableFuture.supplyAsync( // () -> waitForJobCompletion(jobControllerClient, PROJECT_ID, REGION, jobId)); // Job jobInfo = finishedJobFuture.get(timeout.getSeconds(), TimeUnit.SECONDS); // assertThat(jobInfo.getStatus().getState()).isEqualTo(JobStatus.State.DONE); // return jobInfo; // } // } // // Job waitForJobCompletion( // JobControllerClient jobControllerClient, String projectId, String region, String jobId) { // while (true) { // // Poll the service periodically until the Job is in a finished state. // Job jobInfo = jobControllerClient.getJob(projectId, region, jobId); // switch (jobInfo.getStatus().getState()) { // case DONE: // case CANCELLED: // case ERROR: // return jobInfo; // default: // try { // // Wait a second in between polling attempts. // TimeUnit.SECONDS.sleep(1); // } catch (InterruptedException e) { // throw new RuntimeException(e); // } // } // } // } // // @FunctionalInterface // private interface ThrowingConsumer { // void accept(T t) throws Exception; // } // // protected static class ClusterProperty { // private String key; // private String value; // private String marker; // // private ClusterProperty(String key, String value, String marker) { // this.key = key; // this.value = value; // this.marker = marker; // } // // protected static ClusterProperty of(String key, String value, String marker) { // return new ClusterProperty(key, value, marker); // } // // public String getKey() { // return key; // } // // public String getValue() { // return value; // } // // public String getMarker() { // return marker; // } // } // } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35DataprocImage22AcceptanceTest.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark35DataprocImage22AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark35DataprocImage22AcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "2.2-debian12", "spark-3.5-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35DataprocImage22DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 2024 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark35DataprocImage22DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark35DataprocImage22DisableConscryptAcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "2.2-debian12", "spark-3.5-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // Waiting for the serverless dataproc.sparkBqConnector.uri property public class Spark35ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Spark35ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-3.5-bigquery", "2.2"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // spark-3.5-bigquery does not support streaming yet public class Spark35WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Spark35WriteStreamDataprocServerlessAcceptanceTest() { super("spark-3.5-bigquery", "2.2"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35CatalogIntegrationTest.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark35CatalogIntegrationTest extends CatalogIntegrationTestBase { // all tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35DirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.apache.spark.sql.types.DataTypes; public class Spark35DirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark35DirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.DIRECT, DataTypes.TimestampNTZType); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35IndirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.apache.spark.sql.types.DataTypes; import org.junit.Before; public class Spark35IndirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark35IndirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.INDIRECT, DataTypes.TimestampNTZType); } @Before public void setParquetLoadBehaviour() { // TODO: make this the default value spark.conf().set("enableListInference", "true"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35OpenLineageIntegrationTest.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark35OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {} ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35ReadByFormatIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; import java.util.Arrays; import java.util.Collection; import org.apache.spark.sql.types.DataTypes; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; @RunWith(Parameterized.class) public class Spark35ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase { @Parameterized.Parameters public static Collection data() { return Arrays.asList("AVRO", "ARROW"); } public Spark35ReadByFormatIntegrationTest(String dataFormat) { super(dataFormat, /* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35ReadFromQueryIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark35ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase { public Spark35ReadFromQueryIntegrationTest() { super(true); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35ReadIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; import org.apache.spark.sql.types.DataTypes; public class Spark35ReadIntegrationTest extends ReadIntegrationTestBase { public Spark35ReadIntegrationTest() { super(/* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/resources/acceptance/spark-dml-create-table-as-select-in-default-dataset.sql ================================================ CREATE TABLE ${TABLE}_shakespeare OPTIONS (table='bigquery-public-data.samples.shakespeare'); CREATE TABLE ${TABLE} AS SELECT word, SUM(word_count) as word_count FROM ${TABLE}_shakespeare WHERE word='spark' GROUP BY word; ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/resources/acceptance/spark-dml-create-table-in-default-dataset.sql ================================================ CREATE TABLE ${TABLE} (id int, data string); INSERT INTO ${TABLE} VALUES (1, 'one'); ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/resources/acceptance/spark-dml-custom-dataset.sql ================================================ CREATE DATABASE ${DATASET}; CREATE TABLE ${DATASET}.${TABLE} (id int, data string); INSERT INTO ${DATASET}.${TABLE} VALUES (1, 'one'); ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery/src/test/resources/acceptance/spark-dml-explicit-table.sql ================================================ CREATE TABLE default.${TABLE} OPTIONS (table='bigquery-public-data.samples.shakespeare'); SELECT word, SUM(word_count) FROM default.${TABLE} WHERE word='spark' GROUP BY word; -- cleanup DROP TABLE default.${TABLE}; ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery-lib/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-3.5-bigquery-lib ${revision} Connector code for BigQuery DataSource v2 for Spark 3.5 ${jdk11plus.argLine} [11,12) 3.5.0 2.13 true Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-3.4-bigquery-lib ${project.version} org.apache.spark spark-avro_${scala.binary.version} ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/BigQueryCatalog.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import com.google.api.client.googleapis.json.GoogleJsonResponseException; import com.google.cloud.bigquery.BigQueryException; import com.google.cloud.bigquery.Dataset; import com.google.cloud.bigquery.DatasetId; import com.google.cloud.bigquery.DatasetInfo; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryConnectorException; import com.google.cloud.spark.bigquery.v2.BigQueryIdentifier; import com.google.cloud.spark.bigquery.v2.Spark35BigQueryTable; import com.google.cloud.spark.bigquery.v2.Spark3Util; import com.google.common.base.Preconditions; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.google.common.cache.CacheLoader; import com.google.common.cache.LoadingCache; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Streams; import com.google.inject.Injector; import java.util.Arrays; import java.util.Map; import java.util.Optional; import java.util.ServiceLoader; import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit; import java.util.stream.StreamSupport; import org.apache.spark.sql.catalyst.analysis.NamespaceAlreadyExistsException; import org.apache.spark.sql.catalyst.analysis.NoSuchNamespaceException; import org.apache.spark.sql.catalyst.analysis.NoSuchTableException; import org.apache.spark.sql.catalyst.analysis.NonEmptyNamespaceException; import org.apache.spark.sql.catalyst.analysis.TableAlreadyExistsException; import org.apache.spark.sql.connector.catalog.Identifier; import org.apache.spark.sql.connector.catalog.NamespaceChange; import org.apache.spark.sql.connector.catalog.SupportsNamespaces; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.connector.catalog.TableCatalog; import org.apache.spark.sql.connector.catalog.TableChange; import org.apache.spark.sql.connector.catalog.TableProvider; import org.apache.spark.sql.connector.expressions.Transform; import org.apache.spark.sql.sources.DataSourceRegister; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.util.CaseInsensitiveStringMap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class BigQueryCatalog implements TableCatalog, SupportsNamespaces { private static final Logger logger = LoggerFactory.getLogger(BigQueryCatalog.class); private static final String[] DEFAULT_NAMESPACE = {"default"}; private static final Cache identifierToTableCache = CacheBuilder.newBuilder().expireAfterWrite(30, TimeUnit.MINUTES).maximumSize(1000).build(); private final LoadingCache datasetExistenceCache = CacheBuilder.newBuilder() .maximumSize(1000) .expireAfterWrite(15, TimeUnit.MINUTES) .build(CacheLoader.from(this::bigQueryDatasetExists)); private TableProvider tableProvider; private BigQueryClient bigQueryClient; private SchemaConverters schemaConverters; private Map options; @Override public void initialize(String name, CaseInsensitiveStringMap caseInsensitiveStringMap) { logger.info( "Initializing BigQuery table catalog [{}] with options: {}", name, caseInsensitiveStringMap); this.options = caseInsensitiveStringMap.asCaseSensitiveMap(); try { Injector injector = new InjectorBuilder() .withOptions(caseInsensitiveStringMap.asCaseSensitiveMap()) .withTableIsMandatory(false) .build(); tableProvider = StreamSupport.stream(ServiceLoader.load(DataSourceRegister.class).spliterator(), false) .filter(candidate -> candidate.shortName().equals("bigquery")) .map(candidate -> (TableProvider) candidate) .findFirst() .orElseThrow( () -> new IllegalStateException("Could not find a BigQuery TableProvider")); bigQueryClient = injector.getInstance(BigQueryClient.class); schemaConverters = SchemaConverters.from( SchemaConvertersConfiguration.from(injector.getInstance(SparkBigQueryConfig.class))); logger.info("BigQuery table catalog [{}] initialized successfully", name); } catch (Exception e) { logger.error("Failed to initialize BigQuery catalog [{}]", name, e); throw new BigQueryConnectorException("Failed to initialize BigQuery catalog: " + name, e); } } @Override public String name() { return "bigquery"; } @Override public String[] defaultNamespace() { return DEFAULT_NAMESPACE; } @Override public Identifier[] listTables(String[] namespace) throws NoSuchNamespaceException { Preconditions.checkNotNull(namespace, "namespace cannot be null"); Preconditions.checkArgument(namespace.length == 1, "BigQuery supports only one namespace"); logger.debug("list tables [{}])", namespace[0]); DatasetId datasetId = DatasetId.of(namespace[0]); try { return StreamSupport.stream( bigQueryClient.listTables(datasetId, TableDefinition.Type.TABLE).spliterator(), false) .map(com.google.cloud.bigquery.Table::getTableId) .map(BigQueryIdentifier::of) .toArray(BigQueryIdentifier[]::new); } catch (BigQueryException e) { if (e.getCause() != null && e.getCause() instanceof GoogleJsonResponseException) { GoogleJsonResponseException gsre = (GoogleJsonResponseException) e.getCause(); if (gsre.getStatusCode() == 404) { // the dataset does not exist logger.debug("Dataset does not exist", e); throw new NoSuchNamespaceException(namespace); } } throw new BigQueryConnectorException( "Error listing tables in " + Arrays.toString(namespace), e); } } @Override public Table loadTable(Identifier identifier) throws NoSuchTableException { logger.debug("loading table [{}])", format(identifier)); try { if (!tableExists(identifier)) { throw new NoSuchBigQueryTableException(identifier); } return identifierToTableCache.get( identifier.toString(), () -> // TODO: reuse injector Spark3Util.createBigQueryTableInstance( Spark35BigQueryTable::new, null, toLoadProperties(identifier))); } catch (ExecutionException e) { throw new BigQueryConnectorException("Problem loading table " + identifier, e); } } Map toLoadProperties(Identifier identifier) { ImmutableMap.Builder result = ImmutableMap.builder(); Map processedOptions = new java.util.HashMap<>(options); if (processedOptions.containsKey("projectId")) { processedOptions.put("project", processedOptions.remove("projectId")); } result.putAll(processedOptions); switch (identifier.namespace().length) { case 1: result.put("dataset", identifier.namespace()[0]); break; case 2: result.put("project", identifier.namespace()[0]); result.put("dataset", identifier.namespace()[1]); break; default: throw new IllegalArgumentException( "The identifier [" + identifier + "] is not recognized by BigQuery"); } result.put("table", identifier.name()); return result.buildKeepingLast(); } @Override public void invalidateTable(Identifier identifier) { logger.debug("invalidating table [{}])", format(identifier)); throw new UnsupportedOperationException("Cannot invalidate table in BigQuery"); } @Override public boolean tableExists(Identifier identifier) { logger.debug("checking existence of table [{}])", format(identifier)); return bigQueryClient.tableExists(toTableId(identifier)); } TableInfo loadBigQueryTable(Identifier identifier) { return bigQueryClient.getTable(toTableId(identifier)); } Optional loadBigQueryRestTable( Identifier identifier) { return bigQueryClient.getRestTable(toTableId(identifier)); } @Override public Table createTable( Identifier identifier, StructType structType, Transform[] transforms, Map properties) throws TableAlreadyExistsException, NoSuchNamespaceException { logger.debug("creating table [{}])", format(identifier)); if (tableExplicitlySet(properties)) { logger.debug("Mapping Spark table to BigQuery table)"); // As the table is mapped to an actual table in BigQuery, we are relying on the BigQuery // schema try { return identifierToTableCache.get( identifier.toString(), () -> Spark3Util.createBigQueryTableInstance( Spark35BigQueryTable::new, /* schema */ null, properties)); } catch (ExecutionException e) { throw new BigQueryConnectorException("Error creating table " + identifier, e); } } Schema schema = schemaConverters.toBigQuerySchema(structType); bigQueryClient.createTable( toTableId(identifier), schema, BigQueryClient.CreateTableOptions.of( Optional.empty(), ImmutableMap.of(), Optional.empty())); ImmutableMap.Builder getTableProperties = ImmutableMap.builder().putAll(properties); // if the user provided an alternative table we do not want to ignore it if (!tableExplicitlySet(properties)) { getTableProperties.put("dataset", identifier.namespace()[0]).put("table", identifier.name()); } // TODO: Use the table constructor directly using the catalog's injector return tableProvider.getTable(structType, transforms, getTableProperties.buildKeepingLast()); } private static boolean tableExplicitlySet(Map properties) { if (properties.containsKey("table")) { return true; } if (properties.containsKey("path")) { return true; } return false; } @Override public Table alterTable(Identifier identifier, TableChange... tableChanges) throws NoSuchTableException { throw new UnsupportedOperationException("Cannot alter table in BigQuery"); } @Override public boolean dropTable(Identifier identifier) { logger.debug("dropping table [{}])", format(identifier)); TableId tableId = toTableId(identifier); if (!bigQueryClient.tableExists(tableId)) { return false; } if (bigQueryClient.deleteTable(tableId)) { identifierToTableCache.invalidate(identifier.toString()); return true; } return false; } @Override public boolean purgeTable(Identifier ident) throws UnsupportedOperationException { throw new UnsupportedOperationException("Cannot purge table in BigQuery"); } @Override public void renameTable(Identifier oldIdent, Identifier newIdent) throws NoSuchTableException, TableAlreadyExistsException { throw new UnsupportedOperationException("Cannot rename table in BigQuery"); } private String format(Identifier identifier) { return String.format("%s.%s", Arrays.toString(identifier.namespace()), identifier.name()); } static TableId toTableId(Identifier identifier) { if (identifier.namespace().length == 1) { return TableId.of(identifier.namespace()[0], identifier.name()); } if (identifier.namespace().length == 2) { return TableId.of(identifier.namespace()[0], identifier.namespace()[1], identifier.name()); } throw new IllegalArgumentException( "The identifier [" + identifier + "] is not recognized by BigQuery"); } @Override public String[][] listNamespaces() throws NoSuchNamespaceException { if (bigQueryClient == null) { throw new IllegalStateException("BigQuery catalog not properly initialized"); } try { return Streams.stream(bigQueryClient.listDatasets()) .map(Dataset::getDatasetId) .map(this::toNamespace) .toArray(String[][]::new); } catch (Exception e) { logger.error("Error listing namespaces", e); throw new BigQueryConnectorException("Failed to list namespaces", e); } } private String[] toNamespace(DatasetId datasetId) { return new String[] {datasetId.getDataset()}; } private DatasetId toDatasetId(String[] namespace) { switch (namespace.length) { case 1: return DatasetId.of(namespace[0]); case 2: return DatasetId.of(namespace[0], namespace[1]); default: throw new IllegalArgumentException( "The identifier [" + Arrays.toString(namespace) + "] is not recognized by BigQuery"); } } // based on JDBCTableCatalog.listNamespaces(namespace) @Override public String[][] listNamespaces(String[] namespace) throws NoSuchNamespaceException { switch (namespace.length) { case 0: return listNamespaces(); case 1: if (namespaceExists(namespace)) { return new String[0][]; } } // unsupported case throw new NoSuchNamespaceException(namespace); } @Override public boolean namespaceExists(String[] namespace) { return datasetExistenceCache.getUnchecked(namespace); } private boolean bigQueryDatasetExists(String[] namespace) { return bigQueryClient.datasetExists(toDatasetId(namespace)); } @Override public Map loadNamespaceMetadata(String[] namespace) throws NoSuchNamespaceException { DatasetInfo dataset = bigQueryClient.getDataset(toDatasetId(namespace)); ImmutableMap.Builder result = ImmutableMap.builder(); result.put("bigquery_location", dataset.getLocation()); result.put("creationTime", dataset.getCreationTime().toString()); Optional.ofNullable(dataset.getDescription()) .ifPresent(description -> result.put("comment", description)); return result.build(); } @Override public void createNamespace(String[] namespace, Map metadata) throws NamespaceAlreadyExistsException { Preconditions.checkArgument( namespace.length == 1, "BigQuery does not support nested namespaces"); if (namespaceExists(namespace)) { throw new NamespaceAlreadyExistsException(namespace); } bigQueryClient.createDataset(DatasetId.of(namespace[0]), metadata); } @Override public void alterNamespace(String[] namespace, NamespaceChange... changes) throws NoSuchNamespaceException {} @Override public boolean dropNamespace(String[] namespace, boolean cascade) throws NoSuchNamespaceException, NonEmptyNamespaceException { if (!namespaceExists(namespace)) { throw new NoSuchNamespaceException(namespace); } if (!cascade && listTables(namespace).length > 0) { throw new NonEmptyNamespaceException(namespace); } return bigQueryClient.deleteDataset(toDatasetId(namespace), cascade); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/NoSuchBigQueryTableException.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery; import org.apache.spark.sql.catalyst.analysis.NoSuchTableException; import org.apache.spark.sql.connector.catalog.Identifier; import scala.Option; public class NoSuchBigQueryTableException extends NoSuchTableException { public NoSuchBigQueryTableException(String db, String table) { super(db, table); } public NoSuchBigQueryTableException(Identifier tableIdent) { super(tableIdent); } public NoSuchBigQueryTableException(String message, Option cause) { super(message, cause); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryIdentifier.java ================================================ /* * Copyright 2022 Google LLC * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import org.apache.spark.sql.connector.catalog.Identifier; public class BigQueryIdentifier implements Identifier { private final TableId tableId; public BigQueryIdentifier(TableId tableId) { this.tableId = tableId; } public static BigQueryIdentifier of(TableId tableId) { return new BigQueryIdentifier(tableId); } @Override public String[] namespace() { return tableId.getProject() == null ? new String[] {tableId.getDataset()} : new String[] {tableId.getProject(), tableId.getDataset()}; } @Override public String name() { return tableId.getTable(); } public TableId getTableId() { return tableId; } @Override public String toString() { return "BigQueryIdentifier{" + "tableId=" + BigQueryUtil.friendlyTableName(tableId) + '}'; } } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark35BigQueryTable.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.inject.Injector; import java.util.function.Supplier; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.connector.write.LogicalWriteInfo; import org.apache.spark.sql.connector.write.WriteBuilder; import org.apache.spark.sql.types.StructType; public class Spark35BigQueryTable extends Spark34BigQueryTable { public Spark35BigQueryTable(Injector injector, Supplier schemaSupplier) { super(injector, schemaSupplier); } @Override public WriteBuilder newWriteBuilder(LogicalWriteInfo info) { // SaveMode is not provided by spark 3, it is handled by the DataFrameWriter // The case where mode == SaveMode.Ignore is handled by Spark, so we can assume we can get the // context return new Spark35BigQueryWriteBuilder(injector, info, SaveMode.Append); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark35BigQueryTableProvider.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import java.util.Map; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.connector.expressions.Transform; import org.apache.spark.sql.types.StructType; public class Spark35BigQueryTableProvider extends Spark34BigQueryTableProvider { // empty @Override public Table getTable( StructType schema, Transform[] partitioning, Map properties) { return Spark3Util.createBigQueryTableInstance(Spark35BigQueryTable::new, schema, properties); } @Override protected Table getBigQueryTableInternal(Map properties) { return Spark3Util.createBigQueryTableInstance(Spark35BigQueryTable::new, null, properties); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark35BigQueryWriteBuilder.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.cloud.spark.bigquery.write.CreatableRelationProviderHelper; import com.google.inject.Injector; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.connector.write.LogicalWriteInfo; import org.apache.spark.sql.connector.write.V1Write; import org.apache.spark.sql.connector.write.Write; import org.apache.spark.sql.connector.write.streaming.StreamingWrite; import org.apache.spark.sql.sources.InsertableRelation; public class Spark35BigQueryWriteBuilder extends BigQueryWriteBuilder implements Write, V1Write { public Spark35BigQueryWriteBuilder(Injector injector, LogicalWriteInfo info, SaveMode mode) { super(injector, info, mode); } @Override public Write build() { return this; } @Override public InsertableRelation toInsertableRelation() { return new CreatableRelationProviderHelper() .createBigQueryInsertableRelationFromInjector(info.schema(), mode, injector); } @Override public StreamingWrite toStreaming() { return super.buildForStreaming(); } } ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.TypeConverter ================================================ com.google.cloud.spark.bigquery.v2.TimestampNTZTypeConverter ================================================ FILE: spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark35BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-4.0-bigquery ${revision} BigQuery DataSource v2 for Spark 4.0 17 2.13 4.0.0 false [17,18) ${jdk11plus.argLine} Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo org.apache.arrow arrow-bom ${arrow.spark4.version} import pom org.apache.arrow arrow-memory-netty-buffer-patch ${arrow.spark4.version} ${project.groupId} spark-4.0-bigquery-lib ${project.version} org.apache.spark spark-avro_2.13 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/build/resources/spark-bigquery-connector.properties ================================================ connector.version=${project.version} ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark40BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 3.03 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // Waiting for the serverless spark 4.0 runtime public class Spark40BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Spark40BigNumericDataprocServerlessAcceptanceTest() { super("spark-4.0-bigquery", "3.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40CatalogAcceptanceTest.java ================================================ /// * // * Copyright 2018 Google Inc. All Rights Reserved. // * // * 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. // */ // package com.google.cloud.spark.bigquery.acceptance; // // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY; // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.DATAPROC_ENDPOINT; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.PROJECT_ID; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.REGION; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset; // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName; // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar; // import static com.google.common.truth.Truth.assertThat; // import static com.google.common.truth.Truth.assertWithMessage; // import static org.junit.Assume.assumeTrue; // // import com.google.cloud.bigquery.BigQuery; // import com.google.cloud.bigquery.BigQueryOptions; // import com.google.cloud.bigquery.Dataset; // import com.google.cloud.bigquery.Table; // import com.google.cloud.dataproc.v1.*; // import com.google.common.collect.ImmutableList; // import com.google.common.io.ByteStreams; // import java.io.*; // import java.nio.charset.StandardCharsets; // import java.nio.file.Path; // import java.nio.file.Paths; // import java.time.Duration; // import java.util.Arrays; // import java.util.List; // import java.util.Map; // import java.util.concurrent.CompletableFuture; // import java.util.concurrent.TimeUnit; // import java.util.stream.Collectors; // import org.junit.Before; // import org.junit.Ignore; // import org.junit.Test; // // public class CatalogIntegrationTest { // // protected static final ClusterProperty DISABLE_CONSCRYPT = // ClusterProperty.of("dataproc:dataproc.conscrypt.provider.enable", "false", "nc"); // protected static final ImmutableList DISABLE_CONSCRYPT_LIST = // ImmutableList.builder().add(DISABLE_CONSCRYPT).build(); // // private AcceptanceTestContext context; // private boolean sparkStreamingSupported; // // protected CatalogIntegrationTest(AcceptanceTestContext context) { // this(context, true); // } // // protected CatalogIntegrationTest( // AcceptanceTestContext context, boolean sparkStreamingSupported) { // this.context = context; // this.sparkStreamingSupported = sparkStreamingSupported; // } // // protected static AcceptanceTestContext setup( // String dataprocImageVersion, // String connectorJarPrefix, // List clusterProperties) // throws Exception { // String clusterPropertiesMarkers = // clusterProperties.isEmpty() // ? "" // : clusterProperties.stream() // .map(ClusterProperty::getMarker) // .collect(Collectors.joining("-", "-", "")); // String testId = // String.format( // "%s-%s%s%s", // System.currentTimeMillis(), // dataprocImageVersion.charAt(0), // dataprocImageVersion.charAt(2), // clusterPropertiesMarkers); // Map properties = // clusterProperties.stream() // .collect(Collectors.toMap(ClusterProperty::getKey, ClusterProperty::getValue)); // String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId); // String connectorJarUri = testBaseGcsDir + "/connector.jar"; // uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, connectorJarUri); // // String clusterName = // createClusterIfNeeded(dataprocImageVersion, testId, properties, connectorJarUri); // AcceptanceTestContext acceptanceTestContext = // new AcceptanceTestContext(testId, clusterName, testBaseGcsDir, connectorJarUri); // createBqDataset(acceptanceTestContext.bqDataset); // return acceptanceTestContext; // } // // @Before // public void refreshTestTableNames() { // context.refreshTableNames(); // } // // protected static void tearDown(AcceptanceTestContext context) throws Exception { // if (context != null) { // terminateCluster(context.clusterId); // AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir); // deleteBqDatasetAndTables(context.bqDataset); // } // } // // protected static String createClusterIfNeeded( // String dataprocImageVersion, // String testId, // Map properties, // String connectorJarUri) // throws Exception { // String clusterName = generateClusterName(testId); // cluster( // client -> // client // .createClusterAsync( // PROJECT_ID, // REGION, // createCluster(clusterName, dataprocImageVersion, properties, connectorJarUri)) // .get()); // return clusterName; // } // // protected static void terminateCluster(String clusterName) throws Exception { // cluster(client -> client.deleteClusterAsync(PROJECT_ID, REGION, clusterName).get()); // } // // private static void cluster(ThrowingConsumer command) throws Exception // { // try (ClusterControllerClient clusterControllerClient = // ClusterControllerClient.create( // ClusterControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) { // command.accept(clusterControllerClient); // } // } // // private static Cluster createCluster( // String clusterName, // String dataprocImageVersion, // Map properties, // String connectorJarUri) { // return Cluster.newBuilder() // .setClusterName(clusterName) // .setProjectId(PROJECT_ID) // .setConfig( // ClusterConfig.newBuilder() // .setGceClusterConfig( // GceClusterConfig.newBuilder() // .setNetworkUri("default") // .setInternalIpOnly(false) // .setZoneUri(REGION + "-a") // .putMetadata("SPARK_BQ_CONNECTOR_URL", connectorJarUri)) // .setMasterConfig( // InstanceGroupConfig.newBuilder() // .setNumInstances(1) // .setMachineTypeUri("n1-standard-4") // .setDiskConfig( // DiskConfig.newBuilder() // .setBootDiskType("pd-standard") // .setBootDiskSizeGb(300) // .setNumLocalSsds(0))) // .setWorkerConfig( // InstanceGroupConfig.newBuilder() // .setNumInstances(2) // .setMachineTypeUri("n1-standard-4") // .setDiskConfig( // DiskConfig.newBuilder() // .setBootDiskType("pd-standard") // .setBootDiskSizeGb(300) // .setNumLocalSsds(0))) // .setEndpointConfig( // EndpointConfig.newBuilder().setEnableHttpPortAccess(true).build()) // .setSoftwareConfig( // SoftwareConfig.newBuilder() // .setImageVersion(dataprocImageVersion) // .putAllProperties(properties))) // .build(); // } // // @Test // @Ignore // public void testRead() throws Exception { // String testName = "test-read"; // Job result = // createAndRunPythonJob( // testName, // "read_shakespeare.py", // null, // Arrays.asList(context.getResultsDirUri(testName)), // 120); // // String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); // assertThat(output.trim()).isEqualTo("spark,10"); // } // // @Test // @Ignore // public void writeStream() throws Exception { // // TODO: Should be removed once streaming is supported in DSv2 // assumeTrue("Spark streaming is not supported by this connector", sparkStreamingSupported); // String testName = "write-stream-test"; // String jsonFileName = "write_stream_data.json"; // String jsonFileUri = context.testBaseGcsDir + "/" + testName + "/json/" + jsonFileName; // // AcceptanceTestUtils.uploadToGcs( // getClass().getResourceAsStream("/acceptance/" + jsonFileName), // jsonFileUri, // "application/json"); // // Job result = // createAndRunPythonJob( // testName, // "write_stream.py", // null, // Arrays.asList( // context.testBaseGcsDir + "/" + testName + "/json/", // context.bqDataset, // context.bqStreamTable, // AcceptanceTestUtils.BUCKET), // 120); // // int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable); // assertThat(numOfRows == 2); // } // // @Test // @Ignore // public void testBigNumeric() throws Exception { // String testName = "test-big-numeric"; // Path pythonLibTargetDir = Paths.get("../../spark-bigquery-python-lib/target"); // Path pythonLibZip = // AcceptanceTestUtils.getArtifact(pythonLibTargetDir, "spark-bigquery", ".zip"); // String zipFileUri = // context.testBaseGcsDir + "/" + testName + "/big_numeric_acceptance_test.zip"; // AcceptanceTestUtils.uploadToGcs( // new FileInputStream(pythonLibZip.toFile()), zipFileUri, "application/zip"); // // runBqQuery( // String.format( // AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE, // context.bqDataset, // context.bqTable)); // // String tableName = context.bqDataset + "." + context.bqTable; // // Job result = // createAndRunPythonJob( // testName, // "big_numeric.py", // zipFileUri, // Arrays.asList(tableName, context.getResultsDirUri(testName)), // 120); // // String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); // assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + "," + MAX_BIG_NUMERIC); // } // // @Test // public void testSparkDml_explicitTableCreation() throws Exception { // String testName = "spark-dml-explicit-table"; // // Job result = createAndRunSparkSqlJob(testName, /* outputTable */ "N/A", /* duration */ 120); // String output = AcceptanceTestUtils.getDriverOutput(result); // assertThat(output.trim()).contains("spark\t10"); // } // // @Test // public void testSparkDml_createTableInDefaultDataset() throws Exception { // String testName = "spark-dml-create-table-in-default-dataset"; // // testWithTableInDefaultDataset(testName); // } // // @Test // public void testSparkDml_createTableAsSelectInDefaultDataset() throws Exception { // String testName = "spark-dml-create-table-as-select-in-default-dataset"; // // testWithTableInDefaultDataset(testName); // } // // private void testWithTableInDefaultDataset(String testName) throws Exception { // BigQuery bq = BigQueryOptions.getDefaultInstance().getService(); // Dataset defaultDataset = bq.getDataset("default"); // assertWithMessage("This test assume that the a dataset named `default` exists in the project") // .that(defaultDataset) // .isNotNull(); // // Job result = createAndRunSparkSqlJob(testName, /* outputTable */ "N/A", /* duration */ 120); // // Table table = null; // try { // table = bq.getTable("default", context.bqTable); // assertThat(table).isNotNull(); // assertThat(table.getNumRows().intValue()).isEqualTo(1); // } finally { // if (table != null) { // assertThat(table.delete()).isTrue(); // } // } // } // // @Test // public void testSparkDml_createTableInCustomDataset() throws Exception { // String testName = "spark-dml-custom-dataset"; // // BigQuery bq = BigQueryOptions.getDefaultInstance().getService(); // Dataset defaultDataset = bq.getDataset(context.bqDataset); // assertWithMessage( // "This test assume that the a dataset named `" // + context.bqDataset // + "` exists in the project") // .that(defaultDataset) // .isNotNull(); // // Job result = createAndRunSparkSqlJob(testName, /* outputTable */ "N/A", /* duration */ 120); // // Table table = null; // try { // table = bq.getTable("default", context.bqTable); // assertThat(table).isNotNull(); // assertThat(table.getNumRows().intValue()).isEqualTo(1); // } finally { // if (table != null) { // assertThat(table.delete()).isTrue(); // } // } // } // // private Job createAndRunPythonJob( // String testName, String pythonFile, String pythonZipUri, List args, long duration) // throws Exception { // AcceptanceTestUtils.uploadToGcs( // getClass().getResourceAsStream("/acceptance/" + pythonFile), // context.getScriptUri(testName), // "text/x-python"); // // Job job = // Job.newBuilder() // .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId)) // .putLabels("test-name", testName) // .setPysparkJob(createPySparkJobBuilder(testName, pythonZipUri, args)) // .build(); // // return runAndWait(job, Duration.ofSeconds(duration)); // } // // private PySparkJob.Builder createPySparkJobBuilder( // String testName, String pythonZipUri, List args) { // PySparkJob.Builder builder = // PySparkJob.newBuilder() // .setMainPythonFileUri(context.getScriptUri(testName)) // .addJarFileUris(context.connectorJarUri); // // if (pythonZipUri != null && !pythonZipUri.isEmpty()) { // builder.addPythonFileUris(pythonZipUri); // builder.addFileUris(pythonZipUri); // } // // if (args != null && !args.isEmpty()) { // builder.addAllArgs(args); // } // // return builder; // } // // private Job createAndRunSparkSqlJob(String testName, String outputTable, long duration) // throws Exception { // // InputStream sqlScriptSourceStream = // getClass().getResourceAsStream("/acceptance/" + testName + ".sql"); // assertWithMessage("Could not find SQL script for " + testName + ".sql") // .that(sqlScriptSourceStream) // .isNotNull(); // String sqlScriptSource = // new String(ByteStreams.toByteArray(sqlScriptSourceStream), StandardCharsets.UTF_8); // // String sqlScript = // sqlScriptSource // .replace("${DATASET}", context.bqDataset) // .replace("${TABLE}", context.bqTable) // .replace("${OUTPUT_TABLE}", outputTable); // // AcceptanceTestUtils.uploadToGcs( // new ByteArrayInputStream(sqlScript.getBytes(StandardCharsets.UTF_8)), // context.getScriptUri(testName), // "application/x-sql"); // // Job job = // Job.newBuilder() // .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId)) // .putLabels("test-name", testName) // .setSparkSqlJob(createSparkSqlJobBuilder(testName)) // .build(); // // return runAndWait(job, Duration.ofSeconds(duration)); // } // // private SparkSqlJob.Builder createSparkSqlJobBuilder(String testName) { // return SparkSqlJob.newBuilder() // .setQueryFileUri(context.getScriptUri(testName)) // .addJarFileUris(context.connectorJarUri) // .setLoggingConfig( // LoggingConfig.newBuilder() // .putDriverLogLevels("com", LoggingConfig.Level.DEBUG) // .putDriverLogLevels("io", LoggingConfig.Level.DEBUG) // .putDriverLogLevels("org", LoggingConfig.Level.DEBUG) // .putDriverLogLevels("net", LoggingConfig.Level.DEBUG) // .build()) // .putProperties("spark.sql.legacy.createHiveTableByDefault", "false") // .putProperties("spark.sql.sources.default", "bigquery") // .putProperties("spark.datasource.bigquery.writeMethod", "direct"); // } // // private Job runAndWait(Job job, Duration timeout) throws Exception { // try (JobControllerClient jobControllerClient = // JobControllerClient.create( // JobControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) { // Job request = jobControllerClient.submitJob(PROJECT_ID, REGION, job); // String jobId = request.getReference().getJobId(); // CompletableFuture finishedJobFuture = // CompletableFuture.supplyAsync( // () -> waitForJobCompletion(jobControllerClient, PROJECT_ID, REGION, jobId)); // Job jobInfo = finishedJobFuture.get(timeout.getSeconds(), TimeUnit.SECONDS); // assertThat(jobInfo.getStatus().getState()).isEqualTo(JobStatus.State.DONE); // return jobInfo; // } // } // // Job waitForJobCompletion( // JobControllerClient jobControllerClient, String projectId, String region, String jobId) { // while (true) { // // Poll the service periodically until the Job is in a finished state. // Job jobInfo = jobControllerClient.getJob(projectId, region, jobId); // switch (jobInfo.getStatus().getState()) { // case DONE: // case CANCELLED: // case ERROR: // return jobInfo; // default: // try { // // Wait a second in between polling attempts. // TimeUnit.SECONDS.sleep(1); // } catch (InterruptedException e) { // throw new RuntimeException(e); // } // } // } // } // // @FunctionalInterface // private interface ThrowingConsumer { // void accept(T t) throws Exception; // } // // protected static class ClusterProperty { // private String key; // private String value; // private String marker; // // private ClusterProperty(String key, String value, String marker) { // this.key = key; // this.value = value; // this.marker = marker; // } // // protected static ClusterProperty of(String key, String value, String marker) { // return new ClusterProperty(key, value, marker); // } // // public String getKey() { // return key; // } // // public String getValue() { // return value; // } // // public String getMarker() { // return marker; // } // } // } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40DataprocImage30AcceptanceTest.java ================================================ /* * Copyright 3.04 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark40DataprocImage30AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark40DataprocImage30AcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "3.0-debian12", "spark-4.0-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40DataprocImage30DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 3.04 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark40DataprocImage30DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark40DataprocImage30DisableConscryptAcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "3.0-debian12", "spark-4.0-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 3.03 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore("Waiting for the serverless spark 4.0 runtime") public class Spark40ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Spark40ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-4.0-bigquery", "3.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 3.03 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore("Waiting for the serverless spark 4.0 runtime, no stream support yet") public class Spark40WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Spark40WriteStreamDataprocServerlessAcceptanceTest() { super("spark-4.0-bigquery", "3.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40CatalogIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark40CatalogIntegrationTest extends CatalogIntegrationTestBase { // all tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40DirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.apache.spark.sql.types.DataTypes; public class Spark40DirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark40DirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.DIRECT, DataTypes.TimestampNTZType); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40IndirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.apache.spark.sql.types.DataTypes; import org.junit.Before; public class Spark40IndirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark40IndirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.INDIRECT, DataTypes.TimestampNTZType); } @Before public void setParquetLoadBehaviour() { // TODO: make this the default value spark.conf().set("enableListInference", "true"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40OpenLineageIntegrationTest.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark40OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {} ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40ReadByFormatIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; import org.apache.spark.sql.types.DataTypes; public class Spark40ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase { public Spark40ReadByFormatIntegrationTest() { super("ARROW", /* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40ReadFromQueryIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark40ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase { public Spark40ReadFromQueryIntegrationTest() { super(true); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40ReadIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; import org.apache.spark.sql.types.DataTypes; public class Spark40ReadIntegrationTest extends ReadIntegrationTestBase { public Spark40ReadIntegrationTest() { super(/* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/resources/acceptance/spark-dml-create-table-as-select-in-default-dataset.sql ================================================ CREATE TABLE ${TABLE}_shakespeare OPTIONS (table='bigquery-public-data.samples.shakespeare'); CREATE TABLE ${TABLE} AS SELECT word, SUM(word_count) as word_count FROM ${TABLE}_shakespeare WHERE word='spark' GROUP BY word; ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/resources/acceptance/spark-dml-create-table-in-default-dataset.sql ================================================ CREATE TABLE ${TABLE} (id int, data string); INSERT INTO ${TABLE} VALUES (1, 'one'); ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/resources/acceptance/spark-dml-custom-dataset.sql ================================================ CREATE DATABASE ${DATASET}; CREATE TABLE ${DATASET}.${TABLE} (id int, data string); INSERT INTO ${DATASET}.${TABLE} VALUES (1, 'one'); ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery/src/test/resources/acceptance/spark-dml-explicit-table.sql ================================================ CREATE TABLE default.${TABLE} OPTIONS (table='bigquery-public-data.samples.shakespeare'); SELECT word, SUM(word_count) FROM default.${TABLE} WHERE word='spark' GROUP BY word; -- cleanup DROP TABLE default.${TABLE}; ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery-lib/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-4.0-bigquery-lib ${revision} Connector code for BigQuery DataSource v2 for Spark 4.0 17 4.0.0 2.13 true [17,18) ${jdk11plus.argLine} Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo org.apache.arrow arrow-bom ${arrow.spark4.version} import pom org.apache.arrow arrow-memory-netty-buffer-patch ${arrow.spark4.version} ${project.groupId} spark-3.5-bigquery-lib ${project.parent.version} org.apache.spark spark-avro_2.13 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark40BigQueryTable.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.inject.Injector; import java.util.function.Supplier; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.connector.write.LogicalWriteInfo; import org.apache.spark.sql.connector.write.WriteBuilder; import org.apache.spark.sql.types.StructType; public class Spark40BigQueryTable extends Spark35BigQueryTable { public Spark40BigQueryTable(Injector injector, Supplier schemaSupplier) { super(injector, schemaSupplier); } @Override public WriteBuilder newWriteBuilder(LogicalWriteInfo info) { // SaveMode is not provided by spark 3, it is handled by the DataFrameWriter // The case where mode == SaveMode.Ignore is handled by Spark, so we can assume we can get the // context return new Spark40BigQueryWriteBuilder(injector, info, SaveMode.Append); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark40BigQueryTableProvider.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import java.util.Map; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.connector.expressions.Transform; import org.apache.spark.sql.types.StructType; public class Spark40BigQueryTableProvider extends Spark35BigQueryTableProvider { // empty @Override public Table getTable( StructType schema, Transform[] partitioning, Map properties) { return Spark3Util.createBigQueryTableInstance(Spark40BigQueryTable::new, schema, properties); } @Override protected Table getBigQueryTableInternal(Map properties) { return Spark3Util.createBigQueryTableInstance(Spark40BigQueryTable::new, null, properties); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark40BigQueryWriteBuilder.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.inject.Injector; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.connector.write.LogicalWriteInfo; import org.apache.spark.sql.connector.write.V1Write; import org.apache.spark.sql.connector.write.Write; public class Spark40BigQueryWriteBuilder extends Spark35BigQueryWriteBuilder implements Write, V1Write { public Spark40BigQueryWriteBuilder(Injector injector, LogicalWriteInfo info, SaveMode mode) { super(injector, info, mode); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.TypeConverter ================================================ com.google.cloud.spark.bigquery.v2.TimestampNTZTypeConverter ================================================ FILE: spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark40BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-4.1-bigquery ${revision}-preview BigQuery DataSource v2 for Spark 4.1 17 2.13 4.1.0 false [17,18) ${jdk11plus.argLine} Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo org.apache.arrow arrow-bom ${arrow.spark4.version} import pom org.apache.arrow arrow-memory-netty-buffer-patch ${arrow.spark4.version} ${project.groupId} spark-4.1-bigquery-lib ${project.version} org.apache.spark spark-avro_2.13 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/build/resources/spark-bigquery-connector.properties ================================================ connector.version=${project.version} ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark41BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41BigNumericDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 3.03 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore // Waiting for the serverless spark 4.0 runtime public class Spark41BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase { public Spark41BigNumericDataprocServerlessAcceptanceTest() { super("spark-4.1-bigquery", "3.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41CatalogAcceptanceTest.java ================================================ /// * // * Copyright 2018 Google Inc. All Rights Reserved. // * // * 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. // */ // package com.google.cloud.spark.bigquery.acceptance; // // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY; // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.DATAPROC_ENDPOINT; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.PROJECT_ID; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.REGION; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset; // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName; // import static // com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery; // import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar; // import static com.google.common.truth.Truth.assertThat; // import static com.google.common.truth.Truth.assertWithMessage; // import static org.junit.Assume.assumeTrue; // // import com.google.cloud.bigquery.BigQuery; // import com.google.cloud.bigquery.BigQueryOptions; // import com.google.cloud.bigquery.Dataset; // import com.google.cloud.bigquery.Table; // import com.google.cloud.dataproc.v1.*; // import com.google.common.collect.ImmutableList; // import com.google.common.io.ByteStreams; // import java.io.*; // import java.nio.charset.StandardCharsets; // import java.nio.file.Path; // import java.nio.file.Paths; // import java.time.Duration; // import java.util.Arrays; // import java.util.List; // import java.util.Map; // import java.util.concurrent.CompletableFuture; // import java.util.concurrent.TimeUnit; // import java.util.stream.Collectors; // import org.junit.Before; // import org.junit.Ignore; // import org.junit.Test; // // public class CatalogIntegrationTest { // // protected static final ClusterProperty DISABLE_CONSCRYPT = // ClusterProperty.of("dataproc:dataproc.conscrypt.provider.enable", "false", "nc"); // protected static final ImmutableList DISABLE_CONSCRYPT_LIST = // ImmutableList.builder().add(DISABLE_CONSCRYPT).build(); // // private AcceptanceTestContext context; // private boolean sparkStreamingSupported; // // protected CatalogIntegrationTest(AcceptanceTestContext context) { // this(context, true); // } // // protected CatalogIntegrationTest( // AcceptanceTestContext context, boolean sparkStreamingSupported) { // this.context = context; // this.sparkStreamingSupported = sparkStreamingSupported; // } // // protected static AcceptanceTestContext setup( // String dataprocImageVersion, // String connectorJarPrefix, // List clusterProperties) // throws Exception { // String clusterPropertiesMarkers = // clusterProperties.isEmpty() // ? "" // : clusterProperties.stream() // .map(ClusterProperty::getMarker) // .collect(Collectors.joining("-", "-", "")); // String testId = // String.format( // "%s-%s%s%s", // System.currentTimeMillis(), // dataprocImageVersion.charAt(0), // dataprocImageVersion.charAt(2), // clusterPropertiesMarkers); // Map properties = // clusterProperties.stream() // .collect(Collectors.toMap(ClusterProperty::getKey, ClusterProperty::getValue)); // String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId); // String connectorJarUri = testBaseGcsDir + "/connector.jar"; // uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, connectorJarUri); // // String clusterName = // createClusterIfNeeded(dataprocImageVersion, testId, properties, connectorJarUri); // AcceptanceTestContext acceptanceTestContext = // new AcceptanceTestContext(testId, clusterName, testBaseGcsDir, connectorJarUri); // createBqDataset(acceptanceTestContext.bqDataset); // return acceptanceTestContext; // } // // @Before // public void refreshTestTableNames() { // context.refreshTableNames(); // } // // protected static void tearDown(AcceptanceTestContext context) throws Exception { // if (context != null) { // terminateCluster(context.clusterId); // AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir); // deleteBqDatasetAndTables(context.bqDataset); // } // } // // protected static String createClusterIfNeeded( // String dataprocImageVersion, // String testId, // Map properties, // String connectorJarUri) // throws Exception { // String clusterName = generateClusterName(testId); // cluster( // client -> // client // .createClusterAsync( // PROJECT_ID, // REGION, // createCluster(clusterName, dataprocImageVersion, properties, connectorJarUri)) // .get()); // return clusterName; // } // // protected static void terminateCluster(String clusterName) throws Exception { // cluster(client -> client.deleteClusterAsync(PROJECT_ID, REGION, clusterName).get()); // } // // private static void cluster(ThrowingConsumer command) throws Exception // { // try (ClusterControllerClient clusterControllerClient = // ClusterControllerClient.create( // ClusterControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) { // command.accept(clusterControllerClient); // } // } // // private static Cluster createCluster( // String clusterName, // String dataprocImageVersion, // Map properties, // String connectorJarUri) { // return Cluster.newBuilder() // .setClusterName(clusterName) // .setProjectId(PROJECT_ID) // .setConfig( // ClusterConfig.newBuilder() // .setGceClusterConfig( // GceClusterConfig.newBuilder() // .setNetworkUri("default") // .setInternalIpOnly(false) // .setZoneUri(REGION + "-a") // .putMetadata("SPARK_BQ_CONNECTOR_URL", connectorJarUri)) // .setMasterConfig( // InstanceGroupConfig.newBuilder() // .setNumInstances(1) // .setMachineTypeUri("n1-standard-4") // .setDiskConfig( // DiskConfig.newBuilder() // .setBootDiskType("pd-standard") // .setBootDiskSizeGb(300) // .setNumLocalSsds(0))) // .setWorkerConfig( // InstanceGroupConfig.newBuilder() // .setNumInstances(2) // .setMachineTypeUri("n1-standard-4") // .setDiskConfig( // DiskConfig.newBuilder() // .setBootDiskType("pd-standard") // .setBootDiskSizeGb(300) // .setNumLocalSsds(0))) // .setEndpointConfig( // EndpointConfig.newBuilder().setEnableHttpPortAccess(true).build()) // .setSoftwareConfig( // SoftwareConfig.newBuilder() // .setImageVersion(dataprocImageVersion) // .putAllProperties(properties))) // .build(); // } // // @Test // @Ignore // public void testRead() throws Exception { // String testName = "test-read"; // Job result = // createAndRunPythonJob( // testName, // "read_shakespeare.py", // null, // Arrays.asList(context.getResultsDirUri(testName)), // 120); // // String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); // assertThat(output.trim()).isEqualTo("spark,10"); // } // // @Test // @Ignore // public void writeStream() throws Exception { // // TODO: Should be removed once streaming is supported in DSv2 // assumeTrue("Spark streaming is not supported by this connector", sparkStreamingSupported); // String testName = "write-stream-test"; // String jsonFileName = "write_stream_data.json"; // String jsonFileUri = context.testBaseGcsDir + "/" + testName + "/json/" + jsonFileName; // // AcceptanceTestUtils.uploadToGcs( // getClass().getResourceAsStream("/acceptance/" + jsonFileName), // jsonFileUri, // "application/json"); // // Job result = // createAndRunPythonJob( // testName, // "write_stream.py", // null, // Arrays.asList( // context.testBaseGcsDir + "/" + testName + "/json/", // context.bqDataset, // context.bqStreamTable, // AcceptanceTestUtils.BUCKET), // 120); // // int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable); // assertThat(numOfRows == 2); // } // // @Test // @Ignore // public void testBigNumeric() throws Exception { // String testName = "test-big-numeric"; // Path pythonLibTargetDir = Paths.get("../../spark-bigquery-python-lib/target"); // Path pythonLibZip = // AcceptanceTestUtils.getArtifact(pythonLibTargetDir, "spark-bigquery", ".zip"); // String zipFileUri = // context.testBaseGcsDir + "/" + testName + "/big_numeric_acceptance_test.zip"; // AcceptanceTestUtils.uploadToGcs( // new FileInputStream(pythonLibZip.toFile()), zipFileUri, "application/zip"); // // runBqQuery( // String.format( // AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE, // context.bqDataset, // context.bqTable)); // // String tableName = context.bqDataset + "." + context.bqTable; // // Job result = // createAndRunPythonJob( // testName, // "big_numeric.py", // zipFileUri, // Arrays.asList(tableName, context.getResultsDirUri(testName)), // 120); // // String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName)); // assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + "," + MAX_BIG_NUMERIC); // } // // @Test // public void testSparkDml_explicitTableCreation() throws Exception { // String testName = "spark-dml-explicit-table"; // // Job result = createAndRunSparkSqlJob(testName, /* outputTable */ "N/A", /* duration */ 120); // String output = AcceptanceTestUtils.getDriverOutput(result); // assertThat(output.trim()).contains("spark\t10"); // } // // @Test // public void testSparkDml_createTableInDefaultDataset() throws Exception { // String testName = "spark-dml-create-table-in-default-dataset"; // // testWithTableInDefaultDataset(testName); // } // // @Test // public void testSparkDml_createTableAsSelectInDefaultDataset() throws Exception { // String testName = "spark-dml-create-table-as-select-in-default-dataset"; // // testWithTableInDefaultDataset(testName); // } // // private void testWithTableInDefaultDataset(String testName) throws Exception { // BigQuery bq = BigQueryOptions.getDefaultInstance().getService(); // Dataset defaultDataset = bq.getDataset("default"); // assertWithMessage("This test assume that the a dataset named `default` exists in the project") // .that(defaultDataset) // .isNotNull(); // // Job result = createAndRunSparkSqlJob(testName, /* outputTable */ "N/A", /* duration */ 120); // // Table table = null; // try { // table = bq.getTable("default", context.bqTable); // assertThat(table).isNotNull(); // assertThat(table.getNumRows().intValue()).isEqualTo(1); // } finally { // if (table != null) { // assertThat(table.delete()).isTrue(); // } // } // } // // @Test // public void testSparkDml_createTableInCustomDataset() throws Exception { // String testName = "spark-dml-custom-dataset"; // // BigQuery bq = BigQueryOptions.getDefaultInstance().getService(); // Dataset defaultDataset = bq.getDataset(context.bqDataset); // assertWithMessage( // "This test assume that the a dataset named `" // + context.bqDataset // + "` exists in the project") // .that(defaultDataset) // .isNotNull(); // // Job result = createAndRunSparkSqlJob(testName, /* outputTable */ "N/A", /* duration */ 120); // // Table table = null; // try { // table = bq.getTable("default", context.bqTable); // assertThat(table).isNotNull(); // assertThat(table.getNumRows().intValue()).isEqualTo(1); // } finally { // if (table != null) { // assertThat(table.delete()).isTrue(); // } // } // } // // private Job createAndRunPythonJob( // String testName, String pythonFile, String pythonZipUri, List args, long duration) // throws Exception { // AcceptanceTestUtils.uploadToGcs( // getClass().getResourceAsStream("/acceptance/" + pythonFile), // context.getScriptUri(testName), // "text/x-python"); // // Job job = // Job.newBuilder() // .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId)) // .putLabels("test-name", testName) // .setPysparkJob(createPySparkJobBuilder(testName, pythonZipUri, args)) // .build(); // // return runAndWait(job, Duration.ofSeconds(duration)); // } // // private PySparkJob.Builder createPySparkJobBuilder( // String testName, String pythonZipUri, List args) { // PySparkJob.Builder builder = // PySparkJob.newBuilder() // .setMainPythonFileUri(context.getScriptUri(testName)) // .addJarFileUris(context.connectorJarUri); // // if (pythonZipUri != null && !pythonZipUri.isEmpty()) { // builder.addPythonFileUris(pythonZipUri); // builder.addFileUris(pythonZipUri); // } // // if (args != null && !args.isEmpty()) { // builder.addAllArgs(args); // } // // return builder; // } // // private Job createAndRunSparkSqlJob(String testName, String outputTable, long duration) // throws Exception { // // InputStream sqlScriptSourceStream = // getClass().getResourceAsStream("/acceptance/" + testName + ".sql"); // assertWithMessage("Could not find SQL script for " + testName + ".sql") // .that(sqlScriptSourceStream) // .isNotNull(); // String sqlScriptSource = // new String(ByteStreams.toByteArray(sqlScriptSourceStream), StandardCharsets.UTF_8); // // String sqlScript = // sqlScriptSource // .replace("${DATASET}", context.bqDataset) // .replace("${TABLE}", context.bqTable) // .replace("${OUTPUT_TABLE}", outputTable); // // AcceptanceTestUtils.uploadToGcs( // new ByteArrayInputStream(sqlScript.getBytes(StandardCharsets.UTF_8)), // context.getScriptUri(testName), // "application/x-sql"); // // Job job = // Job.newBuilder() // .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId)) // .putLabels("test-name", testName) // .setSparkSqlJob(createSparkSqlJobBuilder(testName)) // .build(); // // return runAndWait(job, Duration.ofSeconds(duration)); // } // // private SparkSqlJob.Builder createSparkSqlJobBuilder(String testName) { // return SparkSqlJob.newBuilder() // .setQueryFileUri(context.getScriptUri(testName)) // .addJarFileUris(context.connectorJarUri) // .setLoggingConfig( // LoggingConfig.newBuilder() // .putDriverLogLevels("com", LoggingConfig.Level.DEBUG) // .putDriverLogLevels("io", LoggingConfig.Level.DEBUG) // .putDriverLogLevels("org", LoggingConfig.Level.DEBUG) // .putDriverLogLevels("net", LoggingConfig.Level.DEBUG) // .build()) // .putProperties("spark.sql.legacy.createHiveTableByDefault", "false") // .putProperties("spark.sql.sources.default", "bigquery") // .putProperties("spark.datasource.bigquery.writeMethod", "direct"); // } // // private Job runAndWait(Job job, Duration timeout) throws Exception { // try (JobControllerClient jobControllerClient = // JobControllerClient.create( // JobControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) { // Job request = jobControllerClient.submitJob(PROJECT_ID, REGION, job); // String jobId = request.getReference().getJobId(); // CompletableFuture finishedJobFuture = // CompletableFuture.supplyAsync( // () -> waitForJobCompletion(jobControllerClient, PROJECT_ID, REGION, jobId)); // Job jobInfo = finishedJobFuture.get(timeout.getSeconds(), TimeUnit.SECONDS); // assertThat(jobInfo.getStatus().getState()).isEqualTo(JobStatus.State.DONE); // return jobInfo; // } // } // // Job waitForJobCompletion( // JobControllerClient jobControllerClient, String projectId, String region, String jobId) { // while (true) { // // Poll the service periodically until the Job is in a finished state. // Job jobInfo = jobControllerClient.getJob(projectId, region, jobId); // switch (jobInfo.getStatus().getState()) { // case DONE: // case CANCELLED: // case ERROR: // return jobInfo; // default: // try { // // Wait a second in between polling attempts. // TimeUnit.SECONDS.sleep(1); // } catch (InterruptedException e) { // throw new RuntimeException(e); // } // } // } // } // // @FunctionalInterface // private interface ThrowingConsumer { // void accept(T t) throws Exception; // } // // protected static class ClusterProperty { // private String key; // private String value; // private String marker; // // private ClusterProperty(String key, String value, String marker) { // this.key = key; // this.value = value; // this.marker = marker; // } // // protected static ClusterProperty of(String key, String value, String marker) { // return new ClusterProperty(key, value, marker); // } // // public String getKey() { // return key; // } // // public String getValue() { // return value; // } // // public String getMarker() { // return marker; // } // } // } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41DataprocImage30AcceptanceTest.java ================================================ /* * Copyright 3.04 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import java.util.Collections; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark41DataprocImage30AcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark41DataprocImage30AcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "3.0-debian12", "spark-4.1-bigquery", Collections.emptyList()); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41DataprocImage30DisableConscryptAcceptanceTest.java ================================================ /* * Copyright 3.04 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.AfterClass; import org.junit.BeforeClass; public class Spark41DataprocImage30DisableConscryptAcceptanceTest extends DataprocAcceptanceTestBase { private static AcceptanceTestContext context; public Spark41DataprocImage30DisableConscryptAcceptanceTest() { super(context, false); } @BeforeClass public static void setup() throws Exception { context = DataprocAcceptanceTestBase.setup( "3.0-debian12", "spark-4.1-bigquery", DISABLE_CONSCRYPT_LIST); } @AfterClass public static void tearDown() throws Exception { DataprocAcceptanceTestBase.tearDown(context); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41ReadSheakspeareDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 3.03 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore("Waiting for the serverless spark 4.0 runtime") public class Spark41ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase { public Spark41ReadSheakspeareDataprocServerlessAcceptanceTest() { super("spark-4.1-bigquery", "3.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41WriteStreamDataprocServerlessAcceptanceTest.java ================================================ /* * Copyright 3.03 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.acceptance; import org.junit.Ignore; @Ignore("Waiting for the serverless spark 4.0 runtime, no stream support yet") public class Spark41WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase { public Spark41WriteStreamDataprocServerlessAcceptanceTest() { super("spark-4.1-bigquery", "3.0"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41CatalogIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark41CatalogIntegrationTest extends CatalogIntegrationTestBase { // all tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41DirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.apache.spark.sql.types.DataTypes; public class Spark41DirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark41DirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.DIRECT, DataTypes.TimestampNTZType); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41IndirectWriteIntegrationTest.java ================================================ /* * Copyright 2018 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import org.apache.spark.sql.types.DataTypes; import org.junit.Before; public class Spark41IndirectWriteIntegrationTest extends WriteIntegrationTestBase { public Spark41IndirectWriteIntegrationTest() { super(SparkBigQueryConfig.WriteMethod.INDIRECT, DataTypes.TimestampNTZType); } @Before public void setParquetLoadBehaviour() { // TODO: make this the default value spark.conf().set("enableListInference", "true"); } // tests from superclass } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41OpenLineageIntegrationTest.java ================================================ /* * Copyright 2024 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark41OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {} ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41ReadByFormatIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; import org.apache.spark.sql.types.DataTypes; public class Spark41ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase { public Spark41ReadByFormatIntegrationTest() { super("ARROW", /* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41ReadFromQueryIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; public class Spark41ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase { public Spark41ReadFromQueryIntegrationTest() { super(true); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41ReadIntegrationTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.integration; import org.apache.spark.sql.types.DataTypes; public class Spark41ReadIntegrationTest extends ReadIntegrationTestBase { public Spark41ReadIntegrationTest() { super(/* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType); } // tests are from the super-class } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/resources/acceptance/spark-dml-create-table-as-select-in-default-dataset.sql ================================================ CREATE TABLE ${TABLE}_shakespeare OPTIONS (table='bigquery-public-data.samples.shakespeare'); CREATE TABLE ${TABLE} AS SELECT word, SUM(word_count) as word_count FROM ${TABLE}_shakespeare WHERE word='spark' GROUP BY word; ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/resources/acceptance/spark-dml-create-table-in-default-dataset.sql ================================================ CREATE TABLE ${TABLE} (id int, data string); INSERT INTO ${TABLE} VALUES (1, 'one'); ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/resources/acceptance/spark-dml-custom-dataset.sql ================================================ CREATE DATABASE ${DATASET}; CREATE TABLE ${DATASET}.${TABLE} (id int, data string); INSERT INTO ${DATASET}.${TABLE} VALUES (1, 'one'); ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery/src/test/resources/acceptance/spark-dml-explicit-table.sql ================================================ CREATE TABLE default.${TABLE} OPTIONS (table='bigquery-public-data.samples.shakespeare'); SELECT word, SUM(word_count) FROM default.${TABLE} WHERE word='spark' GROUP BY word; -- cleanup DROP TABLE default.${TABLE}; ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery-lib/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-4.1-bigquery-lib ${revision}-preview Connector code for BigQuery DataSource v2 for Spark 4.1 17 4.1.0 2.13 true [17,18) ${jdk11plus.argLine} Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo org.apache.arrow arrow-bom ${arrow.spark4.version} import pom org.apache.arrow arrow-memory-netty-buffer-patch ${arrow.spark4.version} ${project.groupId} spark-4.0-bigquery-lib ${project.parent.version} org.apache.spark spark-avro_2.13 ${spark.version} test ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark41BigQueryTable.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.inject.Injector; import java.util.function.Supplier; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.connector.write.LogicalWriteInfo; import org.apache.spark.sql.connector.write.WriteBuilder; import org.apache.spark.sql.types.StructType; public class Spark41BigQueryTable extends Spark40BigQueryTable { public Spark41BigQueryTable(Injector injector, Supplier schemaSupplier) { super(injector, schemaSupplier); } @Override public WriteBuilder newWriteBuilder(LogicalWriteInfo info) { // SaveMode is not provided by spark 3, it is handled by the DataFrameWriter // The case where mode == SaveMode.Ignore is handled by Spark, so we can assume we can get the // context return new Spark41BigQueryWriteBuilder(injector, info, SaveMode.Append); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark41BigQueryTableProvider.java ================================================ /* * Copyright 2023 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import java.util.Map; import org.apache.spark.sql.connector.catalog.Table; import org.apache.spark.sql.connector.expressions.Transform; import org.apache.spark.sql.types.StructType; public class Spark41BigQueryTableProvider extends Spark40BigQueryTableProvider { // empty @Override public Table getTable( StructType schema, Transform[] partitioning, Map properties) { return Spark3Util.createBigQueryTableInstance(Spark41BigQueryTable::new, schema, properties); } @Override protected Table getBigQueryTableInternal(Map properties) { return Spark3Util.createBigQueryTableInstance(Spark41BigQueryTable::new, null, properties); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark41BigQueryWriteBuilder.java ================================================ /* * Copyright 2025 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.v2; import com.google.inject.Injector; import org.apache.spark.sql.SaveMode; import org.apache.spark.sql.connector.write.LogicalWriteInfo; import org.apache.spark.sql.connector.write.V1Write; import org.apache.spark.sql.connector.write.Write; public class Spark41BigQueryWriteBuilder extends Spark40BigQueryWriteBuilder implements Write, V1Write { public Spark41BigQueryWriteBuilder(Injector injector, LogicalWriteInfo info, SaveMode mode) { super(injector, info, mode); } } ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.TypeConverter ================================================ com.google.cloud.spark.bigquery.v2.TimestampNTZTypeConverter ================================================ FILE: spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister ================================================ com.google.cloud.spark.bigquery.v2.Spark41BigQueryTableProvider ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../../spark-bigquery-parent spark-bigquery-dsv2-common BigQuery DataSource v2 implementation common implementation 3.5.0 Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-connector-common ${project.parent.version} io.openlineage spark-extension-interfaces org.apache.spark spark-mllib_2.12 ${spark.version} provided io.netty netty-all org.apache.spark spark-sql_2.12 ${spark.version} provided io.netty netty-all ${project.groupId} spark-bigquery-tests ${project.parent.version} test org.apache.maven.plugins maven-enforcer-plugin de.skuzzle.enforcer restrict-imports-enforcer-rule 2.0.0 check-spark-imports process-sources enforce Don't import Spark DataSource V2 classes org.apache.spark.sql.sources.v2.** ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/BaseBigQuerySource.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2; import org.apache.spark.sql.sources.DataSourceRegister; public abstract class BaseBigQuerySource implements DataSourceRegister { @Override public String shortName() { return "bigquery"; } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/ArrowColumnBatchPartitionReaderContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import com.google.cloud.bigquery.connector.common.ArrowUtil; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import com.google.cloud.bigquery.connector.common.IteratorMultiplexer; import com.google.cloud.bigquery.connector.common.NonInterruptibleBlockingBytesChannel; import com.google.cloud.bigquery.connector.common.ParallelArrowReader; import com.google.cloud.bigquery.connector.common.ReadRowsHelper; import com.google.cloud.bigquery.connector.common.ReadRowsResponseInputStreamEnumeration; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.cloud.spark.bigquery.ArrowSchemaConverter; import com.google.common.collect.ImmutableList; import com.google.common.util.concurrent.MoreExecutors; import com.google.protobuf.ByteString; import java.io.IOException; import java.io.InputStream; import java.io.SequenceInputStream; import java.util.ArrayList; import java.util.Arrays; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.concurrent.ExecutorService; import java.util.concurrent.SynchronousQueue; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors; import org.apache.arrow.compression.CommonsCompressionFactory; import org.apache.arrow.memory.BufferAllocator; import org.apache.arrow.util.AutoCloseables; import org.apache.arrow.vector.VectorLoader; import org.apache.arrow.vector.VectorSchemaRoot; import org.apache.arrow.vector.ipc.ArrowReader; import org.apache.arrow.vector.ipc.ArrowStreamReader; import org.apache.arrow.vector.types.pojo.Schema; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.vectorized.ColumnVector; import org.apache.spark.sql.vectorized.ColumnarBatch; public class ArrowColumnBatchPartitionReaderContext implements InputPartitionReaderContext { private static final long maxAllocation = 500 * 1024 * 1024; interface ArrowReaderAdapter extends AutoCloseable { boolean loadNextBatch() throws IOException; VectorSchemaRoot root() throws IOException; } static class SimpleAdapter implements ArrowReaderAdapter { private final ArrowReader reader; SimpleAdapter(ArrowReader reader) { this.reader = reader; } @Override public boolean loadNextBatch() throws IOException { return reader.loadNextBatch(); } @Override public VectorSchemaRoot root() throws IOException { return reader.getVectorSchemaRoot(); } @Override public void close() throws Exception { // Don't close the stream here since it will be taken care // of by closing the ReadRowsHelper below and the way the stream // is setup closing it here will cause it to be drained before // returning. reader.close(/*close stream*/ false); } } static class ParallelReaderAdapter implements ArrowReaderAdapter { private final ParallelArrowReader reader; private final VectorLoader loader; private final VectorSchemaRoot root; private final List closeables = new ArrayList<>(); private IOException initialException; ParallelReaderAdapter( BufferAllocator allocator, List readers, ExecutorService executor, BigQueryStorageReadRowsTracer tracer, AutoCloseable closeable) { Schema schema = null; closeables.add(closeable); try { schema = readers.get(0).getVectorSchemaRoot().getSchema(); } catch (IOException e) { initialException = e; closeables.addAll(readers); this.reader = null; this.loader = null; this.root = null; return; } BufferAllocator readerAllocator = allocator.newChildAllocator("ParallelReaderAllocator", 0, maxAllocation); root = VectorSchemaRoot.create(schema, readerAllocator); closeables.add(root); loader = new VectorLoader(root); this.reader = new ParallelArrowReader(readers, executor, loader, tracer); closeables.add(0, reader); closeables.add(readerAllocator); } @Override public boolean loadNextBatch() throws IOException { if (initialException != null) { throw new IOException(initialException); } return reader.next(); } @Override public VectorSchemaRoot root() throws IOException { return root; } @Override public void close() throws Exception { AutoCloseables.close(closeables); } } private final ReadRowsHelper readRowsHelper; private final ArrowReaderAdapter reader; private final BufferAllocator allocator; private final List namesInOrder; private ColumnarBatch currentBatch; private final BigQueryStorageReadRowsTracer tracer; private boolean closed = false; private final Map userProvidedFieldMap; private final List closeables = new ArrayList<>(); ArrowColumnBatchPartitionReaderContext( Iterator readRowsResponses, ByteString schema, ReadRowsHelper readRowsHelper, List namesInOrder, BigQueryStorageReadRowsTracer tracer, Optional userProvidedSchema, int numBackgroundThreads, ResponseCompressionCodec responseCompressionCodec) { this.allocator = ArrowUtil.newRootAllocator(maxAllocation); this.readRowsHelper = readRowsHelper; this.namesInOrder = namesInOrder; this.tracer = tracer; // place holder for reader. closeables.add(null); List userProvidedFieldList = Arrays.stream(userProvidedSchema.orElse(new StructType()).fields()) .collect(Collectors.toList()); this.userProvidedFieldMap = userProvidedFieldList.stream().collect(Collectors.toMap(StructField::name, field -> field)); if (numBackgroundThreads == 1) { // There is a background thread created by ParallelArrowReader that serves // as a thread to do parsing on. InputStream fullStream = makeSingleInputStream(readRowsResponses, schema, tracer, responseCompressionCodec); reader = new ParallelReaderAdapter( allocator, ImmutableList.of(newArrowStreamReader(fullStream)), MoreExecutors.newDirectExecutorService(), tracer.forkWithPrefix("BackgroundReader"), /* closeable= */ null); } else if (numBackgroundThreads > 1) { // Subtract one because current excess tasks will be executed // on round robin thread in ParallelArrowReader. ExecutorService backgroundParsingService = new ThreadPoolExecutor( /* corePoolSize= */ 1, /* maximumPoolSize= */ numBackgroundThreads - 1, /* keepAliveTime= */ 2, /* keepAlivetimeUnit= */ TimeUnit.SECONDS, new SynchronousQueue<>(), new ThreadPoolExecutor.CallerRunsPolicy()); IteratorMultiplexer multiplexer = new IteratorMultiplexer(readRowsResponses, numBackgroundThreads); List readers = new ArrayList<>(); for (int x = 0; x < numBackgroundThreads; x++) { BigQueryStorageReadRowsTracer multiplexedTracer = tracer.forkWithPrefix("multiplexed-" + x); InputStream responseStream = new SequenceInputStream( new ReadRowsResponseInputStreamEnumeration( multiplexer.getSplit(x), multiplexedTracer, responseCompressionCodec)); InputStream schemaAndBatches = new SequenceInputStream(schema.newInput(), responseStream); closeables.add(multiplexedTracer::finished); readers.add(newArrowStreamReader(schemaAndBatches)); } reader = new ParallelReaderAdapter( allocator, readers, backgroundParsingService, tracer.forkWithPrefix("MultithreadReader"), multiplexer); } else { // Zero background threads. InputStream fullStream = makeSingleInputStream(readRowsResponses, schema, tracer, responseCompressionCodec); reader = new SimpleAdapter(newArrowStreamReader(fullStream)); } } // Note this method consumes inputs. private InputStream makeSingleInputStream( Iterator readRowsResponses, ByteString schema, BigQueryStorageReadRowsTracer tracer, ResponseCompressionCodec responseCompressionCodec) { InputStream batchStream = new SequenceInputStream( new ReadRowsResponseInputStreamEnumeration( readRowsResponses, tracer, responseCompressionCodec)); return new SequenceInputStream(schema.newInput(), batchStream); } public boolean next() throws IOException { tracer.nextBatchNeeded(); if (closed) { return false; } tracer.rowsParseStarted(); closed = !reader.loadNextBatch(); if (closed) { return false; } VectorSchemaRoot root = reader.root(); if (currentBatch == null) { // trying to verify from dev@spark but this object // should only need to get created once. The underlying // vectors should stay the same. ColumnVector[] columns = namesInOrder.stream() .map(root::getVector) .map( vector -> ArrowSchemaConverter.newArrowSchemaConverter( vector, userProvidedFieldMap.get(vector.getName()))) .toArray(ColumnVector[]::new); currentBatch = new ColumnarBatch(columns); } currentBatch.setNumRows(root.getRowCount()); tracer.rowsParseFinished(currentBatch.numRows()); return true; } public ColumnarBatch get() { return currentBatch; } @Override public Optional getBigQueryStorageReadRowsTracer() { return Optional.of(tracer); } public void close() throws IOException { closed = true; try { tracer.finished(); closeables.set(0, reader); closeables.add(allocator); AutoCloseables.close(closeables); } catch (Exception e) { throw new IOException("Failure closing arrow components. stream: " + readRowsHelper, e); } finally { try { readRowsHelper.close(); } catch (Exception e) { throw new IOException("Failure closing stream: " + readRowsHelper, e); } } } private ArrowStreamReader newArrowStreamReader(InputStream fullStream) { BufferAllocator childAllocator = allocator.newChildAllocator("readerAllocator" + (closeables.size() - 1), 0, maxAllocation); closeables.add(childAllocator); return new ArrowStreamReader( new NonInterruptibleBlockingBytesChannel(fullStream), childAllocator, CommonsCompressionFactory.INSTANCE); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/ArrowInputPartitionContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import static com.google.common.base.Optional.fromJavaUtil; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import com.google.cloud.bigquery.connector.common.BigQueryTracerFactory; import com.google.cloud.bigquery.connector.common.ReadRowsHelper; import com.google.cloud.bigquery.connector.common.ReadSessionResponse; import com.google.cloud.bigquery.storage.v1.ReadRowsRequest; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.cloud.spark.bigquery.metrics.SparkBigQueryReadSessionMetrics; import com.google.cloud.spark.bigquery.metrics.SparkMetricsSource; import com.google.common.base.Joiner; import com.google.common.collect.ImmutableList; import com.google.protobuf.ByteString; import java.util.Iterator; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; import org.apache.spark.SparkEnv; import org.apache.spark.TaskContext; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.vectorized.ColumnarBatch; public class ArrowInputPartitionContext implements InputPartitionContext { private static final long serialVersionUID = -6698485693266257704L; private final BigQueryClientFactory bigQueryReadClientFactory; private final BigQueryTracerFactory tracerFactory; private List streamNames; private final ReadRowsHelper.Options options; private final ImmutableList selectedFields; private final ByteString serializedArrowSchema; private final com.google.common.base.Optional userProvidedSchema; private final SparkBigQueryReadSessionMetrics sparkBigQueryReadSessionMetrics; private final ResponseCompressionCodec responseCompressionCodec; public ArrowInputPartitionContext( BigQueryClientFactory bigQueryReadClientFactory, BigQueryTracerFactory tracerFactory, List names, ReadRowsHelper.Options options, ImmutableList selectedFields, ReadSessionResponse readSessionResponse, Optional userProvidedSchema, SparkBigQueryReadSessionMetrics sparkBigQueryReadSessionMetrics, ResponseCompressionCodec responseCompressionCodec) { this.bigQueryReadClientFactory = bigQueryReadClientFactory; this.streamNames = names; this.options = options; this.selectedFields = selectedFields; this.serializedArrowSchema = readSessionResponse.getReadSession().getArrowSchema().getSerializedSchema(); this.tracerFactory = tracerFactory; this.userProvidedSchema = fromJavaUtil(userProvidedSchema); this.sparkBigQueryReadSessionMetrics = sparkBigQueryReadSessionMetrics; this.responseCompressionCodec = responseCompressionCodec; } public InputPartitionReaderContext createPartitionReaderContext() { SparkMetricsSource sparkMetricsSource = new SparkMetricsSource(); TaskContext.get() .registerAccumulator(sparkBigQueryReadSessionMetrics.getBytesReadAccumulator()); TaskContext.get().registerAccumulator(sparkBigQueryReadSessionMetrics.getRowsReadAccumulator()); TaskContext.get() .registerAccumulator(sparkBigQueryReadSessionMetrics.getParseTimeAccumulator()); TaskContext.get().registerAccumulator(sparkBigQueryReadSessionMetrics.getScanTimeAccumulator()); SparkEnv.get().metricsSystem().registerSource(sparkMetricsSource); BigQueryStorageReadRowsTracer tracer = tracerFactory.newReadRowsTracer( Joiner.on(",").join(streamNames), sparkMetricsSource, Optional.of(sparkBigQueryReadSessionMetrics)); List readRowsRequests = streamNames.stream() .map(name -> ReadRowsRequest.newBuilder().setReadStream(name)) .collect(Collectors.toList()); ReadRowsHelper readRowsHelper = new ReadRowsHelper(bigQueryReadClientFactory, readRowsRequests, options); tracer.startStream(); Iterator readRowsResponses = readRowsHelper.readRows(); return new ArrowColumnBatchPartitionReaderContext( readRowsResponses, serializedArrowSchema, readRowsHelper, selectedFields, tracer, userProvidedSchema.toJavaUtil(), options.numBackgroundThreads(), responseCompressionCodec); } @Override public boolean supportColumnarReads() { return true; } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/BigQueryDataSourceReaderContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import com.google.cloud.bigquery.Field; import com.google.cloud.bigquery.Schema; import com.google.cloud.bigquery.TableDefinition; import com.google.cloud.bigquery.TableId; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryTracerFactory; import com.google.cloud.bigquery.connector.common.BigQueryUtil; import com.google.cloud.bigquery.connector.common.LazyInitializationSupplier; import com.google.cloud.bigquery.connector.common.ReadSessionCreator; import com.google.cloud.bigquery.connector.common.ReadSessionCreatorConfig; import com.google.cloud.bigquery.connector.common.ReadSessionResponse; import com.google.cloud.bigquery.storage.v1.DataFormat; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.cloud.bigquery.storage.v1.ReadStream; import com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter; import com.google.cloud.spark.bigquery.SchemaConverters; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.cloud.spark.bigquery.SparkBigQueryUtil; import com.google.cloud.spark.bigquery.SparkFilterUtils; import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory; import com.google.cloud.spark.bigquery.metrics.DataOrigin; import com.google.cloud.spark.bigquery.metrics.SparkBigQueryReadSessionMetrics; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Iterables; import com.google.common.collect.Streams; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.HashSet; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.OptionalLong; import java.util.Set; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.stream.Collectors; import java.util.stream.IntStream; import java.util.stream.Stream; import org.apache.spark.sql.SQLContext; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.sources.Filter; import org.apache.spark.sql.types.StructField; import org.apache.spark.sql.types.StructType; import org.apache.spark.sql.vectorized.ColumnarBatch; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class BigQueryDataSourceReaderContext { private static final Logger logger = LoggerFactory.getLogger(BigQueryDataSourceReaderContext.class); private static StatisticsContext UNKNOWN_STATISTICS = new StatisticsContext() { @Override public OptionalLong sizeInBytes() { return OptionalLong.empty(); } @Override public OptionalLong numRows() { return OptionalLong.empty(); } }; private final TableInfo table; private final TableId tableId; private final ReadSessionCreatorConfig readSessionCreatorConfig; private final BigQueryClient bigQueryClient; private final BigQueryClientFactory bigQueryReadClientFactory; private final BigQueryTracerFactory bigQueryTracerFactory; private final ReadSessionCreator readSessionCreator; private final SparkBigQueryConfig options; private final SQLContext sqlContext; private final SparkSession sparkSession; private final BigQueryRDDFactory bigQueryRDDFactory; private final Optional globalFilter; private final String applicationId; private Optional schema; private Optional userProvidedSchema; private final Set pushedFilters = new HashSet<>(); private Filter[] allFilters = new Filter[] {}; private Map fields; private ImmutableList selectedFields; private List plannedInputPartitionContexts; // Lazy loading using Supplier will ensure that createReadSession is called only once and // readSessionResponse is cached. // Purpose is to create read session either in estimateStatistics or planInputPartitionContexts, // whichever is called first. // In Spark 3.1 connector, "estimateStatistics" is called before // "planBatchInputPartitionContexts" or // "planInputPartitionContexts". We will use this to get table statistics in estimateStatistics. private LazyInitializationSupplier readSessionResponse; private final ExecutorService asyncReadSessionExecutor = Executors.newSingleThreadExecutor(); private boolean isBuilt = false; private final BigQueryClient.ReadTableOptions readTableOptions; public BigQueryDataSourceReaderContext( TableInfo table, BigQueryClient bigQueryClient, BigQueryClientFactory bigQueryReadClientFactory, BigQueryTracerFactory tracerFactory, ReadSessionCreatorConfig readSessionCreatorConfig, Optional globalFilter, Optional schema, String applicationId, SparkBigQueryConfig options, SQLContext sqlContext, SparkSession sparkSession, BigQueryClient.ReadTableOptions readTableOptions) { this.table = table; this.tableId = table.getTableId(); this.readSessionCreatorConfig = readSessionCreatorConfig; this.bigQueryClient = bigQueryClient; this.bigQueryReadClientFactory = bigQueryReadClientFactory; this.bigQueryTracerFactory = tracerFactory; this.sparkSession = sparkSession; this.readTableOptions = readTableOptions; this.readSessionCreator = new ReadSessionCreator(readSessionCreatorConfig, bigQueryClient, bigQueryReadClientFactory); this.globalFilter = globalFilter; SchemaConverters sc = SchemaConverters.from(SchemaConvertersConfiguration.from(options)); StructType convertedSchema = sc.toSpark(sc.getSchemaWithPseudoColumns(table)); if (schema.isPresent()) { this.schema = schema; this.userProvidedSchema = schema; } else { this.schema = Optional.of(convertedSchema); this.userProvidedSchema = Optional.empty(); } // We want to keep the key order this.fields = new LinkedHashMap<>(); for (StructField field : convertedSchema.fields()) { fields.put(field.name(), field); } this.applicationId = applicationId; this.options = options; this.sqlContext = sqlContext; this.bigQueryRDDFactory = new BigQueryRDDFactory( bigQueryClient, bigQueryReadClientFactory, bigQueryTracerFactory, options, sqlContext); resetReadSessionResponse(); } private void resetReadSessionResponse() { this.readSessionResponse = new LazyInitializationSupplier<>(this::createReadSession); } public StructType readSchema() { // TODO: rely on Java code return schema.orElseGet( () -> { SchemaConverters sc = SchemaConverters.from(SchemaConvertersConfiguration.from(options)); return sc.toSpark(sc.getSchemaWithPseudoColumns(table)); }); } public boolean enableBatchRead() { return readSessionCreatorConfig.getReadDataFormat() == DataFormat.ARROW && !isEmptySchema(); } public Stream> planInputPartitionContexts() { if (isEmptySchema()) { // create empty projection return createEmptyProjectionPartitions(); } ReadSession readSession = readSessionResponse.get().getReadSession(); return readSession.getStreamsList().stream() .map( stream -> new BigQueryInputPartitionContext( bigQueryReadClientFactory, stream.getName(), readSessionCreatorConfig.toReadRowsHelperOptions(), createConverter( selectedFields, readSessionResponse.get(), userProvidedSchema))); } public Optional getCombinedFilter() { return BigQueryUtil.emptyIfNeeded( SparkFilterUtils.getCompiledFilter( readSessionCreatorConfig.getPushAllFilters(), readSessionCreatorConfig.getReadDataFormat(), globalFilter, pushedFilters.toArray(new Filter[0]))); } public DataOrigin getDataOrigin() { if (BigQueryUtil.isBigLakeManagedTable(table) || table.getDefinition().getType() == TableDefinition.Type.EXTERNAL) { return DataOrigin.BIGLAKE; } else if (table.getDefinition().getType() == TableDefinition.Type.MATERIALIZED_VIEW || table.getDefinition().getType() == TableDefinition.Type.VIEW) { return DataOrigin.VIEW; } else if (readTableOptions.query().isPresent()) { return DataOrigin.QUERY; } else { return DataOrigin.TABLE; } } public Stream> planBatchInputPartitionContexts() { if (!enableBatchRead()) { throw new IllegalStateException("Batch reads should not be enabled"); } ReadSession readSession = readSessionResponse.get().getReadSession(); long currentTimeMillis = System.currentTimeMillis(); SparkBigQueryReadSessionMetrics sparkBigQueryReadSessionMetrics = SparkBigQueryReadSessionMetrics.from( sparkSession, readSession, currentTimeMillis, readSessionCreatorConfig.getReadDataFormat(), getDataOrigin(), readSession.getStreamsCount()); sparkSession.sparkContext().addSparkListener(sparkBigQueryReadSessionMetrics); ImmutableList tempSelectedFields = selectedFields; if (tempSelectedFields.isEmpty()) { // means select * Schema tableSchema = SchemaConverters.from(SchemaConvertersConfiguration.from(options)) .getSchemaWithPseudoColumns(readSessionResponse.get().getReadTableInfo()); tempSelectedFields = tableSchema.getFields().stream() .map(Field::getName) .collect(ImmutableList.toImmutableList()); } ImmutableList partitionSelectedFields = tempSelectedFields; Optional arrowSchema = Optional.of(userProvidedSchema.orElse(readSchema())); plannedInputPartitionContexts = Streams.stream( Iterables.partition( readSession.getStreamsList(), readSessionCreatorConfig.streamsPerPartition())) .map( streams -> new ArrowInputPartitionContext( bigQueryReadClientFactory, bigQueryTracerFactory, streams.stream() .map(ReadStream::getName) // This formulation is used to guarantee a serializable list. .collect(Collectors.toCollection(ArrayList::new)), readSessionCreatorConfig.toReadRowsHelperOptions(), partitionSelectedFields, readSessionResponse.get(), arrowSchema, sparkBigQueryReadSessionMetrics, readSessionCreatorConfig.getResponseCompressionCodec())) .collect(Collectors.toList()); return plannedInputPartitionContexts.stream() .map(ctx -> (InputPartitionContext) ctx); } private boolean isEmptySchema() { return schema.map(StructType::isEmpty).orElse(false); } private ReadRowsResponseToInternalRowIteratorConverter createConverter( ImmutableList selectedFields, ReadSessionResponse readSessionResponse, Optional userProvidedSchema) { ReadRowsResponseToInternalRowIteratorConverter converter; DataFormat format = readSessionCreatorConfig.getReadDataFormat(); if (format == DataFormat.AVRO) { Schema schema = SchemaConverters.from(SchemaConvertersConfiguration.from(options)) .getSchemaWithPseudoColumns(readSessionResponse.getReadTableInfo()); if (selectedFields.isEmpty()) { // means select * selectedFields = schema.getFields().stream() .map(Field::getName) .collect(ImmutableList.toImmutableList()); } else { Set requiredColumnSet = ImmutableSet.copyOf(selectedFields); schema = Schema.of( schema.getFields().stream() .filter(field -> requiredColumnSet.contains(field.getName())) .collect(Collectors.toList())); } return ReadRowsResponseToInternalRowIteratorConverter.avro( schema, selectedFields, readSessionResponse.getReadSession().getAvroSchema().getSchema(), userProvidedSchema, /* bigQueryStorageReadRowTracer */ Optional.empty(), SchemaConvertersConfiguration.from(options), readSessionCreatorConfig.getResponseCompressionCodec()); } throw new IllegalArgumentException( "No known converted for " + readSessionCreatorConfig.getReadDataFormat()); } private ReadSessionResponse createReadSession() { selectedFields = schema .map(requiredSchema -> ImmutableList.copyOf(requiredSchema.fieldNames())) .orElse(ImmutableList.copyOf(fields.keySet())); Optional filter = getCombinedFilter(); ReadSessionResponse response = readSessionCreator.create(tableId, selectedFields, filter); logger.info( "Got read session for {}: {} for application id: {}", tableId.toString(), response.getReadSession().getName(), applicationId); return response; } Stream> createEmptyProjectionPartitions() { Optional filter = getCombinedFilter(); long rowCount = bigQueryClient.calculateTableSize(tableId, filter); logger.info("Used optimized BQ count(*) path. Count: " + rowCount); int partitionsCount = readSessionCreatorConfig.getDefaultParallelism(); int partitionSize = (int) (rowCount / partitionsCount); InputPartitionContext[] partitions = IntStream.range(0, partitionsCount) .mapToObj(ignored -> new EmptyProjectionInputPartitionContext(partitionSize)) .toArray(EmptyProjectionInputPartitionContext[]::new); int firstPartitionSize = partitionSize + (int) (rowCount % partitionsCount); partitions[0] = new EmptyProjectionInputPartitionContext(firstPartitionSize); return Stream.of(partitions); } public Filter[] pushFilters(Filter[] filters) { List handledFilters = new ArrayList<>(); List unhandledFilters = new ArrayList<>(); for (Filter filter : filters) { if (SparkFilterUtils.isTopLevelFieldHandled( readSessionCreatorConfig.getPushAllFilters(), filter, readSessionCreatorConfig.getReadDataFormat(), fields)) { handledFilters.add(filter); } else { unhandledFilters.add(filter); } } allFilters = filters; pushedFilters.addAll(handledFilters); return unhandledFilters.stream().toArray(Filter[]::new); } public Filter[] pushedFilters() { return pushedFilters.toArray(new Filter[0]); } public Filter[] getAllFilters() { return allFilters; } /** * Re-creates the read session and re-computes partitions for dynamic partition pruning * * @param filters dynamic partition pruning filters * @return new planned partitions if dynamic partition pruning goes through, else returns empty * option. */ public Optional> filter(Filter[] filters) { logger.info(String.format("Use Dynamic Partition Pruning runtime filters: %s", filters)); if (plannedInputPartitionContexts == null) { logger.error("Should have planned partitions."); return Optional.empty(); } ImmutableList newFilters = SparkBigQueryUtil.extractPartitionAndClusteringFilters( table, ImmutableList.copyOf(filters)); if (newFilters.isEmpty()) { // no partitioning and no clustering, this is probably a dimension table. // It means the filter combined filter won't change, so no need to create another read session // we are done here. logger.info( "Could not find filters for partition of clustering field for table {}, aborting DPP" + " filter", BigQueryUtil.friendlyTableName(tableId)); return Optional.empty(); } pushedFilters.addAll(newFilters); Optional combinedFilter = getCombinedFilter(); if (!BigQueryUtil.filterLengthInLimit(combinedFilter)) { logger.warn( "New filter for Dynamic Partition Pruning is too large, skipping partition pruning"); return Optional.empty(); } // Copies previous planned input partition contexts. List previousInputPartitionContexts = plannedInputPartitionContexts; resetReadSessionResponse(); // Creates a new read session, this creates a new plannedInputPartitionContexts. planBatchInputPartitionContexts(); if (plannedInputPartitionContexts.size() > previousInputPartitionContexts.size()) { logger.warn( String.format( "New partitions should not be more than originally planned. Previously had %d" + " streams, now has %d.", previousInputPartitionContexts.size(), plannedInputPartitionContexts.size())); return Optional.of(plannedInputPartitionContexts); } logger.info( String.format( "Use Dynamic Partition Pruning, originally planned %d, adjust to %d partitions", previousInputPartitionContexts.size(), plannedInputPartitionContexts.size())); return Optional.of(plannedInputPartitionContexts); } public void pruneColumns(StructType requiredSchema) { // requiredSchema may be nested column pruned, which is not supported yet. this.schema = this.schema.map( prevSchema -> { Set requiredCols = ImmutableSet.copyOf(requiredSchema.fieldNames()); StructType prunedSchema = new StructType(); for (StructField field : prevSchema.fields()) { if (requiredCols.contains(field.name())) { prunedSchema = prunedSchema.add(field); } } return prunedSchema; }); } public StatisticsContext estimateStatistics() { boolean isBigLakeManagedTable = BigQueryUtil.isBigLakeManagedTable(table); if (BigQueryUtil.isBigQueryNativeTable(table)) { // Create StatisticsContext with information from read session response. final long tableSizeInBytes; final long numRowsInTable; if (isBuilt) { tableSizeInBytes = readSessionResponse.get().getReadSession().getEstimatedTotalBytesScanned(); numRowsInTable = readSessionResponse.get().getReadSession().getEstimatedRowCount(); } else { // If the scan is not built, filters & projections are not yet pushed. Use the fast path. tableSizeInBytes = table.getNumBytes(); numRowsInTable = table.getNumRows().longValue(); } StatisticsContext tableStatisticsContext = new StatisticsContext() { @Override public OptionalLong sizeInBytes() { return OptionalLong.of(tableSizeInBytes); } @Override public OptionalLong numRows() { return OptionalLong.of(numRowsInTable); } }; return tableStatisticsContext; } else if (table.getDefinition().getType() == TableDefinition.Type.EXTERNAL || isBigLakeManagedTable) { ReadSession readSession = readSessionResponse.get().getReadSession(); // Physical file size for BigLake tables is the size of the files post file pruning and // includes all fields. final long tablePhysicalSizeInBytes = readSession.getEstimatedTotalPhysicalFileSize(); final long tableRowCount = readSession.getEstimatedRowCount(); final long originalRowSize = getRowSize(fields.values()); final long projectedRowSize = schema.map(schema -> getRowSize(Arrays.asList(schema.fields()))).orElse(originalRowSize); final long tableProjectedSizeInBytes = (tablePhysicalSizeInBytes * projectedRowSize) / originalRowSize; final OptionalLong sizeInBytes = (tableProjectedSizeInBytes == 0) ? OptionalLong.empty() : OptionalLong.of(tableProjectedSizeInBytes); StatisticsContext tableStatisticsContext = new StatisticsContext() { @Override public OptionalLong sizeInBytes() { return sizeInBytes; } @Override public OptionalLong numRows() { // Number of rows are only available for BigLake Managed tables. return isBigLakeManagedTable ? OptionalLong.of(tableRowCount) : OptionalLong.empty(); } }; return tableStatisticsContext; } else { return UNKNOWN_STATISTICS; } } public String getTableName() { return tableId.getTable(); } public String getFullTableName() { return BigQueryUtil.friendlyTableName(tableId); } public TableId getTableId() { return tableId; } public BigQueryRDDFactory getBigQueryRddFactory() { return this.bigQueryRDDFactory; } public TableInfo getTableInfo() { return this.table; } public void build() { // Supplier provided by Suppliers.memoize is thread-safe asyncReadSessionExecutor.submit(() -> readSessionResponse.get()); asyncReadSessionExecutor.shutdown(); isBuilt = true; } /** * This logic is taken from Spark's {@link * org.apache.spark.sql.catalyst.plans.logical.statsEstimation.EstimationUtils ::getSizePerRow } */ private long getRowSize(Collection fields) { // There should be some overhead in Row object, the size should not be zero when there are // no columns, this helps to prevent divide-by-zero error. return 8 + fields.stream() .map(structField -> (long) structField.dataType().defaultSize()) .reduce(0L, Long::sum); } public String getReadSessionId() { if (readSessionResponse.isInitialized()) { return readSessionResponse.get().getReadSession().getName(); } return "N/A"; } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/BigQueryDataSourceReaderModule.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import com.google.cloud.bigquery.TableInfo; import com.google.cloud.bigquery.connector.common.BigQueryClient; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.BigQueryTracerFactory; import com.google.cloud.spark.bigquery.SparkBigQueryConfig; import com.google.inject.Binder; import com.google.inject.Module; import com.google.inject.Provides; import com.google.inject.Singleton; import java.util.Optional; import org.apache.spark.sql.SparkSession; public class BigQueryDataSourceReaderModule implements Module { private Optional tableScanConfig; public BigQueryDataSourceReaderModule() { this(Optional.empty()); } // in practiced used only by the spark 3 connector, as there are separate phases for creating the // catalog and the table scan (unlike DSv1 and spark 2.4) public BigQueryDataSourceReaderModule(Optional tableScanConfig) { this.tableScanConfig = tableScanConfig; } @Override public void configure(Binder binder) { // empty } @Singleton @Provides public BigQueryDataSourceReaderContext provideDataSourceReaderContext( BigQueryClient bigQueryClient, BigQueryClientFactory bigQueryReadClientFactory, BigQueryTracerFactory tracerFactory, SparkBigQueryConfig globalConfig, SparkSession sparkSession) { SparkBigQueryConfig config = tableScanConfig.orElse(globalConfig); TableInfo tableInfo = bigQueryClient.getReadTable(config.toReadTableOptions()); return new BigQueryDataSourceReaderContext( tableInfo, bigQueryClient, bigQueryReadClientFactory, tracerFactory, config.toReadSessionCreatorConfig(), config.getFilter(), config.getSchema(), sparkSession.sparkContext().applicationId(), config, sparkSession.sqlContext(), sparkSession, config.toReadTableOptions()); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/BigQueryInputPartitionContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import com.google.cloud.bigquery.connector.common.BigQueryClientFactory; import com.google.cloud.bigquery.connector.common.ReadRowsHelper; import com.google.cloud.bigquery.storage.v1.ReadRowsRequest; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter; import java.util.Iterator; import java.util.Optional; import org.apache.spark.sql.catalyst.InternalRow; public class BigQueryInputPartitionContext implements InputPartitionContext { private final BigQueryClientFactory bigQueryReadClientFactory; private final String streamName; private final ReadRowsHelper.Options options; private final ReadRowsResponseToInternalRowIteratorConverter converter; public BigQueryInputPartitionContext( BigQueryClientFactory bigQueryReadClientFactory, String streamName, ReadRowsHelper.Options options, ReadRowsResponseToInternalRowIteratorConverter converter) { this.bigQueryReadClientFactory = bigQueryReadClientFactory; this.streamName = streamName; this.options = options; this.converter = converter; } @Override public InputPartitionReaderContext createPartitionReaderContext() { ReadRowsRequest.Builder readRowsRequest = ReadRowsRequest.newBuilder().setReadStream(streamName); ReadRowsHelper readRowsHelper = new ReadRowsHelper(bigQueryReadClientFactory, readRowsRequest, options, Optional.empty()); Iterator readRowsResponses = readRowsHelper.readRows(); return new BigQueryInputPartitionReaderContext(readRowsResponses, converter, readRowsHelper); } @Override public boolean supportColumnarReads() { return false; } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/BigQueryInputPartitionReaderContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import com.google.cloud.bigquery.connector.common.ReadRowsHelper; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter; import com.google.common.collect.ImmutableList; import java.io.IOException; import java.util.Iterator; import java.util.Optional; import org.apache.spark.sql.catalyst.InternalRow; class BigQueryInputPartitionReaderContext implements InputPartitionReaderContext { private Iterator readRowsResponses; private ReadRowsResponseToInternalRowIteratorConverter converter; private ReadRowsHelper readRowsHelper; private Iterator rows = ImmutableList.of().iterator(); private InternalRow currentRow; BigQueryInputPartitionReaderContext( Iterator readRowsResponses, ReadRowsResponseToInternalRowIteratorConverter converter, ReadRowsHelper readRowsHelper) { this.readRowsResponses = readRowsResponses; this.converter = converter; this.readRowsHelper = readRowsHelper; } @Override public boolean next() throws IOException { while (!rows.hasNext()) { if (!readRowsResponses.hasNext()) { return false; } ReadRowsResponse readRowsResponse = readRowsResponses.next(); rows = converter.convert(readRowsResponse); } currentRow = rows.next(); return true; } @Override public InternalRow get() { return currentRow; } @Override public Optional getBigQueryStorageReadRowsTracer() { return Optional.empty(); } @Override public void close() throws IOException { readRowsHelper.close(); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/EmptyProjectionInputPartitionContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import org.apache.spark.sql.catalyst.InternalRow; public class EmptyProjectionInputPartitionContext implements InputPartitionContext { final int partitionSize; public EmptyProjectionInputPartitionContext(int partitionSize) { this.partitionSize = partitionSize; } @Override public InputPartitionReaderContext createPartitionReaderContext() { return new EmptyProjectionInputPartitionReaderContext(partitionSize); } @Override public boolean supportColumnarReads() { return false; } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/EmptyProjectionInputPartitionReaderContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import java.io.IOException; import java.util.Optional; import org.apache.spark.sql.catalyst.InternalRow; class EmptyProjectionInputPartitionReaderContext implements InputPartitionReaderContext { final int partitionSize; int currentIndex; EmptyProjectionInputPartitionReaderContext(int partitionSize) { this.partitionSize = partitionSize; this.currentIndex = 0; } @Override public boolean next() throws IOException { return currentIndex < partitionSize; } @Override public InternalRow get() { currentIndex++; return InternalRow.empty(); } @Override public Optional getBigQueryStorageReadRowsTracer() { return Optional.empty(); } @Override public void close() throws IOException { // empty } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/InputPartitionContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import java.io.Serializable; public interface InputPartitionContext extends Serializable { InputPartitionReaderContext createPartitionReaderContext(); boolean supportColumnarReads(); } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/InputPartitionReaderContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer; import java.io.Closeable; import java.io.IOException; import java.util.Optional; public interface InputPartitionReaderContext extends Closeable { boolean next() throws IOException; T get(); Optional getBigQueryStorageReadRowsTracer(); } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/StatisticsContext.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import java.util.OptionalLong; public interface StatisticsContext { OptionalLong sizeInBytes(); OptionalLong numRows(); } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/test/java/com/google/cloud/spark/bigquery/v2/context/ArrowInputPartitionContextTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import com.google.cloud.bigquery.connector.common.ReadRowsHelper; import com.google.cloud.bigquery.connector.common.ReadSessionResponse; import com.google.cloud.bigquery.storage.v1.ReadSession; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.common.collect.Lists; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectOutputStream; import java.util.Optional; import org.junit.Test; public class ArrowInputPartitionContextTest { // TODO: test with and without response compression! @Test public void testSerializability() throws IOException { new ObjectOutputStream(new ByteArrayOutputStream()) .writeObject( new ArrowInputPartitionContext( /* bigQueryClientFactory= */ null, /* tracerFactory= */ null, Lists.newArrayList("streamName"), new ReadRowsHelper.Options( /* maxRetries= */ 5, Optional.of("endpoint"), /* backgroundParsingThreads= */ 5, /* prebufferResponses= */ 1), null, new ReadSessionResponse(ReadSession.getDefaultInstance(), null), null, null, ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED)); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/test/java/com/google/cloud/spark/bigquery/v2/context/BigQueryInputPartitionReaderContextTest.java ================================================ /* * Copyright 2021 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.v2.context; import static com.google.common.truth.Truth.*; import com.google.cloud.bigquery.*; import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; import com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec; import com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter; import com.google.cloud.spark.bigquery.SchemaConvertersConfiguration; import com.google.common.collect.ImmutableList; import com.google.protobuf.TextFormat; import java.util.Iterator; import java.util.Optional; import org.apache.spark.sql.catalyst.InternalRow; import org.junit.Test; public class BigQueryInputPartitionReaderContextTest { private static final String ALL_TYPES_TABLE_AVRO_RAW_SCHEMA = "{\"type\":\"record\",\"name\":\"__root__\",\"fields\":[{\"name\":\"string_f\",\"type\":[\"null\",\"string\"]},{\"name\":\"bytes_f\",\"type\":[\"null\",\"bytes\"]},{\"name\":\"int_f\",\"type\":[\"null\",\"long\"]},{\"name\":\"float_f\",\"type\":[\"null\",\"double\"]},{\"name\":\"numeric_f\",\"type\":[\"null\",{\"type\":\"bytes\",\"logicalType\":\"decimal\",\"precision\":38,\"scale\":9}]},{\"name\":\"boolean_f\",\"type\":[\"null\",\"boolean\"]},{\"name\":\"timestamp_f\",\"type\":[\"null\",{\"type\":\"long\",\"logicalType\":\"timestamp-micros\"}]},{\"name\":\"date_f\",\"type\":[\"null\",{\"type\":\"int\",\"logicalType\":\"date\"}]},{\"name\":\"time_f\",\"type\":[\"null\",{\"type\":\"long\",\"logicalType\":\"time-micros\"}]},{\"name\":\"datetime_f\",\"type\":[\"null\",{\"type\":\"string\",\"logicalType\":\"datetime\"}]},{\"name\":\"geo_f\",\"type\":[\"null\",{\"type\":\"string\",\"sqlType\":\"GEOGRAPHY\"}]},{\"name\":\"record_f\",\"type\":[\"null\",{\"type\":\"record\",\"name\":\"__s_0\",\"fields\":[{\"name\":\"s\",\"type\":[\"null\",\"string\"]},{\"name\":\"i\",\"type\":[\"null\",\"long\"]}]}]},{\"name\":\"null_f\",\"type\":[\"null\",\"string\"]},{\"name\":\"sarray_f\",\"type\":{\"type\":\"array\",\"items\":\"string\"}},{\"name\":\"iarray_f\",\"type\":[\"null\",\"long\"]}]}"; private static final Schema ALL_TYPES_TABLE_BIGQUERY_SCHEMA = Schema.of( Field.of("string_f", LegacySQLTypeName.STRING), Field.of("bytes_f", LegacySQLTypeName.BYTES), Field.of("int_f", LegacySQLTypeName.INTEGER), Field.of("float_f", LegacySQLTypeName.FLOAT), Field.newBuilder("numeric_f", LegacySQLTypeName.NUMERIC) .setPrecision(38L) .setScale(9L) .build(), Field.of("boolean_f", LegacySQLTypeName.BOOLEAN), Field.of("timestamp_f", LegacySQLTypeName.TIMESTAMP), Field.of("date_f", LegacySQLTypeName.DATE), Field.of("time_f", LegacySQLTypeName.TIME), Field.of("datetime_f", LegacySQLTypeName.DATETIME), Field.of("geo_f", LegacySQLTypeName.GEOGRAPHY), Field.of( "record_f", LegacySQLTypeName.RECORD, Field.of("s", LegacySQLTypeName.STRING), Field.of("i", LegacySQLTypeName.INTEGER)), Field.of("null_f", LegacySQLTypeName.STRING), Field.newBuilder("sarray_f", LegacySQLTypeName.STRING) .setMode(Field.Mode.REPEATED) .build(), Field.newBuilder("iarray_f", LegacySQLTypeName.INTEGER) .setMode(Field.Mode.REPEATED) .build()); private static final ImmutableList ALL_TYPES_TABLE_FIELDS = ImmutableList.of( "string_f", "bytes_f", "int_f", "float_f", "numeric_f", "boolean_f", "timestamp_f", "date_f", "time_f", "datetime_f", "geo_f", "record_f", "null_f", "sarray_f", "iarray_f"); private static final String ALL_TYPES_TABLE_READ_ROWS_RESPONSE_STR = "stats {\n" + " progress {\n" + " at_response_end: 0.5\n" + " }\n" + "}\n" + "avro_rows {\n" + " serialized_binary_rows: \"\\002\\n" + "hello\\002\\b\\001\\002\\003\\004\\002\\310\\001\\0023333336@\\002" + " \\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\n" + "X\\324\\226\\000\\002\\001\\002\\244\\234\\205\\342\\275\\242\\312\\005\\002\\204\\235\\002\\002\\340\\232\\206\\213\\330\\004\\00222019-11-11T11:11:11.11111\\002" + " POINT(31.2 44.5)\\002\\002\\fin_rec\\002\\\"\\000\\004\\006big\\n" + "query\\000\\000\"\n" + " row_count: 1\n" + "}\n" + "row_count: 1\n"; @Test public void testReadAvro() throws Exception { TableInfo allTypesTableInfo = allTypesTableInfo(); ReadRowsResponse.Builder readRowsResponse = ReadRowsResponse.newBuilder(); TextFormat.merge(ALL_TYPES_TABLE_READ_ROWS_RESPONSE_STR, readRowsResponse); Iterator readRowsResponses = ImmutableList.of(readRowsResponse.build()).iterator(); ReadRowsResponseToInternalRowIteratorConverter converter = ReadRowsResponseToInternalRowIteratorConverter.avro( ALL_TYPES_TABLE_BIGQUERY_SCHEMA, ALL_TYPES_TABLE_FIELDS, ALL_TYPES_TABLE_AVRO_RAW_SCHEMA, Optional.empty(), Optional.empty(), SchemaConvertersConfiguration.createDefault(), ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED); BigQueryInputPartitionReaderContext reader = new BigQueryInputPartitionReaderContext(readRowsResponses, converter, null); assertThat(reader.next()).isTrue(); InternalRow row = reader.get(); assertThat(reader.next()).isFalse(); assertThat(row.numFields()).isEqualTo(15); assertThat(row.getString(0)).isEqualTo("hello"); } private TableInfo allTypesTableInfo() { return TableInfo.newBuilder( TableId.of("test", "alltypes"), StandardTableDefinition.newBuilder() .setType(TableDefinition.Type.TABLE) .setSchema(ALL_TYPES_TABLE_BIGQUERY_SCHEMA) .setNumBytes(146L) .setNumRows(1L) .build()) .build(); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-dsv2-parent/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../../spark-bigquery-parent spark-bigquery-dsv2-parent BigQuery DataSource v2 implementation common settings pom 3.5.0 2.12 Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-dsv2-common ${project.parent.version} commons-lang commons-lang provided io.openlineage openlineage-spark_${scala.binary.version} test org.apache.spark spark-mllib_${scala.binary.version} ${spark.version} provided io.netty netty-all org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided io.netty netty-all ${project.groupId} spark-bigquery-tests ${project.parent.version} test org.apache.maven.plugins maven-resources-plugin copy-resources validate copy-resources ${basedir}/target/classes src/build/resources true maven-jar-plugin empty-javadoc-jar package jar javadoc ${basedir}/src/build/javadoc ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-dsv2-parent ${revision} ../spark-bigquery-dsv2-parent spark-bigquery-metrics ${revision} Custom Metrics code for BigQuery DataSource v2 for Spark 3.2 3.2.0 true Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo org.apache.spark spark-sql_2.12 ${spark.version} provided ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/MetricUtils.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static org.apache.spark.util.Utils.bytesToString; import static org.apache.spark.util.Utils.msDurationToString; import java.text.NumberFormat; import java.util.Arrays; import java.util.Locale; class MetricUtils { private static final String METRIC_FORMAT = "total (min, med, max)\n%s (%s, %s, %s)"; private static final NumberFormat NUMBER_FORMAT_US = NumberFormat.getIntegerInstance(Locale.US); static String formatTimeMetrics(long[] taskMetrics) { if (taskMetrics.length == 0) { return msDurationToString(0); } if (taskMetrics.length == 1) { return msDurationToString(taskMetrics[0]); } Arrays.sort(taskMetrics); String sum = msDurationToString(Arrays.stream(taskMetrics).sum()); String min = msDurationToString(taskMetrics[0]); String med = msDurationToString(taskMetrics[taskMetrics.length / 2]); String max = msDurationToString(taskMetrics[taskMetrics.length - 1]); return String.format(METRIC_FORMAT, sum, min, med, max); } static String formatSizeMetrics(long[] taskMetrics) { return bytesToString(Arrays.stream(taskMetrics).sum()); } static String formatSumMetrics(long[] taskMetrics) { return NUMBER_FORMAT_US.format(Arrays.stream(taskMetrics).sum()); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryBytesReadMetric.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_BYTES_READ_METRIC_NAME; import org.apache.spark.sql.connector.metric.CustomMetric; public class SparkBigQueryBytesReadMetric implements CustomMetric { @Override public String name() { return BIG_QUERY_BYTES_READ_METRIC_NAME; } @Override public String description() { return BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION; } @Override public String aggregateTaskMetrics(long[] taskMetrics) { return MetricUtils.formatSizeMetrics(taskMetrics); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryCustomMetricConstants.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; public class SparkBigQueryCustomMetricConstants { public static final String BIG_QUERY_BYTES_READ_METRIC_NAME = "bqBytesRead"; static final String BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION = "number of BQ bytes read"; public static final String BIG_QUERY_ROWS_READ_METRIC_NAME = "bqRowsRead"; static final String BIG_QUERY_ROWS_READ_METRIC_DESCRIPTION = "number of BQ rows read"; public static final String BIG_QUERY_SCAN_TIME_METRIC_NAME = "bqScanTime"; static final String BIG_QUERY_SCAN_TIME_METRIC_DESCRIPTION = "scan time for BQ"; public static final String BIG_QUERY_PARSE_TIME_METRIC_NAME = "bqParseTime"; static final String BIG_QUERY_PARSE_TIME_METRIC_DESCRIPTION = "parsing time for BQ"; public static final String BIG_QUERY_TIME_IN_SPARK_METRIC_NAME = "bqTimeInSpark"; static final String BIG_QUERY_TIME_IN_SPARK_METRIC_DESCRIPTION = "time spent in spark"; public static final String BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME = "bqNumReadStreams"; static final String BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION = "number of read streams"; } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryNumberOfReadStreamsMetric.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME; import org.apache.spark.sql.connector.metric.CustomMetric; public class SparkBigQueryNumberOfReadStreamsMetric implements CustomMetric { @Override public String name() { return BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME; } @Override public String description() { return BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION; } @Override public String aggregateTaskMetrics(long[] taskMetrics) { return MetricUtils.formatSumMetrics(taskMetrics); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryParseTimeMetric.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_PARSE_TIME_METRIC_DESCRIPTION; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_PARSE_TIME_METRIC_NAME; import org.apache.spark.sql.connector.metric.CustomMetric; public class SparkBigQueryParseTimeMetric implements CustomMetric { @Override public String name() { return BIG_QUERY_PARSE_TIME_METRIC_NAME; } @Override public String description() { return BIG_QUERY_PARSE_TIME_METRIC_DESCRIPTION; } @Override public String aggregateTaskMetrics(long[] taskMetrics) { return MetricUtils.formatTimeMetrics(taskMetrics); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryRowsReadMetric.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_ROWS_READ_METRIC_DESCRIPTION; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_ROWS_READ_METRIC_NAME; import org.apache.spark.sql.connector.metric.CustomMetric; public class SparkBigQueryRowsReadMetric implements CustomMetric { @Override public String name() { return BIG_QUERY_ROWS_READ_METRIC_NAME; } @Override public String description() { return BIG_QUERY_ROWS_READ_METRIC_DESCRIPTION; } @Override public String aggregateTaskMetrics(long[] taskMetrics) { return MetricUtils.formatSumMetrics(taskMetrics); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryScanTimeMetric.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_SCAN_TIME_METRIC_DESCRIPTION; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_SCAN_TIME_METRIC_NAME; import org.apache.spark.sql.connector.metric.CustomMetric; public class SparkBigQueryScanTimeMetric implements CustomMetric { @Override public String name() { return BIG_QUERY_SCAN_TIME_METRIC_NAME; } @Override public String description() { return BIG_QUERY_SCAN_TIME_METRIC_DESCRIPTION; } @Override public String aggregateTaskMetrics(long[] taskMetrics) { return MetricUtils.formatTimeMetrics(taskMetrics); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryTaskMetric.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import org.apache.spark.sql.connector.metric.CustomTaskMetric; public class SparkBigQueryTaskMetric implements CustomTaskMetric { private final String name; private final long value; public SparkBigQueryTaskMetric(String name, long value) { this.name = name; this.value = value; } @Override public String name() { return name; } @Override public long value() { return value; } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryTimeInSparkMetric.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*; import org.apache.spark.sql.connector.metric.CustomMetric; public class SparkBigQueryTimeInSparkMetric implements CustomMetric { @Override public String name() { return BIG_QUERY_TIME_IN_SPARK_METRIC_NAME; } @Override public String description() { return BIG_QUERY_TIME_IN_SPARK_METRIC_DESCRIPTION; } @Override public String aggregateTaskMetrics(long[] taskMetrics) { return MetricUtils.formatTimeMetrics(taskMetrics); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryBytesReadMetricTest.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_BYTES_READ_METRIC_NAME; import static com.google.common.truth.Truth.assertThat; import org.junit.Test; public class SparkBigQueryBytesReadMetricTest { private final SparkBigQueryBytesReadMetric sparkBigQueryBytesReadMetric = new SparkBigQueryBytesReadMetric(); @Test public void testName() { assertThat(sparkBigQueryBytesReadMetric.name()).isEqualTo(BIG_QUERY_BYTES_READ_METRIC_NAME); } @Test public void testDescription() { assertThat(sparkBigQueryBytesReadMetric.description()) .isEqualTo(BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION); } @Test public void testAggregateMetrics() { assertThat(sparkBigQueryBytesReadMetric.aggregateTaskMetrics(new long[] {1024L, 2048L})) .isEqualTo("3.0 KiB"); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryNumberOfReadStreamsMetricTest.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME; import static com.google.common.truth.Truth.assertThat; import org.junit.Test; public class SparkBigQueryNumberOfReadStreamsMetricTest { private final SparkBigQueryNumberOfReadStreamsMetric sparkBigQueryNumberOfReadStreamsMetric = new SparkBigQueryNumberOfReadStreamsMetric(); @Test public void testName() { assertThat(sparkBigQueryNumberOfReadStreamsMetric.name()) .isEqualTo(BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME); } @Test public void testDescription() { assertThat(sparkBigQueryNumberOfReadStreamsMetric.description()) .isEqualTo(BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION); } @Test public void testAggregateMetrics() { assertThat( sparkBigQueryNumberOfReadStreamsMetric.aggregateTaskMetrics(new long[] {2L, 5L, 100L})) .isEqualTo("107"); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryParseTimeMetricTest.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*; import static com.google.common.truth.Truth.assertThat; import org.junit.Test; public class SparkBigQueryParseTimeMetricTest { private final SparkBigQueryParseTimeMetric sparkBigQueryParseTimeMetric = new SparkBigQueryParseTimeMetric(); @Test public void testName() { assertThat(sparkBigQueryParseTimeMetric.name()).isEqualTo(BIG_QUERY_PARSE_TIME_METRIC_NAME); } @Test public void testDescription() { assertThat(sparkBigQueryParseTimeMetric.description()) .isEqualTo(BIG_QUERY_PARSE_TIME_METRIC_DESCRIPTION); } @Test public void testAggregateMetrics() { assertThat(sparkBigQueryParseTimeMetric.aggregateTaskMetrics(new long[] {1020L, 2030L, 3040L})) .isEqualTo("total (min, med, max)\n" + "6.1 s (1.0 s, 2.0 s, 3.0 s)"); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryRowsReadMetricTest.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*; import static com.google.common.truth.Truth.assertThat; import org.junit.Test; public class SparkBigQueryRowsReadMetricTest { private final SparkBigQueryRowsReadMetric sparkBigQueryRowsReadMetric = new SparkBigQueryRowsReadMetric(); @Test public void testName() { assertThat(sparkBigQueryRowsReadMetric.name()).isEqualTo(BIG_QUERY_ROWS_READ_METRIC_NAME); } @Test public void testDescription() { assertThat(sparkBigQueryRowsReadMetric.description()) .isEqualTo(BIG_QUERY_ROWS_READ_METRIC_DESCRIPTION); } @Test public void testAggregateMetrics() { assertThat(sparkBigQueryRowsReadMetric.aggregateTaskMetrics(new long[] {1000L, 2000L})) .isEqualTo("3,000"); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryScanTimeMetricTest.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*; import static com.google.common.truth.Truth.assertThat; import org.junit.Test; public class SparkBigQueryScanTimeMetricTest { private final SparkBigQueryScanTimeMetric sparkBigQueryScanTimeMetric = new SparkBigQueryScanTimeMetric(); @Test public void testName() { assertThat(sparkBigQueryScanTimeMetric.name()).isEqualTo(BIG_QUERY_SCAN_TIME_METRIC_NAME); } @Test public void testDescription() { assertThat(sparkBigQueryScanTimeMetric.description()) .isEqualTo(BIG_QUERY_SCAN_TIME_METRIC_DESCRIPTION); } @Test public void testAggregateMetrics() { assertThat(sparkBigQueryScanTimeMetric.aggregateTaskMetrics(new long[] {1010L, 2020L, 3030L})) .isEqualTo("total (min, med, max)\n" + "6.1 s (1.0 s, 2.0 s, 3.0 s)"); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryTaskMetricTest.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.common.truth.Truth.assertThat; import org.junit.Test; public class SparkBigQueryTaskMetricTest { private final String testName = "test_name"; private final long testValue = 1000L; private final SparkBigQueryTaskMetric sparkBigQueryTaskMetric = new SparkBigQueryTaskMetric(testName, testValue); @Test public void testName() { assertThat(sparkBigQueryTaskMetric.name()).isEqualTo(testName); } @Test public void testValue() { assertThat(sparkBigQueryTaskMetric.value()).isEqualTo(testValue); } } ================================================ FILE: spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryTimeInSparkMetricTest.java ================================================ package com.google.cloud.spark.bigquery.v2.customMetrics; import static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*; import static com.google.common.truth.Truth.assertThat; import org.junit.Test; public class SparkBigQueryTimeInSparkMetricTest { private final SparkBigQueryTimeInSparkMetric sparkBigQueryTimeInSparkMetric = new SparkBigQueryTimeInSparkMetric(); @Test public void testName() { assertThat(sparkBigQueryTimeInSparkMetric.name()) .isEqualTo(BIG_QUERY_TIME_IN_SPARK_METRIC_NAME); } @Test public void testDescription() { assertThat(sparkBigQueryTimeInSparkMetric.description()) .isEqualTo(BIG_QUERY_TIME_IN_SPARK_METRIC_DESCRIPTION); } @Test public void testAggregateMetrics() { assertThat( sparkBigQueryTimeInSparkMetric.aggregateTaskMetrics(new long[] {1020L, 2010L, 3030L})) .isEqualTo("total (min, med, max)\n" + "6.1 s (1.0 s, 2.0 s, 3.0 s)"); } } ================================================ FILE: spark-bigquery-parent/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} pom Spark BigQuery Connector Build Parent Parent project for all the Spark BigQuery Connector artifacts https://github.com/GoogleCloudDataproc/spark-bigquery-connector Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo Google Inc. http://www.google.com scm:git:git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git scm:git:git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git true 0.0.1-SNAPSHOT 1.11.5 17.0.0 18.3.0 2.75.0 2.9.0 1.43.0 2.60.0 3.22.1 4.83.0 2.64.0 1.4.5 1.79.0 33.5.0-jre 2.21.1 4.2.10.Final 1.37.0 2.8.3 4.34.0 true false true 8 UTF-8 [1.8,9) --add-exports java.base/sun.util.calendar=ALL-UNNAMED --add-opens java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED false aopalliance aopalliance 1.0 provided com.fasterxml.jackson jackson-bom ${jackson.version} import pom com.fasterxml.jackson.core jackson-core ${jackson.version} compile com.fasterxml.jackson.core jackson-databind ${jackson.version} com.github.luben zstd-jni 1.4.9-1 provided com.google.api gax-bom ${gax.version} pom import com.google.api-client google-api-client-bom ${google-api-client.version} pom import com.google.auth google-auth-library-bom ${google-auth.version} pom import com.google.cloud google-cloud-bigquery ${google-cloud-bigquery.version} io.grpc grpc-netty-shaded com.google.cloud google-cloud-bigquerystorage-bom ${google-cloud-bigquerystorage.version} pom import com.google.cloud google-cloud-dataproc-bom ${google-cloud-dataproc.version} pom import com.google.cloud google-cloud-storage ${google-cloud-storage.version} com.google.cloud.bigdataoss gcs-connector hadoop2-2.2.8 shaded com.google.cloud.bigdataoss util-hadoop com.google.errorprone error_prone_annotations 2.48.0 com.google.code.findbugs jsr305 3.0.2 provided com.google.guava guava ${guava.version} com.google.protobuf protobuf-bom ${protobuf.version} pom import com.google.truth truth ${google-truth.version} com.thoughtworks.paranamer paranamer ${paranamer.version} commons-codec commons-codec 1.21.0 commons-lang commons-lang 2.6 io.grpc grpc-bom ${grpc.version} pom import io.netty netty-bom ${netty.version} pom import io.openlineage openlineage-spark_2.12 ${openlineage-spark.version} test io.openlineage openlineage-spark_2.13 ${openlineage-spark.version} test javax.annotation javax.annotation-api 1.3.2 provided junit junit 4.13.2 org.apache.avro avro ${avro.version} org.apache.avro avro-ipc ${avro.version} org.apache.avro avro-mapred ${avro.version} org.apache.arrow arrow-bom ${arrow.version} import pom org.apache.arrow arrow-memory-netty-buffer-patch ${arrow.version} org.apache.commons commons-compress 1.28.0 commons-io commons-io 2.21.0 org.apache.commons commons-lang3 3.20.0 org.mockito mockito-core 4.11.0 io.openlineage spark-extension-interfaces ${openlineage-spark.version} org.conscrypt conscrypt-openjdk-uber 2.5.2 provided org.json json 20231013 org.slf4j slf4j-api 1.7.16 provided junit junit test org.mockito mockito-core test com.google.truth truth test net.alchim31.maven scala-maven-plugin 4.9.5 org.jacoco jacoco-maven-plugin 0.8.11 prepare-agent com.github.spotbugs spotbugs-maven-plugin 4.8.3.0 org.apache.maven.plugins maven-checkstyle-plugin 3.3.1 org.apache.maven.plugins maven-enforcer-plugin 3.4.1 org.apache.maven.plugins maven-failsafe-plugin 3.5.3 org.apache.maven.plugins maven-jar-plugin 3.3.0 org.apache.maven.plugins maven-pmd-plugin 3.21.2 org.apache.maven.plugins maven-resources-plugin 3.3.1 org.apache.maven.plugins maven-shade-plugin 3.6.1 org.apache.maven.plugins maven-surefire-plugin 3.5.3 org.codehaus.mojo build-helper-maven-plugin 3.5.0 org.apache.maven.plugins maven-deploy-plugin 3.1.1 ${deploy.skip} org.apache.maven.plugins maven-compiler-plugin 3.14.0 ${toolchain.jdk.version} org.apache.maven.plugins maven-surefire-plugin ${argLine} **/*AcceptanceTest.java **/*IntegrationTest.java ${toolchain.jdk.version} org.apache.maven.plugins maven-jar-plugin true true false org.apache.maven.plugins maven-pmd-plugin true utf-8 100 true 1.8 100 true copy-paste-detector validate cpd-check org.apache.maven.plugins maven-checkstyle-plugin google_checks.xml true false false validate validate check org.commonjava.maven.plugins directory-maven-plugin 1.0 directories directory-of initialize reactor.project.basedir com.google.cloud.spark spark-bigquery-reactor com.diffplug.spotless spotless-maven-plugin 2.30.0 *.md .gitignore fmt:off fmt:on 1.7 check compile com.github.spotbugs spotbugs-maven-plugin false org.codehaus.mojo flatten-maven-plugin 1.5.0 true resolveCiFriendliesOnly flatten verify flatten flatten.clean clean clean org.apache.maven.plugins maven-shade-plugin ${shade.skip} false android com.google.cloud.spark.bigquery.repackaged.android autovalue com.google.cloud.spark.bigquery.repackaged.autovalue avro.shaded com.google.cloud.spark.bigquery.repackaged.avro.shaded com.fasterxml com.google.cloud.spark.bigquery.repackaged.com.fasterxml com.github com.google.cloud.spark.bigquery.repackaged.com.github com.github.luben.zstd.** com.google com.google.cloud.spark.bigquery.repackaged.com.google com.google.cloud.bigquery.connector.common.** com.google.cloud.spark.bigquery.** com.google.cloud.spark.events.** com.thoughtworks.paranamer com.google.cloud.spark.bigquery.repackaged.com.thoughtworks.paranamer com.typesafe com.google.cloud.spark.bigquery.repackaged.com.typesafe io.grpc com.google.cloud.spark.bigquery.repackaged.io.grpc io.netty com.google.cloud.spark.bigquery.repackaged.io.netty io.opencensus com.google.cloud.spark.bigquery.repackaged.io.opencensus io.opentelemetry com.google.cloud.spark.bigquery.repackaged.io.opentelemetry io.perfmark com.google.cloud.spark.bigquery.repackaged.io.perfmark javax.inject com.google.cloud.spark.bigquery.repackaged.javax.inject net.bytebuddy com.google.cloud.spark.bigquery.repackaged.net.bytebuddy org.apache.arrow com.google.cloud.spark.bigquery.repackaged.org.apache.arrow org.apache.beam com.google.cloud.spark.bigquery.repackaged.org.apache.beam org.apache.commons com.google.cloud.spark.bigquery.repackaged.org.apache.commons org.apache.commons.logging.* org.apache.http com.google.cloud.spark.bigquery.repackaged.org.apache.http org.checkerframework com.google.cloud.spark.bigquery.repackaged.org.checkerframework org.codehaus.mojo com.google.cloud.spark.bigquery.repackaged.org.codehaus.mojo org.eclipse.collections com.google.cloud.spark.bigquery.repackaged.org.eclipse.collections org.json com.google.cloud.spark.bigquery.repackaged.org.json org.jspecify com.google.cloud.spark.bigquery.repackaged.org.jspecify org.threeten com.google.cloud.spark.bigquery.repackaged.org.threeten org.tukaani.xz com.google.cloud.spark.bigquery.repackaged.org.tukaani.xz org.xerial.snappy com.google.cloud.spark.bigquery.repackaged.org.xerial.snappy io.openlineage.spark.shade com.google.cloud.spark.bigquery.repackaged.io.openlineage.spark.shade META-INF/native/libnetty META-INF/native/libcom_google_cloud_spark_bigquery_repackaged_netty META-INF/native/netty META-INF/native/com_google_cloud_spark_bigquery_repackaged_netty *:* module-info.class META-INF/*.MF META-INF/*.SF META-INF/*.DSA META-INF/*.RSA META-INF/maven/** META-INF/versions/** **/*.proto package shade org.apache.maven.plugins maven-toolchains-plugin 3.2.0 select-jdk-toolchain org.codehaus.mojo exec-maven-plugin 3.3.0 verify-shaded-artifact pre-integration-test exec ${shade.skip} ${reactor.project.basedir}/scripts/verify-shading.sh ${project.build.directory}/${project.build.finalName}.jar com.google.cloud.artifactregistry artifactregistry-maven-wagon 2.2.0 com.github.spotbugs spotbugs-maven-plugin integration false org.apache.maven.plugins maven-failsafe-plugin ${argLine} 7 false **/*IntegrationTest.java ${toolchain.jdk.version} integration-test integration-test verify verify acceptance false org.apache.maven.plugins maven-failsafe-plugin 10 false **/*AcceptanceTest.java integration-test integration-test verify verify coverage false org.jacoco jacoco-maven-plugin report verify report org.jacoco jacoco-maven-plugin report release-nightly false artifact-registry artifactregistry://us-maven.pkg.dev/cloud-dataproc-ci/connectors artifact-registry artifactregistry://us-maven.pkg.dev/cloud-dataproc-ci/connectors release false org.sonatype.plugins nexus-staging-maven-plugin 1.6.13 true ossrh https://ossrh-staging-api.central.sonatype.com false ${nexus.remote.skip} org.apache.maven.plugins maven-gpg-plugin 3.2.8 sign-artifacts verify sign false org.apache.maven.plugins maven-source-plugin 3.3.1 true attach-sources jar-no-fork org.apache.maven.plugins maven-javadoc-plugin 3.11.2 attach-javadocs jar ================================================ FILE: spark-bigquery-pushdown/pom.xml ================================================ spark-bigquery-parent com.google.cloud.spark ${revision} ../spark-bigquery-parent 4.0.0 spark-bigquery-pushdown Spark BigQuery Predicate Pushdown Implementation pom spark-bigquery-pushdown-parent spark-2.4-bigquery-pushdown_2.11 spark-2.4-bigquery-pushdown_2.12 spark-3.1-bigquery-pushdown_2.12 spark-3.2-bigquery-pushdown_2.12 spark-3.2-bigquery-pushdown_2.13 spark-3.3-bigquery-pushdown_2.12 spark-3.3-bigquery-pushdown_2.13 spark-bigquery-pushdown-common_2.11 spark-bigquery-pushdown-common_2.12 spark-bigquery-pushdown-common_2.13 ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/AggregateQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.makeStatement import org.apache.spark.sql.catalyst.expressions.{Expression, NamedExpression} /** Query for aggregation operations. * * @constructor * @param projectionColumns The projection columns, containing also the aggregate expressions. * @param groups The grouping columns. * @param child The child node. * @param alias Query alias. */ case class AggregateQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, projectionColumns: Seq[NamedExpression], groups: Seq[Expression], child: BigQuerySQLQuery, alias: String ) extends BigQuerySQLQuery( expressionConverter, expressionFactory, alias, children = Seq(child), projections = if (projectionColumns.isEmpty) None else Some(projectionColumns)) { /** Builds the GROUP BY clause of the filter query. * Insert a limit 1 to ensure that only one row returns if there are no grouping expressions * */ override val suffixStatement: BigQuerySQLStatement = if (groups.nonEmpty) { ConstantString("GROUP BY") + makeStatement(groups.map(expressionToStatement), ",") } else { ConstantString("LIMIT 1").toStatement } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BaseSparkBigQueryPushdown.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.SparkSession abstract class BaseSparkBigQueryPushdown extends SparkBigQueryPushdown { def supportsSparkVersion(sparkVersion: String): Boolean override def enable(session: SparkSession): Unit = { val sparkExpressionFactory = createSparkExpressionFactory val sparkPlanFactory = createSparkPlanFactory val sparkExpressionConverter = createSparkExpressionConverter( sparkExpressionFactory, sparkPlanFactory) val bigQueryStrategy = createBigQueryStrategy( sparkExpressionConverter, sparkExpressionFactory, sparkPlanFactory) SparkBigQueryPushdownUtil.enableBigQueryStrategy(session, bigQueryStrategy) } override def disable(session: SparkSession): Unit = { SparkBigQueryPushdownUtil.disableBigQueryStrategy(session) } def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter def createSparkExpressionFactory: SparkExpressionFactory def createSparkPlanFactory(): SparkPlanFactory def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BigQuerySQLQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.BigQueryPushdownException import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.{blockStatement, makeStatement, renameColumns} import org.apache.spark.sql.catalyst.expressions.{Alias, Attribute, AttributeReference, Cast, Expression, NamedExpression} /** * Building blocks of a translated query, with nested subqueries. * Also, maintains the children, output, and projection expressions required to * construct the query from the bottom up * * @param expressionConverter Converter for converting Spark expressions to SQL * @param alias The alias for a subquery. * @param children A sequence containing the child queries. May be empty in the case * of a source (bottom-level) query, contain one element (for most * unary operations), or contain two elements (for joins, etc.). * @param projections Contains optional projection columns for this query. Currently, set in ProjectQuery and AggregateQuery * @param outputAttributes Optional manual override for output. Currently, set in SourceQuery and will be later used in UnionQuery * @param conjunctionStatement Conjunction phrase to be used in between subquery children, * or simple phrase when there are no subqueries. * @param fields Contains output from the left + right query for left semi and left anti joins */ abstract class BigQuerySQLQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, alias: String, children: Seq[BigQuerySQLQuery] = Seq.empty, projections: Option[Seq[NamedExpression]] = None, outputAttributes: Option[Seq[Attribute]] = None, conjunctionStatement: BigQuerySQLStatement = EmptyBigQuerySQLStatement(), fields: Option[Seq[Attribute]] = None, // For some query clauses we may override the outputAttributes, but will // need a different set of resolvable attributes to be visible to the parent // query clause, e.g., in UnionQuery val visibleAttributeOverride: Option[Seq[Attribute]] = None) { /** * Creates the sql after the FROM clause by building the queries from its children. * Thus, we build the sourceStatement from the bottom up */ val sourceStatement: BigQuerySQLStatement = if (children.nonEmpty) { makeStatement(children.map(_.getStatement(true)), conjunctionStatement) } else { conjunctionStatement } /** Creates the last part of the sql query. This could be the WHERE clause in * case of a filter query or a LIMIT clause for a limit query */ val suffixStatement: BigQuerySQLStatement = EmptyBigQuerySQLStatement() /** Gets columns from the fields list if not empty or from the child query */ val columnSet: Seq[Attribute] = { if (fields.isEmpty) { children.foldLeft(Seq.empty[Attribute])( (x, y) => { val attrs = if (y.visibleAttributeOverride.isEmpty) { y.outputWithQualifier } else { y.visibleAttributeOverride.get } x ++ attrs } ) } else { fields.get } } /** * Checks if we have already seen the AttributeReference before based on the exprId and * then renames the projection based on the query alias */ val processedProjections: Option[Seq[NamedExpression]] = projections .map( p => p.map( e => columnSet.find(c => c.exprId == e.exprId) match { case Some(a) if e.isInstanceOf[AttributeReference] => AttributeReference(a.name, a.dataType, a.nullable, a.metadata)( a.exprId ) case _ => e } ) ) .map(p => renameColumns(p, alias, expressionFactory)) /** Convert processedProjections into a BigQuerySQLStatement */ val columns: Option[BigQuerySQLStatement] = processedProjections.map( p => makeStatement(p.map(expressionConverter.convertStatement(_, columnSet)), ",") ) /** * Creates the output of the current query from the passed in outputAttributes * or projections. If both are empty, then we retrieve it from the child query's output */ val output: Seq[Attribute] = { outputAttributes.getOrElse( processedProjections.map(p => p.map(_.toAttribute)).getOrElse { if (children.isEmpty) { throw new BigQueryPushdownException( "Query output attributes must not be empty when it has no children." ) } else { children .foldLeft(Seq.empty[Attribute])((x, y) => x ++ y.output) } } ) } /** Add the query alias as a qualifier for each output attribute */ var outputWithQualifier: Seq[AttributeReference] = output.map( a => AttributeReference(a.name, a.dataType, a.nullable, a.metadata)( a.exprId, Seq[String](alias) ) ) /** Converts this query into a String representing the SQL. * * @param useAlias Whether or not to alias this translated block of SQL. * @return SQL statement for this query. */ def getStatement(useAlias: Boolean = false): BigQuerySQLStatement = { val selectedColumns = if(columns.isEmpty || columns.get.isEmpty) ConstantString("*").toStatement else columns.get val statement = ConstantString("SELECT") + selectedColumns + "FROM" + sourceStatement + suffixStatement if (useAlias) { blockStatement(statement, alias) } else { statement } } /** * Convert Spark expression to BigQuerySQLStatement by using the passed in expressionConverter * @param expr * @return */ def expressionToStatement(expr: Expression): BigQuerySQLStatement = expressionConverter.convertStatement(expr, columnSet) /** Finds a particular query type in the overall tree. * * @param query PartialFunction defining a positive result. * @param T BigQuerySQLQuery type * @return Option[T] for one positive match, or None if nothing found. */ def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] = query .lift(this) .orElse( if (this.children.isEmpty) { None } else { this.children.head.find(query) } ) // For OUTER JOIN, the column's nullability may need to be modified as true def nullableOutputWithQualifier: Seq[AttributeReference] = output.map( a => AttributeReference(a.name, a.dataType, nullable = true, a.metadata)( a.exprId, Seq[String](alias) ) ) } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BigQuerySQLStatement.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns /** * SQL string wrapper class */ class BigQuerySQLStatement(val list: List[StatementElement] = Nil) { /** * Create a new BigQuerySQLStatement by adding a StatementElement to the current BigQuerySQLStatement * @param element * @return */ def +(element: StatementElement): BigQuerySQLStatement = new BigQuerySQLStatement(element :: list) /** * Create a new BigQuerySQLStatement by adding a BigQuerySQLStatement to the current BigQuerySQLStatement * @param element * @return */ def +(statement: BigQuerySQLStatement): BigQuerySQLStatement = new BigQuerySQLStatement(statement.list ::: list) /** * Create a new BigQuerySQLStatement by adding a String to the current BigQuerySQLStatement * * @param element * @return */ def +(str: String): BigQuerySQLStatement = this + ConstantString(str) def isEmpty: Boolean = list.isEmpty /** * Converts a BigQuerySQLStatement to SQL runnable by BigQuery * @return */ override def toString: String = { val buffer = new StringBuilder val sql = list.reverse sql.foreach { case x: ConstantString => if (buffer.nonEmpty && buffer.last != ' ') { buffer.append(" ") } buffer.append(x) case x: VariableElement[_] => if (buffer.nonEmpty && buffer.last != ' ') { buffer.append(" ") } buffer.append(x.sql) } buffer.toString() } } object EmptyBigQuerySQLStatement { def apply(): BigQuerySQLStatement = new BigQuerySQLStatement() } /** * Trait for wrapping various types like String, Long, Float etc */ sealed trait StatementElement { val value: String /** * Create a new BigQuerySQLStatement by adding a StatementElement to the current StatementElement * * @param element * @return */ def +(element: StatementElement): BigQuerySQLStatement = new BigQuerySQLStatement(element :: List[StatementElement](this)) /** * Create a new BigQuerySQLStatement by adding a BigQuerySQLStatement to the current StatementElement * * @param element * @return */ def +(statement: BigQuerySQLStatement): BigQuerySQLStatement = new BigQuerySQLStatement( statement.list ::: List[StatementElement](this) ) /** * Create a new BigQuerySQLStatement by adding a String to the current StatementElement * * @param element * @return */ def +(str: String): BigQuerySQLStatement = this + ConstantString(str) override def toString: String = value def toStatement: BigQuerySQLStatement = new BigQuerySQLStatement(List[StatementElement](this)) def sql: String = value } case class ConstantString(override val value: String) extends StatementElement sealed trait VariableElement[T] extends StatementElement { override val value = "?" val variable: Option[T] override def sql: String = if (variable.isDefined) variable.get.toString else "NULL" } case class StringVariable(override val variable: Option[String]) extends VariableElement[String] { override def sql: String = if (variable.isDefined) s"""'${variable.get}'""" else "NULL" } case class IntVariable(override val variable: Option[Int]) extends VariableElement[Int] case class LongVariable(override val variable: Option[Long]) extends VariableElement[Long] case class ShortVariable(override val variable: Option[Short]) extends VariableElement[Short] case class FloatVariable(override val variable: Option[Float]) extends VariableElement[Float] case class DoubleVariable(override val variable: Option[Double]) extends VariableElement[Double] case class BooleanVariable(override val variable: Option[Boolean]) extends VariableElement[Boolean] case class ByteVariable(override val variable: Option[Byte]) extends VariableElement[Byte] object ConstantStringVal { def apply(l: Any): StatementElement = { if (l == null || l.toString.toLowerCase == "null") { ConstantString("NULL") } else { ConstantString(l.toString) } } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BigQueryStrategy.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.{BigQueryPushdownException, BigQueryPushdownUnsupportedException} import com.google.cloud.spark.bigquery.SparkBigQueryUtil.isDataFrameShowMethodInStackTrace import com.google.cloud.spark.bigquery.direct.{BigQueryRDDFactory, DirectBigQueryRelation} import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.{convertExpressionToNamedExpression, removeProjectNodeFromPlan, addProjectNodeToThePlan, isLimitTheChildToProjectNode} import org.apache.spark.internal.Logging import org.apache.spark.sql.Strategy import org.apache.spark.sql.catalyst.analysis.NamedRelation import org.apache.spark.sql.catalyst.expressions.NamedExpression.unapply import org.apache.spark.sql.catalyst.expressions.{Alias, Cast, NamedExpression} import org.apache.spark.sql.catalyst.plans._ import org.apache.spark.sql.catalyst.plans.logical._ import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.execution.{ProjectExec, SparkPlan} /** * Our hook into Spark that converts the logical plan into physical plan. * We try to translate the Spark logical plan into SQL runnable on BigQuery. * If the query generation fails for any reason, we return Nil and let Spark * run other strategies to compute the physical plan. * * Passing SparkPlanFactory as the constructor parameter here for ease of unit testing * */ abstract class BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends Strategy with Logging { /** This iterator automatically increments every time it is used, * and is for aliasing subqueries. */ final val alias = Iterator.from(0).map(n => s"SUBQUERY_$n") /** Attempts to generate a SparkPlan from the provided LogicalPlan. * * @param plan The LogicalPlan provided by Spark. * @return An Option of Seq[BigQueryPlan] that contains the PhysicalPlan if * query generation was successful, None if not. */ override def apply(plan: LogicalPlan): Seq[SparkPlan] = { // Check if we have any unsupported nodes in the plan. If we do, we return // Nil and let Spark try other strategies if(hasUnsupportedNodes(plan)) { return Nil } try { generateSparkPlanFromLogicalPlan(plan) } catch { // We catch all exceptions here (including BigQueryPushdownUnsupportedException) // and return Nil because if we are not able to translate the plan, then // we let Spark handle it case e: Exception => logDebug("Query pushdown failed: ", e) Nil } } def hasUnsupportedNodes(plan: LogicalPlan): Boolean = { plan.foreach { case UnaryOperationExtractor(_) | BinaryOperationExtractor(_) | UnionOperationExtractor(_) => // NamedRelation is the superclass of DataSourceV2Relation and DataSourceV2ScanRelation. // DataSourceV2Relation is the Spark 2.4 DSv2 connector relation and // DataSourceV2ScanRelation is the Spark 3.1 DSv2 connector relation case _: LogicalRelation | _: NamedRelation | _: Expand => case subPlan => logDebug(s"LogicalPlan has unsupported node for query pushdown : ${subPlan.nodeName} in ${subPlan.getClass.getName}") return true } false } def generateSparkPlanFromLogicalPlan(plan: LogicalPlan): Seq[SparkPlan] = { var cleanedPlan = cleanUpLogicalPlan(plan) // We have to handle the case where df.show() was called by an end user // differently because Spark can insert a Project node on top of the // LogicalPlan and that could mess up the ordering of results. if (isDataFrameShowMethodInStackTrace) { // We first get the project node that has been added by Spark for df.show() var projectNodeAddedBySpark = getTopMostProjectNodeWithAliasedCasts(cleanedPlan) // If the Project node exists, we first create a BigQueryPlan after // removing the extra Project node and then create a physical Project plan // by passing the BigQueryPlan as its child. Note that Spark may not add the // Project node if the selected(projected) columns are all of type string. // In such a case, we don't have to return a ProjectExec SparkPlan if (projectNodeAddedBySpark.isDefined) { if(!isLimitTheChildToProjectNode(projectNodeAddedBySpark.get)) { // If limit is not the child to the Project node in case of show(), // spark adds cast to the existing Project node instead of adding another Project node as happening above. // Found this issue in Query 9 of TPCDS where query doesn't have limit and the Project has multiple ScalarSubQueries. // To handle this case, we update the project node by removing the casts and then add an additional Project Node as parent to that node // which has the cast to all the expressions in project list // and do the same as above. cleanedPlan = addProjectNodeToThePlan(cleanedPlan, projectNodeAddedBySpark.get, expressionFactory) projectNodeAddedBySpark = getTopMostProjectNodeWithAliasedCasts(cleanedPlan) } return Seq(generateProjectPlanFromLogicalPlan(cleanedPlan, projectNodeAddedBySpark.get)) } } Seq(generateBigQueryPlanFromLogicalPlan(cleanedPlan)) } /** * Iterates over the logical plan to find project plan with no fields or SubQueryAlias, if found removes it * and returns the LogicalPlan without empty project plan, to continue the generation of query. * Spark is generating an empty project plan when the query has count(*) * Found this issue when executing query-9 of TPC-DS * * @param plan The LogicalPlan to be processed. * @return The processed LogicalPlan removing all the empty Project plan's or SubQueryAlias, if the input has any */ def cleanUpLogicalPlan(plan: LogicalPlan): LogicalPlan = { plan.transform({ case Project(Nil, child) => child case SubqueryAlias(_, child) => child }) } /** * Returns the first Project node that contains expressions in the projectList * of the form Alias(Cast(_,_,_)) while recursing down the LogicalPlan. * If an Aggregate, Join or Relation node is encountered first, we return None */ def getTopMostProjectNodeWithAliasedCasts(plan: LogicalPlan): Option[Project] = { plan.foreach { case _: Aggregate | _: Join | _: LogicalRelation | _:NamedRelation => return None case projectNode@Project(projectList, _) => projectList.foreach { case Alias(child, _) => child match { case CastExpressionExtractor(_) => return Some(projectNode) case _ => } case _ => } return None case _ => } // We should never reach here None } /** * Generates the BigQueryPlan from the Logical plan by * 1) Generating a BigQuerySQLQuery from the passed-in LogicalPlan * 2) Getting the BigQueryRDDFactory from the source query * 3) Creating a BigQueryPlan by passing the query root and the BigQueryRDDFactory */ def generateBigQueryPlanFromLogicalPlan(plan: LogicalPlan): SparkPlan = { // Generate the query from the logical plan val queryRoot = generateQueryFromPlan(plan) val bigQueryRDDFactory = getRDDFactory(queryRoot.get) // Create the SparkPlan sparkPlanFactory.createBigQueryPlan(queryRoot.get, bigQueryRDDFactory.get) .getOrElse(throw new BigQueryPushdownException("Could not generate BigQuery physical plan from query")) } /** * Generates the physical Project plan from the Logical plan by * 1) Removing the passed-in Project node from the passed-in plan * 2) Generating a BigQuery plan from the remaining plan * 3) Creating a physical Project plan by passing the Project node and BigQueryPlan into the SparkPlanFactory */ def generateProjectPlanFromLogicalPlan(plan: LogicalPlan, projectNode: Project): SparkPlan = { // Remove Project node from the plan val planWithoutProjectNode = removeProjectNodeFromPlan(plan, projectNode) val bigQueryPlan = generateBigQueryPlanFromLogicalPlan(planWithoutProjectNode) sparkPlanFactory.createProjectPlan(projectNode, bigQueryPlan) .getOrElse(throw new BigQueryPushdownException("Could not generate BigQuery physical plan from query")) } def getRDDFactory(queryRoot: BigQuerySQLQuery): Option[BigQueryRDDFactory] = { val sourceQuery = queryRoot .find { case q: SourceQuery => q } // this should ideally never happen .getOrElse( throw new BigQueryPushdownException( "Something went wrong: a query tree was generated with no SourceQuery." ) ) Some(sourceQuery.bigQueryRDDFactory) } // This method will be overridden in subclasses that support query pushdown for DSv2 def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] /** * Attempts to generate the query from the LogicalPlan by pattern matching recursively. * The queries are constructed from the bottom up, but the validation of * supported nodes for translation happens on the way down. * * @param plan The LogicalPlan to be processed. * @return An object of type Option[BigQuerySQLQuery], which is None if the plan contains an * unsupported node type. */ def generateQueryFromPlan(plan: LogicalPlan): Option[BigQuerySQLQuery] = { plan match { // NamedRelation is the superclass of DataSourceV2Relation and DataSourceV2ScanRelation. // DataSourceV2Relation is the Spark 2.4 DSv2 connector relation and // DataSourceV2ScanRelation is the Spark 3.1 DSv2 connector relation case _: NamedRelation => generateQueryFromPlanForDataSourceV2(plan) case l@LogicalRelation(bqRelation: DirectBigQueryRelation, _, _, _) => Some(SourceQuery(expressionConverter, expressionFactory, bqRelation.getBigQueryRDDFactory, bqRelation.getTableName, l.output, alias.next)) case UnaryOperationExtractor(node) => // UnaryOperationExtractor returns the node itself. So, recurse on the node's child generateQueryFromPlan(node.children.head) map { subQuery => plan match { case Filter(condition, _) => FilterQuery(expressionConverter, expressionFactory, Seq(condition), subQuery, alias.next) case Project(fields, _) => ProjectQuery(expressionConverter, expressionFactory, fields, subQuery, alias.next) case Aggregate(groups, fields, _) => AggregateQuery(expressionConverter, expressionFactory, fields, groups, subQuery, alias.next) // Special case for Spark 2.4 in which Spark SQL query already has a limit clause and df.show() is called case Limit(limitExpr, Limit(_, Sort(orderExpr, true, _))) => SortLimitQuery(expressionConverter, expressionFactory, Some(limitExpr), orderExpr, subQuery, alias.next) case Limit(limitExpr, Sort(orderExpr, true, _)) => SortLimitQuery(expressionConverter, expressionFactory, Some(limitExpr), orderExpr, subQuery, alias.next) case Limit(limitExpr, _) => SortLimitQuery(expressionConverter, expressionFactory, Some(limitExpr), Seq.empty, subQuery, alias.next) case Sort(orderExpr, true, Limit(limitExpr, _)) => SortLimitQuery(expressionConverter, expressionFactory, Some(limitExpr), orderExpr, subQuery, alias.next) case Sort(orderExpr, true, _) => SortLimitQuery(expressionConverter, expressionFactory, None, orderExpr, subQuery, alias.next) case Window(windowExpressions, _, _, _) => WindowQuery(expressionConverter, expressionFactory, windowExpressions, subQuery, if (plan.output.isEmpty) None else Some(plan.output), alias.next) case _ => subQuery } } case BinaryOperationExtractor(node) => // BinaryOperationExtractor returns the node itself. So, recurse on the node's children generateQueryFromPlan(node.children.head).flatMap { l => generateQueryFromPlan(node.children(1)) map { r => plan match { case JoinExtractor(joinType, condition) => joinType match { case Inner | LeftOuter | RightOuter | FullOuter | Cross => JoinQuery(expressionConverter, expressionFactory, l, r, condition, joinType, alias.next) case LeftSemi => LeftSemiJoinQuery(expressionConverter, expressionFactory, l, r, condition, isAntiJoin = false, alias) case LeftAnti => LeftSemiJoinQuery(expressionConverter, expressionFactory, l, r, condition, isAntiJoin = true, alias) case _ => throw new MatchError } } } } case UnionOperationExtractor(children) => createUnionQuery(children) case Expand(projections, output, child) => // convert list of Expressions into ProjectPlan val projectPlan = projections.map { p => val namedExpressions = convertExpressionToNamedExpression(p, output, expressionFactory) Project(namedExpressions, child) } createUnionQuery(projectPlan) case _ => throw new BigQueryPushdownUnsupportedException( s"Query pushdown failed in generateQueries for node ${plan.nodeName} in ${plan.getClass.getName}" ) } } /** * Create a Union BigQuerySQLQuery from the given list of LogicalPlan * @param children The list of LogicalPlan to be converted. * @return An object of type Option[BigQuerySQLQuery]. */ def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractor.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.logical.{Join, LogicalPlan} /** Extractor for supported binary operations. Returns the node itself if the * operation is supported **/ object BinaryOperationExtractor { def unapply(node: LogicalPlan): Option[LogicalPlan] = Option(node match { case _: Join => node case _ => null }) } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/CastExpressionExtractor.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Cast, Expression} // The Spark APIs for Cast are not compatible between Spark 2.4/3.1 and Spark 3.2/3.3. // So, we create this extractor that can be used across all Spark versions object CastExpressionExtractor { def unapply(node: Expression): Option[Expression] = node match { case _: Cast => Some(node) case _ => None } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/FilterQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.makeStatement import org.apache.spark.sql.catalyst.expressions.{Attribute, Expression} /** Query for filter operations. * * @constructor * @param conditions The filter condition. * @param child The child node. * @param alias Query alias. * @param fields Contains output from the left + right query for left semi and left anti joins */ case class FilterQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, conditions: Seq[Expression], child: BigQuerySQLQuery, alias: String, fields: Option[Seq[Attribute]] = None) extends BigQuerySQLQuery( expressionConverter, expressionFactory, alias, children = Seq(child), fields = fields) { /** Builds the WHERE statement of the filter query */ override val suffixStatement: BigQuerySQLStatement = ConstantString("WHERE") + makeStatement( conditions.map(expressionToStatement), "AND" ) } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractor.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.Expression import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.Join // The Spark APIs for Joins are not compatible between Spark 2.4 and 3.1. // So, we create this extractor that only extracts those parameters that are // used for creating the join query object JoinExtractor { def unapply(node: Join): Option[(JoinType, Option[Expression])] = node match { case _: Join => Some(node.joinType, node.condition) // We should never reach here case _ => None } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/JoinQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.JoinQuery.getConjunctionStatement import org.apache.spark.sql.catalyst.expressions.Expression import org.apache.spark.sql.catalyst.plans.{Cross, FullOuter, Inner, JoinType, LeftOuter, RightOuter} /** The query for join operations. * * @constructor * @param left The left query subtree. * @param right The right query subtree. * @param conditions The join conditions. * @param joinType The join type. * @param alias Query alias. */ case class JoinQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, left: BigQuerySQLQuery, right: BigQuerySQLQuery, conditions: Option[Expression], joinType: JoinType, alias: String) extends BigQuerySQLQuery(expressionConverter, expressionFactory, alias, Seq(left, right), Some( left.outputWithQualifier ++ right.outputWithQualifier), outputAttributes = None, conjunctionStatement = ConstantString(getConjunctionStatement(joinType, left, right)).toStatement) { override val suffixStatement: BigQuerySQLStatement = conditions .map(ConstantString("ON") + expressionToStatement(_)) .getOrElse(EmptyBigQuerySQLStatement()) override def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] = query.lift(this).orElse(left.find(query)).orElse(right.find(query)) } object JoinQuery { def getConjunctionStatement(joinType: JoinType, left: BigQuerySQLQuery, right: BigQuerySQLQuery): String = { joinType match { case Inner => // keep the nullability for both projections "INNER JOIN" case LeftOuter => // Update the column's nullability of right table as true right.outputWithQualifier = right.nullableOutputWithQualifier "LEFT OUTER JOIN" case RightOuter => // Update the column's nullability of left table as true left.outputWithQualifier = left.nullableOutputWithQualifier "RIGHT OUTER JOIN" case FullOuter => // Update the column's nullability of both tables as true left.outputWithQualifier = left.nullableOutputWithQualifier right.outputWithQualifier = right.nullableOutputWithQualifier "FULL OUTER JOIN" case Cross => "CROSS JOIN" case _ => throw new MatchError } } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/LeftSemiJoinQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement import org.apache.spark.sql.catalyst.expressions.Expression case class LeftSemiJoinQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, left: BigQuerySQLQuery, right: BigQuerySQLQuery, conditions: Option[Expression], isAntiJoin: Boolean = false, alias: Iterator[String]) extends BigQuerySQLQuery(expressionConverter, expressionFactory, alias.next, Seq(left), Some(left.outputWithQualifier), outputAttributes = None) { override val suffixStatement: BigQuerySQLStatement = ConstantString("WHERE") + (if (isAntiJoin) " NOT " else " ") + "EXISTS" + blockStatement( FilterQuery( expressionConverter, expressionFactory, conditions = if (conditions.isEmpty) Seq.empty else Seq(conditions.get), child = right, alias = alias.next, fields = Some( left.outputWithQualifier ++ right.outputWithQualifier ) ).getStatement() ) override def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] = query.lift(this).orElse(left.find(query)).orElse(right.find(query)) } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/ProjectQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.NamedExpression /** Query for projection operations. * * @constructor * @param projectionColumns The projection columns. * @param child The child node. * @param alias Query alias. */ case class ProjectQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, projectionColumns: Seq[NamedExpression], child: BigQuerySQLQuery, alias: String) extends BigQuerySQLQuery( expressionConverter, expressionFactory, alias, children = Seq(child), projections = Some(projectionColumns)) {} ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SortLimitQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.makeStatement import org.apache.spark.sql.catalyst.expressions.Expression /** Query for Sort and Limit operations. * * @constructor * @param limit Limit expression. * @param orderBy Order By expressions. * @param child The child node. * @param alias Query alias. */ case class SortLimitQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, limit: Option[Expression], orderBy: Seq[Expression], child: BigQuerySQLQuery, alias: String) extends BigQuerySQLQuery( expressionConverter, expressionFactory, alias, children = Seq(child)) { /** Builds the ORDER BY clause of the sort query and/or LIMIT clause of the sort query */ override val suffixStatement: BigQuerySQLStatement = { val statementFirstPart = if (orderBy.nonEmpty) { ConstantString("ORDER BY") + makeStatement( orderBy.map(expressionToStatement), "," ) } else { EmptyBigQuerySQLStatement() } statementFirstPart + limit .map(ConstantString("LIMIT") + expressionToStatement(_)) .getOrElse(EmptyBigQuerySQLStatement()) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SourceQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.catalyst.expressions.Attribute /** The base query representing a BigQuery table * * @constructor * @param tableName The BigQuery table to be queried * @param outputAttributes Columns used to override the output generation * These are the columns resolved by DirectBigQueryRelation. * @param alias Query alias. */ case class SourceQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, bigQueryRDDFactory: BigQueryRDDFactory, tableName: String, outputAttributes: Seq[Attribute], alias: String, pushdownFilters: Option[String] = None) extends BigQuerySQLQuery( expressionConverter, expressionFactory, alias, outputAttributes = Some(outputAttributes), conjunctionStatement = ConstantString("`" + tableName + "`").toStatement + ConstantString("AS BQ_CONNECTOR_QUERY_ALIAS")) { override def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] = query.lift(this) /** Builds the WHERE statement of the source query */ override val suffixStatement: BigQuerySQLStatement = { if(pushdownFilters.isDefined) { ConstantString("WHERE ") + pushdownFilters.get } else { EmptyBigQuerySQLStatement() } } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SparkBigQueryPushdownUtil.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.{DEFAULT_FALLBACK, getOptionFromMultipleParams} import com.google.cloud.bigquery.connector.common.BigQueryUtil import com.google.common.collect.ImmutableList import org.apache.spark.rdd.RDD import org.apache.spark.sql.SparkSession import org.apache.spark.sql.catalyst.InternalRow import org.apache.spark.sql.catalyst.expressions.{Alias, Attribute, AttributeReference, Cast, EmptyRow, ExprId, Expression, NamedExpression, UnsafeProjection} import org.apache.spark.sql.catalyst.plans.logical.{GlobalLimit, LogicalPlan, Project, SubqueryAlias, UnaryNode} import org.apache.spark.sql.execution.ProjectExec import org.apache.spark.sql.types.{Metadata, StringType, StructField, StructType} import scala.collection.JavaConverters._ /** * Static methods for query pushdown functionality */ object SparkBigQueryPushdownUtil { def enableBigQueryStrategy(session: SparkSession, bigQueryStrategy: BigQueryStrategy): Unit = { if (!session.experimental.extraStrategies.exists( s => s.isInstanceOf[BigQueryStrategy] )) { session.experimental.extraStrategies ++= Seq(bigQueryStrategy) } } def disableBigQueryStrategy(session: SparkSession): Unit = { session.experimental.extraStrategies = session.experimental.extraStrategies .filterNot(strategy => strategy.isInstanceOf[BigQueryStrategy]) } /** * Creates a new BigQuerySQLStatement by adding parenthesis around the passed in statement and adding an alias for it * @param stmt * @param alias * @return */ def blockStatement(stmt: BigQuerySQLStatement, alias: String): BigQuerySQLStatement = blockStatement(stmt) + "AS" + ConstantString(alias.toUpperCase).toStatement def blockStatement(stmt: BigQuerySQLStatement): BigQuerySQLStatement = ConstantString("(") + stmt + ")" /** * Creates a new BigQuerySQLStatement by taking a list of BigQuerySQLStatement and folding it into one BigQuerySQLStatement separated by a delimiter * @param seq * @param delimiter * @return */ def makeStatement(seq: Seq[BigQuerySQLStatement], delimiter: String): BigQuerySQLStatement = makeStatement(seq, ConstantString(delimiter).toStatement) def makeStatement(seq: Seq[BigQuerySQLStatement], delimiter: BigQuerySQLStatement): BigQuerySQLStatement = seq.foldLeft(EmptyBigQuerySQLStatement()) { case (left, stmt) => if (left.isEmpty) stmt else left + delimiter + stmt } /** This adds an attribute as part of a SQL expression, searching in the provided * fields for a match, so the subquery qualifiers are correct. * * @param attr The Spark Attribute object to be added. * @param fields The Seq[Attribute] containing the valid fields to be used in the expression, * usually derived from the output of a subquery. * @return A BigQuerySQLStatement representing the attribute expression. */ def addAttributeStatement(attr: Attribute, fields: Seq[Attribute]): BigQuerySQLStatement = fields.find(e => e.exprId == attr.exprId) match { case Some(resolved) => qualifiedAttributeStatement(resolved.qualifier, resolved.name) case None => qualifiedAttributeStatement(attr.qualifier, attr.name) } def qualifiedAttributeStatement(alias: Seq[String], name: String): BigQuerySQLStatement = ConstantString(qualifiedAttribute(alias, name)).toStatement def qualifiedAttribute(alias: Seq[String], name: String): String = { val str = if (alias.isEmpty) "" else alias.map(a => a.toUpperCase).mkString(".") + "." str + name.toUpperCase } /** * Rename projections so as to have unique column names across subqueries * @param origOutput * @param alias * @return */ def renameColumns(origOutput: Seq[NamedExpression], alias: String, expressionFactory: SparkExpressionFactory): Seq[NamedExpression] = { val col_names = Iterator.from(0).map(n => s"COL_$n") origOutput.map { expr => val metadata = expr.metadata val altName = s"""${alias}_${col_names.next()}""" expr match { case a@Alias(child: Expression, name: String) => expressionFactory.createAlias(child, altName, a.exprId, Seq.empty[String], Some(metadata)) case _ => expressionFactory.createAlias(expr, altName, expr.exprId, Seq.empty[String], Some(metadata)) } } } /** * Method to convert Expression into NamedExpression. * If the Expression is not of type NamedExpression, we create an Alias from the expression and attribute */ def convertExpressionToNamedExpression(projections: Seq[Expression], output: Seq[Attribute], expressionFactory: SparkExpressionFactory): Seq[NamedExpression] = { projections zip output map { expression => expression._1 match { case expr: NamedExpression => expr case _ => expressionFactory.createAlias(expression._1, expression._2.name, expression._2.exprId, Seq.empty[String], Some(expression._2.metadata)) } } } def doExecuteSparkPlan(output: Seq[Attribute], rdd: RDD[InternalRow]): RDD[InternalRow] = { val schema = StructType( output.map(attr => StructField(attr.name, attr.dataType, attr.nullable)) ) rdd.mapPartitions { iter => val project = UnsafeProjection.create(schema) iter.map(project) } } /** * Returns a copy of the LogicalPlan after removing the passed-in Project node * from the plan. */ def removeProjectNodeFromPlan(plan: LogicalPlan, nodeToRemove: Project): LogicalPlan = { plan.transform({ case node@Project(_, child) if node.fastEquals(nodeToRemove) => child }) } /** * remove Cast from the projectList of the passed in Project node */ def removeCastFromProjectList(node: Project, expressionFactory: SparkExpressionFactory): Project = { var projectList: Seq[NamedExpression] = Seq() node.projectList.foreach{ case Alias(child, name) => child match { case CastExpressionExtractor(expression) => projectList = projectList :+ expressionFactory.createAlias(expression.asInstanceOf[Cast].child, name, NamedExpression.newExprId, Seq.empty, None) case expression => projectList = projectList :+ expressionFactory.createAlias(expression, name, NamedExpression.newExprId, Seq.empty, None) } case node => projectList = projectList :+ node } Project(projectList, node.child) } /** * Create a ProjectList with only Cast's of the passed in node ProjectList */ def createProjectListWithCastToString(node: Project, expressionFactory: SparkExpressionFactory): Seq[NamedExpression] = { var projectList: Seq[NamedExpression] = Seq() node.projectList.foreach( child => projectList = projectList :+ expressionFactory.createAlias(Cast.apply(child.toAttribute, StringType), child.name, NamedExpression.newExprId, Seq.empty, None) ) projectList } /** * Returns a copy of the updated LogicalPlan by adding a project plan to the passed in node. * Takes in the LogicalPlan and the Project Plan to update. * Remove the cast, if there is any from the passed project plan * and adds another Project Plan on top of the passed node to update */ def addProjectNodeToThePlan(plan: LogicalPlan, nodeToUpdate: Project, expressionFactory: SparkExpressionFactory): LogicalPlan = { plan.transform({ case node@Project(_, _) if node.fastEquals(nodeToUpdate) => val projectWithoutCast = removeCastFromProjectList(nodeToUpdate, expressionFactory) val projectListWithCast = createProjectListWithCastToString(projectWithoutCast, expressionFactory) Project(projectListWithCast, projectWithoutCast) }) } def isLimitTheChildToProjectNode(node: Project): Boolean = { if (node.child.isInstanceOf[GlobalLimit]) true else false } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SparkExpressionConverter.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.BigQueryPushdownUnsupportedException import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.{addAttributeStatement, blockStatement, makeStatement} import org.apache.commons.lang.{StringEscapeUtils, StringUtils} import org.apache.spark.sql.catalyst.expressions._ import org.apache.spark.sql.catalyst.expressions.aggregate._ import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.types._ import org.apache.spark.unsafe.types.UTF8String /** This interface performs the conversion from Spark expressions to SQL runnable by BigQuery. * Spark Expressions are recursively pattern matched. Expressions that differ across Spark versions should be implemented in subclasses * */ abstract class SparkExpressionConverter { /** * Tries to convert Spark expressions by matching across the different families of expressions such as Aggregate, Boolean etc. * @param expression * @param fields * @return */ def convertStatement(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { convertAggregateExpressions(expression, fields) .orElse(convertBasicExpressions(expression, fields)) .orElse(convertBooleanExpressions(expression, fields)) .orElse(convertDateExpressions(expression, fields)) .orElse(convertMathematicalExpressions(expression, fields)) .orElse(convertMiscellaneousExpressions(expression, fields)) .orElse(convertStringExpressions(expression, fields)) .orElse(convertWindowExpressions(expression, fields)) .getOrElse(throw new BigQueryPushdownUnsupportedException((s"Pushdown unsupported for ${expression.prettyName}"))) } def convertStatements(fields: Seq[Attribute], expressions: Expression*): BigQuerySQLStatement = makeStatement(expressions.map(convertStatement(_, fields)), ",") def convertAggregateExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = { expression match { case _: AggregateExpression => // Take only the first child, as all of the functions below have only one. expression.children.headOption.flatMap(agg_fun => { Option(agg_fun match { case _: Average | _: Corr | _: CovPopulation | _: CovSample | _: Count | _: Max | _: Min | _: Sum | _: StddevPop | _: StddevSamp | _: VariancePop | _: VarianceSamp => val distinct: BigQuerySQLStatement = if (expression.sql contains "(DISTINCT ") ConstantString("DISTINCT").toStatement else EmptyBigQuerySQLStatement() ConstantString(agg_fun.prettyName.toUpperCase) + blockStatement( distinct + convertStatements(fields, agg_fun.children: _*) ) }) }) case _ => None } } def convertBasicExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = { Option(expression match { case a: Attribute => addAttributeStatement(a, fields) case And(left, right) => blockStatement( convertStatement(left, fields) + "AND" + convertStatement(right, fields) ) case Or(left, right) => blockStatement( convertStatement(left, fields) + "OR" + convertStatement(right, fields) ) case BitwiseAnd(left, right) => blockStatement( convertStatement(left, fields) + "&" + convertStatement(right, fields) ) case BitwiseOr(left, right) => blockStatement( convertStatement(left, fields) + "|" + convertStatement(right, fields) ) case BitwiseXor(left, right) => blockStatement( convertStatement(left, fields) + "^" + convertStatement(right, fields) ) case BitwiseNot(child) => ConstantString("~") + blockStatement( convertStatement(child, fields) ) case EqualNullSafe(left, right) => /** * Since NullSafeEqual operator is not supported in BigQuery, we are instead converting the operator to COALESCE ( CAST (leftExpression AS STRING), "" ) = COALESCE ( CAST (rightExpression AS STRING), "" ) * Casting the expression to String to make sure the COALESCE arguments are of same type. */ blockStatement( ConstantString("COALESCE") + blockStatement( ConstantString("CAST") + blockStatement(convertStatement(left, fields) + ConstantString("AS STRING") ) + "," + ConstantString("\"\"") ) + ConstantString("=") + ConstantString("COALESCE") + blockStatement( ConstantString("CAST") + blockStatement(convertStatement(right, fields) + ConstantString("AS STRING") ) + "," + ConstantString("\"\"") ) ) case b@BinaryOperator(left, right) => blockStatement( convertStatement(left, fields) + b.symbol + convertStatement(right, fields) ) case l: Literal => l.dataType match { case StringType => if (l.value == null) { ConstantString("NULL").toStatement } else { StringVariable(Some(l.toString())).toStatement } case DateType => ConstantString("DATE_ADD(DATE \"1970-01-01\", INTERVAL ") + IntVariable( Option(l.value).map(_.asInstanceOf[Int]) ) + " DAY)" // s"DATE_ADD(DATE "1970-01-01", INTERVAL ${l.value} DAY) case TimestampType => ConstantString("TIMESTAMP_MICROS(") + LongVariable(Option(l.value).map(_.asInstanceOf[Long])) + ")" case _ => l.value match { case v: Int => IntVariable(Some(v)).toStatement case v: Long => LongVariable(Some(v)).toStatement case v: Short => ShortVariable(Some(v)).toStatement case v: Boolean => BooleanVariable(Some(v)).toStatement case v: Float => FloatVariable(Some(v)).toStatement case v: Double => DoubleVariable(Some(v)).toStatement case v: Byte => ByteVariable(Some(v)).toStatement case _ => ConstantStringVal(l.value).toStatement } } case _ => null }) } def convertBooleanExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = { Option(expression match { case In(child, list) => convertStatement(child, fields) + "IN" + blockStatement(convertStatements(fields, list: _*)) case IsNull(child) => blockStatement(convertStatement(child, fields) + "IS NULL") case IsNotNull(child) => blockStatement(convertStatement(child, fields) + "IS NOT NULL") case Not(child) => { child match { case EqualTo(left, right) => blockStatement( convertStatement(left, fields) + "!=" + convertStatement(right, fields) ) case GreaterThanOrEqual(left, right) => convertStatement(LessThan(left, right), fields) case LessThanOrEqual(left, right) => convertStatement(GreaterThan(left, right), fields) case GreaterThan(left, right) => convertStatement(LessThanOrEqual(left, right), fields) case LessThan(left, right) => convertStatement(GreaterThanOrEqual(left, right), fields) case _ => ConstantString("NOT") + blockStatement(convertStatement(child, fields)) } } case Contains(child, Literal(pattern: UTF8String, StringType)) => ConstantString("CONTAINS_SUBSTR") + blockStatement(convertStatement(child, fields) + "," + s"'${pattern.toString.replace( "'", "\\'")}'") case EndsWith(child, Literal(pattern: UTF8String, StringType)) => ConstantString("ENDS_WITH") + blockStatement(convertStatement(child, fields) + "," + s"'${pattern.toString.replace( "'", "\\'")}'") case StartsWith(child, Literal(pattern: UTF8String, StringType)) => ConstantString("STARTS_WITH") + blockStatement(convertStatement(child, fields) + "," + s"'${pattern.toString.replace( "'", "\\'")}'") case _ => null }) } def convertDateExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = { Option(expression match { case DateAdd(startDate, days) => ConstantString(expression.prettyName.toUpperCase) + blockStatement( convertStatement(startDate, fields) + ", INTERVAL " + convertStatement(days, fields) + "DAY" ) case DateSub(startDate, days) => ConstantString(expression.prettyName.toUpperCase) + blockStatement( convertStatement(startDate, fields) + ", INTERVAL " + convertStatement(days, fields) + "DAY" ) case Month(child) => ConstantString("EXTRACT") + blockStatement( ConstantString(expression.prettyName.toUpperCase) + " FROM " + convertStatement(child, fields) ) case Quarter(child) => ConstantString("EXTRACT") + blockStatement( ConstantString(expression.prettyName.toUpperCase) + " FROM " + convertStatement(child, fields) ) case Year(child) => ConstantString("EXTRACT") + blockStatement( ConstantString(expression.prettyName.toUpperCase) + " FROM " + convertStatement(child, fields) ) case TruncDate(date, format) => ConstantString("DATE_TRUNC") + blockStatement( convertStatement(date, fields) + s", ${format.toString()}" ) case _ => null }) } def convertMathematicalExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = { Option(expression match { case _: Abs | _: Acos | _: Asin | _: Atan | _: Cos | _: Cosh | _: Exp | _: Floor | _: Greatest | _: Least | _:Log10 | _: Pow | _:Round | _: Sin | _: Sinh | _: Sqrt | _: Tan | _: Tanh => ConstantString(expression.prettyName.toUpperCase) + blockStatement(convertStatements(fields, expression.children: _*)) case IsNaN(child) => ConstantString("IS_NAN") + blockStatement(convertStatement(child, fields)) case Signum(child) => ConstantString("SIGN") + blockStatement(convertStatement(child, fields)) case _: Rand => ConstantString("RAND") + ConstantString("()") case Logarithm(base, expr) => // In spark it is LOG(base,expr) whereas in BigQuery it is LOG(expr, base) ConstantString("LOG") + blockStatement(convertStatement(expr, fields) + "," + convertStatement(base, fields)) case _: CheckOverflow => convertCheckOverflowExpression(expression, fields) case Pi() => ConstantString("bqutil.fn.pi()").toStatement case PromotePrecision(child) => convertStatement(child, fields) case _: UnaryMinus => convertUnaryMinusExpression(expression, fields) case _ => null }) } def convertMiscellaneousExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = { Option(expression match { case Alias(child: Expression, name: String) => blockStatement(convertStatement(child, fields), name) case SortOrder(child, Ascending, _, _) => blockStatement(convertStatement(child, fields)) + "ASC" case SortOrder(child, Descending, _, _) => blockStatement(convertStatement(child, fields)) + "DESC" case ShiftLeft(child, position) => blockStatement(convertStatement(child, fields) + ConstantString("<<") + convertStatement(position, fields)) case ShiftRight(child, position) => blockStatement(convertStatement(child, fields) + ConstantString(">>") + convertStatement(position, fields)) case CaseWhen(branches, elseValue) => ConstantString("CASE") + makeStatement(branches.map(whenClauseTuple => ConstantString("WHEN") + convertStatement(whenClauseTuple._1, fields) + ConstantString("THEN") + convertStatement(whenClauseTuple._2, fields) ), "") + { elseValue match { case Some(value) => ConstantString("ELSE") + convertStatement(value, fields) case None => EmptyBigQuerySQLStatement() } } + ConstantString("END") case Coalesce(columns) => ConstantString(expression.prettyName.toUpperCase) + blockStatement(makeStatement(columns.map(convertStatement(_, fields)), ", ")) case If(predicate, trueValue, falseValue) => ConstantString(expression.prettyName.toUpperCase) + blockStatement(convertStatements(fields, predicate, trueValue, falseValue)) case InSet(child, hset) => convertStatement( In(child, setToExpression(hset)), fields) case UnscaledValue(child) => child.dataType match { case d: DecimalType => blockStatement(convertStatement(child, fields) + "* POW( 10," + IntVariable(Some(d.scale)) + ")") case _ => null } case _: Cast => convertCastExpression(expression, fields) case _: ScalarSubquery => convertScalarSubqueryExpression(expression, fields) case _ => null }) } def convertStringExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = { Option(expression match { case _: Ascii | _: Concat | _: Length | _: Lower | _: StringLPad | _: StringRPad | _: StringTranslate | _: StringTrim | _: StringTrimLeft | _: StringTrimRight | _: Upper | _: StringInstr | _: InitCap | _: Substring => ConstantString(expression.prettyName.toUpperCase()) + blockStatement(convertStatements(fields, expression.children: _*)) case _: Like => convertLikeExpression(expression, fields) case RegExpExtract(child, Literal(pattern: UTF8String, StringType), idx) => ConstantString("REGEXP_EXTRACT") + blockStatement(convertStatement(child, fields) + "," + s"r'${pattern.toString}'" + "," + convertStatement(idx, fields)) case _: RegExpReplace => ConstantString("REGEXP_REPLACE") + blockStatement(convertStatement(expression.children.head, fields) + "," + s"r'${expression.children(1).toString}'" + "," + s"'${expression.children(2).toString}'") case _: FormatString | _: FormatNumber => ConstantString("FORMAT") + blockStatement(convertStatements(fields, expression.children: _*)) case _: Base64 => ConstantString("TO_BASE64") + blockStatement(convertStatements(fields, expression.children: _*)) case _: UnBase64 => ConstantString("FROM_BASE64") + blockStatement(convertStatements(fields, expression.children: _*)) case _: SoundEx => ConstantString("UPPER") + blockStatement(ConstantString("SOUNDEX") + blockStatement(convertStatements(fields, expression.children: _*))) case _ => null }) } def convertWindowExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = { Option(expression match { case WindowExpression(windowFunction, windowSpec) => windowFunction match { /** * Since we can't use a window frame clause with navigation functions and numbering functions, * we set the useWindowFrame to false */ case _: Rank | _: DenseRank | _: PercentRank | _: RowNumber => convertStatement(windowFunction, fields) + ConstantString("OVER") + convertWindowBlock(windowSpec, fields, generateWindowFrame = false) case _ => convertStatement(windowFunction, fields) + ConstantString("OVER") + convertWindowBlock(windowSpec, fields, generateWindowFrame = true) } /** * Handling Numbering Functions here itself since they are a sub class of Window Expressions */ case _: Rank | _: DenseRank | _: PercentRank | _: RowNumber => ConstantString(expression.prettyName.toUpperCase) + ConstantString("()") case _ => null }) } def convertWindowBlock(windowSpecDefinition: WindowSpecDefinition, fields: Seq[Attribute], generateWindowFrame: Boolean): BigQuerySQLStatement = { val partitionBy = if (windowSpecDefinition.partitionSpec.nonEmpty) { ConstantString("PARTITION BY") + makeStatement(windowSpecDefinition.partitionSpec.map(convertStatement(_, fields)), ",") } else { EmptyBigQuerySQLStatement() } val orderBy = if (windowSpecDefinition.orderSpec.nonEmpty) { ConstantString("ORDER BY") + makeStatement(windowSpecDefinition.orderSpec.map(convertStatement(_, fields)), ",") } else { EmptyBigQuerySQLStatement() } /** * Generating the window frame iff generateWindowFrame is true and the window spec has order spec in it */ val windowFrame = if (generateWindowFrame && windowSpecDefinition.orderSpec.nonEmpty) { windowSpecDefinition.frameSpecification match { case windowSpec: SpecifiedWindowFrame => (windowSpec.lower, windowSpec.upper) match { case (lower: Literal, upper: Literal) => generateWindowFrameFromSpecDefinition(windowSpec, Math.abs(lower.value.asInstanceOf[Long]).toString + " " + ConstantString("PRECEDING"), Math.abs(upper.value.asInstanceOf[Long]).toString + " " + ConstantString("FOLLOWING")) case (lower: Literal, upper: SpecialFrameBoundary) => generateWindowFrameFromSpecDefinition(windowSpec, Math.abs(lower.value.asInstanceOf[Long]).toString + " " + ConstantString("PRECEDING"), upper.sql) case (lower: SpecialFrameBoundary, upper: Literal) => generateWindowFrameFromSpecDefinition(windowSpec, lower.sql, Math.abs(upper.value.asInstanceOf[Long]).toString + " " + ConstantString("FOLLOWING")) case _ => windowSpecDefinition.frameSpecification.sql } case _ => windowSpecDefinition.frameSpecification.sql } } else { "" } blockStatement(partitionBy + orderBy + windowFrame) } def generateWindowFrameFromSpecDefinition(windowSpec: SpecifiedWindowFrame, lower: String, upper: String): String = { windowSpec.frameType.sql + " " + ConstantString("BETWEEN") + " " + lower + " " + ConstantString("AND") + " " + upper } /** Attempts a best effort conversion from a SparkType * to a BigQuery type to be used in a Cast. */ final def getCastType(t: DataType): Option[String] = Option(t match { case StringType => "STRING" case ByteType => "BYTES" case BooleanType => "BOOL" case DateType => "DATE" case TimestampType => "TIMESTAMP" case _: DecimalType => "BIGDECIMAL" case IntegerType | ShortType | LongType => "INT64" case FloatType | DoubleType => "FLOAT64" case _ => null }) final def performCastExpressionConversion(child: Expression, fields: Seq[Attribute], dataType: DataType): BigQuerySQLStatement = getCastType(dataType) match { case Some(cast) => /** * For known unsupported data conversion, raise exception to break the pushdown process. * For example, BigQuery doesn't support to convert DATE/TIMESTAMP to NUMBER */ (child.dataType, dataType) match { case (_: DateType | _: TimestampType, _: IntegerType | _: LongType | _: FloatType | _: DoubleType | _: DecimalType) => { throw new BigQueryPushdownUnsupportedException( "Pushdown failed due to unsupported conversion") } /** * BigQuery doesn't support casting from Integer to Bytes (https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators#cast_as_bytes) * So handling this case separately. */ case (_: IntegerType | _: LongType | _: FloatType | _: DoubleType | _: DecimalType ,_: ByteType) => ConstantString("CAST") + blockStatement(convertStatement(child, fields) + ConstantString("AS NUMERIC")) case _ => ConstantString("CAST") + blockStatement(convertStatement(child, fields) + "AS" + cast) } case _ => convertStatement(child, fields) } final def setToExpression(set: Set[Any]): Seq[Expression] = { set.map { case d: Decimal => Literal(d, DecimalType(d.precision, d.scale)) case s @ (_: String | _: UTF8String) => Literal(s, StringType) case d: Double => Literal(d, DoubleType) case l: Long => Literal(l, LongType) case e: Expression => e case default => throw new BigQueryPushdownUnsupportedException( "Pushdown unsupported for " + s"${default.getClass.getSimpleName} @ MiscStatement.setToExpression" ) }.toSeq } // For supporting Scalar Subquery, we need specific implementations of BigQueryStrategy def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SparkExpressionFactory.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression} import org.apache.spark.sql.types.Metadata /** * Factory for creating Spark expressions that are not binary compatible between * different Spark versions. * * For example: Alias is not compatible between Spark 2.4 and Spark 3.1 */ trait SparkExpressionFactory { def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SparkPlanFactory.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.internal.Logging import org.apache.spark.sql.catalyst.plans.logical.Project import org.apache.spark.sql.execution.{ProjectExec, SparkPlan} trait SparkPlanFactory { /** * Generate SparkPlan from the output and RDD of the translated query */ def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] /** * Generate physical Project plan from the projectList of the passed-in Project node */ def createProjectPlan(projectNode: Project, child: SparkPlan): Option[SparkPlan] = { Some(ProjectExec(projectNode.projectList, child)) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/UnaryOperationExtractor.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.logical.{Aggregate, Filter, GlobalLimit, LocalLimit, LogicalPlan, Project, ReturnAnswer, Sort, UnaryNode, Window} /** Extractor for supported unary operations. Returns the node itself if the * operation is supported **/ object UnaryOperationExtractor { def unapply(node: LogicalPlan): Option[LogicalPlan] = node match { case _: Filter | _: Project | _: GlobalLimit | _: LocalLimit | _: Aggregate | _: Sort | _: ReturnAnswer | _: Window => Some(node) case _ => None } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/UnionOperationExtractor.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.logical.{LogicalPlan, Union} object UnionOperationExtractor { def unapply(node: Union): Option[Seq[LogicalPlan]] = Option(node match { case _: Union => node.children case _ => null }) } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/UnionQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.{blockStatement, makeStatement} import org.apache.spark.sql.catalyst.expressions.{Attribute, AttributeReference, NamedExpression} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import scala.Seq case class UnionQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, children: Seq[BigQuerySQLQuery], alias: String) extends BigQuerySQLQuery( expressionConverter, expressionFactory, alias, children = children, outputAttributes = if (children.isEmpty) None else Some(children.head.output), visibleAttributeOverride = if (children.isEmpty) None else Some(children.foldLeft(Seq.empty[Attribute])((x, y) => x ++ y.output).map( a => AttributeReference(a.name, a.dataType, a.nullable, a.metadata)( a.exprId, Seq[String](alias) )))) { override def getStatement(useAlias: Boolean): BigQuerySQLStatement = { val query = if (children.nonEmpty) { makeStatement( children.map(c => blockStatement(c.getStatement())), "UNION ALL" ) } else { EmptyBigQuerySQLStatement() } if (useAlias) { blockStatement(query, alias) } else { query } } override def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] = query.lift(this).orElse( children .map(q => q.find(query)) .view .foldLeft[Option[T]](None)(_ orElse _) ) } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/WindowQuery.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Attribute, NamedExpression} case class WindowQuery( expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, windowExpressions: Seq[NamedExpression], child: BigQuerySQLQuery, fields: Option[Seq[Attribute]], alias: String) extends BigQuerySQLQuery( expressionConverter, expressionFactory, alias, children = Seq(child), // Need to send in the query attributes along with window expressions to avoid "TreeNodeException: Binding attribute, tree" projections = WindowQuery.getWindowProjections(windowExpressions, child, fields)) {} object WindowQuery { def getWindowProjections(windowExpressions: Seq[NamedExpression], child: BigQuerySQLQuery, fields: Option[Seq[Attribute]]): Option[Seq[NamedExpression]] = { val projectionVector = windowExpressions ++ child.outputWithQualifier val orderedProjections = fields.map(_.map(reference => { val origPos = projectionVector.map(_.exprId).indexOf(reference.exprId) projectionVector(origPos) })) orderedProjections } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/AggregateQuerySuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, TABLE_NAME, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference} import org.scalatest.funsuite.AnyFunSuite // Testing only the suffixStatement here since it is the only variable that is // different from the other queries. class AggregateQuerySuite extends AnyFunSuite{ private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS) test("suffixStatement with groups") { // Passing projectionColumns parameter as empty list for simplicity val aggregateQuery = AggregateQuery(expressionConverter, expressionFactory, projectionColumns = Seq(), groups = Seq(schoolNameAttributeReference), sourceQuery, SUBQUERY_0_ALIAS) assert(aggregateQuery.suffixStatement.toString == "GROUP BY SUBQUERY_0.SCHOOLNAME") } test("suffixStatement without groups") { // Passing projectionColumns parameter as empty list for simplicity val aggregateQuery = AggregateQuery(expressionConverter, expressionFactory, projectionColumns = Seq(), groups = Seq(), sourceQuery, SUBQUERY_0_ALIAS) assert(aggregateQuery.suffixStatement.toString == "LIMIT 1") } test("find") { val aggregateQuery = AggregateQuery(expressionConverter, expressionFactory, projectionColumns = Seq(), groups = Seq(), sourceQuery, SUBQUERY_0_ALIAS) val returnedQuery = aggregateQuery.find({ case q: SourceQuery => q }) assert(returnedQuery.isDefined) assert(returnedQuery.get == sourceQuery) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BigQuerySQLStatementSuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.scalatest.funsuite.AnyFunSuite class BigQuerySQLStatementSuite extends AnyFunSuite { test("toString") { val bigQuerySQLStatement = EmptyBigQuerySQLStatement.apply() val newBigQuerySQLStatement = bigQuerySQLStatement + ConstantString("LIMIT") + IntVariable(Option.apply(5)) assert("LIMIT 5" == newBigQuerySQLStatement.toString) } test("+ with StatementElement") { val bigQuerySQLStatement = EmptyBigQuerySQLStatement.apply() val newBigQuerySQLStatement = bigQuerySQLStatement + ConstantString("LIMIT") + IntVariable(Option.apply(5)) assert(2 == newBigQuerySQLStatement.list.size) assert("5" == newBigQuerySQLStatement.list.head.sql) assert("LIMIT" == newBigQuerySQLStatement.list(1).sql) assert("LIMIT 5" == newBigQuerySQLStatement.toString) } test("+ with BigQuerySQLStatement") { val bigQuerySQLStatement1 = ConstantString("SELECT") + "*" val bigQuerySQLStatement2 = ConstantString("FROM TABLE") val newBigQuerySQLStatement = bigQuerySQLStatement1 + bigQuerySQLStatement2 assert(3 == newBigQuerySQLStatement.list.size) assert("FROM TABLE" == newBigQuerySQLStatement.list.head.sql) assert("*" == newBigQuerySQLStatement.list(1).sql) assert("SELECT" == newBigQuerySQLStatement.list(2).sql) assert("SELECT * FROM TABLE" == newBigQuerySQLStatement.toString) } test("+ with String") { val bigQuerySQLStatement = EmptyBigQuerySQLStatement.apply() val newBigQuerySQLStatement = bigQuerySQLStatement + "GROUP BY" assert(1 == newBigQuerySQLStatement.list.size) assert("GROUP BY" == newBigQuerySQLStatement.list.head.sql) assert("GROUP BY" == newBigQuerySQLStatement.toString) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BigQueryStrategySuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.{BigQueryRDDFactory, DirectBigQueryRelation} import com.google.cloud.spark.bigquery.pushdowns.TestConstants._ import org.apache.spark.sql.catalyst.analysis.NamedRelation import org.apache.spark.sql.catalyst.expressions.aggregate.{AggregateExpression, Complete, Count} import org.apache.spark.sql.catalyst.expressions.{Alias, Ascending, Attribute, Cast, EqualTo, Literal, SortOrder} import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Aggregate, Filter, Intersect, Join, Limit, LogicalPlan, Project, Range, ReturnAnswer, Sort} import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.types.{StringType, StructType} import org.mockito.ArgumentMatchers.any import org.mockito.{Mock, MockitoAnnotations} import org.mockito.Mockito.when import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class BigQueryStrategySuite extends AnyFunSuite with BeforeAndAfter { @Mock private var directBigQueryRelationMock: DirectBigQueryRelation = _ @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS) // Need a childPlan to pass. So, create the simplest possible private val childPlan = Range.apply(2L, 100L, 4L, 8) before { MockitoAnnotations.initMocks(this) } test("getRDDFactory") { val returnedRDDFactory = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None }.getRDDFactory(sourceQuery) assert(returnedRDDFactory.isDefined) assert(returnedRDDFactory.get == bigQueryRDDFactoryMock) } test("exception thrown in apply method") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(sparkPlanFactoryMock.createBigQueryPlan(any(classOf[BigQuerySQLQuery]), any(classOf[BigQueryRDDFactory]))).thenThrow(new RuntimeException("Unable to create spark plan")) val logicalRelation = LogicalRelation(directBigQueryRelationMock) val returnedPlan = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None }.apply(logicalRelation) assert(returnedPlan == Nil) } test("hasUnsupportedNodes with unsupported node") { val unsupportedNode = Intersect(childPlan, childPlan, isAll = true) val returnAnswerPlan = ReturnAnswer(unsupportedNode) assert(new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None }.hasUnsupportedNodes(returnAnswerPlan)) } test("hasUnsupportedNodes with supported nodes") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation) val projectPlan = Project(Seq(schoolNameAttributeReference), filterPlan) val sortPlan = Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true, projectPlan) val limitPlan = Limit(Literal(10), sortPlan) val returnAnswerPlan = ReturnAnswer(limitPlan) assert(!new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None }.hasUnsupportedNodes(returnAnswerPlan)) } test("generateQueryFromPlan with filter, project, limit and sort plans") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation) val projectPlan = Project(Seq(schoolNameAttributeReference), filterPlan) val sortPlan = Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true, projectPlan) val limitPlan = Limit(Literal(10), sortPlan) val returnedQueryOption = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None }.generateQueryFromPlan(limitPlan) assert(returnedQueryOption.isDefined) val returnedQuery = returnedQueryOption.get assert(returnedQuery.getStatement().toString == "SELECT * FROM " + "( SELECT * FROM ( SELECT ( SCHOOLNAME ) AS SUBQUERY_2_COL_0 FROM " + "( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) " + "AS SUBQUERY_0 WHERE ( SCHOOLID = 1234 ) ) AS SUBQUERY_1 ) " + "AS SUBQUERY_2 ORDER BY ( SCHOOLID ) ASC ) AS SUBQUERY_3 ORDER BY ( SCHOOLID ) ASC LIMIT 10") } // Special case for Spark 2.4 in which Spark SQL query has a limit and show() is called test("generateQueryFromPlan with 2 limits and Sort as outermost nodes") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation) val projectPlan = Project(Seq(schoolNameAttributeReference), filterPlan) val sortPlan = Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true, projectPlan) val innerLimitPlan = Limit(Literal(10), sortPlan) val outerLimitPlan = Limit(Literal(20), innerLimitPlan) val returnedQueryOption = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None }.generateQueryFromPlan(outerLimitPlan) assert(returnedQueryOption.isDefined) val returnedQuery = returnedQueryOption.get assert(returnedQuery.getStatement().toString == "SELECT * FROM " + "( SELECT * FROM ( SELECT * FROM ( SELECT ( SCHOOLNAME ) AS SUBQUERY_2_COL_0 FROM " + "( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 " + "WHERE ( SCHOOLID = 1234 ) ) AS SUBQUERY_1 ) AS SUBQUERY_2 " + "ORDER BY ( SCHOOLID ) ASC ) AS SUBQUERY_3 ORDER BY ( SCHOOLID ) ASC LIMIT 10 ) " + "AS SUBQUERY_4 ORDER BY ( SCHOOLID ) ASC LIMIT 20") } test("generateQueryFromPlan with aggregate plan") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), "COUNT")() val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), logicalRelation) // Need to create a new BigQueryStrategy object so as to start from the original alias val returnedQueryOption = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None }.generateQueryFromPlan(aggregatePlan) assert(returnedQueryOption.isDefined) val returnedQuery = returnedQueryOption.get assert(returnedQuery.getStatement().toString == "SELECT ( COUNT ( SCHOOLID ) ) AS SUBQUERY_1_COL_0 FROM " + "( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 GROUP BY SCHOOLNAME") } test("generateQueryFromPlan with empty project plan") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), "COUNT")() val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), logicalRelation) val projectPlan = Project(Nil, aggregatePlan) // Need to create a new BigQueryStrategy object so as to start from the original alias val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None } val plan = bigQueryStrategy.cleanUpLogicalPlan(projectPlan) val returnedQueryOption = bigQueryStrategy.generateQueryFromPlan(plan) assert(returnedQueryOption.isDefined) val returnedQuery = returnedQueryOption.get assert(returnedQuery.getStatement().toString == "SELECT ( COUNT ( SCHOOLID ) ) AS SUBQUERY_1_COL_0 FROM " + "( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 GROUP BY SCHOOLNAME") } test("getTopMostProjectNodeWithAliasedCasts with Aggregate before Project") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val projectPlan = Project(Nil, logicalRelation) val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), "COUNT")() val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), projectPlan) val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None } assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(aggregatePlan).isEmpty) } test("getTopMostProjectNodeWithAliasedCasts without Project") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation) val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), "COUNT")() val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), filterPlan) val returnAnswerPlan = ReturnAnswer(aggregatePlan) val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None } assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(logicalRelation).isEmpty) assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(returnAnswerPlan).isEmpty) val namedRelation = new NamedRelation { override def name: String = "test-named-relation" override def output: Seq[Attribute] = Seq.empty override def children: Seq[LogicalPlan] = Seq.empty override def productElement(n: Int): Any = 1 override def productArity: Int = 1 override def canEqual(that: Any): Boolean = true protected def withNewChildrenInternal(newChildren: IndexedSeq[LogicalPlan]): LogicalPlan = this } assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(namedRelation).isEmpty) } test("getTopMostProjectNodeWithAliasedCasts with Project without Aliased Cast child") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), "COUNT")() val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), logicalRelation) val projectList = Seq(schoolNameAttributeReference, Alias(schoolNameAttributeReference, "school-name")()) val projectPlan = Project(projectList, aggregatePlan) val returnAnswerPlan = ReturnAnswer(projectPlan) val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None } assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(returnAnswerPlan).isEmpty) } test("getTopMostProjectNodeWithAliasedCasts should return Project with Aliased Cast child") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), "COUNT")() val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), logicalRelation) val projectList = Seq(schoolNameAttributeReference, Alias(schoolNameAttributeReference, "school-name")(), Alias(Cast(schoolIdAttributeReference, StringType), "id")()) val projectPlan = Project(projectList, aggregatePlan) val returnAnswerPlan = ReturnAnswer(projectPlan) val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None } val projectNode = bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(returnAnswerPlan) assert(projectNode.isDefined) assert(projectNode.get.fastEquals(projectPlan)) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/CastExpressionExtractorSuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.TestConstants.schoolIdAttributeReference import org.apache.spark.sql.catalyst.expressions.{Alias, Cast} import org.apache.spark.sql.types.StringType import org.scalatest.funsuite.AnyFunSuite class CastExpressionExtractorSuite extends AnyFunSuite { test("unapply") { val castExpression = Cast(schoolIdAttributeReference, StringType) val returnedExpression = CastExpressionExtractor.unapply(castExpression) assert(returnedExpression.isDefined) assert(returnedExpression.get.fastEquals(castExpression)) val aliasExpression = Alias(schoolIdAttributeReference, "school-id")() val returnedOption = CastExpressionExtractor.unapply(aliasExpression) assert(returnedOption.isEmpty) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/FilterQuerySuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.TestConstants._ import org.apache.spark.sql.catalyst.expressions.{GreaterThanOrEqual, LessThanOrEqual, Literal} import org.scalatest.funsuite.AnyFunSuite class FilterQuerySuite extends AnyFunSuite { private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS) private val greaterThanFilterCondition = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal(50)) private val lessThanFilterCondition = LessThanOrEqual.apply(schoolIdAttributeReference, Literal(100)) private val filterQuery = FilterQuery(expressionConverter, expressionFactory, Seq(greaterThanFilterCondition, lessThanFilterCondition), sourceQuery, SUBQUERY_1_ALIAS) test("sourceStatement") { assert(filterQuery.sourceStatement.toString == "( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0") } test("suffixStatement") { assert(filterQuery.suffixStatement.toString == "WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 )") } test("columnSet") { assert(filterQuery.columnSet.size == 2) assert(filterQuery.columnSet == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)), schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)))) } test("processedProjections") { assert(filterQuery.processedProjections.isEmpty) } test("columns") { assert(filterQuery.columns.isEmpty) } test("output") { assert(filterQuery.output.size == 2) assert(filterQuery.output == Seq(schoolIdAttributeReference, schoolNameAttributeReference)) } test("outputWithQualifier") { assert(filterQuery.outputWithQualifier.size == 2) assert(filterQuery.outputWithQualifier == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)), schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)))) } test("nullableOutputWithQualifier") { val nullableOutputWithQualifier = filterQuery.nullableOutputWithQualifier assert(nullableOutputWithQualifier.size == 2) assert(nullableOutputWithQualifier == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)).withNullability(true), schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)).withNullability(true))) } test("getStatement") { assert(filterQuery.getStatement().toString == "SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 " + "WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 )") } test("getStatement with alias") { assert(filterQuery.getStatement(useAlias = true).toString == "( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) " + "AS SUBQUERY_0 WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 ) ) AS SUBQUERY_1") } test("find") { val returnedQuery = filterQuery.find({ case q: SourceQuery => q }) assert(returnedQuery.isDefined) assert(returnedQuery.get == sourceQuery) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinQuerySuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, SUBQUERY_1_ALIAS, SUBQUERY_2_ALIAS, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference} import org.apache.spark.sql.catalyst.expressions.{AttributeReference, EqualTo, ExprId, GreaterThanOrEqual, Literal} import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.types.{LongType, StringType} import org.scalatest.funsuite.AnyFunSuite class JoinQuerySuite extends AnyFunSuite { // Two tables on which we want to join val SCHOOL_TABLE_NAME = "test_project:test_dataset.school" val STUDENT_TABLE_NAME = "test_project:test_dataset.student" // studentName and schoolName are two columns in the student table and school table respectively val studentNameAttributeReference: AttributeReference = AttributeReference.apply("StudentName", StringType)(ExprId.apply(2)) val schoolNameAttributeReference: AttributeReference = AttributeReference.apply("SchoolName", StringType)(ExprId.apply(3)) // Consider that we are joining on the column SchoolID in the school table with _SchoolID in the student table val _schoolIdAttributeReference: AttributeReference = AttributeReference.apply("_SchoolID", LongType)(ExprId.apply(4)) private val joinExpression = EqualTo(schoolIdAttributeReference, _schoolIdAttributeReference) // Left query of the join private val leftSourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, SCHOOL_TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS) private val greaterThanFilterCondition = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal(50)) private val filterQuery = FilterQuery(expressionConverter, expressionFactory, Seq(greaterThanFilterCondition), leftSourceQuery, SUBQUERY_1_ALIAS) // Right query of the join private val rightSourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, STUDENT_TABLE_NAME, Seq(_schoolIdAttributeReference, studentNameAttributeReference), SUBQUERY_2_ALIAS) test("find") { val joinQuery = JoinQuery(expressionConverter, expressionFactory, filterQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply("inner"), "SUBQUERY_3") val returnedQuery = joinQuery.find({ case q: SourceQuery => q }) assert(returnedQuery.isDefined) assert(returnedQuery.get == leftSourceQuery) } test("suffixStatement") { val joinQuery = JoinQuery(expressionConverter, expressionFactory, filterQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply("inner"), "SUBQUERY_3") assert(joinQuery.suffixStatement.toString == "ON ( SUBQUERY_1.SCHOOLID = SUBQUERY_2._SCHOOLID )") } // Even though these statements look like a scary wall of text we are basically // selecting schoolId, schoolName, _schoolId and studentName from the two tables test("getStatement with INNER JOIN") { val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply("inner"), "SUBQUERY_3") assert(joinQuery.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , " + "( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM " + "( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 INNER JOIN " + "( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )") } test("getStatement with LEFT OUTER JOIN") { val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply("leftouter"), "SUBQUERY_3") assert(joinQuery.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , " + "( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM " + "( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LEFT OUTER JOIN " + "( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )") } test("getStatement with RIGHT OUTER JOIN") { val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply("rightouter"), "SUBQUERY_3") assert(joinQuery.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , " + "( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM " + "( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 RIGHT OUTER JOIN " + "( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )") } test("getStatement with FULL OUTER JOIN") { val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply("fullouter"), "SUBQUERY_3") assert(joinQuery.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , " + "( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM " + "( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 FULL OUTER JOIN " + "( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )") } test("getStatement with CROSS JOIN") { val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply("cross"), "SUBQUERY_3") assert(joinQuery.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , " + "( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM " + "( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 CROSS JOIN " + "( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )") } test("getStatement with LEFT SEMI JOIN") { val alias = Iterator.from(0).map(n => s"SUBQUERY_$n") val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = false, alias) assert(joinQuery.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 FROM " + "( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 WHERE EXISTS " + "( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 WHERE " + "( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID ) )") } test("getStatement with LEFT ANTI JOIN") { val alias = Iterator.from(0).map(n => s"SUBQUERY_$n") val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = true, alias) assert(joinQuery.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 FROM " + "( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 WHERE NOT EXISTS " + "( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 WHERE " + "( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID ) )") } test("find for left semi join") { val alias = Iterator.from(0).map(n => s"SUBQUERY_$n") val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = true, alias) val returnedQuery = joinQuery.find({ case q: SourceQuery => q }) assert(returnedQuery.isDefined) assert(returnedQuery.get == leftSourceQuery) } test("suffixStatement for left semi join") { val alias = Iterator.from(0).map(n => s"SUBQUERY_$n") val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = false, alias) assert(joinQuery.suffixStatement.toString == "WHERE EXISTS " + "( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 WHERE " + "( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID ) )") } test("suffixStatement for left anti join") { val alias = Iterator.from(0).map(n => s"SUBQUERY_$n") val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = true, alias) assert(joinQuery.suffixStatement.toString == "WHERE NOT EXISTS " + "( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 WHERE " + "( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID ) )") } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/ProjectQuerySuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.TestConstants._ import org.apache.spark.sql.catalyst.expressions.{Alias, GreaterThanOrEqual, LessThanOrEqual, Literal} import org.scalatest.funsuite.AnyFunSuite class ProjectQuerySuite extends AnyFunSuite{ private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS) // Conditions for filter query (> 50 AND < 100) private val greaterThanFilterCondition = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal(50)) private val lessThanFilterCondition = LessThanOrEqual.apply(schoolIdAttributeReference, Literal(100)) private val filterQuery = FilterQuery(expressionConverter, expressionFactory, Seq(greaterThanFilterCondition, lessThanFilterCondition), sourceQuery, SUBQUERY_1_ALIAS) // Projecting the column SchoolId private val projectQuery = ProjectQuery(expressionConverter, expressionFactory, Seq(schoolIdAttributeReference), filterQuery, SUBQUERY_2_ALIAS) test("sourceStatement") { assert(projectQuery.sourceStatement.toString == "( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 " + "WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 ) ) AS SUBQUERY_1") } test("suffixStatement") { assert(projectQuery.suffixStatement.isEmpty) } test("columnSet") { assert(projectQuery.columnSet.size == 2) assert(projectQuery.columnSet == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)), schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)))) } test("processedProjections") { assert(projectQuery.processedProjections.isDefined) assert(projectQuery.processedProjections.get == Seq(Alias(schoolIdAttributeReference, SUBQUERY_2_ALIAS + "_COL_0")(schoolIdAttributeReference.exprId, schoolIdAttributeReference.qualifier, Some(schoolIdAttributeReference.metadata)))) } test("columns") { assert(projectQuery.columns.isDefined) assert(projectQuery.columns.get.toString == "( SUBQUERY_1.SCHOOLID ) AS SUBQUERY_2_COL_0") } test("output") { assert(projectQuery.output.size == 1) assert(projectQuery.output == Seq(schoolIdAttributeReference.withName("SUBQUERY_2_COL_0"))) } test("outputWithQualifier") { assert(projectQuery.outputWithQualifier.size == 1) assert(projectQuery.outputWithQualifier == Seq(schoolIdAttributeReference.withName(SUBQUERY_2_ALIAS + "_COL_0").withQualifier(Seq(SUBQUERY_2_ALIAS)))) } test("nullableOutputWithQualifier") { val nullableOutputWithQualifier = projectQuery.nullableOutputWithQualifier assert(nullableOutputWithQualifier.size == 1) assert(nullableOutputWithQualifier == Seq(schoolIdAttributeReference.withName(SUBQUERY_2_ALIAS + "_COL_0").withQualifier(Seq(SUBQUERY_2_ALIAS)).withNullability(true))) } test("getStatement") { assert(projectQuery.getStatement().toString == "SELECT ( SUBQUERY_1.SCHOOLID ) AS SUBQUERY_2_COL_0 FROM " + "( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 " + "WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 ) ) AS SUBQUERY_1") } test("getStatement with alias") { assert(projectQuery.getStatement(useAlias = true).toString == "( SELECT ( SUBQUERY_1.SCHOOLID ) AS SUBQUERY_2_COL_0 FROM " + "( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 " + "WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 ) ) AS SUBQUERY_1 ) AS SUBQUERY_2") } test("find") { val returnedQuery = projectQuery.find({ case q: SourceQuery => q }) assert(returnedQuery.isDefined) assert(returnedQuery.get == sourceQuery) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/SortLimitQuerySuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, SUBQUERY_1_ALIAS, TABLE_NAME, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference} import org.apache.spark.sql.catalyst.expressions.{Ascending, Literal, SortOrder} import org.scalatest.funsuite.AnyFunSuite // Testing only the suffixStatement here since it is the only variable that is // different from the other queries. class SortLimitQuerySuite extends AnyFunSuite{ private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS) test("suffixStatement with only limit") { val sortLimitQuery = SortLimitQuery(expressionConverter, expressionFactory, Some(Literal(10)), Seq(), sourceQuery, SUBQUERY_1_ALIAS) assert(sortLimitQuery.suffixStatement.toString == "LIMIT 10") } test("suffixStatement with only orderBy") { val sortOrder = SortOrder.apply(schoolIdAttributeReference, Ascending) val sortLimitQuery = SortLimitQuery(expressionConverter, expressionFactory, None, Seq(sortOrder), sourceQuery, SUBQUERY_1_ALIAS) assert(sortLimitQuery.suffixStatement.toString == "ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC") } test("suffixStatement with both orderBy and limit") { val sortOrder = SortOrder.apply(schoolIdAttributeReference, Ascending) val sortLimitQuery = SortLimitQuery(expressionConverter, expressionFactory, Some(Literal(10)), Seq(sortOrder), sourceQuery, SUBQUERY_1_ALIAS) assert(sortLimitQuery.suffixStatement.toString == "ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC LIMIT 10") } test("find") { val sortOrder = SortOrder.apply(schoolIdAttributeReference, Ascending) val sortLimitQuery = SortLimitQuery(expressionConverter, expressionFactory, Some(Literal(10)), Seq(sortOrder), sourceQuery, SUBQUERY_1_ALIAS) val returnedQuery = sortLimitQuery.find({ case q: SourceQuery => q }) assert(returnedQuery.isDefined) assert(returnedQuery.get == sourceQuery) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/SourceQuerySuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.TestConstants._ import org.scalatest.funsuite.AnyFunSuite class SourceQuerySuite extends AnyFunSuite{ private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS) test("sourceStatement") { assert(sourceQuery.sourceStatement.toString == "`test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS") } test("suffixStatement") { assert(sourceQuery.suffixStatement.toString.isEmpty) } test("columnSet") { assert(sourceQuery.columnSet.isEmpty) } test("processedProjections") { assert(sourceQuery.processedProjections.isEmpty) } test("columns") { assert(sourceQuery.columns.isEmpty) } test("output") { assert(sourceQuery.output.size == 2) assert(sourceQuery.output == Seq(schoolIdAttributeReference, schoolNameAttributeReference)) } test("outputWithQualifier") { assert(sourceQuery.outputWithQualifier.size == 2) assert(sourceQuery.outputWithQualifier == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)), schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)))) } test("nullableOutputWithQualifier") { val nullableOutputWithQualifier = sourceQuery.nullableOutputWithQualifier assert(nullableOutputWithQualifier.size == 2) assert(nullableOutputWithQualifier == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)).withNullability(true), schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)).withNullability(true))) } test("getStatement") { assert(sourceQuery.getStatement().toString == "SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS") } test("getStatement with alias") { assert(sourceQuery.getStatement(useAlias = true).toString == "( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0") } test("getStatement with pushdownFilter set") { val sourceQueryWithPushdownFilter = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS, Option.apply("studentId = 1 AND studentName = Foo")) assert(sourceQueryWithPushdownFilter.getStatement().toString == "SELECT * FROM " + "`test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS WHERE studentId = 1 AND studentName = Foo") } test("find") { val returnedQuery = sourceQuery.find({ case q: SourceQuery => q }) assert(returnedQuery.isDefined) assert(returnedQuery.get == sourceQuery) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/SparkBigQueryPushdownUtilSuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation import com.google.cloud.spark.bigquery.pushdowns.TestConstants.{expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference} import org.apache.spark.sql.catalyst.expressions.{Alias, Ascending, AttributeReference, Cast, EqualTo, ExprId, Literal, NamedExpression, SortOrder} import org.apache.spark.sql.catalyst.plans.logical.{Filter, Limit, LocalLimit, Project, Sort} import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.types.{FloatType, IntegerType, LongType, StringType, StructType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class SparkBigQueryPushdownUtilSuite extends AnyFunSuite with BeforeAndAfter { @Mock private var directBigQueryRelationMock: DirectBigQueryRelation = _ before { MockitoAnnotations.initMocks(this) } test("blockStatement with EmptyBigQuerySQLStatement") { val bigQuerySQLStatement = EmptyBigQuerySQLStatement.apply() val returnedStatement = SparkBigQueryPushdownUtil.blockStatement(bigQuerySQLStatement) assert("( )" == returnedStatement.toString) } test("blockStatement with BigQuerySQLStatement") { val bigQuerySQLStatement = ConstantString("Address") + "IS NOT NULL" val returnedStatement = SparkBigQueryPushdownUtil.blockStatement(bigQuerySQLStatement) assert("( Address IS NOT NULL )" == returnedStatement.toString) } test("blockStatement with alias") { val bigQuerySQLStatement = ConstantString("`bigquery-public-data.samples.shakespeare`").toStatement val returnedStatement = SparkBigQueryPushdownUtil.blockStatement(bigQuerySQLStatement, "bq_connector_query_alias") assert("( `bigquery-public-data.samples.shakespeare` ) AS BQ_CONNECTOR_QUERY_ALIAS" == returnedStatement.toString) } test("makeStatement") { val bigQuerySQLStatement1 = ConstantString("Name").toStatement val bigQuerySQLStatement2 = ConstantString("Address").toStatement val bigQuerySQLStatement3 = ConstantString("Email").toStatement val returnedStatement = SparkBigQueryPushdownUtil.makeStatement(List(bigQuerySQLStatement1, bigQuerySQLStatement2, bigQuerySQLStatement3), ",") assert("Name , Address , Email" == returnedStatement.toString) } test("addAttributeStatement with field match") { // Field match will occur on ExprId val attr = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1)) val fields = List(AttributeReference.apply("SUBQUERY_2_COL_0", LongType)(ExprId.apply(1), List("SUBQUERY_2")), AttributeReference.apply("SUBQUERY_3_COL_1", LongType)(ExprId.apply(2), List("SUBQUERY_3"))) val returnedStatement = SparkBigQueryPushdownUtil.addAttributeStatement(attr, fields) assert("SUBQUERY_2.SUBQUERY_2_COL_0" == returnedStatement.toString) } test("addAttributeStatement without field match") { // Field match will not occur since ExprId are different between attr and fields val attr = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1)) val fields = List(AttributeReference.apply("SUBQUERY_2_COL_0", LongType)(ExprId.apply(2), List("SUBQUERY_2")), AttributeReference.apply("SUBQUERY_3_COL_1", LongType)(ExprId.apply(3), List("SUBQUERY_3"))) val returnedStatement = SparkBigQueryPushdownUtil.addAttributeStatement(attr, fields) assert("SCHOOLID" == returnedStatement.toString) } test("renameColumns") { val namedExpr1 = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1)) val namedExpr2 = Alias.apply(namedExpr1, "SID")(ExprId.apply(2)) val returnedExpressions = SparkBigQueryPushdownUtil.renameColumns(List(namedExpr1, namedExpr2), "SUBQUERY_2", expressionFactory) assert(2 == returnedExpressions.size) assert("SUBQUERY_2_COL_0" == returnedExpressions.head.name) assert(namedExpr1.exprId == returnedExpressions.head.exprId) assert("SUBQUERY_2_COL_1" == returnedExpressions(1).name) assert(namedExpr2.exprId == returnedExpressions(1).exprId) } test("removeNodeFromPlan") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation) val projectPlan = Project(Seq(schoolNameAttributeReference), filterPlan) val sortPlan = Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true, projectPlan) val limitPlan = Limit(Literal(10), sortPlan) val planWithProjectNodeRemoved = SparkBigQueryPushdownUtil.removeProjectNodeFromPlan(limitPlan, projectPlan) val expectedPlan = Limit(Literal(10), Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true, Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation))) assert(planWithProjectNodeRemoved.fastEquals(expectedPlan)) } test("updateTheLogicalPlan") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val schoolIdAttributeReference: AttributeReference = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(0L)) val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation) val projectPlan = Project(Seq(expressionFactory.createAlias(schoolIdAttributeReference, schoolIdAttributeReference.name, ExprId.apply(1L), Seq.empty, None)), filterPlan) val limitPlan = Limit(Literal(10), projectPlan) val planWithProjectNodeRemoved = SparkBigQueryPushdownUtil.addProjectNodeToThePlan(limitPlan, projectPlan, expressionFactory) assert(planWithProjectNodeRemoved.children.size == 1) assert(planWithProjectNodeRemoved.children(0).isInstanceOf[LocalLimit]) // Root node of the plan is of type LocalLimit with 1 child, newly added ProjectPlan val actualLimitPlan = planWithProjectNodeRemoved.children(0) assert(actualLimitPlan.children.size == 1) assert(actualLimitPlan.children(0).isInstanceOf[Project]) // The newly added Project plan has list of NamedExpressions which are cast to string val addedProjectPlan = actualLimitPlan.children(0).asInstanceOf[Project] addedProjectPlan.projectList.foreach(node => assert(node.isInstanceOf[Alias])) addedProjectPlan.projectList.foreach(node => assert(node.asInstanceOf[Alias].child.isInstanceOf[Cast])) assert(addedProjectPlan.children.size == 1) assert(addedProjectPlan.children(0).isInstanceOf[Project]) // The updated project plan where cast is removed from the project list (if there is any) val updatedProjectPlan = addedProjectPlan.children(0).asInstanceOf[Project] updatedProjectPlan.projectList.foreach(node => assert(node.isInstanceOf[Alias])) updatedProjectPlan.projectList.foreach(node => assert(node.asInstanceOf[Alias].child.isInstanceOf[AttributeReference])) assert(updatedProjectPlan.children.size == 1) // the rest all plan should be the same val actualFilterPlan = updatedProjectPlan.children(0) assert(actualFilterPlan.fastEquals(filterPlan)) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/SparkExpressionConverterSuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.BigQueryPushdownUnsupportedException import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation import com.google.cloud.spark.bigquery.pushdowns.TestConstants.expressionConverter import org.apache.spark.sql.catalyst.expressions.aggregate._ import org.apache.spark.sql.catalyst.expressions.{Abs, Acos, Alias, And, Ascending, Ascii, Asin, Atan, AttributeReference, Base64, BitwiseAnd, BitwiseNot, BitwiseOr, BitwiseXor, CaseWhen, Cast, Coalesce, Concat, Contains, Cos, Cosh, DateAdd, DateSub, DenseRank, Descending, EndsWith, EqualNullSafe, EqualTo, Exp, ExprId, Floor, FormatNumber, FormatString, GreaterThan, GreaterThanOrEqual, Greatest, If, In, InSet, InitCap, IsNaN, IsNotNull, IsNull, Least, Length, LessThan, LessThanOrEqual, Literal, Log10, Logarithm, Lower, Month, Not, Or, PercentRank, Pi, Pow, PromotePrecision, Quarter, Rand, Rank, RegExpExtract, RegExpReplace, Round, RowNumber, ShiftLeft, ShiftRight, Signum, Sin, Sinh, SortOrder, SoundEx, Sqrt, StartsWith, StringInstr, StringLPad, StringRPad, StringTranslate, StringTrim, StringTrimLeft, StringTrimRight, Substring, Tan, Tanh, TruncDate, UnBase64, UnscaledValue, Upper, Year} import org.apache.spark.sql.types._ import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class SparkExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter { private val schoolIdAttributeReference = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1)) private val schoolStartDateAttributeReference = AttributeReference.apply("StartDate", DateType)(ExprId.apply(2)) private val fields = List(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1), List("SUBQUERY_2"))) @Mock var directBigQueryRelationMock: DirectBigQueryRelation = _ before { MockitoAnnotations.initMocks(this) } test("convertAggregateExpressions with COUNT") { val aggregateFunction = Count.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "COUNT ( SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with DISTINCT COUNT") { val aggregateFunction = Count.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = true) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "COUNT ( DISTINCT SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with AVERAGE") { val aggregateFunction = Average.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "AVG ( SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with CORR") { val aggregateFunction = Corr.apply(schoolIdAttributeReference, AttributeReference.apply("StudentID", LongType)(ExprId.apply(2))) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CORR ( SUBQUERY_2.SCHOOLID , STUDENTID )") } test("convertAggregateExpressions with COVAR_POP") { val aggregateFunction = CovPopulation.apply(schoolIdAttributeReference, AttributeReference.apply("StudentID", LongType)(ExprId.apply(2))) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "COVAR_POP ( SUBQUERY_2.SCHOOLID , STUDENTID )") } test("convertAggregateExpressions with COVAR_SAMP") { val aggregateFunction = CovSample.apply(schoolIdAttributeReference, AttributeReference.apply("StudentID", LongType)(ExprId.apply(2))) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "COVAR_SAMP ( SUBQUERY_2.SCHOOLID , STUDENTID )") } test("convertAggregateExpressions with MAX") { val aggregateFunction = Max.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "MAX ( SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with MIN") { val aggregateFunction = Min.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "MIN ( SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with SUM") { val aggregateFunction = Sum.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUM ( SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with STDDEV_POP") { val aggregateFunction = StddevPop.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "STDDEV_POP ( SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with STDDEV_SAMP") { val aggregateFunction = StddevSamp.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "STDDEV_SAMP ( SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with VAR_POP") { val aggregateFunction = VariancePop.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "VAR_POP ( SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with VAR_SAMP") { val aggregateFunction = VarianceSamp.apply(schoolIdAttributeReference) val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "VAR_SAMP ( SUBQUERY_2.SCHOOLID )") } test("convertAggregateExpressions with non aggregate expression") { val nonAggregateExpression = IsNotNull.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(nonAggregateExpression, fields) assert(bigQuerySQLStatement.isEmpty) } test("convertBasicExpressions with BinaryOperator (GreaterThanOrEqual)") { val binaryOperatorExpression = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(75L, LongType)) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(binaryOperatorExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID >= 75 )") } test("convertBasicExpressions with BinaryOperator (LessThanOrEqual)") { val binaryOperatorExpression = LessThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(75L, LongType)) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(binaryOperatorExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID <= 75 )") } test("convertBasicExpressions with AND") { val left = LessThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(100L, LongType)) val right = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(75L, LongType)) val andExpression = And.apply(left, right) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(andExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( ( SUBQUERY_2.SCHOOLID <= 100 ) AND ( SUBQUERY_2.SCHOOLID >= 75 ) )") } test("convertBasicExpressions with OR") { val left = LessThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(25L, LongType)) val right = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(75L, LongType)) val orExpression = Or.apply(left, right) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(orExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( ( SUBQUERY_2.SCHOOLID <= 25 ) OR ( SUBQUERY_2.SCHOOLID >= 75 ) )") } test("convertBasicExpressions with BitwiseAnd") { val left = Literal.apply(0) val right = Literal.apply(1) val bitwiseAndExpression = BitwiseAnd.apply(left, right) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(bitwiseAndExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( 0 & 1 )") } test("convertBasicExpressions with BitwiseOr") { val left = Literal.apply(0) val right = Literal.apply(1) val bitwiseOrExpression = BitwiseOr.apply(left, right) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(bitwiseOrExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( 0 | 1 )") } test("convertBasicExpressions with BitwiseXor") { val left = Literal.apply(0) val right = Literal.apply(1) val bitwiseXorExpression = BitwiseXor.apply(left, right) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(bitwiseXorExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( 0 ^ 1 )") } test("convertBasicExpressions with BitwiseNot") { val child = Literal.apply(1) val bitwiseXorExpression = BitwiseNot.apply(child) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(bitwiseXorExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "~ ( 1 )") } test("convertBasicExpressions with EqualNullSafe") { val left = Literal.apply(1) val right = Literal.apply(null) val equalNullSafeExpression = EqualNullSafe.apply(left, right) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(equalNullSafeExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( COALESCE ( CAST ( 1 AS STRING ) , \"\" ) = COALESCE ( CAST ( NULL AS STRING ) , \"\" ) )") } test("convertBasicExpressions with String literal") { val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal("MY_STRING_LITERAL"), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "'MY_STRING_LITERAL'") } test("convertBasicExpressions with null String literal") { val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(null, StringType), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "NULL") } test("convertBasicExpressions with Date literal") { // Spark represents DateType as number of days after 1970-01-01 val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(17007, DateType), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "DATE_ADD(DATE \"1970-01-01\", INTERVAL 17007 DAY)") } test("convertBasicExpressions with Integer literal") { val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "1") } test("convertBasicExpressions with Long literal") { val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(100L), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "100") } test("convertBasicExpressions with Short literal") { val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(100.toShort), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "100") } test("convertBasicExpressions with Boolean literal") { val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(false), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "false") } test("convertBasicExpressions with Float literal") { val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1.2345F), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "1.2345") } test("convertBasicExpressions with Double literal") { val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(3e5D), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "300000.0") } test("convertBasicExpressions with Byte literal") { val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(20.toByte), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "20") } test("convertBasicExpressions with non basic expression") { val nonBasicExpression = IsNotNull.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(nonBasicExpression, fields) assert(bigQuerySQLStatement.isEmpty) } test("convertBooleanExpressions with In") { val inExpression = In.apply(schoolIdAttributeReference, List(Literal(100), Literal(200))) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(inExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUBQUERY_2.SCHOOLID IN ( 100 , 200 )") } test("convertBooleanExpressions with IsNull") { val isNullExpression = IsNull.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(isNullExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID IS NULL )") } test("convertBooleanExpressions with IsNotNull") { val isNotNullExpression = IsNotNull.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(isNotNullExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID IS NOT NULL )") } test("convertBooleanExpressions with Not EqualTo") { val notEqualToExpression = Not.apply(EqualTo.apply(schoolIdAttributeReference, Literal(1234L))) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notEqualToExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID != 1234 )") } test("convertBooleanExpressions with Not GreaterThanOrEqual") { val notGreaterThanOrEqualToExpression = Not.apply(GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal(1234L))) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notGreaterThanOrEqualToExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID < 1234 )") } test("convertBooleanExpressions with Not LessThanOrEqual") { val notLessThanOrEqualToExpression = Not.apply(LessThanOrEqual.apply(schoolIdAttributeReference, Literal(1234L))) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notLessThanOrEqualToExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID > 1234 )") } test("convertBooleanExpressions with Not GreaterThan") { val notGreaterThanExpression = Not.apply(GreaterThan.apply(schoolIdAttributeReference, Literal(1234L))) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notGreaterThanExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID <= 1234 )") } test("convertBooleanExpressions with Not LessThan") { val notLessThanExpression = Not.apply(LessThan.apply(schoolIdAttributeReference, Literal(1234L))) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notLessThanExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID >= 1234 )") } test("convertBooleanExpressions with Contains") { val containsExpression = Contains.apply(schoolIdAttributeReference, Literal("123'4")) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(containsExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CONTAINS_SUBSTR ( SUBQUERY_2.SCHOOLID , '123\\'4' )") } test("convertBooleanExpressions with Ends With") { val endsWithExpression = EndsWith.apply(schoolIdAttributeReference, Literal("123'4")) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(endsWithExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "ENDS_WITH ( SUBQUERY_2.SCHOOLID , '123\\'4' )") } test("convertBooleanExpressions with Starts With") { val startsWithExpression = StartsWith.apply(schoolIdAttributeReference, Literal("123'4")) val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(startsWithExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "STARTS_WITH ( SUBQUERY_2.SCHOOLID , '123\\'4' )") } test("convertBooleanExpressions with non Boolean expression") { val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(Literal(100L), fields) assert(bigQuerySQLStatement.isEmpty) } test("convertStringExpressions with Ascii") { val asciiExpression = Ascii.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(asciiExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "ASCII ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with Concat") { val concatExpression = Concat.apply(List(schoolIdAttributeReference, Literal("**"))) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(concatExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CONCAT ( SUBQUERY_2.SCHOOLID , '**' )") } test("convertStringExpressions with Length") { val lengthExpression = Length.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(lengthExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "LENGTH ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with Lower") { val lowerExpression = Lower.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(lowerExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "LOWER ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with StringLPad") { val stringLPadExpression = StringLPad.apply(schoolIdAttributeReference, Literal(10), Literal("*")) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringLPadExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "LPAD ( SUBQUERY_2.SCHOOLID , 10 , '*' )") } test("convertStringExpressions with StringRPad") { val stringRPadExpression = StringRPad.apply(schoolIdAttributeReference, Literal(10), Literal("*")) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringRPadExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "RPAD ( SUBQUERY_2.SCHOOLID , 10 , '*' )") } test("convertStringExpressions with StringTranslate") { val stringTranslateExpression = StringTranslate.apply(schoolIdAttributeReference, Literal("*"), Literal("**")) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringTranslateExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TRANSLATE ( SUBQUERY_2.SCHOOLID , '*' , '**' )") } test("convertStringExpressions with StringTrim") { val stringTrimExpression = StringTrim.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringTrimExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TRIM ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with StringTrimLeft") { val stringTrimLeftExpression = StringTrimLeft.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringTrimLeftExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "LTRIM ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with StringTrimRight") { val stringTrimRightExpression = StringTrimRight.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringTrimRightExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "RTRIM ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with Upper") { val upperExpression = Upper.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(upperExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "UPPER ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with StringInstr") { val stringInstrExpression = StringInstr.apply(schoolIdAttributeReference, Literal("1234")) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringInstrExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "INSTR ( SUBQUERY_2.SCHOOLID , '1234' )") } test("convertStringExpressions with InitCap") { val initCapExpression = InitCap.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(initCapExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "INITCAP ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with Base64") { val base64Expression = Base64.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(base64Expression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TO_BASE64 ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with UnBase64") { val unBase64Expression = UnBase64.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(unBase64Expression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "FROM_BASE64 ( SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with Substring") { val substrExpression = Substring.apply(schoolIdAttributeReference, Literal(2), Literal(3)) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(substrExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUBSTRING ( SUBQUERY_2.SCHOOLID , 2 , 3 )") } test("convertStringExpressions with SoundEx") { val soundexExpression = SoundEx.apply(schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(soundexExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "UPPER ( SOUNDEX ( SUBQUERY_2.SCHOOLID ) )") } test("convertStringExpressions with RegExpExtract") { val regExpExtractExpression = RegExpExtract.apply(schoolIdAttributeReference, Literal("[0-9]"), Literal(1)) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(regExpExtractExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "REGEXP_EXTRACT ( SUBQUERY_2.SCHOOLID , r'[0-9]' , 1 )") } test("convertStringExpressions with RegExpReplace") { val regExpReplaceExpression = RegExpReplace.apply(schoolIdAttributeReference, Literal("[0-9]"), Literal("replace")) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(regExpReplaceExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "REGEXP_REPLACE ( SUBQUERY_2.SCHOOLID , r'[0-9]' , 'replace' )") } test("convertStringExpressions with FormatString") { val formatStringExpression = FormatString.apply(Literal("*%s*"), schoolIdAttributeReference) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(formatStringExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "FORMAT ( '*%s*' , SUBQUERY_2.SCHOOLID )") } test("convertStringExpressions with FormatNumber") { val formatNumberExpression = FormatNumber.apply(Literal(12.3456), Literal(2)) val bigQuerySQLStatement = expressionConverter.convertStringExpressions(formatNumberExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "FORMAT ( 12.3456 , 2 )") } test("convertMathematicalExpressions with Abs") { val absExpression = Abs.apply(Literal(-12)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(absExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "ABS ( -12 )") } test("convertMathematicalExpressions with Acos") { val aCosExpression = Acos.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(aCosExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "ACOS ( 90 )") } test("convertMathematicalExpressions with Asin") { val aSinExpression = Asin.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(aSinExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "ASIN ( 90 )") } test("convertMathematicalExpressions with Atan") { val aTanExpression = Atan.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(aTanExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "ATAN ( 90 )") } test("convertMathematicalExpressions with Cos") { val cosExpression = Cos.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(cosExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "COS ( 90 )") } test("convertMathematicalExpressions with Cosh") { val coshExpression = Cosh.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(coshExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "COSH ( 90 )") } test("convertMathematicalExpressions with Exp") { val expExpression = Exp.apply(Literal(2)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(expExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "EXP ( 2 )") } test("convertMathematicalExpressions with Floor") { val floorExpression = Floor.apply(Literal(2.5)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(floorExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "FLOOR ( 2.5 )") } test("convertMathematicalExpressions with Greatest") { val greatestExpression = Greatest.apply(List(Literal(1), Literal(3), Literal(2))) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(greatestExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "GREATEST ( 1 , 3 , 2 )") } test("convertMathematicalExpressions with Least") { val leastExpression = Least.apply(List(Literal(1), Literal(3), Literal(2))) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(leastExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "LEAST ( 1 , 3 , 2 )") } test("convertMathematicalExpressions with Logarithm") { val logExpression = Logarithm.apply(Literal(2), Literal(10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(logExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "LOG ( 10 , 2 )") } test("convertMathematicalExpressions with Log10") { val logExpression = Log10.apply(Literal(10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(logExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "LOG10 ( 10 )") } test("convertMathematicalExpressions with Pow") { val powExpression = Pow.apply(Literal(10), Literal(2)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(powExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "POWER ( 10 , 2 )") } test("convertMathematicalExpressions with Round") { val roundExpression = Round.apply(Literal(10.234), Literal(2)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(roundExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "ROUND ( 10.234 , 2 )") } test("convertMathematicalExpressions with Sin") { val sinExpression = Sin.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(sinExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SIN ( 90 )") } test("convertMathematicalExpressions with Sinh") { val sinhExpression = Sinh.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(sinhExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SINH ( 90 )") } test("convertMathematicalExpressions with Sqrt") { val sqrtExpression = Sqrt.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(sqrtExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SQRT ( 90 )") } test("convertMathematicalExpressions with Tan") { val tanExpression = Tan.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(tanExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TAN ( 90 )") } test("convertMathematicalExpressions with Tanh") { val tanhExpression = Tanh.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(tanhExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TANH ( 90 )") } test("convertMathematicalExpressions with IsNaN") { val isNanExpression = IsNaN.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(isNanExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "IS_NAN ( 90 )") } test("convertMathematicalExpressions with Signum") { val signumExpression = Signum.apply(Literal(90)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(signumExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SIGN ( 90 )") } test("convertMathematicalExpressions with Rand") { val randExpression = Rand.apply(Literal(2)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(randExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "RAND ()") } test("convertMathematicalExpressions with Pi") { val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(Pi(), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "bqutil.fn.pi()") } test("convertMathematicalExpressions with PromotePrecision") { val promotePrecisionExpression = PromotePrecision(Cast(Literal.apply(233.00), DecimalType.apply(38, 6))) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(promotePrecisionExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( 233.0 AS BIGDECIMAL )") } test("convertMiscellaneousExpressions with Alias") { val aliasExpression = Alias.apply(schoolIdAttributeReference, "SCHOOL_ID_ALIAS")(ExprId.apply(1)) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(aliasExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID ) AS SCHOOL_ID_ALIAS") } test("convertMiscellaneousExpressions with Ascending sort") { val sortExpression = SortOrder.apply(schoolIdAttributeReference, Ascending) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(sortExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID ) ASC") } test("convertMiscellaneousExpressions with Descending sort") { val sortExpression = SortOrder.apply(schoolIdAttributeReference, Descending) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(sortExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SUBQUERY_2.SCHOOLID ) DESC") } test("convertMiscellaneousExpressions with unsupported casts") { assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Date", DateType)(ExprId.apply(2)), IntegerType), fields) } assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Date", DateType)(ExprId.apply(2)), LongType), fields) } assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Date", DateType)(ExprId.apply(2)), FloatType), fields) } assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Date", DateType)(ExprId.apply(2)), DoubleType), fields) } assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Date", DateType)(ExprId.apply(2)), DecimalType(10, 0)), fields) } assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Timestamp", TimestampType)(ExprId.apply(2)), IntegerType), fields) } assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Timestamp", TimestampType)(ExprId.apply(2)), LongType), fields) } assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Timestamp", TimestampType)(ExprId.apply(2)), FloatType), fields) } assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Timestamp", TimestampType)(ExprId.apply(2)), DoubleType), fields) } assertThrows[BigQueryPushdownUnsupportedException] { expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply("Timestamp", TimestampType)(ExprId.apply(2)), DecimalType(10, 0)), fields) } } test("convertMiscellaneousExpressions with Cast from Integer to String") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", IntegerType)(ExprId.apply(2)), StringType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS STRING )") } test("convertMiscellaneousExpressions with Cast from Integer to Boolean") { val castExpression = Cast.apply(AttributeReference.apply("is_student", IntegerType)(ExprId.apply(2)), BooleanType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( IS_STUDENT AS BOOL )") } test("convertMiscellaneousExpressions with Cast from Integer to Short") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", IntegerType)(ExprId.apply(2)), ShortType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS INT64 )") } test("convertMiscellaneousExpressions with Cast from Integer to Long") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", IntegerType)(ExprId.apply(2)), LongType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS INT64 )") } test("convertMiscellaneousExpressions with Cast from Long to Integer") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(2)), IntegerType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS INT64 )") } test("convertMiscellaneousExpressions with Cast from Integer to Float") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", IntegerType)(ExprId.apply(2)), FloatType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS FLOAT64 )") } test("convertMiscellaneousExpressions with Cast from Integer to Double") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", IntegerType)(ExprId.apply(2)), DoubleType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS FLOAT64 )") } test("convertMiscellaneousExpressions with Cast from Integer to Bytes") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", IntegerType)(ExprId.apply(2)), ByteType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS NUMERIC )") } test("convertMiscellaneousExpressions with Cast from Long to Bytes") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(2)), ByteType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS NUMERIC )") } test("convertMiscellaneousExpressions with Cast from Float to Bytes") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", FloatType)(ExprId.apply(2)), ByteType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS NUMERIC )") } test("convertMiscellaneousExpressions with Cast from Double to Bytes") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", DoubleType)(ExprId.apply(2)), ByteType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS NUMERIC )") } test("convertMiscellaneousExpressions with Cast from Decimal to Bytes") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", DecimalType(10, 5))(ExprId.apply(2)), ByteType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS NUMERIC )") } test("convertMiscellaneousExpressions with Cast from String to Date") { val castExpression = Cast.apply(AttributeReference.apply("attendance_date", StringType)(ExprId.apply(2)), DateType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( ATTENDANCE_DATE AS DATE )") } test("convertMiscellaneousExpressions with Cast from String to Timestamp") { val castExpression = Cast.apply(AttributeReference.apply("last_modified", StringType)(ExprId.apply(2)), TimestampType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( LAST_MODIFIED AS TIMESTAMP )") } test("convertMiscellaneousExpressions with Cast from String to Bytes") { val castExpression = Cast.apply(AttributeReference.apply("SchoolID", StringType)(ExprId.apply(2)), ByteType) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( SCHOOLID AS BYTES )") } test("convertMiscellaneousExpressions with Cast from String to BigDecimal/BigNumeric") { val castExpression = Cast.apply(AttributeReference.apply("Transaction", StringType)(ExprId.apply(2)), DecimalType(10, 5)) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( TRANSACTION AS BIGDECIMAL )") } test("convertMiscellaneousExpressions with ShiftLeft") { val shiftLeftExpression = ShiftLeft.apply(Literal.apply(4), Literal.apply(2)) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(shiftLeftExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( 4 << 2 )") } test("convertMiscellaneousExpressions with ShiftRight") { val shiftRightExpression = ShiftRight.apply(Literal.apply(4), Literal.apply(2)) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(shiftRightExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( 4 >> 2 )") } test("convertMiscellaneousExpressions with CaseWhen") { val caseWhenExpression = CaseWhen.apply(List.apply(Tuple2.apply(Literal.apply("COND1"), Literal.apply("EVAL1")), Tuple2.apply(Literal.apply("COND2"), Literal.apply("EVAL2"))), Literal.apply("ELSE_EVAL")) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(caseWhenExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CASE WHEN 'COND1' THEN 'EVAL1' WHEN 'COND2' THEN 'EVAL2' ELSE 'ELSE_EVAL' END") } test("convertMiscellaneousExpressions with CaseWhenWithWithoutElse") { val caseWhenExpression = CaseWhen.apply(List.apply(Tuple2.apply(Literal.apply("COND1"), Literal.apply("EVAL1")), Tuple2.apply(Literal.apply("COND2"), Literal.apply("EVAL2")))) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(caseWhenExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CASE WHEN 'COND1' THEN 'EVAL1' WHEN 'COND2' THEN 'EVAL2' END") } test("convertMiscellaneousExpressions with If") { val ifExpression = If.apply(Literal.apply("COND1"), Literal.apply("TRUE_VAL"), Literal.apply("FALSE_VAL")) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(ifExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "IF ( 'COND1' , 'TRUE_VAL' , 'FALSE_VAL' )") } test("convertMiscellaneousExpressions with InSet") { val inSetExpression = InSet.apply(Literal.apply("COND1"), Set.apply(Literal.apply("C1"), Literal.apply("C2"), Literal.apply("C3"))) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(inSetExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "'COND1' IN ( 'C1' , 'C2' , 'C3' )") } test("convertMiscellaneousExpressions with UnscaledValue") { val inSetExpression = UnscaledValue.apply(Literal.apply(Decimal(1234.34))) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(inSetExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( 1234.34 * POW( 10, 2 ) )") } test("convertMiscExpression with Coalesce") { val coalesceExpression = Coalesce.apply(List.apply(Literal.apply(null), Literal.apply(null), Literal.apply("COND2"))) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(coalesceExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "COALESCE ( NULL , NULL , 'COND2' )") } test("convertDateExpressions with DateAdd") { val dateAddExpression = DateAdd.apply(schoolStartDateAttributeReference, Literal.apply("1")) val bigQuerySQLStatement = expressionConverter.convertDateExpressions(dateAddExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "DATE_ADD ( STARTDATE , INTERVAL '1' DAY )") } test("convertDateExpressions with DateSub") { val dateSubExpression = DateSub.apply(schoolStartDateAttributeReference, Literal.apply("1")) val bigQuerySQLStatement = expressionConverter.convertDateExpressions(dateSubExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "DATE_SUB ( STARTDATE , INTERVAL '1' DAY )") } test("convertDateExpressions with Month") { val monthExpression = Month.apply(schoolStartDateAttributeReference) val bigQuerySQLStatement = expressionConverter.convertDateExpressions(monthExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "EXTRACT ( MONTH FROM STARTDATE )") } test("convertDateExpressions with Quarter") { val quarterExpression = Quarter.apply(schoolStartDateAttributeReference) val bigQuerySQLStatement = expressionConverter.convertDateExpressions(quarterExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "EXTRACT ( QUARTER FROM STARTDATE )") } test("convertDateExpressions with Year") { val yearExpression = Year.apply(schoolStartDateAttributeReference) val bigQuerySQLStatement = expressionConverter.convertDateExpressions(yearExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "EXTRACT ( YEAR FROM STARTDATE )") } test("convertDateExpressions with DATE_TRUNC") { val yearExpression = TruncDate.apply(Literal.apply("2016-07-30"), Literal.apply("YEAR")) val bigQuerySQLStatement = expressionConverter.convertDateExpressions(yearExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "DATE_TRUNC ( '2016-07-30' , YEAR )") } test("convertWindowExpressions with RANK") { val rankExpression = Rank.apply(List.apply(Literal.apply(1))) val bigQuerySQLStatement = expressionConverter.convertWindowExpressions(rankExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "RANK ()") } test("convertWindowExpressions with DenseRank") { val denseRankExpression = DenseRank.apply(List.apply(Literal.apply(1))) val bigQuerySQLStatement = expressionConverter.convertWindowExpressions(denseRankExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "DENSE_RANK ()") } test("convertWindowExpressions with PercentRank") { val percentRankExpression = PercentRank.apply(List.apply(Literal.apply(1))) val bigQuerySQLStatement = expressionConverter.convertWindowExpressions(percentRankExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "PERCENT_RANK ()") } test("convertWindowExpressions with RowNumber") { val rowNumberExpression = RowNumber.apply() val bigQuerySQLStatement = expressionConverter.convertWindowExpressions(rowNumberExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "ROW_NUMBER ()") } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/TestConstants.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.catalyst.expressions.{Alias, Attribute, AttributeReference, Cast, ExprId, Expression} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.types.{LongType, Metadata, StringType} import org.mockito.Mock object TestConstants { val TABLE_NAME = "test_project:test_dataset.test_table" val SUBQUERY_0_ALIAS = "SUBQUERY_0" val SUBQUERY_1_ALIAS = "SUBQUERY_1" val SUBQUERY_2_ALIAS = "SUBQUERY_2" val schoolIdAttributeReference: AttributeReference = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1)) val schoolNameAttributeReference: AttributeReference = AttributeReference.apply("SchoolName", StringType)(ExprId.apply(2)) val expressionFactory: SparkExpressionFactory = new SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } val expressionConverter: SparkExpressionConverter = new SparkExpressionConverter { // Tests for Scalar Subquery are in Spark version specific pushdown modules override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { throw new UnsupportedOperationException("Scalar Subquery is supported " + "only from Spark version specific implementations of SparkExpressionConverter") } override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { throw new UnsupportedOperationException("CheckOverflow expression is supported " + "only from Spark version specific implementations of SparkExpressionConverter") } override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { throw new UnsupportedOperationException("UnaryMinus expression is supported " + "only from Spark version specific implementations of SparkExpressionConverter") } override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { val castExpression = expression.asInstanceOf[Cast] performCastExpressionConversion(castExpression.child, fields, castExpression.dataType) } override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { throw new UnsupportedOperationException("Like expression is supported " + "only from Spark version specific implementations of SparkExpressionConverter") } } @Mock var bigQueryRDDFactoryMock: BigQueryRDDFactory = _ } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/UnaryOperationExtractorSuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{AttributeReference, EqualTo, ExprId, Literal} import org.apache.spark.sql.catalyst.plans.logical.{Aggregate, Filter, GlobalLimit, LocalLimit, LogicalPlan, Project, Range, ReturnAnswer, Sort, SubqueryAlias, Window} import org.apache.spark.sql.types.LongType import org.scalatest.funsuite.AnyFunSuite class UnaryOperationExtractorSuite extends AnyFunSuite { private val schoolIdAttributeReference = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1)) // Need a childPlan to pass. So, create the simplest possible private val childPlan = Range.apply(2L, 100L, 4L, 8) test("Filter") { val filterExpression = EqualTo.apply(schoolIdAttributeReference, Literal(1234L)) val filterPlan = Filter(filterExpression, childPlan) val plan = UnaryOperationExtractor.unapply(filterPlan) assertReturnedPlan(plan, filterPlan) } test("Project") { val projectPlan = Project(Seq(), childPlan) val plan = UnaryOperationExtractor.unapply(projectPlan) assertReturnedPlan(plan, projectPlan) } test("GlobalLimit") { val globalLimitPlan = GlobalLimit(Literal(21), childPlan) val plan = UnaryOperationExtractor.unapply(globalLimitPlan) assertReturnedPlan(plan, globalLimitPlan) } test("LocalLimit") { val localLimitPlan = LocalLimit(Literal(21), childPlan) val plan = UnaryOperationExtractor.unapply(localLimitPlan) assertReturnedPlan(plan, localLimitPlan) } test("Aggregate") { val aggregatePlan = Aggregate(Seq(), Seq() , childPlan) val plan = UnaryOperationExtractor.unapply(aggregatePlan) assertReturnedPlan(plan, aggregatePlan) } test("Sort") { val sortPlan = Sort(Seq(), global = false, childPlan) val plan = UnaryOperationExtractor.unapply(sortPlan) assertReturnedPlan(plan, sortPlan) } test("ReturnAnswer") { val returnAnswerPlan = ReturnAnswer(childPlan) val plan = UnaryOperationExtractor.unapply(returnAnswerPlan) assertReturnedPlan(plan, returnAnswerPlan) } test("Window") { val windowPlan = Window(Seq(), Seq(), Seq(), childPlan) val plan = UnaryOperationExtractor.unapply(windowPlan) assertReturnedPlan(plan, windowPlan) } test("non supported unary node") { val subqueryAliasPlan = SubqueryAlias("subquery_1", childPlan) val plan = UnaryOperationExtractor.unapply(subqueryAliasPlan) assert(plan.isEmpty) } def assertReturnedPlan(plan: Option[LogicalPlan], originalPlan: LogicalPlan): Unit = { assert(plan.isDefined) assert(plan.get == originalPlan) assert(plan.get.children.head.isInstanceOf[Range]) assert(plan.get.children.head == childPlan) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/UnionOperationExtractorSuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.logical.{Range, Union} import org.scalatest.funsuite.AnyFunSuite class UnionOperationExtractorSuite extends AnyFunSuite{ // Need a sequence of logicalplan's to pass. So, create the simplest possible private val childPlan1 = Range.apply(2L, 100L, 4L, 8) private val childPlan2 = Range.apply(4L, 200L, 8L, 16) test(testName = "Union") { val union = Union(Seq(childPlan1, childPlan2)) val plan = UnionOperationExtractor.unapply(union) assert(plan.isDefined) assert(plan.get.length == 2) assert(plan.get.head.isInstanceOf[Range]) assert(plan.get.equals(Seq(childPlan1, childPlan2))) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/UnionQuerySuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, SUBQUERY_1_ALIAS, SUBQUERY_2_ALIAS, TABLE_NAME, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference} import org.scalatest.funsuite.AnyFunSuite class UnionQuerySuite extends AnyFunSuite{ private val sourceQuery1 = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS) private val sourceQuery2 = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_1_ALIAS) test(testName = "getStatement with nonempty children and useAlias true") { val unionQuery = UnionQuery(expressionConverter, expressionFactory, Seq(sourceQuery1, sourceQuery2), SUBQUERY_2_ALIAS) val bigQuerySQLStatement = unionQuery.getStatement(true) assert(bigQuerySQLStatement.toString == "( ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) UNION ALL ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) ) AS SUBQUERY_2") } test(testName = "getStatement with nonempty children and useAlias false") { val unionQuery = UnionQuery(expressionConverter, expressionFactory, Seq(sourceQuery1, sourceQuery2), SUBQUERY_2_ALIAS) val bigQuerySQLStatement = unionQuery.getStatement() assert(bigQuerySQLStatement.toString == "( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) UNION ALL ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS )") } test("find") { val unionQuery = UnionQuery(expressionConverter, expressionFactory, Seq(sourceQuery1, sourceQuery2), SUBQUERY_2_ALIAS) val returnedQuery = unionQuery.find({ case q: SourceQuery => q }) assert(returnedQuery.isDefined) assert(returnedQuery.get == sourceQuery1) } } ================================================ FILE: spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/WindowQuerySuite.scala ================================================ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.BigQueryPushdownUnsupportedException import com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, SUBQUERY_1_ALIAS, SUBQUERY_2_ALIAS, TABLE_NAME, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference} import org.apache.spark.sql.catalyst.expressions import org.apache.spark.sql.catalyst.expressions.aggregate.{AggregateExpression, Average, Complete, Sum} import org.apache.spark.sql.catalyst.expressions.{Alias, Ascending, AttributeReference, Cast, EmptyRow, ExprId, FrameType, Literal, RangeFrame, Rank, RowFrame, RowNumber, SortOrder, SpecifiedWindowFrame, UnboundedFollowing, UnboundedPreceding, UnspecifiedFrame, WindowExpression, WindowFrame, WindowSpecDefinition} import org.apache.spark.sql.catalyst.plans.logical.Range import org.apache.spark.sql.types.{DateType, LongType, Metadata} import org.scalatest.funsuite.AnyFunSuite class WindowQuerySuite extends AnyFunSuite { private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS) test("sourceStatement with row window frame with rank func") { val windowExpressionWithRowWindowFrameWithRankFunc = WindowExpression.apply( windowFunction = Rank.apply(List.apply(Literal.apply(1))), windowSpec = WindowSpecDefinition.apply( Seq(schoolNameAttributeReference), Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), SpecifiedWindowFrame.apply(RowFrame, UnboundedPreceding, UnboundedFollowing))) val windowAliasWithRowsWindowFrameWithRankFunc = expressionFactory.createAlias(windowExpressionWithRowWindowFrameWithRankFunc, "", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty)) val windowQueryWithRowsWindowFrameWithRankFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRowsWindowFrameWithRankFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRowsWindowFrameWithRankFunc.toAttribute)), SUBQUERY_0_ALIAS) assert(windowQueryWithRowsWindowFrameWithRankFunc.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( RANK () OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0") } test("sourceStatement with row window frame with sum func") { val windowExpressionWithRowWindowFrameWithSumFunc = WindowExpression.apply( windowFunction = AggregateExpression.apply(Sum.apply(schoolIdAttributeReference), Complete, isDistinct = false), windowSpec = WindowSpecDefinition.apply( Seq(schoolNameAttributeReference), Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), SpecifiedWindowFrame.apply(RowFrame, UnboundedPreceding, UnboundedFollowing))) val windowAliasWithRowsWindowFrameWithSumFunc = expressionFactory.createAlias(windowExpressionWithRowWindowFrameWithSumFunc, "", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty)) val windowQueryWithRowsWindowFrameWithSumFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRowsWindowFrameWithSumFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRowsWindowFrameWithSumFunc.toAttribute)), SUBQUERY_0_ALIAS) assert(windowQueryWithRowsWindowFrameWithSumFunc.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( SUM ( SUBQUERY_0.SCHOOLID ) OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0") } test("sourceStatement with range window frame with rowNumber func") { val windowExpressionWithRangeWindowFrameWithRowNum = WindowExpression.apply( windowFunction = RowNumber.apply(), windowSpec = WindowSpecDefinition.apply( Seq(schoolNameAttributeReference), Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), SpecifiedWindowFrame.apply(RangeFrame, Literal.apply(-1L), Literal.apply(2L)))) val windowAliasWithRangeWindowFrameWithRowNum = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithRowNum, "", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty)) val windowQueryWithRangeWindowFrameWithRowNum = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithRowNum), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithRowNum.toAttribute)), SUBQUERY_0_ALIAS) assert(windowQueryWithRangeWindowFrameWithRowNum.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( ROW_NUMBER () OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0") } test("sourceStatement with range window frame with avg func") { val windowExpressionWithRangeWindowFrameWithAvg = WindowExpression.apply( windowFunction = AggregateExpression.apply(Average.apply(schoolIdAttributeReference), Complete, isDistinct = false), windowSpec = WindowSpecDefinition.apply( Seq(schoolNameAttributeReference), Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), SpecifiedWindowFrame.apply(RangeFrame, UnboundedPreceding, UnboundedFollowing))) val windowAliasWithRangeWindowFrameWithAvgFunc = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithAvg, "", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty)) val windowQueryWithRangeWindowFrameWithAvgFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithAvgFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithAvgFunc.toAttribute)), SUBQUERY_0_ALIAS) assert(windowQueryWithRangeWindowFrameWithAvgFunc.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( AVG ( SUBQUERY_0.SCHOOLID ) OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0") } test("sourceStatement with range window frame with avg func 2 PRECEDING and UNBOUNDED FOLLOWING") { val windowExpressionWithRangeWindowFrameWithAvg = WindowExpression.apply( windowFunction = AggregateExpression.apply(Average.apply(schoolIdAttributeReference), Complete, isDistinct = false), windowSpec = WindowSpecDefinition.apply( Seq(schoolNameAttributeReference), Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), SpecifiedWindowFrame.apply(RangeFrame, Literal.apply(-2L), UnboundedFollowing))) val windowAliasWithRangeWindowFrameWithAvgFunc = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithAvg, "", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty)) val windowQueryWithRangeWindowFrameWithAvgFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithAvgFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithAvgFunc.toAttribute)), SUBQUERY_0_ALIAS) assert(windowQueryWithRangeWindowFrameWithAvgFunc.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( AVG ( SUBQUERY_0.SCHOOLID ) OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC RANGE BETWEEN 2 PRECEDING AND UNBOUNDED FOLLOWING ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0") } test("sourceStatement with range window frame with avg func UNBOUNDED PRECEDING and 2 FOLLOWING") { val windowExpressionWithRangeWindowFrameWithAvg = WindowExpression.apply( windowFunction = AggregateExpression.apply(Average.apply(schoolIdAttributeReference), Complete, isDistinct = false), windowSpec = WindowSpecDefinition.apply( Seq(schoolNameAttributeReference), Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), SpecifiedWindowFrame.apply(RangeFrame, Literal.apply(-2L), UnboundedFollowing))) val windowAliasWithRangeWindowFrameWithAvgFunc = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithAvg, "", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty)) val windowQueryWithRangeWindowFrameWithAvgFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithAvgFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithAvgFunc.toAttribute)), SUBQUERY_0_ALIAS) assert(windowQueryWithRangeWindowFrameWithAvgFunc.getStatement().toString == "SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( AVG ( SUBQUERY_0.SCHOOLID ) OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC RANGE BETWEEN 2 PRECEDING AND UNBOUNDED FOLLOWING ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0") } test("sourceStatement with range window frame with avg func on fail") { val windowExpressionWithRangeWindowFrameWithAvg = WindowExpression.apply( windowFunction = AggregateExpression.apply(Average.apply(schoolIdAttributeReference), Complete, isDistinct = false), windowSpec = WindowSpecDefinition.apply( Seq(schoolNameAttributeReference), Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), SpecifiedWindowFrame.apply(RangeFrame, Literal.apply("abc"), UnboundedFollowing))) val windowAliasWithRangeWindowFrameWithAvgFunc = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithAvg, "", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty)) assertThrows[Exception] { WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithAvgFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithAvgFunc.toAttribute)), SUBQUERY_0_ALIAS) } } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/pom.xml ================================================ spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent 4.0.0 spark-2.4-bigquery-pushdown_2.11 2.11 2.4.0 ${project.groupId} spark-bigquery-pushdown-common_${scala.binary.version} ${project.version} org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown ================================================ com.google.cloud.spark.bigquery.pushdowns.Spark24BigQueryPushdown ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryPushdown.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns class Spark24BigQueryPushdown extends BaseSparkBigQueryPushdown { override def supportsSparkVersion(sparkVersion: String): Boolean = { sparkVersion.startsWith("2.4") } override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = { new Spark24ExpressionConverter(expressionFactory, sparkPlanFactory) } override def createSparkExpressionFactory: SparkExpressionFactory = { new Spark24ExpressionFactory } override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = { new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) } override def createSparkPlanFactory(): SparkPlanFactory = { new Spark24PlanFactory } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryPushdownPlan.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan import org.apache.spark.rdd.RDD import org.apache.spark.sql.catalyst.InternalRow import org.apache.spark.sql.catalyst.expressions.Attribute import org.apache.spark.sql.execution.SparkPlan /** BigQueryPlan, with RDD defined by custom query. */ case class Spark24BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow]) extends SparkPlan { override def children: Seq[SparkPlan] = Nil protected override def doExecute(): RDD[InternalRow] = { doExecuteSparkPlan(output, rdd) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryStrategy.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.execution.datasources.v2.DataSourceV2Relation import scala.collection.JavaConverters._ class Spark24BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = { // DataSourceV2Relation is the relation that is used in the Spark 2.4 DatasourceV2 connector plan match { case relation@DataSourceV2Relation(_, _, _, _, _) => // Get the reader and cast it to SupportsQueryPushdown to get the BigQueryRDDFactory relation.newReader() match { case reader: SupportsQueryPushdown => Some(SourceQuery(expressionConverter, expressionFactory, reader.getBigQueryRDDFactory, SparkBigQueryUtil.getTableNameFromOptions(relation.options.asJava), relation.output, alias.next)) case _ => None } // We should never reach here case _ => None } } override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = { val queries: Seq[BigQuerySQLQuery] = children.map { child => new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get } Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next)) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionConverter.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement import org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan /** * Convert Spark 2.4 specific expressions to SQL */ class Spark24ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter { override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case ScalarSubquery(plan, _, _) => blockStatement(new Spark24BigQueryStrategy(this, expressionFactory, sparkPlanFactory) .generateQueryFromPlan(plan).get.getStatement()) } } override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case CheckOverflow(child, t) => getCastType(t) match { case Some(cast) => ConstantString("CAST") + blockStatement(convertStatement(child, fields) + "AS" + cast) case _ => convertStatement(child, fields) } } } override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case UnaryMinus(child) => ConstantString("-") + blockStatement(convertStatement(child, fields)) } } override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Cast(child, dataType, _) => performCastExpressionConversion(child, fields, dataType) } } override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Like(left, right) => convertStatement(left, fields) + "LIKE" + convertStatement(right, fields) } } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression} import org.apache.spark.sql.types.Metadata class Spark24ExpressionFactory extends SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24PlanFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.execution.SparkPlan class Spark24PlanFactory extends SparkPlanFactory { /** * Generate SparkPlan from the output and RDD of the translated query */ override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = { Some(Spark24BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString))) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, Range} import org.scalatest.funsuite.AnyFunSuite class BinaryOperationExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) private val rightChildPlan = Range.apply(2L, 100L, 4L, 10) test("supported binary node") { val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply("inner"), None) val plan = BinaryOperationExtractor.unapply(joinPlan) assert(plan.isDefined) assert(plan.get.children.head == leftChildPlan) assert(plan.get.children(1) == rightChildPlan) } test("non supported binary node") { val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true) val plan = BinaryOperationExtractor.unapply(unsupportedPlan) assert(plan.isEmpty) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal} import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Join, Range} import org.scalatest.funsuite.AnyFunSuite class JoinExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) // Need a childPlan to pass. So, create the simplest possible private val rightChildPlan = Range.apply(2L, 100L, 4L, 16) test("unapply") { val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start)) val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply("inner"), Option(joinExpression)) val returnedOption = JoinExtractor.unapply(joinPlan) assert(returnedOption.isDefined) assert(returnedOption.get._1 == JoinType.apply("inner")) assert(returnedOption.get._2 == Option(joinExpression)) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryStrategySuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.SupportsQueryPushdown import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.catalyst.{InternalRow, TableIdentifier} import org.apache.spark.sql.catalyst.expressions.{Alias, AttributeReference, ExprId, Expression} import org.apache.spark.sql.catalyst.plans.logical.Range import org.apache.spark.sql.execution.datasources.v2.DataSourceV2Relation import org.apache.spark.sql.sources.v2.reader.{DataSourceReader, InputPartition} import org.apache.spark.sql.types.{LongType, Metadata, StructType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite import java.util import java.util.Optional class Spark24BigQueryStrategySuite extends AnyFunSuite with BeforeAndAfter { @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ @Mock var dataSourceV2Relation: DataSourceV2Relation = _ @Mock var bigQueryRDDFactory: BigQueryRDDFactory = _ val expressionFactory: SparkExpressionFactory = new SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } val expressionConverter: SparkExpressionConverter = new Spark24ExpressionConverter(expressionFactory, sparkPlanFactoryMock) val schoolIdAttributeReference: AttributeReference = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1)) before { MockitoAnnotations.initMocks(this) } test("generateQueryFromPlanForDataSourceV2 with unsupported node") { assert(new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(Range.apply(2L, 100L, 4L, 8)).isEmpty) } test("generateQueryFromPlanForDataSourceV2 with unsupported query pushdown reader") { when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithoutQueryPushdown) val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation) assert(bigQuerySQLQuery.isEmpty) } test("generateQueryFromPlanForDataSourceV2 with table option set in DataSourceV2Relation node") { when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithQueryPushdown) when(dataSourceV2Relation.output).thenReturn(Seq(schoolIdAttributeReference)) when(dataSourceV2Relation.tableIdent).thenReturn(None) when(dataSourceV2Relation.options).thenReturn(Map("table"-> "MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE")) val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation) assert(bigQuerySQLQuery.isDefined) assert(bigQuerySQLQuery.get.getStatement().toString == "SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS") } test("generateQueryFromPlanForDataSourceV2 with path option set in DataSourceV2Relation node") { when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithQueryPushdown) when(dataSourceV2Relation.output).thenReturn(Seq(schoolIdAttributeReference)) when(dataSourceV2Relation.tableIdent).thenReturn(None) when(dataSourceV2Relation.options).thenReturn(Map("path"-> "MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE")) val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation) assert(bigQuerySQLQuery.isDefined) assert(bigQuerySQLQuery.get.getStatement().toString == "SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS") } class MockDataSourceReaderWithQueryPushdown extends DataSourceReader with SupportsQueryPushdown { override def readSchema(): StructType = null override def planInputPartitions(): util.List[InputPartition[InternalRow]] = null override def getBigQueryRDDFactory: BigQueryRDDFactory = bigQueryRDDFactory override def getPushdownFilters: Optional[String] = Optional.empty() } class MockDataSourceReaderWithoutQueryPushdown extends DataSourceReader { override def readSchema(): StructType = null override def planInputPartitions(): util.List[InputPartition[InternalRow]] = null } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionConverterSuite.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation import org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.Aggregate import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class Spark24ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter { @Mock var directBigQueryRelationMock: DirectBigQueryRelation = _ @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ private val expressionFactory = new Spark24ExpressionFactory private val expressionConverter = new Spark24ExpressionConverter(expressionFactory, sparkPlanFactoryMock) private val fields = List(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1), List("SUBQUERY_2"))) before { MockitoAnnotations.initMocks(this) } test("convertMiscellaneousExpressions with ScalarSubquery") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation) val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )") } test("convertMathematicalExpressions with UnaryMinus") { val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "- ( 10 )") } test("convertMathematicalExpressions with CheckOverflow") { val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( 233.45 AS BIGDECIMAL )") } test("convertBasicExpressions with Timestamp literal") { // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00 val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TIMESTAMP_MICROS( 1230219000000000 )") } test("convertStringExpressions with Like") { val bigQuerySQLStatement = expressionConverter.convertStringExpressions( Like(AttributeReference.apply("SchoolID", StringType)(ExprId.apply(1)), Literal("%aug%urs%")), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'") } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/pom.xml ================================================ spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent 4.0.0 spark-2.4-bigquery-pushdown_2.12 2.12 2.12.18 2.4.0 ${project.groupId} spark-bigquery-pushdown-common_${scala.binary.version} ${project.version} org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided org.apache.maven.plugins maven-enforcer-plugin 3.0.0-M3 enforce-versions enforce *:*_2.10 *:*_2.11 ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown ================================================ com.google.cloud.spark.bigquery.pushdowns.Spark24BigQueryPushdown ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryPushdown.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns class Spark24BigQueryPushdown extends BaseSparkBigQueryPushdown { override def supportsSparkVersion(sparkVersion: String): Boolean = { sparkVersion.startsWith("2.4") } override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = { new Spark24ExpressionConverter(expressionFactory, sparkPlanFactory) } override def createSparkExpressionFactory: SparkExpressionFactory = { new Spark24ExpressionFactory } override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = { new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) } override def createSparkPlanFactory(): SparkPlanFactory = { new Spark24PlanFactory } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryPushdownPlan.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan import org.apache.spark.rdd.RDD import org.apache.spark.sql.catalyst.InternalRow import org.apache.spark.sql.catalyst.expressions.Attribute import org.apache.spark.sql.execution.SparkPlan /** BigQueryPlan, with RDD defined by custom query. */ case class Spark24BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow]) extends SparkPlan { override def children: Seq[SparkPlan] = Nil protected override def doExecute(): RDD[InternalRow] = { doExecuteSparkPlan(output, rdd) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryStrategy.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.execution.datasources.v2.DataSourceV2Relation import scala.collection.JavaConverters._ class Spark24BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = { // DataSourceV2Relation is the relation that is used in the Spark 2.4 DatasourceV2 connector plan match { case relation@DataSourceV2Relation(_, _, _, _, _) => // Get the reader and cast it to SupportsQueryPushdown to get the BigQueryRDDFactory relation.newReader() match { case reader: SupportsQueryPushdown => Some(SourceQuery(expressionConverter, expressionFactory, reader.getBigQueryRDDFactory, SparkBigQueryUtil.getTableNameFromOptions(relation.options.asJava), relation.output, alias.next)) case _ => None } // We should never reach here case _ => None } } override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = { val queries: Seq[BigQuerySQLQuery] = children.map { child => new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get } Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next)) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionConverter.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement import org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan /** * Convert Spark 2.4 specific expressions to SQL */ class Spark24ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter { override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case ScalarSubquery(plan, _, _) => blockStatement(new Spark24BigQueryStrategy(this, expressionFactory, sparkPlanFactory) .generateQueryFromPlan(plan).get.getStatement()) } } override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case CheckOverflow(child, t) => getCastType(t) match { case Some(cast) => ConstantString("CAST") + blockStatement(convertStatement(child, fields) + "AS" + cast) case _ => convertStatement(child, fields) } } } override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case UnaryMinus(child) => ConstantString("-") + blockStatement(convertStatement(child, fields)) } } override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Cast(child, dataType, _) => performCastExpressionConversion(child, fields, dataType) } } override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Like(left, right) => convertStatement(left, fields) + "LIKE" + convertStatement(right, fields) } } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression} import org.apache.spark.sql.types.Metadata class Spark24ExpressionFactory extends SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24PlanFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.execution.SparkPlan class Spark24PlanFactory extends SparkPlanFactory { /** * Generate SparkPlan from the output and RDD of the translated query */ override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = { Some(Spark24BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString))) } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryStrategySuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.SupportsQueryPushdown import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.catalyst.{InternalRow, TableIdentifier} import org.apache.spark.sql.catalyst.expressions.{Alias, AttributeReference, ExprId, Expression} import org.apache.spark.sql.catalyst.plans.logical.Range import org.apache.spark.sql.execution.datasources.v2.DataSourceV2Relation import org.apache.spark.sql.sources.v2.reader.{DataSourceReader, InputPartition} import org.apache.spark.sql.types.{LongType, Metadata, StructType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite import java.util import java.util.Optional class Spark24BigQueryStrategySuite extends AnyFunSuite with BeforeAndAfter { @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ @Mock var dataSourceV2Relation: DataSourceV2Relation = _ @Mock var bigQueryRDDFactory: BigQueryRDDFactory = _ val expressionFactory: SparkExpressionFactory = new SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } val expressionConverter: SparkExpressionConverter = new Spark24ExpressionConverter(expressionFactory, sparkPlanFactoryMock) val schoolIdAttributeReference: AttributeReference = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1)) before { MockitoAnnotations.initMocks(this) } test("generateQueryFromPlanForDataSourceV2 with unsupported node") { assert(new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(Range.apply(2L, 100L, 4L, 8)).isEmpty) } test("generateQueryFromPlanForDataSourceV2 with unsupported query pushdown reader") { when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithoutQueryPushdown) val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation) assert(bigQuerySQLQuery.isEmpty) } test("generateQueryFromPlanForDataSourceV2 with table option set in DataSourceV2Relation node") { when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithQueryPushdown) when(dataSourceV2Relation.output).thenReturn(Seq(schoolIdAttributeReference)) when(dataSourceV2Relation.tableIdent).thenReturn(None) when(dataSourceV2Relation.options).thenReturn(Map("table"-> "MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE")) val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation) assert(bigQuerySQLQuery.isDefined) assert(bigQuerySQLQuery.get.getStatement().toString == "SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS") } test("generateQueryFromPlanForDataSourceV2 with path option set in DataSourceV2Relation node") { when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithQueryPushdown) when(dataSourceV2Relation.output).thenReturn(Seq(schoolIdAttributeReference)) when(dataSourceV2Relation.tableIdent).thenReturn(None) when(dataSourceV2Relation.options).thenReturn(Map("path"-> "MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE")) val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation) assert(bigQuerySQLQuery.isDefined) assert(bigQuerySQLQuery.get.getStatement().toString == "SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS") } class MockDataSourceReaderWithQueryPushdown extends DataSourceReader with SupportsQueryPushdown { override def readSchema(): StructType = null override def planInputPartitions(): util.List[InputPartition[InternalRow]] = null override def getBigQueryRDDFactory: BigQueryRDDFactory = bigQueryRDDFactory override def getPushdownFilters: Optional[String] = Optional.empty() } class MockDataSourceReaderWithoutQueryPushdown extends DataSourceReader { override def readSchema(): StructType = null override def planInputPartitions(): util.List[InputPartition[InternalRow]] = null } } ================================================ FILE: spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionConverterSuite.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation import org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.Aggregate import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class Spark24ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter { @Mock var directBigQueryRelationMock: DirectBigQueryRelation = _ @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ private val expressionFactory = new Spark24ExpressionFactory private val expressionConverter = new Spark24ExpressionConverter(expressionFactory, sparkPlanFactoryMock) private val fields = List(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1), List("SUBQUERY_2"))) before { MockitoAnnotations.initMocks(this) } test("convertMiscellaneousExpressions with ScalarSubquery") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation) val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )") } test("convertMathematicalExpressions with UnaryMinus") { val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "- ( 10 )") } test("convertMathematicalExpressions with CheckOverflow") { val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( 233.45 AS BIGDECIMAL )") } test("convertBasicExpressions with Timestamp literal") { // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00 val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TIMESTAMP_MICROS( 1230219000000000 )") } test("convertStringExpressions with Like") { val bigQuerySQLStatement = expressionConverter.convertStringExpressions( Like(AttributeReference.apply("SchoolID", StringType)(ExprId.apply(1)), Literal("%aug%urs%")), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'") } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/pom.xml ================================================ spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent 4.0.0 spark-3.1-bigquery-pushdown_2.12 2.12 2.12.18 3.1.0 ${project.groupId} spark-bigquery-pushdown-common_${scala.binary.version} ${project.version} org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided org.apache.maven.plugins maven-enforcer-plugin 3.0.0-M3 enforce-versions enforce *:*_2.10 *:*_2.11 ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown ================================================ com.google.cloud.spark.bigquery.pushdowns.Spark31BigQueryPushdown ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31BigQueryPushdown.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns class Spark31BigQueryPushdown extends BaseSparkBigQueryPushdown { override def supportsSparkVersion(sparkVersion: String): Boolean = { sparkVersion.startsWith("3.1") } override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = { new Spark31ExpressionConverter(expressionFactory, sparkPlanFactory) } override def createSparkExpressionFactory: SparkExpressionFactory = { new Spark31ExpressionFactory } override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = { new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) } override def createSparkPlanFactory(): SparkPlanFactory = { new Spark31PlanFactory } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31BigQueryPushdownPlan.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan import org.apache.spark.rdd.RDD import org.apache.spark.sql.catalyst.InternalRow import org.apache.spark.sql.catalyst.expressions.Attribute import org.apache.spark.sql.execution.SparkPlan /** BigQueryPlan, with RDD defined by custom query. */ case class Spark31BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow]) extends SparkPlan { override def children: Seq[SparkPlan] = Nil protected override def doExecute(): RDD[InternalRow] = { doExecuteSparkPlan(output, rdd) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31BigQueryStrategy.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation class Spark31BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = { // DataSourceV2ScanRelation is the relation that is used in the Spark 3.1 DatasourceV2 connector plan match { case scanRelation@DataSourceV2ScanRelation(_, _, _) => scanRelation.scan match { case scan: SupportsQueryPushdown => Some(SourceQuery(expressionConverter = expressionConverter, expressionFactory = expressionFactory, bigQueryRDDFactory = scan.getBigQueryRDDFactory, tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]), outputAttributes = scanRelation.output, alias = alias.next, pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None )) case _ => None } // We should never reach here case _ => None } } override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = { val queries: Seq[BigQuerySQLQuery] = children.map { child => new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get } Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31ExpressionConverter.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement import org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan /** * Convert Spark 3.1 specific expressions to SQL */ class Spark31ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() { override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case ScalarSubquery(plan, _, _) => blockStatement(new Spark31BigQueryStrategy(this, expressionFactory, sparkPlanFactory) .generateQueryFromPlan(plan).get.getStatement()) } } override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case CheckOverflow(child, t, _) => getCastType(t) match { case Some(cast) => ConstantString("CAST") + blockStatement(convertStatement(child, fields) + "AS" + cast) case _ => convertStatement(child, fields) } } } override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case UnaryMinus(child, _) => ConstantString("-") + blockStatement(convertStatement(child, fields)) } } override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Cast(child, dataType, _) => performCastExpressionConversion(child, fields, dataType) } } override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Like(left, right, _) => convertStatement(left, fields) + "LIKE" + convertStatement(right, fields) } } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31ExpressionFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression} import org.apache.spark.sql.types.Metadata class Spark31ExpressionFactory extends SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31PlanFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.execution.SparkPlan class Spark31PlanFactory extends SparkPlanFactory { /** * Generate SparkPlan from the output and RDD of the translated query */ override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = { Some(Spark31BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString))) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class BinaryOperationExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) private val rightChildPlan = Range.apply(2L, 100L, 4L, 10) test("supported binary node") { val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply("inner"), None, JoinHint.NONE) val plan = BinaryOperationExtractor.unapply(joinPlan) assert(plan.isDefined) assert(plan.get.children.head == leftChildPlan) assert(plan.get.children(1) == rightChildPlan) } test("non supported binary node") { val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true) val plan = BinaryOperationExtractor.unapply(unsupportedPlan) assert(plan.isEmpty) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal} import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class JoinExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) // Need a childPlan to pass. So, create the simplest possible private val rightChildPlan = Range.apply(2L, 100L, 4L, 16) test("unapply") { val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start)) val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply("inner"), Option(joinExpression), JoinHint.NONE) val returnedOption = JoinExtractor.unapply(joinPlan) assert(returnedOption.isDefined) assert(returnedOption.get._1 == JoinType.apply("inner")) assert(returnedOption.get._2 == Option(joinExpression)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31BigQueryStrategySuite.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.SupportsQueryPushdown import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.catalyst.expressions.{Alias, AttributeReference, ExprId, Expression} import org.apache.spark.sql.catalyst.plans.logical.Range import org.apache.spark.sql.connector.read.Scan import org.apache.spark.sql.execution.datasources.v2.{DataSourceV2Relation, DataSourceV2ScanRelation} import org.apache.spark.sql.types.{LongType, Metadata, StructType} import org.apache.spark.sql.util.CaseInsensitiveStringMap import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite import java.util import java.util.Optional class Spark31BigQueryStrategySuite extends AnyFunSuite with BeforeAndAfter { @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ @Mock var bigQueryRDDFactory: BigQueryRDDFactory = _ @Mock var dataSourceV2Relation: DataSourceV2Relation = _ @Mock var dataSourceV2ScanRelation: DataSourceV2ScanRelation = _ val expressionFactory: SparkExpressionFactory = new SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } val expressionConverter: SparkExpressionConverter = new Spark31ExpressionConverter(expressionFactory, sparkPlanFactoryMock) val schoolIdAttributeReference: AttributeReference = AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1)) before { MockitoAnnotations.initMocks(this) } test("generateQueryFromPlanForDataSourceV2 with unsupported node") { assert(new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(Range.apply(2L, 100L, 4L, 8)).isEmpty) } test("generateQueryFromPlanForDataSourceV2 with unsupported query pushdown scan") { when(dataSourceV2ScanRelation.scan).thenReturn(new MockScanWithoutQueryPushdown) val bigQuerySQLQuery = new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(dataSourceV2ScanRelation) assert(bigQuerySQLQuery.isEmpty) } test("generateQueryFromPlanForDataSourceV2 with table option set in DataSourceV2Relation node") { when(dataSourceV2ScanRelation.scan).thenReturn(new MockScanWithQueryPushdown) when(dataSourceV2ScanRelation.output).thenReturn(Seq(schoolIdAttributeReference)) when(dataSourceV2ScanRelation.relation).thenReturn(dataSourceV2Relation) val caseInsensitiveStringMap = new CaseInsensitiveStringMap(new util.HashMap[String, String]() {{put("table", "MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE")}}) when(dataSourceV2Relation.options).thenReturn(caseInsensitiveStringMap) val bigQuerySQLQuery = new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(dataSourceV2ScanRelation) assert(bigQuerySQLQuery.isDefined) assert(bigQuerySQLQuery.get.getStatement().toString == "SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS WHERE foo = 1 AND bar = 2") } test("generateQueryFromPlanForDataSourceV2 with path option set in DataSourceV2Relation node") { when(dataSourceV2ScanRelation.scan).thenReturn(new MockScanWithQueryPushdown) when(dataSourceV2ScanRelation.output).thenReturn(Seq(schoolIdAttributeReference)) when(dataSourceV2ScanRelation.relation).thenReturn(dataSourceV2Relation) val caseInsensitiveStringMap = new CaseInsensitiveStringMap(new util.HashMap[String, String]() {{put("path", "MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE")}}) when(dataSourceV2Relation.options).thenReturn(caseInsensitiveStringMap) val bigQuerySQLQuery = new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) .generateQueryFromPlanForDataSourceV2(dataSourceV2ScanRelation) assert(bigQuerySQLQuery.isDefined) assert(bigQuerySQLQuery.get.getStatement().toString == "SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS WHERE foo = 1 AND bar = 2") } class MockScanWithQueryPushdown extends Scan with SupportsQueryPushdown { override def getBigQueryRDDFactory: BigQueryRDDFactory = bigQueryRDDFactory override def getPushdownFilters: Optional[String] = Optional.of("foo = 1 AND bar = 2") override def readSchema(): StructType = null } class MockScanWithoutQueryPushdown extends Scan { override def readSchema(): StructType = null } } ================================================ FILE: spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31ExpressionConverterSuite.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation import org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.Aggregate import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class Spark31ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter { @Mock var directBigQueryRelationMock: DirectBigQueryRelation = _ @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ private val expressionFactory = new Spark31ExpressionFactory private val expressionConverter = new Spark31ExpressionConverter(expressionFactory, sparkPlanFactoryMock) private val fields = List(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1), List("SUBQUERY_2"))) before { MockitoAnnotations.initMocks(this) } test("convertMiscellaneousExpressions with ScalarSubquery") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation) val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )") } test("convertMathematicalExpressions with UnaryMinus") { val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "- ( 10 )") } test("convertMathematicalExpressions with CheckOverflow") { val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( 233.45 AS BIGDECIMAL )") } test("convertBasicExpressions with Timestamp literal") { // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00 val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TIMESTAMP_MICROS( 1230219000000000 )") } test("convertStringExpressions with Like") { val bigQuerySQLStatement = expressionConverter.convertStringExpressions( Like(AttributeReference.apply("SchoolID", StringType)(ExprId.apply(1)), Literal("%aug%urs%"), '\\'), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'") } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/pom.xml ================================================ spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent 4.0.0 spark-3.2-bigquery-pushdown_2.12 2.12 2.12.18 3.2.0 ${project.groupId} spark-bigquery-pushdown-common_${scala.binary.version} ${project.version} org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown ================================================ com.google.cloud.spark.bigquery.pushdowns.Spark32BigQueryPushdown ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryPushdown.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns class Spark32BigQueryPushdown extends BaseSparkBigQueryPushdown { override def supportsSparkVersion(sparkVersion: String): Boolean = { sparkVersion.startsWith("3.2") } override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = { new Spark32ExpressionConverter(expressionFactory, sparkPlanFactory) } override def createSparkExpressionFactory: SparkExpressionFactory = { new Spark32ExpressionFactory } override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = { new Spark32BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) } override def createSparkPlanFactory(): SparkPlanFactory = { new Spark32PlanFactory } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryPushdownPlan.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.BigQueryConnectorException import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan import org.apache.spark.rdd.RDD import org.apache.spark.sql.catalyst.InternalRow import org.apache.spark.sql.catalyst.expressions.Attribute import org.apache.spark.sql.execution.SparkPlan /** BigQueryPlan, with RDD defined by custom query. */ case class Spark32BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow]) extends SparkPlan { override def children: Seq[SparkPlan] = Nil protected override def doExecute(): RDD[InternalRow] = { doExecuteSparkPlan(output, rdd) } // New function introduced in Spark 3.2 override protected def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan = { if (newChildren.nonEmpty) { throw new BigQueryConnectorException("Spark connector internal error: " + "Spark32BigQueryPushdownPlan.withNewChildrenInternal() is called to set some children nodes.") } this } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryStrategy.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation class Spark32BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = { // DataSourceV2ScanRelation is the relation that is used in the Spark 3.2 DatasourceV2 connector plan match { case scanRelation@DataSourceV2ScanRelation(_, _, _) => scanRelation.scan match { case scan: SupportsQueryPushdown => Some(SourceQuery(expressionConverter = expressionConverter, expressionFactory = expressionFactory, bigQueryRDDFactory = scan.getBigQueryRDDFactory, tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]), outputAttributes = scanRelation.output, alias = alias.next, pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None )) case _ => None } // We should never reach here case _ => None } } override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = { val queries: Seq[BigQuerySQLQuery] = children.map { child => new Spark32BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get } Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionConverter.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement import org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan /** * Convert Spark 3.2 specific expressions to SQL */ class Spark32ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() { override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case ScalarSubquery(plan, _, _, joinCond) if joinCond.isEmpty => blockStatement(new Spark32BigQueryStrategy(this, expressionFactory, sparkPlanFactory) .generateQueryFromPlan(plan).get.getStatement()) } } override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case CheckOverflow(child, t, _) => getCastType(t) match { case Some(cast) => ConstantString("CAST") + blockStatement(convertStatement(child, fields) + "AS" + cast) case _ => convertStatement(child, fields) } } } override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case UnaryMinus(child, _) => ConstantString("-") + blockStatement(convertStatement(child, fields)) } } override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Cast(child, dataType, _, ansiEnabled) if !ansiEnabled => performCastExpressionConversion(child, fields, dataType) } } override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Like(left, right, _) => convertStatement(left, fields) + "LIKE" + convertStatement(right, fields) } } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression} import org.apache.spark.sql.types.Metadata class Spark32ExpressionFactory extends SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32PlanFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.execution.SparkPlan class Spark32PlanFactory extends SparkPlanFactory { /** * Generate SparkPlan from the output and RDD of the translated query */ override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = { Some(Spark32BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString))) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class BinaryOperationExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) private val rightChildPlan = Range.apply(2L, 100L, 4L, 10) test("supported binary node") { val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply("inner"), None, JoinHint.NONE) val plan = BinaryOperationExtractor.unapply(joinPlan) assert(plan.isDefined) assert(plan.get.children.head == leftChildPlan) assert(plan.get.children(1) == rightChildPlan) } test("non supported binary node") { val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true) val plan = BinaryOperationExtractor.unapply(unsupportedPlan) assert(plan.isEmpty) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal} import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class JoinExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) // Need a childPlan to pass. So, create the simplest possible private val rightChildPlan = Range.apply(2L, 100L, 4L, 16) test("unapply") { val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start)) val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply("inner"), Option(joinExpression), JoinHint.NONE) val returnedOption = JoinExtractor.unapply(joinPlan) assert(returnedOption.isDefined) assert(returnedOption.get._1 == JoinType.apply("inner")) assert(returnedOption.get._2 == Option(joinExpression)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionConverterSuite.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation import org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.Aggregate import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class Spark32ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter { @Mock var directBigQueryRelationMock: DirectBigQueryRelation = _ @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ private val expressionFactory = new Spark32ExpressionFactory private val expressionConverter = new Spark32ExpressionConverter(expressionFactory, sparkPlanFactoryMock) private val fields = List(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1), List("SUBQUERY_2"))) before { MockitoAnnotations.initMocks(this) } test("convertMiscellaneousExpressions with ScalarSubquery") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation) val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )") } test("convertMathematicalExpressions with UnaryMinus") { val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "- ( 10 )") } test("convertMathematicalExpressions with CheckOverflow") { val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( 233.45 AS BIGDECIMAL )") } test("convertBasicExpressions with Timestamp literal") { // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00 val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TIMESTAMP_MICROS( 1230219000000000 )") } test("convertStringExpressions with Like") { val bigQuerySQLStatement = expressionConverter.convertStringExpressions( Like(AttributeReference.apply("SchoolID", StringType)(ExprId.apply(1)), Literal("%aug%urs%"), '\\'), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'") } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/pom.xml ================================================ spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent 4.0.0 spark-3.2-bigquery-pushdown_2.13 2.13 2.13.5 3.2.0 ${project.groupId} spark-bigquery-pushdown-common_${scala.binary.version} ${project.version} org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown ================================================ com.google.cloud.spark.bigquery.pushdowns.Spark32BigQueryPushdown ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryPushdown.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns class Spark32BigQueryPushdown extends BaseSparkBigQueryPushdown { override def supportsSparkVersion(sparkVersion: String): Boolean = { sparkVersion.startsWith("3.2") } override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = { new Spark32ExpressionConverter(expressionFactory, sparkPlanFactory) } override def createSparkExpressionFactory: SparkExpressionFactory = { new Spark32ExpressionFactory } override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = { new Spark32BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) } override def createSparkPlanFactory(): SparkPlanFactory = { new Spark32PlanFactory } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryPushdownPlan.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.BigQueryConnectorException import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan import org.apache.spark.rdd.RDD import org.apache.spark.sql.catalyst.InternalRow import org.apache.spark.sql.catalyst.expressions.Attribute import org.apache.spark.sql.execution.SparkPlan /** BigQueryPlan, with RDD defined by custom query. */ case class Spark32BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow]) extends SparkPlan { override def children: Seq[SparkPlan] = Nil protected override def doExecute(): RDD[InternalRow] = { doExecuteSparkPlan(output, rdd) } // New function introduced in Spark 3.2 override protected def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan = { if (newChildren.nonEmpty) { throw new BigQueryConnectorException("Spark connector internal error: " + "Spark32BigQueryPushdownPlan.withNewChildrenInternal() is called to set some children nodes.") } this } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryStrategy.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation class Spark32BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = { // DataSourceV2ScanRelation is the relation that is used in the Spark 3.2 DatasourceV2 connector plan match { case scanRelation@DataSourceV2ScanRelation(_, _, _) => scanRelation.scan match { case scan: SupportsQueryPushdown => Some(SourceQuery(expressionConverter = expressionConverter, expressionFactory = expressionFactory, bigQueryRDDFactory = scan.getBigQueryRDDFactory, tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]), outputAttributes = scanRelation.output, alias = alias.next, pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None )) case _ => None } // We should never reach here case _ => None } } override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = { val queries: Seq[BigQuerySQLQuery] = children.map { child => new Spark32BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get } Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionConverter.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement import org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan /** * Convert Spark 3.2 specific expressions to SQL */ class Spark32ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() { override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case ScalarSubquery(plan, _, _, joinCond) if joinCond.isEmpty => blockStatement(new Spark32BigQueryStrategy(this, expressionFactory, sparkPlanFactory) .generateQueryFromPlan(plan).get.getStatement()) } } override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case CheckOverflow(child, t, _) => getCastType(t) match { case Some(cast) => ConstantString("CAST") + blockStatement(convertStatement(child, fields) + "AS" + cast) case _ => convertStatement(child, fields) } } } override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case UnaryMinus(child, _) => ConstantString("-") + blockStatement(convertStatement(child, fields)) } } override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Cast(child, dataType, _, ansiEnabled) if !ansiEnabled => performCastExpressionConversion(child, fields, dataType) } } override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Like(left, right, _) => convertStatement(left, fields) + "LIKE" + convertStatement(right, fields) } } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression} import org.apache.spark.sql.types.Metadata class Spark32ExpressionFactory extends SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32PlanFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.execution.SparkPlan class Spark32PlanFactory extends SparkPlanFactory { /** * Generate SparkPlan from the output and RDD of the translated query */ override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = { Some(Spark32BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString))) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class BinaryOperationExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) private val rightChildPlan = Range.apply(2L, 100L, 4L, 10) test("supported binary node") { val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply("inner"), None, JoinHint.NONE) val plan = BinaryOperationExtractor.unapply(joinPlan) assert(plan.isDefined) assert(plan.get.children.head == leftChildPlan) assert(plan.get.children(1) == rightChildPlan) } test("non supported binary node") { val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true) val plan = BinaryOperationExtractor.unapply(unsupportedPlan) assert(plan.isEmpty) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal} import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class JoinExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) // Need a childPlan to pass. So, create the simplest possible private val rightChildPlan = Range.apply(2L, 100L, 4L, 16) test("unapply") { val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start)) val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply("inner"), Option(joinExpression), JoinHint.NONE) val returnedOption = JoinExtractor.unapply(joinPlan) assert(returnedOption.isDefined) assert(returnedOption.get._1 == JoinType.apply("inner")) assert(returnedOption.get._2 == Option(joinExpression)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionConverterSuite.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation import org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.Aggregate import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class Spark32ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter { @Mock var directBigQueryRelationMock: DirectBigQueryRelation = _ @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ private val expressionFactory = new Spark32ExpressionFactory private val expressionConverter = new Spark32ExpressionConverter(expressionFactory, sparkPlanFactoryMock) private val fields = List(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1), List("SUBQUERY_2"))) before { MockitoAnnotations.initMocks(this) } test("convertMiscellaneousExpressions with ScalarSubquery") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation) val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )") } test("convertMathematicalExpressions with UnaryMinus") { val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "- ( 10 )") } test("convertMathematicalExpressions with CheckOverflow") { val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( 233.45 AS BIGDECIMAL )") } test("convertBasicExpressions with Timestamp literal") { // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00 val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TIMESTAMP_MICROS( 1230219000000000 )") } test("convertStringExpressions with Like") { val bigQuerySQLStatement = expressionConverter.convertStringExpressions( Like(AttributeReference.apply("SchoolID", StringType)(ExprId.apply(1)), Literal("%aug%urs%"), '\\'), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'") } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/pom.xml ================================================ 4.0.0 spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent spark-3.3-bigquery-pushdown_2.12 2.12 2.12.18 3.3.0 ${project.groupId} spark-bigquery-pushdown-common_${scala.binary.version} ${project.version} org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown ================================================ com.google.cloud.spark.bigquery.pushdowns.Spark33BigQueryPushdown ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryPushdown.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns class Spark33BigQueryPushdown extends BaseSparkBigQueryPushdown { override def supportsSparkVersion(sparkVersion: String): Boolean = { sparkVersion.startsWith("3.3") } override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = { new Spark33ExpressionConverter(expressionFactory, sparkPlanFactory) } override def createSparkExpressionFactory: SparkExpressionFactory = { new Spark33ExpressionFactory } override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = { new Spark33BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) } override def createSparkPlanFactory(): SparkPlanFactory = { new Spark33PlanFactory } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryPushdownPlan.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.BigQueryConnectorException import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan import org.apache.spark.rdd.RDD import org.apache.spark.sql.catalyst.InternalRow import org.apache.spark.sql.catalyst.expressions.Attribute import org.apache.spark.sql.execution.SparkPlan /** BigQueryPlan, with RDD defined by custom query. */ case class Spark33BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow]) extends SparkPlan { override def children: Seq[SparkPlan] = Nil protected override def doExecute(): RDD[InternalRow] = { doExecuteSparkPlan(output, rdd) } // New function introduced in Spark 3.3 override protected def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan = { if (newChildren.nonEmpty) { throw new BigQueryConnectorException("Spark connector internal error: " + "Spark33BigQueryPushdownPlan.withNewChildrenInternal() is called to set some children nodes.") } this } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryStrategy.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation class Spark33BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = { // DataSourceV2ScanRelation is the relation that is used in the Spark 3.3 DatasourceV2 connector plan match { case scanRelation@DataSourceV2ScanRelation(_, _, _, _) => scanRelation.scan match { case scan: SupportsQueryPushdown => Some(SourceQuery(expressionConverter = expressionConverter, expressionFactory = expressionFactory, bigQueryRDDFactory = scan.getBigQueryRDDFactory, tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]), outputAttributes = scanRelation.output, alias = alias.next, pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None )) case _ => None } // We should never reach here case _ => None } } override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = { val queries: Seq[BigQuerySQLQuery] = children.map { child => new Spark33BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get } Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionConverter.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement import org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan /** * Convert Spark 3.3 specific expressions to SQL */ class Spark33ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() { override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case ScalarSubquery(plan, _, _, joinCond) if joinCond.isEmpty => blockStatement(new Spark33BigQueryStrategy(this, expressionFactory, sparkPlanFactory) .generateQueryFromPlan(plan).get.getStatement()) } } override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case CheckOverflow(child, t, _) => getCastType(t) match { case Some(cast) => ConstantString("CAST") + blockStatement(convertStatement(child, fields) + "AS" + cast) case _ => convertStatement(child, fields) } } } override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case UnaryMinus(child, _) => ConstantString("-") + blockStatement(convertStatement(child, fields)) } } override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Cast(child, dataType, _, ansiEnabled) if !ansiEnabled => performCastExpressionConversion(child, fields, dataType) } } override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Like(left, right, _) => convertStatement(left, fields) + "LIKE" + convertStatement(right, fields) } } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression} import org.apache.spark.sql.types.Metadata class Spark33ExpressionFactory extends SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33PlanFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.execution.SparkPlan class Spark33PlanFactory extends SparkPlanFactory { /** * Generate SparkPlan from the output and RDD of the translated query */ override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = { Some(Spark33BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString))) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class BinaryOperationExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) private val rightChildPlan = Range.apply(2L, 100L, 4L, 10) test("supported binary node") { val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply("inner"), None, JoinHint.NONE) val plan = BinaryOperationExtractor.unapply(joinPlan) assert(plan.isDefined) assert(plan.get.children.head == leftChildPlan) assert(plan.get.children(1) == rightChildPlan) } test("non supported binary node") { val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true) val plan = BinaryOperationExtractor.unapply(unsupportedPlan) assert(plan.isEmpty) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal} import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class JoinExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) // Need a childPlan to pass. So, create the simplest possible private val rightChildPlan = Range.apply(2L, 100L, 4L, 16) test("unapply") { val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start)) val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply("inner"), Option(joinExpression), JoinHint.NONE) val returnedOption = JoinExtractor.unapply(joinPlan) assert(returnedOption.isDefined) assert(returnedOption.get._1 == JoinType.apply("inner")) assert(returnedOption.get._2 == Option(joinExpression)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionConverterSuite.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation import org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.Aggregate import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class Spark33ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter { @Mock var directBigQueryRelationMock: DirectBigQueryRelation = _ @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ private val expressionFactory = new Spark33ExpressionFactory private val expressionConverter = new Spark33ExpressionConverter(expressionFactory, sparkPlanFactoryMock) private val fields = List(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1), List("SUBQUERY_2"))) before { MockitoAnnotations.initMocks(this) } test("convertMiscellaneousExpressions with ScalarSubquery") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation) val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )") } test("convertMathematicalExpressions with UnaryMinus") { val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "- ( 10 )") } test("convertMathematicalExpressions with CheckOverflow") { val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( 233.45 AS BIGDECIMAL )") } test("convertBasicExpressions with Timestamp literal") { // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00 val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TIMESTAMP_MICROS( 1230219000000000 )") } test("convertStringExpressions with Like") { val bigQuerySQLStatement = expressionConverter.convertStringExpressions( Like(AttributeReference.apply("SchoolID", StringType)(ExprId.apply(1)), Literal("%aug%urs%"), '\\'), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'") } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/pom.xml ================================================ 4.0.0 spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent spark-3.3-bigquery-pushdown_2.13 2.13 2.13.5 3.3.0 ${project.groupId} spark-bigquery-pushdown-common_${scala.binary.version} ${project.version} org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown ================================================ com.google.cloud.spark.bigquery.pushdowns.Spark33BigQueryPushdown ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryPushdown.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns class Spark33BigQueryPushdown extends BaseSparkBigQueryPushdown { override def supportsSparkVersion(sparkVersion: String): Boolean = { sparkVersion.startsWith("3.3") } override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = { new Spark33ExpressionConverter(expressionFactory, sparkPlanFactory) } override def createSparkExpressionFactory: SparkExpressionFactory = { new Spark33ExpressionFactory } override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = { new Spark33BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) } override def createSparkPlanFactory(): SparkPlanFactory = { new Spark33PlanFactory } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryPushdownPlan.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.bigquery.connector.common.BigQueryConnectorException import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan import org.apache.spark.rdd.RDD import org.apache.spark.sql.catalyst.InternalRow import org.apache.spark.sql.catalyst.expressions.Attribute import org.apache.spark.sql.execution.SparkPlan /** BigQueryPlan, with RDD defined by custom query. */ case class Spark33BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow]) extends SparkPlan { override def children: Seq[SparkPlan] = Nil protected override def doExecute(): RDD[InternalRow] = { doExecuteSparkPlan(output, rdd) } // New function introduced in Spark 3.3 override protected def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan = { if (newChildren.nonEmpty) { throw new BigQueryConnectorException("Spark connector internal error: " + "Spark33BigQueryPushdownPlan.withNewChildrenInternal() is called to set some children nodes.") } this } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryStrategy.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation class Spark33BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) { override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = { // DataSourceV2ScanRelation is the relation that is used in the Spark 3.3 DatasourceV2 connector plan match { case scanRelation@DataSourceV2ScanRelation(_, _, _, _) => scanRelation.scan match { case scan: SupportsQueryPushdown => Some(SourceQuery(expressionConverter = expressionConverter, expressionFactory = expressionFactory, bigQueryRDDFactory = scan.getBigQueryRDDFactory, tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]), outputAttributes = scanRelation.output, alias = alias.next, pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None )) case _ => None } // We should never reach here case _ => None } } override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = { val queries: Seq[BigQuerySQLQuery] = children.map { child => new Spark33BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get } Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionConverter.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement import org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan /** * Convert Spark 3.3 specific expressions to SQL */ class Spark33ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() { override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case ScalarSubquery(plan, _, _, joinCond) if joinCond.isEmpty => blockStatement(new Spark33BigQueryStrategy(this, expressionFactory, sparkPlanFactory) .generateQueryFromPlan(plan).get.getStatement()) } } override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case CheckOverflow(child, t, _) => getCastType(t) match { case Some(cast) => ConstantString("CAST") + blockStatement(convertStatement(child, fields) + "AS" + cast) case _ => convertStatement(child, fields) } } } override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case UnaryMinus(child, _) => ConstantString("-") + blockStatement(convertStatement(child, fields)) } } override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Cast(child, dataType, _, ansiEnabled) if !ansiEnabled => performCastExpressionConversion(child, fields, dataType) } } override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = { expression match { case Like(left, right, _) => convertStatement(left, fields) + "LIKE" + convertStatement(right, fields) } } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression} import org.apache.spark.sql.types.Metadata class Spark33ExpressionFactory extends SparkExpressionFactory { override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = { Alias(child, name)(exprId, qualifier, explicitMetadata) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33PlanFactory.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory import org.apache.spark.sql.execution.SparkPlan class Spark33PlanFactory extends SparkPlanFactory { /** * Generate SparkPlan from the output and RDD of the translated query */ override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = { Some(Spark33BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString))) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class BinaryOperationExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) private val rightChildPlan = Range.apply(2L, 100L, 4L, 10) test("supported binary node") { val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply("inner"), None, JoinHint.NONE) val plan = BinaryOperationExtractor.unapply(joinPlan) assert(plan.isDefined) assert(plan.get.children.head == leftChildPlan) assert(plan.get.children(1) == rightChildPlan) } test("non supported binary node") { val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true) val plan = BinaryOperationExtractor.unapply(unsupportedPlan) assert(plan.isEmpty) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal} import org.apache.spark.sql.catalyst.plans.JoinType import org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range} import org.scalatest.funsuite.AnyFunSuite class JoinExtractorSuite extends AnyFunSuite { // Need a childPlan to pass. So, create the simplest possible private val leftChildPlan = Range.apply(2L, 100L, 4L, 8) // Need a childPlan to pass. So, create the simplest possible private val rightChildPlan = Range.apply(2L, 100L, 4L, 16) test("unapply") { val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start)) val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply("inner"), Option(joinExpression), JoinHint.NONE) val returnedOption = JoinExtractor.unapply(joinPlan) assert(returnedOption.isDefined) assert(returnedOption.get._1 == JoinType.apply("inner")) assert(returnedOption.get._2 == Option(joinExpression)) } } ================================================ FILE: spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionConverterSuite.scala ================================================ /* * Copyright 2022 Google LLC * * 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 * * 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. */ package com.google.cloud.spark.bigquery.pushdowns import com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation import org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus} import org.apache.spark.sql.catalyst.plans.logical.Aggregate import org.apache.spark.sql.execution.datasources.LogicalRelation import org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType} import org.mockito.Mockito.when import org.mockito.{Mock, MockitoAnnotations} import org.scalatest.BeforeAndAfter import org.scalatest.funsuite.AnyFunSuite class Spark33ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter { @Mock var directBigQueryRelationMock: DirectBigQueryRelation = _ @Mock var sparkPlanFactoryMock: SparkPlanFactory = _ private val expressionFactory = new Spark33ExpressionFactory private val expressionConverter = new Spark33ExpressionConverter(expressionFactory, sparkPlanFactoryMock) private val fields = List(AttributeReference.apply("SchoolID", LongType)(ExprId.apply(1), List("SUBQUERY_2"))) before { MockitoAnnotations.initMocks(this) } test("convertMiscellaneousExpressions with ScalarSubquery") { when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq())) when(directBigQueryRelationMock.getTableName).thenReturn("MY_BIGQUERY_TABLE") val logicalRelation = LogicalRelation(directBigQueryRelationMock) val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation) val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan) val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )") } test("convertMathematicalExpressions with UnaryMinus") { val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10)) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "- ( 10 )") } test("convertMathematicalExpressions with CheckOverflow") { val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true) val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "CAST ( 233.45 AS BIGDECIMAL )") } test("convertBasicExpressions with Timestamp literal") { // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00 val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "TIMESTAMP_MICROS( 1230219000000000 )") } test("convertStringExpressions with Like") { val bigQuerySQLStatement = expressionConverter.convertStringExpressions( Like(AttributeReference.apply("SchoolID", StringType)(ExprId.apply(1)), Literal("%aug%urs%"), '\\'), fields) assert(bigQuerySQLStatement.isDefined) assert(bigQuerySQLStatement.get.toString == "SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'") } } ================================================ FILE: spark-bigquery-pushdown/spark-bigquery-pushdown-common_2.11/pom.xml ================================================ spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent 4.0.0 spark-bigquery-pushdown-common_2.11 2.11 2.4.0 org.apache.maven.plugins maven-enforcer-plugin 3.0.0-M3 enforce-versions enforce *:*_2.10 *:*_2.12 ================================================ FILE: spark-bigquery-pushdown/spark-bigquery-pushdown-common_2.12/pom.xml ================================================ spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent 4.0.0 spark-bigquery-pushdown-common_2.12 2.12 2.12.18 3.1.0 org.apache.maven.plugins maven-enforcer-plugin 3.0.0-M3 enforce-versions enforce *:*_2.10 *:*_2.11 ================================================ FILE: spark-bigquery-pushdown/spark-bigquery-pushdown-common_2.13/pom.xml ================================================ spark-bigquery-pushdown-parent com.google.cloud.spark ${revision} ../spark-bigquery-pushdown-parent 4.0.0 spark-bigquery-pushdown-common_2.13 2.13 2.13.5 3.2.0 org.apache.maven.plugins maven-enforcer-plugin 3.0.0-M3 enforce-versions enforce *:*_2.10 *:*_2.11 *:*_2.12 ================================================ FILE: spark-bigquery-pushdown/spark-bigquery-pushdown-parent/pom.xml ================================================ spark-bigquery-parent com.google.cloud.spark ${revision} ../../spark-bigquery-parent 4.0.0 spark-bigquery-pushdown-parent Spark BigQuery Predicate Pushdown Implementation common settings pom 1.8 1.8 [1.8,9) 2.12 2.12.18 3.1.0 Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} spark-bigquery-connector-common ${project.version} ${project.groupId} spark-bigquery-scala-212-support ${project.version} org.apache.spark spark-mllib_${scala.binary.version} ${spark.version} provided io.netty netty org.apache.spark spark-sql_${scala.binary.version} ${spark.version} provided io.netty netty org.apache.spark spark-avro_${scala.binary.version} ${spark.version} test org.scalatest scalatest_${scala.binary.version} 3.2.14 test org.mockito mockito-scala-scalatest_${scala.binary.version} 1.17.12 test ${project.groupId} spark-bigquery-connector-common ${project.version} test tests ${project.groupId} spark-bigquery-tests ${project.version} test src/main/scala net.alchim31.maven scala-maven-plugin ${scala.version} compile testCompile org.scalatest scalatest-maven-plugin 2.2.0 ${project.build.directory}/surefire-reports . TestSuite.txt ${scala.skipTests} test test org.apache.maven.plugins maven-resources-plugin copy-resources validate copy-resources ${basedir}/target/classes src/build/resources true org.codehaus.mojo build-helper-maven-plugin generate-sources add-test-source src/test/scala org.apache.maven.plugins maven-jar-plugin empty-javadoc-jar package jar javadoc ${basedir}/src/build/javadoc ================================================ FILE: spark-bigquery-python-lib/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../spark-bigquery-parent spark-bigquery-support PySpark-BigQuery support library pom maven-assembly-plugin false src/assembly/descriptor.xml package single ================================================ FILE: spark-bigquery-python-lib/src/assembly/descriptor.xml ================================================ python-support-lib false zip src/main/python / ================================================ FILE: spark-bigquery-python-lib/src/main/python/__init__.py ================================================ ================================================ FILE: spark-bigquery-python-lib/src/main/python/google/__init__.py ================================================ ================================================ FILE: spark-bigquery-python-lib/src/main/python/google/cloud/__init__.py ================================================ ================================================ FILE: spark-bigquery-python-lib/src/main/python/google/cloud/spark/__init__.py ================================================ ================================================ FILE: spark-bigquery-python-lib/src/main/python/google/cloud/spark/bigquery/__init__.py ================================================ ================================================ FILE: spark-bigquery-python-lib/src/main/python/google/cloud/spark/bigquery/big_query_connector_utils.py ================================================ def enablePushdownSession(spark): spark.sparkContext._jvm.com.google.cloud.spark.bigquery.BigQueryConnectorUtils.enablePushdownSession(spark._jsparkSession) def disablePushdownSession(spark): spark.sparkContext._jvm.com.google.cloud.spark.bigquery.BigQueryConnectorUtils.disablePushdownSession(spark._jsparkSession) ================================================ FILE: spark-bigquery-scala-212-support/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../spark-bigquery-parent spark-bigquery-scala-212-support Spark BigQuery Scala 2.12 Support Library Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo true ${project.groupId} spark-bigquery-connector-common ${project.version} org.apache.spark spark-sql_2.12 3.2.0 provided io.netty netty ================================================ FILE: spark-bigquery-scala-212-support/src/main/java/com/google/cloud/spark/bigquery/direct/PreScala213BigQueryRDD.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.direct; import java.util.List; import org.apache.spark.Dependency; import org.apache.spark.Partition; import org.apache.spark.SparkContext; import org.apache.spark.TaskContext; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.catalyst.InternalRow; import scala.collection.Seq; import scala.collection.Seq$; // This method relies on the scala.Seq alias, which is different in Scala 2.12 and 2.13. In Scala // 2.12 scala.Seq points to scala.collection.Seq whereas in Scala 2.13 it points to // scala.collection.immutable.Seq. class PreScala213BigQueryRDD extends RDD { // Added suffix so that CPD wouldn't mark as duplicate private final BigQueryRDDContext ctx212; private List streamNames; public PreScala213BigQueryRDD(SparkContext sparkContext, BigQueryRDDContext ctx) { super( sparkContext, (Seq>) Seq$.MODULE$.>newBuilder().result(), scala.reflect.ClassTag$.MODULE$.apply(InternalRow.class)); this.ctx212 = ctx; } @Override public scala.collection.Iterator compute(Partition split, TaskContext context) { return ctx212.compute(split, context); } @Override public Partition[] getPartitions() { return ctx212.getPartitions(); } } ================================================ FILE: spark-bigquery-scala-212-support/src/main/java/org/apache/spark/sql/PreScala213SparkSqlUtils.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package org.apache.spark.sql; import java.util.List; import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.analysis.SimpleAnalyzer$; import org.apache.spark.sql.catalyst.encoders.ExpressionEncoder; import org.apache.spark.sql.catalyst.encoders.RowEncoder; import org.apache.spark.sql.catalyst.expressions.Attribute; import org.apache.spark.sql.catalyst.expressions.AttributeReference; import org.apache.spark.sql.catalyst.expressions.NamedExpression; import org.apache.spark.sql.types.StructType; import scala.collection.JavaConverters; import scala.collection.mutable.ListBuffer; public class PreScala213SparkSqlUtils extends SparkSqlUtils { @Override public boolean supportsScalaVersion(String scalaVersion) { return scalaVersion.compareTo("2.13") < 0; } @Override public InternalRow rowToInternalRow(Row row) { return InternalRow.fromSeq(row.toSeq()); } // This method relies on the scala.Seq alias, which is different in Scala 2.12 and 2.13. In Scala // 2.12 scala.Seq points to scala.collection.Seq whereas in Scala 2.13 it points to // scala.collection.immutable.Seq. @Override public ExpressionEncoder createExpressionEncoder(StructType schema) { List attributes = JavaConverters.asJavaCollection(toAttributes(schema)).stream() .map(Attribute::toAttribute) .collect(Collectors.toList()); ExpressionEncoder expressionEncoder = RowEncoder.apply(schema) .resolveAndBind( JavaConverters.asScalaIteratorConverter(attributes.iterator()).asScala().toSeq(), SimpleAnalyzer$.MODULE$); return expressionEncoder; } // `toAttributes` is protected[sql] starting spark 3.2.0, so we need this call to be in the same // package. Since Scala 2.13/Spark 3.3 forbids it, the implementation has been ported to Java public static scala.collection.Seq toAttributes(StructType schema212) { return JavaConverters.asScalaBuffer( Stream.of(schema212.fields()) .map( field212 -> new AttributeReference( field212.name(), field212.dataType(), field212.nullable(), field212.metadata(), NamedExpression.newExprId(), new ListBuffer().toStream())) .collect(Collectors.toList())) .toSeq(); } } ================================================ FILE: spark-bigquery-scala-212-support/src/main/resources/META-INF/services/org.apache.spark.sql.SparkSqlUtils ================================================ org.apache.spark.sql.PreScala213SparkSqlUtils ================================================ FILE: spark-bigquery-scala-212-support/src/test/java/com/google/cloud/spark/bigquery/direct/PreScala213BigQueryRDDTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package com.google.cloud.spark.bigquery.direct; import static com.google.common.truth.Truth.assertThat; import org.apache.spark.rdd.RDD; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.catalyst.InternalRow; import org.junit.Test; // Ported this class from Scala to Java with no change in functionality public class PreScala213BigQueryRDDTest { @Test public void testCreatePreScala213BigQueryRDD() throws Exception { SparkSession sparkSession = SparkSession.builder().master("local").appName(getClass().getName()).getOrCreate(); BigQueryRDDFactory factory = new BigQueryRDDFactory( null /* bigQueryClient */, null /* bigQueryReadClientFactory */, null /* bigQueryTracerFactory */, null /* options */, sparkSession.sqlContext()); RDD result = factory.createRDD( sparkSession.sqlContext(), null /* Partition[] */, null /* ReadSession */, null /* Schema */, null /* columnsInOrder */, null /* options */, null /* bigQueryReadClientFactory */, null /* bigQueryTracerFactory */); assertThat(result).isInstanceOf(PreScala213BigQueryRDD.class); } } ================================================ FILE: spark-bigquery-scala-212-support/src/test/java/org/apache/spark/sql/PreScala213SparkSqlUtilsTest.java ================================================ /* * Copyright 2022 Google Inc. All Rights Reserved. * * 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. */ package org.apache.spark.sql; import static com.google.common.truth.Truth.assertThat; import org.apache.spark.sql.catalyst.InternalRow; import org.apache.spark.sql.catalyst.expressions.GenericRow; import org.apache.spark.unsafe.types.UTF8String; import org.junit.Test; public class PreScala213SparkSqlUtilsTest { @Test public void testRowToInternalRow() throws Exception { SparkSqlUtils ssu = SparkSqlUtils.getInstance(); assertThat(ssu).isInstanceOf(PreScala213SparkSqlUtils.class); Row row = new GenericRow(new Object[] {UTF8String.fromString("a"), 1}); InternalRow internalRow = ssu.rowToInternalRow(row); assertThat(internalRow.numFields()).isEqualTo(2); assertThat(internalRow.getString(0).toString()).isEqualTo("a"); assertThat(internalRow.getInt(1)).isEqualTo(1); } } ================================================ FILE: spark-bigquery-tests/pom.xml ================================================ 4.0.0 com.google.cloud.spark spark-bigquery-parent ${revision} ../spark-bigquery-parent spark-bigquery-tests BigQuery Connector Tests Support Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo ${project.groupId} bigquery-connector-common ${project.version} ${project.groupId} spark-bigquery-connector-common ${project.version} ${project.groupId} spark-bigquery-connector-common ${project.version} tests ${project.groupId} spark-bigquery-scala-212-support ${project.version} com.google.cloud google-cloud-dataproc com.google.cloud google-cloud-storage com.google.cloud.bigdataoss gcs-connector shaded com.google.truth truth junit junit org.mockito mockito-core compile org.apache.spark spark-sql_2.12 2.4.0 provided